source
stringclasses
4 values
task_type
stringclasses
1 value
in_source_id
stringlengths
0
138
problem
stringlengths
219
13.2k
gold_standard_solution
stringlengths
0
413k
problem_id
stringlengths
5
10
metadata
dict
verification_info
dict
taco
verifiable_code
https://www.codechef.com/problems/CCD
Solve the following coding problem using the programming language python: Chef has 2 strings A and B of equal length N. Both strings contain lowercase english alphabets only. Chef can perform several moves on string A. In one move, Chef has to: Select an index i \space (1 ≤ i ≤ N-1). Replace A[i] with (A[i]+1). Replace A[i+1] with (A[i+1]+1). For example, if A = \texttt{abcze}, a valid move would be to select index 3. This way the string becomes \texttt{abdae} after performing the move. Note that the value at an index is cyclically incremented. This means that, \texttt{a} \rightarrow \texttt{b}, \texttt{b} \rightarrow \texttt{c}, \ldots, \texttt{z} \rightarrow \texttt{a}. Chef has been asked to answer Q queries. Each query is of the form: L R: Given 1 ≤ L ≤ R ≤ N, Chef wants to know if it is possible to convert the substring A[L, R] to B[L, R] by performing the above mentioned move any number of times. For each query, output in a single line \texttt{Yes}, if the conversion is possible using any number of moves. Otherwise, print \texttt{No}. NOTE: Queries are independent. Thus, the original strings A and B would be retained to process next query. For each query solve for substrings A[L,R] and B[L,R] only. So valid values for i will be among L to R - 1 only. ------ Input Format ------ - The first line will contain T - the number of test cases. Then the test cases follow. - First line of each test case contains two integers N, Q. - Second line of each test case contains string A. - Third line of each test case contains string B. - Q lines follow, where the i^{th} line contains two integers L_{i} R_{i} - the i^{th} query. ------ Output Format ------ Output Q lines, where the i^{th} line contains the answer to the i^{th} query. The answer is \texttt{Yes}, if the conversion is possible using any number of moves. Otherwise, the answer is \texttt{No}. You may print each character of the string in uppercase or lowercase (for example, the strings \texttt{yEs}, \texttt{yes}, \texttt{Yes} and \texttt{YES} will all be treated as identical). ------ Constraints ------ $1 ≤ T ≤ 1000$ $2 ≤ N ≤ 10^{5}$ $1 ≤ Q ≤ 2\cdot 10^{5}$ $1 ≤ L ≤R ≤N$ - Sum of $N$ over all test cases does not exceed $2 \cdot 10^{5}$. - Sum of $Q$ over all test cases does not exceed $2 \cdot 10^{5}$. ----- Sample Input 1 ------ 1 5 3 abcdz nbhea 2 2 1 3 4 5 ----- Sample Output 1 ------ Yes No Yes ----- explanation 1 ------ Test Case $1$: - For the first query, the substring $A[2,2] = \texttt{b}$ is already same as $B[2,2] = \texttt{b}$. Thus, the answer is $\texttt{Yes}$. - For the second query, it can be proven that the substring $A[1,3]$ can never be made equal to $B[1,3]$ using any number of moves. - For the third query, the substring $A[4,5] = \texttt{dz}$ and $B[4,5] = \texttt{ea}$. Applying the move on index $4$, we get $A[4] = \texttt{e}$ and $A[5] = \texttt{a}$. Hence, after one move, $A[4,5] = B[4,5]$. Thus, the answer is $\texttt{Yes}$ in this case. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) for _ in range(t): (n, q) = map(int, input().split()) a = list(input()) b = list(input()) alt_sum = [0] * n for i in range(n): k = (ord(b[i]) - ord(a[i])) % 26 if i == 0: alt_sum[i] = k continue if i % 2 == 0: alt_sum[i] = k + alt_sum[i - 1] else: alt_sum[i] = -k + alt_sum[i - 1] for i in range(q): (l, r) = map(int, input().split()) l -= 1 r -= 1 if l == 0 and alt_sum[r] % 26 == 0 or (l != 0 and (alt_sum[r] - alt_sum[l - 1]) % 26 == 0): print('Yes') else: print('No') ```
vfc_142780
{ "difficulty": "hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/CCD", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1\n5 3\nabcdz\nnbhea\n2 2\n1 3\n4 5\n", "output": "Yes\nNo\nYes\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/893/D
Solve the following coding problem using the programming language python: Recenlty Luba got a credit card and started to use it. Let's consider n consecutive days Luba uses the card. She starts with 0 money on her account. In the evening of i-th day a transaction a_{i} occurs. If a_{i} > 0, then a_{i} bourles are deposited to Luba's account. If a_{i} < 0, then a_{i} bourles are withdrawn. And if a_{i} = 0, then the amount of money on Luba's account is checked. In the morning of any of n days Luba can go to the bank and deposit any positive integer amount of burles to her account. But there is a limitation: the amount of money on the account can never exceed d. It can happen that the amount of money goes greater than d by some transaction in the evening. In this case answer will be «-1». Luba must not exceed this limit, and also she wants that every day her account is checked (the days when a_{i} = 0) the amount of money on her account is non-negative. It takes a lot of time to go to the bank, so Luba wants to know the minimum number of days she needs to deposit some money to her account (if it is possible to meet all the requirements). Help her! -----Input----- The first line contains two integers n, d (1 ≤ n ≤ 10^5, 1 ≤ d ≤ 10^9) —the number of days and the money limitation. The second line contains n integer numbers a_1, a_2, ... a_{n} ( - 10^4 ≤ a_{i} ≤ 10^4), where a_{i} represents the transaction in i-th day. -----Output----- Print -1 if Luba cannot deposit the money to her account in such a way that the requirements are met. Otherwise print the minimum number of days Luba has to deposit money. -----Examples----- Input 5 10 -1 5 0 -5 3 Output 0 Input 3 4 -10 0 20 Output -1 Input 5 10 -5 0 10 -11 0 Output 2 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, d) = map(int, input().split()) a = [0] + list(map(int, input().split())) b = [0] * (n + 2) b[n] = a[n] now = a[n] for i in range(n - 1, 0, -1): now = a[i] + max(now, 0) b[i] = now now = 0 res = 0 for i in range(1, n + 1): if a[i] == 0: if now < 0: res += 1 now = min(d, max(0, d - b[i + 1])) else: now += a[i] if now > d: res = -1 break print(res) ```
vfc_142784
{ "difficulty": "hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/893/D", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5 10\n-1 5 0 -5 3\n", "output": "0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 4\n-10 0 20\n", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 10\n-5 0 10 -11 0\n", "output": "2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1534/F1
Solve the following coding problem using the programming language python: This is the easy version of the problem. The difference between the versions is the constraints on a_i. You can make hacks only if all versions of the problem are solved. Little Dormi has recently received a puzzle from his friend and needs your help to solve it. The puzzle consists of an upright board with n rows and m columns of cells, some empty and some filled with blocks of sand, and m non-negative integers a_1,a_2,…,a_m (0 ≤ a_i ≤ n). In this version of the problem, a_i will be equal to the number of blocks of sand in column i. When a cell filled with a block of sand is disturbed, the block of sand will fall from its cell to the sand counter at the bottom of the column (each column has a sand counter). While a block of sand is falling, other blocks of sand that are adjacent at any point to the falling block of sand will also be disturbed and start to fall. Specifically, a block of sand disturbed at a cell (i,j) will pass through all cells below and including the cell (i,j) within the column, disturbing all adjacent cells along the way. Here, the cells adjacent to a cell (i,j) are defined as (i-1,j), (i,j-1), (i+1,j), and (i,j+1) (if they are within the grid). Note that the newly falling blocks can disturb other blocks. In one operation you are able to disturb any piece of sand. The puzzle is solved when there are at least a_i blocks of sand counted in the i-th sand counter for each column from 1 to m. You are now tasked with finding the minimum amount of operations in order to solve the puzzle. Note that Little Dormi will never give you a puzzle that is impossible to solve. Input The first line consists of two space-separated positive integers n and m (1 ≤ n ⋅ m ≤ 400 000). Each of the next n lines contains m characters, describing each row of the board. If a character on a line is '.', the corresponding cell is empty. If it is '#', the cell contains a block of sand. The final line contains m non-negative integers a_1,a_2,…,a_m (0 ≤ a_i ≤ n) — the minimum amount of blocks of sand that needs to fall below the board in each column. In this version of the problem, a_i will be equal to the number of blocks of sand in column i. Output Print one non-negative integer, the minimum amount of operations needed to solve the puzzle. Examples Input 5 7 #....#. .#.#... #....#. #....## #.#.... 4 1 1 1 0 3 1 Output 3 Input 3 3 #.# #.. ##. 3 1 1 Output 1 Note For example 1, by disturbing both blocks of sand on the first row from the top at the first and sixth columns from the left, and the block of sand on the second row from the top and the fourth column from the left, it is possible to have all the required amounts of sand fall in each column. It can be proved that this is not possible with fewer than 3 operations, and as such the answer is 3. Here is the puzzle from the first example. <image> For example 2, by disturbing the cell on the top row and rightmost column, one can cause all of the blocks of sand in the board to fall into the counters at the bottom. Thus, the answer is 1. Here is the puzzle from the second example. <image> The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys input = lambda : sys.stdin.readline().rstrip() def scc(E): n = len(E) iE = [[] for _ in range(n)] for (i, e) in enumerate(E): for v in e: iE[v].append(i) T = [] done = [0] * n ct = 0 for i0 in range(n): if done[i0]: continue Q = [~i0, i0] while Q: i = Q.pop() if i < 0: if done[~i] == 2: continue done[~i] = 2 T.append(~i) ct += 1 continue if i >= 0: if done[i]: continue done[i] = 1 for j in E[i]: if done[j]: continue Q.append(~j) Q.append(j) done = [0] * n SCC = [] I = [0] * n for i0 in T[::-1]: if done[i0]: continue L = [] Q = [~i0, i0] while Q: i = Q.pop() if i < 0: if done[~i] == 2: continue done[~i] = 2 L.append(~i) I[~i] = len(SCC) continue if i >= 0: if done[i]: continue done[i] = 1 for j in iE[i]: if done[j]: continue Q.append(~j) Q.append(j) SCC.append(L) ciE = [1] * len(SCC) for (i, e) in enumerate(E): for j in e: if I[i] == I[j]: continue ciE[I[j]] = 0 return ciE (N, M) = map(int, input().split()) Z = [[1 if a == '#' else 0 for a in input()] for _ in range(N)] su = sum([int(a) for a in input().split()]) I = [] ZZ = [[-1] * M for _ in range(N)] for j in range(M): for i in range(N)[::-1]: if Z[i][j]: ZZ[i][j] = len(I) I.append(i << 20 ^ j) elif i < N - 1: ZZ[i][j] = ZZ[i + 1][j] mmm = (1 << 20) - 1 E = [[] for _ in range(su)] for k in range(su): ij = I[k] i = ij >> 20 j = ij & mmm if i < N - 1 and ZZ[i + 1][j] >= 0: E[k].append(ZZ[i + 1][j]) if i and Z[i - 1][j]: E[k].append(ZZ[i - 1][j]) if j and ZZ[i][j - 1] >= 0: E[k].append(ZZ[i][j - 1]) if j < M - 1 and ZZ[i][j + 1] >= 0: E[k].append(ZZ[i][j + 1]) ciE = scc(E) print(sum(ciE)) ```
vfc_142788
{ "difficulty": "unknown_difficulty", "memory_limit": "512.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1534/F1", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3 6\n..#..#\n......\n#####.\n1 1 2 1 1 1\n", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 10\n#..###..##\n...#..###.\n.###..##..\n1 1 1 3 1 1 2 2 2 1\n", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 1\n.\n0\n", "output": "0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 1\n#\n1\n", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 3\n#.#\n#..\n##.\n2 1 1\n", "output": "1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/check-squares2421/1
Solve the following coding problem using the programming language python: Given an integer N, check if it is possible to represent it as a function(a, b) such that : a^{2} + b^{2} = N where "a" and "b" are whole numbers. Print 1 if it's possible, else Print 0. Example 1: Input: N = 1 Output: 1 Explanation: 1^{2} + 0^{2} = 1. So, the Output is 1 Example 2: Input: N = 2 Output: 1 Explanation: 1^{2} + 1^{2} = 2. So, the Output is 1 Example 3: Input: N = 7 Output: 0 Explanation: We don't have a or b, which when summed after squaring gives 7. So, Output is 0. Your Task: You don't need to read input or print anything. Your task is to complete the function checkSquares() which takes an Integer N as input and returns the answer. Expected Time Complexity: O(N) Expected Auxiliary Space: O(1) Constraints: 1 <= N <= 10^{6} Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def checkSquares(self, N): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import math class Solution: def checkSquares(self, N): flag = 0 for a in range(int(math.sqrt(N)) + 1): for b in range(int(math.sqrt(N)) + 1): if a * a + b * b == N: flag = 1 break if flag == 1: break return flag ```
vfc_142792
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/check-squares2421/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 1", "output": "1", "type": "stdin_stdout" }, { "fn_name": null, "input": "N = 2", "output": "1", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/deque-implementations/1
Solve the following coding problem using the programming language python: A deque is a double-ended queue that allows enqueue and dequeue operations from both the ends. Given a deque and Q queries. The task is to perform some operation on dequeue according to the queries as given below: 1. pb: query to push back the element x. 2. pf: query to push element x(given with query) to the front of the deque. 3. pp_b(): query to delete element from the back of the deque. 4. f: query to return a front element from the deque. Example 1: Input: 5 pf 5 pf 10 pb 6 f pp_b Output: 10 Explanation: 1. After push front deque will be {5} 2. After push front deque will be {10, 5} 3. After push back deque will be {10, 5, 6} 4. Return front element which is 10 5. After pop back deque will be {10, 5} Example 2: Input: 2 pf 5 f Output: 5 Explanation: 1. After push front deque will be {5} 2. Return front element which is 5 Your Task: Your task is to complete the following functions: push_back_pb(): Push back the given element and then driver code prints that element. push_front_pf(): Push front the given element and then driver code prints that element. pop_back_ppb(): Pop the back element (if exists) and then the driver code prints the size of the deque. front_dq(): Return the front elements if it exists, else return -1. The driver code prints the return value. Expected Time Complexity: O(1) Expected Auxilliary Space: O(1) Constraints: 1 ≤ Number of queries ≤ 10^{5} ^{*Note:}^{ Ouput is also printed after every method call, see the driver code.} Write your solution by modifying this code: ```python #User function Template for python3 #dq : deque in which element is to be pushed #x : element to be pushed #Function to push element x to the front of the deque. def push_front_pf(dq,x): #code here #Function to push element x to the back of the deque. def push_back_pb(dq,x): #code here #Function to return element from front of the deque. def front_dq(dq): #code here #Function to pop element from back of the deque. def pop_back_ppb(dq): #code here ``` Your solution should implemented in the function "push_front_pf". The inputs will be passed to it and it should return the correct solution. Now solve the problem and return the code.
```python def push_front_pf(dq, x): dq.appendleft(x) def push_back_pb(dq, x): dq.append(x) def front_dq(dq): if not dq: return -1 return dq[0] def pop_back_ppb(dq): if not dq: return -1 return dq.pop() ```
vfc_142794
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/deque-implementations/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": "push_front_pf", "input": "5\npf 5\npf 10\npb 6\nf\npp_b", "output": "10", "type": "function_call" }, { "fn_name": "push_front_pf", "input": "2\npf 5 \nf", "output": "5", "type": "function_call" } ] }
taco
verifiable_code
https://www.codechef.com/problems/SUMOFPROD2
Solve the following coding problem using the programming language python: For an array A of length N, let F(A) denote the sum of the product of all the subarrays of A. Formally, F(A) = \sum_{L=1}^N \sum_{R=L}^N (\prod_{i=L}^R A_{i}\right ) For example, let A = [1, 0, 1], then there are 6 possible subarrays: Subarray [1, 1] has product = 1 Subarray [1, 2] has product = 0 Subarray [1, 3] has product = 0 Subarray [2, 2] has product = 0 Subarray [2, 3] has product = 0 Subarray [3, 3] has product = 1 So F(A) = 1+1 = 2. Given a binary array A, determine the sum of F(A) over all the N! orderings of A modulo 998244353. Note that orderings here are defined in terms of indices, not elements; which is why every array of length N has N! orderings. For example, the 3! = 6 orderings of A = [1, 0, 1] are: [1, 0, 1] corresponding to indices [1, 2, 3] [1, 1, 0] corresponding to indices [1, 3, 2] [0, 1, 1] corresponding to indices [2, 1, 3] [0, 1, 1] corresponding to indices [2, 3, 1] [1, 1, 0] corresponding to indices [3, 1, 2] [1, 0, 1] corresponding to indices [3, 2, 1] ------ Input Format ------ - The first line of input will contain a single integer T, denoting the number of test cases. - Each test case consists of multiple lines of input. - The first line of each test case contains a single integer N denoting the le - The second line contains N space-separated integers denoting the array A. ------ Output Format ------ For each test case, output the sum of F(A) over all the N! orderings of A, modulo 998244353. ------ Constraints ------ $1 ≤ T ≤ 1000$ $1 ≤ N ≤ 10^{5}$ $0 ≤ A_{i} ≤ 1$ - The sum of $N$ over all test cases won't exceed $2 \cdot 10^{5}$. ----- Sample Input 1 ------ 4 3 1 0 1 1 0 2 1 1 4 1 1 0 1 ----- Sample Output 1 ------ 16 0 6 120 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python MOD = 998244353 cpraid1 = [1] * 100001 cpraid2 = [1] * 100001 cpraid3 = [1] * 100001 for i in range(2, 100001): cpraid1[i] = cpraid1[i - 1] * i % MOD cpraid2[i] = MOD - MOD // i * cpraid2[MOD % i] % MOD cpraid3[i] = cpraid3[i - 1] * cpraid2[i] % MOD def C(x, y): return 0 if x < 0 or y > x else cpraid1[x] * cpraid3[y] * cpraid3[x - y] % MOD T = int(input()) for i in range(T): (N, K) = (int(input()), 0) cpraid = list(map(int, input().split())) c = cpraid.count(0) for i in range(N - c + 1): K += i * C(N - i, c) % MOD ans = K * (c + 1) * cpraid1[N - c] * cpraid1[c] % MOD print(ans) ```
vfc_142797
{ "difficulty": "medium_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/SUMOFPROD2", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n3\n1 0 1\n1\n0\n2\n1 1\n4\n1 1 0 1\n", "output": "16\n0\n6\n120\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.hackerrank.com/challenges/runningtime/problem
Solve the following coding problem using the programming language python: In a previous challenge you implemented the Insertion Sort algorithm. It is a simple sorting algorithm that works well with small or mostly sorted data. However, it takes a long time to sort large unsorted data. To see why, we will analyze its running time. Running Time of Algorithms The running time of an algorithm for a specific input depends on the number of operations executed. The greater the number of operations, the longer the running time of an algorithm. We usually want to know how many operations an algorithm will execute in proportion to the size of its input, which we will call $unrecognized$. What is the ratio of the running time of Insertion Sort to the size of the input? To answer this question, we need to examine the algorithm. Analysis of Insertion Sort For each element $unrecognized$ in an array of $unrecognized$ numbers, Insertion Sort compares the number to those to its left until it reaches a lower value element or the start. At that point it shifts everything to the right up one and inserts $unrecognized$ into the array. How long does all that shifting take? In the best case, where the array was already sorted, no element will need to be moved, so the algorithm will just run through the array once and return the sorted array. The running time would be directly proportional to the size of the input, so we can say it will take $unrecognized$ time. However, we usually focus on the worst-case running time (computer scientists are pretty pessimistic). The worst case for Insertion Sort occurs when the array is in reverse order. To insert each number, the algorithm will have to shift over that number to the beginning of the array. Sorting the entire array of $unrecognized$ numbers will therefore take $unrecognized$ operations, which is $unrecognized$ (almost $unrecognized$$unrecognized$$unrecognized$). Computer scientists just round that up (pick the dominant term) to $unrecognized$$unrecognized$ and say that Insertion Sort is an "$unrecognized$$unrecognized$ time" algorithm. What this means The running time of the algorithm against an array of $unrecognized$ elements is $unrecognized$$unrecognized$. For $unrecognized$ elements, it will be $unrecognized$$unrecognized$. Insertion Sort can work well for small inputs or if you know the data is likely to be nearly sorted, like check numbers as they are received by a bank. The running time becomes unreasonable for larger inputs. Challenge Can you modify your previous Insertion Sort implementation to keep track of the number of shifts it makes while sorting? The only thing you should print is the number of shifts made by the algorithm to completely sort the array. A shift occurs when an element's position changes in the array. Do not shift an element if it is not necessary. Function Description Complete the runningTime function in the editor below. runningTime has the following parameter(s): int arr[n]: an array of integers Returns int: the number of shifts it will take to sort the array Input Format The first line contains the integer $unrecognized$, the number of elements to be sorted. The next line contains $unrecognized$ integers of $unrecognized$. Constraints $unrecognized$ $unrecognized$ Sample Input STDIN Function ----- -------- 5 arr[] size n =5 2 1 3 1 2 arr = [2, 1, 3, 1, 2] Sample Output 4 Explanation Iteration Array Shifts 0 2 1 3 1 2 1 1 2 3 1 2 1 2 1 2 3 1 2 0 3 1 1 2 3 2 2 4 1 1 2 2 3 1 Total 4 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python size = int(input()) array = input().split(' ') arr = ['None'] * size for i in range(size): arr[i] = int(array[i]) i = 1 count = 0 while i < size: tmp = arr[i] j = i - 1 while arr[j] > tmp and j > -1: arr[j + 1] = arr[j] j = j - 1 count = count + 1 arr[j + 1] = tmp i = i + 1 print(count) ```
vfc_142801
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.hackerrank.com/challenges/runningtime/problem", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5 \n2 1 3 1 2 \n", "output": "4\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/middle-of-three2926/1
Solve the following coding problem using the programming language python: Given three distinct numbers A, B and C. Find the number with value in middle (Try to do it with minimum comparisons). Example 1: Input: A = 978, B = 518, C = 300 Output: 518 Explanation: Since 518>300 and 518<978, so 518 is the middle element. Example 2: Input: A = 162, B = 934, C = 200 Output: 200 Exaplanation: Since 200>162 && 200<934, So, 200 is the middle element. Your Task: You don't need to read input or print anything.Your task is to complete the function middle() which takes three integers A,B and C as input parameters and returns the number which has middle value. Expected Time Complexity:O(1) Expected Auxillary Space:O(1) Constraints: 1<=A,B,C<=10^{9} A,B,C are distinct. Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def middle(self,A,B,C): #code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def middle(self, A, B, C): if A > B > C or C > B > A: return B elif A > C > B or B > C > A: return C else: return A ```
vfc_142805
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/middle-of-three2926/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "A = 978, B = 518, C = 300", "output": "518", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Regional College is having N branches, where each branches have positive integral student. A minimize operation is performed on the branch such that all of them are reduced by the minimum number student in a branch. Suppose we have 5 branches and all of them have below students in a branch. 5 2 4 2 6 Then in one minimize operation we reduce all the branch by 2 students. For next minimize operation 3 branch are left (have non-zero student), whose value are 3 2 4 Above step is repeated till no students are left in all branches. Given students of N branches, print the number of student that are reduce in subsequent minimize operation. Input Format The first line contains a single integer N. The next line contains N integers : X(0), X(1), X(2),..... X(N-1) separated by space, where X(i) represents the student of ith branch. Output Format For each minimize operation, print the number of students that are reduced in branches in separate line. Constraints 1 ≤ N ≤ 1000 1 ≤ X(i) ≤ 1000 SAMPLE INPUT 6 5 4 4 2 2 8 SAMPLE OUTPUT 6 4 2 1 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python n=eval(input()) s=input() lst=s.split(' ') ar=[0]*n for i in range(0,n): ar[i]=int(lst[i]) ar.sort() cnt=1 mn=ar[0] print(len(ar)) while(cnt!=0): cnt=0 for i in range(0,n): ar[i]=ar[i]-mn if(ar[i]>0): cnt=cnt+1 for i in range(0,n): if(ar[i]>0): mn=ar[i] break if(cnt>0): print(cnt) ```
vfc_142806
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "6\n5 4 4 2 2 8", "output": "6\n4\n2\n1", "type": "stdin_stdout" }, { "fn_name": null, "input": "1000\n1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1", "output": "1000", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1030/E
Solve the following coding problem using the programming language python: Vasya has a sequence $a$ consisting of $n$ integers $a_1, a_2, \dots, a_n$. Vasya may pefrom the following operation: choose some number from the sequence and swap any pair of bits in its binary representation. For example, Vasya can transform number $6$ $(\dots 00000000110_2)$ into $3$ $(\dots 00000000011_2)$, $12$ $(\dots 000000001100_2)$, $1026$ $(\dots 10000000010_2)$ and many others. Vasya can use this operation any (possibly zero) number of times on any number from the sequence. Vasya names a sequence as good one, if, using operation mentioned above, he can obtain the sequence with bitwise exclusive or of all elements equal to $0$. For the given sequence $a_1, a_2, \ldots, a_n$ Vasya'd like to calculate number of integer pairs $(l, r)$ such that $1 \le l \le r \le n$ and sequence $a_l, a_{l + 1}, \dots, a_r$ is good. -----Input----- The first line contains a single integer $n$ ($1 \le n \le 3 \cdot 10^5$) — length of the sequence. The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ($1 \le a_i \le 10^{18}$) — the sequence $a$. -----Output----- Print one integer — the number of pairs $(l, r)$ such that $1 \le l \le r \le n$ and the sequence $a_l, a_{l + 1}, \dots, a_r$ is good. -----Examples----- Input 3 6 7 14 Output 2 Input 4 1 2 1 16 Output 4 -----Note----- In the first example pairs $(2, 3)$ and $(1, 3)$ are valid. Pair $(2, 3)$ is valid since $a_2 = 7 \rightarrow 11$, $a_3 = 14 \rightarrow 11$ and $11 \oplus 11 = 0$, where $\oplus$ — bitwise exclusive or. Pair $(1, 3)$ is valid since $a_1 = 6 \rightarrow 3$, $a_2 = 7 \rightarrow 13$, $a_3 = 14 \rightarrow 14$ and $3 \oplus 13 \oplus 14 = 0$. In the second example pairs $(1, 2)$, $(2, 3)$, $(3, 4)$ and $(1, 4)$ are valid. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from bisect import bisect_left n = int(input()) b = list(map(int, input().split())) pre = [0] res = [] for j in range(n): res.append(bin(b[j]).count('1')) pre.append(pre[-1] + res[-1]) ans = 0 e = 1 o = 0 for j in range(n): if pre[j + 1] % 2 == 0: ans += e e += 1 else: ans += o o += 1 s = 0 m = 0 i = j while i >= max(0, j - 62): s += res[i] m = max(m, res[i]) if s % 2 == 0 and s < 2 * m: ans += -1 i += -1 print(ans) ```
vfc_142811
{ "difficulty": "hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1030/E", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n6 7 14\n", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\n1 2 1 16\n", "output": "4\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: E-training Nene is writing a program to look up $ N $ integers $ V_1, V_2, V_3, \ cdots, V_N $ for programming training. As told by his instructor, Umiko, Nene wrote a program to look up multiples of 2, 3, and 6. Multiples of 2 were $ A $, multiples of 3 were $ B $, and multiples of 6 were $ C $. Umiko told me to look up the number of "numbers that are neither multiples of 2 nor multiples of 3". However, Nene was tired, so she decided to cheat only for the answer. Based only on the values ​​of $ N, A, B, and C $, you can find the number of "numbers that are neither multiples of 2 nor multiples of 3". Create a program that asks for this. input $ N, A, B, C $ are given separated by blanks. output Output the number of "numbers that are neither multiples of 2 nor multiples of 3" in the data. However, insert a line break at the end. Constraint * $ N $ is an integer greater than or equal to $ 1 $ and less than or equal to $ 100 $ * $ A, B, C $ are integers greater than or equal to $ 0 $ and less than or equal to $ N $ * No inconsistent data is given, such as $ A $ being greater than $ N $ Input example 1 6 3 2 1 Output example 1 2 For example, if your data is $ 2, 3, 4, 5, 6, 7 $, then $ 5 $ and $ 7 $ are "numbers that are neither multiples of 2 nor multiples of 3". Input example 2 10 9 9 9 Output example 2 1 Example Input 6 3 2 1 Output 2 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, a, b, c) = map(int, input().split()) print(n - (a + b - c)) ```
vfc_142815
{ "difficulty": "unknown_difficulty", "memory_limit": "268.435456 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "6 5 2 1", "output": "0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "9 5 2 1", "output": "3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "12 5 2 1", "output": "6\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "0 5 2 1", "output": "-6\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "-1 5 2 1", "output": "-7\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "-1 0 2 0", "output": "-3\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/k-palindrome/1
Solve the following coding problem using the programming language python: A string is k palindrome if it can be transformed into a palindrome on removing at most k characters from it. Your task is to complete the function is_k_palin which takes two arguments a string str and a number N . Your function should return true if the string is k palindrome else it should return false. Input: The first line of input is an integer T denoting the number of test cases . Then T test cases follow . Each test case contains a string str and an integer N separated by space. Output: The output will be 1 if the string is k palindrome else 0 . Constraints: 1<=T<=100 1<=length of str<=100 1<=N<=20 Example: Input 2 abcdecba 1 acdcb 1 Output 1 0 Write your solution by modifying this code: ```python #You are required to complete this function #your function should return an integer def is_k_palin(string, n): #Code here ``` Your solution should implemented in the function "is_k_palin". The inputs will be passed to it and it should return the correct solution. Now solve the problem and return the code.
```python def is_k_palin(string, n): k = n n = len(string) dp = [[-1 for j in range(n)] for i in range(n)] for i in range(n - 1, -1, -1): for j in range(n): if i >= j: dp[i][j] = 0 elif string[i] == string[j]: dp[i][j] = dp[i + 1][j - 1] else: dp[i][j] = 1 + min(dp[i + 1][j], dp[i][j - 1]) if dp[0][n - 1] <= k: return 1 return 0 ```
vfc_142824
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/k-palindrome/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": "is_k_palin", "input": "2\r\n\nabcdecba 1\r\n\nacdcb 1", "output": "1\n0", "type": "function_call" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1133/D
Solve the following coding problem using the programming language python: You are given two arrays $a$ and $b$, each contains $n$ integers. You want to create a new array $c$ as follows: choose some real (i.e. not necessarily integer) number $d$, and then for every $i \in [1, n]$ let $c_i := d \cdot a_i + b_i$. Your goal is to maximize the number of zeroes in array $c$. What is the largest possible answer, if you choose $d$ optimally? -----Input----- The first line contains one integer $n$ ($1 \le n \le 2 \cdot 10^5$) — the number of elements in both arrays. The second line contains $n$ integers $a_1$, $a_2$, ..., $a_n$ ($-10^9 \le a_i \le 10^9$). The third line contains $n$ integers $b_1$, $b_2$, ..., $b_n$ ($-10^9 \le b_i \le 10^9$). -----Output----- Print one integer — the maximum number of zeroes in array $c$, if you choose $d$ optimally. -----Examples----- Input 5 1 2 3 4 5 2 4 7 11 3 Output 2 Input 3 13 37 39 1 2 3 Output 2 Input 4 0 0 0 0 1 2 3 4 Output 0 Input 3 1 2 -1 -6 -12 6 Output 3 -----Note----- In the first example, we may choose $d = -2$. In the second example, we may choose $d = -\frac{1}{13}$. In the third example, we cannot obtain any zero in array $c$, no matter which $d$ we choose. In the fourth example, we may choose $d = 6$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from collections import defaultdict from math import gcd N = int(input()) A = [int(x) for x in input().split()] B = [int(x) for x in input().split()] Pairs = defaultdict(int) already = 0 for i in range(N): if A[i] and B[i]: b = -B[i] a = A[i] x = gcd(abs(b), abs(a)) bb = int(b / x) aa = int(a / x) if aa < 0: if bb < 0: Pairs[-bb, -aa] += 1 else: Pairs[-bb, -aa] += 1 else: Pairs[bb, aa] += 1 elif A[i] == 0 and B[i] == 0: already += 1 elif A[i] == 0: continue else: Pairs[0] += 1 X = list(Pairs.values()) if X: print(max(X) + already) else: print(already) ```
vfc_142825
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1133/D", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5\n1 2 3 4 5\n2 4 7 11 3\n", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n13 37 39\n1 2 3\n", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\n0 0 0 0\n1 2 3 4\n", "output": "0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n1 2 -1\n-6 -12 6\n", "output": "3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n0 5 7\n0 10 13\n", "output": "2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Jack stays in a n-storey hostel. His dorm room is on the jth floor. Every morning, he is in so much hurry for classes that he cannot not decide whether to take Lift or Stairs to reach ground-floor. He asks you to help him choose either Stairs or Lift based on total time taken to reach ground-floor. It takes him 10 seconds to get down by 1 floor using Stairs. The lift works as follows: If the lift is at the ith floor, it take 5 second to reach the (i-1) or (i+1) floor. The lift may stop at a floor to pick up persons or to drop off persons or to change the direction. If the lift stops at a floor due to one/more of these reasons, it takes 10 seconds extra at that floor. It changes its direction only at the ground floor(0th floor) or top floor(nth floor). Assume that nobody else is using the lift other than Jack. Input: First line contains T - number of test cases. Each of next T lines contains three integers n, J and L and a character either 'U' or 'D' (without quotes) where J indicates the number of the floor Jack is present at the moment, L indicates the number of floor Lift is present at the moment and 'U' or 'D' represents whether Lift is moving Up or Down. Output: Print in T lines containing 'Stairs' or 'Lift'(without quotes) followed by the minimum amount of time it would take Jack to reach the ground floor. If time taken by both the ways is same, Jack would obviously prefer the Lift. Constraints: 1 ≤ n ≤ 100 1 ≤ J ≤ n 0 ≤ L ≤ n SAMPLE INPUT 3 30 10 20 U 10 10 10 U 80 60 60 D SAMPLE OUTPUT Stairs 100 Lift 70 Lift 320 Explanation Jack is on the 10th floor. So it takes him 1010=100 seconds to reach the ground floor by stairs. The lift is on the 20th floor. As it is going up right now, it will first go to the top floor( i.e. the 30th floor)(105 seconds) + change its direction(10 seconds) + come down to 10th floor(205 seconds) + pick up Jack(10 seconds) + reach the ground floor(105 seconds) + drop Jack ( 10 seconds) ; time = (30-20)5+10+305+10 +10 = 50+10+150+20=230 seconds. Time to reach ground floor by stairs=1010=100 seconds. Here, the lift and Jack are on the same floor (i.e. the top floor). Time to reach ground floor by lift = time to change directions(10 seconds) + time to reach ground floor(105 seconds) + time to drop Jack(10 seconds)=10 + 510+10=70 seconds. * When Jack is on the top floor, there is no need to consider separately the time for Jack to climb on the lift. As he will climb when the lift stops to change directions The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = input() for _ in range(int(t)): inp = input().split() n, J, L = list(map(int, inp[:-1])) d = inp[-1] stairs = 10*(J) lift = 0 if d == 'U': if J != n: lift = 30 + (n-L)*5 + (n*5) if J == n: lift = 20 + (n-L)*5 + (n*5) elif d =='D': if L >= J: lift = 20 + L*5 else: lift = 40 + L*5 + 2*n*5 if lift <= stairs: print('Lift',lift) else: print('Stairs',stairs) ```
vfc_142829
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "32\n10 5 5 U\n10 5 5 D\n10 3 3 D\n10 9 9 U\n10 10 10 U\n10 10 10 D\n100 80 20 U\n100 80 45 U\n100 80 46 U\n100 80 40 D\n100 80 0 D\n100 80 79 D\n100 100 3 U\n100 100 4 U\n100 100 5 U\n100 100 2 U\n100 100 1 D\n100 53 100 U\n100 52 100 U\n100 51 100 U\n100 54 100 U\n100 51 99 U\n100 53 99 U\n100 54 99 U\n100 55 99 U\n100 52 100 D\n100 51 100 D\n100 50 100 D\n100 50 99 D\n100 51 99 D\n100 52 99 D\n100 53 99 D", "output": "Stairs 50\nLift 45\nStairs 30\nLift 85\nLift 70\nLift 70\nStairs 800\nStairs 800\nLift 800\nStairs 800\nStairs 800\nStairs 800\nStairs 1000\nLift 1000\nLift 995\nStairs 1000\nStairs 1000\nLift 530\nStairs 520\nStairs 510\nLift 530\nStairs 510\nStairs 530\nLift 535\nLift 535\nLift 520\nStairs 510\nStairs 500\nStairs 500\nStairs 510\nLift 515\nLift 515", "type": "stdin_stdout" }, { "fn_name": null, "input": "50\n76 46 57 U\n78 44 21 D\n100 71 6 U\n66 35 18 D\n79 50 66 U\n82 49 81 D\n91 46 59 D\n86 39 59 U\n87 30 44 D\n57 36 39 U\n64 33 16 U\n98 11 79 U\n66 59 33 D\n65 15 41 U\n65 15 47 U\n59 12 15 U\n60 7 32 U\n51 9 51 D\n82 63 42 D\n51 29 47 D\n96 67 56 U\n69 52 60 D\n63 30 10 U\n93 35 56 D\n85 31 80 D\n90 26 10 U\n52 50 20 U\n79 65 54 D\n91 1 21 U\n51 21 23 D\n73 2 23 D\n91 26 56 D\n71 5 55 D\n95 62 5 D\n68 11 18 U\n98 46 47 U\n57 27 32 U\n87 62 54 U\n81 30 45 U\n73 19 42 U\n89 34 60 U\n57 46 15 D\n84 55 14 U\n63 38 56 D\n100 32 32 D\n64 63 19 U\n82 5 27 U\n61 34 43 U\n70 20 15 D\n90 83 52 U", "output": "Stairs 460\nStairs 440\nStairs 710\nStairs 350\nLift 490\nLift 425\nLift 315\nStairs 390\nLift 240\nStairs 360\nStairs 330\nStairs 110\nStairs 590\nStairs 150\nStairs 150\nStairs 120\nStairs 70\nStairs 90\nStairs 630\nLift 255\nStairs 670\nLift 320\nStairs 300\nLift 300\nStairs 310\nStairs 260\nLift 450\nStairs 650\nStairs 10\nLift 135\nStairs 20\nStairs 260\nStairs 50\nStairs 620\nStairs 110\nStairs 460\nStairs 270\nStairs 620\nStairs 300\nStairs 190\nStairs 340\nStairs 460\nStairs 550\nLift 300\nLift 180\nLift 575\nStairs 50\nStairs 340\nStairs 200\nLift 670", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/HIGHFREQ
Solve the following coding problem using the programming language python: Chef has an array A of length N. Let F(A) denote the maximum frequency of any element present in the array. For example: If A = [1, 2, 3, 2, 2, 1], then F(A) = 3 since element 2 has the highest frequency = 3. If A = [1, 2, 3, 3, 2, 1], then F(A) = 2 since highest frequency of any element is 2. Chef can perform the following operation at most once: Choose any [subsequence] S of the array such that every element of S is the same, say x. Then, choose an integer y and replace every element in this subsequence with y. For example, let A = [1, 2, 2, 1, 2, 2]. A few examples of the operation that Chef can perform are: [1, \textcolor{red}{2, 2}, 1, 2, 2] \to [1, \textcolor{blue}{5, 5}, 1, 2, 2] [1, \textcolor{red}{2}, 2, 1, \textcolor{red}{2, 2}] \to [1, \textcolor{blue}{19}, 2, 1, \textcolor{blue}{19, 19}] [\textcolor{red}{1}, 2, 2, 1, 2, 2] \to [\textcolor{blue}{2}, 2, 2, 1, 2, 2] Determine the minimum possible value of F(A) Chef can get by performing the given operation at most once. ------ Input Format ------ - The first line of input will contain a single integer T, denoting the number of test cases. - Each test case consists of two lines of input. - The first line of each test case contains a single integer N denoting the length of array A. - The second line contains N space-separated integers denoting the array A. ------ Output Format ------ For each test case, output the minimum value of F(A) Chef can get if he performs the operation optimally. ------ Constraints ------ $1 ≤ T ≤ 5000$ $2 ≤ N ≤ 10^{5}$ $1 ≤ A_{i} ≤ N$ - The sum of $N$ over all test cases won't exceed $2 \cdot 10^{5}$. ----- Sample Input 1 ------ 3 4 1 2 1 2 5 1 1 1 1 1 6 1 2 2 1 2 2 ----- Sample Output 1 ------ 2 3 2 ----- explanation 1 ------ Test case $1$: Chef cannot reduce the value of $F(A)$ by performing any operation. Test case $2$: Chef can perform the operation $[\textcolor{red}{1}, 1, \textcolor{red}{1}, 1, \textcolor{red}{1}] \to [\textcolor{blue}{2}, 1, \textcolor{blue}{2}, 1, \textcolor{blue}{2}]$. The value of $F(A)$ in this case is $3$, which is the minimum possible. Test case $3$: Chef can perform the operation $[1, \textcolor{red}{2, 2}, 1, 2, 2] \to [1, \textcolor{blue}{5, 5}, 1, 2, 2]$. The value of $F(A)$ in this case is $2$, which is the minimum possible. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from collections import Counter from math import ceil, floor, gcd for _ in range(int(input())): n = int(input()) a = list(Counter([int(x) for x in input().strip().split()]).values()) if len(a) == 1: print(ceil(a[0] / 2)) else: a.sort() print(max(ceil(a[-1] / 2), a[-2])) ```
vfc_142834
{ "difficulty": "medium", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/HIGHFREQ", "time_limit": "0.5 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n4\n1 2 1 2\n5\n1 1 1 1 1\n6\n1 2 2 1 2 2\n", "output": "2\n3\n2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1608/D
Solve the following coding problem using the programming language python: You are given $n$ dominoes. Each domino has a left and a right cell. Each cell can be colored either black or white. Some cells are already colored, while some aren't yet. The coloring is said to be valid if and only if it is possible to rearrange the dominoes in some order such that for each $1 \le i \le n$ the color of the right cell of the $i$-th domino is different from the color of the left cell of the $((i mod n)+1)$-st domino. Note that you can't rotate the dominoes, so the left cell always remains the left cell, and the right cell always remains the right cell. Count the number of valid ways to color the yet uncolored cells of dominoes. Two ways are considered different if there is a cell that is colored white in one way and black in the other. In particular, colorings BW WB and WB BW different (and both invalid). As this number can be very big, output it modulo $998\,244\,353$. -----Input----- The first line of the input contains a single integer $n$ ($1 \le n \le 10^5$) — the number of dominoes. The next $n$ lines describe dominoes. Each line contains two characters which represent the left and the right cell. Character B means that the corresponding cell is black, character W means that the corresponding cell is white, and ? means that the cell is yet to be colored. -----Output----- Print a single integer — the answer to the problem. -----Examples----- Input 1 ?W Output 1 Input 2 ?? W? Output 2 Input 4 BB ?? W? ?? Output 10 -----Note----- In the first test case, there is only one domino, and we need the color of its right cell to be different from the color of its left cell. There is only one way to achieve this. In the second test case, there are only $2$ such colorings: BB WW and WB WB. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python MOD = 998244353 MAX = 200005 fact = [1] for zz in range(1, MAX + 1): fact.append(fact[-1] * zz % MOD) def nCr(n, r): num = fact[n] den = fact[r] * fact[n - r] % MOD return num * pow(den, MOD - 2, MOD) % MOD from collections import Counter def main(): MOD = 998244353 cnts = Counter() n = int(input()) arr = [] for _ in range(n): s = input() arr.append(s) cnts[s] += 1 wCnt = bCnt = 0 for (k, v) in cnts.items(): for i in range(2): if k[i] == 'W': wCnt += v if k[i] == 'B': bCnt += v if wCnt > n or bCnt > n: print(0) return gap = n - wCnt + n - bCnt total = nCr(gap, n - wCnt) if cnts['WW'] == cnts['BB'] == 0: subtract = 0 minWBCnts = minBWCnts = 0 for wb in ['W?', '?B', 'WB']: minWBCnts += cnts[wb] for bw in ['B?', '?W', 'BW']: minBWCnts += cnts[bw] gap = n - minWBCnts - minBWCnts qq = cnts['??'] for wbCnts in range(1, n): bwCnts = n - wbCnts if wbCnts < minWBCnts or bwCnts < minBWCnts: continue assert qq >= wbCnts - minWBCnts subtract += nCr(qq, wbCnts - minWBCnts) subtract %= MOD total = (total - subtract + MOD) % MOD print(total) return import sys input = lambda : sys.stdin.readline().rstrip('\r\n') def oneLineArrayPrint(arr): print(' '.join([str(x) for x in arr])) def multiLineArrayPrint(arr): print('\n'.join([str(x) for x in arr])) def multiLineArrayOfArraysPrint(arr): print('\n'.join([' '.join([str(x) for x in y]) for y in arr])) def readIntArr(): return [int(x) for x in input().split()] def makeArr(defaultValFactory, dimensionArr): dv = defaultValFactory da = dimensionArr if len(da) == 1: return [dv() for _ in range(da[0])] else: return [makeArr(dv, da[1:]) for _ in range(da[0])] def queryInteractive(i, j): print('? {} {}'.format(i, j)) sys.stdout.flush() return int(input()) def answerInteractive(i, j, k): print('! {} {} {}'.format(i, j, k)) sys.stdout.flush() inf = float('inf') from math import gcd, floor, ceil import math for _abc in range(1): main() ```
vfc_142840
{ "difficulty": "very_hard", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1608/D", "time_limit": "1 second" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1\n?W\n", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n??\nW?\n", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\nBB\n??\nW?\n??\n", "output": "10\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "7\n?B\n??\n??\nB?\n??\n??\nWB\n", "output": "194\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "99\nW?\nB?\nBB\n??\n??\n??\n?W\n??\n?B\n??\n?B\n??\n??\nWB\nW?\n??\n??\n??\n??\n??\n??\nW?\n?W\n?W\n?B\n?W\nWB\n??\nBB\n?W\n??\n??\n?B\n??\n??\nB?\n??\n??\nB?\n??\nB?\nW?\n??\n??\n??\n??\n??\nWW\n?W\n??\n??\n?W\n??\n?B\n??\nB?\n??\nB?\n??\nB?\n??\nB?\n?B\nB?\n??\n??\n??\n??\n?B\nB?\n?W\nBW\n??\n??\n??\n??\n??\n??\n?W\n??\nB?\n??\n??\n?B\n?W\n??\nB?\n??\n??\nWW\n??\n??\nW?\nBW\n??\nB?\n??\n?B\n?W\n", "output": "140175437\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/next-greater-element-2/1
Solve the following coding problem using the programming language python: Given a circular interger array arr of size N (i.e ., the next element of arr [N-1] is arr[0] ), return the next greater number for every element in arr. The next greater element of a number x is the first greater number to its traversing-order next in the array, which means you could search circularly to find its next greater number. If it doesn't exist, return -1 for this number. Example 1: Input: N = 3 arr[ ] = {1, 2, 1} Output: {2, -1, 2} Explanation: The first 1's next greater number is 2: The number 2 can't find next greater number. The second 1's next greater number needs to search circularly, which is also 2. Example 2: Input: N = 5 arr[ ] = {5, 4, 3, 2, 1} Output: {-1, 5, 5, 5, 5} Your Task: You don't need to read input or print anything. Your task is to complete the function nextGreaterElement() which takes the array of integers arr and N as parameters and returns an array of integer which contains the next greater number for every element in arr. Expected Time Complexity: O(N) Expected Auxiliary Space: O(N) Constraints: 1 ≤ N ≤ 10^{4} 10^{-9 }≤ arr_{i }≤ 10^{-9} Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def nextGreaterElement(self, N, arr): # Code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def nextGreaterElement(self, N, arr): ans = [-2] * N ma = max(arr) for i in range(N): if arr[i] == ma: ans[i] = -1 pos = i stack = [ma] for i in range(N - 1, -1, -1): j = (i + pos) % N if ans[j] == -1: stack[:] = [ma] else: while stack[-1] <= arr[j]: stack.pop() ans[j] = stack[-1] stack.append(arr[j]) return ans ```
vfc_142845
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/next-greater-element-2/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 3\r\narr[ ] = {1, 2, 1}", "output": "{2, -1, 2}", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/DAILY
Solve the following coding problem using the programming language python: A daily train consists of N cars. Let's consider one particular car. It has 54 places numbered consecutively from 1 to 54, some of which are already booked and some are still free. The places are numbered in the following fashion: The car is separated into 9 compartments of 6 places each, as shown in the picture. So, the 1st compartment consists of places 1, 2, 3, 4, 53 and 54, the 2nd compartment consists of places 5, 6, 7, 8, 51 and 52, and so on. A group of X friends wants to buy tickets for free places, all of which are in one compartment (it's much funnier to travel together). You are given the information about free and booked places in each of the N cars. Find the number of ways to sell the friends exactly X tickets in one compartment (note that the order in which the tickets are sold doesn't matter). ------ Input ------ The first line of the input contains two integers X and N (1 ≤ X ≤ 6, 1 ≤ N ≤ 10) separated by a single space. Each of the following N lines contains the information about one car which is a string of length 54 consisting of '0' and '1'. The i-th character (numbered from 1) is '0' if place i in the corresponding car is free, and is '1' if place i is already booked. ------ Output ------ Output just one integer -- the requested number of ways. ----- Sample Input 1 ------ 1 3 100101110000001011000001111110010011110010010111000101 001010000000101111100000000000000111101010101111111010 011110011110000001010100101110001011111010001001111010 ----- Sample Output 1 ------ 85 ----- explanation 1 ------ In the first test case, any of the free places can be sold. ----- Sample Input 2 ------ 6 3 100101110000001011000001111110010011110010010111000101 001010000000101111100000000000000111101010101111111010 011110011110000001010100101110001011111010001001111010 ----- Sample Output 2 ------ 1 ----- explanation 2 ------ In the second test case, the only free compartment in the train is compartment 3 in the first car (places 9, 10, 11, 12, 49 and 50 are all free). ----- Sample Input 3 ------ 3 2 000000000000000000000000000000000000000000000000000000 000000000000000000000000000000000000000000000000000000 ----- Sample Output 3 ------ 360 ----- explanation 3 ------ In the third test case, the train is still absolutely free; as there are 20 ways to sell 3 tickets in an empty compartment, the answer is 2 * 9 * 20 = 360. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import math (x, n) = map(int, input().split()) counter = 0 equals = 0 for _ in range(n): a = input() (i, j) = (0, 54) for __ in range(9): lst = a[i:i + 4] + a[j - 2:j] counter += math.comb(lst.count('0'), x) i += 4 j -= 2 print(counter) ```
vfc_142846
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/DAILY", "time_limit": "2.992 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1 3\n100101110000001011000001111110010011110010010111000101\n001010000000101111100000000000000111101010101111111010\n011110011110000001010100101110001011111010001001111010", "output": "85", "type": "stdin_stdout" }, { "fn_name": null, "input": "6 3\n100101110000001011000001111110010011110010010111000101\n001010000000101111100000000000000111101010101111111010\n011110011110000001010100101110001011111010001001111010", "output": "1", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 2\n000000000000000000000000000000000000000000000000000000\n000000000000000000000000000000000000000000000000000000", "output": "360", "type": "stdin_stdout" }, { "fn_name": null, "input": "6 2\n100101110000001011000001111110010011110010010111000101\n001010000000101111100000000000000111101010101111111010\n011110011110000001010100101110001011111010001001111010", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 2\n000000000000000001000000000000000000000000000000000000\n000000000000000000000000000000000000000000000000000000", "output": "350\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4 2\n000000000000000001000000000000000000000000000000000000\n000000000000000000000000000000000000000000000000000000", "output": "260\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/linear-diophantine-equations5649/1
Solve the following coding problem using the programming language python: A Diophantine equation is a polynomial equation, usually in two or more unknowns, such that only the integral solutions are required. An Integral solution is a solution such that all the unknown variables take only integer values. Given three integers A, B, C representing a linear equation of the form: Ax + By = C. Determine if the equation has a solution such that x and y are both integral values. Example 1: Input: A = 3 B = 6 C = 9 Output: 1 Explanation: It is possible to write A, B, C in the for 3 + 6 = 9 Example 2: Input: A = 4 B = 2 C = 3 Output: 0 Explanation: It is not possible to represent A, B, C in Diophantine equation form. Your Task: You don't need to read input or print anything. Your task is to complete the function isPossible() which takes three integer values A, B, C as input parameters and returns 1 if the solution for x and y exist otherwise return 0. Expected Time Complexity: O(log N) Expected Space Complexity: O(1) Constraints: 1 <= A,B,C <= 10^{5} Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def isPossible(self,A,B,C): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import math class Solution: def isPossible(self, A, B, C): k = math.gcd(A, B) if C % k == 0: return 1 else: return 0 ```
vfc_142850
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/linear-diophantine-equations5649/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "A = 3\nB = 6\nC = 9", "output": "1", "type": "stdin_stdout" }, { "fn_name": null, "input": "A = 4\nB = 2\nC = 3", "output": "0", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1179/C
Solve the following coding problem using the programming language python: Serge came to the school dining room and discovered that there is a big queue here. There are $m$ pupils in the queue. He's not sure now if he wants to wait until the queue will clear, so he wants to know which dish he will receive if he does. As Serge is very tired, he asks you to compute it instead of him. Initially there are $n$ dishes with costs $a_1, a_2, \ldots, a_n$. As you already know, there are the queue of $m$ pupils who have $b_1, \ldots, b_m$ togrogs respectively (pupils are enumerated by queue order, i.e the first pupil in the queue has $b_1$ togrogs and the last one has $b_m$ togrogs) Pupils think that the most expensive dish is the most delicious one, so every pupil just buys the most expensive dish for which he has money (every dish has a single copy, so when a pupil has bought it nobody can buy it later), and if a pupil doesn't have money for any dish, he just leaves the queue (so brutal capitalism...) But money isn't a problem at all for Serge, so Serge is buying the most expensive dish if there is at least one remaining. Moreover, Serge's school has a very unstable economic situation and the costs of some dishes or number of togrogs of some pupils can change. More formally, you must process $q$ queries: change $a_i$ to $x$. It means that the price of the $i$-th dish becomes $x$ togrogs. change $b_i$ to $x$. It means that the $i$-th pupil in the queue has $x$ togrogs now. Nobody leaves the queue during those queries because a saleswoman is late. After every query, you must tell Serge price of the dish which he will buy if he has waited until the queue is clear, or $-1$ if there are no dishes at this point, according to rules described above. -----Input----- The first line contains integers $n$ and $m$ ($1 \leq n, m \leq 300\ 000$) — number of dishes and pupils respectively. The second line contains $n$ integers $a_1, a_2, \ldots, a_n$ ($1 \leq a_i \leq 10^{6}$) — elements of array $a$. The third line contains $m$ integers $b_1, b_2, \ldots, b_{m}$ ($1 \leq b_i \leq 10^{6}$) — elements of array $b$. The fourth line conatins integer $q$ ($1 \leq q \leq 300\ 000$) — number of queries. Each of the following $q$ lines contains as follows: if a query changes price of some dish, it contains $1$, and two integers $i$ and $x$ ($1 \leq i \leq n$, $1 \leq x \leq 10^{6}$), what means $a_i$ becomes $x$. if a query changes number of togrogs of some pupil, it contains $2$, and two integers $i$ and $x$ ($1 \leq i \leq m$, $1 \leq x \leq 10^{6}$), what means $b_i$ becomes $x$. -----Output----- For each of $q$ queries prints the answer as the statement describes, the answer of the $i$-th query in the $i$-th line (the price of the dish which Serge will buy or $-1$ if nothing remains) -----Examples----- Input 1 1 1 1 1 1 1 100 Output 100 Input 1 1 1 1 1 2 1 100 Output -1 Input 4 6 1 8 2 4 3 3 6 1 5 2 3 1 1 1 2 5 10 1 1 6 Output 8 -1 4 -----Note----- In the first sample after the first query, there is one dish with price $100$ togrogs and one pupil with one togrog, so Serge will buy the dish with price $100$ togrogs. In the second sample after the first query, there is one dish with price one togrog and one pupil with $100$ togrogs, so Serge will get nothing. In the third sample after the first query, nobody can buy the dish with price $8$, so Serge will take it. After the second query, all dishes will be bought, after the third one the third and fifth pupils will by the first and the second dishes respectively and nobody will by the fourth one. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys from itertools import accumulate class Lazysegtree: def __init__(self, A, intv, initialize=True, segf=min): self.N = len(A) self.N0 = 2 ** (self.N - 1).bit_length() self.intv = intv self.segf = segf self.lazy = [0] * (2 * self.N0) if initialize: self.data = [intv] * self.N0 + A + [intv] * (self.N0 - self.N) for i in range(self.N0 - 1, 0, -1): self.data[i] = self.segf(self.data[2 * i], self.data[2 * i + 1]) else: self.data = [intv] * (2 * self.N0) def _ascend(self, k): k = k >> 1 c = k.bit_length() for j in range(c): idx = k >> j self.data[idx] = self.segf(self.data[2 * idx], self.data[2 * idx + 1]) + self.lazy[idx] def _descend(self, k): k = k >> 1 idx = 1 c = k.bit_length() for j in range(1, c + 1): idx = k >> c - j ax = self.lazy[idx] if not ax: continue self.lazy[idx] = 0 self.data[2 * idx] += ax self.data[2 * idx + 1] += ax self.lazy[2 * idx] += ax self.lazy[2 * idx + 1] += ax def query(self, l, r): L = l + self.N0 R = r + self.N0 Li = L // (L & -L) Ri = R // (R & -R) self._descend(Li) self._descend(Ri - 1) s = self.intv while L < R: if R & 1: R -= 1 s = self.segf(s, self.data[R]) if L & 1: s = self.segf(s, self.data[L]) L += 1 L >>= 1 R >>= 1 return s def add(self, l, r, x): L = l + self.N0 R = r + self.N0 Li = L // (L & -L) Ri = R // (R & -R) while L < R: if R & 1: R -= 1 self.data[R] += x self.lazy[R] += x if L & 1: self.data[L] += x self.lazy[L] += x L += 1 L >>= 1 R >>= 1 self._ascend(Li) self._ascend(Ri - 1) def binsearch(self, l, r, check, reverse=False): L = l + self.N0 R = r + self.N0 Li = L // (L & -L) Ri = R // (R & -R) self._descend(Li) self._descend(Ri - 1) (SL, SR) = ([], []) while L < R: if R & 1: R -= 1 SR.append(R) if L & 1: SL.append(L) L += 1 L >>= 1 R >>= 1 if reverse: for idx in SR + SL[::-1]: if check(self.data[idx]): break else: return -1 while idx < self.N0: ax = self.lazy[idx] self.lazy[idx] = 0 self.data[2 * idx] += ax self.data[2 * idx + 1] += ax self.lazy[2 * idx] += ax self.lazy[2 * idx + 1] += ax idx = idx << 1 if check(self.data[idx + 1]): idx += 1 return idx - self.N0 else: for idx in SL + SR[::-1]: if check(self.data[idx]): break else: return -1 while idx < self.N0: ax = self.lazy[idx] self.lazy[idx] = 0 self.data[2 * idx] += ax self.data[2 * idx + 1] += ax self.lazy[2 * idx] += ax self.lazy[2 * idx + 1] += ax idx = idx << 1 if not check(self.data[idx]): idx += 1 return idx - self.N0 def provfunc(self): idx = 1 if self.data[1] >= 0: return -1 while idx < self.N0: ax = self.lazy[idx] self.lazy[idx] = 0 self.data[2 * idx] += ax self.data[2 * idx + 1] += ax self.lazy[2 * idx] += ax self.lazy[2 * idx + 1] += ax idx = idx << 1 if self.data[idx + 1] < 0: idx += 1 return idx - self.N0 (N, M) = list(map(int, input().split())) A = list(map(int, input().split())) B = list(map(int, input().split())) table = [0] * (10 ** 6 + 1) for a in A: table[a] -= 1 for b in B: table[b] += 1 table = list(accumulate(table[::-1]))[::-1] T = Lazysegtree(table, 0, True, min) Q = int(input()) Ans = [None] * Q for q in range(Q): (t, i, x) = list(map(int, sys.stdin.readline().split())) i -= 1 if t == 1: T.add(0, x + 1, -1) T.add(0, A[i] + 1, 1) A[i] = x else: T.add(0, x + 1, 1) T.add(0, B[i] + 1, -1) B[i] = x Ans[q] = T.provfunc() print('\n'.join(map(str, Ans))) ```
vfc_142851
{ "difficulty": "hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1179/C", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1 1\n1\n1\n1\n1 1 100\n", "output": "100\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 1\n1\n1\n1\n2 1 100\n", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4 6\n1 8 2 4\n3 3 6 1 5 2\n3\n1 1 1\n2 5 10\n1 1 6\n", "output": "8\n-1\n4\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 5\n3 2 8\n1 2 8 1 1\n4\n1 3 3\n1 2 2\n2 2 10\n1 1 5\n", "output": "3\n3\n2\n2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4 1\n7 6 1 1\n3\n3\n2 1 9\n2 1 10\n2 1 6\n", "output": "6\n6\n7\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 1\n8 4 8 7 3\n9\n5\n2 1 3\n1 5 1\n2 1 8\n2 1 7\n2 1 3\n", "output": "8\n8\n8\n8\n8\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Sherlock is following N criminals, which are right now in a 2D grid. Each criminal at t=0, decides to move in certain fixed direction. Each criminal moves with same speed. These fixed directions are North, East, West and South. Two or more criminals, however, vanish whenever they meet at any place at same time, t>0. You have to tell what is the final number of criminals left at t=infinity. Note: No two criminals will have the same starting point at t=0. Input First line, T, the number of testcases. Each testcase consists of N lines. Each line contains x y z. x, y denotes the intial position of the criminal. z is one of 'N','E','W','S', denoting the direction in which this criminal will move. Output For each testcase, required answer in one line. Constraints 1 ≤ T ≤ 100 1 ≤ N ≤ 50 -1000 ≤ x, y ≤ 1000 SAMPLE INPUT 1 4 0 0 N 10 10 W 20 20 N 30 30 E SAMPLE OUTPUT 2 Explanation The criminals that start at (0,0) and (10,10) will meet at (0, 10) at t=10. The remaining two criminals will never meet. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for _ in range(eval(input())): n = eval(input()) m = n D = {} C = [] i = 0 mnx, mxx, mny, mxy = 0, 0, 0, 0 for __ in range(n): x, y, d = input().split() x = int(x) * 2 y = int(y) * 2 mxx = max(mxx, x) mxy = max(mxy, y) mnx = min(mnx, x) mny = min(mny, y) C.append([x, y, d]) D[(x, y)] = i i += 1 counts = max(mxx - mnx, mxy - mny) + 1 for i in range(counts): td = [] if m == 0: break for j in range(n): if C[j][0] != "a": x, y = C[j][0], C[j][1] if C[j][2] == "N": C[j][1] += 1 if C[j][2] == "S": C[j][1] -= 1 if C[j][2] == "E": C[j][0] += 1 if C[j][2] == "W": C[j][0] -= 1 if (C[j][0], C[j][1]) in D: if (C[j][0], C[j][1]) not in td: td.append((C[j][0], C[j][1])) C[D[(x, y)]] = ["a", "b", "c"] del D[(x, y)] m -= 1 else: del D[(x, y)] D[(C[j][0], C[j][1])] = j for a, b in td: C[D[(a, b)]] = ["a", "b", "c"] del D[(a, b)] m -= 1 print(m) ```
vfc_142855
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "20\n4\n0 0 N\n10 10 W\n20 20 N\n30 30 E\n4\n-10 0 N\n0 -10 E\n0 10 W\n10 0 S\n4\n0 0 E\n9 0 W\n0 4 S\n0 5 S\n9\n-1 0 E\n1 0 E\n0 0 N\n-1 -1 W\n1 -1 W\n0 1 S\n0 -1 W\n-1 1 S\n1 1 E\n5\n-2 -1 S\n-3 -1 W\n-2 -3 N\n1 3 S\n-3 -2 E\n9\n-1 -1 E\n-1 0 S\n-1 1 E\n0 -1 W\n0 0 N\n0 1 N\n1 -1 E\n1 0 W\n1 1 W\n50\n4 2 S\n7 3 S\n6 0 N\n2 6 W\n6 8 S\n5 4 W\n7 9 S\n7 0 E\n8 5 N\n4 0 S\n7 2 W\n8 4 S\n8 3 E\n8 8 S\n5 1 W\n4 5 E\n8 0 W\n9 7 S\n1 3 W\n5 7 S\n9 0 E\n3 9 N\n4 8 W\n0 1 N\n0 9 N\n1 4 N\n0 7 E\n7 8 S\n2 1 W\n6 1 S\n9 6 W\n6 6 S\n3 6 W\n0 2 W\n5 8 S\n5 5 S\n1 1 W\n2 9 E\n0 0 E\n4 1 W\n9 1 W\n7 1 N\n7 7 W\n1 0 W\n8 2 W\n1 5 N\n9 4 W\n2 7 E\n7 5 N\n3 3 N\n1\n0 0 N\n2\n-1000 -1000 N\n1000 1000 W\n4\n412 597 S\n412 275 E\n734 597 E\n734 275 E\n12\n-328 707 N\n312 386 N\n616 123 W\n632 -253 W\n632 707 E\n-328 -253 W\n616 308 N\n535 609 W\n431 308 S\n312 609 E\n431 123 S\n535 386 E\n20\n70 7 W\n-126 481 E\n816 -246 E\n-479 821 E\n557 -604 E\n918 7 S\n-406 821 S\n-126 749 S\n-394 481 N\n-394 749 N\n764 -397 S\n816 -674 S\n70 855 S\n-479 748 E\n388 -246 S\n557 -397 N\n-406 748 E\n764 -604 W\n918 855 E\n388 -674 N\n40\n-531 625 E\n406 -692 S\n232 -73 N\n648 605 E\n547 179 W\n470 102 W\n648 585 S\n406 -595 W\n-168 585 N\n814 207 S\n503 -692 W\n322 -73 W\n434 387 N\n828 -7 E\n503 -595 N\n648 -231 N\n-443 -218 E\n828 387 S\n-220 991 N\n470 179 W\n502 459 S\n404 207 N\n-592 564 S\n322 17 W\n547 102 W\n-531 564 N\n457 991 N\n648 459 N\n502 605 S\n729 954 W\n-443 954 N\n-168 -231 N\n404 617 W\n729 -218 E\n457 314 E\n-220 314 W\n232 17 E\n814 617 S\n434 -7 N\n-592 625 N\n50\n499 604 W\n497 729 S\n968 324 N\n601 335 E\n-487 862 W\n234 335 W\n-59 434 N\n-59 862 E\n228 211 S\n-297 962 E\n898 163 S\n497 699 S\n602 -129 W\n224 560 E\n499 433 N\n228 -348 S\n602 138 W\n-487 434 S\n115 119 N\n-256 519 W\n341 324 S\n573 766 S\n417 606 S\n-331 -348 E\n341 962 S\n-465 -238 W\n869 138 E\n-297 324 N\n670 163 W\n716 905 S\n224 359 W\n23 560 N\n467 729 S\n670 391 N\n383 119 E\n756 536 W\n898 391 W\n115 -149 S\n23 359 S\n-331 211 N\n261 766 N\n261 454 N\n573 454 N\n417 905 W\n-219 519 N\n869 -129 N\n467 699 W\n-219 482 S\n328 433 W\n601 -32 W\n50\n45 591 N\n-16 -464 N\n-400 525 S\n-271 814 N\n-301 259 S\n883 136 S\n-350 599 S\n-214 -464 W\n-25 744 N\n-641 138 N\n-271 675 N\n-697 599 S\n-156 -119 N\n-301 908 S\n950 -137 E\n552 -195 N\n742 437 S\n-670 807 N\n-16 -266 E\n883 -195 W\n-506 631 E\n314 807 S\n-214 -266 W\n542 437 S\n81 -119 W\n45 372 W\n264 372 W\n81 -356 W\n613 -381 S\n348 259 W\n799 -381 E\n-25 36 E\n683 36 W\n552 136 E\n-350 946 S\n542 237 E\n-670 -177 E\n692 -558 W\n683 744 W\n742 237 S\n264 591 S\n-697 946 E\n613 -195 W\n950 531 S\n-132 675 N\n-641 165 N\n799 -195 E\n-506 525 N\n-156 -356 E\n862 -558 N\n50\n-205 -193 S\n454 -193 W\n-176 531 E\n667 -185 S\n846 902 E\n51 695 W\n785 639 E\n846 542 N\n7 714 N\n-160 -280 S\n929 -486 N\n87 -151 N\n-160 710 E\n503 -51 S\n-253 757 W\n881 -180 N\n-166 -51 S\n830 710 S\n334 -533 E\n-533 469 S\n619 -185 S\n486 902 W\n-205 466 S\n63 695 E\n503 618 N\n486 542 N\n-498 -644 W\n667 -137 S\n929 810 W\n51 707 E\n63 707 W\n583 118 W\n87 469 W\n830 -280 N\n388 41 E\n7 531 E\n388 686 S\n-54 -686 W\n-582 -686 N\n-257 41 E\n583 -180 N\n-371 875 N\n-367 -486 W\n-176 714 E\n-253 875 N\n454 466 N\n-54 -158 W\n-180 -533 W\n-166 618 N\n-498 639 S\n50\n-173 691 N\n-678 691 E\n-129 -20 S\n100 668 E\n965 936 E\n-341 668 N\n-388 -471 N\n-388 69 S\n694 665 W\n44 796 W\n152 69 W\n-509 226 W\n-193 865 N\n-407 -235 S\n-407 657 E\n485 -235 S\n44 655 S\n986 -622 W\n-97 655 E\n559 385 N\n-97 796 N\n-202 -322 N\n986 469 W\n-678 186 N\n379 493 N\n-105 469 S\n888 385 E\n-341 227 W\n270 602 W\n912 -240 E\n559 56 S\n888 56 N\n18 231 N\n291 999 W\n270 493 N\n291 110 N\n-193 -240 S\n-129 -382 S\n485 657 N\n773 231 S\n912 865 S\n-491 -382 W\n-665 141 W\n965 665 W\n-598 110 E\n-491 -20 W\n694 936 W\n-105 -622 N\n-202 141 N\n-598 999 S\n50\n545 -325 N\n449 259 S\n683 -320 E\n144 286 S\n-584 35 W\n858 -12 E\n-237 975 N\n-153 750 S\n538 462 W\n771 -223 W\n339 559 N\n819 -81 N\n631 773 S\n631 286 S\n-544 359 W\n995 -320 E\n-193 503 N\n-12 503 N\n84 -216 E\n771 428 N\n84 -228 S\n545 -12 S\n764 462 E\n-137 259 S\n819 975 S\n-193 684 S\n538 236 S\n-471 60 E\n-237 -81 N\n858 -325 E\n-12 684 N\n697 367 S\n144 773 W\n449 845 S\n289 654 N\n-471 257 E\n72 -228 E\n72 -216 S\n-137 845 W\n888 367 W\n289 336 N\n-274 60 S\n888 176 S\n226 446 S\n120 428 E\n697 176 W\n683 -8 S\n339 446 W\n-274 257 W\n120 -223 E\n50\n-66 820 S\n903 -34 S\n498 57 N\n-394 492 N\n389 -306 S\n-381 303 E\n462 -45 S\n184 -34 S\n-29 571 S\n231 752 E\n415 -306 E\n-469 750 W\n-394 820 S\n-388 296 N\n636 -94 W\n636 571 S\n415 -332 N\n498 577 E\n-577 750 E\n288 -119 W\n-469 858 S\n4 -6 E\n14 535 W\n462 -105 W\n-324 924 W\n0 -119 N\n744 558 S\n402 -105 S\n-341 558 S\n-341 -527 S\n389 -332 N\n903 685 S\n-482 674 E\n-324 18 E\n-625 817 E\n-625 674 N\n-195 39 E\n231 535 S\n-486 -6 S\n582 18 W\n288 -407 W\n-490 39 E\n-490 334 W\n-577 858 W\n0 -407 N\n-388 303 E\n-22 57 W\n4 484 W\n744 -527 W\n-482 817 W\n50\n478 -186 W\n-664 98 N\n759 948 S\n434 795 N\n-405 289 N\n513 -678 S\n565 948 S\n-396 -170 W\n311 -195 W\n-174 290 W\n56 -354 E\n993 -424 E\n251 289 N\n-341 -157 W\n993 -166 E\n-112 150 S\n242 706 N\n129 -678 S\n383 684 W\n513 -294 S\n-78 -234 W\n-341 36 S\n-148 36 E\n129 -294 W\n423 -216 W\n493 -234 E\n434 427 W\n-405 945 E\n478 265 W\n-148 -157 W\n929 265 W\n251 715 N\n56 275 W\n242 715 E\n929 -186 S\n-78 337 N\n423 798 S\n-664 -170 S\n802 427 N\n251 706 N\n759 754 S\n383 961 N\n-112 286 N\n-591 -216 W\n-591 798 W\n-248 286 W\n660 961 N\n660 684 E\n735 -424 S\n493 337 E\n", "output": "2\n0\n2\n5\n2\n4\n25\n1\n0\n4\n8\n14\n36\n46\n38\n40\n46\n40\n34\n44\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "49\n2\n0 1 N\n0 2 S\n16\n-1 0 N\n-1 1 S\n-2 1 S\n-2 0 N\n-3 0 N\n-3 2 S\n-4 2 S\n-4 0 N\n0 11 E\n1 11 W\n1 12 W\n0 12 E\n0 13 E\n2 13 W\n2 14 W\n0 14 E\n2\n0 0 S\n0 -1 N\n2\n-1000 -1000 N\n1000 1000 W\n2\n-1 -1 E\n0 -1 W\n2\n1 0 N\n1 1 S\n50\n-9 -1 W\n-3 -8 E\n0 -8 W\n-9 -3 W\n-6 8 N\n-3 -6 N\n-2 1 N\n-10 1 E\n8 6 S\n-5 6 E\n6 3 N\n1 -7 S\n9 0 N\n-2 6 N\n-9 6 S\n-2 -3 W\n0 -7 N\n5 3 W\n-8 1 W\n-7 -8 W\n3 6 E\n0 5 W\n-1 -3 N\n7 -6 N\n8 4 W\n-6 4 E\n9 -9 N\n-10 2 W\n-4 3 W\n2 -4 S\n5 7 E\n5 -3 S\n-8 7 W\n-1 -4 E\n-3 4 E\n-6 -2 W\n5 -6 E\n3 -1 S\n-4 -10 N\n8 -8 W\n-5 -5 W\n-5 -8 N\n-4 -4 E\n-4 -7 N\n2 9 N\n7 3 W\n9 4 W\n-3 -1 E\n6 2 S\n-8 -1 S\n4\n0 0 S\n0 -1 N\n0 -2 N\n2 0 W\n50\n478 -186 W\n-664 98 N\n759 948 S\n434 795 N\n-405 289 N\n513 -678 S\n565 948 S\n-396 -170 W\n311 -195 W\n-174 290 W\n56 -354 E\n993 -424 E\n251 289 N\n-341 -157 W\n993 -166 E\n-112 150 S\n242 706 N\n129 -678 S\n383 684 W\n513 -294 S\n-78 -234 W\n-341 36 S\n-148 36 E\n129 -294 W\n423 -216 W\n493 -234 E\n434 427 W\n-405 945 E\n478 265 W\n-148 -157 W\n929 265 W\n251 715 N\n56 275 W\n242 715 E\n929 -186 S\n-78 337 N\n423 798 S\n-664 -170 S\n802 427 N\n251 706 N\n759 754 S\n383 961 N\n-112 286 N\n-591 -216 W\n-591 798 W\n-248 286 W\n660 961 N\n660 684 E\n735 -424 S\n493 337 E\n8\n7 0 N\n7 1 S\n0 5 S\n1 4 S\n2 3 S\n3 1 S\n3 0 N\n4 1 W\n16\n0 0 N\n1 1 W\n-1 1 E\n2 2 W\n-2 2 E\n3 3 W\n-3 3 E\n0 3 S\n0 4 S\n0 2 N\n8 2 E\n13 2 W\n15 2 W\n9 2 E\n11 0 N\n11 4 S\n8\n0 330 E\n1 330 W\n10 9 N\n9 10 E\n11 10 W\n10 11 S\n-1000 -1000 N\n1000 1000 W\n2\n-1000 -1000 E\n1000 1000 S\n2\n-1 0 E\n0 0 W\n2\n0 0 N\n0 3 S\n23\n-1000 1000 S\n1000 -1000 W\n120 110 N\n100 110 E\n110 140 S\n120 130 S\n130 120 W\n140 130 W\n200 200 E\n201 200 W\n200 201 S\n201 201 S\n300 300 N\n300 301 S\n300 302 S\n400 400 E\n411 400 W\n500 500 E\n501 500 W\n600 600 N\n600 601 S\n700 700 N\n700 717 S\n2\n1 1 S\n1 0 N\n50\n4 2 S\n7 3 E\n6 0 E\n2 6 N\n6 8 N\n5 4 E\n7 9 E\n7 0 E\n8 5 S\n4 0 S\n7 2 S\n8 4 N\n8 3 S\n8 8 N\n5 1 S\n4 5 S\n8 0 W\n9 7 E\n1 3 N\n5 7 E\n9 0 W\n3 9 N\n4 8 W\n0 1 N\n0 9 S\n1 4 E\n0 7 S\n7 8 W\n2 1 S\n6 1 N\n9 6 E\n6 6 S\n3 6 N\n0 2 E\n5 8 S\n5 5 W\n1 1 W\n2 9 N\n0 0 N\n4 1 N\n9 1 W\n7 1 E\n7 7 W\n1 0 W\n8 2 W\n1 5 S\n9 4 W\n2 7 N\n7 5 E\n3 3 W\n6\n0 77 E\n1 77 W\n49 50 E\n50 49 N\n51 50 W\n50 51 S\n2\n-1 -1 N\n-1 0 S\n2\n1 1 N\n1 2 S\n50\n-71 -84 E\n-69 -82 E\n-62 -86 E\n-88 -82 E\n-95 -64 N\n-53 -87 S\n-53 -97 E\n-76 -73 E\n-61 -87 W\n-100 -87 E\n-58 -74 S\n-56 -55 S\n-91 -52 W\n-60 -79 S\n-53 -100 W\n-91 -70 S\n-61 -93 N\n-71 -54 S\n-91 -84 W\n-78 -93 E\n-92 -91 E\n-82 -80 E\n-72 -62 S\n-76 -53 E\n-75 -86 W\n-63 -82 E\n-52 -81 N\n-94 -94 N\n-80 -87 N\n-75 -97 N\n-65 -94 N\n-100 -69 W\n-92 -77 E\n-74 -80 W\n-86 -100 S\n-87 -91 W\n-77 -67 S\n-89 -95 N\n-61 -61 S\n-85 -52 S\n-86 -81 E\n-69 -85 W\n-91 -57 W\n-75 -81 E\n-77 -64 N\n-94 -55 W\n-66 -99 W\n-88 -56 S\n-63 -58 S\n-54 -83 W\n50\n-926 -878 E\n648 -955 N\n136 119 W\n-11 -336 W\n-989 296 W\n-777 -40 N\n834 438 E\n-915 -370 E\n-762 364 N\n-481 -478 E\n-774 -370 W\n-415 94 S\n294 577 S\n-550 239 N\n-493 -976 S\n-968 750 S\n31 913 E\n-646 -589 N\n134 -146 S\n307 407 N\n474 862 S\n573 417 N\n-22 656 N\n-237 290 E\n250 174 S\n-335 430 E\n131 -475 N\n633 -179 E\n344 -617 W\n138 -172 E\n-312 -579 E\n718 31 S\n10 663 N\n-415 219 S\n330 311 N\n-332 -152 S\n457 -409 S\n-961 149 E\n-943 -297 N\n861 -804 W\n-590 816 N\n298 825 E\n553 -613 N\n-1000 -1000 E\n1000 1000 S\n1000 -999 N\n1000 0 S\n-1 0 E\n0 0 W\n0 1 S\n2\n0 5 N\n0 6 S\n2\n0 0 E\n3 0 W\n2\n0 1000 N\n1 -1000 S\n9\n-1 -1 E\n-1 0 S\n-1 1 E\n0 -1 W\n0 0 N\n0 1 N\n1 -1 E\n1 0 W\n1 1 W\n2\n1 0 E\n2 0 W\n4\n2 2 N\n2 5 S\n4 3 E\n7 3 W\n2\n1000 1000 W\n-999 1000 E\n2\n0 1 E\n1 1 W\n2\n1000 1000 W\n-1000 -1000 N\n2\n10 10 S\n10 9 N\n4\n-1000 0 E\n1000 0 W\n0 -1000 N\n0 1000 S\n2\n0 3 S\n0 0 N\n3\n0 0 N\n0 3 S\n0 7 S\n4\n0 0 E\n0 2 W\n1 1 S\n7 7 N\n50\n4 2 S\n7 3 S\n6 0 N\n2 6 W\n6 8 S\n5 4 W\n7 9 S\n7 0 E\n8 5 N\n4 0 S\n7 2 W\n8 4 S\n8 3 E\n8 8 S\n5 1 W\n4 5 E\n8 0 W\n9 7 S\n1 3 W\n5 7 S\n9 0 E\n3 9 N\n4 8 W\n0 1 N\n0 9 N\n1 4 N\n0 7 E\n7 8 S\n2 1 W\n6 1 S\n9 6 W\n6 6 S\n3 6 W\n0 2 W\n5 8 S\n5 5 S\n1 1 W\n2 9 E\n0 0 E\n4 1 W\n9 1 W\n7 1 N\n7 7 W\n1 0 W\n8 2 W\n1 5 N\n9 4 W\n2 7 E\n7 5 N\n3 3 N\n2\n-1000 1000 E\n1000 -1000 N\n4\n-1 0 N\n0 -1 N\n0 0 S\n1 0 N\n2\n-5 -6 E\n-6 -5 N\n19\n0 14 E\n2 12 E\n2 15 S\n4 2 W\n4 9 W\n4 11 N\n5 5 W\n6 7 E\n7 1 W\n11 1 N\n12 9 E\n13 2 N\n14 15 S\n15 18 W\n16 1 W\n16 7 E\n18 11 E\n18 18 W\n19 7 W\n50\n478 -186 W\n-664 98 N\n433 948 S\n759 75 N\n-405 289 N\n513 -678 S\n565 948 S\n-396 -170 W\n311 -195 W\n-174 290 W\n56 -354 E\n993 -424 E\n251 289 N\n-341 -157 W\n993 -166 E\n-112 150 S\n242 706 N\n129 -678 S\n383 684 W\n513 -294 S\n-78 -234 W\n-341 36 S\n-148 36 E\n129 -294 W\n423 -216 W\n493 -234 E\n434 427 W\n-405 945 E\n478 265 W\n-148 -157 W\n929 265 W\n251 715 N\n56 275 W\n242 715 E\n929 -186 S\n-78 337 N\n423 798 S\n-664 -170 S\n802 427 N\n251 706 N\n759 754 S\n383 961 N\n-112 286 N\n-591 -216 W\n-591 798 W\n-248 286 W\n660 961 N\n660 684 E\n735 -424 S\n493 337 E\n2\n-1000 0 E\n1000 0 W\n4\n2 2 E\n10 2 W\n0 2 E\n0 0 N\n3\n2 0 N\n0 2 E\n1 1 N\n2\n-1000 1000 S\n1000 -1000 W\n5\n0 0 S\n0 -1 N\n2 2 S\n3 3 S\n4 4 S\n2\n0 10 S\n0 0 N\n", "output": "42\n38\n36\n44\n38\n44\n48\n40\n40\n48\n44\n40\n44\n24\n26\n20\n17\n26\n30\n27\n25\n26\n22\n50\n50\n50\n50\n50\n12\n10\n10\n6\n14\n22\n22\n10\n10\n2\n1\n42\n0\n0\n0\n0\n3\n0\n0\n0\n0\n0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "50\n50\n-12 -197 S\n133 -342 W\n648 -84 S\n597 -26 S\n231 384 N\n841 603 E\n455 603 N\n81 -507 W\n257 -507 N\n-541 388 N\n589 402 S\n-541 439 W\n-142 76 E\n-471 -111 N\n359 512 S\n55 -400 W\n55 -267 E\n-78 -267 S\n-12 -342 E\n-78 -400 E\n-220 626 E\n841 989 E\n-220 594 S\n133 -197 E\n-691 731 N\n-531 65 N\n111 -111 N\n-297 65 S\n771 -84 N\n575 388 W\n-471 471 N\n-188 626 S\n597 287 S\n359 384 W\n575 402 S\n910 287 S\n81 -331 W\n455 989 E\n-277 612 W\n-12 52 W\n-277 489 S\n771 -207 S\n-490 439 N\n111 471 N\n231 512 E\n257 -331 S\n648 -207 S\n-490 388 W\n910 -26 S\n-188 594 N\n50\n-326 398 S\n275 701 S\n96 -24 W\n528 -656 S\n-247 -208 W\n584 758 E\n275 254 N\n511 646 S\n603 609 E\n436 -8 W\n857 270 E\n857 -79 S\n-1 728 W\n-247 -76 W\n226 202 N\n-470 342 W\n22 67 W\n625 -376 S\n-115 -76 W\n-117 260 W\n88 728 E\n-388 521 S\n528 342 S\n511 293 S\n302 308 S\n-326 -24 W\n22 -692 N\n-59 308 N\n854 830 W\n-1 639 N\n-310 260 W\n722 701 N\n722 254 E\n-117 453 S\n781 -692 W\n-59 -376 S\n508 270 E\n697 758 W\n235 -209 W\n235 -8 E\n625 308 W\n864 293 S\n-208 701 W\n508 -79 E\n854 202 W\n781 67 S\n302 609 E\n584 871 E\n-115 -208 W\n603 308 E\n50\n532 651 E\n-557 895 S\n662 129 N\n4 334 W\n-624 738 S\n-160 -438 N\n460 938 E\n591 687 W\n-557 334 N\n-21 -576 S\n-201 416 S\n-338 -259 S\n-474 -200 E\n910 700 S\n-338 -481 S\n932 789 W\n29 451 E\n805 -241 N\n459 129 W\n906 -438 S\n821 940 S\n805 -564 S\n-160 628 N\n662 -74 N\n906 628 W\n-624 82 N\n932 -481 S\n522 312 E\n-311 528 N\n460 301 W\n4 895 W\n-494 528 W\n459 -74 S\n-474 853 E\n-494 345 S\n579 -200 S\n454 824 S\n821 651 N\n591 824 E\n579 853 W\n910 312 E\n482 -241 E\n-177 938 E\n454 687 E\n29 322 W\n32 82 E\n532 940 E\n-338 789 W\n482 -564 S\n-21 -259 S\n50\n744 -408 N\n193 786 N\n-284 982 N\n582 -365 W\n-141 539 W\n193 344 S\n635 344 E\n75 854 S\n-617 854 S\n-125 342 E\n-372 371 N\n258 723 N\n495 405 S\n71 417 W\n899 564 S\n-141 573 E\n10 158 E\n816 -408 N\n-175 573 N\n497 645 N\n487 723 N\n582 342 E\n82 493 S\n-617 162 W\n487 494 S\n899 671 S\n253 632 E\n744 -480 S\n816 -480 S\n-478 371 S\n82 631 N\n-536 127 E\n-125 -365 N\n161 127 S\n-245 101 W\n253 543 E\n71 101 E\n342 543 S\n75 162 N\n792 564 E\n-536 824 E\n296 402 S\n258 494 E\n10 645 N\n792 671 S\n161 824 N\n344 405 N\n497 158 W\n-478 265 W\n635 786 S\n50\n255 901 W\n-201 670 W\n617 -364 E\n236 -394 S\n-572 889 W\n-365 682 S\n236 280 N\n346 757 E\n-497 -214 E\n-494 96 W\n303 685 W\n-494 52 E\n-572 785 E\n549 931 S\n878 -58 W\n-199 300 W\n-676 785 N\n549 685 E\n16 729 E\n285 -58 E\n245 300 S\n105 757 E\n-658 234 S\n-242 670 N\n-450 52 S\n883 -364 S\n-201 711 W\n-694 -214 S\n-269 840 N\n-269 739 W\n-676 889 W\n-450 96 W\n-694 -411 W\n617 -98 S\n896 -151 S\n33 901 S\n910 -394 N\n883 -98 N\n896 729 E\n-157 -267 W\n-365 961 N\n255 679 N\n-86 682 E\n105 516 W\n878 535 N\n-370 840 E\n285 535 S\n346 516 N\n-497 -411 W\n-157 234 E\n50\n-212 -538 S\n-154 259 N\n956 774 N\n653 397 W\n176 859 E\n72 797 E\n-653 -538 E\n-157 825 W\n-34 980 W\n-653 -97 S\n-538 476 S\n200 763 N\n278 283 E\n5 663 N\n-45 914 S\n397 859 E\n574 765 W\n571 479 W\n72 914 N\n534 262 S\n219 49 N\n397 638 E\n391 774 N\n239 802 E\n-538 980 S\n-212 -97 N\n574 605 W\n160 183 N\n5 825 N\n457 104 S\n-45 797 E\n-60 259 W\n414 605 W\n150 11 E\n-534 802 S\n150 281 E\n278 104 S\n653 479 N\n414 765 W\n939 -143 E\n168 175 E\n-60 353 S\n200 802 E\n956 209 S\n-154 353 S\n219 802 E\n571 397 W\n457 283 W\n-534 49 N\n-157 663 E\n50\n-254 665 N\n230 912 E\n548 912 N\n701 133 W\n-656 691 S\n450 158 W\n230 594 W\n333 462 E\n-74 -12 S\n-495 -243 W\n631 -596 S\n631 691 N\n-250 -540 S\n830 -128 W\n665 373 S\n-74 -267 N\n884 -130 N\n-45 705 N\n-552 625 N\n-224 297 E\n413 -243 E\n429 133 N\n49 826 E\n418 826 S\n473 281 W\n-656 -596 W\n-254 648 S\n830 -379 S\n858 705 S\n858 -198 W\n413 665 E\n665 158 S\n49 457 S\n-552 297 E\n473 -130 W\n478 -540 S\n579 -379 E\n579 -128 S\n450 373 N\n884 281 E\n701 405 E\n-224 625 E\n655 541 W\n-417 -288 E\n-250 188 W\n-237 665 W\n181 -267 S\n655 269 E\n429 405 N\n-495 665 N\n50\n735 995 E\n226 927 N\n401 995 E\n-248 701 E\n-418 -93 W\n226 785 E\n351 -18 N\n-168 872 W\n40 -477 E\n246 -545 W\n312 -479 E\n401 661 E\n689 -111 E\n299 353 E\n-168 463 S\n606 660 W\n759 -18 W\n241 463 N\n281 485 S\n606 353 E\n196 752 N\n533 -593 W\n241 872 S\n485 698 E\n735 661 S\n281 127 W\n407 264 N\n437 264 W\n639 127 W\n485 -41 W\n-441 -116 N\n533 -553 E\n312 -545 N\n-441 -93 E\n-254 -41 S\n842 42 E\n-418 -116 W\n196 675 E\n385 -477 E\n689 42 E\n-248 -28 S\n437 234 N\n493 -593 E\n246 -479 S\n273 752 S\n493 -553 W\n273 675 S\n385 -132 W\n407 234 E\n368 785 E\n50\n-310 -46 W\n899 728 N\n609 -280 E\n733 47 N\n413 242 E\n733 6 W\n-148 388 S\n-545 381 W\n897 210 S\n-257 696 N\n-311 -33 S\n-480 754 N\n-495 696 S\n-429 754 N\n116 0 S\n897 -503 E\n116 94 N\n938 -655 N\n980 -651 S\n938 -25 E\n948 -224 W\n444 -7 S\n861 -86 W\n109 -46 N\n586 864 S\n586 -33 N\n444 40 E\n980 -280 E\n308 -655 E\n184 -503 E\n-480 805 S\n-310 373 S\n491 40 N\n254 -86 E\n774 47 E\n-257 934 N\n899 242 S\n641 -224 N\n254 -693 N\n413 728 W\n641 83 W\n609 -651 E\n308 -25 S\n-495 934 E\n-192 381 S\n-582 -46 N\n-545 734 N\n-429 805 N\n22 94 E\n861 -693 S\n50\n817 -253 S\n-543 868 W\n66 -93 N\n823 772 W\n922 -634 N\n-234 -550 E\n-270 718 S\n-453 172 W\n682 -447 E\n322 955 N\n-221 718 S\n-299 634 E\n922 -397 N\n-184 -600 E\n-103 -13 S\n66 -268 N\n-427 146 W\n-184 -550 E\n-109 -268 S\n-128 12 W\n49 478 N\n1000 261 N\n-218 745 E\n-543 524 S\n-573 360 S\n-573 634 W\n49 745 E\n-199 524 N\n823 -377 N\n548 -186 W\n-270 767 S\n685 -397 N\n682 -229 S\n586 261 E\n690 -186 E\n-109 -93 N\n578 699 N\n-103 12 W\n-199 868 E\n288 276 N\n900 -229 N\n-234 -600 S\n-299 360 N\n-326 772 W\n817 276 N\n578 955 N\n322 699 S\n1000 675 W\n-326 -377 E\n548 -44 S\n50\n-387 -165 N\n447 84 N\n-689 -467 E\n-689 -165 E\n936 -381 S\n-150 0 W\n256 -112 E\n0 714 E\n845 -448 W\n993 794 E\n866 -554 N\n-460 239 S\n149 163 N\n-382 -171 E\n-460 227 E\n-660 -555 N\n103 452 S\n-617 -555 N\n845 880 N\n798 794 E\n500 31 W\n-353 -112 S\n617 97 W\n-472 227 E\n-483 -448 E\n-270 482 W\n-483 880 W\n993 599 E\n291 0 N\n-628 -422 W\n-660 -598 S\n-617 -598 W\n617 714 N\n-353 497 N\n256 497 E\n-214 -8 W\n149 -554 N\n-472 239 S\n-270 236 S\n936 452 E\n866 163 E\n-150 -441 S\n798 599 S\n447 31 N\n120 -171 W\n-628 -8 N\n-387 -467 E\n120 331 E\n291 -441 S\n459 -214 S\n50\n764 -388 N\n-214 716 S\n-383 955 N\n-49 621 N\n453 827 W\n-52 322 W\n156 569 N\n617 239 E\n-402 198 W\n599 133 W\n599 877 E\n810 588 N\n727 239 N\n462 221 W\n192 -30 S\n357 116 S\n-214 706 S\n-204 706 W\n617 129 S\n59 666 W\n453 322 W\n-237 -431 E\n393 573 W\n712 870 E\n712 298 W\n764 -584 E\n568 -584 W\n810 -30 S\n632 739 N\n-49 955 N\n-383 621 N\n357 221 S\n444 927 E\n-535 198 E\n462 116 N\n576 600 S\n-145 133 S\n-52 827 S\n-145 877 E\n140 870 S\n-402 65 S\n-204 716 N\n632 927 E\n568 -388 S\n365 811 N\n-247 -67 E\n-237 -660 W\n727 129 E\n192 588 W\n576 811 W\n50\n219 288 N\n4 848 E\n-42 -44 E\n120 655 N\n-342 782 E\n142 567 N\n-79 74 E\n-69 66 W\n598 847 E\n-79 652 E\n-657 652 S\n430 -161 E\n491 567 S\n433 247 W\n142 218 S\n618 -491 W\n737 -263 W\n-317 497 N\n310 -130 N\n565 247 S\n433 115 N\n219 67 S\n208 847 N\n709 -491 E\n-35 655 W\n430 201 E\n417 415 N\n-342 914 E\n68 201 W\n-2 288 E\n709 -582 W\n-42 415 E\n266 401 N\n84 848 E\n737 -395 E\n618 -582 W\n565 115 N\n-516 85 S\n-516 619 S\n-657 74 W\n18 85 S\n266 66 E\n120 500 E\n-2 67 E\n417 -44 W\n598 457 W\n310 497 E\n-69 401 S\n-35 500 E\n869 -395 W\n50\n-2 0 S\n-1 3 N\n0 -4 N\n2 -2 N\n-3 -2 S\n3 1 N\n-3 -1 E\n4 2 S\n-1 0 N\n-1 -2 N\n-4 0 N\n2 -3 W\n4 -4 N\n4 1 N\n0 3 W\n-4 1 N\n4 4 W\n1 -3 S\n1 0 S\n-4 3 E\n0 4 E\n2 0 W\n-3 0 W\n-2 -4 S\n-3 1 S\n3 -2 S\n3 -4 W\n1 3 S\n4 -2 S\n-2 2 N\n2 4 W\n2 1 N\n-1 -4 N\n0 2 E\n-4 4 E\n-1 2 S\n2 3 W\n-2 -3 E\n2 -1 E\n4 -3 N\n1 1 S\n3 -3 S\n-2 1 W\n0 -2 E\n-4 2 W\n3 -1 N\n-1 1 E\n1 -1 S\n1 -4 E\n-3 -4 S\n50\n2 -3 S\n-2 -2 E\n0 3 N\n3 0 E\n3 4 N\n1 2 W\n3 -2 W\n2 -4 N\n3 2 N\n2 2 S\n4 3 E\n3 -3 W\n4 4 N\n0 -2 E\n4 2 N\n-2 -1 W\n-1 3 E\n1 3 E\n3 -4 W\n-3 1 N\n-2 -4 E\n0 2 W\n-3 -3 W\n4 -4 E\n1 -1 S\n-1 4 W\n4 -3 N\n-1 0 W\n2 -2 W\n-2 0 E\n-4 4 N\n-4 -3 E\n3 3 S\n4 -1 S\n-4 -2 W\n-3 -1 S\n-4 1 W\n-2 3 S\n-3 4 N\n4 1 S\n1 4 E\n2 4 S\n-2 -3 E\n-1 -3 E\n4 -2 S\n-4 2 S\n-1 2 S\n2 0 E\n-4 3 E\n1 -2 E\n50\n-3 -4 E\n0 3 E\n4 3 N\n-3 2 E\n-2 3 S\n4 -3 E\n1 2 S\n0 -2 N\n4 2 S\n-2 4 N\n0 0 S\n-2 1 E\n3 2 W\n2 -2 S\n0 1 S\n-4 -2 W\n2 3 S\n2 -4 E\n-1 1 E\n-3 -2 E\n4 0 W\n4 -2 S\n-4 -4 S\n2 -1 N\n0 -4 N\n2 1 S\n4 -1 N\n-4 2 E\n-4 4 E\n0 2 S\n0 -1 N\n-1 4 N\n2 2 N\n-4 3 E\n1 -1 E\n-2 2 S\n1 3 S\n-2 -1 S\n1 -4 N\n3 3 E\n-3 -1 S\n-3 1 N\n-4 -1 N\n4 4 W\n-3 4 W\n-1 -4 E\n2 4 E\n2 0 W\n-1 -3 W\n-3 0 S\n50\n-3 3 S\n-4 -3 E\n0 1 W\n4 -1 N\n-3 -3 E\n3 -4 S\n-1 1 W\n3 2 S\n-2 2 S\n-1 -2 N\n4 -2 N\n4 2 E\n4 3 E\n2 3 E\n0 0 S\n2 2 W\n-1 4 N\n2 0 W\n3 3 N\n-2 -4 N\n3 0 N\n0 3 E\n3 1 W\n4 4 N\n-4 3 E\n-3 0 W\n-3 1 S\n1 -1 N\n-2 3 S\n1 1 E\n1 -3 E\n0 4 S\n-2 -3 W\n2 -2 W\n0 -3 E\n-3 -1 N\n-4 1 S\n-1 -3 W\n-2 0 S\n3 -1 N\n0 2 W\n-1 -1 W\n-4 -1 N\n-3 2 W\n-4 4 W\n2 -3 N\n-1 3 S\n2 -4 N\n-4 -4 W\n2 4 N\n50\n3 3 N\n-2 -1 S\n1 -2 W\n2 -1 W\n1 0 N\n0 -4 N\n-1 4 E\n0 2 W\n-4 1 W\n-4 -4 W\n4 -4 W\n-4 3 N\n0 -2 W\n-4 4 E\n0 4 W\n1 3 S\n4 1 W\n-1 3 N\n0 -1 S\n1 1 S\n-4 0 E\n1 4 E\n4 4 W\n-3 -4 N\n4 -2 S\n0 3 S\n3 -3 S\n2 2 S\n-1 2 E\n4 -3 S\n-4 -3 S\n3 -2 N\n-1 0 E\n-3 1 W\n-2 0 E\n-1 -2 W\n-2 -3 W\n2 1 E\n3 -1 W\n-4 2 E\n-4 -2 W\n2 0 E\n-3 -2 N\n2 -2 W\n3 0 E\n-2 -2 W\n-1 -3 W\n4 0 E\n-3 4 S\n3 -4 E\n50\n0 3 N\n-1 -2 S\n-4 0 W\n-3 -2 E\n-4 -1 E\n1 4 N\n0 1 N\n4 -1 S\n3 3 W\n-1 1 E\n-2 -3 W\n-1 -3 E\n1 1 E\n-3 -3 N\n-4 -3 E\n-2 4 N\n-2 -2 N\n2 3 N\n1 -4 S\n2 0 N\n0 -3 E\n0 -2 E\n-4 -2 S\n-2 3 N\n3 -2 W\n1 0 W\n-1 3 N\n-4 3 E\n4 -2 S\n4 3 S\n-2 0 N\n3 -1 E\n3 -3 E\n1 -2 W\n3 1 E\n-3 3 W\n-4 4 S\n-3 1 E\n0 0 W\n2 -1 E\n-2 1 E\n-1 4 N\n-1 -1 N\n0 2 W\n0 -4 S\n2 4 N\n-1 2 W\n4 -3 W\n0 4 W\n4 2 W\n50\n0 -3 E\n-3 2 W\n2 -3 W\n2 3 E\n0 2 S\n1 0 W\n4 0 E\n-3 -4 S\n1 4 W\n4 -2 W\n1 -1 E\n2 4 S\n2 -2 W\n-2 -2 E\n-3 3 E\n-4 3 W\n-4 1 W\n4 -3 N\n1 2 S\n-2 3 S\n3 2 E\n0 -1 N\n1 1 W\n-2 0 S\n2 2 W\n1 -2 E\n3 -4 S\n-1 -4 S\n2 -1 S\n-4 0 E\n-1 -2 E\n3 4 W\n-3 0 N\n4 -4 E\n-3 -2 W\n-3 -1 S\n2 0 E\n-3 4 S\n-4 -2 W\n-1 -1 W\n-2 1 N\n0 0 E\n4 4 S\n3 -1 W\n2 -4 E\n-2 -4 S\n1 3 S\n1 -4 N\n-3 -3 W\n-1 2 E\n50\n-3 2 N\n4 -1 E\n-4 2 E\n-2 -3 W\n1 3 N\n4 2 N\n-4 -2 W\n1 -3 S\n-2 -2 E\n-1 -1 W\n2 1 W\n-1 3 E\n1 -4 E\n0 4 E\n1 0 N\n0 2 S\n4 4 S\n-2 3 W\n-3 -4 N\n1 -1 N\n0 1 S\n-1 -3 W\n-2 1 S\n-4 -1 W\n-2 2 E\n0 -4 W\n-2 -4 S\n-4 0 W\n-4 -3 N\n-2 4 S\n3 -2 N\n-4 4 N\n2 3 N\n2 -2 N\n-3 -1 W\n2 -4 W\n2 -1 N\n0 3 N\n3 -3 S\n-3 1 E\n3 -1 S\n1 2 S\n3 -4 W\n-4 -4 S\n-3 -3 S\n2 4 S\n2 -3 N\n-1 -2 E\n0 0 E\n-1 2 N\n50\n-4 3 E\n4 1 S\n3 3 E\n0 -1 N\n-4 0 N\n1 0 W\n3 -2 N\n-3 2 S\n1 4 N\n-3 -4 N\n4 -2 N\n4 3 S\n1 -1 N\n-4 4 N\n3 2 N\n1 3 N\n-1 0 N\n-4 -2 N\n-1 -3 E\n-3 4 S\n2 -3 N\n2 -2 E\n2 -1 E\n1 2 N\n-3 1 N\n-3 -2 E\n0 4 W\n4 2 E\n2 -4 S\n3 -4 E\n-2 1 W\n2 2 E\n-2 -4 W\n3 -3 S\n0 0 W\n0 2 N\n0 1 E\n4 0 N\n1 -3 E\n-3 -3 N\n4 -3 S\n0 -2 S\n2 0 S\n-1 3 W\n-3 0 E\n3 1 S\n-4 -3 W\n0 -4 E\n0 -3 S\n-4 -4 E\n50\n1 1 N\n0 1 W\n3 1 E\n-4 4 N\n-3 -3 S\n2 4 W\n2 -4 N\n0 2 N\n-2 2 N\n2 3 N\n4 2 E\n-3 -1 W\n0 -2 N\n-3 4 E\n-3 0 E\n1 -3 N\n2 0 S\n-1 4 S\n-2 1 E\n-1 -4 W\n3 3 S\n4 -4 N\n4 3 W\n-3 -2 W\n-4 -3 E\n3 4 E\n-3 1 S\n1 4 S\n-2 3 E\n-4 -4 E\n-4 -2 W\n4 1 W\n-1 -1 E\n2 1 N\n3 -1 W\n0 -4 N\n1 -4 N\n-3 2 W\n-1 2 E\n3 0 S\n-1 -2 N\n4 0 S\n1 3 N\n2 -3 W\n-4 1 W\n3 2 N\n-3 3 N\n-4 3 E\n-2 0 W\n-4 0 S\n50\n-796 0 N\n305 0 N\n835 0 N\n-388 0 N\n713 0 N\n-225 0 N\n-633 0 N\n-103 0 N\n632 0 N\n999 0 N\n-592 0 N\n264 0 N\n-756 0 N\n-62 0 N\n101 0 N\n468 0 N\n-348 0 N\n19 0 N\n142 0 N\n-715 0 N\n-429 0 N\n-307 0 N\n428 0 N\n-837 0 N\n672 0 N\n958 0 N\n387 0 N\n-21 0 N\n-511 0 N\n-1000 0 N\n-878 0 N\n876 0 N\n346 0 N\n-552 0 N\n754 0 N\n-470 0 N\n591 0 N\n-266 0 N\n-919 0 N\n509 0 N\n-960 0 N\n550 0 N\n224 0 N\n60 0 N\n795 0 N\n-674 0 N\n-184 0 N\n183 0 N\n917 0 N\n-144 0 N\n50\n330 729 E\n410 -327 E\n-978 -119 E\n963 -920 E\n-978 -329 E\n27 913 E\n314 643 E\n423 -37 E\n110 690 E\n-93 103 E\n-868 -250 E\n-854 491 E\n313 63 E\n-621 -10 E\n830 61 E\n548 330 E\n420 -762 E\n464 271 E\n911 125 E\n283 543 E\n498 81 E\n674 -612 E\n953 952 E\n567 -923 E\n949 -997 E\n131 299 E\n651 996 E\n-486 -639 E\n513 423 E\n816 -461 E\n940 641 E\n697 -545 E\n-119 934 E\n202 -415 E\n-597 440 E\n-42 -113 E\n-792 -395 E\n-593 -712 E\n844 -496 E\n815 -247 E\n-861 896 E\n-793 980 E\n-355 688 E\n511 -849 E\n-901 602 E\n158 -466 E\n605 500 E\n763 578 E\n298 -249 E\n367 394 E\n50\n872 -314 E\n-862 -347 N\n-390 68 W\n-94 421 N\n-133 -378 W\n-681 466 S\n-290 908 S\n-458 -674 W\n735 192 W\n-554 395 E\n610 832 S\n-679 -896 W\n666 -601 W\n-114 -305 E\n251 -288 S\n-858 -833 N\n-933 308 N\n626 -64 N\n662 84 E\n-784 87 S\n-962 140 S\n-957 536 E\n153 -185 W\n-268 309 N\n268 -113 N\n56 -156 S\n416 -928 E\n235 360 S\n794 -140 W\n-347 85 W\n867 -789 E\n-544 745 W\n51 -241 N\n-977 373 E\n667 784 N\n168 642 E\n-733 86 W\n-64 243 S\n477 -724 W\n-670 -618 E\n448 -389 W\n-150 984 S\n192 942 W\n786 -847 S\n90 -691 S\n-397 -176 E\n932 -794 S\n-372 -635 W\n-738 -715 N\n-551 675 W\n50\n726 -500 N\n-494 -708 N\n2 144 W\n558 -97 N\n-430 -907 N\n28 -915 S\n210 244 S\n51 132 W\n-949 -50 E\n-274 -889 S\n-985 -644 E\n-981 -311 W\n563 481 W\n319 592 E\n403 437 W\n144 641 W\n641 605 S\n720 637 E\n-32 661 S\n-231 680 E\n138 458 E\n790 -440 N\n287 -688 S\n667 891 W\n805 645 S\n969 -89 W\n-604 -815 W\n977 326 S\n652 718 E\n331 -498 W\n600 887 S\n-637 -145 W\n-445 380 W\n-518 417 E\n750 560 E\n-93 901 E\n-170 -210 N\n488 738 E\n739 -283 S\n-828 -626 W\n-394 -682 S\n-45 730 W\n-527 -672 W\n529 700 E\n-326 -115 N\n701 302 E\n985 251 N\n972 431 S\n-120 -480 S\n274 -357 W\n50\n-531 -604 S\n220 -815 E\n126 75 E\n-47 15 S\n966 551 S\n146 816 N\n910 185 E\n791 797 N\n-373 -310 S\n-302 444 W\n644 286 S\n246 983 S\n350 -771 S\n503 558 S\n156 758 E\n405 251 N\n-145 665 E\n-446 915 N\n-807 440 E\n133 820 E\n621 -537 W\n586 -995 W\n365 -911 W\n531 779 W\n-946 139 N\n617 -324 E\n-792 577 W\n-607 277 W\n-584 -251 E\n-926 18 S\n623 -540 S\n680 -950 N\n654 -224 N\n592 -365 E\n751 -864 E\n-54 -338 S\n-718 -855 N\n-867 691 N\n-648 -582 N\n146 -536 W\n519 495 E\n-607 300 W\n-108 -3 N\n624 -125 S\n429 -851 N\n828 301 N\n-480 742 W\n521 800 E\n292 151 W\n-828 840 N\n50\n520 0 W\n640 0 W\n-400 0 W\n-760 0 W\n-280 0 W\n120 0 E\n-560 0 E\n-640 0 W\n0 0 W\n280 0 E\n-840 0 E\n-200 0 E\n840 0 W\n440 0 W\n-240 0 E\n-920 0 E\n680 0 W\n920 0 E\n-160 0 E\n40 0 E\n800 0 E\n-520 0 W\n-880 0 W\n960 0 W\n240 0 W\n-40 0 E\n320 0 W\n80 0 E\n480 0 W\n-720 0 W\n-680 0 W\n880 0 W\n-480 0 W\n-800 0 E\n360 0 W\n-360 0 W\n400 0 E\n720 0 E\n-1000 0 E\n760 0 E\n-440 0 E\n560 0 W\n-960 0 W\n600 0 W\n-120 0 W\n-80 0 W\n200 0 E\n-320 0 W\n160 0 W\n-600 0 W\n50\n560 0 E\n520 0 E\n480 0 W\n-920 0 E\n-680 0 E\n-600 0 E\n-160 0 E\n-120 0 W\n-40 0 W\n-320 0 E\n-1000 0 E\n-640 0 E\n-720 0 E\n400 0 E\n640 0 W\n-200 0 W\n120 0 W\n-280 0 E\n720 0 E\n160 0 W\n920 0 E\n800 0 E\n-400 0 W\n240 0 W\n-960 0 W\n-480 0 E\n-760 0 W\n-440 0 E\n680 0 W\n840 0 E\n280 0 W\n-560 0 W\n960 0 E\n-880 0 E\n-840 0 W\n440 0 E\n-80 0 E\n-240 0 W\n320 0 E\n40 0 W\n880 0 E\n0 0 E\n-360 0 W\n600 0 W\n80 0 W\n200 0 W\n360 0 E\n-520 0 E\n-800 0 W\n760 0 W\n50\n0 0 W\n280 0 E\n-360 0 W\n-800 0 W\n-960 0 E\n-80 0 W\n360 0 E\n-200 0 E\n40 0 W\n400 0 E\n920 0 W\n80 0 E\n680 0 W\n880 0 W\n960 0 E\n800 0 E\n-40 0 E\n-680 0 W\n-760 0 E\n240 0 E\n-160 0 W\n-1000 0 W\n760 0 E\n-640 0 E\n480 0 W\n560 0 W\n-560 0 W\n520 0 W\n-920 0 E\n-240 0 W\n-480 0 W\n720 0 E\n-880 0 W\n600 0 W\n440 0 W\n320 0 W\n640 0 E\n200 0 E\n-320 0 E\n-520 0 W\n-720 0 E\n-400 0 W\n-440 0 W\n-280 0 W\n-120 0 E\n120 0 W\n-600 0 W\n840 0 W\n160 0 E\n-840 0 W\n50\n0 680 S\n0 0 S\n0 -880 N\n0 -360 N\n0 -680 S\n0 -560 S\n0 -200 S\n0 640 S\n0 920 N\n0 520 N\n0 -920 S\n0 880 S\n0 800 S\n0 280 S\n0 -640 N\n0 480 S\n0 600 N\n0 -480 N\n0 720 N\n0 40 N\n0 360 N\n0 80 S\n0 760 S\n0 -120 S\n0 -320 S\n0 -440 N\n0 -840 N\n0 320 S\n0 -520 S\n0 240 N\n0 160 N\n0 -760 N\n0 -400 S\n0 200 S\n0 -240 S\n0 -1000 N\n0 -720 S\n0 -160 N\n0 400 S\n0 -960 S\n0 -600 S\n0 560 N\n0 960 S\n0 440 N\n0 840 S\n0 -280 S\n0 -80 N\n0 120 N\n0 -40 N\n0 -800 S\n50\n0 320 N\n0 -200 S\n0 -520 S\n0 -480 S\n0 -160 N\n0 -840 S\n0 880 N\n0 -120 S\n0 920 N\n0 560 S\n0 400 S\n0 680 S\n0 80 N\n0 0 S\n0 480 S\n0 800 S\n0 640 S\n0 -240 N\n0 -880 S\n0 -320 N\n0 -680 N\n0 960 S\n0 40 S\n0 -560 N\n0 360 N\n0 200 S\n0 -440 S\n0 -280 N\n0 -800 N\n0 280 N\n0 -720 S\n0 520 N\n0 -960 S\n0 -80 N\n0 440 N\n0 160 N\n0 -400 N\n0 -760 S\n0 120 N\n0 -40 N\n0 760 N\n0 -1000 S\n0 600 S\n0 240 S\n0 -920 S\n0 720 N\n0 -640 S\n0 840 N\n0 -600 S\n0 -360 S\n50\n0 -920 S\n0 -80 S\n0 -320 N\n0 360 N\n0 -40 N\n0 -560 S\n0 80 N\n0 720 N\n0 960 N\n0 640 N\n0 -280 S\n0 -720 N\n0 -440 N\n0 920 S\n0 -760 N\n0 320 N\n0 -240 N\n0 480 S\n0 -1000 S\n0 40 N\n0 -360 S\n0 -480 S\n0 -880 N\n0 880 S\n0 200 N\n0 160 S\n0 -400 N\n0 -520 N\n0 400 N\n0 -120 N\n0 760 N\n0 280 S\n0 520 N\n0 120 N\n0 240 S\n0 -680 N\n0 560 S\n0 -600 N\n0 840 S\n0 680 N\n0 600 N\n0 -800 N\n0 440 N\n0 -960 S\n0 -160 S\n0 -200 N\n0 -840 N\n0 -640 N\n0 800 N\n0 0 N\n50\n720 720 E\n200 200 S\n-200 -200 S\n0 0 N\n800 800 E\n-840 -840 S\n-960 -960 E\n160 160 W\n-680 -680 N\n320 320 W\n360 360 W\n-160 -160 W\n-480 -480 W\n-240 -240 S\n-1000 -1000 S\n-800 -800 S\n-360 -360 W\n-880 -880 E\n-280 -280 S\n560 560 W\n960 960 W\n-560 -560 S\n480 480 E\n40 40 S\n240 240 W\n-400 -400 S\n440 440 W\n920 920 E\n400 400 E\n600 600 W\n-640 -640 N\n280 280 N\n640 640 E\n-120 -120 W\n-40 -40 W\n120 120 N\n520 520 N\n-440 -440 S\n760 760 W\n-80 -80 E\n840 840 N\n-920 -920 W\n880 880 W\n-720 -720 W\n680 680 N\n80 80 W\n-520 -520 N\n-320 -320 E\n-600 -600 E\n-760 -760 W\n50\n960 960 W\n560 560 W\n-400 -400 N\n760 760 S\n-600 -600 W\n-680 -680 W\n0 0 N\n-960 -960 N\n840 840 W\n-200 -200 E\n360 360 E\n160 160 N\n-280 -280 E\n-640 -640 N\n-760 -760 E\n-840 -840 N\n600 600 S\n720 720 E\n320 320 E\n-520 -520 W\n240 240 E\n-880 -880 W\n-40 -40 E\n440 440 N\n880 880 S\n-440 -440 E\n-720 -720 E\n-480 -480 S\n-120 -120 E\n-240 -240 N\n280 280 W\n80 80 W\n480 480 S\n800 800 S\n680 680 W\n120 120 S\n40 40 N\n920 920 E\n200 200 W\n-320 -320 S\n-80 -80 W\n520 520 W\n400 400 W\n-920 -920 N\n-800 -800 E\n-1000 -1000 E\n-560 -560 W\n-360 -360 S\n-160 -160 W\n640 640 N\n50\n520 520 S\n40 40 N\n200 200 N\n-360 -360 W\n-840 -840 W\n-920 -920 N\n560 560 S\n840 840 N\n720 720 S\n-80 -80 E\n960 960 N\n160 160 W\n880 880 W\n-160 -160 E\n-1000 -1000 N\n680 680 E\n360 360 W\n640 640 N\n-240 -240 S\n-120 -120 W\n-40 -40 E\n280 280 S\n-320 -320 N\n120 120 N\n480 480 S\n-760 -760 N\n-520 -520 N\n440 440 S\n-560 -560 E\n-880 -880 W\n-200 -200 N\n-480 -480 N\n-440 -440 E\n-400 -400 N\n0 0 W\n920 920 S\n80 80 W\n-800 -800 E\n320 320 S\n-720 -720 N\n600 600 W\n-280 -280 N\n760 760 E\n-680 -680 S\n-960 -960 S\n800 800 E\n400 400 S\n240 240 N\n-600 -600 W\n-640 -640 E\n4\n0 0 N\n10 10 W\n20 20 N\n30 30 E\n3\n0 0 S\n0 1 S\n0 -1 N\n50\n375 399 W\n307 203 E\n377 206 W\n361 248 S\n204 264 N\n310 283 N\n280 379 E\n398 339 E\n345 205 N\n261 228 E\n232 380 N\n359 267 E\n392 222 E\n258 333 E\n207 287 N\n263 361 W\n216 263 N\n319 328 S\n260 355 W\n348 207 W\n358 202 S\n211 257 S\n243 206 W\n292 204 N\n343 249 W\n327 380 W\n219 276 S\n285 250 N\n342 205 E\n300 381 W\n242 235 S\n212 332 S\n250 231 S\n224 377 S\n400 362 N\n325 396 S\n389 233 W\n275 393 S\n344 262 W\n-1000 -1000 N\n1000 1000 W\n42 43 W\n42 41 E\n41 42 N\n43 43 S\n-999 -999 E\n999 999 S\n-999 999 N\n-100 -104 N\n-100 -101 S\n2\n0 0 N\n0 1 S\n2\n0 0 E\n1 0 W\n2\n0 12 E\n1 12 W\n2\n1 0 W\n0 0 E\n9\n-1 -1 E\n-1 0 E\n-1 1 E\n0 -1 W\n0 0 W\n0 1 W\n1 -1 E\n1 0 E\n1 1 E\n4\n0 0 N\n0 1 N\n0 2 S\n1 1 W\n2\n0 1 S\n0 0 N\n8\n0 0 E\n1 0 W\n2 1 W\n1 1 E\n3 1 S\n3 0 N\n4 0 N\n4 1 S\n2\n29 30 E\n30 30 W\n6\n0 0 E\n1 0 W\n1000 999 N\n999 1000 E\n-1000 -999 S\n-999 -1000 W\n", "output": "0\n0\n0\n0\n0\n0\n36\n0\n44\n2\n0\n0\n0\n0\n0\n6\n0\n20\n0\n0\n0\n34\n42\n0\n0\n2\n4\n0\n0\n0\n0\n0\n0\n0\n0\n1\n2\n25\n0\n2\n2\n13\n42\n0\n2\n1\n0\n3\n0\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/CHEFSTR1
Solve the following coding problem using the programming language python: Read problem statements in [Hindi], [Bengali], [Mandarin Chinese], [Russian], and [Vietnamese] as well. Having already mastered cooking, Chef has now decided to learn how to play the guitar. Often while trying to play a song, Chef has to skip several strings to reach the string he has to pluck. Eg. he may have to pluck the $1^{st}$ string and then the $6^{th}$ string. This is easy in guitars with only $6$ strings; However, Chef is playing a guitar with $10^{6}$ strings. In order to simplify his task, Chef wants you to write a program that will tell him the total number of strings he has to skip while playing his favourite song. This is how guitar strings are numbered (In ascending order from right to left). Eg. to switch from string $1$ to $6$, Chef would have to skip $4$ strings $(2, 3, 4, 5)$. ------ Input: ------ First line will contain $T$, number of testcases. Then the testcases follow. The first line of each test case contains $N$, the number of times Chef has to pluck a string The second line of each test case contains $N$ space separated integers - $S_{1}$, $S_{2}$, ..., $S_{N}$, where $S_{i}$ is the number of the $i^{th}$ string Chef has to pluck. ------ Output: ------ For each testcase, output the total number of strings Chef has to skip over while playing his favourite song. ------ Constraints ------ $1 ≤ T ≤ 10$ $2 ≤ N ≤ 10^{5}$ $1 ≤ S_{i} ≤ 10^{6}$ For each valid $i$, $S_{i} \neq S_{i+1}$ ------ Subtasks ------ 30 points : for each valid $i$, $S_{i} < S_{i+1}$ 70 points : No additional constraints ----- Sample Input 1 ------ 2 6 1 6 11 6 10 11 4 1 3 5 7 ----- Sample Output 1 ------ 15 3 ----- explanation 1 ------ Test Case $1$ - Chef skips $4$ strings $(2, 3, 4, 5)$ to move from $1$ to $6$ - Chef skips $4$ strings $(7, 8, 9, 10)$ to move from $6$ to $11$ - Chef skips $4$ strings $(10, 9, 8, 7)$ to move from $11$ to $6$ - Chef skips $3$ strings $(7, 8, 9)$ to move from $6$ to $10$ - Chef skips $0$ strings to move from $10$ to $11$ Therefore, the answer is $4 + 4 + 4 + 3 + 0 = 15$ Test Case $2$ - Chef skips $1$ string to move from $1$ to $3$ - Chef skips $1$ string to move from $3$ to $5$ - Chef skips $1$ string to move from $5$ to $7$ Therefore, the answer is $1 + 1 + 1 = 3$ The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) while t > 0: n = int(input()) arr = list(map(int, input().split())) count = 0 for i in range(n - 1): count += max(arr[i], arr[i + 1]) - min(arr[i], arr[i + 1]) - 1 print(count) t -= 1 ```
vfc_142859
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/CHEFSTR1", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n6\n1 6 11 6 10 11\n4\n1 3 5 7", "output": "15\n3", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1187/A
Solve the following coding problem using the programming language python: Your favorite shop sells n Kinder Surprise chocolate eggs. You know that exactly s stickers and exactly t toys are placed in n eggs in total. Each Kinder Surprise can be one of three types: * it can contain a single sticker and no toy; * it can contain a single toy and no sticker; * it can contain both a single sticker and a single toy. But you don't know which type a particular Kinder Surprise has. All eggs look identical and indistinguishable from each other. What is the minimum number of Kinder Surprise Eggs you have to buy to be sure that, whichever types they are, you'll obtain at least one sticker and at least one toy? Note that you do not open the eggs in the purchasing process, that is, you just buy some number of eggs. It's guaranteed that the answer always exists. Input The first line contains the single integer T (1 ≤ T ≤ 100) — the number of queries. Next T lines contain three integers n, s and t each (1 ≤ n ≤ 10^9, 1 ≤ s, t ≤ n, s + t ≥ n) — the number of eggs, stickers and toys. All queries are independent. Output Print T integers (one number per query) — the minimum number of Kinder Surprise Eggs you have to buy to be sure that, whichever types they are, you'll obtain at least one sticker and one toy Example Input 3 10 5 7 10 10 10 2 1 1 Output 6 1 2 Note In the first query, we have to take at least 6 eggs because there are 5 eggs with only toy inside and, in the worst case, we'll buy all of them. In the second query, all eggs have both a sticker and a toy inside, that's why it's enough to buy only one egg. In the third query, we have to buy both eggs: one with a sticker and one with a toy. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for _ in range(int(input())): (n, s, t) = map(int, input().split()) print(max(n - s + 1, n - t + 1)) ```
vfc_142876
{ "difficulty": "easy", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1187/A", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n1 1 1\n1000000000 1000000000 1000000000\n1000000000 999999999 1\n999999999 666666667 666666666\n", "output": "1\n1\n1000000000\n333333334\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\n2 1 1\n2 1 2\n2 2 1\n2 2 2\n", "output": "2\n2\n2\n1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n1926 1900 1200\n", "output": "727\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n5 3 2\n", "output": "4\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/union-find/1
Solve the following coding problem using the programming language python: This problem is to implement disjoint set union. There will be 2 incomplete functions namely union and find. You have to complete these functions. Union: Join two subsets into a single set. isConnected: Determine which subset a particular element is in. This can be used for determining if two elements are in same subset. Example 1: Input: N = 5 q = 4 Queries = Union(1,3) isConnected(1,2) Union(1,5) isConnected(3,5) Output: 0 1 Explanation: Initially all nodes 1 2 3 4 5 are not connected. After Union(1,3), node 1 and 3 will be connected. When we do isConnected(1,2), as node 1 and 2 are not connected it will return 0. After Union(1,5), node 1 and 5 will be connected. When we do isConnected(3,5), as node 1 and 3 are connected, and node 1 and 5 are connected, hence 3 and 5 are connected. Thus it will return 1. Example 2: Input: N = 5 q = 4 Queries = Union(1,4) Union(1,5) isConnected(2,3) Union(3,4) Output: 0 Your Task: You have to complete the function union_() which merges the node1 and node2. You will also have to complete the function isConnected() which will return whether the two nodes are connected. Note: Both function will contain two arrays par[] and ranks1[] along with two nodes. Initially par[i] = i and rank1[i] = 1 Expected Time Complexity: O(N + Q). Expected Auxiliary Space: O(1). Constraints: 1 <= N <= 10^{5} 1<= Q <= 10^{5} 1 <= node1, node2 <= N Write your solution by modifying this code: ```python #User function Template for python3 class Solution: #Function to merge two nodes a and b. def union_(self,a,b,par,rank1): # code here #Function to check whether 2 nodes are connected or not. def isConnected(self,x,y,par,rank1): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: @staticmethod def find(par, r): while par[r] != r: r = par[r] return r @staticmethod def compress(par, x, r): while x != r: par[x] = r x = par[x] def union_(self, a, b, par, rank1): r1 = self.find(par, a) r2 = self.find(par, b) if r1 != r2: par[r1] = r2 self.compress(par, a, r2) self.compress(par, b, r2) def isConnected(self, x, y, par, rank1): return self.find(par, x) == self.find(par, y) ```
vfc_142884
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/union-find/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 5\r\nq = 4\r\nQueries = \r\nUnion(1,3)\r\nisConnected(1,2)\r\nUnion(1,5)\r\nisConnected(3,5)", "output": "0\r\n1", "type": "stdin_stdout" }, { "fn_name": null, "input": "N = 5\r\nq = 4\r\nQueries = \r\nUnion(1,4)\r\nUnion(1,5)\r\nisConnected(2,3)\r\nUnion(3,4)", "output": "0", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1086/A
Solve the following coding problem using the programming language python: The Squareland national forest is divided into equal 1 × 1 square plots aligned with north-south and east-west directions. Each plot can be uniquely described by integer Cartesian coordinates (x, y) of its south-west corner. Three friends, Alice, Bob, and Charlie are going to buy three distinct plots of land A, B, C in the forest. Initially, all plots in the forest (including the plots A, B, C) are covered by trees. The friends want to visit each other, so they want to clean some of the plots from trees. After cleaning, one should be able to reach any of the plots A, B, C from any other one of those by moving through adjacent cleared plots. Two plots are adjacent if they share a side. <image> For example, A=(0,0), B=(1,1), C=(2,2). The minimal number of plots to be cleared is 5. One of the ways to do it is shown with the gray color. Of course, the friends don't want to strain too much. Help them find out the smallest number of plots they need to clean from trees. Input The first line contains two integers x_A and y_A — coordinates of the plot A (0 ≤ x_A, y_A ≤ 1000). The following two lines describe coordinates (x_B, y_B) and (x_C, y_C) of plots B and C respectively in the same format (0 ≤ x_B, y_B, x_C, y_C ≤ 1000). It is guaranteed that all three plots are distinct. Output On the first line print a single integer k — the smallest number of plots needed to be cleaned from trees. The following k lines should contain coordinates of all plots needed to be cleaned. All k plots should be distinct. You can output the plots in any order. If there are multiple solutions, print any of them. Examples Input 0 0 1 1 2 2 Output 5 0 0 1 0 1 1 1 2 2 2 Input 0 0 2 0 1 1 Output 4 0 0 1 0 1 1 2 0 Note The first example is shown on the picture in the legend. The second example is illustrated with the following image: <image> The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python s = [[int(i) for i in input().split()] for j in range(3)] s.sort() a = s[0] b = s[1] c = s[2] print(c[0] - a[0] + max(a[1], b[1], c[1]) - min(a[1], b[1], c[1]) + 1) for i in range(a[0], b[0]): print('{} {}'.format(i, a[1])) for i in range(min(a[1], b[1], c[1]), max(a[1], b[1], c[1]) + 1): print('{} {}'.format(b[0], i)) for i in range(b[0] + 1, c[0] + 1): print('{} {}'.format(i, c[1])) ```
vfc_142885
{ "difficulty": "medium_hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1086/A", "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1 0\n2 2\n1 1\n", "output": "4\n1 0\n1 1\n1 2\n2 2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "670 672\n593 626\n593 792\n", "output": "244\n593 626\n593 627\n593 628\n593 629\n593 630\n593 631\n593 632\n593 633\n593 634\n593 635\n593 636\n593 637\n593 638\n593 639\n593 640\n593 641\n593 642\n593 643\n593 644\n593 645\n593 646\n593 647\n593 648\n593 649\n593 650\n593 651\n593 652\n593 653\n593 654\n593 655\n593 656\n593 657\n593 658\n593 659\n593 660\n593 661\n593 662\n593 663\n593 664\n593 665\n593 666\n593 667\n593 668\n593 669\n593 670\n593 671\n593 672\n593 673\n593 674\n593 675\n593 676\n593 677\n593 678\n593 679\n593 680\n593 681\n593 682\n593 683\n593 684\n593 685\n593 686\n593 687\n593 688\n593 689\n593 690\n593 691\n593 692\n593 693\n593 694\n593 695\n593 696\n593 697\n593 698\n593 699\n593 700\n593 701\n593 702\n593 703\n593 704\n593 705\n593 706\n593 707\n593 708\n593 709\n593 710\n593 711\n593 712\n593 713\n593 714\n593 715\n593 716\n593 717\n593 718\n593 719\n593 720\n593 721\n593 722\n593 723\n593 724\n593 725\n593 726\n593 727\n593 728\n593 729\n593 730\n593 731\n593 732\n593 733\n593 734\n593 735\n593 736\n593 737\n593 738\n593 739\n593 740\n593 741\n593 742\n593 743\n593 744\n593 745\n593 746\n593 747\n593 748\n593 749\n593 750\n593 751\n593 752\n593 753\n593 754\n593 755\n593 756\n593 757\n593 758\n593 759\n593 760\n593 761\n593 762\n593 763\n593 764\n593 765\n593 766\n593 767\n593 768\n593 769\n593 770\n593 771\n593 772\n593 773\n593 774\n593 775\n593 776\n593 777\n593 778\n593 779\n593 780\n593 781\n593 782\n593 783\n593 784\n593 785\n593 786\n593 787\n593 788\n593 789\n593 790\n593 791\n593 792\n594 672\n595 672\n596 672\n597 672\n598 672\n599 672\n600 672\n601 672\n602 672\n603 672\n604 672\n605 672\n606 672\n607 672\n608 672\n609 672\n610 672\n611 672\n612 672\n613 672\n614 672\n615 672\n616 672\n617 672\n618 672\n619 672\n620 672\n621 672\n622 672\n623 672\n624 672\n625 672\n626 672\n627 672\n628 672\n629 672\n630 672\n631 672\n632 672\n633 672\n634 672\n635 672\n636 672\n637 672\n638 672\n639 672\n640 672\n641 672\n642 672\n643 672\n644 672\n645 672\n646 672\n647 672\n648 672\n649 672\n650 672\n651 672\n652 672\n653 672\n654 672\n655 672\n656 672\n657 672\n658 672\n659 672\n660 672\n661 672\n662 672\n663 672\n664 672\n665 672\n666 672\n667 672\n668 672\n669 672\n670 672\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "0 1\n1 2\n2 1\n", "output": "4\n0 1\n1 1\n1 2\n2 1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 0\n0 1\n10 10\n", "output": "21\n0 1\n1 0\n1 1\n1 2\n1 3\n1 4\n1 5\n1 6\n1 7\n1 8\n1 9\n1 10\n2 10\n3 10\n4 10\n5 10\n6 10\n7 10\n8 10\n9 10\n10 10\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/CHFRICH
Solve the following coding problem using the programming language python: Read problem statements in [Mandarin], [Bengali], [Russian], and [Vietnamese] as well. Chef aims to be the richest person in Chefland by his new restaurant franchise. Currently, his assets are worth $A$ billion dollars and have no liabilities. He aims to increase his assets by $X$ billion dollars per year. Also, all the richest people in Chefland are not planning to grow and maintain their current worth. To be the richest person in Chefland, he needs to be worth at least $B$ billion dollars. How many years will it take Chef to reach his goal if his value increases by $X$ billion dollars each year? ------ Input ------ The first line contains an integer $T$, the number of test cases. Then the test cases follow. Each test case contains a single line of input, three integers $A$, $B$, $X$. ------ Output ------ For each test case, output in a single line the answer to the problem. ------ Constraints ------ $1 ≤ T ≤ 21\ 000$ $100 ≤ A < B ≤ 200$ $1 ≤ X ≤ 50$ $X$ divides $B - A$ ------ Subtasks ------ Subtask #1 (100 points): Original constraints ----- Sample Input 1 ------ 3 100 200 10 111 199 11 190 200 10 ----- Sample Output 1 ------ 10 8 1 ----- explanation 1 ------ Test Case $1$: Chef needs to increase his worth by $200 - 100 = 100$ billion dollars and his increment per year being $10$ billion dollars, so it will take him $\frac{100}{10} = 10$ years to do so. Test Case $2$: Chef needs to increase his worth by $199 - 111 = 88$ billion dollars and his increment per year being $11$ billion dollars, so it will take him $\frac{88}{11} = 8$ years to do so. Test Case $3$: Chef needs to increase his worth by $200 - 190 = 10$ billion dollars and his increment per year being $10$ billion dollars, so it will take him $\frac{10}{10} = 1$ year to do so. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) for i in range(t): (a, b, x) = map(int, input().split()) print((b - a) // x) ```
vfc_142894
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/CHFRICH", "time_limit": "0.5 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n100 200 10\n111 199 11\n190 200 10", "output": "10\n8\n1", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1015/A
Solve the following coding problem using the programming language python: You are given a set of $n$ segments on the axis $Ox$, each segment has integer endpoints between $1$ and $m$ inclusive. Segments may intersect, overlap or even coincide with each other. Each segment is characterized by two integers $l_i$ and $r_i$ ($1 \le l_i \le r_i \le m$) — coordinates of the left and of the right endpoints. Consider all integer points between $1$ and $m$ inclusive. Your task is to print all such points that don't belong to any segment. The point $x$ belongs to the segment $[l; r]$ if and only if $l \le x \le r$. -----Input----- The first line of the input contains two integers $n$ and $m$ ($1 \le n, m \le 100$) — the number of segments and the upper bound for coordinates. The next $n$ lines contain two integers each $l_i$ and $r_i$ ($1 \le l_i \le r_i \le m$) — the endpoints of the $i$-th segment. Segments may intersect, overlap or even coincide with each other. Note, it is possible that $l_i=r_i$, i.e. a segment can degenerate to a point. -----Output----- In the first line print one integer $k$ — the number of points that don't belong to any segment. In the second line print exactly $k$ integers in any order — the points that don't belong to any segment. All points you print should be distinct. If there are no such points at all, print a single integer $0$ in the first line and either leave the second line empty or do not print it at all. -----Examples----- Input 3 5 2 2 1 2 5 5 Output 2 3 4 Input 1 7 1 7 Output 0 -----Note----- In the first example the point $1$ belongs to the second segment, the point $2$ belongs to the first and the second segments and the point $5$ belongs to the third segment. The points $3$ and $4$ do not belong to any segment. In the second example all the points from $1$ to $7$ belong to the first segment. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, m) = map(int, input().split()) L = (m + 2) * [0] for _ in range(n): (l, r) = map(int, input().split()) L[l] += 1 L[r + 1] -= 1 ans = [] for i in range(1, m + 1): L[i] += L[i - 1] if L[i] == 0: ans.append(i) print(len(ans)) print(*ans) ```
vfc_142898
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1015/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3 5\n2 2\n1 2\n5 5\n", "output": "2\n3 4 \n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 7\n1 7\n", "output": "0\n\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "100 100\n1 2\n1 3\n1 3\n2 3\n1 1\n1 2\n1 1\n1 2\n1 3\n1 2\n1 2\n1 5\n1 1\n1 1\n1 1\n1 1\n1 1\n1 1\n1 2\n1 1\n1 1\n1 2\n2 2\n1 1\n1 5\n1 4\n1 1\n2 2\n2 9\n1 1\n1 5\n2 3\n2 3\n1 5\n1 2\n2 2\n2 2\n1 2\n1 2\n3 4\n1 5\n1 1\n1 1\n1 1\n1 1\n2 2\n1 3\n1 2\n1 2\n1 2\n1 1\n2 2\n1 4\n1 3\n1 1\n1 2\n1 1\n2 3\n1 2\n2 2\n1 1\n1 5\n1 2\n2 2\n1 1\n1 1\n1 2\n1 4\n2 3\n1 2\n1 1\n2 2\n1 5\n1 1\n1 6\n1 1\n1 1\n1 2\n1 1\n1 4\n2 2\n1 1\n1 1\n1 2\n1 2\n1 2\n1 1\n1 2\n2 3\n1 1\n1 1\n1 3\n1 3\n1 2\n1 2\n1 1\n1 2\n1 2\n1 1\n1 2\n", "output": "91\n10 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 \n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 100\n2 99\n", "output": "2\n1 100 \n", "type": "stdin_stdout" }, { "fn_name": null, "input": "100 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n2 2\n", "output": "1\n1 \n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 100\n54 54\n", "output": "99\n1 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 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 \n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/362/B
Solve the following coding problem using the programming language python: Little boy Petya loves stairs very much. But he is bored from simple going up and down them — he loves jumping over several stairs at a time. As he stands on some stair, he can either jump to the next one or jump over one or two stairs at a time. But some stairs are too dirty and Petya doesn't want to step on them. Now Petya is on the first stair of the staircase, consisting of n stairs. He also knows the numbers of the dirty stairs of this staircase. Help Petya find out if he can jump through the entire staircase and reach the last stair number n without touching a dirty stair once. One has to note that anyway Petya should step on the first and last stairs, so if the first or the last stair is dirty, then Petya cannot choose a path with clean steps only. -----Input----- The first line contains two integers n and m (1 ≤ n ≤ 10^9, 0 ≤ m ≤ 3000) — the number of stairs in the staircase and the number of dirty stairs, correspondingly. The second line contains m different space-separated integers d_1, d_2, ..., d_{m} (1 ≤ d_{i} ≤ n) — the numbers of the dirty stairs (in an arbitrary order). -----Output----- Print "YES" if Petya can reach stair number n, stepping only on the clean stairs. Otherwise print "NO". -----Examples----- Input 10 5 2 4 8 3 6 Output NO Input 10 5 2 4 5 7 9 Output YES The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, m) = map(int, input().split()) if m == 0: print('YES') exit(0) a = set(map(int, input().split())) l = 0 for i in a: if i + 1 in a and i + 2 in a: l += 1 if 1 in a or n in a or l > 0: print('NO') else: print('YES') ```
vfc_142906
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/362/B", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "10 5\n2 4 8 3 6\n", "output": "NO", "type": "stdin_stdout" }, { "fn_name": null, "input": "10 5\n2 4 5 7 9\n", "output": "YES", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/491/A
Solve the following coding problem using the programming language python: Hiking club "Up the hill" just returned from a walk. Now they are trying to remember which hills they've just walked through. It is known that there were N stops, all on different integer heights between 1 and N kilometers (inclusive) above the sea level. On the first day they've traveled from the first stop to the second stop, on the second day they've traveled from the second to the third and so on, and on the last day they've traveled from the stop N - 1 to the stop N and successfully finished their expedition. They are trying to find out which heights were their stops located at. They have an entry in a travel journal specifying how many days did they travel up the hill, and how many days did they walk down the hill. Help them by suggesting some possible stop heights satisfying numbers from the travel journal. -----Input----- In the first line there is an integer non-negative number A denoting the number of days of climbing up the hill. Second line contains an integer non-negative number B — the number of days of walking down the hill (A + B + 1 = N, 1 ≤ N ≤ 100 000). -----Output----- Output N space-separated distinct integers from 1 to N inclusive, denoting possible heights of the stops in order of visiting. -----Examples----- Input 0 1 Output 2 1 Input 2 1 Output 1 3 4 2 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from sys import stdout, stdin import math r = lambda : int(input()) ra = lambda : [*map(int, input().split())] raw = lambda : [*stdin.readline()] out = lambda a: stdout.write(''.join(a)) a = r() b = r() n = a + b + 1 p = [str(i + 1) + ' ' for i in range(1, n)] res = [] if (a or b) == 0: out('1') else: if a == 0: res = p[0:b][::-1] + ['1'] elif b == 0: res = ['1 '] + p[0:n] else: res = p[n - a - 2:n] + p[0:n - a - 2][::-1] + ['1'] out(res) ```
vfc_142910
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/491/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "0\n1\n", "output": "2 1 \n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n1\n", "output": "2 3 4 1 \n", "type": "stdin_stdout" }, { "fn_name": null, "input": "0\n3\n", "output": "4 3 2 1 \n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n1\n", "output": "2 3 1 \n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n7\n", "output": "8 9 10 11 7 6 5 4 3 2 1 \n", "type": "stdin_stdout" }, { "fn_name": null, "input": "37\n29\n", "output": "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 29 28 27 26 25 24 23 22 21 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1 \n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1411/E
Solve the following coding problem using the programming language python: You've got a string $S$ consisting of $n$ lowercase English letters from your friend. It turned out that this is a number written in poman numerals. The poman numeral system is long forgotten. All that's left is the algorithm to transform number from poman numerals to the numeral system familiar to us. Characters of $S$ are numbered from $1$ to $n$ from left to right. Let's denote the value of $S$ as $f(S)$, it is defined as follows: If $|S| > 1$, an arbitrary integer $m$ ($1 \le m < |S|$) is chosen, and it is defined that $f(S) = -f(S[1, m]) + f(S[m + 1, |S|])$, where $S[l, r]$ denotes the substring of $S$ from the $l$-th to the $r$-th position, inclusively. Otherwise $S = c$, where $c$ is some English letter. Then $f(S) = 2^{pos(c)}$, where $pos(c)$ is the position of letter $c$ in the alphabet ($pos($a$) = 0$, $pos($z$) = 25$). Note that $m$ is chosen independently on each step. Your friend thinks it is possible to get $f(S) = T$ by choosing the right $m$ on every step. Is he right? -----Input----- The first line contains two integers $n$ and $T$ ($2 \leq n \leq 10^5$, $-10^{15} \leq T \leq 10^{15}$). The second line contains a string $S$ consisting of $n$ lowercase English letters. -----Output----- Print "Yes" if it is possible to get the desired value. Otherwise, print "No". You can print each letter in any case (upper or lower). -----Examples----- Input 2 -1 ba Output Yes Input 3 -7 abc Output No Input 7 -475391 qohshra Output Yes -----Note----- In the second example, you cannot get $-7$. But you can get $1$, for example, as follows: First choose $m = 1$, then $f($abc$) = -f($a$) + f($bc$)$ $f($a$) = 2^0 = 1$ $f($bc$) = -f($b$) + f($c$) = -2^1 + 2^2 = 2$ In the end $f($abc$) = -1 + 2 = 1$ The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (_, T) = [int(x) for x in input().split()] L = [ord(x) - ord('a') for x in input()] T -= 2 ** L[-1] T += 2 ** L[-2] L = L[:-2] L.sort(reverse=True) for c in L: T += (1 if T < 0 else -1) * (1 << c) print('Yes' if T == 0 else 'No') ```
vfc_142914
{ "difficulty": "hard", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1411/E", "time_limit": "1 second" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2 -1\nba\n", "output": "Yes\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 -7\nabc\n", "output": "No\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "7 -475391\nqohshra\n", "output": "Yes\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1760/A
Solve the following coding problem using the programming language python: Given three distinct integers $a$, $b$, and $c$, find the medium number between all of them. The medium number is the number that is neither the minimum nor the maximum of the given three numbers. For example, the median of $5,2,6$ is $5$, since the minimum is $2$ and the maximum is $6$. -----Input----- The first line contains a single integer $t$ ($1 \leq t \leq 6840$) — the number of test cases. The description of each test case consists of three distinct integers $a$, $b$, $c$ ($1 \leq a, b, c \leq 20$). -----Output----- For each test case, output a single integer — the medium number of the three numbers. -----Examples----- Input 9 5 2 6 14 3 4 20 2 1 1 2 3 11 19 12 10 8 20 6 20 3 4 1 3 19 8 4 Output 5 4 2 2 12 10 6 3 8 -----Note----- None The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) ans = [0] * t for i in range(t): a = sorted(list(map(int, input().split()))) ans[i] = a[1] print('\n'.join(map(str, ans))) ```
vfc_142918
{ "difficulty": "easy", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1760/A", "time_limit": "1 second" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "9\n5 2 6\n14 3 4\n20 2 1\n1 2 3\n11 19 12\n10 8 20\n6 20 3\n4 1 3\n19 8 4\n", "output": "5\n4\n2\n2\n12\n10\n6\n3\n8\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n1 3 2\n", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n1 2 3\n2 3 1\n", "output": "2\n2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/SUMPOWER
Solve the following coding problem using the programming language python: Read problems statements in Mandarin chinese, Russian and Vietnamese as well. You work as an engineer. You were given an empty board with $K$ consecutive cells; at any moment, each cell can display one character. You want the board to display a string $S$ with length $N > K$. Since the board isn't large enough, you want to display the string in $N-K+1$ steps. In the $i$-th step ($1 ≤ i ≤ N-K+1$), you'll make the board display the characters $S_{i}, S_{i+1}, \dots, S_{i+K-1}$. The power required to switch the board from step $i$ to step $i+1$ (for $1 ≤ i ≤ N-K$) is equal to the number of characters displayed on the board that have to change between these steps. You should find the total power required for the whole process of displaying a string, i.e. the sum of powers required for switching between all consecutive pairs of steps. ------ Input ------ The first line of the input contains a single integer $T$ denoting the number of test cases. The description of $T$ test cases follows. The first line of each test case contains two space-separated integers $N$ and $K$. The second line contains a single string $S$ with length $N$. ------ Output ------ For each test case, print a single line containing one integer — the total power required for text switching. ------ Constraints ------ $1 ≤ T ≤ 1,000$ $2 ≤ N ≤ 10^{5}$ $1 ≤ K < N$ each character of $S$ is a lowercase English letter the sum of $N$ for all test cases does not exceed $10^{6}$ ------ Subtasks ------ Subtask #1 (20 points): $1 ≤ T ≤ 100$ $2 ≤ N ≤ 50$ Subtask #2 (80 points): original constraints ----- Sample Input 1 ------ 3 6 3 aabbcc 5 2 abccc 4 3 aabb ----- Sample Output 1 ------ 4 3 1 ----- explanation 1 ------ Example case 1: - In step $1$, the board is displaying "aab". - In step $2$, the board is displaying "abb". - In step $3$, the board is displaying "bbc". - In step $4$, the board is displaying "bcc". The power required for switching from the $1$-st to the $2$-nd step is $1$, because cell $1$ changes from 'a' to 'a' (requiring power $0$), cell $2$ changes from 'a' to 'b' (requiring power $1$) and cell $3$ changes from 'b' to 'b' (requiring power $0$); $0 + 1 + 0 = 1$. The power required for switching between the $2$-nd and $3$-rd step is $2$ and the power required for switching between the $3$-rd and $4$-th step is $1$. Therefore, the answer is $1 + 2 + 1 = 4$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python case = int(input()) for _ in range(case): (n, k) = map(int, input().split(' ')) s = input() arr = [] if n & 1 == 1: value = n // 2 for i in range(value): arr.append(i + 1) for i in range(value, n): arr.append(value) value -= 1 else: value = n // 2 for i in range(value): arr.append(i + 1) for i in range(value, n): value -= 1 arr.append(value) ans = 0 if k <= n // 2: ans = k else: ans = n - k res = 0 for i in range(n - 1): if s[i] != s[i + 1]: if arr[i] <= ans: res += arr[i] else: res += ans print(res) ```
vfc_142922
{ "difficulty": "medium_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/SUMPOWER", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n6 3\naabbcc\n5 2\nabccc\n4 3\naabb", "output": "4\n3\n1", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/PROC2020/problems/ENGRIS
Solve the following coding problem using the programming language python: Sandy is a professor at a very reputed institute. The institute mandates that all the lectures be communicated in English. As Sandy is not very good at English(or anything actually) the presentations he displays in class have a lot of spelling mistakes in them. As you have a dictionary on you containing $N$ words in it, the responsibility of correctly deducing the misspelt word falls upon your shoulders. Sandy's presentation contains in them, $Q$ words which you $think$ are wrongly spelt. A word is misspelt if a $single$ letter in it is missing or is different from the corresponding correctly spelled word in your dictionary. For each of the misspelt word in the presentation find out the corresponding correct word from your dictionary. Note : - For each misspelt word in Sandy's presentation, there exists one and only one correctly spelt word in your dictionary that corresponds to it. - Out of the $Q$ misspelt words given to you, there might be some which are correctly spelt i.e., that word completely matches a word in your dictionary. (Give Sandy some credit, he's a teacher after all). For such words print the word corresponding to it in your dictionary. - The maximum length of each string can be $L$. -----Input:----- - First line contains a single integer $T$ denoting the number of testcases. Then the testcases follow. - The first line of each test case contains two space-separated integers $N, Q$ corresponding to the number of words in your dictionary and the number of misspelt word in Sandy's dictionary respectively. - $N$ lines follow each containing a single string $S$ denoting a word in your dictionary. - $Q$ lines follow each containing a single string $M$ denoting a misspelt word in Sandy's presentation. -----Output:----- In each testcase, for each of the $Q$ misspelt words, print a single word $S$ corresponding to the correctly spelt word in your dictionary. -----Constraints----- - $1 \leq T \leq 100$ - $1 \leq N \leq 200$ - $1 \leq Q \leq 200$ - $1 \leq L \leq 100$ - None of the words contain any spaces in them. - Each letter in every word is in lower case. -----Subtasks----- - Subtask 1 : 10 points - $1 \leq N \leq 50$ - $1 \leq Q \leq 10$ - Subtask 2 : 90 points - Original Constraints -----Sample Input:----- 1 5 2 szhbdvrngk qzhxibnuec jfsalpwfkospl levjehdkjy wdfhzgatuh szhbdvcngk qzhxbnuec -----Sample Output:----- szhbdvrngk qzhxibnuec -----EXPLANATION:----- - In the first misspelt word $szhbdvcngk$, a single letter $c$ is different from the original word $szhbdvrngk$. - The second misspelt word $qzhxbnuec$ is missing the letter $i$ that was in the original word $qzhxibnuec$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from difflib import get_close_matches import sys, os def closeMatches(patterns, word): return get_close_matches(word, patterns, 1, 0.9)[0] def get_string(): return sys.stdin.readline().strip() def get_ints(): return map(int, sys.stdin.readline().strip().split()) ans = [] test = int(input()) for i in range(test): (n, q) = get_ints() n = int(n) q = int(q) patterns = [] for j in range(n): s = get_string() patterns.append(s) for j in range(q): word = get_string() ans.append(closeMatches(patterns, word)) for j in ans: sys.stdout.write(j + '\n') ```
vfc_142926
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/PROC2020/problems/ENGRIS", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1\n5 2\nszhbdvrngk\nqzhxibnuec\njfsalpwfkospl\nlevjehdkjy\nwdfhzgatuh\nszhbdvcngk\nqzhxbnuec\n", "output": "szhbdvrngk\nqzhxibnuec\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: In the good old days, the Internet was free from fears and terrorism. People did not have to worry about any cyber criminals or mad computer scientists. Today, however, you are facing atrocious crackers wherever you are, unless being disconnected. You have to protect yourselves against their attacks. Counting upon your excellent talent for software construction and strong sense of justice, you are invited to work as a cyber guardian. Your ultimate mission is to create a perfect firewall system that can completely shut out any intruders invading networks and protect children from harmful information exposed on the Net. However, it is extremely difficult and none have ever achieved it before. As the first step, instead, you are now requested to write a software simulator under much simpler assumptions. In general, a firewall system works at the entrance of a local network of an organization (e.g., a company or a university) and enforces its local administrative policy. It receives both inbound and outbound packets (note: data transmitted on the Net are divided into small segments called packets) and carefully inspects them one by one whether or not each of them is legal. The definition of the legality may vary from site to site or depend upon the local administrative policy of an organization. Your simulator should accept data representing not only received packets but also the local administrative policy. For simplicity in this problem we assume that each network packet consists of three fields: its source address, destination address, and message body. The source address specifies the computer or appliance that transmits the packet and the destination address specifies the computer or appliance to which the packet is transmitted. An address in your simulator is represented as eight digits such as 03214567 or 31415926, instead of using the standard notation of IP addresses such as 192.168.1.1. Administrative policy is described in filtering rules, each of which specifies some collection of source-destination address pairs and defines those packets with the specified address pairs either legal or illegal. Input The input consists of several data sets, each of which represents filtering rules and received packets in the following format: n m rule1 rule2 ... rulen packet1 packet2 ... packetm The first line consists of two non-negative integers n and m. If both n and m are zeros, this means the end of input. Otherwise, n lines, each representing a filtering rule, and m lines, each representing an arriving packet, follow in this order. You may assume that n and m are less than or equal to 1,024. Each rulei is in one of the following formats: permit source-pattern destination-pattern deny source-pattern destination-pattern A source-pattern or destination-pattern is a character string of length eight, where each character is either a digit ('0' to '9') or a wildcard character '?'. For instance, "1????5??" matches any address whose first and fifth digits are '1' and '5', respectively. In general, a wildcard character matches any single digit while a digit matches only itself. With the keywords "permit" and "deny", filtering rules specify legal and illegal packets, respectively. That is, if the source and destination addresses of a packed are matched with source-pattern and destination-pattern, respectively, it is permitted to pass the firewall or the request is denied according to the keyword. Note that a permit rule and a deny rule can contradict since they may share the same source and destination address pair. For the purpose of conflict resolution, we define a priority rule: rulei has a higher priority over rulej if and only if i > j. For completeness, we define the default rule: any packet is illegal unless being explicitly specified legal by some given rule. A packet is in the following format: source-address destination-address message-body Each of the first two is a character string of length eight that consists solely of digits. The last one is a character string consisting solely of alphanumeric characters ('a' to 'z', 'A' to 'Z', and '0' to '9'). Neither whitespaces nor special characters can occur in a message body. You may assume that it is not empty and that its length is at most 50. You may also assume that there is exactly one space character between any two adjacent fields in an input line representing a rule or a packet. Output For each data set, print the number of legal packets in the first line, followed by all legal packets in the same order as they occur in the data set. Each packet must be written exactly in one line. If the data set includes two packets consisting of the same source and destination addresses and the same message body, you should consider them different packets and so they must be written in different lines. Any extra whitespaces or extra empty lines must not be written. Example Input 2 5 permit 192168?? ?12??34? deny 19216899 012343?5 19216711 11233340 HiIamACracker 19216891 01234345 Hello 19216899 01234345 HiIamAlsoACracker 19216809 11200340 World 00000000 99999999 TheEndOfTheWorld 1 2 permit 12345678 23456789 19216891 01234345 Hello 12345678 23456789 Hello 0 0 Output 2 19216891 01234345 Hello 19216809 11200340 World 1 12345678 23456789 Hello The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import re while True: (n, m) = map(int, input().split()) if n | m == 0: break (rule, ans) = ([], []) for i in range(n): (g, s, d) = input().split() rule.append((g[0] == 'p', re.compile((s + d).replace('?', '\\d')))) for i in range(m): (s, d, m) = input().split() sd = s + d for (G, SD) in rule[::-1]: if re.match(SD, sd): if G: ans.append((s, d, m)) break print(len(ans)) for a in ans: print(*a) ```
vfc_142931
{ "difficulty": "unknown_difficulty", "memory_limit": "134.217728 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2 5\npermit 192168?? ?12??34?\ndeny 19216899 012343?5\n19216711 11233340 HiIamACracker\n19216891 01234345 Hello\n19216899 01234345 HiIbmAlsoACracker\n19216809 11200340 World\n00000000 99999999 TheEndOfTheWorld\n1 2\npermit 12345678 23456789\n19216891 01234345 Hello\n12345678 23456789 Hello\n0 0", "output": "2\n19216891 01234345 Hello\n19216809 11200340 World\n1\n12345678 23456789 Hello\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2 5\npermit 192168?? ?12??34?\ndeny 19216899 012343?5\n19216711 11233340 HiIamACracker\n19216891 01234345 Hello\n19216899 01234345 HiIbmAlsoACracker\n19216809 11200340 World\n00000000 99999999 TheEndOfTheWorld\n1 2\npermit 12345678 23456789\n19216891 01234345 Hello\n12345678 23456789 Hdllo\n0 0", "output": "2\n19216891 01234345 Hello\n19216809 11200340 World\n1\n12345678 23456789 Hdllo\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2 5\npermit 192168?? ?12??34?\ndeny 19216899 012343?5\n19216711 11233340 HiIamACracker\n19216891 1954119 Hello\n19216899 01234345 HiIbmAlsoACracker\n19216809 11200340 World\n00000000 99999999 TheEndOfTheWorld\n1 2\npermit 12345678 23456789\n19216891 01234345 Hello\n12345678 23456789 Hdllo\n0 0", "output": "1\n19216809 11200340 World\n1\n12345678 23456789 Hdllo\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2 5\npermit 192168?? ?12??34?\ndeny 19216899 012334?5\n19216711 11233340 HiIamACracker\n19216891 1954119 Hello\n19216899 01234345 HiIbmAlsoACracker\n19216809 11200340 World\n00000000 99999999 TheEndOfTheWorld\n1 2\npermit 12345678 23456789\n19216891 01234345 Hello\n12345678 23456789 Hdllo\n0 0", "output": "2\n19216899 01234345 HiIbmAlsoACracker\n19216809 11200340 World\n1\n12345678 23456789 Hdllo\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2 5\npermit 192168?? ?12??34?\ndeny 19216899 012334?5\n19216711 11233340 HiIamACracker\n19216891 1954119 Hello\n19216899 01234345 HiIbmAlsoACcarker\n19216809 11200340 World\n00000000 99999999 TheEndOfTheWorld\n1 2\npermit 12345678 23456789\n19216891 01234345 Hello\n12345678 23456789 Hdllo\n0 0", "output": "2\n19216899 01234345 HiIbmAlsoACcarker\n19216809 11200340 World\n1\n12345678 23456789 Hdllo\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/868/A
Solve the following coding problem using the programming language python: As technologies develop, manufacturers are making the process of unlocking a phone as user-friendly as possible. To unlock its new phone, Arkady's pet dog Mu-mu has to bark the password once. The phone represents a password as a string of two lowercase English letters. Mu-mu's enemy Kashtanka wants to unlock Mu-mu's phone to steal some sensible information, but it can only bark n distinct words, each of which can be represented as a string of two lowercase English letters. Kashtanka wants to bark several words (not necessarily distinct) one after another to pronounce a string containing the password as a substring. Tell if it's possible to unlock the phone in this way, or not. -----Input----- The first line contains two lowercase English letters — the password on the phone. The second line contains single integer n (1 ≤ n ≤ 100) — the number of words Kashtanka knows. The next n lines contain two lowercase English letters each, representing the words Kashtanka knows. The words are guaranteed to be distinct. -----Output----- Print "YES" if Kashtanka can bark several words in a line forming a string containing the password, and "NO" otherwise. You can print each letter in arbitrary case (upper or lower). -----Examples----- Input ya 4 ah oy to ha Output YES Input hp 2 ht tp Output NO Input ah 1 ha Output YES -----Note----- In the first example the password is "ya", and Kashtanka can bark "oy" and then "ah", and then "ha" to form the string "oyahha" which contains the password. So, the answer is "YES". In the second example Kashtanka can't produce a string containing password as a substring. Note that it can bark "ht" and then "tp" producing "http", but it doesn't contain the password "hp" as a substring. In the third example the string "hahahaha" contains "ah" as a substring. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python password = input() N = int(input()) words = [] for i in range(N): words += [input()] f = False for i in range(N): for j in range(N): if password in words[i] + words[j]: f = True break if f: print('YES') else: print('NO') ```
vfc_142935
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/868/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "ya\n4\nah\noy\nto\nha\n", "output": "YES\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1141/A
Solve the following coding problem using the programming language python: Polycarp plays "Game 23". Initially he has a number $n$ and his goal is to transform it to $m$. In one move, he can multiply $n$ by $2$ or multiply $n$ by $3$. He can perform any number of moves. Print the number of moves needed to transform $n$ to $m$. Print -1 if it is impossible to do so. It is easy to prove that any way to transform $n$ to $m$ contains the same number of moves (i.e. number of moves doesn't depend on the way of transformation). -----Input----- The only line of the input contains two integers $n$ and $m$ ($1 \le n \le m \le 5\cdot10^8$). -----Output----- Print the number of moves to transform $n$ to $m$, or -1 if there is no solution. -----Examples----- Input 120 51840 Output 7 Input 42 42 Output 0 Input 48 72 Output -1 -----Note----- In the first example, the possible sequence of moves is: $120 \rightarrow 240 \rightarrow 720 \rightarrow 1440 \rightarrow 4320 \rightarrow 12960 \rightarrow 25920 \rightarrow 51840.$ The are $7$ steps in total. In the second example, no moves are needed. Thus, the answer is $0$. In the third example, it is impossible to transform $48$ to $72$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, m) = list(map(int, input().split())) if m % n > 0: print(-1) else: res = 0 a = m // n while a % 2 == 0: a //= 2 res += 1 while a % 3 == 0: a //= 3 res += 1 if a == 1: print(res) else: print(-1) ```
vfc_142939
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1141/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "120 51840\n", "output": "7\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "42 42\n", "output": "0\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/confused-pappu5749/1
Solve the following coding problem using the programming language python: Pappu is confused between 6 & 9. He works in the billing department of abc company and his work is to return the remaining amount to the customers. If the actual remaining amount is given we need to find the maximum possible extra amount given by the pappu to the customers. Example 1: Input: amount = 56 Output: 3 Explanation: maximum possible extra amount = 59 - 56 = 3. Example 2: Input: amount = 66 Output: 33 Explanation: maximum possible extra amount = 99 - 66 = 33. User Task: Your task is to complete the function findDiff() which takes single argument(amount) and returns the answer. You need not take any input or print anything. Expected Time Complexity: O(log_{10}amount). Expected Auxiliary Space: O(log_{10}amount). Constraints 1 ≤ N≤ 10000001 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def findDiff(self, amount): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def findDiff(self, amount): str1 = str(amount) str2 = '' for i in range(len(str1)): if str1[i] == '6': str2 = str2 + '9' else: str2 = str2 + str1[i] num = int(str2) res = num - amount return res ```
vfc_142944
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/confused-pappu5749/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "amount = 56", "output": "3", "type": "stdin_stdout" }, { "fn_name": null, "input": "amount = 66", "output": "33", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/80/C
Solve the following coding problem using the programming language python: The year of 2012 is coming... According to an ancient choradrican legend in this very year, in 2012, Diablo and his brothers Mephisto and Baal will escape from hell, and innumerable hordes of demons will enslave the human world. But seven brave heroes have already gathered on the top of a mountain Arreat to protect us mere mortals from the effect of this terrible evil. The seven great heroes are: amazon Anka, barbarian Chapay, sorceress Cleo, druid Troll, necromancer Dracul, paladin Snowy and a professional hit girl Hexadecimal. Heroes already know how much experience will be given for each of the three megabosses: a for Mephisto, b for Diablo and c for Baal. Here's the problem: heroes are as much as seven and megabosses are only three! Then our heroes decided to split into three teams, where each team will go to destroy their own megaboss. Each team member will receive a <image> of experience, rounded down, where x will be the amount of experience for the killed megaboss and y — the number of people in the team. Heroes do not want to hurt each other's feelings, so they want to split into teams so that the difference between the hero who received the maximum number of experience and the hero who received the minimum number of experience were minimal. Since there can be several divisions into teams, then you need to find the one in which the total amount of liking in teams were maximum. It is known that some heroes like others. But if hero p likes hero q, this does not mean that the hero q likes hero p. No hero likes himself. The total amount of liking in teams is the amount of ordered pairs (p, q), such that heroes p and q are in the same group, and hero p likes hero q (but it is not important if hero q likes hero p). In case of heroes p and q likes each other and they are in the same group, this pair should be counted twice, as (p, q) and (q, p). A team can consist even of a single hero, but it is important that every megaboss was destroyed. All heroes must be involved in the campaign against evil. None of the heroes can be in more than one team. It is guaranteed that every hero is able to destroy any megaboss alone. Input The first line contains a single non-negative integer n (0 ≤ n ≤ 42) — amount of liking between the heroes. Next n lines describe liking in the form "p likes q", meaning that the hero p likes the hero q (p ≠ q). Every liking is described in the input exactly once, no hero likes himself. In the last line are given three integers a, b and c (1 ≤ a, b, c ≤ 2·109), separated by spaces: the experience for Mephisto, the experience for Diablo and experience for Baal. In all the pretests, except for examples from the statement, the following condition is satisfied: a = b = c. Output Print two integers — the minimal difference in the experience between two heroes who will receive the maximum and minimum number of experience points, and the maximal total amount of liking in teams (the number of friendships between heroes that end up in one team). When calculating the second answer, the team division should satisfy the difference-minimizing contraint. I.e. primary you should minimize the difference in the experience and secondary you should maximize the total amount of liking. Examples Input 3 Troll likes Dracul Dracul likes Anka Snowy likes Hexadecimal 210 200 180 Output 30 3 Input 2 Anka likes Chapay Chapay likes Anka 10000 50 50 Output 1950 2 Note A note to first example: it the first team should be Dracul, Troll and Anka, in the second one Hexadecimal and Snowy, and in the third Cleo и Chapay. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from itertools import combinations, product Teams = [[1, 1, 5], [1, 2, 4], [1, 3, 3], [2, 2, 3]] Names = {} Names['Anka'] = 0 Names['Chapay'] = 1 Names['Cleo'] = 2 Names['Dracul'] = 3 Names['Hexadecimal'] = 4 Names['Snowy'] = 5 Names['Troll'] = 6 graph = [[0] * 7 for _ in range(7)] N = int(input()) for _ in range(N): (p, q) = input().split(' likes ') p = Names[p] q = Names[q] graph[p][q] = 1 (a, b, c) = sorted(map(int, input().split())) E_diff_star = float('inf') team_all = [] for (t1, t2, t3) in Teams: E = [a // t1, b // t2, c // t3] E_diff = max(E) - min(E) if E_diff < E_diff_star: E_diff_star = E_diff team_all = [[t1, t2, t3]] elif E_diff == E_diff_star: team_all.append([t1, t2, t3]) liking = 0 for team in team_all: for te2 in combinations(set(range(7)), team[2]): te2 = set(te2) left = set(range(7)) - te2 L2 = sum((graph[p][q] for (p, q) in product(te2, te2))) for te1 in combinations(left, team[1]): te1 = set(te1) te0 = left - te1 L1 = sum((graph[p][q] for (p, q) in product(te1, te1))) L0 = sum((graph[p][q] for (p, q) in product(te0, te0))) L = L2 + L1 + L0 if L > liking: liking = L print(E_diff_star, liking) ```
vfc_142945
{ "difficulty": "medium", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/80/C", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "0\n2000000000 2000000000 1\n", "output": "666666665 0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "22\nCleo likes Snowy\nCleo likes Troll\nChapay likes Dracul\nSnowy likes Troll\nDracul likes Chapay\nDracul likes Snowy\nChapay likes Cleo\nSnowy likes Chapay\nDracul likes Troll\nAnka likes Hexadecimal\nSnowy likes Anka\nHexadecimal likes Cleo\nHexadecimal likes Troll\nDracul likes Anka\nCleo likes Hexadecimal\nHexadecimal likes Dracul\nChapay likes Troll\nChapay likes Hexadecimal\nAnka likes Snowy\nTroll likes Hexadecimal\nSnowy likes Hexadecimal\nAnka likes Chapay\n458053183 602148195 994999698\n", "output": "102639975 9\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/316/A2
Solve the following coding problem using the programming language python: Special Agent Smart Beaver works in a secret research department of ABBYY. He's been working there for a long time and is satisfied with his job, as it allows him to eat out in the best restaurants and order the most expensive and exotic wood types there. The content special agent has got an important task: to get the latest research by British scientists on the English Language. These developments are encoded and stored in a large safe. The Beaver's teeth are strong enough, so the authorities assured that upon arriving at the place the beaver won't have any problems with opening the safe. And he finishes his aspen sprig and leaves for this important task. Of course, the Beaver arrived at the location without any problems, but alas. He can't open the safe with his strong and big teeth. At this point, the Smart Beaver get a call from the headquarters and learns that opening the safe with the teeth is not necessary, as a reliable source has sent the following information: the safe code consists of digits and has no leading zeroes. There also is a special hint, which can be used to open the safe. The hint is string s with the following structure: * if si = "?", then the digit that goes i-th in the safe code can be anything (between 0 to 9, inclusively); * if si is a digit (between 0 to 9, inclusively), then it means that there is digit si on position i in code; * if the string contains letters from "A" to "J", then all positions with the same letters must contain the same digits and the positions with distinct letters must contain distinct digits. * The length of the safe code coincides with the length of the hint. For example, hint "?JGJ9" has such matching safe code variants: "51919", "55959", "12329", "93539" and so on, and has wrong variants such as: "56669", "00111", "03539" and "13666". After receiving such information, the authorities change the plan and ask the special agents to work quietly and gently and not to try to open the safe by mechanical means, and try to find the password using the given hint. At a special agent school the Smart Beaver was the fastest in his platoon finding codes for such safes, but now he is not in that shape: the years take their toll ... Help him to determine the number of possible variants of the code to the safe, matching the given hint. After receiving this information, and knowing his own speed of entering codes, the Smart Beaver will be able to determine whether he will have time for tonight's show "Beavers are on the trail" on his favorite TV channel, or he should work for a sleepless night... Input The first line contains string s — the hint to the safe code. String s consists of the following characters: ?, 0-9, A-J. It is guaranteed that the first character of string s doesn't equal to character 0. The input limits for scoring 30 points are (subproblem A1): * 1 ≤ |s| ≤ 5. The input limits for scoring 100 points are (subproblems A1+A2): * 1 ≤ |s| ≤ 105. Here |s| means the length of string s. Output Print the number of codes that match the given hint. Examples Input AJ Output 81 Input 1?AA Output 100 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import math s = input() ques = s[1:].count('?') d = {'A': 0, 'B': 0, 'C': 0, 'D': 0, 'E': 0, 'F': 0, 'G': 0, 'H': 0, 'I': 0, 'J': 0} digit = set([str(i) for i in range(0, 10)]) digit.add('?') ans = 1 ans *= pow(10, ques) count = 0 for i in range(1, len(s)): if s[i] not in digit and d[s[i]] == 0: count += 1 d[s[i]] = 1 start = 10 if s[0] in d and d[s[0]] == 1: count -= 1 ans *= 9 start = 9 if s[0] in d and d[s[0]] == 0: ans *= 9 start = 9 while count != 0: ans *= start start -= 1 count -= 1 if s[0] == '?': ans *= 9 print(ans) ```
vfc_142949
{ "difficulty": "medium", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/316/A2", "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "???\n", "output": "900", "type": "stdin_stdout" }, { "fn_name": null, "input": "??JG?\n", "output": "81000", "type": "stdin_stdout" }, { "fn_name": null, "input": "9???\n", "output": "1000", "type": "stdin_stdout" }, { "fn_name": null, "input": "B?\n", "output": "90", "type": "stdin_stdout" }, { "fn_name": null, "input": "A\n", "output": "9", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/PAR2
Solve the following coding problem using the programming language python: Ashu and Arvind participated in a coding contest, as a result of which they received N chocolates. Now they want to divide the chocolates between them equally. Can you help them by deciding if it is possible for them to divide all the N chocolates in such a way that they each get an equal number of chocolates? You cannot break a chocolate in two or more pieces. ------ Input Format ------ - The first line of input will contain a single integer T, denoting the number of test cases. - The first and only line of each test case contains a single integer N — the number of chocolates they received. ------ Output Format ------ For each test case output the answer on a new line — "Yes" (without quotes) if they can divide chocolates between them equally, and "No" (without quotes) otherwise. Each letter of the output may be printed in either uppercase or lowercase, i.e, "Yes", "YES", and "yEs" will all be treated as equivalent. ------ Constraints ------ $1 ≤ T ≤ 10$ $1 ≤ N ≤ 10$ ----- Sample Input 1 ------ 4 10 4 3 2 ----- Sample Output 1 ------ Yes Yes No Yes ----- explanation 1 ------ Test case $1$: They can divide $10$ chocolates such that both of them get $5$ chocolates each. Test case $2$: They can divide $4$ chocolates such that both of them get $2$ chocolates each. Test case $3$: There is no way to divide $3$ chocolates so that they get equal number of chocolates. Test case $4$: They can divide $2$ chocolates such that both of them get $1$ chocolate each. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) for i in range(t): n = int(input()) if n % 2 == 0: print('Yes') else: print('No') ```
vfc_142957
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/PAR2", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n10\n4\n3\n2\n", "output": "Yes\nYes\nNo\nYes", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/842/B
Solve the following coding problem using the programming language python: Gleb ordered pizza home. When the courier delivered the pizza, he was very upset, because several pieces of sausage lay on the crust, and he does not really like the crust. The pizza is a circle of radius r and center at the origin. Pizza consists of the main part — circle of radius r - d with center at the origin, and crust around the main part of the width d. Pieces of sausage are also circles. The radius of the i -th piece of the sausage is r_{i}, and the center is given as a pair (x_{i}, y_{i}). Gleb asks you to help determine the number of pieces of sausage caught on the crust. A piece of sausage got on the crust, if it completely lies on the crust. -----Input----- First string contains two integer numbers r and d (0 ≤ d < r ≤ 500) — the radius of pizza and the width of crust. Next line contains one integer number n — the number of pieces of sausage (1 ≤ n ≤ 10^5). Each of next n lines contains three integer numbers x_{i}, y_{i} and r_{i} ( - 500 ≤ x_{i}, y_{i} ≤ 500, 0 ≤ r_{i} ≤ 500), where x_{i} and y_{i} are coordinates of the center of i-th peace of sausage, r_{i} — radius of i-th peace of sausage. -----Output----- Output the number of pieces of sausage that lay on the crust. -----Examples----- Input 8 4 7 7 8 1 -7 3 2 0 2 1 0 -2 2 -3 -3 1 0 6 2 5 3 1 Output 2 Input 10 8 4 0 0 9 0 0 10 1 0 1 1 0 2 Output 0 -----Note----- Below is a picture explaining the first example. Circles of green color denote pieces of sausage lying on the crust. [Image] The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python stroka = input() k = '' for i in range(0, len(stroka)): if stroka[i] == ' ': R = int(k) k = '' else: k += stroka[i] d = int(k) n = int(input()) x = [] y = [] r = [] answer = 0 for i in range(0, n): stroka = input() k = '' count = 1 for i in range(0, len(stroka)): if stroka[i] == ' ': if count == 1: x.append(int(k)) else: y.append(int(k)) count += 1 k = '' else: k += stroka[i] r.append(int(k)) for i in range(0, n): line = (x[i] ** 2 + y[i] ** 2) ** 0.5 if line - r[i] >= R - d and line + r[i] <= R: answer += 1 print(answer) ```
vfc_142965
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/842/B", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "8 4\n7\n7 8 1\n-7 3 2\n0 2 1\n0 -2 2\n-3 -3 1\n0 6 2\n5 3 1", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "10 8\n4\n0 0 9\n0 0 10\n1 0 1\n1 0 2", "output": "0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 0\n1\n1 1 0\n", "output": "0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 0\n5\n3 0 0\n0 3 0\n-3 0 0\n0 -3 0\n3 0 1\n", "output": "4\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 3\n1\n500 500 10\n", "output": "0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "9 0\n5\n8 1 0\n8 2 0\n8 3 0\n-8 3 0\n-8 2 0\n", "output": "0\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Example Input anagram grandmother Output 4 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python s1 = input() s2 = input() cA = ord('a') s1 = [ord(e) - cA for e in s1] l1 = len(s1) s2 = [ord(e) - cA for e in s2] l2 = len(s2) ans = 0 for l in range(1, min(l1, l2) + 1): s = set() use = [0] * 26 for i in range(l - 1): use[s1[i]] += 1 for i in range(l - 1, l1): use[s1[i]] += 1 s.add(tuple(use)) use[s1[i - l + 1]] -= 1 cnt = [0] * 26 for i in range(l - 1): cnt[s2[i]] += 1 for i in range(l - 1, l2): cnt[s2[i]] += 1 if tuple(cnt) in s: ans = l break cnt[s2[i - l + 1]] -= 1 print(ans) ```
vfc_142969
{ "difficulty": "unknown_difficulty", "memory_limit": "268.435456 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "10.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "anagram\ngrandmosher", "output": "4\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "anbgram\ngrandmosher", "output": "3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "anbfram\ngrandmosher", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "narfamb\nreoahmodsrg", "output": "1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/439/E
Solve the following coding problem using the programming language python: Today is Devu's birthday. For celebrating the occasion, he bought n sweets from the nearby market. He has invited his f friends. He would like to distribute the sweets among them. As he is a nice guy and the occasion is great, he doesn't want any friend to be sad, so he would ensure to give at least one sweet to each friend. He wants to celebrate it in a unique style, so he would like to ensure following condition for the distribution of sweets. Assume that he has distributed n sweets to his friends such that i^{th} friend is given a_{i} sweets. He wants to make sure that there should not be any positive integer x > 1, which divides every a_{i}. Please find the number of ways he can distribute sweets to his friends in the required way. Note that the order of distribution is important, for example [1, 2] and [2, 1] are distinct distributions. As the answer could be very large, output answer modulo 1000000007 (10^9 + 7). To make the problem more interesting, you are given q queries. Each query contains an n, f pair. For each query please output the required number of ways modulo 1000000007 (10^9 + 7). -----Input----- The first line contains an integer q representing the number of queries (1 ≤ q ≤ 10^5). Each of the next q lines contains two space space-separated integers n, f (1 ≤ f ≤ n ≤ 10^5). -----Output----- For each query, output a single integer in a line corresponding to the answer of each query. -----Examples----- Input 5 6 2 7 2 6 3 6 4 7 4 Output 2 6 9 10 20 -----Note----- For first query: n = 6, f = 2. Possible partitions are [1, 5] and [5, 1]. For second query: n = 7, f = 2. Possible partitions are [1, 6] and [2, 5] and [3, 4] and [4, 3] and [5, 3] and [6, 1]. So in total there are 6 possible ways of partitioning. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import itertools import functools import operator N = 100001 P = 10 ** 9 + 7 fact = [1] for i in range(1, N): fact.append(fact[-1] * i % P) inv = [0, 1] for i in range(2, N): inv.append(P - P // i * inv[P % i] % P) inv_fact = [1] for i in range(1, N): inv_fact.append(inv_fact[-1] * inv[i] % P) least_div = [-1] * N primes = [] for p in range(2, N): if least_div[p] == -1: primes.append(p) least_div[p] = p ldiv = least_div[p] for mult in primes: mark = mult * p if mult > ldiv or mark >= N: break least_div[mark] = mult t = int(input()) def powerset(iterable): s = list(iterable) return itertools.chain.from_iterable((itertools.combinations(s, r) for r in range(len(s) + 1))) @functools.lru_cache(maxsize=None) def factor(n): ret = [] while n != 1: tmp = least_div[n] if not (ret and ret[-1] == tmp): ret.append(tmp) n //= tmp return ret @functools.lru_cache(maxsize=None) def solve(n, k): divs = factor(n) ret = 0 for subset in powerset(divs): div = functools.reduce(operator.mul, subset, 1) if n // div >= k: tmp = fact[n // div - 1] * inv_fact[n // div - k] % P * inv_fact[k - 1] % P ret += (-1 if len(subset) % 2 == 1 else 1) * tmp ret %= P return ret for _ in range(t): (n, k) = map(int, input().split()) print(solve(n, k)) ```
vfc_142973
{ "difficulty": "hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/439/E", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5\n6 2\n7 2\n6 3\n6 4\n7 4\n", "output": "2\n6\n9\n10\n20\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/COOK22/problems/LUCKYBAL
Solve the following coding problem using the programming language python: A Little Elephant from the Zoo of Lviv likes lucky strings, i.e., the strings that consist only of the lucky digits 4 and 7. The Little Elephant calls some string T of the length M balanced if there exists at least one integer X (1 ≤ X ≤ M) such that the number of digits 4 in the substring T[1, X - 1] is equal to the number of digits 7 in the substring T[X, M]. For example, the string S = 7477447 is balanced since S[1, 4] = 7477 has 1 digit 4 and S[5, 7] = 447 has 1 digit 7. On the other hand, one can verify that the string S = 7 is not balanced. The Little Elephant has the string S of the length N. He wants to know the number of such pairs of integers (L; R) that 1 ≤ L ≤ R ≤ N and the substring S[L, R] is balanced. Help him to find this number. Notes. Let S be some lucky string. Then - |S| denotes the length of the string S; - S[i] (1 ≤ i ≤ |S|) denotes the ith character of S (the numeration of characters starts from 1); - S[L, R] (1 ≤ L ≤ R ≤ |S|) denotes the string with the following sequence of characters: S[L], S[L + 1], ..., S[R], and is called a substring of S. For L > R we mean by S[L, R] an empty string. -----Input----- The first line of the input file contains a single integer T, the number of test cases. Each of the following T lines contains one string, the string S for the corresponding test case. The input file does not contain any whitespaces. -----Output----- For each test case output a single line containing the answer for this test case. -----Constraints----- 1 ≤ T ≤ 10 1 ≤ |S| ≤ 100000 S consists only of the lucky digits 4 and 7. -----Example----- Input: 4 47 74 477 4747477 Output: 2 2 3 23 -----Explanation----- In the first test case balance substrings are S[1, 1] = 4 and S[1, 2] = 47. In the second test case balance substrings are S[2, 2] = 4 and S[1, 2] = 74. Unfortunately, we can't provide you with the explanations of the third and the fourth test cases. You should figure it out by yourself. Please, don't ask about this in comments. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python x = eval(input()) for x in range(0, x): ans = 0 d = input() a = 0 cont = 0 for i in range(0, len(d)): a += len(d) - i if d[i] == '7': ans += 1 + cont cont += 1 else: cont = 0 ans = a - ans print(ans) ```
vfc_142977
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/COOK22/problems/LUCKYBAL", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n47\n74\n477\n4747477\n\n\n", "output": "2\n2\n3\n23\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.hackerrank.com/challenges/bowling-pins/problem
Solve the following coding problem using the programming language python: Bowling is a sport in which a player rolls a bowling ball towards a group of pins, the target being to knock down the pins at the end of a lane. In this challenge, the rules of the game are slightly modified. Now, there are a given number of pins, and the pins are arranged in a horizontal line instead of a triangular formation. Two players have to play this game, taking alternate turns. Whoever knocks down the last pin(s) will be declared the winner. You are playing this game with your friend, and both of you have become proficient at it. You can knock down any single pin, or any two adjacent pins at one throw of a bowling ball, however, these are the only moves that you can perform. Some moves have already been played. Suddenly, you realize that it is possible to determine whether this game can be won or not, assuming optimal play. And luckily it's your turn right now. A configuration is represented by a string consisting of the letters X and I, where: I represents a position containing a pin. X represents a position where a pin has been knocked down. An example of such a configuration is shown in the image below. Here, the number of pins is $13$, and the $2^{\text{nd}}$ pin has already been knocked down. Its representation will be IXIIIIIIIIIII. Complete the function isWinning that takes the number of pins and the configuration of the pins as input, and return WIN or LOSE based on whether or not you will win. Given the current configuration of the pins, if both of you play optimally, determine whether you will win this game or not. Note A player has to knock down at least one pin in his turn. Both players play optimally. Input Format The first line contains an integer, $\boldsymbol{\boldsymbol{t}}$, the number of test cases. Then $\boldsymbol{\boldsymbol{t}}$ test cases follow. For each test case, the first line contains a single integer $n$, denoting the number of pins. The second line contains a string of $n$ letters, where each letter is either I or X. Constraints $1\leq t\leq1000$ $1\leq n\leq300$ Each letter of the string (representing the configuration) is either I or X. There will be at least one I in the string. Output Format For each test case, print a single line containing WIN if you will win this game, otherwise LOSE. Sample Input 0 4 4 IXXI 4 XIIX 5 IIXII 5 IIIII Sample Output 0 LOSE WIN LOSE WIN Explanation 0 Test Case 1: As the $2$ pins are not adjacent, they can't be knocked down in a single turn. Therefore, you can only knock down one of the two pins. Then, in the next turn, your friend will knock down the last pin. Test Case 2: You can knock down both pins in a single turn. Test Case 3: You can knock down one or two pins from either side. Your friend can just copy your move on the other side and will be able to get the last move, hence win the game. Test Case 4: You can knock the middle pin, thus resulting in the configuration IIXII for your friend. Now, this configuration is the same as the previous test case. The difference is that now it is your friend's turn and you can copy his shot on the other side. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def game_from(board: str) -> list: game = [] count = 0 for c in board: if c == 'I': count += 1 elif count > 0: game.append(count) count = 0 if count > 0: game.append(count) return game def moves_for(n: int, hits: [int]) -> [list]: moves = [] for hit in hits: left = 0 right = n - hit while left <= right: if left == 0 and right == 0: continue elif right < 1 <= left: moves.append([left]) elif left < 1 <= right: moves.append([right]) else: moves.append([left, right]) left += 1 right -= 1 return moves def mex_of(s: set) -> int: mex = 0 while mex in s: mex += 1 return mex def g_of(n: int, cache: dict) -> int: if n < 3: return n else: result = cache.get(n, None) if result is not None: return result moves = moves_for(n, [1, 2]) s = set() for move in moves: if len(move) == 1: s.add(g_of(move[0], cache)) else: s.add(g_of(move[0], cache) ^ g_of(move[1], cache)) result = mex_of(s) cache[n] = result return result def winner(board: str, cache: dict) -> str: game = game_from(board) g = 0 for i in game: g ^= g_of(i, cache) return 'WIN' if g != 0 else 'LOSE' n = int(input().strip()) c = {} for i in range(n): input() g = list(input().strip()) print(winner(g, c)) ```
vfc_142981
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.hackerrank.com/challenges/bowling-pins/problem", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n4\nIXXI\n4\nXIIX\n5\nIIXII\n5\nIIIII\n", "output": "LOSE\nWIN\nLOSE\nWIN\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/THEATRE
Solve the following coding problem using the programming language python: Chef's friend Alex runs a movie theatre. Due to the increasing number of platforms for watching movies online, his business is not running well. As a friend, Alex asked Chef to help him maximise his profits. Since Chef is a busy person, he needs your help to support his friend Alex. Alex's theatre has four showtimes: 12 PM, 3 PM, 6 PM and 9 PM. He has four movies which he would like to play ― let's call them A, B, C and D. Each of these movies must be played exactly once and all four must be played at different showtimes. For each showtime, the price of a ticket must be one of the following: Rs 25, Rs 50, Rs 75 or Rs 100. The prices of tickets for different showtimes must also be different. Through his app, Alex receives various requests from his customers. Each request has the form "I want to watch this movie at this showtime". Let's assume that the number of people who come to watch a movie at a given showtime is the same as the number of requests for that movie at that showtime. It is not necessary to accommodate everyone's requests ― Alex just wants to earn the maximum amount of money. There is no restriction on the capacity of the theatre. However, for each movie that is not watched by anyone, Alex would suffer a loss of Rs 100 (deducted from the profit). You are given $N$ requests Alex received during one day. Find the maximum amount of money he can earn on that day by choosing when to play which movies and with which prices. -----Input----- - The first line of the input contains a single integer $T$ denoting the number of test cases. The description of $T$ test cases follows. - The first line of each test case contains a single integer $N$. - $N$ lines follow. Each of these lines contains a character $m$, followed by a space and an integer $t$, describing a request to see the movie $m$ at the showtime $t$. -----Output----- For each test case, print a single line containing one integer ― the maximum profit Alex can earn (possibly negative). Finally, print a line containing one integer ― the total profit over all test cases, i.e. over $T$ days. -----Constraints----- - $1 \le T \le 150$ - $0 \le N \le 100$ - $m$ is 'A', 'B', 'C' or 'D' - $t$ is $12$, $3$, $6$ or $9$ -----Subtasks----- Subtask #1 (30 points): it is possible to fulfill all requests Subtask #2 (70 points): original constraints -----Example Input----- 5 12 A 3 B 12 C 6 A 9 B 12 C 12 D 3 B 9 D 3 B 12 B 9 C 6 7 A 9 A 9 B 6 C 3 D 12 A 9 B 6 2 A 9 B 6 1 D 12 0 -----Example Output----- 575 525 -25 -200 -400 475 -----Explanation----- Example case 1: The following table shows the number of people that want to watch the movies at the given showtimes: 12 3 6 9 A 0 1 0 1 B 3 0 0 2 C 1 0 2 0 D 0 2 0 0 The maximum number of requests was sent for movie B at 12 PM. Therefore, we play this movie at this time and the tickets cost Rs 100. Next, we play movie D at 3 PM with ticket price Rs 75 and movie C at 6 PM with ticket price Rs 50. Finally, we have a slot for 9 PM and the only movie we can play at that time now is movie A, with ticket price Rs 25. The total profit is $3 \cdot 100 + 2 \cdot 75 + 2 \cdot 50 + 1 \cdot 25 = 300 + 150 + 100 + 25 = 575$. Since each movie was watched by at least one person, there is no additional loss. Example case 2: Just like above, we show the requests in a table: 12 3 6 9 A 0 0 0 3 B 0 0 2 0 C 0 1 0 0 D 1 0 0 0 The optimal solution is to play movie A at 9 PM, movie B at 6 PM, movie C at 3 PM and movie D at 12 PM, with decreasing ticket prices in this order. The profit is $3 \cdot 100 + 2 \cdot 75 + 1 \cdot 50 + 1 \cdot 25 = 300+150+50+25 = 525$. Example case 3: Again, we show the requests in a table: 12 3 6 9 A 0 0 0 1 B 0 0 1 0 C 0 0 0 0 D 0 0 0 0 The optimal solution is to play movie A at 9 PM with ticket price Rs 100, movie B at 6 PM with ticket price Rs 75 and the remaining two movies in any order at 12 PM and 3 PM ― either way, there will be nobody watching them. We earn $1 \cdot 100 + 1 \cdot 75 = 175$, but we have to deduct Rs 200, so the resulting profit is $175 - 200 = -25$. Example case 4: The optimal solution is to play movie D at 12 PM; the other three movies go unattended. We have to deduct Rs 300, so the profit is $1 \cdot 100 - 300 = -200$. Example case 5: Since there are no requests for any movie at any time, all movies go unattended and Alex just suffers a loss of Rs 400. The total profit for all 5 days is $575+525-25-200-400 = 475$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python ans = 0 for _ in range(int(input())): n = int(input()) (A, B, C, D) = ([0] * 4, [0] * 4, [0] * 4, [0] * 4) for i in range(n): (m, t) = map(str, input().split()) if m == 'A': if t == '12': A[0] += 1 elif t == '3': A[1] += 1 elif t == '6': A[2] += 1 else: A[3] += 1 elif m == 'B': if t == '12': B[0] += 1 elif t == '3': B[1] += 1 elif t == '6': B[2] += 1 else: B[3] += 1 elif m == 'C': if t == '12': C[0] += 1 elif t == '3': C[1] += 1 elif t == '6': C[2] += 1 else: C[3] += 1 elif t == '12': D[0] += 1 elif t == '3': D[1] += 1 elif t == '6': D[2] += 1 else: D[3] += 1 ans1 = -400 for i in range(4): for j in range(4): if j == i: continue for k in range(4): if k == i or k == j: continue for l in range(4): if l == i or l == j or l == k: continue din = [A[i], B[j], C[k], D[l]] din.sort(reverse=True) count = 100 * din[0] + 75 * din[1] + 50 * din[2] + 25 * din[3] count -= 100 * din.count(0) if count > ans1: ans1 = count print(ans1) ans += ans1 print(ans) ```
vfc_142986
{ "difficulty": "medium_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/THEATRE", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5\n12\nA 3\nB 12\nC 6\nA 9\nB 12\nC 12\nD 3\nB 9\nD 3\nB 12\nB 9\nC 6\n7\nA 9\nA 9\nB 6\nC 3\nD 12\nA 9\nB 6\n2\nA 9\nB 6\n1\nD 12\n0\n", "output": "575\n525\n-25\n-200\n-400\n475\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1547/D
Solve the following coding problem using the programming language python: A sequence of non-negative integers $a_1, a_2, \dots, a_n$ is called growing if for all $i$ from $1$ to $n - 1$ all ones (of binary representation) in $a_i$ are in the places of ones (of binary representation) in $a_{i + 1}$ (in other words, $a_i \:\&\: a_{i + 1} = a_i$, where $\&$ denotes bitwise AND ). If $n = 1$ then the sequence is considered growing as well. For example, the following four sequences are growing: $[2, 3, 15, 175]$ — in binary it's $[10_2, 11_2, 1111_2, 10101111_2]$; $[5]$ — in binary it's $[101_2]$; $[1, 3, 7, 15]$ — in binary it's $[1_2, 11_2, 111_2, 1111_2]$; $[0, 0, 0]$ — in binary it's $[0_2, 0_2, 0_2]$. The following three sequences are non-growing: $[3, 4, 5]$ — in binary it's $[11_2, 100_2, 101_2]$; $[5, 4, 3]$ — in binary it's $[101_2, 100_2, 011_2]$; $[1, 2, 4, 8]$ — in binary it's $[0001_2, 0010_2, 0100_2, 1000_2]$. Consider two sequences of non-negative integers $x_1, x_2, \dots, x_n$ and $y_1, y_2, \dots, y_n$. Let's call this pair of sequences co-growing if the sequence $x_1 \oplus y_1, x_2 \oplus y_2, \dots, x_n \oplus y_n$ is growing where $\oplus$ denotes bitwise XOR . You are given a sequence of integers $x_1, x_2, \dots, x_n$. Find the lexicographically minimal sequence $y_1, y_2, \dots, y_n$ such that sequences $x_i$ and $y_i$ are co-growing. The sequence $a_1, a_2, \dots, a_n$ is lexicographically smaller than the sequence $b_1, b_2, \dots, b_n$ if there exists $1 \le k \le n$ such that $a_i = b_i$ for any $1 \le i < k$ but $a_k < b_k$. -----Input----- The first line contains an integer $t$ ($1 \le t \le 10^4$). Then $t$ test cases follow. The first line of each test case contains an integer $n$ ($1 \le n \le 2 \cdot 10^5$) — length of the sequence $x_i$. The second line contains $n$ integers $x_1, x_2, \dots, x_n$ ($0 \le x_i < 2^{30}$) — elements of the sequence $x_i$. It is guaranteed that the sum of $n$ overall all test cases doesn't exceed $2 \cdot 10^5$. -----Output----- For each test case, print $n$ integers $y_1, y_2, \dots, y_n$ ($0 \le y_i < 2^{30}$) — lexicographically minimal sequence such that such that it's co-growing with given sequence $x_i$. -----Examples----- Input 5 4 1 3 7 15 4 1 2 4 8 5 1 2 3 4 5 4 11 13 15 1 1 0 Output 0 0 0 0 0 1 3 7 0 1 0 3 2 0 2 0 14 0 -----Note----- None The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def main(): n = int(input()) x = list(map(int, input().split())) y = [0] for i in range(1, n): newx = x[i - 1] | x[i] y.append(newx ^ x[i]) x[i] = newx print(*y) return t = int(input()) for _ in range(t): main() ```
vfc_142990
{ "difficulty": "easy", "memory_limit": "512 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1547/D", "time_limit": "2 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5\n4\n1 3 7 15\n4\n1 2 4 8\n5\n1 2 3 4 5\n4\n11 13 15 1\n1\n0\n", "output": "0 0 0 0 \n0 1 3 7 \n0 1 0 3 2 \n0 2 0 14 \n0 \n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n4\n1 3 7 15\n4\n1 2 4 5\n5\n1 2 3 4 5\n4\n11 13 15 1\n1\n0\n", "output": "0 0 0 0\n0 1 3 2\n0 1 0 3 2\n0 2 0 14\n0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n4\n1 3 7 15\n4\n1 2 4 5\n5\n1 2 0 4 5\n4\n11 13 15 1\n1\n0\n", "output": "0 0 0 0\n0 1 3 2\n0 1 3 3 2\n0 2 0 14\n0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n4\n1 3 7 15\n4\n1 2 4 5\n5\n1 0 0 4 5\n4\n11 13 15 1\n1\n0\n", "output": "0 0 0 0\n0 1 3 2\n0 1 1 1 0\n0 2 0 14\n0\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/132/A
Solve the following coding problem using the programming language python: INTERCAL is the oldest of esoteric programming languages. One of its many weird features is the method of character-based output, known as Turing Tape method. It converts an array of unsigned 8-bit integers into a sequence of characters to print, using the following method. The integers of the array are processed one by one, starting from the first. Processing i-th element of the array is done in three steps: 1. The 8-bit binary notation of the ASCII-code of the previous printed character is reversed. When the first element of the array is processed, the result of this step is considered to be 0. 2. The i-th element of the array is subtracted from the result of the previous step modulo 256. 3. The binary notation of the result of the previous step is reversed again to produce ASCII-code of the i-th character to be printed. You are given the text printed using this method. Restore the array used to produce this text. Input The input will consist of a single line text which contains the message printed using the described method. String text will contain between 1 and 100 characters, inclusive. ASCII-code of each character of text will be between 32 (space) and 126 (tilde), inclusive. Output Output the initial array, which was used to produce text, one integer per line. Examples Input Hello, World! Output 238 108 112 0 64 194 48 26 244 168 24 16 162 Note Let's have a closer look at the beginning of the example. The first character is "H" with ASCII-code 72 = 010010002. Its reverse is 000100102 = 18, and this number should become the result of the second step of processing. The result of the first step is considered to be 0, so the first element of the array has to be (0 - 18) mod 256 = 238, where a mod b is the remainder of division of a by b. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python ans = 0 for i in input(): t = bin(ord(i))[2:][::-1] k = int(t + '0' * (8 - len(t)), 2) print((ans - k) % 256) ans = k ```
vfc_142995
{ "difficulty": "easy", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/132/A", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "o2^\"t\n", "output": "10\n170\n210\n54\n22\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "w7zw3)Vw&h\n", "output": "18\n2\n142\n112\n34\n56\n42\n124\n138\n78\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/number-of-open-doors1552/1
Solve the following coding problem using the programming language python: Consider a long alley with a N number of doors on one side. All the doors are closed initially. You move to and fro in the alley changing the states of the doors as follows: you open a door that is already closed and you close a door that is already opened. You start at one end go on altering the state of the doors till you reach the other end and then you come back and start altering the states of the doors again. In the first go, you alter the states of doors numbered 1, 2, 3, , n. In the second go, you alter the states of doors numbered 2, 4, 6 In the third go, you alter the states of doors numbered 3, 6, 9 You continue this till the Nth go in which you alter the state of the door numbered N. You have to find the number of open doors at the end of the procedure. Example 1: Input: N = 2 Output: 1 Explanation: Initially all doors are closed. After 1st go, all doors will be opened. After 2nd go second door will be closed. So, Only 1st door will remain Open. Example 2: Input: N = 4 Output: 2 Explanation: Following the sequence 4 times, we can see that only 1st and 4th doors will remain open. Your Task: You don't need to read input or print anything. Your task is to complete the function noOfOpenDoors() which takes an Integer N as input and returns the answer. Expected Time Complexity: O(√N) Expected Auxiliary Space: O(1) Constraints: 1 <= N <= 10^{12} Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def noOfOpenDoors(self, N): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from math import sqrt class Solution: def noOfOpenDoors(self, N): return int(sqrt(N)) ```
vfc_143001
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/number-of-open-doors1552/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 2", "output": "1", "type": "stdin_stdout" }, { "fn_name": null, "input": "N = 4", "output": "2", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/ishaan-loves-chocolates2156/1
Solve the following coding problem using the programming language python: As we know, Ishaan has a love for chocolates. He has bought a huge chocolate bar that contains N chocolate squares. Each of the squares has a tastiness level which is denoted by an array A[]. Ishaan can eat the first or the last square of the chocolate at once. Ishaan has a sister who loves chocolates too and she demands the last chocolate square. Now, Ishaan being greedy eats the more tasty square first. Determine the tastiness level of the square which his sister gets. Example 1: Input : arr[ ] = {5, 3, 1, 6, 9} Output : 1 Explanation: Initially: 5 3 1 6 9 In first step: 5 3 1 6 In Second step: 5 3 1 In Third step: 3 1 In Fourth step: 1 Return 1 Example 2: Input : arr[ ] = {5, 9, 2, 6} Output : 2 Your Task: This is a function problem. The input is already taken care of by the driver code. You only need to complete the function chocolates() that takes an array (arr), sizeOfArray (n) and return the tastiness level of the square which his sister gets. The driver code takes care of the printing. Expected Time Complexity: O(N). Expected Auxiliary Space: O(1). Constraints : 1 ≤ N ≤ 10^{5} 1 ≤ A[i] ≤ 10^{9} Write your solution by modifying this code: ```python from typing import List class Solution: def chocolates(self, n : int, arr : List[int]) -> int: # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from typing import List class Solution: def chocolates(self, n: int, arr: List[int]) -> int: return min(arr) ```
vfc_143002
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/ishaan-loves-chocolates2156/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "arr[ ] = {5, 3, 1, 6, 9}", "output": "1", "type": "stdin_stdout" }, { "fn_name": null, "input": "arr[ ] = {5, 9, 2, 6}", "output": "2", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/234ca3b438298fb04befd5abe7fbd98c006d4884/1
Solve the following coding problem using the programming language python: Geeks Island is represented by an N * M matrix mat. The island is touched by the Indian Ocean from the top and left edges and the Arabian Sea from the right and bottom edges. Each element of the matrix represents the height of the cell. Due to the rainy season, the island receives a lot of rainfall, and the water can flow in four directions(up, down, left, or right) from one cell to another one with height equal or lower. You need to find the number of cells from where water can flow to both the Indian Ocean and the Arabian Sea. Example 1: Input: N = 5, M = 5 mat[][] = {{1, 3, 3, 2, 4}, {4, 5, 6, 4, 4}, {2, 4, 5, 3, 1}, {6, 7, 1, 4, 5}, {6, 1, 1, 3, 4}} Output: 8 Explanation: Indian ~ ~ ~ ~ ~ Ocean ~ 1 3 3 2 (4) * ~ 4 5 (6) (4) (4) * ~ 2 4 (5) 3 1 * ~ (6) (7) 1 4 5 * ~ (6) 1 1 3 4 * * * * * * Arabian Sea Water can flow to both ocean and sea from the cells denoted by parantheses().For example at index(1,2), the height of that island is 6. If a water drop falls on that island, water can flow to up direction(as 3<=6) and reach to Indian Ocean. ALso, water can flow to right direction(as 6>=4>=4) and reach to Arabian Sea. Example 2: Input: N = 2, M = 3 mat[][] = {{1, 1, 1}, {1, 1, 1}} Output: 6 Explanation: Water can flow from all cells to both Indian Ocean and Arabian Sea as the height of all islands are same. Your Task: Your task is to complete the function water_flow() which takes an integer array mat, integer N and integer M as the input parameter and returns an integer, denoting the number of cells from which water can to both ocean and sea. Expected Time Complexity : O(N*M) Expected Auxiliary Space : O(N*M) Constraints: 1 <= N, M <= 10^{3} 1 <= mat[i][j] <= 10^{6} Write your solution by modifying this code: ```python #User function Template for python3 class Solution(): def water_flow(self, mat, n, m): #your code goes here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def water_flow(self, grid, n, m): def dfs(i, j, ref_set, prev): if i < 0 or j < 0 or i >= n or (j >= m) or (grid[i][j] < prev) or ((i, j) in ref_set): return 0 ref_set.add((i, j)) dfs(i + 1, j, ref_set, grid[i][j]) dfs(i - 1, j, ref_set, grid[i][j]) dfs(i, j + 1, ref_set, grid[i][j]) dfs(i, j - 1, ref_set, grid[i][j]) n = len(grid) m = len(grid[0]) pacific = set() atlantic = set() for i in range(n): dfs(i, 0, pacific, grid[i][0]) dfs(i, m - 1, atlantic, grid[i][m - 1]) for i in range(m): dfs(0, i, pacific, grid[0][i]) dfs(n - 1, i, atlantic, grid[n - 1][i]) common_list = set(pacific).intersection(atlantic) return len(common_list) ```
vfc_143003
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/234ca3b438298fb04befd5abe7fbd98c006d4884/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 5, M = 5\r\nmat[][] = {{1, 3, 3, 2, 4},\r\n {4, 5, 6, 4, 4},\r\n {2, 4, 5, 3, 1},\r\n {6, 7, 1, 4, 5},\r\n {6, 1, 1, 3, 4}}", "output": "8", "type": "stdin_stdout" }, { "fn_name": null, "input": "N = 2, M = 3\r\nmat[][] = {{1, 1, 1},\r\n {1, 1, 1}}", "output": "6", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/BARRAY
Solve the following coding problem using the programming language python: You're given an array A of N integers. You need to find the minimum cost of creating another array B of N integers with the following properties B_{i} ≥ 0 for each 1 ≤ i ≤ N The GCD of adjacent elements of B is equal to 1, i.e, \gcd(B_{i}, B_{i+1}) = 1 for each 1 ≤ i < N The cost of creating B is defined as follows: \sum_{i=1}^{N} 2^{|A_{i} - B_{i} |} Find the minimum possible cost to create the array B. Since the answer can be huge print it modulo 10^{9}+7 Note: You need to minimize the value of total cost of creating the array B, and then print this minimum value modulo 10^{9} + 7. For example, suppose there is a way to create the required B with a cost of 500, and another way to do it with a cost of 10^{9} + 7 (which is 0 \pmod {10^{9} + 7}). The output in this case would be 500 and not 0. ------ Input Format ------ - The first line of input will contain a single integer T, denoting the number of test cases. - The first line of each test case contains an integer N - the length of the array A - The second line of each test case contains N space-separated integers A_{1},A_{2},\ldots,A_{N} ------ Output Format ------ For each test case, output on a new line the minimum cost of creating the array B, modulo 10^{9} + 7. ------ Constraints ------ $1 ≤ T ≤ 150$ $1 ≤ N ≤ 10^{4}$ $1 ≤ A_{i} ≤ 10^{6}$ - The sum of $N$ over all test cases won't exceed $10^{4}$. ----- Sample Input 1 ------ 3 3 15 16 19 2 5 10 7 9 15 7 19 10 7 1 ----- Sample Output 1 ------ 3 3 8 ----- explanation 1 ------ Test case $1$: The given input already satisfies all the conditions, hence we can take $B = A$ with a cost of $2^{0} + 2^{0} + 2^{0} = 3$. Test case $2$: One optimal way is to choose $B$ as $ [ 5, 11 ] $, with a cost of $2^{0} + 2^{1} = 3$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from math import inf from collections import * import math, os, sys, heapq, bisect, random, threading from functools import lru_cache from itertools import * def inp(): return sys.stdin.readline().rstrip('\r\n') def out(var): sys.stdout.write(str(var)) def inpu(): return int(inp()) def lis(): return list(map(int, inp().split())) def stringlis(): return list(map(str, inp().split())) def sep(): return map(int, inp().split()) def strsep(): return map(str, inp().split()) def fsep(): return map(float, inp().split()) (M, M1) = (1000000007, 998244353) def main(): how_much_noob_I_am = 1 how_much_noob_I_am = inpu() for _ in range(how_much_noob_I_am): n = inpu() arr = lis() dp = [[inf] * 21 for i in range(n)] for i in range(-10, 11): dp[0][i] = 1 << abs(i) for i in range(1, n): for j in range(-10, 11): for k in range(-10, 11): if math.gcd(arr[i - 1] + j, arr[i] + k) == 1: dp[i][k] = min(dp[i][k], dp[i - 1][j] + (1 << abs(k))) % M ans = inf for i in range(-10, 11): ans = min(ans, dp[n - 1][i]) print(ans % M) main() ```
vfc_143004
{ "difficulty": "very_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/BARRAY", "time_limit": "1.5 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n3\n15 16 19\n2\n5 10\n7\n9 15 7 19 10 7 1\n", "output": "3\n3\n8", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/PTRN2021/problems/ITGUY55
Solve the following coding problem using the programming language python: The chef is trying to decode some pattern problems, Chef wants your help to code it. Chef has one number K to form a new pattern. Help the chef to code this pattern problem. -----Input:----- - First-line will contain $T$, the number of test cases. Then the test cases follow. - Each test case contains a single line of input, one integer $K$. -----Output:----- For each test case, output as the pattern. -----Constraints----- - $1 \leq T \leq 100$ - $1 \leq K \leq 100$ -----Sample Input:----- 4 1 2 3 4 -----Sample Output:----- 1 10 10 101 101 101 1010 1010 1010 1010 -----EXPLANATION:----- No need, else pattern can be decode easily. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for _ in range(int(input())): n = int(input()) num = '' val = 1 for i in range(n): num += str(val) if val == 1: val = 0 else: val = 1 for i in range(n): print(num) ```
vfc_143008
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/PTRN2021/problems/ITGUY55", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n1\n2\n3\n4\n", "output": "1\n10\n10\n101\n101\n101\n1010\n1010\n1010\n1010\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/182/B
Solve the following coding problem using the programming language python: Vasya lives in a strange world. The year has n months and the i-th month has ai days. Vasya got a New Year present — the clock that shows not only the time, but also the date. The clock's face can display any number from 1 to d. It is guaranteed that ai ≤ d for all i from 1 to n. The clock does not keep information about the current month, so when a new day comes, it simply increases the current day number by one. The clock cannot display number d + 1, so after day number d it shows day 1 (the current day counter resets). The mechanism of the clock allows you to increase the day number by one manually. When you execute this operation, day d is also followed by day 1. Vasya begins each day checking the day number on the clock. If the day number on the clock does not match the actual day number in the current month, then Vasya manually increases it by one. Vasya is persistent and repeats this operation until the day number on the clock matches the actual number of the current day in the current month. A year passed and Vasya wonders how many times he manually increased the day number by one, from the first day of the first month to the last day of the n-th month inclusive, considering that on the first day of the first month the clock display showed day 1. Input The first line contains the single number d — the maximum number of the day that Vasya's clock can show (1 ≤ d ≤ 106). The second line contains a single integer n — the number of months in the year (1 ≤ n ≤ 2000). The third line contains n space-separated integers: ai (1 ≤ ai ≤ d) — the number of days in each month in the order in which they follow, starting from the first one. Output Print a single number — the number of times Vasya manually increased the day number by one throughout the last year. Examples Input 4 2 2 2 Output 2 Input 5 3 3 4 3 Output 3 Input 31 12 31 28 31 30 31 30 31 31 30 31 30 31 Output 7 Note In the first sample the situation is like this: * Day 1. Month 1. The clock shows 1. Vasya changes nothing. * Day 2. Month 1. The clock shows 2. Vasya changes nothing. * Day 1. Month 2. The clock shows 3. Vasya manually increases the day number by 1. After that the clock shows 4. Vasya increases the day number by 1 manually. After that the clock shows 1. * Day 2. Month 2. The clock shows 2. Vasya changes nothing. In total, Vasya manually changed the day number by 1 exactly 2 times. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python d = int(input()) n = int(input()) months = list(map(int, input().split())) changes = 0 for month in months[:-1]: changes += d - month print(changes) ```
vfc_143012
{ "difficulty": "easy", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/182/B", "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "102\n100\n31 22 59 16 11 56 81 4 19 31 8 72 4 92 18 7 13 12 62 40 34 67 40 23 96 4 90 28 3 18 54 49 10 71 73 79 69 7 41 75 59 13 2 78 72 6 95 33 52 97 7 86 57 94 12 93 19 94 59 28 5 96 46 102 2 101 57 85 53 69 72 39 14 75 8 16 10 57 26 4 85 18 89 84 48 93 54 21 78 6 67 35 11 78 91 91 97 15 8 32\n", "output": "5447", "type": "stdin_stdout" }, { "fn_name": null, "input": "10\n4\n8 7 1 5\n", "output": "14", "type": "stdin_stdout" }, { "fn_name": null, "input": "10\n5\n2 7 8 4 4\n", "output": "19", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Amer cabs has released a scheme through which a user gets a free drive when he shares a reference code with another Amer app user. Given N number of app users, output total number of free drives gained by all of them. Two same users cannot share reference code more than once. Input Format The first line contains the number of test cases T, T lines follow. Each line then contains an integer N, the total number of Amer App Users. Output Format Print the number of Free Drives for each test-case in a new line. Constraints 1 ≤ T ≤ 1000 0 < N < 10^6 SAMPLE INPUT 2 1 2 SAMPLE OUTPUT 0 1 Explanation Case 1 : Single user shares no reference code, hence 0 free drives. Case 2 : There are 2 app users, so reference code is shared once, hence 1 free drive. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t=eval(input()) while t : t-=1 n=eval(input()) if n==1 : print("0") else : print(n*(n-1)/2) ```
vfc_143016
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "340\n5277\n9302\n7274\n3\n5968\n1327\n255\n27\n5665\n8104\n138\n4051\n4168\n507\n7773\n2688\n3497\n4074\n1403\n3599\n2007\n7621\n3124\n1195\n7245\n1979\n3365\n6607\n4816\n9336\n3620\n1557\n3404\n5451\n3739\n2504\n1845\n5533\n8298\n2893\n7814\n2505\n9785\n4709\n7880\n6262\n5135\n2088\n9309\n7259\n9993\n325\n5683\n3843\n8631\n2554\n135\n5931\n8683\n4939\n9279\n5670\n5918\n8101\n6735\n9579\n9221\n8936\n1502\n7154\n9501\n3507\n1109\n15\n8440\n4164\n482\n7889\n6855\n6044\n1884\n5419\n7686\n8550\n7032\n1340\n5422\n1975\n7986\n1131\n5794\n247\n6364\n8961\n6118\n277\n6592\n9662\n742\n4596\n8228\n285\n4603\n8823\n7364\n6675\n3788\n4884\n9171\n5488\n481\n7774\n8890\n5235\n9766\n3120\n1504\n8435\n3902\n1418\n3542\n5314\n6077\n9460\n1417\n8205\n5155\n2637\n2477\n5447\n370\n6026\n9775\n1526\n460\n238\n5121\n6167\n5758\n1688\n1058\n5934\n6700\n1436\n6865\n3804\n288\n3560\n7785\n8735\n6534\n7788\n2801\n6775\n4814\n579\n4894\n9874\n60\n4075\n8597\n5959\n4255\n351\n3298\n7484\n3413\n1112\n9134\n2814\n5557\n8656\n288\n3204\n8154\n2034\n9479\n4865\n7647\n210\n5170\n8845\n4877\n2815\n3247\n341\n8823\n2835\n5888\n344\n2411\n9382\n6377\n5427\n9146\n4749\n7933\n3853\n3996\n3887\n2079\n9087\n1299\n9581\n925\n5102\n3223\n6688\n5981\n9098\n575\n6019\n9308\n626\n825\n4587\n2742\n8694\n5514\n2332\n4523\n2525\n6573\n8837\n6190\n4956\n7357\n1626\n2355\n1974\n8286\n5889\n6341\n9624\n6830\n9614\n7228\n7241\n3675\n1139\n2145\n3233\n5694\n976\n3461\n5287\n8498\n1323\n4980\n9572\n6725\n6169\n1022\n2156\n788\n1028\n4222\n3323\n685\n8784\n6727\n4531\n8262\n7759\n291\n5077\n9350\n3208\n559\n8294\n5805\n2279\n1776\n2284\n3330\n5743\n1444\n63\n2489\n9367\n2285\n556\n9440\n8091\n7779\n3208\n8575\n1253\n1630\n9026\n8342\n3310\n4403\n5292\n999\n8472\n8700\n3529\n5220\n9094\n7331\n5465\n4238\n7673\n6727\n7420\n7654\n5112\n2456\n5969\n3859\n8189\n5246\n4500\n5213\n5369\n6600\n8055\n4455\n2741\n387\n1515\n5751\n8916\n2758\n8769\n2770\n6516\n212\n9186\n6809\n4765\n6743\n2340\n7283\n5127\n8010\n7615\n3714\n128", "output": "13920726\n43258951\n26451901\n3\n17805528\n879801\n32385\n351\n16043280\n32833356\n9453\n8203275\n8684028\n128271\n30205878\n3611328\n6112756\n8296701\n983503\n6474601\n2013021\n29036010\n4878126\n713415\n26241390\n1957231\n5659930\n21822921\n11594520\n43575780\n6550390\n1211346\n5791906\n14853975\n6988191\n3133756\n1701090\n15304278\n34424253\n4183278\n30525391\n3136260\n47868220\n11084986\n31043260\n19603191\n13181545\n2178828\n43324086\n26342911\n49925028\n52650\n16145403\n7382403\n37242765\n3260181\n9045\n17585415\n37692903\n12194391\n43045281\n16071615\n17508403\n32809050\n22676745\n45873831\n42508810\n39921580\n1127251\n25586281\n45129750\n6147771\n614386\n105\n35612580\n8667366\n115921\n31114216\n23492085\n18261946\n1773786\n14680071\n29533455\n36546975\n24720996\n897130\n14696331\n1949325\n31884105\n639015\n16782321\n30381\n20247066\n40145280\n18711903\n38226\n21723936\n46672291\n274911\n10559310\n33845878\n40470\n10591503\n38918253\n27110566\n22274475\n7172578\n11924286\n42049035\n15056328\n115440\n30213651\n39511605\n13699995\n47682495\n4865640\n1130256\n35570395\n7610851\n1004653\n6271111\n14116641\n18461926\n44741070\n1003236\n33656910\n13284435\n3475566\n3066526\n14832181\n68265\n18153325\n47770425\n1163575\n105570\n28203\n13109760\n19012861\n16574403\n1423828\n559153\n17603211\n22441650\n1030330\n23560680\n7233306\n41328\n6335020\n30299220\n38145745\n21343311\n30322578\n3921400\n22946925\n11584891\n167331\n11973171\n48743001\n1770\n8300775\n36949906\n17751861\n9050385\n61425\n5436753\n28001386\n5822578\n617716\n41710411\n3957891\n15437346\n37458840\n41328\n5131206\n33239781\n2067561\n44920981\n11831680\n29234481\n21945\n13361865\n39112590\n11890126\n3960705\n5269881\n57970\n38918253\n4017195\n17331328\n58996\n2905255\n44006271\n20329876\n14723451\n41820085\n11274126\n31462278\n7420878\n7982010\n7552441\n2160081\n41282241\n843051\n45892990\n427350\n13012651\n5192253\n22361328\n17883190\n41382253\n165025\n18111171\n43314778\n195625\n339900\n10517991\n3757911\n37788471\n15199341\n2717946\n10226503\n3186550\n21598878\n39041866\n19154955\n12278490\n27059046\n1321125\n2771835\n1947351\n34324755\n17337216\n20100970\n46305876\n23321035\n46209691\n26118378\n26212420\n6750975\n648091\n2299440\n5224528\n16207971\n475800\n5987530\n13973541\n36103753\n874503\n12397710\n45806806\n22609450\n19025196\n521731\n2323090\n310078\n527878\n8910531\n5519503\n234270\n38574936\n22622901\n10262715\n34126191\n30097161\n42195\n12885426\n43706575\n5144028\n155961\n34391071\n16846110\n2595781\n1576200\n2607186\n5542785\n16488153\n1041846\n1953\n3096316\n43865661\n2609470\n154290\n44552080\n32728095\n30252531\n5144028\n36761025\n784378\n1327635\n40729825\n34790311\n5476395\n9691003\n13999986\n498501\n35883156\n37840650\n6225156\n13621590\n41345871\n26868115\n14930380\n8978203\n29433628\n22622901\n27524490\n29288031\n13063716\n3014740\n17811496\n7444011\n33525766\n13757635\n10122750\n13585078\n14410396\n21776700\n32437485\n9921285\n3755170\n74691\n1146855\n16534125\n39743070\n3801903\n38443296\n3835065\n21225870\n22366\n42186705\n23177836\n11350230\n22730653\n2736630\n26517403\n13140501\n32076045\n28990305\n6895041\n8128", "type": "stdin_stdout" }, { "fn_name": null, "input": "684\n2924\n7062\n7105\n4716\n9111\n6913\n1421\n9429\n2378\n4540\n9243\n544\n2898\n298\n6607\n4585\n1940\n8635\n5490\n8456\n4913\n5788\n9975\n9536\n1810\n5396\n103\n7349\n438\n1916\n1105\n8690\n6767\n1869\n8552\n4652\n5591\n890\n4494\n4695\n3567\n7945\n3752\n7690\n8886\n4504\n5411\n1329\n876\n4545\n3916\n3726\n6880\n2589\n1071\n673\n7623\n3758\n7011\n6770\n8221\n7584\n3703\n9545\n5208\n3814\n27\n1885\n2901\n7257\n7118\n1131\n7891\n2039\n583\n2322\n8795\n5609\n8056\n2317\n2297\n5321\n9108\n9506\n8223\n3548\n4147\n5201\n50\n4824\n2331\n6215\n8353\n7613\n8888\n7211\n4902\n1644\n8514\n8746\n1150\n6957\n2775\n2801\n705\n7333\n4312\n1893\n5041\n8378\n2429\n4348\n5446\n9650\n1634\n3118\n5368\n5782\n7897\n4718\n3867\n739\n2353\n5654\n5422\n1540\n9226\n1368\n9923\n8482\n5499\n6277\n1618\n6285\n6903\n3071\n855\n632\n6419\n7984\n3872\n4283\n743\n5635\n8399\n1161\n8327\n5278\n2041\n2071\n3012\n9996\n3817\n6295\n7854\n3741\n6561\n9505\n7582\n6681\n1459\n1786\n8048\n6386\n6868\n6482\n1364\n3679\n2062\n8727\n5029\n2978\n4338\n7258\n3052\n3992\n4397\n8902\n4226\n9739\n5255\n6818\n3284\n6469\n9793\n7608\n4060\n7820\n1679\n1843\n6135\n4108\n1177\n4039\n4508\n8731\n9430\n4616\n9816\n9772\n8204\n5258\n4157\n4917\n1937\n3639\n5633\n8267\n1393\n4742\n691\n2323\n9297\n4600\n2641\n1720\n9115\n8092\n9348\n9060\n980\n878\n4022\n4326\n4977\n3256\n566\n1010\n5332\n4179\n1650\n4108\n2601\n2387\n9912\n4520\n7658\n3798\n5065\n9493\n4477\n8367\n4273\n8399\n3131\n9118\n6122\n9481\n5872\n179\n7303\n8385\n2752\n5646\n8035\n2148\n4024\n4525\n5832\n908\n1975\n6793\n4805\n2716\n515\n2213\n6130\n8855\n4786\n252\n9516\n8951\n1832\n5083\n8754\n4584\n2316\n4140\n5752\n2623\n5812\n1230\n5675\n5258\n399\n2503\n7045\n3982\n8449\n1551\n9687\n2983\n509\n4451\n6109\n7029\n1408\n5332\n9200\n953\n7561\n849\n1271\n4506\n9239\n4430\n4291\n8451\n5989\n572\n2628\n6623\n4495\n2676\n6725\n6817\n7805\n2086\n3597\n6953\n289\n3822\n9726\n6257\n232\n5945\n4215\n2544\n5730\n8826\n1940\n454\n4841\n3379\n610\n6246\n932\n1011\n4834\n1496\n2209\n3646\n2336\n3981\n2072\n8012\n1181\n5644\n2175\n2703\n6536\n6594\n4909\n5837\n2584\n9157\n2224\n2304\n1856\n2255\n7343\n9503\n7257\n8377\n4818\n7954\n8225\n4190\n1334\n6525\n8277\n3183\n2909\n925\n2425\n9708\n4266\n2527\n7310\n5370\n8395\n5106\n985\n6928\n9516\n114\n2288\n7226\n2960\n7000\n89\n3056\n951\n1552\n8357\n5993\n8518\n3884\n6013\n955\n6399\n4701\n882\n9241\n592\n1746\n656\n6264\n7413\n5030\n755\n5371\n7198\n443\n1806\n8855\n6205\n6545\n9111\n2032\n2011\n6077\n9855\n9182\n596\n8068\n5068\n2492\n9906\n7079\n8137\n2272\n7104\n4782\n4595\n4750\n4802\n4287\n1189\n4816\n6215\n8705\n8722\n1484\n5538\n7162\n4665\n7056\n8482\n8675\n1308\n1726\n9912\n2083\n9487\n1177\n7799\n8620\n9875\n9298\n5531\n8508\n4731\n8784\n3228\n4733\n3630\n5244\n780\n8614\n7790\n2614\n1732\n2289\n166\n4014\n3924\n9943\n7558\n798\n4529\n8877\n8680\n7910\n3852\n2562\n7556\n216\n5716\n4296\n498\n1485\n2275\n5978\n9224\n6514\n8799\n8182\n5766\n7587\n6977\n3336\n9525\n2586\n3850\n586\n671\n938\n8113\n3778\n4750\n7065\n7491\n5159\n5416\n2667\n4292\n125\n8281\n9764\n1982\n3126\n3589\n4395\n9986\n9170\n3863\n7474\n9211\n7168\n3747\n6689\n1850\n1132\n7333\n1458\n9572\n9981\n1479\n2220\n5083\n4202\n5172\n9228\n484\n9100\n7975\n6214\n5286\n9252\n290\n4091\n4197\n2996\n4037\n5088\n3519\n4335\n2034\n2139\n2789\n2908\n8859\n1389\n5863\n9643\n8885\n7985\n2570\n5358\n7399\n5929\n8615\n1455\n4545\n2970\n6949\n1861\n9313\n974\n5911\n4405\n3994\n6747\n8589\n6467\n2421\n33\n2245\n8819\n8012\n1465\n9032\n9769\n3571\n6322\n4515\n6564\n8703\n1413\n1522\n8550\n7136\n4047\n6975\n3095\n9489\n3236\n867\n7712\n328\n9304\n2192\n7641\n4999\n8676\n6238\n6163\n4129\n2514\n5124\n1749\n6002\n1141\n8276\n1155\n4668\n2746\n1574\n5059\n442\n7934\n2126\n7927\n7877\n4647\n2840\n1328\n204\n4345\n1225\n9526\n6553\n1517\n8400\n4683\n701\n8592\n7499\n5775\n5015\n1845\n9370\n6045\n5062\n3444\n4299\n2426\n6869\n2602\n8595\n9927\n9201\n1338\n1614\n7369\n2791\n2311\n2869\n3000\n5226\n8328\n7382\n6206\n7808\n1471\n4348\n6306\n3064\n8506\n3709\n7911\n1183\n9644", "output": "4273426\n24932391\n25236960\n11117970\n41500605\n23891328\n1008910\n44448306\n2826253\n10303530\n42711903\n147696\n4197753\n44253\n21822921\n10508820\n1880830\n37277295\n15067305\n35747740\n12066328\n16747578\n49745325\n45462880\n1637145\n14555710\n5253\n27000226\n95703\n1834570\n609960\n37753705\n22892761\n1745646\n36564076\n10818226\n15626845\n395605\n10095771\n11019165\n6359961\n31557540\n7036876\n29564205\n39476055\n10140756\n14636755\n882456\n383250\n10326240\n7665570\n6939675\n23663760\n3350166\n572985\n226128\n29051253\n7059403\n24573555\n22913065\n33788310\n28754736\n6854253\n45548740\n13559028\n7271391\n351\n1775670\n4206450\n26328396\n25329403\n639015\n31129995\n2077741\n169653\n2694681\n38671615\n15727636\n32445540\n2683086\n2636956\n14153860\n41473278\n45177265\n33804753\n6292378\n8596731\n13522600\n1225\n11633076\n2715615\n19310005\n34882128\n28975078\n39493828\n25995655\n12012351\n1350546\n36239841\n38241885\n660675\n24196446\n3848925\n3921400\n248160\n26882778\n9294516\n1790778\n12703320\n35091253\n2948806\n9450378\n14826735\n46556425\n1334161\n4859403\n14405028\n16712871\n31177356\n11127403\n7474911\n272691\n2767128\n15981031\n14696331\n1185030\n42554925\n935028\n49228003\n35967921\n15116751\n19697226\n1308153\n19747470\n23822253\n4713985\n365085\n199396\n20598571\n31868136\n7494256\n9169903\n275653\n15873795\n35267401\n673380\n34665301\n13926003\n2081820\n2143485\n4534566\n49955010\n7282836\n19810365\n30838731\n6995670\n21520080\n45167760\n28739571\n22314540\n1063611\n1594005\n32381128\n20387305\n23581278\n21004921\n929566\n6765681\n2124891\n38075901\n12642906\n4432753\n9406953\n26335653\n4655826\n7966036\n9664606\n39618351\n8927425\n47419191\n13804885\n23239153\n5390686\n20920746\n47946528\n28937028\n8239770\n30572290\n1408681\n1697403\n18816045\n8435778\n692076\n8154741\n10158778\n38110815\n44457735\n10651420\n48172020\n47741106\n33648706\n13820653\n8638246\n12085986\n1875016\n6619341\n15862528\n34167511\n969528\n11240911\n238395\n2697003\n43212456\n10577700\n3486120\n1478340\n41537055\n32736186\n43687878\n41037270\n479710\n385003\n8086231\n9354975\n12382776\n5299140\n159895\n509545\n14212446\n8729931\n1360425\n8435778\n3381300\n2847691\n49118916\n10212940\n29318653\n7210503\n12824580\n45053778\n10019526\n34999161\n9127128\n35267401\n4900015\n41564403\n18736381\n44939940\n17237256\n15931\n26663253\n35149920\n3785376\n15935835\n32276595\n2305878\n8094276\n10235550\n17003196\n411778\n1949325\n23069028\n11541610\n3686970\n132355\n2447578\n18785385\n39201085\n11450505\n31626\n45272370\n40055725\n1677196\n12915903\n38311881\n10504236\n2680770\n8567730\n16539876\n3438753\n16886766\n755835\n16099975\n13820653\n79401\n3131253\n24812490\n7926171\n35688576\n1202025\n46914141\n4447653\n129286\n9903475\n18656886\n24699906\n990528\n14212446\n42315400\n453628\n28580580\n359976\n807085\n10149765\n42674941\n9810235\n9204195\n35705475\n17931066\n163306\n3451878\n21928753\n10100265\n3579150\n22609450\n23232336\n30455110\n2174655\n6467406\n24168628\n41616\n7301931\n47292675\n19571896\n26796\n17668540\n8881005\n3234696\n16413585\n38944725\n1880830\n102831\n11715220\n5707131\n185745\n19503135\n433846\n510555\n11681361\n1118260\n2438736\n6644835\n2727280\n7922190\n2145556\n32092066\n696790\n15924546\n2364225\n3651753\n21356380\n21737121\n12046686\n17032366\n3337236\n41920746\n2471976\n2653056\n1721440\n2541385\n26956153\n45148753\n26328396\n35082876\n11604153\n31629081\n33821200\n8775955\n889111\n21284550\n34250226\n5064153\n4229686\n427350\n2939100\n47117778\n9097245\n3191601\n26714395\n14415765\n35233815\n13033065\n484620\n23995128\n45272370\n6441\n2616328\n26103925\n4379320\n24496500\n3916\n4668040\n451725\n1203576\n34915546\n17955028\n36273903\n7540786\n18075078\n455535\n20470401\n11047350\n388521\n42693420\n174936\n1523385\n214840\n19615716\n27472578\n12647935\n284635\n14421135\n25902003\n97903\n1629915\n39201085\n19247910\n21415240\n41500605\n2063496\n2021055\n18461926\n48555585\n42149971\n177310\n32542278\n12839778\n3103786\n49059465\n25052581\n33101316\n2579856\n25229856\n11431371\n10554715\n11278875\n11527201\n9187041\n706266\n11594520\n19310005\n37884160\n38032281\n1100386\n15331953\n25643541\n10878780\n24890040\n35967921\n37623475\n854778\n1488675\n49118916\n2168403\n44996841\n692076\n30408301\n37147890\n48752875\n43221753\n15293215\n36188778\n11188815\n38574936\n5208378\n11198278\n6586635\n13747146\n303810\n37096191\n30338155\n3415191\n1499046\n2618616\n13695\n8054091\n7696926\n49426653\n28557903\n318003\n10253656\n39396126\n37666860\n31280095\n7417026\n3280641\n28542790\n23220\n16333470\n9225660\n123753\n1101870\n2586675\n17865253\n42536476\n21212841\n38706801\n33468471\n16620495\n28777491\n24335776\n5562780\n45358050\n3342405\n7409325\n171405\n224785\n439453\n32906328\n7134753\n11278875\n24953580\n28053795\n13305061\n14663820\n3555111\n9208486\n7750\n34283340\n47662966\n1963171\n4884375\n6438666\n9655815\n49855105\n42039865\n7459453\n27926601\n42416655\n25686528\n7018131\n22368016\n1710325\n640146\n26882778\n1062153\n45806806\n49805190\n1092981\n2463090\n12915903\n8826301\n13372206\n42573378\n116886\n41400450\n31796325\n19303791\n13968255\n42795126\n41905\n8366095\n8805306\n4486510\n8146666\n12941328\n6189921\n9393945\n2067561\n2286591\n3887866\n4226778\n39236511\n963966\n17184453\n46488903\n39467170\n31876120\n3301165\n14351403\n27368901\n17573556\n37104805\n1057785\n10326240\n4408965\n24140826\n1730730\n43361328\n473851\n17467005\n9699810\n7974021\n22757631\n36881166\n20907811\n2929410\n528\n2518890\n38882971\n32092066\n1072380\n40783996\n47711796\n6374235\n19980681\n10190355\n21539766\n37866753\n997578\n1157481\n36546975\n25457680\n8187081\n24321825\n4787965\n45015816\n5234230\n375411\n29733616\n53628\n43277556\n2401336\n29188620\n12492501\n37632150\n19453203\n18988203\n8522256\n3158841\n13125126\n1528626\n18009001\n650370\n34241950\n666435\n10892778\n3768885\n1237951\n12794211\n97461\n31470211\n2258875\n31414701\n31019626\n10794981\n4031380\n881128\n20706\n9437340\n749700\n45367575\n21467628\n1149886\n35275800\n10962903\n245350\n36906936\n28113751\n16672425\n12572605\n1701090\n43893765\n18267990\n12809391\n5928846\n9238551\n2941525\n23588146\n3383901\n36932715\n49267701\n42324600\n894453\n1301691\n27147396\n3893445\n2669205\n4114146\n4498500\n13652925\n34673628\n27243271\n19254115\n30478528\n1081185\n9450378\n19879665\n4692516\n36171765\n6876486\n31288005\n699153\n46498546", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Write a program which manipulates a disjoint set S = {S1, S2, . . . , Sk}. First of all, the program should read an integer n, then make a disjoint set where each element consists of 0, 1, ... n−1 respectively. Next, the program should read an integer q and manipulate the set for q queries. There are two kinds of queries for different operations: * unite(x, y): unites sets that contain x and y, say Sx and Sy, into a new set. * same(x, y): determine whether x and y are in the same set. Constraints * 1 ≤ n ≤ 10000 * 1 ≤ q ≤ 100000 * x ≠ y Input n q com1 x1 y1 com2 x2 y2 ... comq xq yq In the first line, n and q are given. Then, q queries are given where com represents the type of queries. '0' denotes unite and '1' denotes same operation. Output For each same operation, print 1 if x and y are in the same set, otherwise 0, in a line. Example Input 5 12 0 1 4 0 2 3 1 1 2 1 3 4 1 1 4 1 3 2 0 1 3 1 2 4 1 3 0 0 0 4 1 0 2 1 3 0 Output 0 0 1 1 1 0 1 1 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def root(i): if par[i] == i: return i par[i] = root(par[i]) return par[i] def unite(x, y): xr = root(x) yr = root(y) par[yr] = xr def same(x, y): return root(x) == root(y) (n, q) = map(int, input().split()) par = list(range(n)) for i in range(q): commands = list(map(int, input().split())) if commands[0] == 0: unite(commands[1], commands[2]) if commands[0] == 1: if same(commands[1], commands[2]): print(1) else: print(0) ```
vfc_143024
{ "difficulty": "unknown_difficulty", "memory_limit": "134.217728 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "3.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5 12\n0 2 4\n0 2 3\n1 1 2\n1 3 4\n1 1 4\n1 3 2\n0 1 3\n1 2 4\n1 3 0\n0 0 4\n1 0 2\n1 3 0", "output": "0\n1\n0\n1\n1\n0\n1\n1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 12\n0 1 4\n0 2 3\n1 1 2\n1 3 4\n1 1 4\n1 2 2\n0 1 3\n1 2 4\n1 3 0\n0 0 4\n1 0 2\n1 3 0", "output": "0\n0\n1\n1\n1\n0\n1\n1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 12\n0 1 4\n0 2 3\n1 1 2\n1 3 4\n1 2 4\n1 2 2\n0 1 3\n1 2 4\n1 3 0\n0 0 4\n1 0 2\n1 3 0", "output": "0\n0\n0\n1\n1\n0\n1\n1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5 12\n0 1 4\n0 2 3\n1 1 2\n1 3 4\n1 2 4\n1 2 2\n1 1 3\n1 2 4\n1 3 0\n0 0 4\n1 0 2\n1 3 0", "output": "0\n0\n0\n1\n0\n0\n0\n0\n0\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/IMPACT
Solve the following coding problem using the programming language python: Consider the infinite x$x$ axis. There are N$N$ impacts on this X-axis at integral points (X1$X_1$,X2$X_2$,....XN$X_N$) (all distinct) . An impact at a point X$X$i propagates such that at a point X$X$0, the effect of the impact is K|Xi−X0|$K^{|X_i - X_0|}$. Given the point X0$X_0$, N$N$ and K$K$. Assume the total impact on X0$X_0$ is M$M$, find if it is possible to do so.Note: You are not required to find the set X Formally print "yes" if this is possible and "no" if not possible. -----Input:----- - First line will contain T$T$, number of testcases. Then the testcases follow. - Each testcase contains of a single line of input, four integers N$N$,K$K$,M$M$,X$X$0 -----Output:----- - The output of each test case is either "yes" or "no" -----Constraints ----- - 1≤T≤1000$1\leq T \leq 1000$ - 1≤N≤100$1\leq N \leq 100$ - 1≤K≤1000$1\leq K \leq 1000$ - 1≤M≤1018$1\leq M \leq 10^{18}$ - −109≤X0≤109$-10^9 \leq X_0 \leq 10^9$ -----Sample Input:----- 2 4 3 10 10 2 3 10 10 -----Sample Output:----- no yes The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python T = int(input()) for i in range(T): l = list(map(int, input().split())) (n, k, m, x) = (l[0], l[1], l[2], l[3]) if k == 1: if n == m: print('yes') else: print('no') elif m % k > 1: print('no') elif k == 2: stack = [] var = 0 while m != 0: var += m % k stack.append(m % k) m //= k if var > n: print('no') elif var == n: print('yes') else: for p in range(100): for q in range(2, len(stack)): if stack[q - 1] == 0 and stack[q] >= 1: stack[q - 1] = 2 stack[q] -= 1 var += 1 if var == n: print('yes') if var < n: print('no') else: temp = 0 rog = 1 while m != 0: if m % k > 2: rog = 0 print('no') temp += m % k m //= k if rog: if temp == n: print('yes') else: print('no') ```
vfc_143028
{ "difficulty": "very_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/IMPACT", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n4 3 10 10\n2 3 10 10\n", "output": "no\nyes\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/sharing3134/1
Solve the following coding problem using the programming language python: Geek is very fond of chocolates. But he can't reach the kitchen shelf which has 'N' chocolates. His family has K members and he can call any number of family members to help him out. After acquiring the chocolates, the family members that Geek called will first divide the chocolates amongst themsleves equally. They do this in such a way that they all get maximum number of chocolates. The remaining chocolates are given to Geek. Find the maximum number of chocolates that Geek can get. Example 1: Input: N = 15, K = 4 Output: 3 Explaination: Calling 1 member. Geek will get nothing. Calling 2 members. Geek will get 1 chocolate. Calling 3 members. Geek will get nothing. Calling 4 members. Geek will get 3 chocolates. Example 2: Input: N = 19, K = 5 Output: 4 Explaination: 5 memebers will be called who will divide 15 chocolates among them. And 4 chocolates will be left for Geek. Your Task: You do not need to read input or print anything. Your task is to complete the function maxChocolate() which takes N and K as input parameters and returns the maximum number of chocolates Geek can have. Expected Time Complexity: O(min(N,K)) Expected Auxiliary Space: O(1) Constraints: 1 ≤ N, K ≤ 10^{5} Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def maxChocolate(self, N, K): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def maxChocolate(self, N, K): if K > N: return N else: r = 0 for i in range(1, K + 1): r = max(r, N % i) return r ```
vfc_143032
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/sharing3134/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 15, K = 4", "output": "3", "type": "stdin_stdout" }, { "fn_name": null, "input": "N = 19, K = 5", "output": "4", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/255/A
Solve the following coding problem using the programming language python: Greg is a beginner bodybuilder. Today the gym coach gave him the training plan. All it had was n integers a_1, a_2, ..., a_{n}. These numbers mean that Greg needs to do exactly n exercises today. Besides, Greg should repeat the i-th in order exercise a_{i} times. Greg now only does three types of exercises: "chest" exercises, "biceps" exercises and "back" exercises. Besides, his training is cyclic, that is, the first exercise he does is a "chest" one, the second one is "biceps", the third one is "back", the fourth one is "chest", the fifth one is "biceps", and so on to the n-th exercise. Now Greg wonders, which muscle will get the most exercise during his training. We know that the exercise Greg repeats the maximum number of times, trains the corresponding muscle the most. Help Greg, determine which muscle will get the most training. -----Input----- The first line contains integer n (1 ≤ n ≤ 20). The second line contains n integers a_1, a_2, ..., a_{n} (1 ≤ a_{i} ≤ 25) — the number of times Greg repeats the exercises. -----Output----- Print word "chest" (without the quotes), if the chest gets the most exercise, "biceps" (without the quotes), if the biceps gets the most exercise and print "back" (without the quotes) if the back gets the most exercise. It is guaranteed that the input is such that the answer to the problem is unambiguous. -----Examples----- Input 2 2 8 Output biceps Input 3 5 1 10 Output back Input 7 3 3 2 7 9 6 8 Output chest -----Note----- In the first sample Greg does 2 chest, 8 biceps and zero back exercises, so the biceps gets the most exercises. In the second sample Greg does 5 chest, 1 biceps and 10 back exercises, so the back gets the most exercises. In the third sample Greg does 18 chest, 12 biceps and 8 back exercises, so the chest gets the most exercise. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python num = int(input()) k = list(map(int, input().split())) chest = 0 bicep = 0 back = 0 for x in range(0, num): if x % 3 == 0: chest = chest + k[x] if x % 3 == 1: bicep = bicep + k[x] if x % 3 == 2: back = back + k[x] if chest > bicep and chest > back: print('chest') elif bicep > chest and bicep > back: print('biceps') elif back > chest and back > bicep: print('back') ```
vfc_143033
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/255/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n2 8\n", "output": "biceps\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n5 1 10\n", "output": "back\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "7\n3 3 2 7 9 6 8\n", "output": "chest\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\n5 6 6 2\n", "output": "chest\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n8 2 2 6 3\n", "output": "chest\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Ricky gives a number 'n' to John. Now Ricky wants John to generate Z with symbol "*" such that it spans n rows. Example: Input : n=3 Output : ***   * *** Input : n=4 Output : ****    *   * **** Constraint : 3 ≤ n ≤20 SAMPLE INPUT 5 SAMPLE OUTPUT ***** * * * ***** Explanation The 'Z' is printed across 5 lines as shown above. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python n=int(input()) print('*'*n) for i in range(n-2): print(' '*(n-i-2) + '*') print('*'*n) ```
vfc_143037
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5", "output": "*******\n *\n *\n *\n *\n *\n*******", "type": "stdin_stdout" }, { "fn_name": null, "input": "10", "output": "**********\n *\n *\n *\n *\n *\n *\n *\n *\n**********", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/915/C
Solve the following coding problem using the programming language python: You are given two positive integer numbers a and b. Permute (change order) of the digits of a to construct maximal number not exceeding b. No number in input and/or output can start with the digit 0. It is allowed to leave a as it is. -----Input----- The first line contains integer a (1 ≤ a ≤ 10^18). The second line contains integer b (1 ≤ b ≤ 10^18). Numbers don't have leading zeroes. It is guaranteed that answer exists. -----Output----- Print the maximum possible number that is a permutation of digits of a and is not greater than b. The answer can't have any leading zeroes. It is guaranteed that the answer exists. The number in the output should have exactly the same length as number a. It should be a permutation of digits of a. -----Examples----- Input 123 222 Output 213 Input 3921 10000 Output 9321 Input 4940 5000 Output 4940 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python fact_ = [1] * 50 def fact(n): return fact_[n] def get_perm(n, k): if k > fact(n): exit(123) if n == 1: return [1] k -= 1 res = [] not_used = [i for i in range(1, n + 1)] size = fact(n - 1) for i in range(n): cnt = k // size res.append(not_used[cnt]) not_used.pop(cnt) k %= size if i != n - 1: size //= n - 1 - i return res[:] def num_by_perm(x): nonlocal n, a v = get_perm(n, x) res = [] for i in range(n): res.append(a[v[i] - 1]) return int(''.join(res)) def check(x): nonlocal n, a, b v = num_by_perm(x) if v > b: return False else: return True for i in range(1, 20): fact_[i] = fact_[i - 1] * i a = list(input()) b = int(input()) n = len(a) a.sort() l = 1 r = fact(n) + 1 while r - l > 1: m = l + (r - l) // 2 if check(m): l = m else: r = m print(num_by_perm(l)) ```
vfc_143041
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/915/C", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "123\n222\n", "output": "213\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3921\n10000\n", "output": "9321\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4940\n5000\n", "output": "4940\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/CONFLIP
Solve the following coding problem using the programming language python: Little Elephant was fond of inventing new games. After a lot of research, Little Elephant came to know that most of the animals in the forest were showing less interest to play the multi-player games. Little Elephant had started to invent single player games, and succeeded in inventing the new single player game named COIN FLIP. In this game the player will use $N$ coins numbered from $1$ to $N$, and all the coins will be facing in "Same direction" (Either Head or Tail), which will be decided by the player before starting of the game. The player needs to play $N$ rounds. In the $k$-th round the player will flip the face of the all coins whose number is less than or equal to $k$. That is, the face of coin $i$ will be reversed, from Head to Tail, or, from Tail to Head, for $i ≤ k$. Elephant needs to guess the total number of coins showing a particular face after playing $N$ rounds. Elephant really becomes quite fond of this game COIN FLIP so Elephant plays $G$ times. Please help the Elephant to find out the answer. ------ Input: ------ The first line of input contains an integer $T$, denoting the number of test cases. Then $T$ test cases follow. The first line of each test contains an integer $G$, denoting the number of games played by Elephant. Each of the following $G$ lines denotes a single game, and contains $3$ space-separated integers $I$, $N$, $Q$, where $I$ denotes the initial state of the coins, $N$ denotes the number of coins and rounds, and $Q$, which is either $1$, or $2$ as explained below. Here $I=1$ means all coins are showing Head in the start of the game, and $I=2$ means all coins are showing Tail in the start of the game. $Q=1$ means Elephant needs to guess the total number of coins showing Head in the end of the game, and $Q=2$ means Elephant needs to guess the total number of coins showing Tail in the end of the game. ------ Output: ------ For each game, output one integer denoting the total number of coins showing the particular face in the end of the game. ------ Constraints: ------ $1 ≤ T ≤ 10$ $1 ≤ G ≤ 2000$ $1 ≤ N ≤ 10$ $1 ≤ I ≤ 2$ $1 ≤ Q ≤ 2$ ----- Sample Input 1 ------ 1 2 1 5 1 1 5 2 ----- Sample Output 1 ------ 2 3 ----- explanation 1 ------ In the 1st game in Example, $I=1$, so initial arrangement of coins are H H H H H, and now Elephant will play 5 rounds and coin faces will be changed as follows< After the 1st Round: T H H H H After the 2nd Round: H T H H H After the 3rd Round: T H T H H After the 4th Round: H T H T H After the 5th Round: T H T H T Finally Q=1, so we need to find the total number of coins showing Head, which is 2 In the 2nd game in Example: This is similar to the 1st game, except Elephant needs to find the total number of coins showing Tail. So the Answer is $3$. (Please see the final state of the coins in the $1^{st}$ game) The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) for it in range(t): g = int(input()) for its in range(g): (i, n, q) = map(int, input().split()) if i == q: print(n // 2) else: print(n // 2 + n % 2) ```
vfc_143045
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/CONFLIP", "time_limit": "5 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1\n2\n1 5 1\n1 5 2", "output": "2\n3", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n2\n1 1 1\n1 5 2", "output": "0\n3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n2\n1 1 1\n1 5 1", "output": "0\n2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n2\n1 1 1\n1 7 2", "output": "0\n4\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n2\n2 1 1\n1 7 2", "output": "1\n4\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1763/B
Solve the following coding problem using the programming language python: To destroy humanity, The Monster Association sent $n$ monsters to Earth's surface. The $i$-th monster has health $h_i$ and power $p_i$. With his last resort attack, True Spiral Incineration Cannon, Genos can deal $k$ damage to all monsters alive. In other words, Genos can reduce the health of all monsters by $k$ (if $k > 0$) with a single attack. However, after every attack Genos makes, the monsters advance. With their combined efforts, they reduce Genos' attack damage by the power of the $^\dagger$weakest monster $^\ddagger$alive. In other words, the minimum $p_i$ among all currently living monsters is subtracted from the value of $k$ after each attack. $^\dagger$The Weakest monster is the one with the least power. $^\ddagger$A monster is alive if its health is strictly greater than $0$. Will Genos be successful in killing all the monsters? -----Input----- The first line of the input contains a single integer $t$ ($1 \le t \le 100$) — the number of test cases. The description of test cases follows. The first line of each test case contains two integers, $n$ and $k$ ($1 \le n, k \le 10^5$) — the number of monsters and Genos' initial attack damage. Then two lines follow, each containing $n$ integers describing the arrays $h$ and $p$ ($1 \le h_i, p_i \le 10^9$). It's guaranteed that the sum of $n$ over all test cases does not exceed $2 \cdot 10^5$. -----Output----- For each test case, print the answer — "YES" (without quotes) if Genos could kill all monsters and "NO" otherwise. -----Examples----- Input 3 6 7 18 5 13 9 10 1 2 7 2 1 2 6 3 4 5 5 5 4 4 4 3 2 2 1 3 1 1 1 Output YES NO YES -----Note----- In the first example, after Genos' first attack, $h$ and $k$ will update to: $h: [11,0,6,2,3,0]$ $k: 7-1 = 6$ After second attack: $h: [5,0,0,0,0,0]$ $k: 6-2 = 4$ After third attack: $h: [1,0,0,0,0,0]$ $k: 4-2 = 2$ After fourth attack: $h: [0,0,0,0,0,0]$ As Genos could kill all monsters, the answer is YES. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys input = sys.stdin.readline import math def readList(): return list(map(int, input().split())) def readInt(): return int(input()) def readInts(): return map(int, input().split()) def readStr(): return input().strip() def solve(): (n, k) = readInts() H = readList() P = readList() arr = sorted([[P[i], H[i]] for i in range(n)]) offset = 0 for i in range(n): (p, h) = arr[i] h -= offset if h <= 0: continue k -= p if i > 0 else 0 if k >= h: offset += k continue elif k <= 0: return 'NO' D = (p + 2 * k) ** 2 - 8 * p * h if D < 0: return 'NO' x1 = math.ceil((p + 2 * k - D ** 0.5) / (2 * p)) if x1 > 0 and p * x1 ** 2 - x1 * (p + 2 * k) + 2 * h <= 0: offset += k * x1 - p * (x1 - 1) * x1 // 2 k -= p * (x1 - 1) else: return 'NO' return 'YES' for _ in range(int(input())): print(solve()) ```
vfc_143049
{ "difficulty": "easy", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1763/B", "time_limit": "1 second" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n6 7\n18 5 13 9 10 1\n2 7 2 1 2 6\n3 4\n5 5 5\n4 4 4\n3 2\n2 1 3\n1 1 1\n", "output": "YES\nNO\nYES\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n2 1\n1000000000 1\n1 1000000000\n", "output": "NO\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/792/F
Solve the following coding problem using the programming language python: Vova plays a computer game known as Mages and Monsters. Vova's character is a mage. Though as he has just started, his character knows no spells. Vova's character can learn new spells during the game. Every spell is characterized by two values x_{i} and y_{i} — damage per second and mana cost per second, respectively. Vova doesn't have to use a spell for an integer amount of seconds. More formally, if he uses a spell with damage x and mana cost y for z seconds, then he will deal x·z damage and spend y·z mana (no rounding). If there is no mana left (mana amount is set in the start of the game and it remains the same at the beginning of every fight), then character won't be able to use any spells. It is prohibited to use multiple spells simultaneously. Also Vova can fight monsters. Every monster is characterized by two values t_{j} and h_{j} — monster kills Vova's character in t_{j} seconds and has h_{j} health points. Mana refills after every fight (or Vova's character revives with full mana reserve), so previous fights have no influence on further ones. Vova's character kills a monster, if he deals h_{j} damage to it in no more than t_{j} seconds using his spells (it is allowed to use more than one spell in a fight) and spending no more mana than he had at the beginning of the fight. If monster's health becomes zero exactly in t_{j} seconds (it means that the monster and Vova's character kill each other at the same time), then Vova wins the fight. You have to write a program which can answer two types of queries: 1 x y — Vova's character learns new spell which deals x damage per second and costs y mana per second. 2 t h — Vova fights the monster which kills his character in t seconds and has h health points. Note that queries are given in a different form. Also remember that Vova's character knows no spells at the beginning of the game. For every query of second type you have to determine if Vova is able to win the fight with corresponding monster. -----Input----- The first line contains two integer numbers q and m (2 ≤ q ≤ 10^5, 1 ≤ m ≤ 10^12) — the number of queries and the amount of mana at the beginning of every fight. i-th of each next q lines contains three numbers k_{i}, a_{i} and b_{i} (1 ≤ k_{i} ≤ 2, 1 ≤ a_{i}, b_{i} ≤ 10^6). Using them you can restore queries this way: let j be the index of the last query of second type with positive answer (j = 0 if there were none of these). If k_{i} = 1, then character learns spell with x = (a_{i} + j) mod 10^6 + 1, y = (b_{i} + j) mod 10^6 + 1. If k_{i} = 2, then you have to determine if Vova is able to win the fight against monster with t = (a_{i} + j) mod 10^6 + 1, h = (b_{i} + j) mod 10^6 + 1. -----Output----- For every query of second type print YES if Vova is able to win the fight with corresponding monster and NO otherwise. -----Example----- Input 3 100 1 4 9 2 19 49 2 19 49 Output YES NO -----Note----- In first example Vova's character at first learns the spell with 5 damage and 10 mana cost per second. Next query is a fight with monster which can kill character in 20 seconds and has 50 health points. Vova kills it in 10 seconds (spending 100 mana). Next monster has 52 health, so Vova can't deal that much damage with only 100 mana. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python [q, m] = map(int, input().strip().split()) qis = [tuple(map(int, input().strip().split())) for _ in range(q)] mod = 10 ** 6 j = 0 spell_chull = [(0, 0)] def is_right(xy0, xy1, xy): (x0, y0) = xy0 (x1, y1) = xy1 (x, y) = xy return (x0 - x) * (y1 - y) >= (x1 - x) * (y0 - y) def in_chull(x, y): i = 0 if x > spell_chull[-1][0]: return False while spell_chull[i][0] < x: i += 1 if spell_chull[i][0] == x: return spell_chull[i][1] <= y else: return is_right(spell_chull[i - 1], spell_chull[i], (x, y)) def add_spell(x, y): global spell_chull if in_chull(x, y): return i_left = 0 while i_left < len(spell_chull) - 1 and (not is_right(spell_chull[i_left + 1], spell_chull[i_left], (x, y))): i_left += 1 i_right = i_left + 1 while i_right < len(spell_chull) - 1 and is_right(spell_chull[i_right + 1], spell_chull[i_right], (x, y)): i_right += 1 if i_right == len(spell_chull) - 1 and x >= spell_chull[-1][0]: i_right += 1 spell_chull = spell_chull[:i_left + 1] + [(x, y)] + spell_chull[i_right:] for (i, qi) in enumerate(qis): (k, a, b) = qi x = (a + j) % mod + 1 y = (b + j) % mod + 1 if k == 1: add_spell(x, y) elif in_chull(y / x, m / x): print('YES') j = i + 1 else: print('NO') ```
vfc_143053
{ "difficulty": "very_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/792/F", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3 100\n1 4 9\n2 19 49\n2 19 49\n", "output": "YES\nNO\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "10 442006988299\n2 10 47\n1 9 83\n1 15 24\n2 19 47\n2 75 99\n2 85 23\n2 8 33\n2 9 82\n1 86 49\n2 71 49\n", "output": "NO\nYES\nYES\nYES\nYES\nYES\nYES\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2 424978864039\n2 7 3\n2 10 8\n", "output": "NO\nNO\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2 1000000000000\n1 235726 255577\n1 959304 206090\n", "output": "", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/FLOW014
Solve the following coding problem using the programming language python: A certain type of steel is graded according to the following conditions. 1. Hardness of the steel must be greater than 50 2. Carbon content of the steel must be less than 0.7 3. Tensile strength must be greater than 5600 The grades awarded are as follows: Grade is 10 if all three conditions are met Grade is 9 if conditions (1) and (2) are met Grade is 8 if conditions (2) and (3) are met Grade is 7 if conditions (1) and (3) are met Grade is 6 if only one condition is met Grade is 5 if none of the three conditions are met Write a program to display the grade of the steel, based on the values of hardness, carbon content and tensile strength of the steel, given by the user. ------ Input Format ------ The first line contains an integer T, total number of testcases. Then follow T lines, each line contains three numbers hardness, carbon content and tensile strength of the steel. ------ Output Format ------ For each test case, print Grade of the steel depending on Conditions, in a new line. ------ Constraints ------ - 1 ≤ T ≤ 1000 - 0 ≤ hardness, carbon content, tensile strength ≤ 10000 ----- Sample Input 1 ------ 3 53 0.6 5602 45 0 4500 0 0 0 ----- Sample Output 1 ------ 10 6 6 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for _ in range(int(input())): (h, c, t) = map(float, input().split()) con1 = h > 50 con2 = c < 0.7 con3 = t > 5600 if con1 and con2 and con3: print('10') elif con1 and con2: print('9') elif con2 and con3: print('8') elif con1 and con3: print('7') elif con1 or con2 or con3: print('6') else: print('5') ```
vfc_143057
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/FLOW014", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3 \n53 0.6 5602\n45 0 4500\n0 0 0 \n", "output": "10\n6\n6\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 \n67 0.6 5602\n45 0 4500\n0 0 0", "output": "10\n6\n6\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Broken crypto generator JAG (Japanese Alumni Group) is a mysterious organization composed of many programmers, and in order to enter the building where the headquarters of this organization is located, it is necessary to solve the ciphertext generated by a certain machine every time. This ciphertext consists of the symbols'+','-','[',']' and the uppercase alphabet, and is represented by <Cipher> defined by the following BNF. <Cipher> :: = <String> | <Cipher> <String> <String> :: = <Letter> |'['<Cipher>']' <Letter> :: ='+' <Letter> |'-' <Letter> | 'A' |'B' |'C' |'D' |'E' |'F' |'G' |'H' |'I' |'J' |'K' |'L' |'M '| 'N' |'O' |'P' |'Q' |'R' |'S' |'T' |'U' |'V' |'W' |'X' |'Y' |'Z ' Here, each symbol has the following meaning. * + (Character): Represents the alphabet following that character (provided that the alphabet following'Z'is'A') *-(Character): Represents the alphabet before that character (provided that the alphabet before'A'is'Z') * [(Character string)]: Represents a character string that is horizontally inverted. However, the machine that generates this ciphertext is currently out of order, and some letters of the alphabet in the ciphertext may be broken and unreadable. Unreadable characters are tentatively represented as'?'. As a result of the investigation, it was found that the method of filling the broken characters is such that the decrypted character string is the smallest in the dictionary order among the possible character strings after decoding. Your job is to decrypt this ciphertext correctly. Input The input consists of multiple datasets. Each dataset consists of one line containing a string in which some uppercase letters have been replaced with ‘?’ In the ciphertext defined by BNF above. You can assume that the length of each string is less than $ 80 $. You can also assume that the number of'?' In each dataset is greater than or equal to $ 0 $ and less than or equal to $ 3 $. The end of the input is represented by a line containing only one character,'.'. Output For each data set, output the decrypted character string when the ciphertext is decrypted so that the decrypted character string is the smallest in the dictionary order. Sample Input A + A ++ A Z-Z--Z + -Z [ESREVER] J ---? --- J ++++++++ A +++ Z ----------- A +++ Z [[++-+-? [-++-? ++-+++ L]] [-+ ----- + -O]] ++++ --- + L .. Output for Sample Input ABC ZYXZ REVERSE JAG ICPC JAPAN Example Input A+A++A Z-Z--Z+-Z [ESREVER] J---?---J ++++++++A+++Z-----------A+++Z [[++-+--?[--++-?++-+++L]][-+-----+-O]]++++---+L . Output ABC ZYXZ REVERSE JAG ICPC JAPAN The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def pm_to_chr(s): s = s.group() if s[-1] == '?': return 'A' ans = chr((ord(s[-1]) + s.count('+') - s.count('-') - ord('A')) % 26 + ord('A')) return ans def reverse(s): s = s.group() s = s[1:-1] ans = ''.join(reversed(s)) return ans import re s = input() while s != '.': s = re.sub('[\\+\\-]*[\\w?]', pm_to_chr, s) while '[' in s: s = re.sub('\\[\\w+\\]', reverse, s) print(s) s = input() ```
vfc_143073
{ "difficulty": "unknown_difficulty", "memory_limit": "134.217728 megabytes", "memory_limit_bytes": null, "problem_url": null, "time_limit": "8.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "A+A++A\nZ-Z--Z+-Z\n[ESRVEER]\nJ---?---J\n++++++++A+++Z-----------A+++Z\n[[++-+--?[--++-?++-+++L]][-+-----+-O]]++++---+L\n.", "output": "ABC\nZYXZ\nREEVRSE\nJAG\nICPC\nJAPAN\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1335/C
Solve the following coding problem using the programming language python: You have $n$ students under your control and you have to compose exactly two teams consisting of some subset of your students. Each student had his own skill, the $i$-th student skill is denoted by an integer $a_i$ (different students can have the same skills). So, about the teams. Firstly, these two teams should have the same size. Two more constraints: The first team should consist of students with distinct skills (i.e. all skills in the first team are unique). The second team should consist of students with the same skills (i.e. all skills in the second team are equal). Note that it is permissible that some student of the first team has the same skill as a student of the second team. Consider some examples (skills are given): $[1, 2, 3]$, $[4, 4]$ is not a good pair of teams because sizes should be the same; $[1, 1, 2]$, $[3, 3, 3]$ is not a good pair of teams because the first team should not contain students with the same skills; $[1, 2, 3]$, $[3, 4, 4]$ is not a good pair of teams because the second team should contain students with the same skills; $[1, 2, 3]$, $[3, 3, 3]$ is a good pair of teams; $[5]$, $[6]$ is a good pair of teams. Your task is to find the maximum possible size $x$ for which it is possible to compose a valid pair of teams, where each team size is $x$ (skills in the first team needed to be unique, skills in the second team should be the same between them). A student cannot be part of more than one team. You have to answer $t$ independent test cases. -----Input----- The first line of the input contains one integer $t$ ($1 \le t \le 10^4$) — the number of test cases. Then $t$ test cases follow. The first line of the test case contains one integer $n$ ($1 \le n \le 2 \cdot 10^5$) — the number of students. The second line of the test case contains $n$ integers $a_1, a_2, \dots, a_n$ ($1 \le a_i \le n$), where $a_i$ is the skill of the $i$-th student. Different students can have the same skills. It is guaranteed that the sum of $n$ over all test cases does not exceed $2 \cdot 10^5$ ($\sum n \le 2 \cdot 10^5$). -----Output----- For each test case, print the answer — the maximum possible size $x$ for which it is possible to compose a valid pair of teams, where each team size is $x$. -----Example----- Input 4 7 4 2 4 1 4 3 4 5 2 1 5 4 3 1 1 4 1 1 1 3 Output 3 1 0 2 -----Note----- In the first test case of the example, it is possible to construct two teams of size $3$: the first team is $[1, 2, 4]$ and the second team is $[4, 4, 4]$. Note, that there are some other ways to construct two valid teams of size $3$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for i in range(int(input())): n = int(input()) a = list(map(int, input().split())) maxx = 0 d = {} for j in a: d[j] = d.get(j, 0) + 1 if d[j] > maxx: maxx = d[j] if maxx == len(d): print(maxx - 1) else: print(min(len(d), maxx)) ```
vfc_143077
{ "difficulty": "easy", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1335/C", "time_limit": "2 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n7\n4 2 4 1 4 3 4\n5\n2 1 5 4 3\n1\n1\n4\n1 1 1 3\n", "output": "3\n1\n0\n2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n9\n1 2 2 3 3 9 9 9 9\n", "output": "3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n", "output": "0\n0\n0\n0\n0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "5\n1\n1\n1\n1\n1\n1\n1\n1\n1\n1\n", "output": "0\n0\n0\n0\n0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n9\n1 2 2 3 3 9 9 9 9\n", "output": "3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\n7\n4 2 4 1 4 3 4\n5\n2 1 5 1 3\n1\n1\n4\n1 1 1 3\n", "output": "3\n2\n0\n2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1437/E
Solve the following coding problem using the programming language python: You are given an array of $n$ integers $a_1$, $a_2$, ..., $a_n$, and a set $b$ of $k$ distinct integers from $1$ to $n$. In one operation, you may choose two integers $i$ and $x$ ($1 \le i \le n$, $x$ can be any integer) and assign $a_i := x$. This operation can be done only if $i$ does not belong to the set $b$. Calculate the minimum number of operations you should perform so the array $a$ is increasing (that is, $a_1 < a_2 < a_3 < \dots < a_n$), or report that it is impossible. -----Input----- The first line contains two integers $n$ and $k$ ($1 \le n \le 5 \cdot 10^5$, $0 \le k \le n$) — the size of the array $a$ and the set $b$, respectively. The second line contains $n$ integers $a_1$, $a_2$, ..., $a_n$ ($1 \le a_i \le 10^9$). Then, if $k \ne 0$, the third line follows, containing $k$ integers $b_1$, $b_2$, ..., $b_k$ ($1 \le b_1 < b_2 < \dots < b_k \le n$). If $k = 0$, this line is skipped. -----Output----- If it is impossible to make the array $a$ increasing using the given operations, print $-1$. Otherwise, print one integer — the minimum number of operations you have to perform. -----Examples----- Input 7 2 1 2 1 1 3 5 1 3 5 Output 4 Input 3 3 1 3 2 1 2 3 Output -1 Input 5 0 4 3 1 2 3 Output 2 Input 10 3 1 3 5 6 12 9 8 10 13 15 2 4 9 Output 3 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import io import os from collections import Counter, defaultdict, deque from bisect import bisect_right inf = float('inf') def lengthOfLIS(nums, mn, mx): mnVal = mn - -1 mxVal = mx - len(nums) chain = [mnVal] for (i, x) in enumerate(nums): v = x - i if mnVal > v or v > mxVal: continue newLen = bisect_right(chain, v) assert chain[newLen - 1] <= v if newLen == len(chain): chain.append(v) else: chain[newLen] = min(chain[newLen], v) return len(chain) - 1 def solve(N, K, A, B): ans = 0 sB = [-1] + sorted(B) + [N] for (b1, b2) in zip(sB, sB[1:]): mn = -inf if b1 == -1 else A[b1] mx = inf if b2 == N else A[b2] nums = A[b1 + 1:b2] if mn >= mx: return -1 if mx - mn - 1 < len(nums): return -1 ans += len(nums) - lengthOfLIS(nums, mn, mx) if ans == inf: return -1 return ans input = io.BytesIO(os.read(0, os.fstat(0).st_size)).readline (N, K) = [int(x) for x in input().split()] A = [int(x) for x in input().split()] B = [] if K != 0: B = set((int(x) - 1 for x in input().split())) print(solve(N, K, A, B)) ```
vfc_143085
{ "difficulty": "hard", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1437/E", "time_limit": "2 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "7 2\n1 2 1 1 3 5 1\n3 5\n", "output": "4\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/756/A
Solve the following coding problem using the programming language python: Pavel cooks barbecue. There are n skewers, they lay on a brazier in a row, each on one of n positions. Pavel wants each skewer to be cooked some time in every of n positions in two directions: in the one it was directed originally and in the reversed direction. Pavel has a plan: a permutation p and a sequence b_1, b_2, ..., b_{n}, consisting of zeros and ones. Each second Pavel move skewer on position i to position p_{i}, and if b_{i} equals 1 then he reverses it. So he hope that every skewer will visit every position in both directions. Unfortunately, not every pair of permutation p and sequence b suits Pavel. What is the minimum total number of elements in the given permutation p and the given sequence b he needs to change so that every skewer will visit each of 2n placements? Note that after changing the permutation should remain a permutation as well. There is no problem for Pavel, if some skewer visits some of the placements several times before he ends to cook. In other words, a permutation p and a sequence b suit him if there is an integer k (k ≥ 2n), so that after k seconds each skewer visits each of the 2n placements. It can be shown that some suitable pair of permutation p and sequence b exists for any n. -----Input----- The first line contain the integer n (1 ≤ n ≤ 2·10^5) — the number of skewers. The second line contains a sequence of integers p_1, p_2, ..., p_{n} (1 ≤ p_{i} ≤ n) — the permutation, according to which Pavel wants to move the skewers. The third line contains a sequence b_1, b_2, ..., b_{n} consisting of zeros and ones, according to which Pavel wants to reverse the skewers. -----Output----- Print single integer — the minimum total number of elements in the given permutation p and the given sequence b he needs to change so that every skewer will visit each of 2n placements. -----Examples----- Input 4 4 3 2 1 0 1 1 1 Output 2 Input 3 2 3 1 0 0 0 Output 1 -----Note----- In the first example Pavel can change the permutation to 4, 3, 1, 2. In the second example Pavel can change any element of b to 1. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys input = sys.stdin.readline n = int(input()) permutation = list(map(int, input().split())) go = set(range(1, n + 1)) reached = set() ans = 0 while go: x = go.pop() while x not in reached: reached.add(x) x = permutation[x - 1] if x in go: go.remove(x) ans += 1 if ans == 1: ans = 0 permutation = input().split() if permutation.count('1') % 2 == 0: ans += 1 print(ans) ```
vfc_143089
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/756/A", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n4 3 2 1\n0 1 1 1\n", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3\n2 3 1\n0 0 0\n", "output": "1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n1\n0\n", "output": "1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1421/A
Solve the following coding problem using the programming language python: In order to celebrate Twice's 5th anniversary, Tzuyu and Sana decided to play a game. Tzuyu gave Sana two integers $a$ and $b$ and a really important quest. In order to complete the quest, Sana has to output the smallest possible value of ($a \oplus x$) + ($b \oplus x$) for any given $x$, where $\oplus$ denotes the bitwise XOR operation. -----Input----- Each test contains multiple test cases. The first line contains the number of test cases $t$ ($1 \le t \le 10^{4}$). Description of the test cases follows. The only line of each test case contains two integers $a$ and $b$ ($1 \le a, b \le 10^{9}$). -----Output----- For each testcase, output the smallest possible value of the given expression. -----Example----- Input 6 6 12 4 9 59 832 28 14 4925 2912 1 1 Output 10 13 891 18 6237 0 -----Note----- For the first test case Sana can choose $x=4$ and the value will be ($6 \oplus 4$) + ($12 \oplus 4$) = $2 + 8$ = $10$. It can be shown that this is the smallest possible value. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) for _ in range(t): (n, k) = map(int, input().split()) print(n ^ k) ```
vfc_143093
{ "difficulty": "easy", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1421/A", "time_limit": "1 second" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "6\n6 12\n4 9\n59 832\n28 14\n4925 2912\n1 1\n", "output": "10\n13\n891\n18\n6237\n0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6\n6 12\n4 9\n59 832\n28 14\n4925 2912\n2 1\n", "output": "10\n13\n891\n18\n6237\n3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6\n6 12\n4 5\n59 832\n28 14\n4925 2912\n2 1\n", "output": "10\n1\n891\n18\n6237\n3\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6\n6 12\n4 2\n59 832\n28 14\n4925 2912\n2 1\n", "output": "10\n6\n891\n18\n6237\n3\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/INOIPRAC/problems/INOI1902
Solve the following coding problem using the programming language python: You are given $N$ integers in an array: $A[1], A[2], \ldots, A[N]$. You also have another integer $L$. Consider a sequence of indices ($i_1, i_2, \ldots, i_k$). Note that a particular index can occur multiple times in the sequence, and there is no order in which these indices have to occur. ($i_1, i_2, \ldots, i_k$) is a sequence of size $k$. It is said to be an $Interesting$ sequence, if $A[i_1] \ge A[i_2] \ge \ldots \ge A[i_k]$. The $Cost$ of an Interesting sequence ($i_1, i_2, \ldots, i_k$), is defined to be the minimum absolute difference between any two adjacent indices. In other words, the Cost is $min \{ |i_2 - i_1|, |i_3 - i_2|, \ldots, |i_k - i_{k-1}| \}$. Your job is to consider the Costs of all the Interesting sequences of size $L$ associated with the given array, and output the maximum Cost. Note that you can show that there is always at least one Interesting sequence for the given constraints. -----Input----- - The first line contains a single integer, $T$, which is the number of testcases. The description of each testcase follows. - The first line of each testcase contains two space separated integers: $N$ and $L$. - The second line of each testcase contains $N$ space separated integers: $A[1], A[2], \ldots, A[N]$. -----Output----- - For each testcase, output the answer in a new line. -----Constraints----- - $1 \leq T \leq 3$ - $1 \leq A[i] \leq 10^9$ - $2 \leq L \leq 10^9$ -----Subtasks----- - Subtask 1: 7 points - It is guaranteed that $A[1] > A[2] > \ldots > A[N]$ - Note that the above condition implies that all elements are distinct. - $1 \leq N \leq 500$ - Subtask 2: 7 points - It is guaranteed that $A[1] \ge A[2] \ge \ldots \ge A[N]$ - $1 \leq N \leq 500$ - Subtask 3: 14 points - It is guaranteed that all elements are distinct. - $1 \leq N \leq 500$ - Subtask 4: 14 points - $1 \leq N \leq 500$ - Subtask 5: 25 points - It is guaranteed that all elements are distinct. - $1 \leq N \leq 3000$ - Subtask 6: 33 points - $1 \leq N \leq 3000$ -----Sample Input----- 1 6 3 2 4 1 12 3 5 -----Sample Output----- 3 -----Explanation----- We are looking for Interesting sequences of length 3. Some of them are: - (4, 2, 3): This is Interesting because $A[4] \ge A[2] \ge A[3]$. Its cost is $min \{ |2-4|, |3-2|\} = 1$. - (5, 1, 1): Cost is 0. - (2, 2, 2): Cost is 0. - (6, 1, 3): Cost is 2. - (6, 2, 5): Cost is 3. There are other Interesting Sequences of length 3 as well. But if you list them all out, you'll see that the maximum Cost is 3. Hence the answer is 3. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def insort(l, v): s = 0 e = len(l) while True: mid = (s + e) // 2 if s == e or mid > len(l): break if l[mid][0] < v[0]: s = mid + 1 elif l[mid][0] > v[0]: e = mid else: break l.insert(mid, v) for _ in range(int(input())): (n, l) = map(int, input().split()) a_l = list(map(int, input().split())) dic = {} dif = 0 for (i, v) in enumerate(a_l, start=1): if v not in dic: dic[v] = [i, i] else: dic[v][0] = min(dic[v][0], i) dic[v][1] = max(dic[v][1], i) dif = max(dif, dic[v][1] - dic[v][0]) ans = dif if l <= len(set(a_l)): i_l = [[v, i] for (i, v) in enumerate(a_l, start=1)] i_l.sort(reverse=True) dp = [[-1 for _ in range(l)] for _ in range(n)] pq_l = [[] for _ in range(l)] for i in range(1, n): il = 1 dif_l = [] for j in range(i): dif = abs(i_l[i][1] - i_l[j][1]) dif_l.append(dif) dp[i][il] = max(dp[i][il], dif) for il in range(2, min(l, i + 1)): for (prev_max, ind) in reversed(pq_l[il - 1]): if ind == i: continue if prev_max < dp[i][il]: break else: dp[i][il] = max(dp[i][il], min(dif_l[ind], prev_max)) insort(pq_l[il], [dp[i][il], i]) il = 1 insort(pq_l[il], [dp[i][il], i]) ans = max(ans, dp[i][-1]) print(ans) ```
vfc_143097
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/INOIPRAC/problems/INOI1902", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1\n6 3\n2 4 1 12 3 5\n", "output": "3\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/CFINASUM
Solve the following coding problem using the programming language python: You are given a sequence $A_1, A_2, \ldots, A_N$. For each $k$ ($1 \le k \le N$), let's define a function $f(k)$ in the following way: - Consider a sequence $B_1, B_2, \ldots, B_N$, which is created by setting $A_k = 0$. Formally, $B_k = 0$ and $B_i = A_i$ for each valid $i \neq k$. - $f(k)$ is the number of ways to split the sequence $B$ into two non-empty contiguous subsequences with equal sums. Find the sum $S = f(1) + f(2) + \ldots + f(N)$. -----Input----- - The first line of the input contains a single integer $T$ denoting the number of test cases. The description of $T$ test cases follows. - The first line of each test case contains a single integer $N$. - The second line contains $N$ space-separated integers $A_1, A_2, \ldots, A_N$. -----Output----- For each test case, print a single line containing one integer — the sum $S$. -----Constraints----- - $1 \le T \le 10$ - $2 \le N \le 2 \cdot 10^5$ - $1 \le |A_i| \le 10^9$ for each valid $i$ -----Example Input----- 2 6 1 2 1 1 3 1 3 4 1 4 -----Example Output----- 6 2 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from collections import Counter for _ in range(int(input())): n = int(input()) a = list(map(int, input().split())) ans = 0 total = sum(a) prefix = 0 d = Counter() for i in range(n): remains = total - a[i] if not remains % 2: ans += d[remains // 2] prefix += a[i] d[prefix] += 1 d.clear() suffix = 0 for i in range(n - 1, -1, -1): remains = total - a[i] if not remains % 2: ans += d[remains // 2] suffix += a[i] d[suffix] += 1 print(ans) ```
vfc_143102
{ "difficulty": "very_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/CFINASUM", "time_limit": "3 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n6\n1 2 1 1 3 1\n3\n4 1 4\n", "output": "6\n2\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/MARCH12/problems/SPOON
Solve the following coding problem using the programming language python: Chef recently saw the movie Matrix. He loved the movie overall but he didn't agree with some things in it. Particularly he didn't agree with the bald boy when he declared - There is no spoon. Being a chef, he understands the importance of the spoon and realizes that the universe can't survive without it. Furthermore, he is sure there is a spoon; he saw it in his kitchen this morning. So he has set out to prove the bald boy is wrong and find a spoon in the matrix. He has even obtained a digital map already. Can you help him? Formally you're given a matrix of lowercase and uppercase Latin letters. Your job is to find out if the word "Spoon" occurs somewhere in the matrix or not. A word is said to be occurred in the matrix if it is presented in some row from left to right or in some column from top to bottom. Note that match performed has to be case insensitive. -----Input----- The first line of input contains a positive integer T, the number of test cases. After that T test cases follow. The first line of each test case contains two space separated integers R and C, the number of rows and the number of columns of the matrix M respectively. Thereafter R lines follow each containing C characters, the actual digital map itself. -----Output----- For each test case print one line. If a "Spoon" is found in Matrix, output "There is a spoon!" else output "There is indeed no spoon!" (Quotes only for clarity). -----Constraints----- 1 ≤ T ≤ 100 1 ≤ R, C ≤ 100 -----Sample Input----- 3 3 6 abDefb bSpoon NIKHil 6 6 aaaaaa ssssss xuisdP oooooo ioowoo bdylan 6 5 bdfhj cacac opqrs ddddd india yucky -----Sample Output----- There is a spoon! There is a spoon! There is indeed no spoon! -----Explanation----- In the first test case, "Spoon" occurs in the second row. In the second test case, "spOon" occurs in the last column. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys spoon = ['SPOON', 'spoon'] def main(): try: tc = int(input()) while tc > 0: tc = tc - 1 [r, c] = input().split() r = int(r) c = int(c) k = 0 flag = 0 matrix = [0] * r i = 0 while i < r: matrix[i] = input() i = i + 1 for m in matrix: for s in m: if s == spoon[0][k] or s == spoon[1][k]: k = k + 1 if k == 5: flag = 1 k = 0 break else: k = 0 if flag == 1: print('There is a spoon!') continue i = 0 k = 0 while i < c: j = 0 while j < r: if matrix[j][i] == spoon[0][k] or matrix[j][i] == spoon[1][k]: k = k + 1 if k == 5: flag = 1 k = 0 break else: k = 0 j = j + 1 i = i + 1 if flag == 1: print('There is a spoon!') continue print('There is indeed no spoon!') except: return 0 main() ```
vfc_143110
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/MARCH12/problems/SPOON", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n3 6\nabDefb\nbSpoon\nNIKHil\n6 6\naaaaaa\nssssss\nxuisdP\noooooo\nioowoo\nbdylan\n6 5\nbdfhj\ncacac\nopqrs\nddddd\nindia\nyucky\n", "output": "There is a spoon!\nThere is a spoon!\nThere is indeed no spoon!\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/DEC15/problems/SEADIV
Solve the following coding problem using the programming language python: Sereja has two integers — A and B — in 7-ary system. He wants to calculate the number C, such that B * C = A. It is guaranteed that B is a divisor of A. Please, help Sereja calculate the number C modulo 7L. -----Input----- First line of input contains an integer T — the number of test cases. T tests follow. For each test case, the first line contains the integer A, and the second line contains the integer B, and the third line contains the integer L. A and B are given in 7-ary system. -----Output----- Output the answer in 7-ary system. -----Constraints----- - 1 ≤ T ≤ 10 - A and B are both positive integers. - Length of A is a positive integer and doesn't exceed 106. - L and length of B are positive integers and do not exceed 10000. -----Subtasks----- - Sub task #1 (20 points): Length of A is a positive integer and doesn't exceed 20. - Sub task #2 (30 points): Length of A is a positive integer and doesn't exceed 2000. - Sub task #3 (50 points): Original constraints. -----Example----- Input:3 21 5 10 202 13 1 202 13 2 Output:3 3 13 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) while t > 0: a = int(input()) b = int(input()) l = int(input()) x = 0 y = 0 z = 0 a1 = 0 b1 = 0 c1 = 0 while a // 10 != 0 or a % 10 != 0: a1 += (a % 10 + a // 10 % 10 * 7 + a // 100 % 10 * 49 + a // 1000 % 10 * 343 + a // 10000 % 10 * 2401 + a // 100000 % 10 * 16807 + a // 1000000 % 10 * 117649 + a // 10000000 % 10 * 823543 + a // 100000000 % 10 * 5764801 + a // 1000000000 % 10 * 40353607) * 282475249 ** x x += 1 a //= 10000000000 while b // 10 != 0 or b % 10 != 0: b1 += (b % 10 + b // 10 % 10 * 7 + b // 100 % 10 * 49 + b // 1000 % 10 * 343 + b // 10000 % 10 * 2401 + b // 100000 % 10 * 16807 + b // 1000000 % 10 * 117649 + b // 10000000 % 10 * 823543 + b // 100000000 % 10 * 5764801 + b // 1000000000 % 10 * 40353607) * 282475249 ** y y += 1 b //= 10000000000 c = a1 // b1 % 7 ** l while z < l: c1 += (c % 7 + c // 7 % 7 * 10 + c // 49 % 7 * 100 + c // 343 % 7 * 1000 + c // 2401 % 7 * 10000 + c // 16807 % 7 * 100000 + c // 117649 % 7 * 1000000 + c // 823543 % 7 * 10000000 + c // 5764801 % 7 * 100000000 + c // 40353607 % 7 * 1000000000) * 10000000000 ** (z // 10) c //= 282475249 z += 10 print(c1) t -= 1 ```
vfc_143114
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/DEC15/problems/SEADIV", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n21\n5\n10\n202\n13\n1\n202\n13\n2\n", "output": "3\n3\n13\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1430/B
Solve the following coding problem using the programming language python: You have $n$ barrels lined up in a row, numbered from left to right from one. Initially, the $i$-th barrel contains $a_i$ liters of water. You can pour water from one barrel to another. In one act of pouring, you can choose two different barrels $x$ and $y$ (the $x$-th barrel shouldn't be empty) and pour any possible amount of water from barrel $x$ to barrel $y$ (possibly, all water). You may assume that barrels have infinite capacity, so you can pour any amount of water in each of them. Calculate the maximum possible difference between the maximum and the minimum amount of water in the barrels, if you can pour water at most $k$ times. Some examples: if you have four barrels, each containing $5$ liters of water, and $k = 1$, you may pour $5$ liters from the second barrel into the fourth, so the amounts of water in the barrels are $[5, 0, 5, 10]$, and the difference between the maximum and the minimum is $10$; if all barrels are empty, you can't make any operation, so the difference between the maximum and the minimum amount is still $0$. -----Input----- The first line contains one integer $t$ ($1 \le t \le 1000$) — the number of test cases. The first line of each test case contains two integers $n$ and $k$ ($1 \le k < n \le 2 \cdot 10^5$) — the number of barrels and the number of pourings you can make. The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ($0 \le a_i \le 10^{9}$), where $a_i$ is the initial amount of water the $i$-th barrel has. It's guaranteed that the total sum of $n$ over test cases doesn't exceed $2 \cdot 10^5$. -----Output----- For each test case, print the maximum possible difference between the maximum and the minimum amount of water in the barrels, if you can pour water at most $k$ times. -----Example----- Input 2 4 1 5 5 5 5 3 2 0 0 0 Output 10 0 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python R = lambda : map(int, input().split()) (t,) = R() exec(t * 'n,k=R();print(sum(sorted(R())[~k:]));') ```
vfc_143119
{ "difficulty": "easy", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1430/B", "time_limit": "2 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n4 1\n5 5 5 5\n3 2\n0 0 0\n", "output": "10\n0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n4 2\n5 5 5 5\n3 2\n0 0 0\n", "output": "15\n0\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n4 2\n5 5 5 5\n3 2\n0 0 1\n", "output": "15\n1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n4 3\n5 5 2 5\n3 2\n0 1 0\n", "output": "17\n1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n4 3\n5 5 2 1\n3 2\n0 1 0\n", "output": "13\n1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2\n4 3\n5 1 2 1\n3 2\n0 1 0\n", "output": "9\n1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/MOBKUN
Solve the following coding problem using the programming language python: The followers of Psycho-Helmet religion follow a peculiar calendar – a normal year contains N days. Every K-th year is a “MOB” year. For example, if K = 4, then years 4, 8, 12, 16 \ldots are “MOB” years. A “MOB” year contains M additional days i.e. it contains N+M days. Given X, determine whether the day after (X-1) days from Day 1 of Year 1 falls in a “MOB” year. ------ Input Format ------ - The first line of input will contain a single integer T, denoting the number of test cases. - Each test case consists of a single line containing N, M, K and X — the number of days in a normal year, the number of days in a “MOB” year, the number of years between two “MOB” years and the integer X. ------ Output Format ------ For each test case, output YES on a new line if the day after (X-1) days from Year 1, Day 1 falls in a “MOB” year, and NO otherwise. You may print each character of YES and NO in uppercase or lowercase (for example, yes, yEs, Yes will be considered identical). ------ Constraints ------ $1 ≤ T ≤ 10^{5}$ $1 ≤ N, M, K ≤ 10^{4}$ $1 ≤ X ≤ 10^{9}$ ----- Sample Input 1 ------ 3 2 1 4 17 3 7 5 50 3 7 5 61 ----- Sample Output 1 ------ YES NO YES ----- explanation 1 ------ Test case 1: Since $N = 2$, $M = 1$ and $K = 4$, years $4, 8, 12, 16 \ldots$ are “MOB” years and: - Year $1$ has $N = 2$ days. - Year $2$ has $N = 2$ days. - Year $3$ has $N = 2$ days. - Year $4$ is a “MOB” year and has $N + M = 3$ days. - Year $5$ has $N = 2$ days. - Year $6$ has $N = 2$ days. - Year $7$ has $N = 2$ days. - Year $8$ is a “MOB” year and has $N + M = 3$ days. The $X = 17$-th day falls on the second day of Year $8$, which is a “MOB” year. Hence the answer is YES. Test case 2: The $X = 50$-th day falls on the third day of Year $12$, which is not a “MOB” year. Hence the answer is NO. Test case 3: The $X = 61$-st day falls on the fifth day of Year $15$, which is a “MOB” year. Hence the answer is YES. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for i in range(int(input())): (n, m, k, x) = map(int, input().split()) if x % (n * (k - 1) + n + m) > n * (k - 1) or x % (n * (k - 1) + n + m) == 0: print('YES') else: print('NO') ```
vfc_143123
{ "difficulty": "easy", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/MOBKUN", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n2 1 4 17\n3 7 5 50\n3 7 5 61", "output": "YES\nNO\nYES", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/CUBE2020/problems/STROCK
Solve the following coding problem using the programming language python: Rakesh has built a model rocket and wants to test how stable it is. He usually uses a magic box which runs some tests on the rocket and tells if it is stable or not, but his friend broke it by trying to find out how stable he is (very delicate magic indeed). The box only gives a polynomial equation now which can help Rakesh find the stability (a failsafe by the manufacturers). Rakesh reads the manual for the magic box and understands that in order to determine stability, he needs to take every other term and put them in two rows. Eg. If the polynomial is: 10 x^4 + 12 x^3 + 4 x^2 + 5 x + 3, the first two rows will be: Row 1: 10 4 3 Row 2: 12 5 0 For all other rows, the nth element of the rth row is found recursively by multiplying the 1st element of the (r-1)th row and (n+1)th element of the (r-2)th row and subtracting it with 1st element of the (r-2)th row multiplied by (n+1)th element of the (r-1)th row. So Row 3 will be (12 * 4 - 10 * 5) (12 * 3 - 10 * 0) Row 3: -2 36 0 Row 4: -442 0 0 Row 5: -15912 0 0 There will not be any row six (number of rows = maximum power of x + 1) The rocket is stable if there are no sign changes in the first column. If all the elements of the rth row are 0, replace the nth element of the rth row by the nth element of the (r-1)th row multiplied by (maximum power of x + 4 - r - 2n). If the first element of any row is 0 and some of the other elements are non zero, the rocket is unstable. Can you help Rakesh check if his rocket is stable? Input Format: 1. First row with number of test cases (T). 2. Next T rows with the coefficients of the polynomials for each case (10 12 4 5 3 for the case above). Output Format: 1. "1" if stable (without "") 2. "0" if unstable (without "") Sample Input: 1 10 12 4 5 3 Sample Output: 0 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import random def sign(i): if i > 0: return 1 elif i <= 0: return 0 bleh = [] for _ in range(int(input())): p = list(map(int, input().rstrip().split())) max_rows = len(p) if all([x == 0 for x in p]): print(1) continue if max_rows <= 1: bleh.append(max_rows) continue max_pow = max_rows - 1 if len(p) % 2 != 0 and len(p) > 0: p.append(0) max_col = len(p) // 2 rows = [[0 for _ in range(max_col)] for _ in range(max_rows)] rows[0] = p[::2] rows[1] = p[1::2] if sign(rows[0][0]) != sign(rows[1][0]): print(0) continue for r in range(2, max_rows): for n in range(max_col - 1): rows[r][n] = rows[r - 1][0] * rows[r - 2][n + 1] - rows[r - 2][0] * rows[r - 1][n + 1] last = sign(rows[0][0]) flag = 1 for i in range(1, len(rows)): curr = sign(rows[i][0]) if rows[r] == [0 for _ in range(max_col)]: for n in range(max_col): rows[r][n] = rows[r - 1][n] * (max_pow + 4 - (r + 1) - 2 * (n + 1)) elif rows[i][0] == 0: if any([x != 0 for x in rows[i]]): flag = 0 break else: curr = last if curr != last: flag = 0 break last = curr print(flag) ```
vfc_143127
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/CUBE2020/problems/STROCK", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1\n10 12 4 5 3\n", "output": "0\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/275/B
Solve the following coding problem using the programming language python: Consider an n × m grid. Initially all the cells of the grid are colored white. Lenny has painted some of the cells (at least one) black. We call a painted grid convex if one can walk from any black cell to any another black cell using a path of side-adjacent black cells changing his direction at most once during the path. In the figure below, the left grid is convex while the right one is not convex, because there exist two cells which need more than one time to change direction in their path. [Image] You're given a painted grid in the input. Tell Lenny if the grid is convex or not. -----Input----- The first line of the input contains two integers n and m (1 ≤ n, m ≤ 50) — the size of the grid. Each of the next n lines contains m characters "B" or "W". Character "B" denotes a black cell of the grid and "W" denotes a white cell of the grid. It's guaranteed that the grid has at least one black cell. -----Output----- On the only line of the output print "YES" if the grid is convex, otherwise print "NO". Do not print quotes. -----Examples----- Input 3 4 WWBW BWWW WWWB Output NO Input 3 1 B B W Output YES The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python (n, m) = list(map(int, input().split())) (row, col_sum, row_sum, black) = ([], [], [], []) for i in range(n): row.append(input()) t = [0] for j in range(m): t += [t[j] + (row[i][j] == 'B')] row_sum += [t] d = [[0, 1], [1, 0], [-1, 0], [0, -1]] for i in range(n): for j in range(m): if row[i][j] is 'W': continue w = 0 for di in d: x = i + di[0] y = j + di[1] if x < 0 or y < 0 or x >= n or (y >= m): w += 1 continue if row[x][y] is 'W': w += 1 if w > 0: black.append((i, j)) for i in range(m): t = [0] for j in range(n): t += [t[j] + (row[j][i] == 'B')] col_sum += [t] def row_check(r, s, e): if s > e: (e, s) = (s, e) return row_sum[r][e + 1] - row_sum[r][s] == e - s + 1 def col_check(c, s, e): if s > e: (e, s) = (s, e) return col_sum[c][e + 1] - col_sum[c][s] == e - s + 1 res = True for i in black: for j in black: if i <= j: continue a = row_check(i[0], i[1], j[1]) and col_check(j[1], i[0], j[0]) b = row_check(j[0], i[1], j[1]) and col_check(i[1], i[0], j[0]) res = res and (a or b) print('YES' if res else 'NO') ```
vfc_143132
{ "difficulty": "medium_hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/275/B", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3 4\nWWBW\nBWWW\nWWWB\n", "output": "NO\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 1\nB\nB\nW\n", "output": "YES\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 1\nB\n", "output": "YES\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 2\nBB\n", "output": "YES\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2 1\nB\nB\n", "output": "YES\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Roy has a wooden log (tree trunk) of length L units. Since the log is too heavy for him to lift, he wants to cut it into pieces. He can lift pieces of length 1 or 2 units. He wonders in how many ways can he make such pieces of the wooden log. Now Roy is too lazy, so he would also like to finish cutting with minimum number of cuts. So, for given length L, find (1) W - number of ways he can make pieces of the wooden log in lengths of 1 or 2 and (2) M - minimum number of cuts required. Input: First line of input will contain integer T, number of Test Cases Next T lines each will contain integer L, length of wooden log. Output: For each test case, print in a new line two space separated integers W and M Constraints: 1 ≤ T ≤ 10000 1 ≤ L ≤ 1000000000 (10^9) Sample Tests Explanation:SAMPLE INPUT 2 3 4 SAMPLE OUTPUT 2 1 3 1 Explanation For Sample Test #1: Two possible ways are shown in figure, out of those two in 1st way number of cuts required is minimum, just 1 cut. For Sample Test #2: Out of 3 possible ways as shown, number of cuts required is minimum in 1st way, which is 1. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python k = int(input()) for c in range(k): a = int(input()) if a%2 == 0: print(a/2+1,a/2-1) else: print((a-1)/2+1,(a-1)/2) ```
vfc_143136
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "10000\n339152592\n901134765\n325990816\n306462953\n818617641\n224260477\n301769667\n394813572\n835683812\n145760882\n752443404\n299115107\n164288931\n779456540\n323432323\n395609895\n912802357\n989399274\n117506615\n473689601\n218769577\n582411049\n635542914\n742016660\n131284206\n456864465\n217398312\n147140818\n969648932\n262509959\n759320960\n478577056\n369954926\n328405368\n323877612\n884118357\n205984580\n909302305\n269376643\n934291970\n154012036\n203484479\n984070324\n229376618\n264669386\n227338291\n173801881\n329723773\n224209485\n924931764\n213240245\n483589354\n546700932\n748608373\n411595085\n214857924\n193674174\n378272932\n737949102\n192192899\n351376289\n256116885\n303051453\n499057347\n863903258\n119590564\n712705490\n287706762\n433305715\n921295124\n435222389\n984268941\n127525100\n990300035\n686352817\n167591963\n131003482\n940038122\n961526010\n302416594\n256723415\n601423462\n730943435\n158095792\n409206308\n516537289\n302347764\n290205548\n765487759\n459104970\n130890700\n838417045\n159624189\n101800036\n937166694\n719059352\n240011211\n806312600\n972922228\n629508498\n233981705\n867715000\n868425375\n313279018\n132400295\n299843093\n692294828\n895530935\n534626144\n691576621\n521879932\n729102521\n130486423\n404975349\n884982236\n745086149\n755374316\n988749707\n892348976\n633617105\n505356957\n781321401\n975475085\n790420821\n883082980\n893787362\n663661670\n776347985\n422055618\n539666167\n326173022\n577914849\n511916865\n125537275\n552624236\n280573786\n929811494\n711076364\n466712416\n896348090\n959934052\n346005089\n462495730\n615429984\n872031918\n140551228\n382252456\n545834709\n349310820\n464296852\n902756218\n216111715\n548170430\n539600525\n723044655\n872839030\n496752668\n804967712\n148300279\n213802286\n251075347\n113860647\n971344765\n918608402\n783295013\n895607895\n838201166\n747023012\n685790517\n735212885\n818688670\n109241965\n939762443\n928706667\n465140791\n398975644\n712603417\n392480623\n645192009\n590548287\n569739098\n653647385\n800883502\n958241550\n509540700\n402906071\n164396545\n149620440\n729746674\n497432278\n537672417\n672120648\n934776824\n859397805\n643242738\n195063664\n123170327\n393991137\n648514759\n398581828\n956768433\n986979314\n827033250\n745186734\n734331128\n527526011\n198007782\n137513405\n853583614\n751202589\n763371833\n545413249\n939964416\n927404076\n486863699\n327518735\n100513896\n996689959\n862881345\n451804336\n642853345\n677871828\n426163001\n871274982\n695266006\n338456396\n122864173\n909581440\n873381096\n423325348\n991119931\n303133351\n312129314\n605306724\n505972920\n213906228\n705068956\n346295692\n744932179\n466582388\n859921300\n507679052\n605222609\n863082902\n402363373\n269773577\n613141226\n267074162\n197650204\n556183860\n320615745\n314649510\n813000202\n441645152\n624090959\n909868760\n197531612\n834795247\n566145169\n145198846\n300166150\n504674265\n831405786\n151083909\n917926862\n775548216\n119714693\n534489426\n623318664\n705305258\n810260162\n457980936\n599202263\n961215712\n304319639\n124839551\n860750322\n878743527\n426944552\n660283055\n400941677\n967048501\n397519886\n770867806\n149015820\n679152399\n630653862\n330697176\n959539182\n505322025\n307477238\n149148630\n942382056\n658631512\n648386868\n694729327\n726001955\n193016939\n452318527\n515721195\n722120365\n226384730\n424661164\n885641872\n952706212\n969959321\n359415017\n592303377\n305341777\n131852373\n951039348\n280697360\n241984311\n645403693\n726197668\n447932199\n499330824\n675461462\n217155724\n899446381\n293521092\n283847772\n307654797\n609573987\n512387261\n940424519\n289771627\n840395885\n924449311\n361263635\n955912199\n253990983\n790561530\n482918639\n959741691\n326894026\n826671261\n695668846\n282860026\n630611915\n310385344\n343211154\n155568660\n266441654\n479328627\n927726480\n304244078\n207626801\n107706039\n198841521\n680870299\n273841903\n378101058\n895004126\n787506757\n748956818\n330179694\n128448724\n896581804\n190749535\n675310537\n147785644\n961039746\n697561167\n344389675\n499024413\n831390137\n753180649\n549147261\n519424464\n486592229\n797068768\n252222621\n992998805\n461336696\n281409394\n806858172\n311905055\n261944539\n261727386\n408215712\n845976706\n556968334\n316866947\n206539330\n284682864\n419359521\n818754245\n631429564\n139960299\n610293977\n386815023\n870053936\n912158290\n581511464\n303546576\n465131845\n264425569\n657788915\n362014608\n995184448\n418056200\n585217149\n540272387\n322302193\n857208847\n986710248\n587995900\n280995495\n663776973\n168301769\n257054384\n486284519\n673687912\n976654404\n350896352\n530981799\n215229692\n908314218\n883115091\n719068472\n761796001\n777083636\n599067854\n143928332\n619085442\n202403853\n549003343\n457150702\n514501969\n330621823\n339138916\n138118031\n350550704\n789303026\n678217733\n433652604\n949649864\n875159458\n814785850\n617483340\n364657190\n148173364\n613753070\n275216089\n519458198\n380037594\n661809473\n177599331\n821470808\n509218067\n556745952\n221967891\n846833902\n460705301\n718568479\n367959114\n452490795\n186499744\n969945693\n474671482\n350716017\n256044386\n273881906\n571746489\n797262561\n652173135\n371955157\n913033011\n593581206\n759291747\n217943742\n564501129\n459848867\n516408238\n472769919\n337971397\n834204154\n951701255\n643739018\n974518806\n447229567\n810502241\n604530785\n610541007\n850434632\n198446972\n785113927\n386281056\n664623133\n784500245\n464228732\n275374480\n373589184\n662913310\n493648916\n971556249\n980888978\n149961139\n590830117\n493043131\n958149389\n722990046\n450901960\n672756815\n995541316\n545567622\n763954838\n945932247\n961566117\n483208294\n330014631\n347006992\n559370805\n173146141\n949757683\n234247353\n930618614\n399984448\n623726160\n915362697\n394896738\n664437713\n734361025\n947955754\n476686219\n674826532\n466021947\n426776423\n572400177\n365233462\n938662213\n476110822\n193696946\n422045580\n314754662\n353791588\n156843247\n484869389\n500899298\n863417059\n181901532\n439302087\n494254296\n684659188\n269786140\n250332047\n367611283\n900579508\n747353945\n139057343\n162909641\n928313502\n143512944\n926058876\n748656496\n668395238\n457424174\n659202475\n202308380\n236953485\n783053239\n327385925\n302536415\n234102367\n974400480\n285803899\n116939356\n888884312\n681146186\n816138714\n613675360\n582371909\n433066396\n359101015\n950013097\n705909460\n430200002\n247544625\n395838753\n238489062\n337005735\n672353031\n872933831\n895358792\n174296289\n258631648\n287701649\n345163626\n916671725\n190222223\n678458979\n274093997\n636950630\n437789298\n756628910\n714261771\n925952469\n595731107\n305906434\n464699525\n594664316\n386600308\n431329222\n167359279\n736517672\n631068590\n474880558\n345427837\n148124744\n311098278\n532281450\n468589902\n217993314\n230797710\n680075421\n110272170\n775952121\n783446651\n639546303\n655465652\n643781737\n455792740\n761477116\n742492308\n796803225\n310482401\n504261198\n566126245\n557937288\n441233084\n354858604\n579766094\n128313228\n649560507\n431388100\n827330894\n546140540\n911635907\n942816642\n743265146\n815229005\n502130308\n477078467\n430377265\n220524367\n321266001\n259236715\n796832752\n657481170\n387911718\n786796953\n560966066\n613929013\n643168168\n124009379\n752386634\n486262631\n463491509\n651911022\n264526154\n131913222\n328140376\n681341522\n408943679\n623685949\n917837850\n854274613\n247007001\n720539070\n886557858\n347459673\n371931267\n778638777\n589845210\n146547086\n179939413\n708441214\n886296053\n257401686\n590269133\n760283901\n991118382\n973584217\n827019758\n397805694\n432459340\n731949362\n220260993\n561959250\n750741882\n931677400\n843306494\n873681346\n628045407\n375010692\n407781671\n268173137\n450293424\n551185734\n838884708\n616400047\n607315053\n698775271\n447051308\n242859711\n138845340\n947985073\n836782392\n683887162\n205017525\n941349113\n806114697\n912447008\n678941742\n699668643\n869548727\n608021096\n724491497\n769051255\n615198171\n513223081\n259848505\n322015120\n444534783\n632701682\n994438335\n208174861\n937477968\n414934123\n107008478\n204214916\n997517916\n641152895\n210353875\n841714736\n468372645\n513845451\n115343506\n380147932\n379691609\n605882021\n413799030\n475369876\n587911313\n603122531\n453582708\n355207033\n386383922\n861760884\n970810869\n209590637\n902924265\n835322887\n844886156\n594015951\n480572506\n515751992\n217372224\n586161205\n509172379\n102523275\n767204105\n457266683\n925126982\n400563357\n335238629\n906196000\n454749553\n201051715\n506842518\n431129920\n417943011\n701135572\n768975932\n999866110\n456402177\n603785021\n245437527\n656087560\n346784278\n149448387\n135415660\n556577341\n428670027\n352827142\n162654548\n589733560\n115816973\n979250293\n581676389\n648524356\n440067814\n127208350\n667665813\n432316837\n169327821\n332785267\n665800761\n578091616\n161602444\n726670188\n582772046\n532357245\n830066995\n499481976\n551664340\n356786333\n890311726\n484371996\n350144892\n985321450\n530232606\n349937788\n813871554\n709852312\n868257735\n421692093\n904416436\n882097250\n766065302\n113120991\n713179404\n915649764\n512201666\n400507043\n549321980\n168756560\n656973510\n338388813\n558043750\n108864412\n202093727\n162695121\n613316979\n559481376\n122315752\n725532738\n943165635\n927003642\n951871201\n524102454\n210204618\n563335500\n848313191\n484040573\n649589910\n441284194\n429630820\n506489001\n654016061\n608027813\n654701094\n338874982\n497475989\n385733942\n714323506\n349025857\n517832591\n597086395\n599674257\n880038803\n261190314\n700446941\n733358822\n927658586\n898679612\n127621175\n465671640\n565840628\n990168865\n649608347\n113634710\n909366905\n995487383\n154550406\n535986646\n546736629\n435118033\n253509381\n796298071\n488583331\n393023076\n816963405\n384680724\n260742093\n408227040\n373686976\n450692203\n667471173\n935682789\n569082781\n427226887\n389938047\n208673878\n448693977\n746255621\n867039855\n227508243\n513187673\n379767969\n919856650\n879108701\n543029398\n176397463\n407933441\n769191106\n710191325\n399652046\n405426511\n757388682\n307774147\n426403423\n800348974\n428136783\n732812905\n648249673\n405476779\n369508304\n268479289\n971649647\n806943017\n923983770\n416564079\n136222270\n575971497\n373542698\n585265811\n800016932\n868124239\n896895758\n445986328\n105942728\n125678175\n549055056\n583786212\n384150057\n691220336\n836469627\n562283783\n472575404\n940420773\n604498090\n166931485\n502523310\n411638097\n574142667\n608376548\n701781709\n766211784\n878843900\n570511004\n460535988\n356182267\n992812809\n451627392\n123165244\n847646402\n412492728\n145340631\n230647513\n642259400\n389088995\n703736774\n224757869\n703124748\n854643679\n592054131\n384941367\n271496666\n924039161\n580532932\n410212358\n658074912\n676378068\n767629204\n637320321\n762841613\n833226642\n260837852\n581616414\n888327043\n480206716\n377625152\n815735068\n962508329\n220994338\n368432798\n852914082\n708255737\n158489712\n235220386\n661588214\n819914155\n708265148\n605505497\n457616014\n570723189\n561322095\n820821572\n365885464\n773500211\n274772074\n876307548\n158426543\n425866986\n597882821\n274836305\n672995744\n898261242\n630340298\n754631959\n950041090\n657262950\n824436458\n353282322\n597974707\n441709900\n476577280\n369791823\n325443537\n498853826\n816373011\n203681317\n562263574\n551713847\n776776702\n320635028\n827977756\n273931185\n815773495\n226222805\n612816233\n881997779\n999512470\n673385519\n677796133\n775752272\n888963561\n703619221\n507130435\n323211907\n982859650\n449446569\n941816855\n714316082\n787421578\n993656338\n246352402\n406141100\n961813452\n877291042\n969258876\n914623834\n285583916\n336371979\n170917575\n128388473\n352909340\n139143219\n990208634\n186105125\n628929810\n849634624\n273748369\n255026855\n521589199\n124485962\n286481533\n565107282\n916368758\n442569143\n509155330\n795900950\n869529713\n849031769\n228555420\n644630149\n147202723\n209068546\n550595543\n732895984\n796091937\n356293023\n789829410\n603127886\n650923504\n755860504\n543165052\n855089006\n545723408\n529533415\n978041720\n910212374\n516701779\n797394553\n907109813\n124562856\n451510206\n336970157\n910620403\n353344196\n428461547\n496437628\n595798797\n663425508\n393026244\n228002154\n421270502\n767093633\n191489688\n838270606\n445810004\n913007939\n574169903\n540454402\n654090647\n400433544\n479423730\n510855669\n192981756\n930278561\n580149374\n594684162\n217099711\n996199883\n457204307\n737441662\n446557709\n295056378\n435241191\n701574221\n337745403\n267997492\n841889663\n320654701\n473880776\n869355521\n668131049\n412919698\n329063052\n650181822\n644317378\n167648598\n326089691\n247126351\n212622775\n982076686\n103057469\n880723300\n487505622\n409330101\n246266129\n281008748\n789973857\n577318271\n517694075\n951825223\n534819371\n326706805\n848964139\n396983036\n532980447\n691986239\n895224571\n932723373\n332058328\n607352794\n892533294\n432205560\n115600116\n930939869\n122116416\n806775986\n270354049\n516195493\n390314373\n753687020\n326919808\n836503520\n188802147\n590255606\n759958420\n221800356\n376238670\n769796596\n940483643\n680340183\n654370088\n896012508\n104483139\n130609698\n513531824\n305464928\n895488780\n150040423\n512770358\n993105685\n529581532\n588283446\n103685946\n922101905\n675937999\n401847060\n460232205\n736588705\n681532196\n634174519\n217664324\n724080875\n887856479\n259742230\n988977894\n755112265\n184340250\n888293729\n540885326\n909420304\n225304617\n816014011\n690355011\n411306551\n140666760\n779062131\n397992895\n543115766\n724827824\n716596367\n526741117\n354206589\n590996712\n426147259\n220976067\n695164663\n930812435\n849287019\n273036930\n742510496\n926329418\n219233455\n606585614\n944592054\n135281442\n498847741\n701636397\n399244234\n300410646\n715313719\n730164319\n561200388\n882327975\n495377194\n521422261\n827793162\n149764229\n627848650\n836452212\n426940744\n280747867\n678262423\n592049118\n145338602\n647550974\n904670035\n105633526\n910579376\n153270770\n562474781\n557294832\n536518654\n501168246\n361718356\n632742294\n219138941\n990271930\n515127594\n170656232\n415777270\n253657053\n397408365\n355131067\n666284972\n734465135\n765475035\n436917841\n467024133\n650604037\n342613208\n100501869\n499975908\n569268978\n323326063\n689141892\n421957192\n836772554\n974427570\n190799873\n872969225\n199877589\n518899352\n560226673\n697422178\n185787391\n362436510\n563229360\n569793247\n602618381\n265040222\n457461807\n352909198\n708015353\n824133292\n710628520\n747529095\n743028189\n399090795\n443238814\n689663322\n610060188\n846560625\n481305205\n273568977\n847762157\n351362309\n231304869\n884038746\n612399739\n534173077\n122457260\n209007457\n770760432\n374759887\n137058733\n403937445\n371764981\n427447524\n256321952\n406886098\n408561125\n824287550\n683216445\n252888513\n558376279\n249381912\n363061501\n508718408\n942219942\n697395998\n733954032\n598963945\n275859989\n921991714\n134322621\n639297641\n590026971\n440600790\n277401221\n856478971\n197530704\n874517727\n623098109\n720110029\n391589780\n810896974\n351146852\n876717071\n305070066\n975233669\n415921532\n719913139\n306233526\n905666032\n774796962\n705221972\n974272586\n592082033\n544184604\n193905238\n413386926\n969600939\n630862940\n460651177\n221744257\n605957625\n569829711\n781780531\n561589783\n752338191\n381008895\n695169419\n671742744\n320413773\n980153629\n416964302\n932822356\n729824441\n408055169\n924081494\n936896944\n634574292\n441421535\n275548668\n878203661\n352604199\n977054686\n534120209\n579027514\n994332231\n107652659\n500005861\n487065442\n752864048\n760890229\n488785538\n975425463\n430862582\n257254085\n100750466\n624452776\n248533970\n147448341\n799447662\n219183789\n672209991\n295634595\n351486501\n373159441\n457042910\n428371991\n174589839\n617560756\n581525269\n328278966\n150357172\n871084593\n320872123\n377963434\n733068018\n726051952\n537073130\n942255620\n914816792\n215852050\n684045428\n853077433\n926731869\n675360818\n759370653\n676079131\n919659897\n783503343\n760380970\n515091794\n884549271\n768527781\n881947637\n827870693\n128654739\n777131265\n876056540\n571260689\n458979344\n543605872\n696246301\n152344636\n992592617\n743849644\n630253384\n110128180\n224240178\n213534438\n187559126\n224408511\n233390600\n369386774\n870363916\n889314392\n709394168\n395546409\n411399680\n955923973\n194273278\n674941719\n677665987\n750322716\n839492022\n681029183\n316358083\n485358983\n105579469\n557227342\n263825825\n511714808\n523531062\n436031365\n631622852\n144671410\n473887307\n489265714\n957241812\n790650268\n884863249\n212697913\n993916747\n890543945\n562778796\n622422194\n240360396\n319071565\n935850547\n715302082\n170534411\n916008504\n610900935\n417576225\n216945915\n884308641\n570623895\n199561745\n322215798\n589544786\n693969900\n218188232\n367995447\n194579549\n928899364\n202936162\n913591223\n799560175\n307384820\n209296688\n774948005\n684099052\n296360774\n818184552\n543688153\n243865138\n291789240\n614974635\n959749959\n270765985\n186132037\n639151352\n199341267\n428398888\n168712164\n717557194\n657219741\n785512703\n174163749\n123590393\n487744913\n744652268\n970190959\n304948910\n229222350\n346355768\n110326253\n243765818\n406685022\n216219389\n769383096\n325838074\n881446206\n705234241\n752983484\n541733834\n603221765\n966798056\n977144978\n488013681\n595770863\n675612121\n322669344\n416479907\n749789998\n133864514\n315868197\n243543478\n652396595\n922235358\n809795401\n128879882\n963986563\n523498333\n529635740\n260395963\n667127277\n787092330\n583125223\n124777781\n683671057\n498761043\n756573060\n452937766\n618701500\n618391160\n469127549\n648614265\n155337903\n669634723\n577969674\n324307058\n138583605\n395995052\n591678986\n775665557\n507100169\n528269692\n536539989\n919179466\n437608225\n350459261\n688096705\n947774381\n298736615\n845598251\n130068758\n563328850\n823987711\n170238741\n954180916\n868507461\n240494355\n300329409\n653609504\n247273283\n163150807\n200973203\n694874454\n606362135\n850128114\n218133970\n614139138\n155327042\n987386552\n364543727\n926431976\n537602486\n404602137\n458538991\n920289661\n198249540\n542819722\n802259497\n262998550\n546790388\n804848228\n201571446\n792342819\n684312271\n316188365\n683133716\n264576719\n116050450\n294132434\n972449665\n810020141\n966999754\n508996572\n409722838\n745968834\n581325419\n955938410\n554569600\n781170506\n836876856\n868256497\n758344688\n161508712\n215487256\n230652495\n179401133\n318171511\n120169191\n521125812\n504784173\n646258190\n509667395\n840387934\n748195431\n513375261\n942586048\n442835621\n953742323\n821347366\n621658815\n242485699\n926573665\n802728040\n229686511\n601223175\n884517771\n784090354\n859660643\n922369204\n585216971\n907021137\n148482399\n195937854\n668135721\n641991601\n508149539\n204946713\n851343495\n681748157\n749030421\n773699088\n274578012\n122096445\n700290866\n811036681\n112142589\n349554573\n717225635\n465789720\n270249130\n282671697\n286456216\n151753988\n988389202\n115618279\n947951867\n241276167\n260387876\n119051234\n691398892\n821255721\n580452248\n856431553\n472969959\n594387793\n394430058\n834154902\n847713998\n900929800\n451630311\n213728847\n630491131\n787865321\n871368886\n280904099\n946625566\n520729654\n252719639\n299060164\n118638567\n692584104\n420075538\n337522493\n124956663\n254147426\n120796481\n774664773\n298214355\n256116039\n725616054\n283887361\n900523095\n583513131\n458971228\n282142581\n589101633\n890842696\n189451296\n223785831\n388056943\n912842670\n599702915\n354479199\n129000371\n416018000\n789678782\n487894203\n392295795\n943562929\n244461269\n313609369\n680463005\n798828161\n543067069\n214011138\n811783806\n978615839\n368458855\n558921873\n106643665\n970953772\n752100144\n979994966\n358529351\n303395089\n837471689\n308306402\n705494003\n106255113\n699682486\n195047718\n118207443\n954709612\n885041411\n818124984\n543286170\n352653127\n936924178\n547386920\n897213432\n177237242\n740900483\n668976199\n554803540\n546846318\n780167427\n987089307\n882745043\n688960420\n573295475\n506318940\n567609927\n794563208\n227887582\n288891453\n206580758\n751723220\n424409086\n293445456\n488399759\n313661830\n498600891\n299796085\n780420298\n170418422\n779291531\n770579458\n726973773\n977331322\n560712621\n947105628\n478891219\n326423844\n230047637\n939843077\n510279649\n965441910\n695953452\n382635369\n964756085\n962591617\n729941966\n447560073\n516249917\n545633418\n728007802\n241682929\n128164224\n995193828\n153701302\n328432414\n622880061\n267360121\n637783640\n621531226\n779588460\n256358745\n885010188\n398041796\n853532290\n411993121\n653212231\n102047267\n473109593\n103409764\n275850099\n325000582\n816351553\n873764939\n592618216\n595359178\n476034277\n586686196\n186021064\n636422329\n910812670\n651732654\n848464309\n742877209\n727556345\n561487097\n224870113\n199857443\n860025418\n134937618\n245623221\n670522503\n186742871\n628606298\n695793410\n195336225\n909872122\n974994592\n322539313\n599941829\n844501752\n250604913\n946063676\n728200227\n637742972\n219512579\n252883382\n936898991\n832167768\n666770890\n908729627\n182287584\n922462164\n884953500\n993271159\n997312421\n201955223\n741515354\n773343040\n528863264\n473854370\n571056215\n964810897\n431912034\n551603390\n567127489\n710951229\n299541783\n519180216\n500897021\n424948090\n117837026\n758882914\n754362460\n405735395\n484240746\n642865947\n945685000\n790889630\n448659150\n326728156\n544353731\n756435810\n626495420\n406785663\n174194124\n312262394\n412480701\n727556162\n217095179\n848389455\n942518100\n870368167\n289805362\n460005484\n438898973\n947927286\n977986204\n764071352\n400267775\n907957069\n634927700\n389742958\n617340635\n967297530\n579940917\n374076453\n244475385\n467033717\n884864331\n290441706\n839979759\n434344812\n320738386\n340457449\n685266409\n732191030\n419227545\n353776761\n723042902\n198155496\n397024262\n559523193\n773416653\n439142097\n324262910\n327301390\n764130214\n737266528\n206661483\n702322391\n772484268\n140827619\n821933678\n580580371\n742868131\n175520152\n855403551\n601814610\n538447671\n443532851\n362724966\n160215142\n451701936\n746056625\n990410178\n684913823\n474644429\n428704076\n924715812\n719997459\n643311647\n320545013\n684449580\n562735664\n523479113\n499446038\n732011841\n813644318\n913813601\n527563912\n843897989\n511897661\n963655624\n684878877\n254101801\n832179144\n457319933\n415503022\n192299242\n280646928\n383285746\n712581052\n179842438\n933863873\n212280436\n453770003\n512303748\n930058288\n160516744\n247842518\n253259161\n400004782\n855363497\n619565574\n568405319\n220657769\n943725511\n641785142\n382008489\n495110089\n408178445\n407613878\n163367110\n304216728\n480961215\n599383967\n443542179\n758865681\n331805413\n286400789\n305378875\n381255875\n376805515\n201164352\n764535211\n782473731\n175729364\n359412151\n742952856\n761870208\n202052596\n607332718\n705291492\n696063008\n982036875\n165305392\n648820301\n363739599\n817275471\n677395476\n712625123\n747147717\n550919853\n546066966\n797151573\n144331936\n602452800\n188712284\n844351666\n334115340\n571135740\n472502277\n652962289\n480360915\n743224985\n777028587\n390382925\n954195019\n295533408\n285935619\n109973025\n577102814\n265447514\n988037456\n706532916\n173974374\n223766137\n357073004\n111858439\n481215625\n714154515\n591046723\n144563574\n133344870\n969496003\n649705429\n256610258\n203339789\n439452335\n906885837\n394548045\n359975831\n327663106\n271141024\n445989924\n348768049\n462148978\n992153513\n849246661\n820988344\n668618656\n549172433\n519466368\n393427939\n203256772\n485283324\n388751269\n424255865\n926853656\n446902972\n458660221\n270498879\n563723390\n857837441\n552541028\n199425850\n382304828\n568078098\n378691827\n743090502\n947130965\n206637395\n923469527\n787430820\n144435081\n659551452\n507013462\n561903285\n591444266\n625190488\n162017970\n708729831\n432258834\n813081374\n526942212\n312685883\n222168740\n858877382\n225713611\n865319740\n114179884\n642202169\n501683470\n108121716\n118868179\n535651566\n676704784\n196440464\n357748590\n495001959\n683065325\n441867036\n604937470\n850621761\n398112642\n651075745\n426424600\n887268286\n589311940\n927499142\n600392700\n652407621\n517755971\n100312130\n802914685\n144761704\n721480236\n369625698\n568733810\n881563953\n349472590\n355031559\n449223907\n967572002\n293382919\n501253736\n519452825\n398901771\n610021270\n108721886\n407061176\n626956455\n128763163\n721396013\n880101581\n903791831\n285507153\n776360992\n223586074\n980027529\n586525158\n853566866\n748889231\n118413344\n318392146\n702285837\n679116501\n821296466\n638875492\n599825565\n651233595\n567341771\n618609314\n856712222\n464211362\n247730382\n385459387\n528583423\n764863101\n741088178\n176392216\n221717199\n710011140\n620709370\n525897286\n345194695\n670230837\n909803816\n696234773\n887935446\n314602885\n965916466\n562087347\n925214522\n858101069\n295326103\n782129642\n190314867\n295855140\n340613478\n474437843\n351201553\n137600513\n912791699\n945608294\n409727562\n991444287\n351833101\n134430281\n559023484\n772982969\n773491583\n252711804\n863500537\n613297749\n704564636\n369139832\n394925370\n429376243\n317208014\n812734067\n395209262\n135348144\n961942669\n791212448\n438406587\n446751235\n936802932\n568351058\n393640068\n115083927\n431222343\n190515440\n510388618\n466516315\n154551485\n720070555\n354196141\n950583240\n707895974\n861825147\n248347579\n442977816\n589302854\n713715707\n558570677\n355000246\n134581987\n272679565\n271896511\n462169078\n612593930\n351845543\n739367984\n608646985\n437633027\n588437956\n106007031\n246589314\n667680792\n450595826\n938998530\n955754260\n637908366\n899605735\n822008085\n984776739\n946535399\n771465451\n334033208\n810284109\n873089756\n257127402\n140951135\n533339148\n996756176\n512674564\n605892504\n940648289\n360252214\n715306933\n960872282\n809924550\n263378469\n424982006\n848963263\n583127093\n529274088\n942709398\n671886126\n845163090\n421620211\n747571101\n806108453\n482911091\n966368351\n959517996\n708424531\n508219828\n234334686\n569578549\n658727637\n473198087\n525528344\n870956546\n505948650\n659332736\n359912460\n137066748\n101933975\n960669588\n246207900\n573086688\n915543290\n238755768\n870262245\n410336173\n255426418\n317166240\n676256636\n128583187\n279379194\n992661342\n251182583\n400769003\n930027985\n228958288\n941173809\n675216871\n713037685\n418847885\n988969002\n598659621\n419948530\n525502864\n276569437\n656349922\n991829301\n740961466\n129312056\n840757559\n861112505\n522315249\n839959710\n794244389\n557154163\n837239759\n367465967\n874629224\n663555867\n911253841\n457994353\n460257165\n439252266\n374162950\n269120677\n483177384\n224434871\n369570174\n220046369\n664486923\n361670595\n124130865\n274913873\n925874172\n745616351\n171802208\n457622800\n257751701\n489304724\n409030730\n761439268\n717696200\n917967636\n287690678\n199572077\n309808858\n830307579\n146945370\n801765252\n928979557\n778242850\n173039158\n787524513\n562807725\n542979443\n147513010\n122885983\n615231821\n287584513\n292799097\n482608941\n993309759\n702306594\n466894324\n796256863\n984751600\n141256903\n252551908\n663963328\n185145463\n601661042\n711552881\n859139798\n212485269\n192511838\n407294472\n423765791\n238515020\n652804730\n489723325\n629981892\n515771176\n721042754\n867057728\n229918291\n883297514\n263201931\n391488718\n309484056\n720958401\n396821553\n418986584\n675070607\n879584363\n762820675\n968207105\n387266238\n327156438\n442436581\n121997027\n108514308\n843537710\n789569755\n858633503\n980697306\n446634828\n794578747\n261476744\n695830232\n705576723\n621691961\n403151867\n954986179\n562442745\n668997915\n595245548\n884233530\n511013553\n614082146\n272792294\n411331435\n838200203\n175839428\n523284254\n307975444\n967892509\n803798004\n409425668\n269855218\n716354406\n160565610\n742436510\n260870476\n795744336\n710696771\n279287328\n347760925\n789327437\n643257558\n539579853\n645488682\n420616739\n703587051\n229090984\n433590406\n346012094\n795540737\n691318164\n209594643\n247563048\n819456323\n486817130\n644535936\n778974280\n676159775\n950669678\n621038874\n130606595\n981990834\n130295947\n503884546\n976096554\n220289449\n346340333\n426678195\n583111297\n253590526\n713191481\n792972801\n452780938\n654100420\n994989853\n483813140\n772148973\n453901566\n759262133\n329820255\n907855809\n298760216\n691986874\n726105935\n210699536\n411872256\n830720940\n823973530\n839881590\n642280424\n554364990\n228613507\n771522014\n198142548\n548290940\n450931660\n311368436\n805506436\n577849801\n977604974\n302764683\n672377657\n780926098\n345954861\n981002087\n735595683\n360700520\n404252127\n647027737\n255903876\n509981748\n917562852\n691126569\n456606283\n108935692\n533856999\n800617183\n832753765\n469225349\n455284339\n630436533\n143782250\n493716657\n949219991\n423098585\n661802766\n568340337\n716225737\n554696039\n877484386\n907390480\n752865356\n520541692\n783424864\n381108904\n395161723\n267160849\n830775538\n768555948\n132919302\n638927479\n582832316\n362969880\n908294430\n958547723\n811252441\n502854672\n598509430\n993641504\n942488186\n411938589\n316590237\n287545423\n147915880\n731190172\n381274913\n204755193\n257678807\n443125607\n757400086\n938161708\n232730905\n346218136\n663626149\n954691768\n690369204\n648345092\n641772503\n293250560\n753326229\n302582407\n864790282\n730641375\n531392964\n960402377\n190083628\n833495818\n140392125\n463369061\n788137772\n133897759\n136623871\n398184343\n642082357\n820263446\n373362769\n269766018\n357021336\n311232812\n868423460\n724168523\n543018111\n183373828\n601714672\n260965091\n632620613\n297625185\n443054285\n118942329\n630836178\n619451189\n607707472\n914312588\n402208323\n736132522\n105352463\n814807491\n974530271\n494970207\n211626768\n754596553\n724999077\n339678886\n655616160\n402477308\n213132389\n924277419\n431170986\n761132369\n775652624\n681431585\n164777686\n668614435\n533196419\n351297735\n654675072\n671828546\n310585119\n685320679\n891403170\n691911893\n226496215\n160591725\n973744146\n814100995\n675238937\n249982332\n329155473\n422676177\n294330009\n699278226\n382233353\n672572945\n866697098\n350625830\n712226254\n286516415\n685803079\n621058963\n493467396\n332315904\n255918778\n171464335\n959239445\n594718261\n723447895\n414100214\n109106014\n589456275\n269919682\n316368622\n303691524\n297256752\n348901984\n497308380\n108421624\n460455067\n201346038\n393101903\n183363314\n554065706\n564645028\n698675882\n176470807\n961973664\n904406016\n819726566\n154298027\n536555427\n431150372\n223876902\n469275458\n849685171\n614796750\n726045258\n612556351\n942021891\n827872744\n314555934\n537615296\n541076646\n693852341\n302359371\n949427830\n771952323\n850377801\n459254499\n629931529\n530681674\n302502788\n520868996\n576225666\n129661055\n755244280\n259513663\n565658584\n256908177\n545698166\n547833707\n190986453\n979218190\n879800898\n542329916\n196595706\n891608651\n162166442\n421329069\n751837080\n447427830\n917836105\n250829594\n365975524\n685179074\n211176300\n866400950\n244546074\n289301999\n979619620\n414076351\n581982528\n742907378\n609627586\n754599834\n809326720\n451693279\n358205405\n279769299\n507998461\n888854417\n677145027\n505053097\n963757417\n392926569\n630516895\n397079445\n151465324\n899822779\n381893500\n235588780\n308122959\n361504679\n574299642\n398262357\n156719710\n787875321\n823536029\n746741031\n735313089\n787462889\n663859457\n260991082\n825104100\n237886084\n331151390\n921734591\n835063416\n487091849\n848725089\n536722274\n667006041\n550715858\n215010434\n394134660\n951723945\n658948829\n855053716\n956694816\n432711313\n871584671\n133241805\n363305756\n508644638\n948813879\n297995408\n391628177\n505773199\n997904499\n929732664\n332322648\n451580245\n907028555\n733157144\n259827475\n389545488\n892990869\n377263193\n833147975\n941532538\n438990643\n380573767\n648281208\n892467663\n453859768\n874729177\n244890772\n666202584\n165967592\n434689473\n902749649\n905434571\n432842532\n678047430\n166630208\n532377168\n968317033\n531095252\n884364575\n327377334\n192181861\n817769102\n106407478\n437978953\n308383399\n526702016\n399651203\n830603429\n382812784\n649719258\n118864871\n250505222\n379525794\n875069768\n842385139\n928401747\n814955026\n385634616\n249697798\n985678783\n826213145\n459269077\n690637067\n833903827\n944717500\n984341697\n416518225\n733890110\n224502960\n751947728\n789303063\n846109483\n812847787\n588278830\n324212044\n956409161\n599969702\n818758349\n839376232\n630310044\n295051892\n511442973\n711747336\n512455614\n703350640\n122612824\n249402178\n254361345\n349736532\n653363016\n844888415\n972112284\n671588435\n471496064\n668449904\n241097727\n884235571\n283341034\n708994738\n118758143\n479261832\n546972785\n175193758\n660568012\n191670964\n734998946\n968897013\n665591415\n902296295\n679401377\n931423949\n531277747\n338182446\n453575642\n848801603\n598398604\n106842403\n167956985\n472831652\n551553280\n489881560\n210457493\n778297396\n612484967\n441577508\n809643590\n808210338\n810126387\n340710974\n525918215\n663385511\n133733765\n472505936\n213262119\n303552112\n973046765\n190840956\n831027647\n544778279\n649321869\n986334900\n548329003\n348399922\n892365609\n116832083\n482308182\n662997051\n694784222\n592760946\n946802589\n211307162\n147454160\n601336082\n999785195\n510962295\n139371815\n481497478\n616737920\n882006723\n809759969\n879195977\n541158849\n709012923\n630882440\n104102721\n242524663\n197785473\n503920098\n210706885\n419861280\n119398410\n920102882\n540884434\n277380937\n209459466\n241129463\n972319421\n322942614\n251925144\n353711862\n316938183\n607792007\n639099686\n124373650\n373459284\n114460215\n643197654\n105045542\n584745799\n736838709\n467704166\n343639395\n325182556\n794716108\n163597474\n262031095\n216121632\n555450627\n536714179\n891320624\n380324502\n259733092\n394338471\n670079491\n142331726\n543035507\n496478805\n961113526\n300571752\n716371985\n436472019\n263329498\n497698938\n944049861\n243364997\n636607207\n777637267\n204114385\n781703390\n465991573\n753189576\n360067516\n663452557\n156235438\n310471219\n544866676\n661359590\n296875748\n565949775\n373765521\n349275399\n724002012\n659017489\n467960117\n319319600\n804522997\n441230226\n954481336\n374890920\n363549963\n710744881\n852039831\n512418013\n907676558\n194439966\n232433507\n581401216\n421064721\n901862529\n790857632\n729428590\n418412855\n976734521\n745785644\n350962138\n525399005\n730089817\n764326612\n164497068\n794241030\n361043363\n290538940\n262287343\n275234815\n438124083\n409307467\n809235134\n826015780\n462454901\n104261705\n502139253\n913953353\n587120562\n560557995\n446063674\n319036401\n598868719\n554073529\n214158237\n382177715\n700747066\n985047486\n119395908\n267627964\n821261592\n891218407\n202906420\n198105103\n706658585\n827824727\n502383849\n193762635\n173184435\n865556118\n491455551\n260501485\n112415617\n238182580\n780123681\n138109677\n490251480\n803776954\n516794968\n639409724\n673703509\n584542458\n319608624\n916648277\n140467004\n909569672\n397180643\n575108631\n794831126\n140253790\n482157399\n548400461\n905071381\n717203664\n786642243\n388881547\n194466841\n319159789\n754174695\n870379639\n177110201\n106946052\n838776551\n671391917\n569937929\n571555605\n812747741\n280277030\n908921841\n797927669\n419837316\n798078208\n728273066\n506912279\n663802930\n803828244\n271418271\n409672511\n419515376\n369482227\n799242121\n898508442\n379842175\n780541595\n541367348\n658406316\n432780789\n935388815\n616804782\n510612651\n530242928\n292228787\n584092490\n428757344\n795600021\n846192384\n897228913\n385955419\n600491534\n729206900\n201787093\n784598767\n119563583\n702120037\n741610197\n663077141\n621786805\n735983467\n134826988\n705360952\n832350803\n530063040\n469125646\n709853305\n963187915\n809213517\n742212858\n470543077\n473322224\n475528807\n776550672\n661683932\n238416298\n130889978\n485488874\n613073272\n927487141\n203006378\n132287357\n569121247\n789855069\n864053123\n490381911\n221717725\n297492606\n888483701\n485112746\n827315208\n125948975\n586384860\n552851190\n481146808\n648768673\n237701809\n756028920\n362938601\n392940398\n281787720\n481470497\n950968363\n524631966\n463620765\n244873616\n679199185\n987910819\n413109705\n146326771\n579958531\n709799614\n769351476\n561955788\n495560143\n169787115\n326974315\n915055993\n990937790\n346299068\n870256555\n146652712\n966096454\n376513064\n222656285\n672530194\n651792319\n685050122\n534176705\n677266601\n922965851\n796194969\n488028696\n563768892\n714337862\n733696491\n983651134\n576486802\n601521938\n780839855\n940895174\n873328767\n634730318\n558131719\n318529484\n402649239\n725962180\n764065199\n211197109\n256843590\n623995726\n504093947\n583536793\n382625253\n606917964\n912615090\n897501059\n930165405\n517671236\n526346515\n560918785\n827499844\n297157005\n205972087\n666588421\n779702328\n280319229\n757179887\n850477220\n199249969\n215096892\n535143663\n752203407\n745531741\n460888533\n978583267\n218227774\n596664103\n611950529\n345267299\n811143473\n599971539\n267329544\n505179004\n709980733\n582859568\n305458500\n728797687\n461459344\n265325736\n100619379\n324209352\n772933889\n428876282\n532414549\n923753375\n731713754\n871483566\n409248225\n603759839\n426069654\n246593654\n531556146\n198640481\n144556312\n249865926\n145166270\n787664901\n305147943\n213518982\n818485100\n890869338\n707922989\n419812769\n397093299\n625116979\n231219725\n893479751\n419960347\n853477090\n932785891\n820208853\n405383931\n628720820\n298446125\n625371228\n948400420\n931175035\n540850107\n384484339\n440999266\n470933390\n460381578\n889742937\n353231868\n128885360\n103143821\n237516341\n604090594\n589619919\n254351364\n138938240\n370416623\n685519044\n820730384\n673097021\n720765131\n412278823\n370099286\n541552460\n405514039\n972178041\n732404009\n981835238\n283304658\n239003223\n347674543\n885662814\n256593223\n478605912\n549222151\n909389645\n703710163\n582136953\n854298943\n446384702\n760032196\n618700445\n965224236\n644481654\n921157895\n989662116\n710887735\n824472821\n108385948\n960839032\n995082677\n691274707\n175248346\n747823363\n169340883\n641568535\n301595733\n194285313\n968475161\n779883061\n719683104\n719263869\n893543108\n764714291\n930002755\n137399884\n681097198\n752750542\n639318561\n398545055\n675514263\n656468148\n346407572\n897212438\n514412131\n737070147\n193986861\n435553367\n410393947\n313541133\n486100353\n228375351\n521988346\n430612923\n415063638\n522709994\n804948931\n647633915\n936864498\n655578855\n804368390\n220048318\n565581329\n602803599\n101551699\n871215458\n560698513\n750088803\n714473571\n201769112\n525649037\n377466135\n443675872\n555467068\n402268688\n334646092\n945052016\n449157696\n812415721\n643969874\n715653390\n291394989\n822236287\n360086304\n633602281\n769955006\n603566748\n805847809\n662863192\n202679477\n274974607\n723947537\n947720632\n623858204\n122331806\n254629860\n174502603\n108022468\n966164687\n692002838\n514019561\n769038178\n420746890\n212716729\n634064309\n849743122\n633698432\n954664866\n576559168\n736634537\n166927306\n500758977\n291672145\n432494132\n613842058\n532763010\n395737510\n420368987\n586000749\n870876909\n119155415\n302319650\n785472520\n563335261\n631636577\n127301156\n945588669\n133476395\n337250510\n401969475\n854136598\n594630768\n831505695\n788704969\n449245109\n719801210\n838488990\n695600742\n791382271\n398517497\n952085762\n640147210\n743559423\n878650816\n106060935\n372786250\n494427302\n819057510\n316522961\n334267202\n760171299\n454783395\n716811882\n792107550\n243732372\n521344957\n366850035\n646368493\n980230320\n351774434\n829668511\n151581106\n550529240\n170861669\n789212526\n126216846\n143798082\n862084762\n599206038\n908175769\n507185323\n673257010\n724622662\n185287516\n348843730\n808128345\n326090627\n169075234\n947181897\n525172991\n935863865\n658354092\n983456536\n681801238\n368050026\n428291943\n791374479\n221697063\n651382673\n765760374\n773033027\n692339326\n230134269\n342478580\n828708741\n422935787\n594765042\n673702579\n660326664\n926903839\n213460451\n786604367\n459634046\n869563590\n118543284\n478611127\n906547182\n835815806\n390353492\n928624596\n549061362\n138265585\n567092940\n792814346\n281218265\n611021908\n244092851\n119337387\n691668442\n424673161\n368807600\n745472730\n579844467\n374833647\n518011912\n886581339\n192152292\n370192726\n772974374\n108089690\n441027368\n297721582\n585916887\n243370140\n642570301\n388840940\n278363464\n304277012\n583207678\n867931136\n523933398\n145643766\n426642243\n128073619\n878959071\n671115182\n336529163\n139792741\n630311490\n102706941\n780074703\n790438097\n877236547\n965311386\n184987294\n928086257\n673990967\n271765970\n711522816\n579250821\n579707577\n433314220\n593371885\n927634313\n290371528\n460131333\n107071888\n741247857\n279753855\n264763116\n376434923\n413726996\n577498392\n359066769\n130732507\n193079773\n306160666\n632245835\n367795606\n318602342\n754246511\n129545546\n260838184\n310013026\n474860952\n505513604\n331925297\n235221057\n630588901\n165411606\n804399483\n764087589\n597105483\n901882293\n867298195\n683059379\n632163578\n653127783\n337431572\n198209720\n743132379\n251425681\n128087440\n885038457\n715615363\n405396055\n534735485\n775941422\n601682904\n256736364\n519740703\n201283386\n288403890\n913690638\n280606394\n986053949\n971538334\n238391695\n358186579\n871242226\n388250522\n683137978\n837973157\n940852532\n360348357\n275942697\n154867518\n529530107\n360223460\n169888682\n707973558\n914622893\n352248616\n558555842\n313808487\n169140067\n557609234\n233562688\n142261824\n481637547\n795354030\n993551650\n817439935\n399151668\n338728862\n837898041\n986630350\n850546429\n677789301\n293777599\n999679569\n388043000\n974373956\n736623018\n918389655\n699564543\n642345046\n942267269\n482087816\n171522168\n756138576\n666769575\n639248092\n569234283\n106514140\n663741276\n392729610\n685179316\n768924654\n913614042\n176327943\n190434161\n722155199\n241477842\n190266038\n723641662\n343184965\n648332068\n489454528\n868961275\n299207975\n568818130\n546092091\n944828077\n516458262\n492496377\n806310319\n354679201\n527906224\n194325772\n332945235\n459959458\n896363529\n190737622\n173493231\n694917978\n474145256\n520899681\n430779497\n923757851\n248266327\n300134662\n697800622\n886128620\n964826750\n979477550\n881720138\n266463747\n818841865\n292990080\n814000215\n205127753\n638919215\n575183906\n528105247\n813021598\n612208892\n795660273\n805740580\n359319315\n487713015\n692049887\n609544242\n859236675\n319876063\n454378060\n108087452\n901911418\n430426188\n769036311\n868644409\n338455383\n817288615\n741584022\n109651912\n504601801\n381552716\n473146130\n369707059\n856853541\n796509557\n478668107\n875022679\n106156934\n599739009\n517479370\n149416022\n910406281\n854471093\n601679117\n611956473\n370587051\n257410820\n215917037\n676474169\n225350569\n345051683\n633107658\n887574827\n977098878\n197143700\n919732022\n443244990\n664726838\n141054952\n594211879\n419196264\n451050824\n367239024\n447644808\n254971053\n847002830\n630029718\n580478079\n590495493\n166289972\n512211662\n439529902\n121458903\n376957164\n913908224\n880458954\n407966651\n827718257\n241942067\n848264722\n530464094\n458615233\n312701830\n784485554\n218484860\n482328725\n540491750\n385712248\n782383642\n772515261\n891719800\n549502367\n896062865\n230579365\n642716437\n229534834\n573076679\n224023396\n353361194\n645036376\n519045214\n552012655\n557259028\n114224707\n572615906\n880757524\n399116561\n177440485\n559343708\n913593716\n434264713\n541550821\n338212149\n274815436\n585799300\n948012033\n890174290\n739966987\n271662401\n816066658\n245343807\n929089559\n806543510\n131073182\n671071258\n626835775\n378225562\n514953610\n380960245\n268115002\n534521425\n609555485\n704502529\n107644207\n783912301\n657565609\n511360722\n880677426\n830427850\n763017604\n162833707\n572669640\n787647876\n838997233\n254968447\n479569883\n352005662\n978583408\n606114612\n630542694\n886788774\n582201825\n121233868\n666320985\n964081906\n326579844\n985549188\n457207456\n882737210\n521972398\n363758372\n129872498\n251105111\n288009315\n172334374\n880026653\n537308977\n227183780\n359888002\n775907446\n542017611\n465578500\n687773474\n804180391\n585645900\n753925386\n123630445\n870163178\n279281998\n854847083\n150309091\n991148161\n108178782\n667668585\n824394187\n112014140\n560841585\n376543315\n797575286\n269629482\n344865127\n853809841\n545647560\n536171453\n139651969\n322818139\n512208162\n237117855\n575277625\n711937208\n836602742\n493236130\n541656684\n272635142\n155954112\n191934002\n824197372\n174030181\n963669621\n315268564\n373957815\n337828660\n275601119\n274755425\n586790101\n347404491\n567138022\n819108188\n705664027\n734370107\n276073946\n922039376\n189551654\n118649300\n899879869\n914980113\n346681996\n578187663\n579849128\n935085393\n493248501\n882436029\n366610660\n467226371\n457403167\n785954056\n725299578\n925156484\n457262714\n238065166\n336910184\n584020893\n465183199\n596263549\n138433699\n773531369\n119489514\n359913946\n126913924\n263626620\n360905599\n588069324\n237847875\n719771356\n332555557\n487291455\n229170948\n426025977\n465688084\n727655447\n242133313\n990159065\n388265435\n364045966\n667425517\n311425444\n644306329\n945580630\n370872656\n775174854\n411505207\n465765680\n832973857\n842106926\n409307753\n223178130\n378412629\n469669038\n150607547\n524772308\n127806781\n112218650\n542727804\n760346932\n496707086\n353834084\n613825326\n862375177\n369837497\n265062703\n152081433\n396343046\n453995453\n233436046\n817409114\n820406847\n264372329\n101589260\n106615556\n864341003\n917478790\n122091267\n457163746\n406237377\n277565106\n316401662\n253525895\n647283998\n395605200\n670503498\n319782340\n689621147\n219678653\n884977651\n405601167\n162049304\n814538662\n642273890\n403941994\n268532772\n635857904\n345779040\n400837455\n494164659\n761934609\n188643428\n749927517\n626365435\n945986414\n769685813\n207446508\n888478395\n364595996\n827738037\n738179037\n865873561\n264630369\n459553175\n230347792\n131464949\n171997545\n102936943\n714820312\n842559918\n196081792\n762014025\n168815428\n626136969\n333544746\n767492702\n691008562\n286005924\n451239915\n657349681\n788884082\n581272217\n539736155\n929851235\n321113849\n104285749\n833597598\n264592371\n779021715\n242043997\n716583428\n308278902\n398155033\n111960242\n983585517\n522626571\n534838830\n200647119\n981316427\n829754321\n819923561\n159289052\n341354753\n654154189\n420888948\n848922692\n612334392\n971098997\n311498454\n245909310\n295058918\n560981859\n463083966\n697127485\n522413801\n909746196\n691174719\n289839923\n954348601\n482023615\n929095273\n849908907\n722619463\n898367948\n811946783\n147246920\n364436467\n518605688\n232599441\n807637277\n645391802\n341093942\n845329688\n151227420\n526368400\n632358687\n151629090\n438241952\n240914370\n229970713\n488341432\n104410765\n955106294\n499746240\n818461634\n285222355\n216900063\n590940652\n670448117\n625569141\n956102389\n917514428\n454298750\n557702905\n346640650\n341188406\n784191441\n452964569\n110864962\n876542259\n217779007\n281341179\n197934346\n912795641\n482792800\n247407436\n427072700\n499778333\n822674974\n653837655\n473707392\n268859848\n989946213\n856863354\n344608307\n995843538\n710610060\n337790975\n770666605\n951154977\n438888282\n552789144\n765460761\n428283392\n629461793\n689371950\n833491210\n969275593\n906899966\n985537046\n901583056\n478830745\n492216469\n560709394\n970362469\n226069949\n911351728\n203333866\n734381522\n952030590\n933050001\n361566970\n872224072\n131459675\n280312077\n147658138\n744675456\n793841638\n891650410\n214677398\n668934196\n417183690\n458019554\n709195120\n858516908\n234872378\n146473372\n964453265\n210051193\n648890514\n211498251\n741048147\n312724162\n795896032\n492050224\n334676102\n341473080\n966348875\n864216717\n855445534\n236449222\n600235044\n285990775\n149976503\n107139527\n325818924\n886372842\n521891026\n879800865\n399353409\n994192479\n725592461\n318733377\n621182060\n532488172\n660874324\n473231875\n353315785\n156977948\n343620264\n860468518\n860204106\n408996022\n467619502\n875570913\n456070491\n837130866\n291057715\n444146054\n706374403\n754264945\n137912410\n533237800\n722225804\n693589416\n818316879\n581486975\n930372856\n430038499\n137736452\n958244356\n268978183\n848462016\n281701075\n353078295\n940717162\n699489796\n278461727\n377274102\n284188392\n252749172\n658768250\n503271472\n626670327\n540876194\n853166048\n515066975\n695866694\n154815279\n549220868\n155597718\n671309916\n455375337\n393160197\n395997646\n362316726\n875066524\n958496403\n926049590\n401463731\n915618287\n312438107\n775521963\n582248308\n684357623\n844174213\n106399471\n108342058\n421910165\n165934194\n879509324\n532311490\n810102598\n491807104\n691918940\n890493096\n657658354\n308852404\n712598122\n360547518\n998527630\n243845602\n529598125\n468105273\n516586406\n248918359\n348144771\n774781809\n106158698\n480346995\n195014450\n407259990\n821994110\n843337919\n404837348\n450454226\n923668342\n327124671\n291271446\n256015919\n877005358\n728750285\n704146807\n414949592\n254041320\n268074774\n371191124\n561694170\n138437921\n470585747\n218355601\n321993644\n113484209\n135376454\n373517150\n209155960\n569214428\n579705274\n359855021\n174851916\n751244393\n343301893\n237560116\n755903042\n718870394\n262446085\n741556772\n365472146\n506417022\n505909752\n441635599\n731057332\n731871732\n552350591\n155034197\n518948206\n831163708\n262527974\n422901087\n425897557\n659249861\n270161063\n507226758\n987878879\n550234720\n373882076\n523411885\n287830009\n246736001\n151338511\n686327983\n247709676\n277050769\n769855621\n640670229\n511427578\n432113231\n603950767\n180283788\n947648897\n421945663\n849279745\n735361481\n644525363\n411200158\n707210110\n114536563\n406789404\n250992424\n651137283\n981386728\n229147326\n726202578\n319485614\n571624974\n608138325\n555116695\n873685096\n960709958\n623662296\n429198931\n271370057\n144964432\n157020282\n609126124\n252681125\n851808446\n457252823\n149367129\n761736260\n428458907\n458410478\n510798805\n530916040\n582898421\n649917441\n358538096\n659110538\n487330752\n805618519\n492403196\n249580124\n635183889\n847117284\n918898448\n946627275\n593790665\n690377044\n415250095\n862403800\n401311657\n151081029\n327848459\n375792945\n816092471\n291480468\n340884528\n385692099\n788658756\n101011413\n643313606\n915399707\n520258318\n837207253\n524839922\n823770783\n886649854\n315379177\n645543708\n976797727\n343222995\n532609205\n244635699\n316578255\n160447955\n812511477\n620264089\n354508125\n921985135\n767724046\n623020190\n726555701\n109386331\n123025931\n514797255\n286179993\n987586533\n484830042\n869325496\n925519642\n880988976\n718918104\n197528907\n115651241\n739197389\n760137955\n944997385\n385144772\n633304515\n215318561\n112801645\n333278235\n345284401\n736817704\n627911374\n439931612\n707101274\n790933552\n224800904\n916962460\n213431653\n605789805\n879900728\n714554082\n632367316\n225480282\n711676489\n458708163\n669167473\n750263302\n465809149\n759966083\n974808568\n443384945\n994220042\n529335807\n190977607\n530905000\n444359618\n764439982\n606217146\n407116720\n555195211\n662728657\n701174785\n633557645\n234190774\n591137586\n177621201\n213458895\n333849697\n779791809\n542440478\n575569807\n384977983\n421483034\n274738550\n226687692\n825421601\n140716112\n485571635\n111084981\n376173225\n556137601\n160269297\n505261015\n114116639\n779060424\n976882114\n680169920\n112978394\n154776263\n968341713\n397398516\n552115728\n699687606\n157501044\n245801168\n753011981\n807556791\n493070203\n832594462\n393854252\n540659348\n911447791\n365526640\n881930893\n987583864\n439337282\n928707049\n225402659\n151104752\n202362749\n883770675\n910518732\n638313017\n181581083\n435389549\n186058979\n253209385\n524790880\n778758088\n463551960\n250873034\n562767219\n994016861\n921530569\n901740122\n287072029\n148384329\n131486472\n432475308\n447432008\n958358032\n127958102\n818093217\n668285389\n934108807\n562976729\n955623500\n597424386\n152051505\n292287862\n627405498\n540866034\n388466172\n147481977\n531346117\n711344084\n176721695\n778208919\n542112489\n428238156\n617728702\n806821712\n991430453\n379310601\n449064351\n223763719\n563000429\n168011986\n611535221\n587916653\n203333671\n520117405\n280375123\n569748124\n806096929\n384380864\n857166335\n793862204\n759253569\n201988615\n626400692\n175166200\n455524490\n808875866\n122761009\n498046929\n336426906\n331020798\n741352098\n962594126\n116037561\n139814754\n522108965\n393257333\n339429816\n909141780\n141249054\n444056451\n529977933\n438271482\n737140066\n973803353\n853211363\n900801408\n526629552\n720606476\n260379060\n763514746\n690783917\n405975892\n754071381\n350263669\n424591834\n896302455\n816704017\n594703869\n142626674\n595864811\n487476839\n669867769\n117840715\n645248533\n866091023\n378792771\n297564820\n713402608\n756389629\n256514649\n966514169\n895559097\n438698074\n585082344\n350870855\n984656415\n147868526\n317888372\n927823297\n289322314\n569809184\n997022768\n599393724\n369544445\n498661469\n752479165\n166770013\n949324488\n289902128\n175835324\n825590235\n744351730\n317672431\n470495806\n997301122\n378538621\n253235227\n333342551\n114054151\n841614840\n834014571\n715753277\n369164103\n610554639\n889137380\n387971629\n276861569\n419130748\n313797970\n934245302\n397898305\n221806289\n215260494\n371866141\n900349756\n143057053\n315065465\n982116424\n937191240\n512302584\n971826175\n297210484\n830420413\n156325459\n884147781\n530257025\n329215619\n901234036\n531938196\n269421310\n741085081\n685410669\n857169384\n816622185\n308065399\n832229874\n842154540\n915740867\n652010002\n510136901\n346286918\n952760858\n572379423\n591227831\n313434549\n544794572\n557611337\n681556724\n255206180\n592567842\n157010415\n409712642\n756342967\n363008687\n606673931\n866355027\n786692543\n234996058\n708703416\n983639207\n337053353\n996841933\n906764337\n489862724\n327876634\n210027372\n671779354\n497664851\n703562972\n499199924\n440985477\n929923064\n517482436\n170124419\n998283604\n700456502\n189680256\n824297130\n702438472\n891231276\n378393235\n828540781\n219113423\n961440375\n937329326\n465986437\n123305255\n153581518\n182280998\n871735225\n280838188\n486376019\n735136390\n852941506\n439203806\n262905134\n994047738\n340574584\n625583959\n258660137\n640261708\n455182800\n713450922\n777363385\n497983795\n359817674\n636596438\n577004952\n946004105\n684650867\n499165130\n207930318\n651293402\n183832308\n718701550\n433568528\n179644962\n543727960\n314115906\n218603255\n729652300\n219621499\n546213355\n507219995\n790424030\n992982316\n475832970\n922765490\n347568661\n355357511\n346501004\n731374131\n496736787\n550894692\n482223630\n652038304\n270882286\n473364555\n420441548\n600330090\n385394655\n169574556\n949037884\n280873487\n929776666\n200741484\n755642568\n928053938\n434226515\n483416135\n928362791\n587763064\n608739065\n137475737\n719465008\n837230112\n144565179\n973758024\n780566985\n226443778\n508939583\n975027829\n218489056\n725189103\n947608870\n981691315\n969318981\n458920716\n702980020\n949208548\n162394298\n645836662\n480702300\n192344379\n336882829\n431414949\n713336987\n258532318\n708250343\n903959608\n136810502\n858821358\n578658579\n570669256\n983903783\n139771989\n336069995\n526187256\n402085515\n944647736\n381381657\n903383797\n293358877\n836896888\n362896271\n585435044\n443623918\n883251436\n399306318\n613856675\n195387404\n621919737\n992907128\n739237631\n596041181\n278074297\n626057436\n430719736\n783274676\n423531308\n945026742\n105330681\n752543901\n928198651\n979043106\n744599125\n332126466\n281975045\n494277542\n109883055\n778541148\n648405010\n978933817\n241203488\n909191749\n576952823\n411062431\n446718956\n838944781\n357481489\n128149763\n626950710\n617808503\n744886346\n175561450\n120861307\n464669032\n946149395\n443887095\n882604893\n433134561\n111377046\n861058435\n287764920\n790585207\n465068402\n898436665\n871130515\n748600438\n728829400\n793504680\n879046530\n200048729\n538850876\n346118812\n980663888\n699571617\n556903770\n397261861\n436326443\n592511851\n658665931\n256210377\n642805514\n613886401\n323050915\n692411406\n945845005\n705948732\n221215448\n857092049\n235345594\n468487315\n914662066\n656490753\n524176250\n893391096\n177940239\n930473758\n151088245\n855724350\n935119955\n251026493\n291805930\n869611528\n833457390\n104430146\n643412229\n102555265\n544561243\n373722083\n314222374\n938361242\n242113916\n311772280\n815794973\n614653451\n140231439\n518894887\n540608309\n736141109\n447796249\n859487582\n443959681\n929228988\n978417772\n415406052\n191839356\n310057287\n784857451\n151508601\n472228864\n693365240\n233440001\n764046374\n728417904\n456809399\n758774094\n257058181\n368462118\n648930490\n394388492\n902018511\n769609677\n514937755\n648486207\n441006286\n875985645\n254640834\n210753116\n820651588\n589449655\n941135513\n977086315\n687424694\n681710901\n589530609\n115859831\n260740188\n789892896\n520763858\n808745449\n187829004\n332736332\n648870818\n586165905\n757415966\n884837156\n115146225\n419894397\n684755438\n153166036\n634568337\n444317946\n806211006\n540171603\n151464593\n386296105\n787650270\n886830588\n855448473\n170361983\n600310798\n762064682\n245476188\n188445191\n660365251\n796216542\n902100461\n247695883\n776238559\n882991762\n637597055\n557714644\n709919994\n501591841\n237797924\n988009661\n549051558\n141349051\n267414459\n294391530\n856637009\n673050374\n669786720\n899201409\n284714461\n677005323\n557056473\n350148925\n466108911\n386140665\n203798161\n538242144\n298670197\n773750984\n846940692\n846355739\n589951968\n370397697\n897901596\n283224541\n209090743\n986640305\n223523084\n755042823\n970739946\n744115455\n241423785\n264858849\n397947164\n957141741\n288312027\n957461873\n777235985\n904894257\n810413529\n542258384\n159621872\n455172831\n123502239\n802419047\n459900469\n344493729\n592908913\n448472051\n526331414\n167791365\n974971167\n687061221\n360892577\n747882316\n772705631\n850173404\n613819978\n188317863\n192680143\n554225601\n870537709\n718906223\n174034010\n228876220\n997408931\n589481989\n260591826\n408058245\n434282888\n668383584\n181244942\n681861663\n172473837\n775557965\n303130854\n227484973\n640690543\n568682567\n970617773\n909969654\n793625797\n927755193\n453165317\n592591419\n583208228\n190157910\n920086414\n767618858\n631029128\n626232006\n313306005\n322919580\n662137142\n201755877\n442821193\n107861058\n451677481\n942937543\n739404425\n656635360\n994722532\n840756649\n733128138\n912357433\n961133406\n126326547\n299692648\n529338768\n585839216\n985322356\n144979768\n716745696\n451846262\n101166279\n222896100\n247390123\n754710373\n763156399\n737903253\n992467960\n174916928\n324228891\n373567793\n210430292\n626310551\n266408921\n126260167\n344264826\n513810801\n620553331\n905271528\n955522151\n565406991\n169969084\n551386538\n525731366\n287461345\n744056244\n905485800\n866776933\n961141714\n232575149\n338232923\n127873241\n306862349\n274321059\n325088312\n378840633\n711189615\n882625327\n676635596\n847591431\n513602966\n865371696\n962364932\n543700653\n493760465\n662393185\n957167434\n167765223\n579896786\n358487533\n882331203\n863936640\n979909504\n465193905\n219472352\n601945936\n281086954\n581915563\n336286414\n284759967\n652118789\n497345439\n188870923\n141287654\n783261480\n988973667\n147908383\n885913086\n255900643\n292773523\n359804536\n836823315\n744858248\n354906037\n735813807\n737578018\n676699369\n705087798\n248684108\n991741993\n811840931\n514224517\n346575078\n776120964\n615987492\n124127036\n137762368\n852197440\n226449873\n908828957\n168832490\n205660265\n434327455\n844632181\n394306626\n322960983\n707851697\n115586370\n253342366\n165237759\n566516207\n248764324\n453882711\n181444736\n816017712\n365911082\n186336117\n813810541\n668144581\n403494791\n564211746\n410743361\n707319576\n903640662\n227829439\n241375031\n439141353\n490715059\n893568180\n607446959\n996665395\n515738478\n820384387\n186498033\n283969610\n116540735\n547050781\n976061060\n372345796\n508843156\n514713633\n701681654\n214629188\n392483479\n233946172\n455708998\n621056484\n879380389\n350025852\n947313348\n754777905\n516384440\n959964929\n858568701\n739163272\n280060871\n483258644\n918153011\n457279649\n807320008\n716299290\n881831918\n881309867\n859161937\n179160372\n123602146\n613749044\n753358765\n899777870\n620246347\n992969984\n692423083\n785758995\n461722504\n512021502\n454110842\n285836298\n334130941\n207396884\n499515332\n581235150\n983972714\n860008586\n326838195\n249321593\n478954264\n693246762\n470460171\n888310204\n964192866\n758778579\n836625786\n515299553\n358740845\n794110514\n868050097\n562768115\n825687448\n336553805\n189800897\n604129486\n655288734\n344931774\n891970639\n839595045\n350856746\n239581868\n621484798\n573913521\n937770085\n107615262\n382770265\n238027706\n866954978\n966014538\n129741688\n488985660\n629253173\n144938971\n784446363\n920194121\n784604826\n445974379\n837885907\n622606174\n266146127\n441091007\n283348448\n127282257\n132587694\n952329892\n846914762\n227529347\n678610699\n802605378\n548034439\n555939277\n897652661\n436108932\n680237285\n487611438\n984563741\n296610395\n148994919\n508191210\n583559284\n969964431\n942891579\n387293015\n433658757\n717389653\n930851703\n278547531\n180049790\n924995076\n752027924\n194513826\n902842293\n833174552\n310029907\n249515056\n386225489\n885239744\n250189379\n949687647\n595177162\n822269854\n415764355\n409581732\n815436164\n244924139\n679756327\n282117516\n599503954\n979034103\n757185644\n527124528\n625855877\n592526876\n767250036\n560808463\n154896378\n149093491\n718475324\n565990312\n964614873\n517634999\n366564751\n534381392\n650968837\n456785669\n339302981\n186092442\n444379568\n143011619\n596708172\n457305720\n325503386\n349345953\n384706667\n662901772\n422220947\n724763255\n959673161\n749018676\n257084260\n183978593\n395886019\n442966747\n811183953\n959226776\n289961166\n701429471\n707742843\n595573372\n746027677\n997984619\n121256108\n564020134\n937663054\n998640775\n705724890\n209839833\n232469218\n409561301\n767306783\n789009556\n963277259\n317150953\n102738148\n272986977\n605480841\n455102484\n409168640\n689649689\n312403046\n922025591\n603277719\n244882008\n197188863\n321415585\n217571975\n194965299\n301409546\n870560543\n494210324\n958329176\n459683760\n243207080\n574299552\n230891366\n129071296\n355545209\n334441246\n837771912\n838046625\n226129572\n276735259\n120913548\n276479804\n966885928\n970206035\n538314642\n763762727\n415381049\n187098474\n121802121\n239899366\n450681346\n144988813\n370211293\n520044443\n788352174\n230928127\n233189611\n132168858\n792076204\n558060680\n970451341\n819177166\n256154984\n256455759\n261286550\n551214005\n416758474\n399039839\n851880364\n746970210\n906531087\n181605041\n938492311\n475879506\n367181302\n105025521\n610680844\n941186679\n388481298\n854327645\n856763089\n106503368\n490991669\n973385524\n231234454\n609661879\n691986683\n976571543\n111050072\n581344800\n451385208\n261092131\n200239380\n545330203\n181487341\n256798683\n263354712\n498615150\n737260836\n272624483\n384700344\n696938376\n416752855\n769318099\n728489606\n876489116\n681870408\n540548830\n492825387\n661343995\n101493226\n772146396\n123777767\n690466925\n759159687\n678231835\n965441611\n327595690\n875969263\n416539851\n690263787\n830612656\n826018864\n366566916\n951523266\n175618529\n138407730\n579054454\n494415138\n577325547\n237322698\n815710056\n949608627\n356260426\n556986480\n458786628\n493409487\n303546047\n203681156\n295620727\n210589895\n614909619\n531508953\n585585685\n493598148\n558155003\n966357104\n884458867\n130334776\n774921348\n770524436\n145277200\n778446525\n524463044\n477063130\n881961398\n535068560\n625628800\n705400863\n606528602\n756130670\n295598064\n270191270\n146130070\n204137476\n463137030\n254730335\n256307721\n108984346\n632157547\n728500744\n622473473\n179674228\n864400813\n770966444\n483300805\n246724104\n211199365\n601711146\n528798846\n908914582\n714210305\n630155765\n959852388\n446092591\n731633979\n927704744\n868109629\n134061688\n466047278\n156867314\n320516541\n338883525\n727348916\n814694611\n727219622\n191310498\n997812385\n840971186\n316610148\n778535129\n884913751\n725464351\n949011053\n274269874\n630264672\n177271429\n973877894\n101781607\n818728726\n546415563\n951863040\n438633347\n439712050\n413969384\n997535184\n657579336\n192959559\n635647916\n254892842\n973395306\n292670865\n102808153\n418468377\n190373771\n359230890\n369423914\n981619732\n598711704\n882784684\n886497264\n341222457\n480255047\n950042332\n554606084\n349566628\n914686191\n668722541\n830866193\n987421507\n704939699\n258071590\n799180569\n147233610\n942341545\n512360589\n725276286\n467430441\n780107429\n866645581\n207961012\n418020334\n719574891\n475608063\n995666009\n336573742\n464973842\n562703989\n673545654\n103769269\n916237326\n931694359\n860504464\n125431882\n459774986\n555918526\n809834743\n121171144\n368205624\n565021035\n147455084\n358879067\n522750619\n305119705\n753391510\n420417446\n241285561\n303699861\n752045471\n446842506\n261446492\n139223178\n544681778\n694441709\n773044039\n432661138\n625746341\n320231123\n488755763\n412241071\n574290127\n590086337\n541335578\n700863450\n668133671\n993456261\n604255706\n143985925\n836056428\n485393556\n256395380\n714121954\n379720261\n321077557\n631563963\n231769023\n289162041\n287125447\n598404701\n961634707\n105853842\n852625193\n610694916\n209586816\n694349570\n437909054\n761893131\n858251786\n215922462\n396405464\n816976493\n974116836\n432329865\n120684143\n195555781\n370060192\n772449721\n769870704\n735507874\n906043254\n995653007\n200307518\n622139004\n461480083\n493750300\n930528117\n533953789\n732942678\n264077270\n957705801\n373136948\n801702292\n934160352\n738454003\n991449082\n812757965\n199022358\n900524409\n529891863\n305288917\n870218412\n746591190\n720245203\n339609777\n131642670\n798416482\n660579594\n803148082\n613575693\n628946860\n430573329\n779445590\n312652916\n348553758\n614492696\n344363340\n349255654\n531548657\n577303965\n861329967\n337889610\n362376598\n618504683\n684651240\n921727952\n322118758\n829951225\n387860696\n629030332\n857515557\n506805793\n826989356\n576739869\n201807375\n841199535\n760414862\n111746347\n354434070\n404594372\n573585730\n860868255\n218908773\n327634299\n681971447\n455494835\n621290013\n652378542\n170043902\n775393479\n649179536\n202418850\n627105424\n458381899\n898731592\n837089736\n297230324\n470754402\n267525000\n743477833\n221894545\n536732115\n953875555\n384856887\n356961770\n769071907\n431186103\n251780361\n441891777\n396664122\n417484632\n104285878\n495777655\n872024860\n375723917\n995229030\n936691521\n620032203\n616650290\n865842598\n619854907\n609777909\n973014166\n204134337\n549049068\n893701400\n204770826\n934579694\n713313507\n740055398\n809084006\n455538361\n405145598\n927891625\n191823833\n471812523\n556392943\n784273441\n929686852\n408659637\n870807484\n237460252\n349281358\n233795586\n556814064\n117275450\n792098272\n126090200\n602792807\n232259018\n791296522\n755314937\n634442389\n517170022\n964145302\n219997820\n141696720\n622925585\n861129459\n101853715\n171279711\n724023131\n558900955\n418186859\n852029741\n859282319\n632314517\n426192933\n347933779\n845212950\n141627839\n696549217\n228396565\n616525680\n762697217\n899136930\n580213638\n828409566\n593252177\n557546614\n173678674\n660583806\n438097329\n177677063\n246235490\n180366284\n779441632\n788754957\n430599308\n926185460\n575194405\n523507556\n914337117\n881966266\n153438946\n949095538\n856744114\n866760352\n845262375\n784725946\n624732967\n705000782\n375202494\n137782258\n498721766\n216092400\n214391058\n725848876\n880134841\n289783669\n799736031\n636651042\n953935361\n406094519\n399672536\n122831022\n866816392\n623154999\n741531912\n674691295\n776524188\n868096105\n870646512\n149898360\n660279132\n461511788\n626905023\n265759758\n793813437\n165554202\n323173827\n466019780\n435469121\n575610315\n654204420\n633757981\n204087859\n621020879\n874479405\n207428299\n424666404\n652804246\n980467256\n703067430\n211737035\n520870273\n174078883\n175562230\n620016734\n973311100\n436214918\n971072405\n744880151\n552124756\n329323074\n901807099\n396746985\n470486804\n698071878\n759040977\n555880901\n347684696\n595581001\n415078293\n955511405\n754529584\n155185879\n452054784\n827844767\n627383492\n823895486\n947162730\n986745570\n494755024\n453500980\n982794070\n767174593\n296408895\n482073494\n446668976\n389286563\n199099792\n298979859\n423328962\n824832986\n127993266\n629361459\n538715019\n115543250\n563803749\n380569346\n952674333\n306595158\n122406115\n869092395\n540226781\n208101882\n229946036\n628337848\n301157881\n946125621\n271292154\n392578433\n668320398\n183641204\n294000957\n430151044\n397162498\n832652284\n337908440\n969133138\n870956111\n788669932\n734186229\n901725154\n124029547\n851082789\n892312644\n405357911\n290174948\n942610598\n948679881\n464080729\n272927016\n659560923\n884597730\n455046189\n697618663\n101551298\n757273688\n248306391\n170278216\n537791227\n895478027\n148706257\n638870953\n826946466\n315301683\n893507349\n804348210\n930025330\n149098349\n771036991\n601063696\n214150454\n516041742\n778020421\n370883472\n169582695\n394142857\n633071705\n351976644\n646875695\n946456316\n437138376\n684431654\n125823987\n313152303\n163164979\n303936662\n908613559\n811004481\n128655805\n571277029\n284011702\n945948292\n371097061\n524417640\n510810246\n801189224\n613686116\n962511081\n640030374\n353176574\n893006307\n591911928\n554415377\n809820241\n879022085\n554287258\n873683789\n426006005\n659709131\n577572487\n848587026\n747534478\n397375771\n166292423\n208214992\n839274612\n273891081\n999198922\n627285225\n842245090\n593659718\n947477211\n443678825\n707878944\n575687222\n421624982\n708815055\n682406652\n535923280\n900777694\n938146086\n790065131\n716354318\n100634198\n405566372\n132094308\n317337952\n832497997\n436050942\n501523456\n459111641\n887336175\n689715053\n566500233\n810264291\n656243325\n380640492\n370448405\n955072512\n115595660\n192252015\n361881487\n454361987\n157508038\n345122200\n758108276\n970888551\n239939646\n916890549\n225434420\n672975436\n256618843\n911461997\n222174257\n135493398\n387936162\n278400477\n498505165\n690957500\n997729769\n349426038\n452768975\n276000143\n786919698\n792343633\n314950000\n611030006\n951992215\n987422417\n390407764\n341537260\n788102895\n531170826\n190841072\n139568910\n505474410\n332323543\n922368490\n318560118\n278273253\n646581407\n972870531\n576702858\n448805580\n855678589\n780328599\n290448357\n587873364\n565031561\n154588718\n241911755\n968235211\n336632928\n191072301\n637833705\n200266588\n970569999\n824592989\n560022753\n176950227\n554037007\n464442450\n971515956\n281246882\n209287765\n376895915\n335447368\n415686262\n173653543\n967455788\n698554512\n389283646\n661068707\n989339836\n801036115\n542994647\n840038189\n440259559\n145152251\n403726437\n430536679\n751989697\n952767516\n745532626\n871600926\n493453214\n744260755\n514939539\n696969308\n575233783\n377796918\n535390964\n852278557\n595120552\n218601708\n719547016\n908004949\n375071746\n318322287\n230644447\n317955419\n218108519\n698185312\n983004789\n562631979\n792679458\n559680646\n172572851\n523438398\n492297148\n997845907\n226011104\n537985864\n578753650\n849197921\n631381486\n489308636\n516980434\n147056105\n305182285\n813234118\n629775130\n657651177\n931830049\n230732118\n700698934\n191235658\n448212546\n223837797\n328596596\n873157054\n645272327\n453405363\n382514212\n600378612\n472926078\n897854193\n781036597\n877070806\n652879455\n196494918\n167619547\n845176503\n819912381\n981152584\n227056169\n201321683\n898322478\n928767778\n762365569\n150059984\n911554928\n991529385\n734579840\n606552753\n161080781\n298983418\n871303812\n649831555\n610960099\n866054120\n213731726\n892961928\n828790773\n460585265\n393344572\n936035978\n674053095\n856716290\n218551154\n408719129\n271762563\n601401079\n878255529\n350061630\n781309753\n799572867\n476582192\n166557963\n131016450\n704447169\n760769700\n600525602\n214078667\n404047437\n666398157\n240623056\n852365187\n369731880\n266049093\n368311079\n872962475\n879991201\n454362274\n454193113\n734153737\n129513187\n332932311\n453873002\n323460389\n904487599\n374028144\n180594561\n986900601\n776651796\n885933061\n324180594\n385439192\n900922127\n598170516\n222724974\n365175315\n441724614\n591143385\n629934312\n173864652\n765747109\n275166265\n833311630\n170004248\n781311396\n159154148\n168219352\n212737905\n244493370\n326917132\n561257316\n601589707\n786218246\n894831866\n409963418\n484185960\n243270547\n413575669\n733069324\n382600587\n597784887\n918952766\n839272362\n265533926\n691008422\n808559279\n803606157\n570471600\n276005771\n203264996\n192989710\n980718682\n450997164\n162612152\n730670568\n830183646\n196642357\n291483801\n547387700\n850034113\n901112726\n847287925\n363431179\n292267338\n911000915\n701822167\n181222683\n739530203\n605258733\n948342550\n990775889\n257570211\n679509698\n191944447\n515037726\n632959341\n759945325\n926987739\n400568903\n338593499\n511610300\n749949348\n708292927\n938730602\n916675497\n441867233\n972007836\n251188232\n760216623\n531565900\n811808717\n113267628\n690926214\n497442865\n693546381\n967951504\n662536668\n308138235\n937315446\n591659937\n345416512\n989773153\n143128444\n888338637\n821173349\n489555373\n836797020\n173276623\n636243315\n754315347\n905470458\n526064212\n620803249\n427007170\n749245524\n195022345\n332802862\n535431412\n787218110\n974425468\n939187408\n281897297\n268747773\n605016904\n827986914\n635567088\n579974295\n254129024\n890803268\n389290280\n470031555\n120957363\n981087056\n315024449\n515004668\n354957826\n303058659\n603121825\n554199660\n786553799\n517531389\n668371499\n849134773\n205357817\n783970101\n492583903\n982018927\n883455050\n353265087\n340220176\n840947489\n535532281\n982269988\n964562376\n513467215\n727739253\n919312972\n129612072\n816508054\n527595041\n169618321\n107788092\n675689879\n865920296\n190372750\n498166668\n237618755\n681217602\n726180565\n645055475\n765960685\n892378656\n648210324\n145005702\n764321874\n241882072\n992476081\n489564969\n769222421\n585379883\n723906338\n712955928\n834560093\n353795266\n202218332\n861861976\n985085034\n114370295\n573656939\n419952082\n722061036\n192918128\n391537478\n713913495\n422056407\n358760335\n241222067\n286176517\n929365667\n341604439\n444013639\n694141981\n654242450\n580986071\n374417942\n157160654\n670492037\n393574255\n221702253\n796891618\n251693507\n831649961\n817241590\n619501720\n924014128\n638691405\n115209066\n592663554\n983711992\n445978555\n740799621\n567483528\n325253223\n674459325\n208047280\n595762509\n532666217\n427533554\n538663924\n514451150\n268958717\n236537966\n482172517\n968713721\n873421537\n664540333\n706975709\n879246755\n836509185\n577154726\n458208480\n386677075\n109535026\n691587256\n150958502\n703613475\n416878882\n269780610\n341782322\n121418251\n633251676\n914503867\n213925805\n598617420\n882083588\n289714543\n428627680\n463842829\n725798424\n676111034\n107481940\n985867436\n604895071\n995308196\n342311768\n615770054\n530530658\n705164838\n857099915\n544259344\n232500932\n320996993\n918784392\n927233603\n591185391\n634025825\n785467190\n894320633\n270625248\n878983880\n813701639\n223422623\n448909169\n624465805\n449642420\n744882431\n203779239\n317696313\n502208650\n448858261\n841484581\n903511428\n730426761\n986861549\n672086917\n184163133\n823272013\n769835308\n215040310\n706124982\n416786316\n486636630\n860155769\n938222463\n888789839\n606498643\n736075155\n923662306\n216315537\n441338566\n251971756\n264435310\n361944951\n326072321\n530776315\n867784092\n963261690\n485864360\n569893217\n570362179\n750429420\n452953242\n899293143\n184341238\n536035322\n125267960\n845653354\n597686070\n207038297\n977845449\n776929594\n466129639\n845380070\n815855145\n756237689\n272359398\n219950460\n673376317\n230189645\n597846485\n137625131\n220518736\n411140039\n219531499\n924394721\n733275323\n632362980\n644503232\n190436068\n462588371\n284980109\n555401515\n305195113\n921478622\n337401329\n220701594\n750900373\n313331227\n812352333\n971453133\n888965288\n959686454\n650467836\n521529168\n802013985\n664185300\n290021439\n969081106\n651243506\n109137313\n378223814\n269024901\n552439439\n999717262\n678587230\n160560273\n293618943\n461548711\n263652886\n486962386\n365698875\n511577424\n248883878\n505527039\n560865759\n413015363\n139710562\n485787240\n466783320\n396318603\n401512655\n130285007\n449479660\n930651090\n223551480\n796950735\n899346005\n576223827\n784932884\n969795089\n748857668\n866720923\n426294807\n185834286\n422413000\n700869165\n257541601\n213844375\n461328931\n633635446\n146915892\n300183812\n834364590\n177079747\n262801403\n297432809\n847253076\n434276614\n266285563\n733143543\n811456501\n733828177\n120733448\n287095444\n245021573\n173488115\n934656841\n763174209\n454578443\n896815563\n714646886\n407095724\n263980854\n796030781\n193273705\n929644662\n469416199\n345832863\n463978405\n332507634\n781817675\n646748600\n585433813\n781793398\n921732065\n744525258\n671992322\n586697275\n255865568\n366262029\n392882463\n318665654\n693210617\n694366085\n898258881\n515380102\n894282893\n493846012\n285678083\n180324955\n668029420\n345317723\n220434369\n416992315\n572001719\n231985130\n738086910\n257737878\n184552084\n112287958\n834910733\n150523385\n824977708\n638299927\n758119568\n777679394\n461161348\n376473532\n426727848\n709949987\n830794072\n443344290\n318855883\n842211127\n494929980\n918222879\n512609383\n689362366\n458863578\n161757254\n853349096\n656282325\n516511690\n651737095\n956321520\n233513079\n160509079\n424652269\n554169252\n766821761\n602218446\n887323412\n257387495\n539088068\n595951200\n680253696\n450885635\n827363945\n832674397\n801848342\n483248012\n712200892\n386332598\n783912253\n137299505\n810712367\n912902182\n810398960\n715301610\n100802904\n757976446\n880390385\n468519532\n875745818\n202437958\n906945749\n890622972\n224360979\n469673803\n361186967\n411874481\n668134729\n678685571\n287823129\n903291623\n311303234\n561458404\n843342754\n928630179\n373635013\n554882618\n397043481\n491561806\n862219723\n424161259\n543673107\n261017576\n112173270\n816153938\n723544989\n605221820\n544162924\n132149735\n570623082\n221554842\n715764304\n408621106\n968553646\n299073677\n110077949\n801455317\n214549235\n147511833\n899143017\n475913162\n274589747\n293880565\n109245618\n105901926\n241129994\n278136542\n498811949\n139141734\n380594721\n510918431\n391148877\n385558902\n478383149\n610012730\n648978558\n744267068\n684100809\n977714762\n582858567\n810263860\n265913131\n529709860\n950845886\n840880793\n562537301\n821456052\n462365162\n520923970\n196287146\n268693539\n183894188\n850648078\n226829541\n878685455\n215011514\n249470939\n961177452\n576736569\n382460633\n378991120\n284417724\n712902783\n930133673\n228949208\n267677508\n595951362\n704457223\n383591297\n858062573\n726382049\n722828445\n607038307\n347585184\n645707524\n523112561\n360408849\n931949163\n126548189\n829554094\n500177295\n805724740\n901026603\n653274169\n621812321\n154713896\n338197902\n640408112\n327083586\n242603250\n277157953\n120193431\n196225199\n845640116\n401931735\n745094937\n640857570\n502922682\n924453052\n862644485\n946385083\n714838672\n597679639\n886618999\n871112069\n874131552\n820644420\n859144785\n526695672\n141068505\n310525929\n870956867\n202562400\n114088273\n698460414\n530181016\n543173806\n144638936\n456537491\n847953294\n452410939\n603495086\n801700116\n980603728\n481146761\n471586526\n439315270\n983360973\n175475825\n906207285\n640235584\n237366560\n237717532\n825303409\n770018796\n617264949\n318910654\n170242783\n766919752\n368681778\n750242541\n571318422\n651735985\n992892120\n913682297\n960169875\n723146027\n397255905\n308359356\n183873437\n644082255\n501328056\n230930688\n519103880\n716543228\n202011809\n192452914\n781247064\n785590806\n190019874\n152123572\n822427902\n780110523\n702603982\n249868888\n473080539\n347007808\n335571859\n672533022\n776570827\n104043343\n625347752\n790107482\n966138130\n831945579\n280658093\n218939093\n104950861\n299282569\n707422222\n359369493\n626601094\n256266989\n250558321\n825273220\n978683917\n504106327\n753329650\n474593315\n780124848\n680226591\n273675316\n119346553\n995153139\n291882881\n484117176\n805819693\n709038816\n392797808\n617717139\n708853907\n163355359\n308307507\n496250426\n118206727\n217950300\n400286835\n789687433\n261595931\n536126181\n266647245\n745625954\n214373740\n813803826\n799603683\n736939255\n534524526\n200679061\n705392834\n219530235\n854674596\n599110182\n813141910\n438028201\n747107004\n464509362\n120170417\n565862850\n978836100\n693420399\n856430122\n195425027\n799703187\n409919276\n450659900\n380174527\n885843882\n270887779\n106740867\n658513117\n263000766\n846839762\n513898003\n315214394\n746650725\n984088308\n700745904\n701410124\n640079559\n312441856\n555631687\n314413146\n966457229\n226494470\n112935573\n337781374\n665926213\n409291647\n745370415\n336124630\n212562484\n145398886\n163139697\n329552062\n275559231\n252754435\n798447286\n754824937\n419289223\n169788779\n434236145\n242392850\n336163428\n256767071\n911457527\n298511503\n721530888\n526736746\n509891748\n542205596\n443380742\n284580122\n525990772\n776560492\n421428253\n102825390\n611507313\n689168639\n723419428\n980225587\n860699312\n254965115\n820582785\n601601348\n580030425\n804392855\n162009599\n686639913\n495858797\n735923098\n890585101\n732100702\n764117555\n427692801\n832543349\n825169040\n699915520\n844180596\n615853775\n766148676\n132928232\n573543286\n954100478\n971047982\n433621632\n848903450\n116388338\n749823567\n424370295\n118419943\n362418374\n691834985\n965841635\n953441107\n453006122\n409562396\n868991831\n877892806\n262163788\n639221768\n334942531\n346810924\n605351291\n962241711\n267073871\n650981611\n752539507\n768404747\n119437652\n835113878\n793730291\n412799690\n394822633\n326631442\n882472570\n970848055\n115749228\n503216675\n632840357\n481785937\n363754943\n997279657\n353568294\n167836561\n542737103\n320742106\n621275061\n433333732\n109937380\n714625147\n631816722\n675153330\n968975433\n939344941\n687145857\n193562920\n868125903\n225944358\n757782757\n685007780\n221246369\n982305299\n272678532\n368979567\n363489651\n706510350\n265650829\n415840404\n685685587\n101135544\n471257311\n914334053\n652679441\n113249410\n631912045\n146331050\n637607656\n648448551\n186709860\n131929275\n601338959\n651955042\n378932069\n742023124\n336027827\n137790853\n706771647\n698042888\n330368647\n621454962\n537652565\n551347212\n808714380\n369823278\n871940977\n515564401\n435440242\n301818456\n760963109\n898188215\n478930693\n234754558\n927932532\n196956496\n769900092\n172127855\n987109658\n827801286\n760369268\n337488882\n689162193\n615382209\n757273732\n139893061\n336780267\n970565219\n392240553\n939821742\n132290468\n154393126\n637124457\n989501841\n114388631\n191845420\n749959701\n522532109\n952646226\n826037358\n583962038\n741030116\n767824737\n388597761\n597601669\n743385517\n398017994\n501534521\n597253521\n120847094\n150443348\n740874812\n673819702\n440190315\n807586846\n181021390\n900421622\n134726030\n357879514\n128136583\n919898988\n442825529\n349776887\n297695794\n238678470\n815875243\n931992126\n342216629\n818948320\n692564707\n965467128\n446648789\n896739060\n566223925\n701670095\n631485709\n171658097\n249520211\n899205074\n540870751\n332741205\n966235988\n617123896\n330925306\n914337750\n961719005\n131552483\n228761672\n681823768\n276973633\n135693041\n376476193\n804038163\n504900662\n219275047\n581737058\n772611684\n428981958\n992117104\n167959945\n238612149\n909489071\n399693697\n204666370\n265431568\n823877377\n580043269\n696629543\n353880840\n597635028\n186270068\n816144890\n146703630\n101480363\n664371770\n301754183\n942762055\n337008484\n175952914\n765293379\n985747247\n284187436\n974583124\n231630486\n735194044\n702090633\n508328234\n659326496\n752410944\n822584754\n407770891\n227873172\n515536355\n894616141\n602170655\n888060412\n809768658\n463583599\n819135013\n679155275\n184435451\n680268622\n954336270\n808697793\n715159603\n711109420\n249612082\n477749611\n704154783\n631108389\n776090401\n536163218\n899429714\n967074496\n136950021\n143129894\n727902306\n847608840\n199842687\n551111909\n379001093\n785659846\n540081731\n477484251\n352746689\n229984951\n381473897\n111690078\n333790914\n713474043\n670030780\n121900632\n461904549\n462360514\n404500737\n346118545\n607639085\n344691530\n854546889\n893202834\n767720689\n179424982\n913075297\n370545423\n306333177\n555810726\n207826807\n443301841\n173887851\n614294898\n361585257\n599244074\n771538874\n387101023\n351387175\n581876133\n711909029\n911546175\n720531908\n845802220\n857179179\n811421757\n908525720\n889153647\n556491113\n872505997\n883652533\n430444280\n166527080\n807683856\n599100480\n419794893\n609658644\n101276231\n345843442\n306793363\n838823364\n874761328\n549360232\n939907219\n437814039\n532779412\n907256570\n369950556\n961029122\n795354751\n271606593\n687345580\n918748817\n961844909\n853522467\n724186306\n777862299\n150943999\n620201500\n258612731\n466477248\n629798632\n592283758\n825444782\n165267849\n328509065\n481100444\n530728518\n435393261\n539662158\n678424971\n538262025\n279413290\n304368877\n488782000\n525166238\n472716020\n994882996\n478701155\n698657284\n653429730\n806290597\n654256164\n833387004\n474575027\n942397606\n193614342\n234223786\n778059607\n910916590\n705933463\n585155281\n544252043\n908776165\n413802156\n321953298\n775234110\n158347116\n508531350\n103854159\n801128548\n513982615\n744211208\n862019113\n962433102\n792337385\n725289015\n790893553\n380929453\n614206986\n922100136\n707096689\n329203784\n610093602\n415705773\n973305666\n902082929\n218085551\n288606421\n795733494\n613779979\n773556790\n842073609\n708486161\n843202871\n555126085\n426078693\n538515092\n530307717\n492843605\n376170922\n125987704\n803473996\n220632924\n998129299\n609333892\n703900457\n281568923\n146216994\n248332413\n898423669\n311448188\n358117090\n161467408\n429616669\n565486921\n247931519\n551625713\n474268282\n304241010\n418836111\n748462886\n908759449\n750510983\n394850837\n227382513\n861688754\n754245309\n575083972\n949853611\n204617678\n406113163\n156330164\n715946330\n912776278\n454100850\n407533451\n878447978\n458675749\n835293645\n394963347\n906611234\n615373157\n613936834\n435565000\n856212172\n494348989\n599562875\n515597259\n493105476\n937044580\n252658256\n837785770\n489193303\n582319530\n889958902\n205345380\n458226571\n971143947\n106638535\n430522770\n734914236\n291833432\n895327465\n821347447\n465750701\n943121832\n446052085\n177405060\n807032579\n410932816\n372118844\n627780042\n504232449\n112950653\n202983737\n808954689\n347251988\n547188720\n923610699\n894861891\n999073069\n404016297\n895992506\n678592603\n988971942\n846629278\n826292697\n898752401\n704976688\n331727359\n857257293\n999820495\n598357883\n634642599\n682812134\n632759338\n510234520\n363033130\n361377613\n570145632\n285515287\n876869277\n351862787\n587433340\n729235859\n755424442\n318658243\n789681893\n340359652\n262721805\n538699815\n896928768\n874607504\n143693501\n643460117\n981673968\n654610228\n287984130\n570211948\n229231225\n970482528\n253915566\n678181877\n656627242\n502440024\n178287348\n184107046\n145704634\n795459311\n278621174\n642476895\n858253971\n175502342\n169118834\n456249955\n564153091\n816787690\n700629438\n143842455\n687441167\n936436377\n639703298\n938375281\n653156901\n566853765\n479914779\n325033513\n641814965\n167902170\n544200050\n802633191\n806154864\n782170507\n772795616\n939570748\n241695551\n952258532\n134020858\n445079011\n762047119\n281952627\n134583757\n999504538\n625287544\n531033404\n634094510\n798758080\n926460347\n773029379\n166418861\n285263420\n791710573\n599422929\n862214748\n628082414\n593644098\n404193923\n959437097\n518067460\n198949806\n834641783\n535427844\n698360672\n566064521\n839490486\n116554508\n487005513\n885279454\n541131039\n797349905\n440408419\n930395028\n636460697\n796538184\n571596956\n814932471\n886638766\n212085405\n631430928\n709914728\n445930464\n403269019\n795088346\n198854045\n116936417\n376497067\n721737517\n277216453\n595293611\n185652835\n705756540\n229896287\n993255299\n275688544\n804752478\n583600904\n886829314\n504611570\n428177886\n441763536\n391654531\n558339019\n455316188\n628419250\n906112939\n846303786\n233044158\n898031977\n673569878\n321095555\n406209699\n256158437\n961730107\n467175308\n981289614\n443000361\n493440825\n414424506\n338089774\n696146102\n651880687\n484644934\n570564052\n844222144\n511457671\n914403872\n294964503\n972648656\n150082090\n428460206\n223820075\n496906372\n224452932\n638226520\n323848838\n468933399\n300927421\n896541147\n916473602\n851500479\n529928486\n274273826\n800285277\n254484785\n903439942\n400909767\n860125637\n497501751\n345453593\n618956864\n589934289\n147484864\n769008704\n452846978\n646826534\n565420209\n709841874\n992886234\n847424749\n743730370\n641104558\n631474186\n191090375\n580605599\n487109818\n117984457\n282975761\n627916863\n394458884\n278927892\n951806160\n143535621\n395934409\n314052246\n617150529\n745171647\n290114140\n581792027\n670995481\n978007227\n553561465\n604572421\n203907393\n944135367\n836663542\n182429287\n911199971\n582880542\n526034236\n389352705\n581249844\n500609489\n140942937\n513591683\n511517801\n334114981\n797866536\n796554230\n994476993\n561721961\n771013464\n118082916\n261580990\n274199895\n864449574\n362494659\n531360110\n731899061\n787711508\n784930233\n900021369\n589325075\n551760988\n260382379\n694195645\n365571114\n405569367\n954541881\n162326687\n452046537\n938256953\n798338787\n799124951\n569532074\n546979154\n484941431\n642517692\n990900540\n502375451\n569972507\n665210590\n186635875\n680049687\n935969152\n439386600\n947565611\n564542474\n475664601\n693270723\n827398059\n795302651\n827546864\n783071697\n504484909\n696674175\n644780399\n852566884\n377617859\n505239278\n363350104\n219146651\n132492506\n362051283\n160802509\n623009127\n427996996\n591004320\n724662716\n597367888\n952041487\n646342794\n238343295\n613847485\n717708657\n867942931\n174197197\n738800103\n598853104\n605382994\n659721540\n562964004\n825072205\n423870698\n167223322\n949844272\n459719114\n248512113\n599103412\n681559590\n503259711\n621727372\n612438163\n395200378\n909723602\n844104898\n719168434\n866454079\n517817643\n593348716\n114465398\n925681973\n293142314\n266510168\n251152638\n459803814\n530452541\n198761582\n949929291\n329921910\n699744619\n951032485\n108965440\n914525839\n697976538\n931472501\n509680433\n239864907\n379885493\n479485590\n533857060\n304408372\n600766659\n940468022\n646251482\n482145363\n114949085\n907947830\n732949906\n966298440\n465710555\n743096506\n642346801\n353934124\n176381061\n980479032\n704200278\n823018311\n584714426\n622233484\n287726982\n216566465\n681773174\n113729315\n717270643\n325719310\n825552728\n698144177\n152129356\n820174684\n306186323\n831541742\n323075662\n338737101\n805239668\n514053967\n999159478\n528301181\n169386502\n231414334\n946025975\n683885056\n109311597\n889578410\n149674862\n587686813\n408573824\n519659795\n316421918\n380119539\n960321875\n832326727\n244449411\n189462056\n182411744\n205238678\n364585543\n128309170\n304113559\n371553285\n189598182\n331720847\n866187730\n687482096\n259035977\n816477181\n465404252\n875864105\n536355195\n196589897\n276638216\n588026980\n807593703\n367002260\n329816388\n802877065\n410282596\n243466061\n243015381\n292419916\n493525606\n747262458\n810854161\n952224403\n159255195\n250807475\n295723759\n339652605\n845928848\n220168966\n572685534\n900678019\n752228747\n473019618\n630774588\n141767211\n989684992\n554041125\n977869257\n634369435\n266657542\n102511195\n399990266\n147653686\n607819709\n808094533\n146459075\n796492300\n273795273\n155334846\n340224471\n555179672\n182624069\n410657656\n908443991\n983487436\n431696054\n316765253\n243836864\n307313421\n795321263\n212978990\n614544049\n186027801\n883897299\n546104308\n733935776\n193291588\n549846422\n471290520\n589111864\n861475712\n590252615\n210284618\n952433520\n394927720\n197353805\n936396737\n853908247\n384732046\n138995544\n926780613\n817879030\n218259313\n851163336\n631715554\n581662575\n208126821\n685716793\n380485958\n954950381\n912337205\n127080184\n401575550\n253779730\n560954495\n858175557\n834312507\n350393282\n223242331\n623452320\n184551998\n822766592\n102759522\n711167801\n292766811\n174898106\n290733569\n349298735\n678151106\n287893221\n436926629\n799177542\n761628846\n957491020\n913160118\n860996083\n822120364\n363161186\n986347212\n762451855\n196748250\n180710961\n269961462\n695777731\n981592560\n865938156\n278566553\n522757326\n647849801\n741090660\n689429384\n409145119\n165872704\n333799605\n434831467\n977226869\n744272113\n535440999\n535515570\n465268283\n192727536\n547012220\n887543596\n525778718\n744589231\n928162262\n365038174\n470836652\n749297085\n395771380\n691073591\n222676859\n115551463\n844701797\n915545118\n121496281\n364402754\n314378335\n461828710\n454638662\n692718400\n775967705\n281697384\n886879318\n431595379\n580014911\n175190518\n585393161\n582811962\n612843751\n862330396\n406009663\n320958455\n754693483\n277208072\n539768919\n799492894\n233200609\n836259087\n527016957\n650040446\n282640313\n974139458\n317315315\n926472518\n724256608\n818398273\n889559405\n596704281\n239982596\n424031983\n919587401\n214223279\n811390151\n783599747\n315107129\n751864362\n455666271\n312277537\n947526905\n648697484\n798763610\n659153294\n780273953\n691227376\n227418603\n624729472\n648557234\n567306982\n516583952\n729064702\n417049241\n127920869\n759549582\n317572518\n272299239\n918221688\n720344210\n665581709\n703221685\n219624822\n405102841\n865091869\n145851571\n399434230\n201489096\n788825372\n914630512\n484960921\n778116345\n888572427\n592258287\n709334819\n154562733\n222818482\n152249180\n463345354\n966545791\n541570510\n829577565\n771602219\n981796184\n347996780\n271458814\n833625904\n115735219\n669924659\n764326315\n825642434\n300667983\n709003502\n670797712\n794203323\n571526113\n553420396\n267902501\n944854051\n270625975\n436198922\n204873211\n903307596\n175809441\n499269371\n807309172\n257558235\n530664721\n614116036\n163011702\n639749310\n498374021\n127871666\n169413348\n944940913\n607681699\n998141288\n836486774\n142829013\n789937808\n190618840\n307376082\n278690608\n125422728\n581332537\n490396714\n782717200\n106204224\n919588867\n329762770\n244380887\n427998738\n114987043\n474388789\n671357332\n814509445\n342784144\n785883607\n250500753\n576724586\n813639634\n761813343\n307658281\n971263612\n905294152\n224114234\n562965223\n342003230\n684579670\n411604753\n994599567\n816722702\n195092210\n534565085\n885457503\n626341507\n720713372\n548620296\n774394475\n259582142\n119163232\n337153370\n830680175\n738094614\n938781710\n398965630\n949680553\n874637606\n282858162\n714849518\n764373787\n346175989\n490906907\n582736499\n747966401\n826921322\n198700414\n228289222\n131252077\n858641734\n533534696\n959462260\n478534993\n165975058\n860151788\n152286743\n528053846\n836348263\n933190357\n858844629\n141845824\n114830862\n586946425\n861737741\n761939976\n483185272\n128278305\n468272164\n611878190\n525878579\n933549748\n598778390\n298401850\n611904870\n230263479\n754700867\n746753224\n318690019\n664547897\n198668963\n677106954\n818103354\n721089293\n517293732\n775324621\n586559780\n160496139\n588466063\n381429700\n695334482\n887883013\n394327307\n811910693\n130839719\n338907581\n796866441\n110030434\n671172102\n200740605\n542182919\n790299035\n274408500\n504289187\n669909480\n665479920\n281489047\n631152734\n770878352\n560096803\n625136458\n877656146\n181056511\n864835240\n197790667\n168331483\n785072163\n181875585\n305332677\n722670152\n788211967\n225114906\n255114327\n326728416\n347504594\n531409230\n968842453\n554285859\n531306049\n546615655\n992815972\n113050824\n204010138\n218683743\n978498094\n350665043\n130141662\n708905438\n295513110\n952123125\n155630751\n430117981\n415404282\n987693201\n197857839\n922632823\n558932648\n342126948\n976506428\n275351255\n175664068\n574993728\n601394765\n287211899\n603915021\n282873304\n391066516\n593424110\n338754491\n884104078\n449305864\n251485330\n251239709\n371334067\n920530665\n666120378\n766290558\n342390689\n215800343\n537745925\n419012076\n521347045\n841777370\n688994664\n456616191\n773580054\n802339558\n885410455\n300671727\n290875761\n951259924\n599955956\n903884325\n763673102\n438543532\n652739102\n478338256\n391524144\n829245298\n897216653\n534274120\n628367577\n752201816\n572949622\n555329903\n764209300\n492258166\n400685311\n272340430\n848368608\n100559067\n980554607\n218996204\n676104445\n728343693\n723021941\n110529484\n392728710\n934191558\n196182873\n707042552\n321507618\n562232510\n179143342\n852309458\n213325659\n325523143\n996160237\n867884285\n362196842\n970099040\n236218564\n775761437\n374125962\n387636029\n766287891\n597924143\n743848334\n717662796\n641661968\n569474146\n745775211\n751873161\n915398303\n266791687\n823506980\n316683818\n358930529\n142021431\n945998976\n170567879\n256365438\n212869043\n222306531\n174023828\n416653322\n925619755\n518636984\n475091716\n573512847\n773881168\n137516086\n539999003\n284203230\n263757479\n545005175\n625873343\n105430975\n418137272\n893700135\n601162257\n699456171\n902511131\n545282195\n576570481\n130385384\n971706560\n873184422\n686199724\n603349911\n467081583\n873768792\n247473396\n566129067\n154062759\n506961722\n548576299\n424704866\n425807923\n452385869\n998933442\n831829656\n699554626\n690547706\n273169623\n409623654\n294157126\n100379042\n886357384\n358114623\n477924050\n353791225\n884569303\n239049784\n665451821\n434210024\n226307638\n385718156\n339185868\n307491376\n572278468\n301042839\n274387645\n820098133\n398689119\n266687705\n129065464\n803307027\n322624392\n648973874\n262355965\n642545584\n524785937\n881842882\n853820314\n577577611\n896635631\n537580003\n591167603\n778072091\n654147093\n223915829\n794063893\n208883548\n343711283\n852426627\n447589084\n827620744\n274849883\n750904130\n708783786\n306575493\n694712893\n334437063\n896656315\n539857651\n844398467\n863541123\n378658580\n848249034\n967917695\n230751181\n313907274\n936960900\n164273033\n502590674\n891333836\n172251193\n546098487\n564232164\n984733270\n364913892\n481946441\n479015009\n334355571\n998230498\n326817135\n722873903\n884714823\n769205547\n155580803\n930893183\n146900915\n422080344\n286170219\n667270090\n106023637\n265403526\n591254941\n342250590\n308578205\n898453379\n741355386\n213245029\n145429296\n830084698\n820599682\n504795632\n927644044\n712583332\n821054292\n559755583\n429479034\n104776525\n330879858\n378544442\n248580148\n102187004\n166877168\n973026308\n888140720\n329360384\n665038927\n346585297\n186483582\n829554365\n142062107\n505366761\n998820846\n555097205\n819084001\n290685485\n475580631\n868299798\n963214812\n946600391\n672376123\n111490363\n585541135\n957339890\n687804183\n748983799\n161495681\n767381697\n919493459\n289199283\n727869156\n508092992\n457085142\n852164667\n298918297\n462120256\n814301476\n110497399\n594759683\n601161565\n177423619\n398973534\n893849042\n787311874\n268034657\n709732824\n388273257\n315887194\n473662346\n173274046\n673984595\n904425050\n238827003\n612033270\n714456719\n894413501\n542458940\n993651799\n310813489\n643119512\n899017559\n744575202\n641245299\n744867554\n227239418\n297023262\n900942318\n126785920\n504730503\n206007268\n511034337\n705482008\n795578343\n118608384\n123158860\n692750064\n901134845\n740353553\n846927790\n441771865\n550363197\n390750304\n414082442\n513813621\n481688874\n174188095\n625951011\n769386184\n159967841\n371297186\n594592954\n667914530\n344985666\n180452829\n544324683\n672140193\n384467000\n289564115\n175539618\n645689375\n118796412\n918084115\n471556714\n698016118\n358808990\n667335149\n638359985\n660090173\n731101520\n462759884\n698841660\n753921785\n377762159\n382583296\n640117262\n454536854\n235850058\n581440119\n551493342\n793010642\n984636560\n564206668\n370286398\n677516338\n351828764\n643370800\n370960611\n425982228\n597615677\n104452151\n275320668\n139710265\n663355004\n151326511\n429184275\n749797528\n259897581\n542575066\n374005751\n415585567\n532624844\n759480976\n119907605\n506473237\n164621811\n652380769\n695437208\n163385637\n722718174\n917508284\n637952291\n185448436\n931842393\n660736115\n701892498\n795497609\n151867500\n305841031\n505615880\n507165432\n451772670\n367929532\n970493872\n851696427\n209619086\n779579777\n637085329\n329857507\n591317206\n161988892\n354288263\n334582202\n219844307\n304958851\n395332277\n598030704\n814388949\n994719976\n138033654\n433261994\n376302086\n799476186\n722429849\n302434924\n817674356\n293058595\n899756000\n886597745\n231292355\n201177001\n500779374\n931700154\n931832626\n321390404\n400889005\n273662479\n590163022\n273580041\n953428152\n930782534\n670273809\n920273201\n456161533\n363610034\n182345924\n162894424\n445883753\n659385620\n720331147\n183137086\n267983505\n639577200\n621680794\n320469372\n548486086\n928807359\n843435645\n305187719\n570808072\n502648137\n655363140\n155712475\n326266101\n462143133\n290413217\n578541580\n194905142\n939499859\n839115904\n342954546\n632857175\n906564556\n127495362\n840616536\n528321742\n305011698\n225808473\n678008230\n133565325\n708848163\n381522277\n413181726\n772267554\n596035714\n436269112\n150333370\n887933248\n471561673\n227119622\n849523728\n422032079\n138622904\n253867343\n763502100\n134166588\n220060780\n814087471\n129562554\n532315817\n188899982\n606485754\n348288945\n612497616\n679580848\n240996936\n932326908\n519257963\n290181012\n460547261\n246664863\n325516591\n621794878\n412231866\n668007399\n239066652\n891844816\n448179154\n327152859\n272863013\n715269177\n807594366\n910677474\n245287658\n797898361\n759576439\n802105137\n462693300\n717425858\n272363478\n899617420\n407131628\n734864152\n350353637\n778842701\n958004677\n886751039\n593465905\n592986059\n290758917\n355976858\n383040011\n357152081\n502823949\n806800915\n844584784\n139943723\n597129394\n361806204\n912221354\n830642799\n232796675\n928330039\n650450309\n840055732\n966816584\n340230623\n937881168\n216416772\n416002476\n618628109\n806360405\n778959175\n621425487\n274161319\n176165409\n715777411\n618285257\n646624122\n323380041\n591452961\n544574070\n460926540\n519400245\n726934548\n883766070\n679446153\n216566736\n971990492\n226412965\n835743779\n694609501\n670527311\n431727845\n366829695\n326033697\n836940034\n844735584\n937228016\n700728732\n801228099\n967982770\n424720931\n549697911\n897773520\n228535675\n892033903\n974121034\n332397610\n321396850\n735940370\n211174950\n706543252\n923700058\n763732286\n209423883\n635441864\n444163898\n773971507\n282391185\n594706699\n630506219\n440566293\n873774018\n235931005\n715264699\n379935073\n993831433\n841602475\n692582811\n251989593\n989653979\n374959478\n721511393\n759830020\n250430168\n313169896\n951425714\n254686118\n396393516\n749237031\n954476248\n182113885\n244258919\n688780346\n685980282\n772858784\n548930347\n578227835\n189877968\n986666746\n360225713\n198494986\n978784143\n716192282\n879862719\n172730765\n546344379\n705514296\n181364928\n914423845\n973367844\n545597322\n861263346\n410462146\n627514172\n503097609\n794414985\n327676820\n740762836\n293642485\n730484811\n540685351\n876888959\n555275876\n956396264\n505361404\n370928141\n814044432\n283858162\n443080441\n343129591\n173129882\n646764239\n465840911\n606407283\n424252879\n103256879\n751927968\n676471384\n299522333\n643648678\n244588663\n143708655\n181161914\n921705321\n250800239\n254671256\n333777696\n237866831\n866463856\n636106857\n621636522\n965627371\n363905576\n731670480\n188546942\n619391621\n149605832\n690163517\n500193437\n733445102\n166936803\n393105234\n577689776\n971345584\n130660110\n428027003\n947697764\n392168482\n745793516\n939127733\n655425943\n276734646\n999039700\n633173744\n100916396\n739074715\n249803719\n962166513\n456552709\n282353121\n864563511\n165092286\n699900150\n677572021\n894499059\n863523684\n148249925\n996609064\n741382746\n529712681\n325306607\n213016192\n559807723\n949750333\n106307272\n677338407\n123761265\n947948041\n663810293\n513304402\n313130859\n588335840\n179891673\n706048541\n946263500\n794207890\n356501552\n208546024\n415097110\n788200010\n386303010\n957893339\n970847708\n726393871\n586720831\n591733604\n118579137\n863888218\n272889765\n345261309\n223743174\n430517652\n365096266\n575172452\n522146951\n220631607\n849058238\n797789234\n150678194\n490667086\n618876576\n636894249\n890347686\n708052188\n590345418\n837290332\n569797023\n759349768\n124940196\n549916615\n160423831\n159930025\n415826699\n234368973\n816980653\n817493283\n729056947\n424139391\n462305203\n395323303\n508756980\n486868913\n201975184\n826049997\n488939668\n146197692\n562864071\n320314903\n707731979\n234296650\n862405059\n565706934\n795921738\n758868453\n332928813\n681279325\n709750771\n911049724\n524676930\n669041274\n485612883\n813517613\n391736571\n409893154\n514981807\n342384115\n675974201\n735879840\n806498734\n242909594\n106635685\n626462556\n535342845\n570120199\n201123450\n967526577\n212253857\n938059650\n518038803\n599573265\n842475318\n848051825\n538035888\n670298573\n952610917\n692107418\n768402874\n616475076\n545082764\n107538834\n528437652\n191778857\n374903255\n174428907\n355935315\n697006116\n277227281\n268342645\n196431067\n156046604\n381965999\n951943563\n471768272\n782876944\n208644415\n950345338\n915325904\n632138718\n936493093\n140182474\n960907502\n734493143\n909385472\n130097045\n922601152\n322943845\n648339567\n925820729\n315906118\n315816425\n959741421\n509428536\n277603184\n668457565\n968352265\n118078204\n544503635\n747788776\n668304198\n409571214\n713953042\n693369985\n577627420\n165537242\n953053023\n162103567\n810941170\n971946296\n923900847\n919164137\n737374907\n734023335\n612248784\n855357658\n578204564\n710047962\n140009010\n353140448\n675587988\n895811954\n316938912\n888957872\n570784638\n795600158\n836709643\n764518997\n960077237\n876939600\n953390332\n807741995\n665861757\n555118267\n332299506\n746213572\n498614468\n507772495\n973369223\n347378230\n466394142\n629081598\n781134886\n264419464\n144312533\n255776937\n316840407\n204374217\n863368666\n398385778\n102202892\n945131325\n533132533\n999020323\n857637733\n811739432\n615741258\n102463274\n106585894\n606979489\n595770765\n568829040\n991062240\n513462871\n292593251\n802855374\n842976549\n453698689\n116783605\n494292227\n161173989\n575072653\n519757516\n639328866\n242082954\n830488506\n164972194\n124147980\n866972225\n409659331\n301535522\n788480078\n729627570\n820147430\n686114191\n211204854\n230169816\n885215537\n496586659\n458548058\n827306599\n271345458\n807832851\n697904297\n719260925\n823905173\n485861573\n794755459\n933621651\n703138056\n798073506\n152044578\n472211374\n993204599\n570546948\n709519532\n398350878\n804216876\n705932203\n535264340\n580509355\n377019808\n805274829\n949617039\n937417083\n715263572\n615649156\n778823295\n979149291\n585393861\n218087574\n338990355\n884860370\n927294666\n490108449\n232636624\n749128821\n118626503\n583782678\n651892587\n265436257\n748571482\n529641927\n178941386\n593376220\n896379501\n269576628\n375828630\n416990510\n812607757\n913367688\n614767878\n405883014\n254908019\n992404484\n539691181\n586342528\n466441108\n663234791\n600034896\n754475280\n114287573\n388220626\n497782355\n665868533\n336453082\n357918623\n775917457\n407121168\n883575944\n987171583\n419358197\n386791423\n338324790\n746262128\n774217214\n297686469\n468871960\n485105937\n978113715\n135995870\n699386681\n330292537\n694593131\n702537213\n529780366\n806910326\n906373383\n678833151\n690942177\n499049782\n832041156\n898691294\n181627532\n382652029\n765867794\n639341169\n586723003\n913013661\n892010093\n576688067\n625244668\n554316664\n920218432\n883121160\n813023890\n626002577\n580182060\n237024704\n515424582\n581357681\n666718283\n557764017\n790959685\n919992333\n585833284\n271734542\n640929758\n523974932\n516635362\n496262805\n962719701\n481520031\n910526260\n629021647\n814555161\n795042164\n236619457\n325137595\n822587823\n621264565\n651957321\n796359580\n412377688\n433010092\n976416884\n718249192\n844113111\n381927597\n770720842\n572022240\n403723827\n446216949\n727220982\n222670281\n511528859\n394973652\n151515514\n876278203\n714569283\n899202827\n967856485\n628417101\n979346573\n350411804\n270375846\n659537625\n590322697\n421187542\n591510642\n345469168\n256996459\n161141830\n706220548\n194699566\n546002446\n919072527\n987625783\n460179453\n604372717\n113649325\n922767516\n604179448\n869683466\n576737475\n477827282\n595532139\n698784944\n407683012\n513851248\n963977518\n911606761\n997626189\n368795791\n300630922\n364964601\n871785787\n468560796\n838526837\n480881141\n614797444\n299065832\n998800857\n355476410\n642357151\n730566237\n716935711\n161782693\n981320402\n755936463\n523338983\n282003977\n242556895\n212790550\n304574621\n609296974\n477048909\n625196983\n447420311\n392257690\n736837386\n441138824\n779270291\n989573879\n303041170\n943326414\n885207023\n868204057\n338126992\n351961913\n650903281\n745367573\n568224229\n917779370\n631079589\n158299434\n693634856\n231514323\n707492894\n940374257\n180779321\n202552051\n852788958\n267446357\n831754906\n368129956\n698260617\n268460196\n698155879\n506175072\n850775620\n368349359\n387712677\n579161633\n572414541\n581907735\n741347624\n760797913\n886407915\n690585111\n553502242\n366268276\n368375389\n997089326\n142722117\n486393297\n484090650\n570263884\n293276477\n225777597\n626437775\n354656562\n796999108\n931985926\n596845393\n857917769\n536354213\n134238000\n890858526\n767037542\n195686624\n417980015\n279585358\n142088450\n263515333\n574048005\n228587856\n212717520\n309757800\n534624145\n945052336\n814143216\n898957368\n285821883\n552562674\n722977930\n981745730\n775529259\n498345293\n574828059\n325719961\n155146950\n738173585\n320626842\n293066919", "output": "324852 324851\n224403 224402\n410543 410542\n92330 92328\n93539 93537\n214081 214080\n168672 168670\n263926 263924\n165344 165343\n51755 51754\n418734 418733\n393010 393008\n458201 458200\n280910 280909\n76320 76318\n378812 378810\n84479 84478\n450165 450164\n69406 69405\n155623 155622\n454679 454677\n310265 310264\n401917 401916\n320103 320102\n68008 68007\n103771 103769\n237844 237842\n97411 97409\n207635 207633\n182690 182688\n470505 470503\n56811 56809\n224680 224679\n491535 491533\n237496 237495\n127320 127319\n207614 207613\n307147 307145\n274176 274174\n255074 255073\n461853 461852\n80848 80846\n136597 136596\n217019 217017\n372489 372487\n108605 108604\n429926 429924\n428112 428110\n225131 225129\n180493 180492\n495866 495864\n420447 420446\n409015 409014\n455560 455558\n237264 237263\n434815 434814\n313091 313090\n424634 424633\n300456 300455\n73469 73468\n401828 401826\n353675 353673\n81975 81974\n155319 155317\n57550 57548\n451803 451801\n115295 115294\n112058 112056\n466781 466779\n69483 69482\n482936 482935\n399741 399740\n209217 209216\n431042 431041\n165197 165196\n160950 160948\n130792 130790\n206619 206617\n267171 267170\n192725 192723\n344401 344399\n468488 468486\n126915 126913\n279126 279124\n392943 392941\n259864 259863\n273275 273273\n441911 441909\n340849 340847\n129003 129001\n136387 136385\n184838 184836\n447275 447274\n345413 345411\n353910 353908\n461424 461423\n154143 154142\n263217 263215\n473536 473534\n109880 109879\n105960 105959\n440737 440736\n57266 57265\n211857 211855\n456811 456810\n129045 129044\n368319 368318\n364128 364126\n146009 146007\n98200 98198\n396255 396254\n101276 101275\n218557 218556\n290678 290676\n490102 490100\n145913 145912\n255727 255726\n385669 385668\n298479 298477\n191656 191654\n396764 396763\n259860 259859\n442466 442465\n169022 169021\n446391 446389\n194654 194653\n110346 110344\n120230 120228\n206247 206246\n66167 66165\n473286 473285\n434815 434813\n342950 342949\n421463 421462\n354831 354830\n288653 288652\n150792 150790\n298225 298223\n199559 199558\n435056 435055\n425230 425228\n194363 194362\n402618 402617\n177169 177167\n429248 429247\n262741 262739\n358716 358714\n374101 374099\n413899 413898\n116234 116232\n359214 359212\n93334 93332\n248489 248487\n370285 370283\n106878 106877\n341235 341233\n284730 284729\n471142 471141\n325774 325772\n300965 300964\n200514 200512\n195731 195729\n467350 467348\n152258 152257\n493756 493754\n258063 258061\n187100 187098\n285956 285955\n58325 58324\n424076 424074\n248551 248549\n431548 431547\n442133 442131\n395905 395904\n398930 398929\n229014 229012\n354308 354307\n364515 364513\n444510 444509\n279098 279097\n84159 84157\n242456 242455\n268094 268092\n324082 324081\n316021 316019\n61304 61302\n377731 377729\n268647 268645\n458009 458008\n337338 337336\n346554 346553\n160945 160943\n478457 478455\n135416 135415\n142927 142926\n487710 487708\n407932 407930\n217051 217050\n119129 119127\n391008 391007\n320711 320710\n230499 230498\n267265 267264\n356910 356908\n117635 117634\n227290 227289\n481712 481711\n431209 431208\n259053 259051\n118983 118982\n195924 195922\n184446 184445\n270984 270983\n308027 308026\n179404 179402\n402558 402557\n445005 445003\n261054 261052\n183756 183755\n265532 265530\n241267 241266\n257247 257246\n113930 113928\n431894 431893\n300123 300121\n339817 339815\n382324 382323\n479175 479174\n184923 184922\n57491 57490\n448228 448226\n245942 245941\n129955 129954\n413480 413478\n328258 328256\n287289 287288\n224658 224656\n378688 378686\n309925 309924\n113570 113568\n83049 83048\n392242 392241\n334938 334936\n497220 497218\n159742 159740\n114769 114768\n428411 428409\n210052 210051\n312251 312250\n399418 399416\n69099 69097\n487072 487071\n189869 189868\n400047 400046\n247627 247626\n145247 145245\n462179 462178\n240852 240851\n415284 415282\n464386 464385\n168423 168421\n202446 202445\n449528 449526\n406605 406603\n346022 346020\n489288 489286\n323579 323577\n270222 270221\n457965 457964\n276959 276958\n142615 142613\n197450 197448\n190354 190352\n323634 323633\n52432 52431\n73207 73205\n280657 280655\n487351 487350\n67058 67056\n134892 134891\n487846 487844\n180363 180361\n247667 247665\n286427 286425\n450030 450029\n320906 320904\n393898 393897\n237443 237442\n153997 153996\n107774 107773\n211808 211806\n190757 190756\n153324 153322\n237196 237194\n455708 455707\n172585 172584\n422259 422258\n431793 431791\n245356 245355\n415603 415602\n82455 82454\n128685 128684\n197846 197845\n456738 456737\n340014 340013\n409741 409740\n264507 264506\n110950 110949\n340771 340770\n479455 479454\n319054 319052\n303382 303380\n482150 482148\n73308 73307\n338447 338445\n386025 386023\n440977 440975\n272561 272559\n345128 345127\n438287 438285\n162017 162016\n353229 353228\n242359 242358\n260056 260055\n489408 489407\n257805 257803\n128195 128193\n53728 53727\n479417 479415\n210468 210466\n365226 365224\n300071 300070\n405491 405489\n97947 97945\n172934 172933\n103198 103197\n137971 137969\n225272 225270\n130912 130910\n490269 490267\n266422 266420\n424656 424654\n280531 280529\n371491 371490\n78300 78299\n334678 334676\n379924 379923\n250729 250728\n136790 136788\n182848 182847\n157763 157761\n487352 487351\n115688 115686\n137087 137086\n414191 414190\n66958 66957\n144183 144181\n366454 366453\n172016 172014\n286187 286185\n272486 272484\n134090 134089\n471489 471487\n288001 288000\n371666 371664\n102945 102943\n92170 92168\n411823 411822\n375976 375974\n135332 135330\n181675 181674\n339796 339794\n307522 307521\n327417 327416\n175797 175795\n132342 132340\n83527 83526\n311212 311211\n401375 401374\n92055 92054\n64364 64362\n311716 311715\n118580 118579\n213624 213623\n74172 74171\n122125 122124\n250503 250501\n469614 469613\n56559 56557\n317870 317869\n331371 331369\n388271 388269\n482919 482918\n368737 368735\n190064 190062\n368351 368349\n244765 244763\n480648 480646\n458959 458958\n290663 290662\n317901 317899\n160095 160093\n233825 233824\n172396 172395\n482315 482314\n473563 473561\n91572 91570\n445725 445723\n87321 87319\n447318 447317\n392361 392360\n198919 198917\n125729 125728\n324117 324116\n189493 189491\n247349 247348\n220420 220418\n168625 168624\n145390 145389\n262273 262271\n142261 142260\n102018 102016\n420439 420438\n496727 496726\n405606 405605\n352950 352948\n192794 192793\n380681 380680\n133319 133317\n307172 307171\n353104 353102\n296010 296008\n353186 353184\n65502 65500\n161398 161397\n310009 310008\n461890 461888\n118453 118451\n275811 275809\n54216 54214\n326329 326327\n76389 76387\n305730 305729\n304579 304577\n408007 408005\n228249 228248\n424269 424268\n373382 373380\n485188 485187\n155739 155737\n246481 246479\n147943 147941\n212283 212281\n109206 109204\n403106 403104\n265874 265873\n170169 170167\n131970 131968\n85243 85242\n450648 450647\n365920 365919\n279415 279414\n115869 115867\n129546 129545\n485729 485728\n65792 65791\n64768 64767\n161027 161025\n142415 142414\n468546 468545\n449015 449013\n335286 335284\n440546 440544\n143600 143599\n327763 327762\n451180 451179\n255043 255041\n123060 123058\n462275 462273\n148370 148369\n152164 152163\n196123 196121\n247857 247855\n233338 233336\n324272 324270\n380946 380944\n329719 329717\n160368 160366\n384481 384480\n232657 232655\n399171 399169\n415116 415115\n373335 373333\n65552 65551\n342692 342690\n331013 331011\n88930 88929\n51861 51860\n322123 322121\n376443 376441\n472526 472525\n239456 239454\n185823 185822\n415741 415739\n186508 186507\n370729 370727\n130908 130907\n67487 67486\n346978 346977\n434582 434581\n105671 105670\n330064 330062\n450965 450963\n89246 89245\n475622 475620\n180383 180382\n70442 70441\n233184 233183\n96959 96957\n395285 395284\n460510 460509\n81437 81436\n335903 335901\n56406 56405\n455742 455741\n78648 78647\n493681 493679\n323908 323906\n86720 86719\n349599 349597\n283344 283343\n328248 328247\n435952 435951\n106732 106730\n157112 157111\n226314 226312\n202372 202371\n205866 205864\n489158 489156\n87087 87085\n188610 188609\n161334 161333\n320851 320849\n368920 368918\n297398 297396\n231163 231162\n259486 259485\n344832 344830\n182665 182663\n58738 58736\n399050 399048\n373214 373212\n285610 285609\n326285 326283\n151376 151374\n277695 277694\n472814 472813\n327336 327334\n495419 495417\n243295 243294\n140189 140188\n343283 343281\n257988 257987\n445817 445816\n123473 123471\n278304 278303\n209882 209880\n126566 126565\n289324 289323\n409663 409662\n168047 168046\n68658 68656\n321326 321325\n258886 258884\n183996 183995\n378756 378755\n199016 199014\n263253 263252\n497758 497756\n412975 412973\n162061 162059\n292906 292904\n149642 149640\n86419 86418\n373165 373164\n331442 331441\n495026 495024\n262009 262008\n106583 106581\n260500 260498\n407362 407360\n458160 458159\n240477 240475\n108020 108018\n198843 198842\n398442 398441\n251129 251128\n328396 328395\n93370 93369\n388096 388094\n331125 331123\n133119 133118\n165763 165762\n394045 394043\n488932 488930\n463120 463119\n320259 320257\n122447 122445\n407528 407527\n304363 304362\n62001 61999\n480164 480162\n75090 75088\n440235 440233\n155408 155407\n368042 368041\n331728 331727\n206700 206699\n110547 110546\n496088 496086\n420675 420673\n300417 300416\n188937 188935\n233276 233274\n306267 306266\n308957 308955\n444815 444813\n497238 497236\n356539 356538\n52902 52901\n242984 242982\n498110 498109\n240825 240823\n385255 385253\n321398 321396\n288652 288651\n103545 103544\n363861 363860\n155682 155680\n187280 187279\n494814 494813\n122900 122898\n367914 367913\n102235 102233\n371595 371594\n295836 295835\n277328 277327\n174313 174312\n392395 392393\n493340 493338\n53862 53860\n74012 74011\n68667 68666\n197009 197007\n263527 263525\n82104 82102\n125661 125660\n102688 102687\n299903 299901\n366711 366709\n400750 400748\n75984 75982\n63571 63569\n69436 69435\n217450 217448\n194413 194411\n266586 266584\n50166 50165\n318639 318637\n321172 321170\n406244 406243\n401909 401908\n71093 71091\n257756 257754\n141101 141100\n238175 238174\n417192 417191\n270539 270537\n420835 420834\n466519 466518\n461515 461513\n305672 305671\n158783 158782\n433873 433872\n192165 192163\n363394 363393\n106104 106103\n147987 147985\n116558 116556\n159809 159807\n93407 93406\n130942 130941\n91155 91153\n439087 439086\n232912 232910\n117578 117576\n100238 100236\n84634 84633\n264041 264039\n421851 421849\n357203 357201\n73071 73070\n124324 124322\n456881 456880\n488666 488665\n85235 85234\n202859 202858\n84378 84377\n83968 83967\n262265 262264\n100642 100640\n123534 123533\n229305 229304\n360341 360339\n317198 317197\n228046 228044\n120071 120069\n245646 245644\n461167 461166\n171368 171367\n424311 424310\n441582 441580\n91211 91209\n58434 58432\n236489 236487\n58776 58775\n89861 89860\n303806 303804\n77422 77421\n55348 55346\n137710 137709\n225375 225373\n112565 112564\n393863 393861\n481337 481336\n451260 451259\n178808 178806\n380008 380006\n124370 124368\n58893 58892\n384820 384819\n474157 474156\n232082 232081\n54598 54597\n380125 380124\n326779 326777\n315261 315259\n87004 87003\n322807 322805\n145138 145137\n487529 487528\n188307 188305\n56226 56224\n276120 276119\n370029 370028\n157087 157085\n366222 366220\n174844 174843\n472683 472681\n114573 114571\n279450 279448\n73395 73393\n384637 384636\n471380 471379\n470182 470181\n319942 319940\n364791 364789\n263912 263911\n336070 336069\n213283 213281\n63960 63958\n405478 405476\n125594 125593\n135011 135010\n475510 475509\n334104 334102\n207262 207260\n187896 187895\n468525 468524\n92356 92355\n304884 304882\n151547 151546\n238729 238727\n356250 356248\n379885 379883\n410682 410681\n367898 367897\n498970 498968\n289903 289901\n483724 483722\n175950 175948\n482543 482541\n421605 421603\n316045 316044\n215507 215505\n462498 462497\n53808 53806\n440570 440568\n408461 408460\n295017 295016\n173965 173963\n98575 98573\n467954 467952\n382217 382215\n111949 111948\n431712 431711\n68835 68834\n207901 207899\n441776 441774\n330775 330773\n285867 285865\n132968 132966\n265989 265988\n438213 438212\n70250 70249\n210534 210533\n121417 121415\n270066 270065\n99928 99926\n117260 117259\n64410 64409\n427915 427914\n119624 119622\n263315 263314\n381910 381909\n347025 347023\n139252 139250\n315061 315060\n147615 147614\n418308 418306\n228174 228172\n60010 60009\n94992 94991\n211704 211702\n65359 65357\n163247 163245\n327355 327353\n90192 90191\n158812 158810\n340781 340779\n185235 185234\n307994 307993\n249949 249948\n160550 160549\n480527 480526\n301342 301341\n227056 227055\n355471 355470\n202828 202826\n133274 133272\n460396 460394\n177817 177815\n326739 326738\n316794 316793\n164950 164949\n102464 102463\n55305 55304\n466918 466917\n87295 87294\n401224 401223\n414536 414534\n181721 181719\n94632 94631\n225140 225139\n489584 489582\n350672 350671\n269373 269372\n469608 469606\n492154 492153\n118526 118525\n129725 129723\n330615 330613\n149483 149481\n484110 484109\n205727 205726\n288906 288905\n55995 55994\n137557 137556\n55550 55549\n85713 85711\n285766 285765\n437368 437366\n55203 55202\n444545 444544\n305410 305409\n452405 452403\n213207 213206\n349055 349054\n252408 252407\n463362 463360\n161322 161320\n415644 415642\n487592 487591\n476450 476449\n130441 130440\n307308 307306\n489896 489894\n100760 100758\n75635 75633\n110048 110047\n90291 90289\n123679 123678\n439699 439698\n438330 438328\n114893 114892\n124190 124188\n402351 402349\n85112 85111\n416269 416267\n275598 275597\n89209 89207\n304816 304815\n332498 332497\n464923 464922\n308381 308380\n81256 81254\n393562 393561\n77724 77723\n176474 176473\n192210 192209\n453436 453435\n221936 221934\n381889 381887\n96785 96783\n113791 113790\n468417 468416\n322697 322695\n155829 155828\n140574 140572\n446196 446194\n332233 332231\n280727 280725\n207360 207358\n155102 155101\n442389 442387\n169193 169191\n341567 341566\n325041 325039\n354597 354596\n260079 260077\n494107 494106\n408565 408563\n241550 241548\n406771 406769\n388899 388897\n174445 174443\n369598 369596\n182841 182839\n251547 251546\n470035 470034\n257041 257040\n188522 188520\n71107 71106\n260390 260389\n313738 313737\n324645 324644\n118644 118643\n91816 91814\n277519 277517\n230664 230663\n333938 333936\n338670 338669\n345089 345087\n420969 420967\n118148 118146\n345610 345608\n359509 359508\n453730 453729\n415016 415015\n78877 78876\n204548 204546\n114841 114840\n316605 316604\n222170 222168\n337829 337827\n103249 103248\n292693 292691\n105425 105424\n351064 351063\n89484 89483\n275870 275869\n342290 342288\n151530 151529\n183670 183669\n210433 210432\n129448 129446\n418377 418375\n368595 368594\n209992 209991\n385685 385684\n129314 129313\n358852 358851\n221796 221794\n453566 453565\n248156 248155\n286354 286353\n136952 136951\n92090 92088\n257410 257408\n407991 407990\n91918 91917\n98440 98439\n221532 221530\n312652 312650\n51607 51606\n253668 253667\n435319 435317\n282252 282250\n266383 266381\n146801 146799\n209149 209147\n278439 278438\n483127 483125\n443977 443976\n481227 481226\n137149 137148\n378457 378456\n72775 72773\n204868 204867\n251251 251250\n227768 227767\n321983 321981\n492800 492798\n133416 133415\n325595 325594\n165418 165416\n450023 450021\n170743 170742\n373302 373300\n418168 418167\n433743 433742\n357623 357622\n63717 63715\n71483 71482\n162608 162606\n400920 400918\n88963 88961\n497771 497769\n116934 116932\n372492 372491\n443704 443702\n255923 255921\n97940 97938\n378230 378228\n143927 143926\n134769 134767\n198947 198946\n70836 70835\n177638 177637\n226654 226652\n212602 212601\n376580 376579\n75876 75875\n297484 297482\n441895 441894\n85727 85726\n483094 483093\n261506 261505\n445203 445202\n89286 89285\n272389 272388\n319513 319511\n365837 365835\n475312 475311\n124556 124555\n410823 410822\n128435 128434\n480859 480858\n336438 336437\n261183 261181\n191524 191522\n217270 217268\n381129 381127\n273600 273598\n228207 228206\n473398 473396\n353674 353672\n111578 111577\n261037 261035\n493229 493228\n111954 111952\n205754 205752\n294627 294626\n237930 237929\n230299 230297\n467259 467258\n263025 263024\n432081 432079\n438520 438518\n278856 278854\n73788 73787\n153061 153059\n114035 114034\n90655 90654\n85793 85792\n489746 489744\n198112 198110\n470919 470918\n444300 444298\n213583 213581\n129958 129957\n375234 375232\n252142 252141\n260879 260877\n57286 57285\n448974 448973\n479609 479608\n343320 343318\n372119 372118\n199181 199180\n392192 392191\n400601 400600\n397309 397307\n229569 229567\n315425 315424\n397792 397790\n64163 64162\n338195 338194\n278377 278375\n95413 95412\n67666 67665\n395993 395991\n227715 227714\n154096 154095\n383025 383023\n328986 328985\n337409 337407\n74366 74364\n496634 496633\n266946 266944\n415748 415747\n314680 314678\n277676 277674\n426840 426839\n329793 329791\n457183 457182\n175173 175171\n99738 99737\n379228 379226\n239036 239035\n268986 268985\n198956 198955\n377725 377724\n294695 294693\n213782 213780\n225660 225658\n198863 198861\n58762 58760\n498184 498182\n304901 304899\n255674 255672\n317394 317392\n348554 348552\n97085 97083\n176388 176387\n277294 277293\n469268 469267\n276443 276441\n70286 70285\n450266 450264\n444386 444385\n256095 256093\n90923 90921\n129360 129358\n84854 84852\n176622 176621\n475096 475094\n157232 157230\n299856 299854\n194538 194537\n159058 159057\n230847 230846\n315006 315004\n382770 382769\n122301 122300\n385008 385007\n207238 207237\n182756 182754\n289169 289168\n272696 272694\n450055 450053\n126083 126081\n133137 133135\n392470 392468\n109756 109755\n161850 161849\n231448 231447\n374546 374545\n62292 62291\n321164 321162\n325207 325205\n348800 348798\n368974 368972\n63391 63390\n111126 111125\n204747 204746\n73808 73806\n403683 403682\n202487 202486\n143431 143430\n362502 362500\n286293 286291\n188023 188022\n65625 65623\n490610 490608\n484404 484402\n469078 469077\n164584 164582\n466605 466603\n377762 377760\n159423 159421\n367355 367353\n348873 348871\n208301 208300\n451988 451986\n193945 193944\n473618 473617\n104263 104262\n138430 138429\n341728 341726\n292240 292239\n217943 217941\n330669 330667\n176780 176779\n434153 434152\n225035 225034\n472409 472407\n316409 316408\n313189 313188\n344993 344991\n467476 467475\n410434 410432\n383909 383907\n452233 452231\n239608 239606\n472216 472214\n62334 62333\n272487 272485\n257828 257826\n261124 261123\n431344 431342\n137033 137031\n491185 491184\n175561 175559\n94979 94978\n278746 278744\n140143 140141\n229812 229811\n378046 378045\n485928 485927\n153889 153888\n80997 80995\n145899 145898\n358863 358862\n166888 166887\n50468 50466\n111063 111062\n91865 91863\n360120 360118\n435039 435038\n312957 312956\n218252 218250\n292244 292243\n268502 268501\n224911 224909\n243183 243181\n205156 205155\n191827 191826\n322026 322025\n192851 192849\n418577 418575\n409148 409147\n334020 334018\n201888 201887\n131252 131250\n475559 475557\n406537 406535\n277621 277619\n111207 111206\n207421 207420\n270556 270555\n268359 268357\n209238 209236\n101748 101747\n74020 74019\n435256 435255\n266061 266059\n451087 451085\n409084 409083\n269389 269387\n100396 100394\n457114 457112\n492509 492507\n225695 225694\n181876 181875\n363164 363162\n143103 143101\n208198 208196\n91497 91496\n413492 413490\n194659 194658\n68656 68655\n62359 62357\n470255 470253\n448254 448253\n102313 102312\n329337 329335\n87273 87271\n264771 264770\n180662 180661\n422974 422972\n67462 67460\n465737 465735\n220942 220940\n394686 394685\n285320 285318\n67984 67983\n385021 385020\n278977 278975\n70625 70624\n299376 299375\n181710 181709\n148391 148389\n311923 311921\n360404 360402\n207077 207075\n161683 161681\n91885 91884\n354631 354629\n247053 247051\n65103 65102\n211272 211270\n441899 441897\n386307 386306\n230940 230939\n278331 278329\n150343 150342\n300927 300926\n220398 220396\n365710 365708\n73182 73180\n264496 264494\n455776 455775\n230561 230560\n419581 419579\n463638 463636\n369549 369548\n289606 289604\n437843 437842\n90270 90268\n306290 306288\n491844 491842\n175599 175598\n289018 289016\n328410 328409\n406505 406503\n201620 201618\n492302 492301\n333247 333245\n419723 419721\n92788 92787\n299772 299770\n318643 318641\n200790 200788\n98683 98682\n136113 136111\n90406 90404\n417809 417807\n197072 197071\n327699 327697\n330462 330460\n108180 108178\n479504 479502\n425689 425687\n371253 371251\n227158 227157\n483719 483717\n362835 362833\n173411 173410\n72869 72868\n458721 458720\n280858 280857\n93078 93076\n383766 383764\n488977 488975\n378266 378265\n465481 465480\n429579 429577\n411313 411311\n129249 129247\n464127 464125\n475549 475547\n393357 393356\n91654 91652\n249756 249754\n352958 352956\n385216 385215\n445877 445876\n374473 374472\n279521 279520\n454101 454100\n407038 407036\n284774 284772\n162046 162045\n439919 439918\n327303 327301\n398116 398115\n234837 234836\n185076 185075\n200602 200601\n440338 440336\n123986 123984\n83540 83538\n144520 144519\n455739 455738\n170576 170574\n260242 260240\n493262 493260\n242081 242079\n256297 256296\n418804 418802\n184518 184517\n452884 452882\n266856 266855\n273641 273640\n254928 254927\n276748 276746\n391052 391050\n71756 71754\n208024 208022\n85980 85979\n478554 478553\n304202 304200\n361122 361121\n464998 464997\n480452 480451\n341646 341644\n341461 341460\n344098 344097\n462107 462105\n399180 399179\n139354 139352\n344368 344367\n355632 355631\n333819 333818\n180621 180619\n346372 346370\n437963 437962\n358487 358485\n286128 286126\n71540 71539\n197111 197110\n137045 137043\n199241 199239\n79454 79452\n445280 445279\n309930 309929\n273361 273360\n119116 119114\n288249 288247\n459699 459698\n111239 111237\n463563 463562\n429481 429479\n75155 75153\n278556 278555\n299840 299839\n177577 177575\n291744 291743\n218102 218100\n185529 185528\n338451 338450\n288520 288519\n471924 471922\n245013 245012\n295556 295554\n157739 157737\n418126 418125\n124665 124663\n275780 275778\n392416 392415\n467993 467992\n414717 414716\n185827 185825\n51670 51668\n404018 404017\n242855 242854\n294382 294381\n380873 380871\n56426 56425\n138690 138688\n207670 207669\n230589 230588\n262985 262983\n133901 133899\n236702 236700\n177119 177117\n469364 469362\n239360 239358\n314877 314876\n86334 86332\n308574 308573\n97436 97435\n326706 326705\n215386 215384\n428724 428722\n141766 141765\n207884 207883\n245132 245131\n177477 177476\n353381 353380\n200989 200987\n428542 428541\n454897 454895\n467834 467832\n467848 467846\n289571 289569\n220301 220300\n456111 456110\n345777 345775\n284951 284950\n258340 258339\n495130 495129\n397920 397919\n389445 389443\n52036 52034\n421491 421489\n351801 351800\n131029 131028\n122855 122853\n129722 129721\n418234 418233\n268707 268706\n86954 86953\n339210 339208\n197476 197475\n304580 304579\n412597 412595\n90157 90156\n130034 130033\n92365 92363\n169078 169077\n115906 115905\n203476 203474\n406011 406010\n299872 299871\n271348 271347\n379123 379121\n369854 369853\n184886 184884\n387832 387831\n376957 376955\n118484 118483\n490099 490097\n489720 489718\n433979 433978\n480784 480783\n329421 329419\n375211 375210\n157309 157308\n370768 370767\n444044 444042\n428979 428978\n55333 55332\n412355 412353\n490680 490679\n73214 73213\n476885 476883\n212796 212795\n53907 53905\n68776 68774\n238862 238860\n362434 362432\n154278 154276\n96709 96708\n274015 274013\n397285 397283\n455829 455828\n491274 491272\n482697 482695\n148531 148529\n353308 353306\n420722 420720\n123500 123499\n172786 172785\n187352 187350\n81767 81766\n469232 469230\n290938 290936\n232558 232556\n329676 329675\n365960 365959\n497003 497002\n139126 139125\n212447 212445\n323563 323561\n404289 404288\n158719 158718\n446712 446710\n284980 284979\n435766 435764\n219659 219658\n353665 353664\n318311 318309\n241071 241069\n263877 263876\n380885 380884\n374977 374975\n75369 75368\n228155 228154\n207363 207361\n269651 269649\n460157 460156\n260193 260191\n274107 274106\n140165 140163\n158380 158378\n462186 462184\n368683 368682\n222493 222491\n493802 493800\n273627 273626\n75892 75890\n109223 109221\n96395 96393\n481764 481763\n202063 202061\n463770 463769\n439812 439810\n353763 353762\n394195 394193\n157575 157574\n400215 400214\n156872 156871\n482091 482090\n320490 320488\n118766 118764\n498677 498676\n131508 131506\n264784 264782\n206264 206263\n262847 262845\n248230 248228\n93988 93986\n273804 273803\n62553 62551\n85574 85573\n122335 122333\n352054 352052\n313642 313640\n339180 339178\n254837 254835\n411048 411046\n422430 422429\n333433 333432\n473880 473878\n54471 54470\n95613 95612\n387668 387667\n55071 55070\n348222 348220\n300662 300660\n155710 155709\n388139 388138\n232307 232305\n443417 443415\n111904 111902\n313966 313965\n199449 199448\n189541 189540\n85146 85145\n208326 208324\n250005 250003\n211284 211282\n232921 232919\n132100 132099\n176844 176843\n359043 359042\n88063 88061\n124895 124893\n465130 465129\n150211 150210\n357587 357586\n121032 121031\n388916 388914\n403023 403022\n181389 181387\n187210 187209\n292097 292096\n492515 492514\n310282 310281\n479743 479742\n148554 148552\n229830 229829\n301406 301405\n130312 130311\n451482 451481\n443369 443368\n285916 285914\n369652 369651\n76842 76841\n136151 136149\n425904 425903\n490702 490701\n447675 447674\n383755 383754\n131229 131228\n192561 192560\n444962 444960\n337994 337993\n165086 165085\n407327 407326\n169236 169235\n154483 154482\n171420 171418\n473322 473320\n142489 142488\n197922 197920\n134177 134176\n387670 387669\n373359 373358\n286813 286811\n459617 459615\n54194 54192\n440737 440735\n224399 224398\n312389 312388\n260666 260665\n290429 290428\n369121 369120\n258447 258446\n307065 307064\n324929 324928\n112083 112081\n80069 80068\n89595 89593\n405770 405769\n422613 422612\n78365 78364\n214956 214955\n310925 310923\n208020 208019\n315426 315425\n455530 455528\n491473 491472\n411566 411565\n109941 109939\n358987 358986\n332328 332326\n378423 378421\n361508 361507\n473468 473467\n433636 433635\n397797 397795\n313907 313905\n480562 480560\n346792 346790\n449633 449631\n112832 112831\n82177 82175\n63754 63752\n167498 167496\n325123 325121\n348353 348352\n454044 454042\n287336 287335\n306969 306968\n296201 296199\n123433 123432\n442890 442889\n417461 417459\n293047 293046\n162561 162559\n318335 318333\n418612 418610\n379028 379026\n79824 79822\n186358 186357\n185873 185872\n192911 192910\n329931 329929\n190595 190593\n213863 213862\n499565 499563\n395442 395440\n118569 118567\n424692 424690\n77482 77481\n58728 58726\n189640 189638\n396612 396611\n266092 266091\n100535 100533\n448982 448980\n376799 376798\n78496 78494\n290281 290279\n304751 304749\n331387 331386\n159021 159019\n458575 458573\n178774 178772\n368830 368829\n324561 324560\n446380 446378\n430233 430232\n101925 101923\n78733 78732\n244359 244357\n316680 316678\n80799 80797\n304359 304357\n397408 397406\n101773 101772\n322638 322637\n240556 240555\n452370 452368\n199517 199516\n116388 116386\n74697 74695\n106904 106903\n461402 461401\n171986 171985\n161072 161070\n194033 194032\n415166 415165\n291772 291770\n222905 222903\n66466 66465\n373265 373263\n126744 126743\n126127 126126\n249035 249034\n460991 460990\n256553 256551\n81998 81997\n485452 485451\n179489 179488\n111890 111888\n450050 450049\n379762 379761\n472541 472540\n164164 164163\n125736 125734\n486247 486246\n336044 336042\n428854 428853\n388834 388833\n422856 422855\n309606 309604\n364855 364854\n387342 387341\n490637 490635\n93917 93916\n346149 346148\n139809 139808\n212701 212699\n421737 421735\n338966 338965\n404922 404920\n239705 239704\n192834 192833\n307714 307713\n322380 322378\n144584 144583\n291144 291142\n122070 122069\n494122 494120\n400402 400400\n122870 122869\n207294 207293\n494740 494739\n356713 356711\n403430 403428\n294265 294264\n244189 244188\n330076 330075\n146900 146898\n62236 62235\n339286 339284\n361333 361331\n121130 121129\n109682 109680\n147766 147764\n313071 313070\n291640 291639\n99514 99512\n69111 69110\n224443 224442\n482173 482172\n434630 434629\n71033 71031\n475509 475507\n470573 470572\n206726 206724\n195209 195208\n446573 446572\n461427 461425\n292066 292065\n364652 364651\n470284 470282\n53787 53786\n357726 357725\n403770 403769\n185303 185301\n54075 54073\n420732 420731\n288182 288181\n227456 227455\n304382 304380\n236605 236603\n164193 164191\n218586 218584\n220628 220627\n475772 475770\n200442 200440\n121425 121423\n142874 142872\n197240 197238\n377762 377761\n211960 211958\n165861 165859\n218159 218157\n347688 347686\n158990 158989\n333356 333355\n155746 155745\n124522 124521\n442462 442461\n494844 494843\n170318 170316\n85722 85720\n171878 171877\n146454 146453\n328639 328637\n265612 265611\n241552 241550\n222439 222438\n203353 203352\n466737 466735\n249248 249247\n211228 211227\n231711 231709\n396022 396021\n50239 50238\n250549 250548\n79528 79526\n260306 260304\n180937 180935\n180127 180126\n141182 141180\n162311 162309\n266422 266421\n200280 200279\n471264 471263\n226416 226415\n328984 328982\n425831 425830\n170629 170627\n102935 102933\n476251 476250\n103354 103352\n477999 477997\n443091 443089\n72452 72451\n133272 133270\n365988 365986\n429719 429718\n364323 364322\n78793 78792\n119410 119409\n480267 480265\n118738 118737\n288154 288152\n240112 240110\n385613 385612\n399676 399674\n176905 176904\n460828 460827\n165780 165778\n432439 432437\n91439 91438\n120728 120726\n119017 119015\n262292 262291\n133689 133687\n473161 473160\n382026 382025\n305515 305514\n488207 488206\n355824 355822\n275045 275043\n449870 449868\n244435 244433\n449971 449969\n206777 206775\n292771 292770\n321895 321894\n116691 116689\n99938 99937\n496539 496537\n95643 95642\n482488 482487\n362872 362870\n173136 173134\n434444 434443\n476122 476120\n453786 453785\n484353 484352\n488518 488516\n425791 425789\n332132 332130\n116042 116040\n178060 178059\n355806 355805\n163054 163052\n439680 439679\n352815 352813\n290033 290031\n268210 268208\n418424 418422\n396380 396379\n492257 492256\n434042 434041\n429967 429966\n304270 304269\n481653 481652\n171203 171201\n354456 354455\n346730 346729\n470226 470225\n272344 272342\n151021 151020\n411958 411956\n335859 335858\n297157 297156\n58781 58779\n292764 292763\n107010 107009\n463738 463737\n485615 485614\n193992 193990\n84842 84841\n253465 253463\n297556 297555\n116072 116071\n478398 478396\n365454 365453\n169996 169994\n410095 410093\n291299 291297\n104996 104994\n365582 365581\n248507 248505\n82691 82690\n264942 264941\n334195 334194\n498402 498401\n271351 271349\n220955 220954\n87925 87924\n393666 393664\n136408 136406\n148717 148715\n390901 390900\n151183 151182\n350696 350694\n455888 455886\n106848 106846\n145410 145408\n200788 200787\n261700 261699\n470453 470451\n481323 481321\n153275 153274\n403157 403156\n487623 487622\n51494 51493\n464621 464619\n100758 100756\n354820 354819\n373924 373923\n320102 320100\n292240 292238\n218466 218465\n260620 260619\n321149 321148\n476738 476737\n230076 230074\n116335 116333\n321358 321356\n423390 423388\n454027 454026\n334096 334094\n273839 273838\n270604 270603\n245363 245362\n53879 53878\n225346 225344\n136399 136397\n330086 330084\n227322 227320\n98743 98741\n258892 258891\n463203 463201\n305983 305982\n175371 175369\n256090 256089\n76010 76008\n462176 462175\n344677 344676\n201392 201390\n337202 337201\n138910 138908\n387829 387828\n276265 276263\n448679 448678\n89759 89758\n163140 163138\n158116 158114\n259561 259559\n54607 54605\n99295 99294\n493465 493464\n461740 461739\n141137 141136\n425987 425985\n366834 366832\n258468 258466\n164353 164351\n317979 317978\n143143 143142\n403392 403391\n54925 54924\n263245 263244\n386498 386497\n303848 303847\n467260 467258\n398130 398128\n125857 125856\n73868 73866\n96946 96944\n492806 492804\n141572 141571\n202354 202352\n90536 90534\n209496 209494\n471700 471699\n108295 108294\n217085 217083\n335571 335570\n295613 295612\n440781 440779\n352265 352263\n241854 241853\n413565 413564\n116504 116502\n171008 171006\n489560 489558\n93843 93841\n484583 484582\n328675 328674\n316718 316717\n292686 292684\n338617 338616\n78210 78208\n119017 119016\n151969 151968\n311527 311526\n429614 429613\n449821 449819\n51441 51439\n227822 227821\n223096 223094\n390690 390688\n384345 384343\n109650 109648\n371586 371585\n451718 451717\n89319 89317\n395439 395438\n436444 436443\n445264 445263\n230711 230709\n267501 267500\n408714 408713\n342968 342967\n333969 333967\n126460 126458\n441353 441351\n412523 412522\n248517 248516\n167522 167521\n157303 157302\n454852 454850\n193954 193952\n52066 52065\n383253 383252\n270908 270907\n314429 314428\n410473 410472\n188636 188635\n332894 332893\n284501 284500\n401543 401541\n357760 357759\n407998 407997\n214250 214248\n415352 415351\n273381 273379\n475769 475767\n217688 217686\n303929 303927\n305822 305820\n248014 248012\n286817 286816\n260203 260202\n134378 134376\n400214 400212\n418064 418063\n200830 200828\n497932 497930\n254945 254943\n493469 493468\n170847 170845\n441988 441986\n354025 354024\n428225 428224\n189563 189561\n184623 184622\n259714 259712\n242606 242604\n219754 219753\n402081 402080\n491385 491384\n441890 441888\n53062 53060\n353951 353950\n427870 427868\n306680 306679\n215269 215268\n457847 457845\n454541 454539\n210064 210063\n478067 478065\n136024 136023\n411199 411198\n268738 268737\n410600 410598\n295199 295197\n203110 203108\n327521 327519\n240302 240301\n66355 66354\n414952 414951\n289382 289381\n55613 55612\n319352 319350\n411325 411323\n182966 182964\n146468 146467\n56937 56935\n112812 112810\n387432 387430\n313535 313534\n111510 111509\n360143 360141\n65921 65919\n226001 225999\n213852 213850\n349121 349120\n164413 164411\n72318 72316\n479556 479555\n221104 221102\n376525 376523\n381664 381663\n414335 414334\n83757 83756\n358434 358433\n96516 96514\n466741 466739\n239634 239633\n157299 157297\n168947 168945\n462177 462175\n63648 63647\n245516 245514\n60551 60550\n464982 464980\n223291 223290\n368212 368211\n121646 121645\n215195 215193\n119483 119481\n184678 184677\n204593 204592\n125964 125962\n370172 370170\n366644 366642\n335296 335294\n412760 412758\n401931 401930\n228400 228398\n315753 315752\n324351 324349\n211525 211523\n297418 297416\n256463 256462\n378713 378711\n201687 201685\n388477 388476\n299137 299136\n128870 128869\n216223 216221\n180374 180372\n399600 399599\n149553 149552\n153657 153655\n107319 107318\n260148 260147\n281183 281181\n205674 205672\n246268 246266\n445114 445112\n198522 198521\n85557 85556\n231253 231251\n227834 227833\n312563 312561\n89775 89774\n91826 91824\n368919 368917\n248133 248131\n59026 59024\n199544 199543\n452519 452518\n103723 103721\n79860 79858\n188958 188957\n115185 115184\n434754 434753\n82265 82264\n208240 208239\n92503 92502\n85984 85983\n167874 167872\n235956 235954\n477410 477408\n401656 401654\n266207 266205\n286101 286100\n125619 125618\n196445 196443\n157803 157801\n53847 53846\n254199 254198\n124683 124681\n163863 163862\n308378 308377\n484909 484908\n380452 380450\n302057 302056\n380860 380859\n283358 283356\n451651 451650\n133040 133038\n495551 495549\n198429 198428\n227106 227105\n379756 379755\n468209 468207\n199755 199754\n62000 61999\n104951 104950\n150606 150604\n403144 403143\n476518 476516\n258061 258060\n126637 126636\n440561 440560\n494391 494390\n363426 363424\n237945 237943\n102982 102981\n50712 50711\n59835 59833\n270049 270048\n398858 398857\n460708 460706\n109131 109129\n288613 288611\n356668 356666\n384623 384622\n153939 153937\n385479 385477\n440029 440027\n352716 352714\n258728 258726\n323299 323297\n58750 58748\n65012 65010\n139031 139029\n311263 311262\n167040 167039\n436091 436090\n131986 131984\n362155 362154\n149259 149257\n454210 454208\n435097 435095\n54268 54267\n431431 431429\n376570 376569\n298227 298226\n246469 246467\n294706 294705\n193990 193988\n499112 499110\n101267 101266\n94772 94770\n436002 436001\n289303 289301\n205328 205326\n337999 337997\n398476 398475\n236560 236558\n203646 203644\n199240 199238\n384105 384104\n361694 361693\n162631 162630\n177852 177850\n171241 171240\n313044 313043\n360513 360511\n460816 460814\n436497 436495\n266201 266199\n157766 157765\n346947 346946\n393312 393311\n164128 164127\n339618 339616\n70381 70379\n194151 194149\n358495 358493\n363804 363802\n114828 114826\n381074 381073\n122098 122097\n325462 325461\n144245 144243\n202835 202833\n118242 118241\n54898 54897\n214147 214145\n198812 198810\n61639 61637\n220675 220673\n170020 170018\n129778 129776\n82040 82039\n288487 288485\n231178 231177\n242393 242391\n194934 194933\n495544 495543\n370713 370711\n385277 385276\n441859 441857\n491591 491590\n293583 293582\n279957 279955\n282324 282323\n159924 159923\n340659 340657\n488520 488519\n359744 359743\n387359 387357\n375112 375111\n179387 179386\n457436 457434\n102078 102076\n390841 390839\n445257 445256\n234695 234694\n364675 364674\n375377 375376\n227621 227620\n455015 455013\n197404 197403\n286591 286589\n347619 347618\n263287 263285\n62705 62703\n475192 475191\n86721 86720\n110581 110579\n79142 79141\n243417 243416\n118437 118435\n442390 442389\n480455 480454\n329678 329676\n219260 219258\n436935 436934\n313052 313051\n374499 374498\n72057 72055\n368025 368023\n186107 186105\n384844 384843\n190710 190708\n494297 494295\n349594 349592\n207241 207240\n316275 316274\n284623 284622\n466123 466122\n483116 483115\n358085 358083\n377705 377704\n382236 382234\n431093 431092\n486792 486790\n333677 333676\n217829 217828\n175095 175093\n175558 175557\n53302 53300\n386335 386333\n273491 273489\n425052 425050\n212674 212672\n204893 204891\n144348 144347\n284014 284012\n306119 306117\n189594 189592\n191172 191171\n465645 465644\n311633 311632\n482488 482486\n139790 139789\n147095 147094\n140118 140117\n377641 377640\n55262 55260\n280962 280961\n389826 389825\n384035 384034\n172786 172784\n207984 207983\n60712 60710\n224455 224453\n97481 97480\n475565 475563\n465337 465335\n179213 179211\n307214 307213\n408381 408379\n222143 222142\n237529 237528\n84059 84058\n154168 154166\n161903 161901\n69881 69880\n106971 106969\n68306 68304\n389929 389927\n266240 266238\n491912 491910\n180779 180778\n185547 185546\n205417 205416\n171902 171901\n481029 481028\n296283 296281\n212029 212028\n74966 74964\n403240 403239\n345973 345971\n491450 491448\n205297 205296\n467535 467534\n104589 104588\n50669 50668\n253408 253406\n102413 102412\n403534 403533\n153779 153778\n186676 186674\n273339 273338\n294161 294159\n66441 66440\n229966 229965\n88885 88884\n403699 403697\n256727 256725\n75759 75758\n128575 128574\n416511 416509\n433073 433071\n372353 372351\n143481 143480\n464440 464439\n251287 251285\n425978 425977\n82009 82008\n135500 135498\n264338 264336\n288334 288333\n323452 323450\n367933 367932\n249977 249976\n118597 118595\n430606 430604\n236859 236858\n227150 227149\n311714 311712\n377742 377740\n354685 354683\n478331 478329\n124214 124213\n418133 418132\n277606 277604\n127839 127838\n108000 107998\n320543 320541\n357856 357855\n376729 376727\n255481 255480\n155282 155280\n435300 435298\n320529 320528\n248164 248162\n130695 130694\n104890 104889\n263485 263483\n221229 221227\n246555 246554\n425309 425307\n475012 475011\n170233 170232\n492772 492771\n89442 89440\n136157 136156\n279667 279666\n179382 179381\n72783 72781\n132175 132173\n275903 275901\n284905 284904\n404746 404744\n237061 237059\n325477 325476\n177638 177636\n467702 467700\n278831 278830\n492538 492537\n73797 73796\n492399 492398\n143720 143719\n491165 491164\n107019 107018\n327413 327412\n429992 429991\n208934 208933\n356135 356133\n127352 127351\n181589 181587\n466513 466511\n275945 275943\n395434 395432\n214020 214019\n498344 498342\n355041 355040\n187699 187697\n135751 135750\n407232 407230\n317243 317241\n102354 102353\n402409 402407\n134601 134599\n230211 230209\n480091 480090\n366863 366862\n414504 414503\n438709 438707\n268823 268821\n90334 90332\n367029 367028\n265878 265877\n321983 321982\n401526 401524\n432664 432662\n263111 263109\n172062 172060\n357858 357856\n472449 472448\n325864 325862\n449703 449701\n452053 452052\n416620 416619\n54341 54339\n398282 398281\n80215 80213\n62838 62836\n323738 323736\n115697 115696\n72309 72308\n426026 426025\n369982 369980\n204945 204944\n253402 253400\n335098 335097\n98921 98920\n348819 348817\n113615 113613\n440537 440535\n108922 108921\n286665 286664\n142016 142015\n221794 221793\n262198 262197\n81270 81268\n168256 168255\n128616 128614\n95976 95974\n295824 295822\n67868 67867\n299681 299680\n117043 117041\n263463 263462\n342462 342461\n377077 377075\n384704 384703\n281785 281783\n344947 344946\n126331 126329\n463021 463019\n229042 229040\n133323 133322\n81583 81582\n453151 453149\n466208 466207\n147867 147865\n473788 473786\n81710 81709\n482425 482424\n387577 387576\n149445 149443\n304995 304994\n490511 490510\n172455 172453\n275656 275654\n79565 79563\n324521 324520\n263085 263083\n354103 354102\n420186 420185\n68180 68179\n245899 245897\n209891 209890\n224124 224123\n365090 365089\n184439 184437\n298362 298361\n287886 287885\n226506 226505\n342400 342398\n470375 470373\n367046 367044\n107111 107109\n431936 431935\n419017 419015\n253434 253432\n215833 215832\n368330 368328\n333920 333919\n406210 406208\n271635 271633\n310788 310786\n252954 252952\n180800 180799\n462859 462857\n97342 97341\n230808 230807\n431850 431849\n84965 84963\n116507 116505\n139522 139520\n105688 105687\n322952 322951\n294072 294070\n318690 318689\n464528 464527\n312191 312189\n177203 177202\n351545 351543\n146218 146216\n196291 196290\n114136 114134\n123480 123479\n218006 218005\n474015 474014\n247188 247187\n286025 286024\n121112 121111\n375291 375290\n128017 128015\n109451 109449\n314744 314742\n180566 180565\n149760 149758\n92166 92165\n125174 125172\n376078 376077\n407464 407463\n434852 434850\n52703 52701\n257223 257222\n475513 475512\n342568 342567\n272893 272892\n488003 488002\n157522 157521\n202937 202936\n372535 372534\n113364 113363\n205003 205001\n439097 439096\n459525 459523\n158100 158099\n97759 97758\n311226 311224\n237890 237889\n57136 57135\n171249 171248\n287644 287642\n297847 297846\n431834 431832\n229388 229387\n292091 292089\n141163 141161\n334194 334193\n72369 72367\n261228 261226\n64851 64850\n360561 360559\n453423 453421\n347257 347255\n292915 292913\n161593 161591\n87133 87131\n184864 184863\n224959 224958\n277696 277695\n74594 74592\n253970 253968\n143979 143977\n439366 439364\n84297 84295\n276667 276666\n209210 209208\n317220 317219\n336297 336295\n443680 443679\n188314 188312\n150123 150122\n400227 400226\n356160 356159\n497299 497297\n189607 189606\n112494 112492\n445609 445607\n399434 399433\n145644 145642\n203684 203683\n269609 269608\n269985 269983\n245812 245810\n231739 231738\n190387 190386\n476650 476649\n303684 303683\n291001 291000\n495778 495776\n350210 350209\n432820 432819\n377516 377514\n177697 177696\n138442 138440\n442702 442700\n112247 112246\n451247 451245\n138707 138705\n291562 291560\n110016 110015\n220825 220823\n196133 196131\n53951 53949\n335480 335479\n370865 370864\n367199 367197\n409647 409645\n270662 270660\n343010 343008\n82811 82810\n444279 444278\n444814 444813\n318356 318355\n376382 376381\n73772 73771\n67783 67782\n67527 67526\n236522 236520\n176254 176252\n158093 158092\n293817 293816\n228760 228758\n110465 110463\n375133 375132\n385873 385871\n57333 57332\n282631 282629\n350197 350195\n338024 338023\n220102 220100\n62150 62148\n364530 364528\n65647 65645\n185038 185037\n323799 323798\n258010 258008\n233433 233431\n163592 163590\n351210 351209\n139399 139397\n494083 494081\n206345 206344\n198557 198555\n345231 345229\n242642 242640\n299403 299402\n306022 306021\n414312 414310\n96291 96290\n382721 382719\n352997 352995\n410811 410809\n100067 100065\n285117 285115\n56110 56109\n401286 401284\n90381 90379\n284280 284278\n241298 241297\n484091 484090\n400962 400960\n408392 408390\n348884 348883\n160694 160693\n217251 217249\n111073 111072\n271689 271687\n482638 482636\n118868 118866\n101412 101411\n456988 456986\n321887 321885\n478553 478552\n356768 356767\n408697 408696\n139369 139368\n446371 446369\n264835 264833\n154609 154608\n173001 173000\n133556 133555\n301489 301487\n287012 287011\n55961 55960\n134513 134512\n158959 158957\n298698 298696\n482950 482949\n475686 475684\n424131 424129\n52424 52422\n316953 316952\n146848 146846\n407135 407134\n84349 84348\n259612 259610\n473574 473573\n416250 416249\n392230 392229\n66216 66214\n280152 280151\n63935 63934\n278939 278937\n148367 148366\n304671 304669\n285685 285684\n435411 435410\n175283 175281\n55173 55171\n400611 400609\n255557 255556\n452604 452602\n125115 125113\n243922 243921\n369047 369046\n281220 281219\n50784 50783\n58290 58288\n88450 88448\n252109 252107\n328546 328544\n298096 298094\n437721 437720\n52726 52725\n156192 156190\n350118 350116\n250649 250647\n56132 56131\n372360 372358\n297524 297522\n441922 441920\n487691 487689\n359147 359146\n184913 184912\n251559 251558\n309712 309710\n417246 417244\n403705 403704\n201352 201350\n95708 95707\n209064 209062\n219324 219323\n409094 409092\n58056 58054\n499651 499650\n382723 382722\n288076 288075\n137906 137905\n217660 217659\n373034 373033\n480158 480157\n125769 125767\n225157 225155\n283092 283090\n183255 183253\n147838 147837\n380546 380544\n443602 443600\n334387 334385\n440585 440583\n357230 357228\n89724 89723\n477864 477862\n286843 286841\n404691 404690\n347175 347173\n438583 438582\n495448 495447\n274845 274843\n77955 77954\n476022 476020\n454706 454704\n135739 135737\n271029 271027\n459836 459834\n356566 356564\n236827 236826\n399210 399209\n413113 413111\n231295 231294\n349624 349623\n422368 422367\n303705 303703\n233537 233536\n68213 68212\n335877 335875\n292887 292886\n456428 456427\n173021 173019\n414303 414301\n307008 307006\n161534 161533\n413830 413829\n131257 131255\n62955 62953\n200578 200576\n389688 389686\n448778 448777\n312230 312229\n378913 378912\n254036 254035\n331537 331536\n382824 382823\n86469 86467\n456082 456080\n473432 473430\n241279 241278\n339176 339174\n106154 106153\n380500 380498\n393193 393192\n437574 437572\n101671 101670\n147153 147151\n448998 448997\n51635 51634\n169515 169514\n340896 340894\n54578 54576\n280079 280078\n488391 488390\n341303 341301\n206299 206298\n353964 353962\n104869 104868\n331149 331148\n144659 144657\n122420 122418\n123897 123895\n135029 135027\n106357 106355\n467000 466999\n143651 143649\n493814 493812\n304177 304175\n287951 287950\n319928 319927\n50625 50623\n75561 75560\n323174 323172\n197918 197917\n322473 322472\n111456 111454\n167667 167666\n352768 352767\n109557 109556\n341786 341785\n156535 156533\n185947 185945\n73290 73288\n491610 491609\n499524 499523\n130591 130589\n397049 397047\n140885 140884\n195075 195074\n411230 411228\n248120 248119\n480127 480126\n357984 357983\n70095 70094\n391181 391180\n214669 214667\n338257 338255\n400865 400864\n202717 202716\n145214 145213\n121494 121493\n247250 247249\n418467 418466\n75861 75859\n93554 93552\n316298 316296\n258883 258882\n262832 262831\n411906 411904\n198897 198895\n334220 334219\n400201 400199\n102397 102395\n296160 296158\n437676 437674\n204996 204995\n159030 159028\n54291 54289\n481012 481010\n280245 280243\n173792 173791\n196033 196031\n217500 217498\n272252 272250\n65198 65197\n238754 238753\n433813 433812\n118663 118661\n486115 486113\n446850 446848\n325814 325813\n146632 146630\n118057 118056\n439463 439462\n234842 234840\n307239 307237\n405848 405846\n144770 144768\n147691 147689\n397234 397232\n73258 73257\n314047 314046\n302267 302266\n156649 156647\n386569 386567\n76853 76851\n68671 68669\n400625 400624\n126251 126249\n226076 226075\n119520 119518\n433505 433504\n364606 364605\n287472 287470\n279125 279124\n419601 419600\n63319 63318\n209191 209190\n497438 497436\n278441 278439\n272838 272836\n219236 219235\n82702 82701\n337021 337020\n466274 466272\n331194 331193\n275661 275660\n217678 217677\n337869 337867\n138124 138123\n309269 309267\n99435 99434\n237247 237245\n130938 130937\n437709 437708\n391946 391944\n135567 135566\n449952 449950\n88918 88916\n166926 166924\n489123 489122\n74465 74463\n325764 325762\n82471 82469\n253626 253625\n125594 125592\n91138 91136\n60878 60877\n332623 332621\n173948 173947\n85572 85570\n332118 332117\n228619 228617\n130465 130464\n292982 292981\n79658 79657\n378419 378418\n398577 398575\n214162 214160\n358523 358522\n487796 487795\n91143 91141\n303928 303927\n98611 98609\n317658 317657\n428216 428215\n339607 339606\n58694 58693\n184653 184651\n478493 478492\n154543 154541\n456592 456590\n291463 291461\n229505 229503\n428965 428964\n63824 63823\n113165 113164\n337608 337606\n194959 194957\n252472 252470\n142720 142718\n399842 399840\n60043 60041\n367516 367514\n299997 299996\n432429 432427\n66851 66849\n160352 160351\n264993 264991\n374345 374344\n320946 320944\n228178 228176\n192936 192934\n208874 208872\n490443 490441\n424827 424825\n80608 80607\n389749 389747\n92588 92586\n75135 75134\n354900 354898\n93223 93221\n216895 216893\n464810 464808\n436447 436446\n307153 307151\n255184 255183\n466782 466780\n342854 342853\n130254 130252\n473488 473487\n356629 356627\n316900 316898\n468388 468387\n371838 371836\n262849 262848\n369187 369186\n99056 99054\n345335 345333\n332994 332993\n234309 234308\n124772 124770\n56826 56825\n450513 450512\n252663 252662\n270400 270398\n280302 280301\n352280 352278\n386678 386677\n375732 375731\n344232 344230\n210669 210668\n388303 388302\n207112 207110\n460121 460119\n485290 485288\n396797 396796\n230990 230988\n252454 252452\n417733 417732\n246585 246583\n363252 363251\n300301 300299\n185110 185108\n183743 183742\n263301 263300\n372115 372114\n496881 496879\n388390 388388\n324617 324616\n446567 446565\n414373 414371\n191260 191259\n386113 386111\n282964 282962\n284308 284307\n322021 322019\n267709 267707\n117343 117342\n71407 71406\n295448 295447\n413106 413105\n88756 88755\n72180 72178\n57720 57718\n193892 193891\n189981 189979\n123034 123032\n330291 330289\n401473 401472\n52471 52470\n310901 310900\n86349 86348\n453444 453442\n375603 375602\n465968 465967\n198849 198848\n459458 459457\n169123 169121\n91134 91133\n242192 242191\n246358 246357\n363251 363249\n167107 167106\n359249 359248\n451191 451190\n222226 222225\n104697 104696\n175321 175319\n223392 223390\n459699 459697\n118328 118326\n393289 393287\n340215 340214\n494748 494746\n308023 308021\n331114 331112\n395196 395195\n103918 103916\n309130 309128\n126096 126095\n98890 98888\n192945 192943\n421793 421791\n247304 247303\n94031 94030\n397926 397924\n337135 337134\n392491 392490\n272379 272378\n389695 389693\n137167 137165\n321498 321497\n328540 328538\n191829 191827\n241412 241410\n90122 90120\n370960 370958\n90689 90687\n123362 123360\n192147 192145\n330924 330922\n455257 455255\n245998 245996\n126996 126995\n183531 183529\n132900 132899\n106458 106457\n441879 441878\n413729 413727\n205981 205979\n83712 83711\n358655 358653\n397988 397987\n199837 199835\n58960 58958\n451500 451499\n355203 355201\n391279 391278\n434014 434013\n270072 270071\n351019 351018\n334508 334506\n258258 258256\n92527 92526\n160702 160701\n484597 484595\n169277 169275\n123437 123435\n466522 466521\n323013 323012\n416153 416151\n485899 485897\n447737 447736\n493484 493482\n242462 242460\n174676 174675\n348435 348434\n389003 389002\n311890 311889\n118141 118140\n171897 171895\n61307 61305\n76871 76870\n457427 457426\n127365 127364\n72466 72464\n57527 57525\n140686 140684\n219508 219507\n189837 189836\n409086 409085\n276121 276120\n451706 451704\n275577 275575\n354206 354205\n304442 304440\n93518 93517\n405782 405781\n174775 174774\n230982 230981\n277213 277211\n53342 53340\n285651 285650\n270499 270497\n358851 358849\n288961 288960\n69242 69240\n405375 405373\n457801 457800\n461051 461049\n231308 231307\n139022 139021\n409070 409069\n276924 276923\n434354 434352\n168425 168423\n208707 208705\n76862 76860\n236896 236895\n310248 310247\n198672 198671\n201512 201511\n195657 195656\n466091 466089\n167487 167486\n371644 371643\n276956 276954\n138261 138260\n277822 277821\n235235 235233\n112972 112971\n277678 277677\n126575 126574\n429834 429833\n277514 277513\n313619 313617\n470227 470225\n117078 117076\n80767 80766\n362331 362330\n346540 346539\n477673 477671\n289321 289319\n241978 241977\n339328 339326\n202276 202274\n296061 296060\n324521 324519\n397435 397433\n345120 345118\n438183 438181\n376133 376131\n58782 58780\n118089 118087\n336258 336256\n444018 444017\n465543 465542\n389412 389411\n107414 107413\n355062 355060\n278292 278291\n358955 358953\n57916 57914\n58007 58006\n85950 85949\n338995 338993\n295865 295864\n322787 322786\n442342 442340\n102069 102067\n145088 145087\n449834 449833\n53001 53000\n234199 234197\n244614 244612\n344171 344169\n479580 479578\n278605 278603\n71673 71671\n201123 201121\n493770 493769\n485582 485581\n372218 372217\n468124 468123\n270879 270877\n143596 143595\n326361 326360\n71624 71623\n222474 222472\n398516 398514\n399415 399413\n347906 347904\n486757 486756\n165124 165123\n348339 348337\n55378 55376\n128789 128787\n66640 66639\n228635 228634\n74399 74397\n339322 339321\n283960 283959\n309450 309448\n100220 100219\n110199 110197\n302272 302271\n167286 167285\n62822 62820\n189102 189100\n365922 365921\n132829 132827\n105805 105804\n407981 407980\n393388 393386\n257345 257343\n178879 178878\n84967 84965\n390910 390909\n84019 84018\n122871 122869\n416122 416121\n338494 338493\n383365 383364\n161400 161399\n94787 94785\n147272 147271\n314218 314216\n424325 424323\n264588 264586\n231504 231502\n265412 265410\n229289 229287\n428816 428814\n246387 246385\n118136 118135\n485125 485124\n378399 378398\n403965 403964\n374333 374331\n74639 74637\n163177 163175\n270865 270864\n138627 138626\n338788 338786\n234147 234146\n346800 346799\n397354 397353\n325287 325286\n427514 427512\n418692 418690\n185195 185194\n100310 100308\n200837 200835\n98412 98410\n434186 434184\n334946 334945\n447821 447819\n366781 366779\n54556 54555\n277847 277845\n387150 387148\n90217 90216\n374791 374790\n235359 235357\n71135 71133\n406813 406811\n458665 458664\n186336 186335\n253852 253850\n325612 325610\n157619 157618\n477081 477079\n335845 335844\n279526 279524\n281025 281023\n202109 202108\n232428 232426\n184121 184120\n441224 441222\n224817 224816\n117039 117037\n191089 191088\n141274 141272\n62212 62211\n107103 107101\n461808 461807\n138416 138415\n115900 115898\n336633 336632\n445637 445636\n375160 375158\n232687 232686\n85596 85594\n273573 273571\n459023 459022\n339128 339126\n265049 265048\n190495 190494\n281770 281768\n415416 415414\n296632 296631\n376753 376751\n192805 192803\n116434 116432\n207268 207267\n331957 331956\n475105 475103\n469147 469145\n372990 372988\n121268 121267\n322300 322299\n120336 120335\n441754 441753\n432980 432978\n107277 107275\n380024 380022\n451448 451446\n252266 252264\n409124 409122\n211196 211195\n240784 240782\n133500 133498\n337543 337542\n471360 471358\n225968 225966\n54983 54982\n169134 169133\n341639 341637\n300629 300628\n201804 201803\n488371 488370\n479547 479546\n364479 364477\n220157 220156\n461374 461372\n408827 408826\n340107 340105\n433167 433166\n307337 307336\n278368 278367\n332182 332181\n144165 144163\n163600 163599\n78144 78142\n221831 221830\n81369 81368\n416381 416379\n364049 364048\n472322 472321\n401544 401543\n185950 185948\n476898 476897\n225770 225769\n92821 92820\n466595 466593\n296343 296341\n78981 78980\n218269 218268\n161966 161965\n416921 416920\n424001 424000\n186143 186141\n192774 192773\n146161 146160\n239673 239672\n260837 260836\n192356 192354\n395657 395656\n144845 144843\n362673 362671\n162610 162609\n227717 227716\n228009 228008\n145366 145364\n422159 422158\n367723 367722\n369127 369126\n114701 114700\n328329 328327\n86247 86246\n276269 276267\n257856 257855\n293113 293112\n200160 200159\n182615 182614\n454638 454637\n491283 491281\n193782 193781\n270638 270637\n255414 255412\n309611 309610\n144543 144542\n337027 337025\n97647 97646\n62683 62682\n292753 292752\n472663 472661\n352884 352882\n113456 113455\n63933 63932\n181480 181478\n421171 421169\n415927 415926\n385187 385185\n254134 254132\n92677 92676\n347297 347296\n326118 326116\n423293 423291\n462170 462169\n263952 263950\n299468 299467\n422431 422429\n461680 461679\n470940 470939\n316940 316939\n345692 345690\n238239 238237\n121614 121613\n256413 256412\n482280 482278\n435360 435359\n343385 343384\n161246 161244\n485736 485735\n487743 487742\n484482 484480\n387923 387922\n356694 356693\n72924 72923\n399767 399765\n141890 141889\n426854 426852\n114848 114846\n389038 389036\n312839 312838\n257345 257344\n97672 97670\n444985 444984\n400435 400434\n414031 414029\n105284 105282\n493562 493561\n233665 233664\n217546 217545\n365576 365575\n493278 493276\n369519 369518\n294788 294787\n229283 229281\n237469 237467\n394247 394246\n215275 215273\n433378 433376\n352906 352905\n416637 416635\n170596 170594\n198662 198660\n360491 360489\n419344 419343\n212239 212237\n117527 117526\n473850 473849\n394191 394189\n130685 130684\n217560 217559\n318081 318079\n130917 130915\n72431 72430\n197579 197577\n113333 113332\n490498 490497\n233271 233269\n283610 283608\n358296 358294\n80775 80773\n265836 265834\n318707 318706\n299914 299913\n88715 88714\n124342 124340\n496113 496111\n394268 394267\n300866 300865\n220777 220775\n280402 280400\n324119 324117\n100274 100272\n397640 397639\n475752 475750\n190805 190804\n298342 298341\n288485 288484\n118109 118108\n374805 374803\n305936 305935\n361906 361905\n282250 282249\n229161 229159\n149149 149148\n100531 100529\n211434 211432\n472649 472647\n369106 369104\n188055 188053\n353046 353044\n140346 140345\n201258 201256\n416536 416535\n226493 226492\n198995 198994\n499758 499756\n323336 323335\n259724 259722\n190960 190958\n111733 111731\n310505 310504\n407519 407517\n107288 107286\n72054 72052\n138046 138044\n232696 232694\n275664 275662\n73749 73748\n190074 190072\n79389 79388\n122713 122711\n89579 89578\n299657 299656\n405199 405197\n415919 415918\n178965 178963\n300816 300815\n163515 163513\n454488 454486\n492783 492781\n399081 399079\n91944 91942\n164525 164524\n286548 286546\n479093 479092\n238669 238668\n295277 295276\n442662 442661\n485444 485443\n149348 149347\n498823 498821\n243967 243965\n265944 265942\n115468 115467\n104614 104612\n465541 465539\n120024 120022\n241925 241924\n296336 296334\n73206 73204\n264539 264537\n243262 243260\n296366 296364\n418620 418618\n53121 53119\n264753 264751\n499820 499818\n335335 335333\n294568 294566\n277458 277457\n266071 266069\n382347 382346\n297264 297262\n439433 439431\n142732 142730\n324007 324006\n272971 272970\n424550 424549\n340180 340178\n210432 210430\n133080 133079\n256346 256345\n271574 271572\n347126 347125\n65652 65651\n165937 165935\n208727 208726\n317785 317783\n193200 193199\n187693 187691\n79212 79211\n279179 279177\n98624 98623\n313530 313529\n149100 149098\n313449 313447\n369349 369348\n395762 395760\n167434 167432\n417944 417943\n285015 285014\n499383 499382\n336730 336728\n491772 491770\n133682 133681\n461354 461353\n394039 394037\n405014 405013\n160654 160652\n219851 219850\n229595 229594\n77975 77973\n342858 342857\n475955 475954\n347410 347409\n305120 305118\n131233 131231\n171552 171551\n345634 345633\n217008 217007\n81693 81692\n274171 274170\n307619 307617\n295885 295883\n312765 312763\n85627 85626\n410101 410100\n276556 276554\n378394 378392\n73892 73891\n351871 351869\n55245 55243\n67618 67617\n458941 458939\n469174 469172\n148230 148229\n414465 414463\n472317 472316\n241115 241114\n381017 381015\n203614 203612\n391458 391456\n385334 385333\n158758 158756\n241592 241591\n127776 127774\n189120 189119\n251267 251265\n486708 486706\n400995 400994\n411088 411086\n303380 303379\n178645 178644\n122251 122250\n67481 67480\n79276 79274\n202028 202026\n161554 161552\n294895 294893\n294246 294245\n256355 256353\n340873 340871\n193918 193917\n132343 132341\n65100 65099\n226677 226676\n308996 308995\n116439 116438\n248070 248068\n455930 455928\n207317 207316\n218011 218009\n123105 123103\n236104 236103\n185511 185510\n404663 404662\n427088 427087\n242527 242525\n447549 447548\n346976 346975\n137779 137778\n116704 116702\n394502 394500\n389740 389739\n99069 99068\n177316 177314\n234906 234905\n423685 423684\n297844 297843\n134542 134540\n449624 449623\n257084 257083\n207818 207816\n236404 236402\n407678 407676\n381502 381500\n177971 177970\n365400 365398\n415917 415916\n249067 249066\n96341 96340\n372442 372440\n451923 451922\n346836 346834\n222128 222126\n165991 165989\n72979 72978\n334986 334985\n450315 450313\n94439 94438\n161100 161099\n178925 178924\n98779 98778\n315324 315322\n261135 261134\n265483 265481\n399394 399393\n149896 149895\n227021 227020\n70601 70600\n447475 447473\n238344 238342\n151392 151391\n246233 246232\n143973 143972\n315814 315812\n468228 468227\n230480 230478\n428407 428406\n115797 115796\n411550 411548\n309314 309312\n264067 264065\n101569 101567\n317857 317855\n102466 102465\n174752 174751\n220318 220316\n109360 109359\n436627 436625\n379942 379940\n339403 339401\n364156 364155\n129301 129300\n267298 267297\n428523 428522\n161867 161866\n180887 180885\n177024 177023\n430505 430504\n62672 62671\n279397 279395\n157859 157858\n176339 176337\n240655 240653\n295034 295033\n492449 492447\n138569 138567\n171137 171135\n431510 431509\n491737 491736\n327163 327161\n156689 156688\n231602 231600\n121569 121567\n268753 268751\n348627 348626\n229125 229124\n432733 432732\n60630 60629\n455612 455610\n208214 208212\n437057 437056\n202076 202074\n412805 412803\n441501 441499\n450257 450256\n230738 230736\n486169 486168\n254034 254032\n491781 491780\n287164 287163\n490921 490919\n82797 82796\n61629 61627\n199732 199730\n354954 354953\n269607 269605\n67965 67964\n149707 149705\n345325 345323\n131041 131040\n156180 156178\n351949 351947\n305569 305567\n405447 405445\n108023 108021\n267907 267905\n157528 157527\n379747 379746\n64263 64261\n226052 226050\n474069 474067\n457397 457396\n288461 288459\n442588 442586\n125485 125484\n379589 379587\n351720 351719\n281863 281861\n76256 76255\n253675 253673\n320858 320857\n56322 56320\n257049 257047\n337467 337466\n182729 182728\n417551 417549\n249236 249235\n440103 440101\n262280 262278\n80275 80274\n73235 73233\n389046 389044\n355349 355348\n404795 404794\n265584 265582\n282909 282908\n405021 405019\n264686 264685\n427198 427197\n440604 440603\n415226 415225\n168384 168383\n290227 290225\n69600 69599\n396342 396341\n266590 266589\n464627 464626\n115522 115520\n198221 198219\n330088 330087\n227555 227553\n165389 165387\n438529 438527\n436773 436772\n204116 204115\n497637 497636\n483631 483629\n56615 56613\n115784 115782\n468896 468894\n429266 429264\n470412 470411\n73617 73616\n59380 59378\n69383 69381\n452159 452157\n404822 404820\n54918 54917\n439069 439068\n447437 447435\n400971 400969\n232573 232571\n73925 73923\n477437 477435\n276359 276357\n492092 492090\n141989 141988\n247592 247591\n346039 346037\n257863 257861\n403702 403701\n418818 418817\n213116 213115\n378650 378648\n67483 67482\n450543 450541\n157565 157563\n458073 458071\n369882 369881\n186919 186917\n404297 404295\n88830 88828\n443836 443835\n98796 98794\n312241 312240\n229263 229262\n313981 313980\n414368 414366\n120911 120909\n475130 475128\n366050 366048\n483392 483391\n446252 446251\n78479 78477\n443373 443372\n128101 128099\n252443 252441\n56466 56464\n234319 234318\n55197 55195\n462913 462911\n249980 249979\n156689 156687\n158352 158350\n388917 388915\n392725 392724\n488610 488609\n135257 135256\n484970 484968\n337261 337259\n417466 417465\n420625 420623\n391482 391481\n458311 458309\n300253 300252\n148526 148525\n204412 204411\n124189 124188\n203644 203642\n425002 425000\n178320 178318\n450471 450470\n355591 355589\n239532 239530\n387277 387275\n348562 348561\n108852 108850\n359113 359112\n382045 382043\n397597 397595\n308287 308285\n151155 151154\n298588 298586\n406998 406996\n313387 313385\n114988 114987\n145177 145176\n456140 456138\n290516 290514\n203572 203570\n310338 310336\n321221 321220\n445973 445972\n87729 87728\n390789 390787\n439970 439968\n483556 483554\n335499 335497\n282729 282728\n275626 275624\n140070 140069\n404534 404533\n146549 146548\n248035 248034\n121014 121013\n148641 148639\n485677 485675\n308479 308477\n384960 384958\n375639 375638\n403851 403850\n377397 377396\n262428 262427\n301117 301116\n327531 327529\n63317 63316\n463639 463637\n55700 55698\n249922 249921\n481775 481773\n347335 347333\n139942 139941\n487573 487571\n449839 449838\n355994 355993\n465924 465923\n202049 202048\n426898 426897\n412921 412919\n385919 385918\n375086 375084\n443007 443006\n250309 250307\n281194 281193\n386715 386714\n188009 188008\n366390 366388\n281163 281161\n293248 293246\n175621 175619\n495245 495244\n447693 447691\n62350 62349\n367007 367006\n355940 355938\n229879 229877\n374284 374283\n255874 255873\n440764 440762\n367243 367242\n214003 214001\n403655 403653\n423775 423773\n305295 305293\n299911 299909\n58577 58575\n285466 285465\n216968 216967\n407668 407667\n330698 330696\n73096 73094\n296339 296337\n127573 127572\n393133 393132\n208966 208964\n91674 91673\n262053 262051\n398768 398767\n162616 162614\n427289 427287\n416574 416572\n471735 471734\n364589 364588\n195536 195534\n341232 341231\n285200 285198\n334362 334360\n157920 157919\n280265 280263\n286157 286156\n272975 272974\n485250 485249\n112871 112870\n239203 239201\n484397 484395\n281870 281868\n286766 286765\n264666 264665\n275071 275069\n469057 469056\n360514 360513\n498831 498829\n215804 215802\n317962 317960\n190850 190848\n83707 83706\n68964 68963\n322477 322476\n408215 408214\n128955 128953\n57862 57860\n436186 436185\n375041 375039\n156154 156152\n399941 399939\n298401 298399\n85781 85780\n302958 302956\n277052 277050\n266746 266745\n376337 376335\n445192 445191\n362685 362683\n189465 189463\n166501 166499\n200925 200924\n92839 92837\n88201 88200\n253174 253172\n282902 282900\n405414 405412\n396057 396056\n457956 457954\n100000 99999\n499818 499816\n391648 391647\n312054 312052\n148555 148554\n143939 143938\n189483 189481\n421550 421548\n447596 447595\n291822 291821\n117228 117226\n374043 374042\n348523 348522\n355099 355097\n253240 253238\n484741 484740\n173177 173175\n306705 306703\n465908 465907\n443987 443985\n300545 300543\n256325 256324\n249991 249990\n188933 188932\n52130 52128\n352441 352439\n331788 331786\n385024 385023\n178772 178771\n493662 493661\n451948 451946\n437865 437863\n338353 338351\n221202 221200\n414385 414383\n206742 206740\n161195 161193\n485207 485205\n195708 195706\n419114 419113\n152092 152090\n311073 311071\n463222 463220\n336500 336498\n291641 291640\n373543 373542\n197399 197397\n165559 165557\n353827 353825\n133722 133720\n186461 186460\n415828 415827\n387021 387020\n138918 138916\n380662 380661\n238400 238399\n70552 70550\n329011 329010\n94008 94006\n61993 61992\n395557 395555\n87518 87516\n139404 139402\n343955 343953\n284935 284934\n477211 477209\n166725 166723\n386588 386586\n299739 299737\n128987 128985\n309945 309943\n110956 110954\n485182 485180\n88770 88769\n397874 397873\n287928 287926\n104633 104632\n427499 427498\n423705 423704\n391531 391529\n69224 69223\n161393 161392\n421749 421748\n482989 482988\n157400 157399\n248182 248181\n66236 66234\n484354 484353\n254305 254304\n345832 345831\n469157 469155\n97673 97671\n493270 493269\n261271 261270\n302470 302469\n413513 413511\n141615 141613\n380392 380390\n413992 413991\n171278 171276\n457294 457293\n199999 199998\n287133 287131\n75049 75047\n338107 338106\n310791 310790\n277075 277074\n108043 108042\n371103 371101\n378104 378103\n377014 377012\n65765 65763\n253433 253432\n267913 267911\n425580 425578\n208189 208187\n206642 206641\n230632 230631\n345713 345711\n476808 476807\n458807 458805\n333159 333158\n435301 435300\n345139 345138\n242875 242873\n496828 496826\n300599 300598\n452697 452696\n139784 139783\n384430 384429\n310242 310240\n50875 50873\n200561 200559\n281662 281661\n228532 228531\n153383 153381\n85372 85370\n195704 195702\n458550 458549\n414570 414568\n474191 474190\n197079 197077\n286260 286258\n118928 118927\n104466 104465\n499815 499814\n238897 238896\n95712 95710\n160365 160364\n467671 467669\n455506 455504\n51844 51842\n163232 163230\n211008 211006\n270038 270036\n415179 415177\n162211 162210\n116816 116814\n473078 473076\n325728 325726\n438481 438479\n363466 363465\n113181 113180\n287568 287566\n406875 406873\n135282 135280\n255583 255582\n417556 417554\n83409 83407\n246486 246485\n263939 263938\n435466 435465\n231813 231811\n304906 304904\n465068 465067\n74607 74605\n442207 442206\n91445 91443\n242910 242909\n161804 161803\n446427 446425\n253072 253070\n134692 134690\n366895 366893\n303112 303111\n281773 281771\n371567 371566\n406657 406656\n174226 174225\n290310 290308\n83605 83604\n120211 120210\n216964 216962\n327279 327278\n228559 228557\n204652 204651\n295868 295866\n170726 170725\n359685 359684\n436070 436069\n97362 97360\n182088 182086\n422180 422179\n215036 215034\n477298 477297\n249885 249884\n408664 408663\n458399 458398\n123144 123142\n164811 164810\n395227 395225\n64487 64486\n457659 457657\n140725 140723\n59774 59772\n261214 261213\n485213 485211\n144114 144112\n437161 437159\n174312 174310\n362064 362063\n456841 456839\n111716 111714\n347905 347904\n343563 343561\n153277 153275\n146574 146572\n405025 405023\n74132 74130\n285661 285660\n294068 294067\n271063 271062\n252901 252899\n379498 379496\n242141 242140\n136240 136239\n72170 72169\n360616 360615\n438089 438087\n333770 333768\n462184 462182\n54756 54754\n405209 405207\n56180 56179\n230795 230793\n346311 346310\n329478 329476\n150344 150343\n236878 236876\n128839 128837\n359604 359603\n157446 157444\n436623 436621\n162953 162952\n265503 265502\n218262 218261\n174153 174152\n352926 352925\n356633 356631\n63246 63244\n425219 425217\n341871 341870\n256153 256152\n351075 351073\n426737 426736\n339839 339837\n466941 466939\n139620 139619\n153350 153348\n63658 63657\n252281 252280\n206135 206134\n411454 411452\n127539 127538\n101906 101904\n367421 367419\n327276 327275\n210447 210445\n402567 402566\n248677 248676\n120683 120682\n114073 114071\n416322 416321\n452117 452116\n471360 471359\n406740 406739\n100404 100403\n363126 363125\n205109 205107\n180455 180453\n97700 97698\n146240 146239\n280995 280994\n313644 313643\n229335 229334\n258865 258864\n297154 297153\n120532 120530\n256472 256470\n319660 319658\n451059 451057\n78053 78052\n477406 477405\n257198 257196\n297793 297791\n467630 467629\n398854 398853\n427873 427872\n120591 120590\n291660 291658\n268268 268267\n344678 344677\n361984 361982\n417451 417450\n194654 194652\n479345 479343\n195301 195300\n88428 88426\n383811 383809\n57755 57753\n255152 255151\n68936 68935\n71096 71095\n195440 195439\n423682 423681\n153188 153186\n140187 140186\n123512 123511\n217208 217207\n96004 96003\n382424 382423\n289132 289131\n342939 342938\n493264 493262\n61841 61839\n346434 346433\n355981 355980\n341279 341278\n359663 359662\n100811 100810\n454935 454934\n152796 152795\n175987 175986\n354639 354637\n69585 69583\n237689 237688\n497009 497007\n432801 432800\n328663 328662\n140887 140886\n430841 430840\n208814 208812\n362540 362539\n415113 415112\n343811 343809\n468767 468766\n282692 282691\n225251 225250\n365526 365525\n271231 271229\n142716 142715\n434179 434178\n342269 342268\n281695 281693\n74407 74405\n207438 207436\n309021 309020\n97287 97285\n203913 203911\n374769 374768\n296227 296225\n491631 491630\n457652 457651\n101158 101156\n84257 84255\n326827 326825\n478565 478563\n424010 424008\n240028 240027\n473667 473665\n117223 117222\n496660 496658\n353517 353516\n269471 269470\n358132 358130\n177302 177301\n478836 478834\n182969 182967\n310571 310570\n386782 386781\n150609 150607\n72698 72697\n436418 436417\n71855 71854\n330801 330799\n479478 479476\n199341 199340\n283322 283320\n401131 401129\n350966 350965\n443325 443324\n187147 187145\n88562 88560\n283203 283201\n130763 130762\n302203 302201\n208134 208133\n133043 133042\n345391 345389\n442399 442397\n352625 352623\n349213 349212\n499685 499683\n246772 246770\n150612 150610\n184915 184914\n487921 487920\n191296 191295\n370208 370206\n480265 480263\n168757 168756\n435687 435685\n289636 289635\n194002 194001\n315645 315643\n427632 427630\n99856 99855\n87116 87115\n380766 380764\n272665 272664\n324062 324060\n243044 243042\n154254 154253\n363494 363492\n188661 188660\n191794 191793\n197866 197864\n152666 152665\n234187 234186\n481024 481023\n242887 242885\n180395 180393\n362646 362645\n213074 213072\n267536 267534\n57041 57039\n145915 145914\n422846 422844\n230780 230779\n175033 175031\n399318 399316\n403775 403774\n218988 218987\n213077 213075\n376469 376467\n142672 142670\n337926 337925\n422862 422861\n213417 213416\n329637 329636\n489841 489840\n255403 255402\n437411 437410\n329605 329604\n428230 428228\n102081 102079\n110408 110406\n199249 199247\n212466 212464\n308058 308056\n111665 111664\n316543 316541\n195454 195453\n220212 220211\n498720 498718\n260724 260723\n319032 319031\n265569 265568\n220990 220988\n133005 133004\n235774 235773\n258568 258566\n246950 246949\n53620 53618\n58730 58728\n55251 55249\n78724 78722\n322780 322778\n311762 311761\n231731 231730\n377708 377706\n496836 496835\n86037 86035\n407914 407913\n147111 147110\n81276 81274\n444627 444625\n52808 52807\n195343 195341\n109114 109112\n424426 424424\n388395 388394\n488723 488722\n444787 444785\n400517 400516\n113010 113008\n108730 108729\n475796 475794\n200172 200171\n391778 391777\n198528 198527\n281740 281738\n226542 226541\n293242 293241\n165893 165891\n353006 353005\n221934 221932\n462336 462335\n319794 319792\n389200 389199\n103830 103828\n86867 86865\n121821 121819\n440522 440521\n292407 292406\n499621 499620\n438561 438560\n83038 83037\n493856 493854\n248533 248531\n438532 438531\n149154 149153\n245500 245499\n373320 373319\n402912 402911\n455710 455709\n387453 387452\n203923 203922\n174184 174183\n441986 441985\n61104 61103\n401717 401715\n216672 216670\n478388 478387\n215226 215225\n87184 87182\n193195 193193\n89468 89466\n128340 128338\n405311 405310\n136735 136733\n152246 152244\n307840 307839\n425327 425326\n122203 122202\n327006 327005\n462671 462669\n155989 155987\n146507 146506\n484127 484126\n362541 362539\n56501 56499\n347288 347287\n121494 121492\n413471 413469\n367438 367436\n375900 375898\n485165 485163\n148876 148874\n190165 190164\n118706 118705\n365826 365824\n116083 116082\n377518 377517\n61531 61529\n371843 371842\n127107 127106\n300085 300084\n71998 71997\n186937 186935\n335334 335332\n424140 424139\n271062 271060\n55388 55386\n233083 233081\n300530 300529\n409826 409825\n374390 374388\n288588 288586\n391191 391189\n250212 250210\n332116 332115\n483643 483642\n454527 454526\n414167 414166\n491340 491338\n493510 493509\n404116 404114\n95821 95819\n493116 493114\n453822 453821\n362539 362538\n383727 383725\n263547 263545\n314862 314860\n125875 125873\n91456 91455\n371964 371962\n210501 210500\n147424 147422\n147256 147254\n269782 269780\n401026 401024\n209771 209770\n450649 450648\n487536 487535\n54824 54822\n203668 203666\n374425 374423\n422847 422846\n121873 121872\n312221 312220\n298607 298606\n298266 298265\n201988 201986\n115309 115308\n148890 148889\n486152 486151\n67810 67809\n345107 345105\n307280 307279\n220687 220686\n190205 190204\n308722 308721\n144861 144860\n164518 164517\n305187 305185\n246797 246796\n444113 444111\n332259 332258\n256002 256000\n292694 292693\n211772 211770\n374684 374682\n242628 242627\n243634 243633\n180703 180702\n321633 321632\n490734 490733\n454309 454308\n386325 386323\n125092 125091\n321058 321056\n194619 194617\n323386 323384\n481485 481484\n102816 102814\n128146 128144\n341094 341092\n347111 347110\n131155 131153\n280187 280186\n461278 461276\n272762 272760\n314689 314688\n463564 463563\n181437 181436\n443548 443547\n399472 399471\n233895 233893\n136409 136408\n70709 70708\n153043 153042\n482429 482427\n188011 188010\n145608 145607\n228805 228803\n419887 419885\n337982 337980\n160467 160466\n235039 235038\n60786 60785\n397937 397936\n276298 276296\n459032 459030\n89231 89229\n156009 156008\n439760 439759\n154971 154970\n427648 427646\n282171 282170\n74354 74352\n125375 125374\n105210 105209\n441896 441895\n322977 322975\n127264 127262\n169447 169446\n310347 310345\n453376 453374\n459528 459527\n403707 403705\n375304 375302\n182312 182310\n208045 208044\n51764 51762\n327509 327508\n218120 218118\n375709 375707\n362999 362998\n132549 132547\n217536 217534\n267051 267049\n244678 244677\n363567 363565\n438795 438793\n320297 320295\n265374 265372\n234463 234462\n172986 172984\n133334 133332\n465725 465723\n467801 467800\n359290 359289\n163307 163305\n354212 354211\n270353 270352\n445185 445183\n225664 225663\n454248 454246\n113553 113552\n154320 154319\n498225 498223\n181237 181235\n371495 371493\n276684 276682\n67835 67834\n51666 51665\n397686 397685\n297266 297265\n398373 398371\n232855 232854\n462325 462324\n286983 286981\n248913 248911\n422339 422337\n244098 244097\n413920 413918\n330493 330492\n498011 498009\n323664 323662\n274386 274384\n111744 111742\n263876 263875\n229838 229836\n262203 262201\n371674 371673\n370820 370818\n393211 393210\n219096 219095\n445180 445178\n340713 340712\n254041 254039\n499585 499584\n399409 399408\n176708 176706\n120304 120302\n312847 312846\n59502 59501\n202892 202891\n96860 96859\n151366 151364\n283961 283959\n142585 142583\n298910 298908\n241656 241655\n94597 94595\n140900 140899\n310593 310592\n163349 163347\n65304 65302\n252587 252585\n261045 261044\n406162 406161\n171955 171953\n107786 107784\n463990 463988\n262438 262436\n496255 496253\n59127 59125\n469408 469407\n368198 368197\n151391 151390\n51019 51018\n158090 158088\n334909 334907\n404329 404328\n317946 317944\n127998 127996\n419433 419431\n437456 437454\n429924 429923\n455690 455688\n379898 379897\n420524 420523\n112967 112966\n235745 235744\n172033 172031\n167326 167325\n51090 51088\n390332 390331\n59863 59861\n273199 273198\n331762 331761\n91069 91068\n325229 325227\n462228 462227\n401376 401375\n379827 379826\n96726 96725\n100673 100671\n115657 115656\n366884 366883\n442040 442039\n186341 186340\n431671 431669\n393605 393604\n151373 151371\n239701 239700\n62469 62467\n378687 378686\n75846 75844\n219612 219610\n292522 292520\n177004 177003\n185241 185240\n102345 102344\n248462 248460\n112857 112856\n281531 281530\n454854 454852\n415955 415954\n333507 333505\n164733 164731\n311420 311418\n145412 145410\n162240 162238\n89778 89776\n380685 380684\n496713 496711\n131683 131681\n233696 233695\n141533 141531\n388265 388263\n54970 54969\n466602 466600\n109096 109095\n419099 419098\n211491 211489\n110177 110175\n301434 301433\n86926 86925\n442583 442582\n285367 285366\n272978 272976\n113063 113062\n445992 445990\n317127 317125\n168650 168648\n395243 395242\n112814 112813\n331624 331622\n369484 369483\n355818 355817\n253436 253434\n393573 393572\n180217 180216\n366861 366860\n58032 58031\n260705 260704\n347430 347429\n336720 336718\n191105 191104\n231998 231996\n329989 329987\n376821 376820\n252821 252819\n146771 146769\n140633 140631\n375080 375078\n54195 54194\n96312 96311\n396258 396257\n234638 234637\n423165 423164\n89829 89828\n106130 106128\n261579 261578\n370498 370497\n239579 239578\n275560 275558\n170927 170926\n412846 412844\n174738 174736\n61987 61985\n65106 65104\n140155 140154\n147954 147953\n305035 305034\n373013 373012\n128096 128095\n404993 404992\n52861 52860\n173200 173199\n214703 214701\n230371 230370\n353562 353561\n185146 185144\n238983 238982\n328076 328075\n181674 181672\n211586 211585\n495652 495651\n201531 201529\n256555 256554\n324744 324743\n55765 55764\n127080 127079\n299583 299581\n400749 400748\n340464 340463\n81444 81443\n345231 345230\n254555 254554\n497679 497677\n226564 226563\n161206 161205\n64472 64470\n410185 410183\n167108 167106\n440035 440034\n323658 323656\n73824 73823\n363481 363479\n360218 360216\n438610 438609\n151881 151879\n157576 157574\n269945 269944\n105235 105233\n112014 112012\n165179 165178\n373080 373078\n327613 327612\n446701 446700\n387945 387944\n428866 428864\n156615 156614\n346724 346722\n454706 454705\n362417 362416\n239678 239677\n276642 276641\n112391 112389\n111754 111753\n88956 88955\n153887 153886\n367064 367063\n442462 442460\n481586 481584\n156945 156943\n465010 465009\n153600 153598\n343588 343587\n428552 428551\n267767 267765\n100763 100761\n137223 137221\n409814 409812\n438079 438077\n122490 122489\n220028 220027\n253324 253323\n158916 158914\n368687 368685\n278468 278466\n57652 57651\n390737 390736\n271461 271460\n215272 215271\n111096 111094\n318458 318457\n454292 454291\n316151 316150\n293220 293218\n492220 492218\n486220 486218\n139690 139688\n129781 129780\n366282 366280\n341782 341781\n401111 401110\n363431 363429\n499362 499361\n349862 349860\n296305 296304\n65643 65642\n418245 418243\n454015 454014\n407068 407066\n321188 321186\n50363 50362\n69796 69794\n334437 334435\n215426 215424\n363416 363415\n223838 223837\n206566 206565\n387584 387582\n474211 474210\n173940 173939\n85399 85398\n481749 481747\n52963 52962\n374605 374603\n225997 225996\n374703 374702\n110406 110404\n303800 303799\n472739 472737\n367442 367441\n314066 314064\n438821 438820\n212580 212579\n223057 223056\n97198 97196\n118493 118492\n250013 250011\n184258 184257\n99546 99545\n443637 443635\n311648 311647\n117512 117511\n372946 372945\n454992 454991\n308364 308363\n274261 274260\n359679 359677\n354990 354989\n426159 426158\n189908 189906\n339389 339387\n187977 187976\n80792 80791\n60198 60196\n411694 411693\n419523 419522\n417683 417682\n261672 261671\n227361 227359\n71627 71625\n397488 397486\n294843 294842\n202508 202507\n444660 444659\n165939 165938\n357485 357483\n139744 139743\n71320 71318\n282617 282616\n105582 105580\n383854 383853\n251294 251293\n443129 443128\n467155 467153\n157521 157519\n427942 427940\n475391 475389\n157726 157725\n474250 474248\n463243 463241\n472634 472632\n308313 308312\n167709 167708\n451219 451217\n209217 209215\n380559 380558\n179832 179830\n351796 351794\n113596 113595\n294679 294677\n322550 322549\n148246 148244\n359419 359418\n191737 191735\n225415 225414\n455794 455793\n432395 432393\n404770 404769\n153499 153498\n101742 101740\n78158 78156\n443490 443489\n104591 104590\n262465 262463\n314974 314973\n374364 374363\n400101 400100\n451432 451431\n66009 66008\n161459 161458\n286053 286052\n369537 369535\n213632 213630\n213828 213826\n429208 429206\n383391 383389\n132406 132404\n355978 355977\n251219 251217\n163859 163857\n427317 427315\n134101 134099\n208561 208559\n93081 93079\n474904 474903\n314462 314461\n289485 289483\n144626 144624\n170084 170082\n96391 96389\n275153 275152\n396094 396092\n110568 110566\n56734 56733\n90604 90603\n84676 84675\n389307 389306\n365958 365956\n331299 331298\n247262 247260\n291013 291011\n146835 146833\n131832 131830\n88168 88167\n99531 99529\n460076 460074\n83104 83103\n431044 431042\n437814 437813\n366429 366428\n227378 227376\n469867 469865\n385172 385170\n127642 127641\n443690 443689\n383396 383394\n306234 306233\n438472 438471\n333395 333394\n206725 206724\n145731 145730\n381609 381608\n75101 75100\n461131 461130\n89461 89460\n113839 113838\n278658 278657\n393114 393112\n386981 386980\n332269 332268\n428447 428446\n289530 289529\n363169 363167\n299123 299121\n316672 316671\n371821 371819\n499847 499846\n339769 339768\n73927 73925\n58934 58933\n172311 172310\n117255 117253\n218069 218068\n50889 50888\n423732 423731\n215156 215155\n69897 69896\n430486 430485\n494439 494438\n73599 73597\n71255 71254\n496731 496729\n198625 198623\n278554 278553\n107710 107708\n109553 109551\n74690 74689\n83860 83859\n422006 422005\n118302 118300\n432426 432425\n223878 223876\n421744 421743\n484082 484080\n318085 318083\n260478 260476\n247743 247741\n210327 210325\n182357 182356\n386614 386613\n366405 366404\n178038 178037\n446457 446456\n203493 203491\n155674 155673\n126416 126414\n194054 194053\n266546 266545\n357978 357976\n162236 162234\n212191 212189\n287544 287542\n103044 103043\n335077 335076\n87490 87488\n372714 372713\n492437 492435\n225795 225794\n301771 301770\n379574 379572\n90791 90789\n179321 179319\n170276 170274\n199575 199574\n404880 404879\n456316 456314\n84564 84563\n221112 221110\n287264 287263\n63584 63582\n477151 477149\n57013 57011\n156757 156755\n370653 370652\n287206 287204\n461969 461968\n373457 373455\n194851 194850\n293075 293073\n254550 254548\n443516 443514\n108043 108041\n277936 277934\n496685 496684\n437216 437214\n274677 274676\n209593 209591\n257714 257712\n194931 194929\n291624 291623\n74924 74923\n337656 337655\n161985 161984\n477065 477063\n175060 175058\n371695 371694\n193559 193557\n327877 327876\n446997 446995\n297900 297899\n80352 80350\n371435 371434\n278941 278940\n124586 124584\n148751 148750\n163667 163665\n319923 319921\n66031 66030\n424192 424191\n175831 175830\n321484 321482\n318414 318413\n274484 274482\n446237 446236\n274584 274583\n64048 64047\n60538 60537\n151829 151827\n73457 73456\n419617 419616\n394816 394814\n152806 152804\n456286 456285\n213164 213163\n119671 119669\n218686 218684\n415303 415302\n128327 128325\n458332 458331\n168120 168118\n294967 294966\n322768 322767\n166651 166649\n402509 402507\n433675 433674\n420237 420235\n372847 372845\n362697 362695\n107718 107716\n57034 57032\n179348 179347\n451177 451176\n173938 173937\n128292 128291\n73699 73697\n266554 266552\n436086 436084\n425217 425216\n455258 455256\n267073 267071\n155924 155922\n86730 86729\n480204 480202\n340874 340872\n117222 117220\n497169 497167\n465688 465686\n225226 225225\n263424 263422\n353933 353931\n57080 57079\n282984 282983\n271658 271657\n474743 474741\n359757 359756\n179634 179633\n484949 484948\n197657 197656\n343759 343758\n365706 365705\n78751 78750\n114693 114691\n420298 420296\n455520 455519\n264378 264376\n50730 50729\n499212 499211\n346024 346022\n469567 469565\n123073 123071\n334599 334597\n181508 181506\n458970 458969\n299085 299083\n490168 490167\n149870 149869\n415002 415000\n254183 254182\n92722 92720\n306803 306801\n304635 304633\n108600 108598\n72502 72501\n130598 130596\n83275 83273\n122420 122419\n106010 106008\n150114 150113\n63609 63608\n118012 118011\n422701 422699\n132034 132032\n130775 130773\n161144 161143\n405165 405163\n340025 340024\n358785 358784\n181717 181716\n335938 335937\n446071 446070\n328241 328239\n432044 432043\n87978 87977\n374197 374195\n325899 325898\n345325 345324\n494130 494128\n114620 114618\n248999 248997\n76468 76467\n237431 237429\n260490 260488\n312185 312184\n302907 302906\n407356 407354\n62255 62253\n127572 127570\n316726 316724\n242317 242315\n266646 266644\n219773 219771\n145946 145944\n301962 301961\n174233 174232\n379385 379383\n156057 156056\n371930 371928\n375371 375370\n70540 70539\n291045 291044\n327679 327677\n184642 184640\n378360 378358\n487041 487039\n358258 358257\n152656 152655\n216315 216314\n296681 296680\n399256 399255\n98799 98797\n349612 349610\n58312 58311\n189077 189076\n135469 135468\n121315 121313\n95225 95224\n173325 173323\n384783 384782\n294394 294393\n290682 290681\n361489 361487\n307518 307516\n262601 262600\n364177 364175\n118477 118475\n212973 212971\n271040 271039\n300163 300162\n168162 168161\n395405 395404\n201852 201851\n263841 263839\n217353 217351\n465620 465618\n288667 288666\n58813 58811\n263583 263581\n342391 342389\n460784 460782\n372857 372856\n473911 473910\n241387 241385\n377248 377247\n152559 152557\n459705 459704\n148090 148088\n449237 449235\n251255 251254\n438963 438962\n195368 195366\n333986 333984\n170703 170701\n335112 335111\n419355 419353\n133732 133731\n166783 166781\n444103 444101\n192782 192781\n133129 133128\n116944 116943\n89395 89393\n308517 308515\n248472 248471\n108507 108506\n389455 389453\n300015 300013\n438925 438924\n233426 233425\n206883 206882\n126738 126737\n93347 93345\n76959 76957\n107899 107897\n53748 53747\n426502 426500\n434395 434394\n338958 338956\n85418 85417\n141914 141912\n233973 233972\n390091 390089\n332323 332321\n311467 311465\n431970 431969\n355118 355117\n468647 468645\n197250 197248\n136826 136825\n370941 370940\n335524 335523\n221901 221900\n80722 80721\n161627 161626\n401309 401308\n87722 87721\n185986 185984\n498088 498086\n484100 484099\n307853 307851\n419952 419951\n61127 61126\n464656 464655\n226178 226177\n163832 163831\n56465 56463\n352980 352978\n450217 450216\n123648 123646\n55018 55016\n429400 429398\n203441 203440\n198589 198588\n364311 364310\n165783 165782\n256477 256476\n157492 157491\n288110 288108\n464956 464955\n197845 197844\n173741 173740\n183119 183118\n449238 449237\n208575 208574\n201208 201207\n131108 131106\n68976 68975\n363084 363082\n339520 339519\n130962 130960\n147247 147245\n210820 210819\n470914 470913\n397860 397859\n377667 377665\n286826 286824\n457947 457946\n63572 63571\n346918 346917\n282670 282669\n139779 139777\n55790 55788\n197169 197167\n410152 410151\n118979 118978\n220516 220515\n167835 167833\n154166 154165\n327920 327919\n284497 284495\n150539 150538\n376171 376169\n456537 456536\n293902 293901\n490089 490088\n209528 209526\n98551 98549\n206234 206233\n297223 297221\n123277 123276\n427619 427617\n65340 65339\n73890 73889\n469505 469504\n218673 218672\n87806 87804\n134077 134076\n394879 394877\n217545 217543\n344348 344347\n60380 60378\n309674 309673\n463392 463390\n393551 393550\n175712 175711\n299924 299923\n208631 208630\n279178 279176\n355950 355949\n403173 403171\n264509 264507\n263398 263396\n250120 250119\n189411 189409\n87744 87743\n221664 221663\n212588 212586\n438904 438903\n197729 197727\n452171 452170\n93458 93456\n247329 247327\n261494 261492\n298856 298855\n447453 447451\n380108 380106\n425238 425236\n407195 407194\n436259 436257\n386856 386854\n193387 193385\n184505 184504\n178449 178447\n499724 499722\n439391 439389\n327456 327455\n275745 275744\n127041 127040\n282432 282430\n263781 263779\n64451 64450\n200219 200218\n438378 438376\n371560 371559\n453916 453915\n225221 225220\n198010 198008\n337320 337319\n215024 215023\n72125 72124\n88818 88817\n457240 457238\n112043 112041\n226784 226783\n409935 409934\n403746 403745\n370312 370310\n412328 412327\n452661 452659\n249546 249545\n207103 207102\n172528 172526\n186464 186463\n237766 237764\n162031 162029\n293213 293211\n141353 141352\n167799 167797\n73458 73456\n286121 286120\n195521 195520\n197530 197528\n499053 499051\n115796 115795\n277093 277092\n51010 51008\n124623 124622\n232126 232125\n434467 434465\n123029 123027\n137581 137579\n222910 222909\n104764 104763\n357506 357505\n123016 123014\n290798 290796\n154893 154892\n113138 113136\n381518 381517\n68436 68434\n134804 134802\n310256 310254\n331618 331617\n214878 214877\n290139 290137\n308700 308698\n263774 263772\n435986 435985\n127340 127339\n308879 308877\n142105 142104\n82541 82539\n441420 441418\n143016 143014\n293689 293687\n221674 221673\n139579 139577\n81956 81955\n339790 339789\n427039 427038\n282084 282082\n487144 487143\n303238 303237\n420698 420697\n210602 210601\n217495 217493\n496752 496751\n492292 492290\n326282 326280\n150011 150010\n223609 223607\n272121 272120\n215984 215982\n201355 201354\n184862 184860\n172450 172448\n403406 403405\n135907 135906\n330537 330536\n111552 111551\n232261 232260\n181511 181509\n317848 317847\n183747 183745\n287637 287636\n74753 74752\n52147 52146\n86015 86014\n295598 295597\n343271 343270\n418586 418585\n135242 135241\n318272 318270\n106128 106127\n286561 286560\n263648 263646\n229374 229372\n229397 229396\n469120 469119\n323591 323590\n238838 238836\n486830 486828\n453384 453383\n131835 131834\n346530 346528\n76304 76302\n192227 192226\n327016 327015\n264164 264163\n124684 124682\n335984 335983\n339906 339904\n212012 212010\n311530 311529\n299633 299631\n266628 266627\n403845 403843\n369078 369077\n126088 126086\n255662 255661\n85574 85572\n314117 314116\n464517 464516\n62870 62868\n368401 368399\n267925 267924\n346846 346845\n278950 278948\n171233 171232\n476229 476228\n89554 89553\n277730 277728\n324318 324316\n469289 469287\n192181 192180\n339454 339452\n220978 220976\n398980 398978\n386164 386162\n248096 248094\n83220 83218\n147139 147138\n334228 334227\n115779 115777\n167647 167646\n461589 461587\n237986 237984\n82867 82866\n438482 438480\n371840 371838\n322103 322101\n436286 436284\n367095 367094\n190787 190786\n376336 376335\n69008 69007\n481051 481050\n195483 195482\n205680 205678\n92713 92712\n358542 358540\n365073 365072\n89900 89899\n307391 307389\n130193 130192\n479115 479113\n278421 278419\n415238 415237\n81669 81668\n343389 343388\n432106 432104\n248549 248548\n134122 134121\n211946 211945\n146554 146553\n278668 278667\n69782 69780\n428224 428222\n67918 67916\n354870 354868\n327173 327171\n263783 263782\n318326 318325\n223874 223872\n410314 410313\n472028 472026\n198447 198445\n267610 267608\n157813 157812\n252644 252643\n395610 395608\n122846 122844\n297000 296998\n220973 220972\n179675 179673\n279330 279328\n122937 122936\n354939 354938\n182914 182913\n235869 235867\n313850 313848\n217094 217093\n332219 332218\n493097 493096\n208807 208805\n158850 158849\n348252 348251\n438741 438739\n226469 226468\n53838 53837\n88327 88325\n257674 257672\n341465 341463\n405211 405209\n158216 158214\n327236 327234\n452081 452080\n333081 333080\n382033 382032\n460648 460647\n477260 477259\n165764 165763\n469281 469279\n92594 92592\n362322 362320\n466592 466591\n289510 289509\n330636 330635\n176590 176588\n137225 137224\n353513 353512\n463590 463589\n357151 357150\n95626 95625\n182823 182822\n102930 102929\n203270 203268\n342082 342081\n142471 142470\n167649 167648\n498242 498240\n394414 394413\n181000 180998\n405775 405773\n76419 76418\n399596 399594\n374840 374839\n318066 318064\n56351 56350\n152021 152020\n255850 255849\n89895 89894\n284970 284968\n116441 116439\n105937 105935\n121471 121469\n473566 473565\n145840 145839\n273546 273545\n382468 382466\n452289 452287\n231177 231176\n191869 191868\n446126 446124\n426939 426937\n183023 183021\n449033 449032\n271345 271343\n372038 372037\n484407 484406\n204136 204134\n366780 366779\n237703 237701\n381403 381402\n184600 184599\n107372 107371\n140944 140942\n391893 391892\n261517 261516\n411682 411681\n422359 422358\n206376 206375\n88526 88524\n231275 231274\n379410 379409\n322196 322194\n212588 212587\n282712 282710\n123776 123774\n264443 264442\n272146 272144\n398044 398042\n123574 123572\n423947 423945\n396850 396848\n437626 437624\n370115 370113\n151479 151478\n128015 128013\n248267 248266\n422128 422126\n164842 164840\n211043 211042\n148048 148047\n400201 400200\n480968 480966\n276404 276402\n167559 167557\n457508 457506\n155808 155807\n273197 273195\n289866 289865\n400476 400474\n395745 395743\n265299 265298\n190203 190201\n198982 198980\n464704 464703\n349438 349437\n401504 401503\n456918 456917\n150284 150282\n219766 219765\n444925 444924\n253741 253740\n117344 117342\n486874 486873\n464995 464993\n281668 281666\n274824 274823\n398202 398200\n290748 290746\n482152 482150\n171687 171686\n414079 414077\n273713 273712\n455845 455843\n111214 111212\n480927 480926\n334524 334522\n266276 266275\n433042 433040\n296198 296196\n140251 140249\n274334 274333\n71863 71861\n499267 499265\n443069 443067\n304049 304048\n420837 420835\n476267 476265\n345170 345168\n457371 457370\n94233 94232\n402612 402611\n244703 244701\n55851 55849\n84605 84604\n122507 122506\n59804 59803\n127379 127377\n440343 440342\n151302 151300\n67484 67483\n227433 227432\n226177 226176\n123615 123613\n217477 217476\n422110 422109\n123410 123408\n108294 108293\n424209 424208\n233874 233873\n68351 68349\n442622 442620\n248882 248880\n79488 79487\n53594 53592\n316266 316264\n464646 464645\n156995 156993\n129625 129624\n478723 478722\n454633 454632\n291632 291631\n245788 245787\n401564 401562\n390848 390847\n123085 123083\n141924 141923\n77051 77049\n313015 313013\n57451 57450\n326584 326582\n132948 132947\n243220 243218\n467328 467326\n311220 311218\n327167 327165\n262184 262183\n125626 125624\n177020 177019\n205305 205304\n225195 225194\n159914 159912\n61441 61440\n52110 52108\n357252 357251\n490966 490965\n445554 445552\n307590 307588\n210308 210306\n81941 81939\n226881 226880\n476313 476311\n466976 466974\n57996 57994\n196370 196368\n386357 386355\n411520 411519\n120418 120417\n246499 246497\n438250 438249\n221943 221942\n225999 225998\n474332 474330\n255342 255341\n90336 90335\n70013 70011\n221890 221888\n87632 87630\n236353 236351\n108860 108858\n164729 164727\n237230 237229\n167363 167362\n90620 90619\n286205 286204\n175428 175427\n434583 434581\n119824 119823\n161603 161601\n402246 402244\n368408 368406\n231431 231430\n193966 193964\n232087 232085\n339693 339692\n498063 498061\n61360 61359\n403136 403135\n459509 459507\n140520 140519\n131807 131806\n81929 81928\n394731 394729\n298277 298276\n165531 165529\n88315 88313\n91439 91437\n471841 471840\n55035 55034\n112547 112546\n154047 154046\n257465 257463\n482102 482101\n73860 73858\n293243 293241\n358674 358672\n337263 337262\n340478 340477\n174957 174955\n451431 451430\n438356 438354\n213601 213600\n270891 270890\n347259 347258\n117167 117165\n226665 226664\n439578 439577\n173359 173357\n269122 269120\n223965 223963\n398398 398397\n338425 338424\n67507 67506\n221362 221360\n108326 108324\n324804 324803\n287398 287397\n239120 239118\n331235 331234\n118795 118794\n152736 152734\n294778 294777\n252129 252127\n387887 387886\n290923 290922\n220440 220439\n384282 384280\n142926 142924\n223988 223986\n479685 479683\n277601 277600\n173198 173197\n250758 250757\n250401 250399\n253051 253050\n425173 425172\n470745 470743\n269465 269464\n308606 308605\n458935 458933\n143862 143861\n477281 477280\n141964 141963\n170220 170218\n149511 149509\n133555 133554\n164481 164479\n176839 176837\n421621 421619\n359754 359752\n150230 150229\n72465 72464\n493045 493043\n343265 343264\n299065 299063\n437940 437938\n448917 448916\n374650 374649\n124859 124858\n466821 466819\n287695 287693\n313280 313279\n189047 189045\n310616 310615\n482320 482319\n81519 81517\n64365 64363\n98408 98406\n190346 190345\n221549 221547\n206715 206714\n414937 414936\n426191 426190\n76135 76133\n396870 396868\n65654 65652\n166963 166962\n85281 85279\n334516 334514\n353511 353509\n239882 239881\n193909 193908\n423632 423630\n284642 284640\n419749 419748\n402434 402432\n224915 224914\n284391 284390\n133174 133172\n362877 362875\n275431 275430\n405132 405131\n219424 219422\n412316 412315\n152184 152182\n106886 106885\n433327 433325\n490198 490197\n88020 88019\n248895 248894\n149024 149023\n466276 466274\n424860 424859\n439844 439843\n269616 269614\n123934 123932\n354572 354571\n326109 326108\n453573 453572\n159976 159975\n233288 233286\n77858 77857\n357005 357003\n487957 487955\n398666 398664\n55402 55401\n144571 144570\n133670 133668\n498359 498358\n267040 267039\n346049 346047\n140130 140128\n440352 440350\n435895 435894\n130169 130167\n481371 481370\n121300 121299\n115559 115558\n464745 464743\n360495 360493\n371233 371232\n171750 171749\n214633 214632\n417946 417945\n265405 265403\n326007 326005\n415288 415287\n206328 206327\n485301 485300\n105475 105473\n461949 461947\n363746 363745\n191448 191446\n68883 68882\n398539 398537\n84122 84120\n406239 406237\n350322 350321\n326642 326641\n409896 409895\n298477 298475\n379038 379037\n480148 480146\n368080 368079\n185234 185233\n307627 307625\n148948 148947\n422965 422963\n482577 482575\n344526 344525\n105085 105083\n185691 185689\n444053 444052\n256056 256054\n430020 430018\n415312 415311\n225219 225217\n178978 178977\n86555 86554\n391805 391803\n426975 426973\n498381 498379\n458004 458002\n127105 127103\n357215 357213\n153425 153423\n296951 296949\n497360 497359\n422503 422502\n414816 414814\n429397 429395\n177653 177651\n248929 248928\n305156 305154\n352183 352182\n160925 160924\n275762 275761\n248473 248471\n325750 325748\n447595 447593\n418710 418709\n402957 402956\n312037 312036\n88132 88130\n298621 298620\n442126 442124\n259186 259184\n183304 183303\n238884 238883\n460348 460346\n464475 464473\n291264 291263\n433305 433303\n110472 110470\n178488 178487\n101533 101532\n215136 215135\n381218 381216\n142327 142325\n219933 219931\n331478 331477\n471325 471324\n100897 100896\n226820 226818\n57883 57882\n71921 71920\n418439 418437\n349364 349362\n493924 493922\n214248 214246\n494014 494013\n488616 488614\n289658 289657\n243959 243957\n178822 178821\n209521 209519\n112603 112602\n431846 431844\n67014 67012\n290873 290871\n358836 358834\n404967 404965\n159765 159764\n279765 279764\n492089 492088\n116120 116118\n148176 148174\n342540 342539\n266437 266436\n52542 52540\n86854 86853\n270288 270286\n298480 298479\n118480 118479\n344840 344838\n52814 52813\n68118 68116\n424075 424074\n139140 139138\n432970 432968\n182031 182029\n246349 246347\n268340 268339\n322192 322190\n475790 475789\n495864 495862\n130908 130906\n363392 363390\n154731 154730\n223410 223409\n156164 156162\n133183 133181\n282984 282982\n67925 67923\n351728 351727\n93965 93964\n195527 195525\n86429 86427\n285828 285827\n362413 362412\n247168 247166\n309221 309219\n456916 456915\n62651 62649\n298015 298013\n350383 350381\n407058 407056\n52985 52984\n192929 192927\n491738 491736\n415756 415755\n60587 60585\n493926 493925\n269548 269546\n466827 466825\n482573 482572\n118658 118657\n483552 483550\n243835 243833\n305948 305947\n304912 304910\n131243 131242\n133118 133116\n437051 437049\n112767 112765\n439588 439587\n430093 430091\n419950 419949\n220148 220147\n296827 296825\n94587 94586\n194983 194982\n424899 424898\n182673 182672\n277693 277692\n291734 291733\n294749 294748\n139773 139772\n206950 206949\n136793 136792\n180936 180934\n452390 452388\n305573 305572\n320210 320209\n144573 144572\n356395 356393\n133141 133140\n339571 339570\n129601 129599\n397156 397154\n142333 142332\n230627 230626\n322448 322446\n425609 425607\n474351 474350\n102066 102065\n193761 193759\n191534 191533\n478520 478519\n108612 108611\n178859 178857\n465401 465400\n363954 363952\n424219 424217\n345190 345188\n210325 210324\n422693 422692\n359307 359305\n97736 97735\n143886 143885\n471741 471739\n101801 101800\n64315 64314\n76867 76865\n215880 215879\n305135 305134\n111936 111934\n107373 107371\n194197 194196\n310523 310521\n318740 318739\n163402 163400\n473564 473563\n386766 386765\n244006 244004\n446822 446821\n278867 278866\n262959 262957\n110130 110129\n383204 383203\n319435 319434\n255942 255941\n466596 466595\n188707 188705\n74090 74089\n84953 84952\n83532 83530\n91533 91531\n113567 113565\n184544 184543\n113971 113969\n119606 119605\n142064 142063\n150489 150488\n152759 152758\n237393 237391\n360731 360730\n345763 345761\n448611 448610\n355800 355799\n378460 378459\n366807 366806\n156868 156867\n283408 283407\n244481 244480\n106316 106315\n306784 306783\n355517 355515\n490756 490754\n84778 84777\n391723 391722\n93195 93193\n376249 376248\n259881 259880\n441664 441663\n348777 348776\n325364 325363\n330960 330958\n479288 479286\n199166 199165\n101201 101200\n95875 95874\n462304 462303\n182901 182900\n163968 163966\n289484 289483\n171139 171138\n105014 105012\n458319 458317\n181624 181623\n286948 286947\n69031 69029\n197385 197383\n216250 216248\n381760 381759\n335575 335574\n469335 469334\n75178 75176\n219209 219208\n334734 334732\n116955 116953\n106418 106416\n171440 171438\n476071 476069\n225743 225742\n277189 277188\n212194 212192\n466982 466981\n339940 339939\n95693 95692\n396823 396821\n218988 218986\n370710 370708\n227396 227395\n155813 155812\n127925 127924\n248002 248001\n219634 219633\n355086 355084\n186870 186869\n429372 429370\n369451 369450\n192326 192324\n356774 356772\n189840 189839\n316264 316263\n138488 138487\n350697 350696\n235459 235458\n121148 121146\n457143 457141\n218730 218728\n200841 200839\n290350 290349\n125970 125969\n335573 335572\n430265 430264\n59282 59280\n270633 270631\n371781 371780\n408313 408311\n50184 50182\n406418 406416\n449885 449884\n97911 97909\n455772 455771\n183989 183988\n416443 416441\n257270 257269\n185329 185328\n53153 53151\n486330 486328\n238921 238919\n264112 264111\n286964 286963\n385578 385576\n301402 301401\n358880 358878\n75285 75283\n192210 192208\n433710 433708\n485531 485529\n274618 274617\n154775 154773\n307681 307680\n100776 100774\n352968 352967\n189366 189364\n138250 138248\n287656 287655\n442900 442898\n437241 437239\n124281 124280\n255099 255098\n249955 249953\n431649 431648\n426662 426661\n240554 240553\n475329 475328\n262448 262446\n432146 432144\n339845 339843\n62637 62635\n97259 97257\n390960 390959\n194053 194051\n187208 187207\n195582 195581\n296329 296328\n479806 479804\n407360 407359\n339646 339644\n279482 279481\n97777 97775\n341213 341212\n177863 177862\n458614 458613\n495786 495784\n112652 112650\n339058 339057\n88416 88415\n148629 148628\n343396 343395\n217501 217500\n112180 112178\n464695 464693\n348822 348821\n359779 359777\n327328 327327\n220406 220404\n376159 376157\n452343 452341\n169738 169737\n274604 274603\n180723 180722\n425611 425609\n286022 286020\n157237 157236\n98026 98024\n249990 249989\n144605 144604\n334961 334960\n56909 56908\n104862 104861\n404799 404797\n100511 100509\n467700 467698\n228816 228815\n436347 436346\n385646 385645\n369139 369137\n314691 314689\n450966 450965\n495332 495331\n173655 173653\n484036 484035\n285955 285954\n265035 265033\n182664 182663\n488711 488709\n162551 162549\n391854 391853\n192955 192953\n452999 452998\n205113 205111\n313226 313224\n472505 472503\n223739 223738\n350805 350804\n196549 196548\n84758 84757\n439762 439761\n303698 303697\n89892 89890\n492898 492896\n52817 52816\n83216 83214\n467863 467862\n210761 210759\n177951 177949\n261937 261935\n182988 182987\n307113 307112\n336254 336252\n473370 473369\n364200 364199\n121309 121307\n183077 183076\n384629 384627\n98860 98858\n333546 333544\n75580 75579\n356272 356271\n167566 167565\n306322 306320\n181341 181340\n479945 479944\n308831 308829\n156199 156198\n330054 330053\n394876 394874\n110151 110149\n492462 492460\n395087 395085\n58214 58213\n400303 400302\n268166 268165\n277817 277816\n88529 88528\n139287 139286\n188626 188624\n103258 103256\n194817 194815\n266211 266209\n368893 368891\n378692 378690\n93116 93115\n312294 312292\n388780 388778\n320004 320003\n75696 75695\n306344 306343\n327332 327331\n88024 88022\n130164 130162\n200374 200373\n453255 453254\n346048 346047\n413290 413288\n421162 421160\n404315 404314\n270916 270914\n102979 102978\n115259 115258\n252613 252612\n483747 483745\n286437 286435\n105369 105368\n417465 417463\n83398 83396\n61468 61467\n356586 356585\n413485 413483\n190396 190394\n219556 219555\n110500 110499\n164531 164530\n159763 159762\n122522 122520\n398961 398959\n290168 290166\n192368 192367\n494985 494984\n244642 244640\n431319 431318\n128613 128612\n342195 342194\n65774 65772\n449087 449085\n199986 199985\n165092 165091\n204014 204012\n231888 231886\n105821 105819\n284353 284351\n388036 388035\n61177 61176\n90646 90645\n254239 254238\n375599 375597\n405652 405650\n381822 381820\n421899 421897\n258542 258541\n70615 70613\n262974 262973\n58242 58240\n107993 107992\n474285 474283\n375209 375207\n65900 65899\n352297 352296\n422047 422046\n448539 448538\n256669 256668\n182007 182005\n265611 265609\n255790 255789\n484769 484767\n156078 156076\n463102 463101\n314400 314399\n267102 267100\n480291 480290\n104455 104453\n465265 465264\n223676 223675\n252450 252449\n314177 314176\n207369 207368\n145658 145657\n495645 495643\n127519 127518\n193900 193898\n267905 267903\n98221 98220\n256057 256056\n486383 486382\n429377 429376\n269036 269034\n450464 450462\n271261 271259\n240476 240475\n272830 272829\n288901 288900\n297534 297532\n330235 330233\n392403 392402\n332150 332149\n267123 267121\n409037 409036\n497194 497193\n412814 412812\n303287 303286\n469917 469916\n409602 409600\n474659 474658\n450047 450045\n275502 275500\n96987 96985\n270585 270583\n98137 98135\n51161 51160\n335269 335267\n453897 453896\n487282 487280\n491971 491969\n254922 254920\n455489 455487\n387379 387377\n286633 286632\n391592 391591\n406591 406589\n79958 79956\n345425 345423\n464801 464799\n106060 106058\n382988 382987\n474301 474299\n381110 381109\n326092 326091\n499292 499291\n133967 133966\n61168 61166\n337948 337946\n182810 182808\n177360 177358\n95988 95986\n407902 407901\n260110 260108\n184273 184271\n447165 447163\n482101 482100\n55668 55667\n492038 492037\n478787 478786\n156810 156808\n116648 116647\n327499 327497\n256641 256639\n105097 105096\n154885 154884\n270439 270437\n117246 117245\n92415 92413\n178905 178904\n136506 136504\n395131 395129\n499933 499932\n452708 452706\n206318 206317\n325950 325949\n175760 175759\n111235 111233\n55301 55300\n144285 144283\n247713 247712\n431099 431098\n404008 404006\n251111 251110\n267459 267457\n119896 119895\n443765 443763\n461491 461490\n217679 217677\n344900 344898\n379729 379727\n430816 430814\n266539 266537\n125202 125201\n181357 181355\n355307 355305\n298084 298082\n392342 392340\n215259 215258\n159790 159788\n492207 492205\n211025 211023\n473237 473235\n415125 415123\n363313 363311\n184132 184131\n463082 463081\n382421 382420\n455285 455283\n414392 414391\n225115 225114\n114590 114588\n299890 299889\n256515 256514\n90292 90290\n96268 96266\n413535 413533\n316833 316832\n292844 292843\n292480 292479\n352805 352804\n161334 161332\n201331 201330\n117555 117554\n141531 141530\n356117 356115\n491142 491140\n389345 389344\n210610 210608\n467031 467029\n87848 87847\n438022 438020\n492140 492138\n160935 160933\n161932 161930\n90207 90205\n106032 106030\n360524 360522\n263154 263152\n255470 255468\n76050 76048\n315878 315877\n263000 262998\n439390 439388\n237937 237936\n451091 451089\n220283 220282\n279025 279023\n208127 208126\n497037 497035\n342213 342211\n213918 213916\n311973 311971\n402036 402035\n480240 480239\n439801 439799\n300657 300656\n364612 364610\n482774 482773\n427066 427065\n199140 199138\n138658 138657\n476579 476577\n252323 252322\n330341 330339\n71440 71438\n53020 53018\n169131 169130\n407979 407978\n73714 73712\n363751 363749\n224045 224044\n169832 169830\n376021 376020\n345780 345779\n289922 289920\n66600 66599\n396443 396442\n492374 492373\n170056 170055\n219562 219560\n99311 99310\n336927 336926\n154367 154365\n264871 264870\n413011 413009\n175649 175648\n144384 144383\n298550 298549\n353639 353638\n106277 106276\n376425 376424\n337106 337104\n52257 52255\n422680 422678\n482433 482431\n173127 173125\n70770 70769\n124831 124829\n226476 226475\n86132 86131\n200982 200980\n104318 104317\n301085 301083\n158832 158831\n377364 377363\n201584 201582\n102363 102361\n228744 228742\n447908 447907\n109368 109366\n125189 125187\n163342 163341\n330464 330462\n269926 269925\n94364 94362\n456767 456766\n461701 461700\n238057 238056\n255051 255050\n251454 251452\n175201 175200\n185889 185888\n302503 302501\n321016 321015\n70533 70532\n352188 352187\n458502 458500\n249525 249524\n397654 397652\n343980 343979\n72367 72366\n247219 247217\n385924 385923\n57310 57309\n250568 250566\n460876 460875\n60253 60251\n414607 414606\n340487 340486\n319409 319407\n451858 451857\n79501 79500\n495577 495576\n247079 247078\n428389 428388\n148110 148108\n404893 404892\n396107 396105\n267085 267084\n449782 449780\n459422 459421\n111291 111290\n295265 295263\n195154 195153\n281619 281618\n262258 262256\n337790 337788\n228754 228753\n71896 71894\n423635 423633\n319145 319143\n320153 320151\n479886 479885\n447757 447755\n80104 80103\n87048 87047\n259667 259665\n378031 378029\n471441 471439\n102706 102704\n338500 338499\n328495 328494\n142543 142542\n202822 202821\n269072 269071\n313732 313730\n336598 336596\n213428 213427\n227782 227781\n103314 103312\n208455 208453\n330193 330192\n418515 418513\n156651 156650\n117824 117823\n286820 286818\n191581 191579\n120594 120593\n204359 204357\n128464 128462\n322078 322077\n313233 313232\n387051 387050\n486427 486426\n170882 170880\n169705 169703\n437210 437209\n340223 340221\n76069 76067\n497411 497410\n422876 422874\n399575 399574\n486188 486187\n486750 486749\n318946 318944\n51108 51106\n223585 223584\n254697 254696\n403119 403118\n252009 252007\n241977 241976\n65929 65927\n234345 234344\n288767 288765\n437317 437315\n440971 440970\n156204 156203\n157097 157096\n58546 58544\n348589 348588\n55610 55609\n160905 160904\n125940 125938\n143808 143806\n188102 188101\n429101 429100\n408861 408859\n257352 257351\n259881 259879\n264107 264105\n475998 475997\n248169 248168\n295901 295900\n219896 219894\n165974 165972\n404975 404974\n441904 441902\n181209 181208\n485079 485078\n174771 174769\n64415 64414\n344702 344700\n279325 279324\n57191 57190\n131242 131241\n391800 391798\n89772 89771\n100571 100569\n88267 88266\n460175 460174\n477052 477050\n307159 307157\n321108 321106\n486478 486477\n320461 320459\n312101 312100\n315145 315144\n74953 74951\n438455 438453\n481106 481104\n278825 278823\n59345 59344\n150336 150335\n372168 372166\n451530 451528\n201232 201231\n486110 486108\n296493 296492\n253002 253001\n357604 357603\n328944 328943\n424109 424107\n187900 187898\n96798 96796\n221158 221156\n177198 177196\n458657 458655\n139497 139496\n119463 119462\n395595 395594\n326489 326487\n335167 335166\n73157 73156\n475167 475166\n483302 483301\n84929 84928\n239515 239513\n191394 191393\n280499 280497\n190247 190246\n276040 276038\n381955 381954\n434530 434528\n281503 281502\n170064 170063\n169438 169436\n356693 356692\n478301 478300\n441287 441285\n313296 313294\n423279 423277\n472436 472435\n63802 63801\n471354 471352\n243909 243908\n224297 224296\n311128 311127\n474622 474620\n219637 219635\n441761 441759\n182432 182431\n342270 342269\n115882 115881\n455808 455806\n412906 412904\n92827 92826\n449833 449832\n370445 370444\n356434 356433\n453460 453458\n434468 434466\n198740 198738\n273433 273431\n170324 170322\n324194 324193\n338749 338748\n285648 285646\n201236 201234\n306914 306913\n137445 137443\n392601 392599\n351149 351148\n497983 497982\n301768 301766\n342229 342228\n246718 246717\n464383 464381\n90296 90295\n278008 278007\n145078 145077\n355799 355797\n103034 103033\n337584 337583\n266215 266213\n311164 311162\n134329 134328\n80481 80480\n214869 214867\n248813 248812\n325455 325453\n423956 423954\n224422 224420\n480846 480845\n359991 359989\n283006 283005\n79453 79452\n232747 232745\n158701 158699\n310653 310651\n68399 68398\n466263 466262\n158200 158198\n346408 346407\n460512 460511\n372955 372954\n469442 469440\n238387 238386\n216467 216466\n189442 189441\n498154 498152\n99379 99378\n352371 352369\n263210 263209\n399171 399170\n298222 298221\n299215 299213\n105097 105095\n142642 142640\n350634 350632\n364042 364041\n491782 491780\n431472 431471\n469005 469003\n490978 490976\n405364 405363\n68020 68018\n50090 50088\n82365 82364\n442325 442323\n63929 63927\n404180 404178\n207447 207445\n162466 162465\n256693 256692\n359605 359604\n382918 382916\n270763 270762\n493982 493981\n279859 279858\n341763 341761\n258118 258116\n196052 196051\n269204 269203\n345479 345477\n65026 65025\n70201 70200\n126041 126040\n446869 446868\n401274 401272\n346212 346210\n81612 81611\n331090 331089\n79521 79520\n466758 466757\n331765 331763\n78437 78436\n464846 464845\n182734 182733\n209137 209135\n426656 426654\n216486 216485\n296187 296186\n338758 338756\n297658 297656\n54622 54620\n473232 473231\n59719 59717\n340737 340736\n215785 215783\n445602 445600\n181574 181573\n111424 111423\n320545 320544\n408592 408590\n156540 156539\n384730 384728\n427429 427427\n417332 417331\n94853 94852\n161332 161330\n190470 190469\n244967 244966\n494973 494971\n363016 363015\n380119 380117\n433690 433688\n420641 420640\n334648 334646\n385939 385937\n246868 246867\n409146 409145\n472881 472880\n217319 217317\n342000 341999\n361904 361903\n351394 351393\n474129 474127\n174228 174226\n472824 472823\n90129 90128\n428874 428873\n401336 401335\n303649 303648\n141895 141893\n243202 243200\n98963 98961\n380618 380617\n212140 212138\n423983 423982\n215222 215221\n328610 328608\n331385 331383\n199150 199148\n456544 456542\n352498 352497\n330205 330204\n169417 169416\n150759 150758\n284508 284507\n446649 446647\n362149 362147\n364748 364746\n485973 485972\n345043 345041\n165754 165753\n155396 155394\n156442 156440\n187198 187196\n329818 329816\n129662 129660\n334610 334608\n243935 243933\n137606 137605\n412017 412015\n318413 318412\n488638 488637\n252604 252602\n437871 437870\n387653 387652\n485839 485838\n388694 388693\n411783 411781\n480086 480085\n260267 260266\n181812 181810\n350059 350057\n371591 371590\n56143 56141\n388028 388026\n432138 432136\n459592 459590\n102511 102510\n207143 207142\n471256 471255\n178611 178610\n271385 271383\n321380 321379\n337169 337168\n158408 158407\n347987 347985\n248323 248322\n298576 298575\n155618 155616\n58285 58283\n314324 314322\n343610 343608\n105127 105125\n168647 168645\n248387 248385\n279062 279060\n271942 271941\n138362 138360\n50014 50013\n343740 343738\n405796 405794\n195050 195048\n322725 322723\n386310 386309\n488897 488895\n84915 84913\n491774 491773\n285430 285428\n76588 76586\n102057 102056\n349282 349280\n185729 185728\n388278 388276\n183888 183886\n383599 383598\n78376 78374\n327469 327467\n117654 117652\n237167 237165\n499358 499357\n373691 373689\n105363 105362\n315293 315292\n113072 113071\n272853 272851\n436210 436208\n275697 275695\n416132 416130\n179781 179779\n448244 448242\n430627 430626\n113232 113230\n240303 240301\n233238 233236\n127029 127027\n410197 410196\n208754 208753\n160148 160146\n66755 66753\n128641 128640\n156497 156495\n441688 441686\n133113 133111\n305611 305610\n302169 302168\n397251 397249\n193612 193611\n468833 468831\n246876 246875\n271546 271545\n334861 334859\n85868 85867\n235456 235454\n89283 89282\n390870 390868\n310909 310908\n273854 273852\n381302 381301\n399984 399982\n448216 448214\n94449 94448\n283382 283381\n377236 377235\n211299 211298\n330306 330305\n222787 222786\n77402 77401\n444592 444591\n90715 90714\n446492 446491\n241244 241242\n112227 112225\n369830 369829\n213384 213382\n244063 244062\n350389 350387\n193740 193739\n151899 151898\n437524 437522\n269836 269835\n498087 498085\n91760 91758\n164130 164128\n142137 142136\n425797 425796\n393276 393275\n278249 278248\n342665 342663\n76784 76783\n476944 476943\n499759 499757\n301395 301394\n221625 221623\n264158 264156\n90043 90041\n70003 70002\n140406 140404\n495683 495681\n447181 447179\n285500 285499\n294732 294731\n137572 137571\n93445 93443\n315392 315391\n109939 109937\n188189 188188\n198382 198380\n98581 98579\n120476 120475\n159286 159284\n57647 57645\n53379 53377\n148076 148075\n141108 141106\n285929 285928\n241570 241568\n100940 100939\n82936 82935\n253000 252998\n386289 386287\n167514 167512\n106103 106101\n419327 419325\n366254 366252\n261550 261548\n478935 478933\n72328 72327\n483296 483295\n238074 238072\n425752 425751\n384400 384398\n489511 489509\n266939 266938\n360245 360243\n309797 309796\n154394 154393\n437138 437137\n162685 162683\n186705 186703\n187236 187234\n267092 267090\n489629 489628\n98062 98061\n497117 497115\n487087 487085\n460792 460790\n335042 335040\n249968 249966\n103602 103600\n435890 435889\n221737 221735\n75632 75630\n338942 338941\n403870 403868\n335077 335075\n134089 134088\n320429 320427\n84368 84366\n243207 243205\n402342 402340\n471290 471289\n260245 260244\n343226 343224\n380449 380448\n95871 95869\n361878 361876\n199050 199048\n297757 297756\n133653 133651\n379687 379685\n416192 416191\n183427 183426\n384421 384419\n463269 463268\n206980 206979\n123521 123519\n448917 448915\n136454 136452\n211656 211655\n101974 101972\n278915 278913\n139871 139869\n371289 371287\n294709 294707\n341180 341179\n137798 137796\n158080 158078\n259787 259785\n409705 409703\n473910 473909\n488778 488777\n154304 154302\n110242 110241\n299802 299801\n135157 135155\n133994 133992\n346908 346906\n180313 180311\n390863 390861\n497342 497340\n322274 322272\n117643 117641\n89928 89927\n162246 162244\n136516 136514\n298814 298812\n307356 307355\n84688 84687\n61962 61961\n323664 323663\n473239 473237\n412818 412817\n482444 482442\n320020 320018\n60590 60589\n144101 144100\n399255 399254\n400134 400133\n77437 77436\n290760 290759\n104139 104138\n341041 341039\n377850 377848\n177277 177275\n468651 468649\n340822 340821\n371783 371781\n294462 294460\n348203 348201\n240820 240818\n317006 317004\n407046 407045\n154662 154661\n187935 187934\n169734 169732\n239576 239574\n268845 268844\n224382 224381\n315065 315064\n414335 414333\n79780 79778\n451907 451906\n148286 148285\n498819 498817\n287020 287018\n362649 362647\n78985 78984\n336442 336440\n194138 194137\n81110 81109\n252058 252057\n108419 108417\n50698 50697\n452222 452221\n342994 342993\n277326 277324\n130491 130490\n113318 113316\n305697 305696\n331059 331057\n298468 298466\n433044 433043\n252382 252380\n110157 110156\n157799 157798\n147076 147074\n490100 490098\n437719 437717\n192417 192416\n166283 166281\n120348 120347\n195306 195304\n104982 104980\n408274 408273\n82049 82047\n189826 189825\n80360 80359\n183395 183393\n276906 276904\n366063 366061\n141682 141680\n496150 496148\n63457 63456\n395044 395043\n319500 319499\n61023 61021\n499467 499465\n358765 358764\n64132 64131\n356453 356452\n231267 231266\n481320 481319\n475320 475319\n117064 117063\n56004 56003\n188146 188145\n156495 156494\n442964 442963\n360589 360587\n158522 158521\n431557 431555\n173303 173302\n181273 181271\n304590 304588\n133564 133562\n326515 326513\n85678 85677\n253411 253409\n129446 129444\n78590 78588\n162129 162128\n91451 91450\n401337 401335\n404169 404168\n103563 103562\n443297 443296\n177028 177027\n68616 68614\n350828 350826\n114408 114406\n458012 458010\n102308 102307\n195876 195874\n477381 477379\n430289 430287\n350380 350379\n442679 442678\n278220 278218\n228165 228163\n175752 175750\n215016 215015\n140290 140288\n368999 368998\n281150 281149\n282430 282428\n209255 209254\n332190 332189\n430185 430183\n428677 428675\n175914 175912\n155940 155938\n478022 478021\n407354 407353\n180055 180053\n418178 418177\n138435 138434\n364091 364089\n373310 373308\n332320 332319\n334790 334788\n175726 175724\n389822 389821\n159266 159265\n484270 484268\n134552 134551\n61677 61675\n54709 54708\n94184 94182\n275389 275388\n337449 337448\n95645 95644\n51736 51734\n363754 363753\n371510 371509\n488124 488123\n229891 229889\n249416 249415\n152387 152386\n199671 199669\n171667 171666\n353630 353628\n219384 219383\n316352 316350\n93670 93668\n487778 487776\n280371 280369\n385991 385989\n441798 441797\n97630 97629\n351528 351527\n163605 163604\n223407 223406\n497772 497771\n372657 372656\n382311 382310\n396054 396053\n260933 260931\n81915 81914\n407920 407919\n347292 347291\n158378 158376\n247686 247684\n252681 252680\n426671 426670\n155797 155795\n149206 149204\n377302 377300\n369606 369604\n61800 61798\n129402 129400\n213519 213518\n435774 435772\n279066 279064\n338626 338624\n471338 471336\n426075 426073\n425741 425740\n451589 451588\n339345 339344\n399438 399436\n284500 284499\n348745 348744\n93182 93181\n88673 88671\n165683 165682\n277240 277239\n432258 432256\n293020 293019\n408178 408176\n104810 104808\n312384 312383\n446601 446600\n173309 173307\n122054 122052\n458747 458746\n114335 114333\n468367 468366\n194735 194733\n267651 267649\n469680 469679\n482882 482881\n52508 52506\n381890 381888\n458659 458657\n444263 444261\n213711 213710\n216531 216529\n204076 204074\n63518 63516\n429584 429582\n68520 68519\n291218 291216\n242197 242195\n344150 344148\n456653 456652\n171484 171482\n277529 277527\n198645 198644\n241992 241991\n116172 116171\n109275 109273\n288098 288097\n209913 209911\n432381 432379\n304412 304410\n307347 307345\n322616 322615\n56104 56103\n323786 323785\n432788 432786\n497598 497597\n283541 283539\n408526 408524\n405681 405680\n108490 108489\n366853 366851\n422896 422894\n384342 384340\n265072 265071\n357406 357405\n348662 348660\n499637 499635\n425200 425198\n489907 489905\n115620 115619\n330366 330364\n165669 165667\n116783 116781\n251959 251957\n88362 88361\n177555 177553\n425191 425189\n302117 302115\n345644 345643\n134529 134528\n271975 271973\n340743 340742\n455634 455632\n361298 361296\n90767 90766\n70332 70331\n106776 106775\n370709 370707\n116866 116865\n228309 228307\n452464 452462\n419983 419981\n289422 289420\n196663 196661\n278303 278301\n278070 278069\n133686 133684\n285884 285882\n100415 100413\n192848 192847\n297680 297679\n180139 180137\n83889 83887\n461410 461409\n57543 57542\n62895 62893\n297974 297972\n117253 117252\n271786 271785\n242042 242040\n193816 193814\n318557 318556\n461030 461029\n250979 250977\n475058 475056\n490982 490981\n405952 405950\n402995 402994\n320152 320151\n346855 346853\n329302 329301\n263598 263597\n300830 300829\n161687 161686\n463558 463556\n125477 125476\n141357 141355\n214075 214074\n86956 86955\n481733 481731\n270647 270646\n56343 56342\n490042 490041\n261001 260999\n322686 322684\n259790 259789\n418387 418385\n387642 387641\n58748 58747\n90281 90280\n111580 111579\n457336 457335\n309098 309096\n277567 277565\n111319 111318\n264529 264527\n79300 79299\n309834 309833\n104991 104990\n57338 57336\n374828 374827\n419748 419747\n360065 360063\n342845 342844\n101806 101805\n127220 127219\n274119 274117\n58955 58954\n342798 342796\n316611 316609\n170641 170640\n420271 420269\n225396 225395\n352397 352395\n379128 379126\n362939 362938\n184800 184798\n281328 281326\n364180 364179\n168703 168701\n472029 472027\n189733 189732\n278830 278828\n356409 356407\n262747 262745\n109144 109142\n221816 221815\n452556 452554\n67164 67162\n190604 190603\n371380 371378\n438506 438504\n155052 155051\n276272 276271\n118943 118942\n302723 302721\n418121 418120\n133093 133092\n387017 387015\n59878 59876\n371275 371274\n427987 427985\n188983 188982\n305637 305635\n159139 159138\n149038 149036\n232215 232213\n381438 381436\n420627 420625\n419587 419585\n388141 388140\n180788 180786\n137530 137528\n188024 188022\n468211 468210\n362162 362161\n63725 63724\n229347 229345\n470480 470479\n173540 173539\n399785 399783\n271476 271474\n465298 465296\n435960 435958\n60129 60127\n136080 136079\n93656 93655\n194275 194274\n314625 314623\n445822 445820\n194319 194317\n382743 382742\n208453 208451\n365003 365001\n88247 88245\n292286 292284\n155836 155835\n375720 375718\n153716 153715\n237731 237729\n172449 172447\n355329 355328\n249898 249896\n342211 342209\n423966 423964\n116347 116346\n439778 439776\n346671 346669\n419226 419225\n498814 498813\n462644 462643\n288321 288319\n204886 204885\n482301 482299\n440029 440028\n207071 207069\n384560 384558\n386059 386058\n203854 203852\n299165 299163\n275758 275757\n437299 437298\n451497 451495\n313158 313157\n485379 485378\n273679 273677\n434137 434135\n278223 278222\n169896 169894\n278425 278423\n301535 301534\n140673 140672\n253071 253069\n353374 353373\n267205 267203\n385833 385831\n380721 380719\n450356 450355\n416310 416309\n151098 151096\n369111 369109\n382914 382913\n475184 475183\n228577 228576\n50157 50156\n328486 328484\n341163 341162\n286584 286583\n336489 336487\n61842 61840\n464089 464088\n445265 445264\n67531 67530\n492028 492027\n172342 172341\n421915 421913\n432359 432357\n236363 236362\n225161 225160\n149168 149166\n238935 238934\n314099 314097\n304548 304546\n68713 68712\n276356 276354\n60376 60375\n417705 417703\n409904 409903\n326143 326141\n426699 426698\n481061 481060\n124668 124667\n175725 175724\n451146 451144\n168170 168168\n222329 222327\n407325 407324\n304217 304215\n316008 316006\n57160 57159\n442902 442900\n337351 337350\n463318 463316\n68574 68572\n93866 93864\n224709 224708\n226495 226494\n440091 440090\n188617 188616\n238382 238380\n169101 169100\n475533 475532\n265530 265529\n396147 396145\n208807 208806\n116628 116626\n320445 320444\n342597 342595\n422819 422818\n344170 344168\n220258 220256\n347195 347193\n461616 461615\n322444 322443\n460459 460458\n383818 383817\n269293 269292\n104064 104063\n97240 97239\n400005 400004\n105725 105723\n82693 82692\n221532 221531\n275629 275628\n68856 68854\n247632 247631\n312150 312148\n391197 391195\n261435 261434\n89620 89619\n331730 331729\n161949 161948\n355109 355108\n213373 213371\n371750 371748\n225584 225583\n260466 260465\n343306 343304\n278393 278391\n363772 363771\n122869 122868\n99340 99339\n198059 198058\n228585 228583\n267856 267854\n334857 334855\n296738 296737\n139095 139093\n171607 171606\n376140 376139\n356186 356184\n229559 229557\n102063 102061\n201333 201331\n176528 176526\n401226 401225\n431816 431815\n353907 353906\n365724 365723\n174945 174943\n97974 97972\n190307 190305\n81305 81304\n232255 232254\n161101 161099\n56230 56228\n130688 130686\n452719 452717\n427036 427035\n269101 269099\n280033 280031\n441973 441971\n396455 396453\n187215 187214\n211921 211919\n98333 98332\n186688 186687\n442617 442615\n255755 255754\n141762 141761\n260776 260775\n97799 97797\n92370 92369\n357643 357642\n116020 116018\n351800 351798\n106054 106052\n291612 291611\n492234 492232\n305774 305773\n109991 109990\n450042 450040\n474000 473999\n419695 419693\n129854 129852\n497773 497771\n274593 274592\n388345 388343\n203601 203600\n252023 252021\n90758 90756\n92668 92667\n213712 213711\n276096 276094\n124941 124939\n154931 154929\n298940 298939\n250551 250550\n378894 378893\n89527 89526\n494484 494482\n435548 435546\n218084 218082\n100089 100087\n420662 420661\n294638 294636\n123179 123177\n374543 374541\n231537 231536\n379286 379284\n449962 449961\n264778 264777\n265480 265479\n385806 385805\n81028 81026\n375263 375261\n393770 393768\n376096 376094\n273273 273272\n52320 52318\n454928 454927\n181272 181270\n146403 146401\n498312 498311\n340662 340660\n361617 361615\n209190 209188\n325746 325745\n105375 105373\n440762 440760\n413725 413724\n258353 258351\n135659 135657\n57873 57872\n391657 391655\n370770 370768\n296831 296830\n416829 416827\n148259 148258\n225458 225457\n116828 116826\n461194 461192\n479456 479454\n359316 359314\n158844 158843\n276033 276031\n419269 419268\n448427 448425\n285249 285248\n383689 383687\n385616 385615\n107982 107980\n202059 202057\n240779 240778\n271858 271856\n186703 186701\n331267 331265\n290312 290310\n107204 107203\n244943 244942\n350642 350641\n162285 162283\n99309 99308\n51794 51793\n81873 81872\n132458 132457\n99178 99176\n371172 371170\n416312 416311\n473702 473701\n350567 350566\n194247 194246\n388618 388617\n328294 328292\n469040 469038\n267743 267741\n86285 86284\n223237 223235\n208845 208843\n398687 398686\n226685 226683\n376228 376227\n384359 384357\n91306 91305\n414515 414513\n69853 69852\n133103 133101\n288542 288540\n54064 54063\n453630 453629\n106066 106065\n235129 235128\n174124 174123\n275233 275231\n125005 125004\n185318 185317\n469651 469649\n179742 179740\n175151 175149\n205683 205681\n213876 213875\n243075 243073\n209944 209943\n252133 252131\n82064 82063\n150381 150380\n80900 80899\n177278 177276\n317000 316999\n229353 229352\n80882 80880\n145721 145720\n366891 366889\n440224 440223\n155079 155077\n424158 424156\n323969 323968\n235819 235818\n455098 455097\n255770 255768\n199412 199411\n207753 207752\n190542 190541\n81724 81723\n216600 216598\n207566 207564\n495345 495343\n350575 350574\n112822 112820\n69716 69715\n439043 439042\n387605 387603\n84260 84258\n268303 268302\n496704 496702\n209585 209583\n484487 484486\n242933 242932\n186485 186484\n276337 276336\n337068 337066\n85595 85593\n383396 383395\n292384 292382\n83816 83815\n98164 98162\n258177 258175\n140032 140031\n481308 481306\n253208 253206\n373826 373825\n469779 469777\n477909 477907\n249658 249657\n335953 335951\n363793 363792\n447426 447425\n488832 488831\n408926 408924\n308335 308334\n157130 157129\n217511 217509\n94751 94749\n190202 190200\n430985 430983\n462115 462113\n161699 161698\n147651 147650\n409427 409425\n97108 97107\n117731 117729\n157722 157720\n56460 56458\n357166 357165\n265890 265888\n169682 169681\n162634 162633\n79116 79114\n298766 298764\n147891 147890\n71703 71701\n105686 105684\n130487 130485\n122597 122595\n222729 222727\n273499 273497\n385090 385088\n445213 445211\n171854 171853\n479702 479700\n195168 195167\n162427 162426\n185229 185228\n334635 334634\n375237 375235\n232935 232933\n216981 216980\n385212 385210\n256960 256958\n167844 167843\n262204 262202\n377843 377841\n243645 243643\n377786 377784\n470444 470442\n364345 364343\n135088 135087\n87425 87423\n57722 57721\n257314 257312\n319117 319115\n55653 55652\n221082 221081\n495872 495870\n456908 456906\n236589 236587\n378790 378789\n235325 235323\n184937 184935\n304551 304549\n145414 145413\n70024 70023\n321224 321223\n373066 373064\n116941 116940\n267261 267259\n304736 304735\n482649 482647\n260415 260413\n72849 72848\n96746 96745\n209368 209366\n351733 351732\n349721 349719\n355097 355095\n125452 125450\n83167 83166\n322203 322201\n248391 248390\n182404 182402\n374410 374409\n298126 298124\n437531 437530\n413649 413648\n105409 105408\n172959 172958\n439289 439287\n72336 72335\n334051 334050\n88692 88690\n245427 245425\n332831 332830\n280004 280002\n289234 289232\n151147 151145\n106241 106240\n395984 395982\n442100 442099\n185617 185616\n426268 426267\n54822 54820\n418097 418096\n259001 259000\n425705 425703\n468410 468409\n266173 266172\n235778 235776\n414132 414130\n208366 208364\n479185 479183\n166406 166405\n225877 225875\n262667 262666\n200022 200020\n197265 197264\n98914 98912\n61977 61975\n306855 306853\n280529 280528\n361967 361965\n300669 300667\n158691 158689\n351029 351027\n256674 256673\n363490 363489\n209383 209381\n321236 321235\n356878 356876\n409686 409684\n71008 71006\n483393 483391\n246072 246071\n302357 302355\n70543 70541\n329527 329526\n413298 413296\n301747 301745\n274053 274051\n240618 240617\n150666 150664\n355310 355309\n428146 428145\n476364 476363\n481951 481949\n64201 64199\n167046 167045\n397683 397681\n465463 465462\n311140 311138\n246574 246572\n493567 493566\n193590 193588\n330674 330673\n361947 361946\n251831 251829\n139324 139322\n403080 403079\n354943 354941\n417703 417701\n143522 143521\n331141 331140\n230283 230282\n281353 281352\n322386 322385\n219051 219049\n413396 413395\n211511 211510\n241986 241984\n324025 324023\n455724 455722\n397669 397668\n331264 331263\n396133 396132\n171162 171160\n374355 374353\n365650 365649\n352594 352593\n398087 398085\n218261 218260\n105089 105087\n170046 170044\n219799 219797\n349653 349651\n218205 218203\n206635 206633\n68152 68151\n92828 92827\n321083 321082\n477864 477863\n86047 86046\n112382 112380\n208914 208912\n212666 212664\n287533 287532\n341748 341746\n246424 246423\n407826 407825\n369335 369333\n80112 80111\n262641 262640\n172119 172118\n339025 339024\n381986 381984\n375046 375045\n145674 145673\n55023 55021\n187747 187746\n446521 446519\n466136 466134\n443619 443618\n300124 300123\n294362 294360\n395153 395151\n309790 309789\n205581 205579\n358589 358587\n154023 154021\n334521 334519\n85039 85037\n272069 272068\n244861 244860\n443263 443261\n384015 384014\n162729 162728\n442828 442826\n469478 469477\n362964 362962\n250783 250782\n282006 282005\n96976 96975\n373099 373098\n430349 430347\n448887 448886\n59497 59496\n300490 300489\n60317 60315\n358407 358406\n192311 192310\n175682 175681\n385340 385338\n477793 477792\n261115 261113\n329295 329293\n497624 497622\n376428 376427\n315822 315820\n285253 285252\n157211 157210\n397386 397384\n445929 445928\n405748 405746\n251015 251013\n394780 394779\n271610 271609\n106183 106182\n295596 295595\n357785 357783\n387256 387255\n369833 369831\n454323 454321\n107903 107901\n465678 465676\n436011 436009\n394357 394356\n237652 237651\n118872 118870\n363770 363768\n271263 271261\n69304 69303\n248482 248481\n170481 170480\n128125 128124\n423985 423984\n337303 337301\n360455 360454\n83944 83942\n167233 167232\n314084 314082\n230397 230395\n240105 240104\n93208 93207\n498587 498586\n231041 231040\n134983 134982\n484021 484019\n263039 263037\n100546 100544\n259271 259269\n132704 132703\n383288 383286\n83814 83812\n423922 423921\n79850 79849\n349825 349824\n117065 117063\n426562 426560\n82825 82824\n220597 220595\n291259 291258\n100628 100626\n166169 166168\n425022 425021\n166590 166589\n279317 279316\n194112 194110\n133128 133127\n324434 324432\n154637 154636\n435440 435438\n209520 209519\n201524 201522\n288281 288280\n174008 174006\n436537 436536\n204812 204811\n200631 200629\n309244 309243\n256804 256803\n72298 72297\n341820 341819\n93082 93081\n272178 272176\n420378 420376\n60865 60864\n253771 253770\n260376 260375\n96431 96430\n108555 108553\n264129 264127\n387136 387135\n158832 158830\n470169 470167\n253240 253239\n425100 425099\n303587 303586\n234614 234613\n188461 188460\n406854 406852\n178858 178857\n172849 172848\n92427 92425\n355369 355367\n277528 277527\n251105 251103\n405633 405632\n163261 163260\n152622 152620\n344223 344222\n360599 360597\n88145 88143\n451053 451052\n182175 182174\n162201 162200\n120350 120348\n219472 219470\n367206 367205\n305648 305646\n341044 341043\n269257 269255\n273292 273291\n330703 330702\n177923 177922\n275333 275331\n111773 111772\n97503 97502\n160384 160383\n494608 494607\n444929 444928\n462155 462153\n333489 333488\n222843 222841\n485926 485924\n340511 340509\n135267 135265\n230167 230165\n492075 492073\n236370 236369\n397201 397199\n63628 63626\n293030 293028\n334786 334784\n237920 237919\n347400 347398\n186070 186069\n306383 306381\n194975 194973\n122773 122772\n256483 256482\n351638 351637\n280190 280189\n181228 181226\n450786 450784\n289643 289641\n329222 329221\n461950 461948\n387363 387362\n323656 323655\n420181 420179\n323027 323025\n416662 416661\n280684 280682\n128055 128053\n350758 350757\n75342 75340\n414386 414385\n439703 439701\n416942 416941\n383073 383071\n309526 309524\n175819 175817\n177007 177005\n63417 63415\n206013 206012\n455526 455524\n447490 447489\n230482 230481\n230300 230299\n403858 403856\n397927 397925\n260468 260466\n380666 380665\n364971 364969\n449713 449712\n129694 129692\n421500 421499\n88515 88513\n233982 233980\n269295 269294\n281953 281951\n243358 243357\n484269 484268\n266525 266523\n242836 242834\n136425 136424\n332985 332984\n345672 345670\n69156 69154\n423126 423125\n241620 241619\n332882 332881\n411465 411463\n456346 456345\n466365 466363\n361544 361543\n452382 452380\n90238 90237\n383121 383120\n429012 429011\n58815 58814\n301720 301719\n245782 245780\n418687 418686\n291403 291402\n251009 251007\n212453 212451\n303504 303502\n417797 417796\n195654 195653\n327726 327724\n423962 423960\n388147 388146\n210346 210345\n297440 297439\n192988 192986\n488735 488733\n109386 109384\n201772 201771\n209659 209657\n81690 81688\n483053 483052\n447050 447048\n138396 138395\n415921 415919\n414905 414903\n172942 172940\n403693 403691\n268789 268787\n363123 363121\n412417 412415\n98541 98540\n328693 328692\n267838 267837\n250137 250135\n279707 279705\n264663 264661\n466102 466101\n80970 80969\n284509 284508\n215183 215181\n408852 408851\n308237 308235\n62393 62391\n309696 309695\n95124 95123\n268302 268301\n104030 104029\n101861 101860\n485645 485643\n394505 394503\n219879 219877\n132972 132970\n451417 451415\n334329 334327\n471286 471285\n178475 178473\n271620 271619\n417207 417205\n89688 89687\n69050 69049\n181290 181288\n498620 498619\n203939 203938\n318722 318720\n341629 341627\n266166 266165\n255976 255975\n238444 238442\n53580 53579\n489140 489139\n497591 497589\n422758 422757\n108621 108620\n296270 296269\n314757 314755\n409464 409463\n137513 137511\n264317 264316\n202055 202053\n205492 205490\n345851 345850\n211072 211071\n264328 264327\n331815 331813\n434934 434932\n166389 166387\n308521 308519\n319470 319469\n263935 263933\n238854 238853\n472952 472950\n313728 313727\n236463 236462\n441164 441163\n197183 197181\n177452 177451\n445031 445029\n185957 185956\n345691 345690\n110173 110171\n50938 50936\n353403 353402\n128397 128396\n431100 431098\n465309 465308\n489526 489525\n201192 201191\n76658 76656\n280846 280844\n460943 460942\n183053 183051\n414666 414665\n404060 404058\n420432 420431\n97858 97856\n404298 404296\n410614 410613\n168693 168691\n202776 202774\n157136 157135\n394569 394568\n332047 332046\n348364 348362\n323007 323005\n465389 465387\n282977 282976\n456814 456813\n248074 248073\n411286 411285\n305628 305627\n387041 387040\n215265 215264\n396155 396154\n452073 452071\n166093 166091\n83019 83017\n409699 409698\n371316 371314\n232262 232260\n467496 467495\n262283 262281\n434911 434910\n235887 235886\n290353 290351\n194258 194257\n225271 225270\n259146 259145\n109127 109126\n276270 276269\n216519 216518\n418501 418499\n414187 414185\n373746 373744\n497967 497966\n234824 234822\n341750 341748\n202226 202224\n449938 449936\n200252 200251\n209931 209930\n408548 408547\n344676 344675\n202933 202931\n490537 490535\n395949 395948\n250861 250860\n160364 160362\n466860 466858\n354822 354821\n117570 117569\n361215 361214\n496449 496447\n441753 441752\n270705 270703\n128116 128115\n180429 180428\n196482 196481\n435885 435883\n312344 312342\n97211 97210\n362174 362173\n202440 202439\n87397 87395\n184722 184721\n498336 498334\n227207 227205\n162391 162389\n379651 379650\n110010 110009\n486102 486100\n234380 234379\n77285 77284\n147729 147727\n145952 145950\n136398 136397\n139113 139111\n249097 249096\n330492 330490\n180980 180979\n497095 497094\n388124 388123\n471693 471691\n241194 241193\n351151 351149\n57763 57761\n256881 256879\n82698 82697\n477762 477761\n246525 246524\n365209 365207\n279316 279315\n203152 203151\n116086 116084\n497757 497756\n461171 461169\n131945 131944\n56694 56692\n247862 247860\n278834 278832\n128974 128973\n170832 170830\n269245 269243\n93788 93786\n361586 361585\n129469 129468\n466042 466041\n483481 483480\n442365 442364\n390481 390479\n326164 326162\n295146 295144\n470636 470634\n109085 109084\n280531 280530\n86351 86350\n432201 432200\n350838 350837\n95451 95449\n80509 80508\n319864 319862\n113467 113465\n438848 438846\n262945 262944\n80646 80645\n182110 182108\n469900 469898\n146662 146660\n470243 470241\n299478 299477\n221227 221226\n245446 245445\n124367 124365\n116877 116875\n141677 141675\n69955 69954\n467791 467790\n286024 286023\n135641 135639\n279228 279226\n479749 479748\n284180 284179\n293070 293069\n496410 496408\n444982 444980\n436352 436350\n419838 419836\n159474 159472\n340317 340316\n262694 262693\n409923 409921\n221114 221113\n482749 482748\n61752 61750\n122890 122889\n57405 57403\n427742 427741\n429417 429415\n136274 136272\n484532 484530\n230881 230879\n324590 324588\n117068 117066\n114158 114156\n339591 339590\n416495 416493\n428907 428906\n175134 175132\n213221 213220\n157295 157294\n477678 477677\n328053 328052\n328307 328305\n196966 196965\n395836 395835\n336740 336738\n180392 180391\n226862 226861\n153867 153865\n416995 416994\n206830 206828\n485915 485914\n242335 242334\n87258 87257\n353963 353962\n385477 385476\n276643 276642\n64978 64977\n188229 188228\n284777 284776\n382181 382179\n151597 151596\n206442 206440\n372335 372334\n279693 279692\n396470 396469\n326508 326507\n165489 165488\n348349 348348\n208476 208475\n176863 176861\n292753 292751\n301714 301712\n355711 355709\n63003 63001\n292194 292192\n53561 53560\n152902 152900\n115109 115107\n116509 116508\n238183 238181\n294956 294954\n98610 98608\n232099 232097\n164192 164190\n152689 152687\n175275 175274\n361421 361419\n235133 235131\n189962 189961\n233978 233976\n84497 84495\n460322 460321\n458819 458817\n224991 224989\n495750 495748\n362639 362637\n469928 469926\n50680 50679\n56192 56191\n417351 417350\n341292 341291\n479451 479450\n299424 299423\n124077 124075\n232086 232084\n467457 467455\n230017 230016\n212167 212166\n117981 117979\n354976 354975\n160860 160858\n197111 197109\n200424 200423\n371089 371087\n53320 53319\n142140 142139\n489573 489572\n482890 482889\n348668 348666\n156065 156063\n449503 449501\n452678 452677\n360089 360088\n59171 59170\n260499 260498\n395850 395849\n394850 394848\n325567 325566\n369959 369958\n186559 186558\n313175 313173\n123861 123860\n172803 172801\n127780 127778\n200464 200462\n395265 395263\n399532 399531\n135909 135908\n80904 80902\n419238 419236\n171432 171431\n122535 122533\n298558 298556\n71254 71252\n409504 409502\n124532 124530\n377219 377217\n424185 424184\n420018 420017\n477749 477747\n129444 129442\n361722 361721\n374810 374808\n159629 159628\n94017 94016\n455063 455061\n361274 361273\n366076 366075\n113373 113372\n297693 297691\n170512 170510\n310737 310736\n394918 394917\n94489 94488\n334085 334084\n65429 65428\n291309 291307\n244312 244311\n220557 220555\n139991 139989\n259572 259570\n407457 407456\n464296 464295\n167349 167347\n408034 408033\n162096 162095\n396574 396572\n328308 328307\n380624 380623\n242260 242258\n484785 484784\n327525 327524\n76141 76140\n173128 173126\n94619 94617\n198223 198222\n300825 300823\n132794 132793\n497213 497211\n134649 134648\n333905 333904\n474958 474956\n280718 280717\n70929 70927\n240616 240615\n379437 379435\n395539 395537\n146512 146510\n362353 362352\n89989 89988\n148982 148980\n361769 361768\n379939 379937\n142404 142403\n463915 463914\n423450 423449\n217239 217238\n485979 485978\n334649 334647\n221377 221375\n418456 418455\n302529 302527\n120593 120592\n455939 455938\n352259 352258\n266418 266417\n276066 276065\n280565 280564\n270513 270511\n278169 278168\n157894 157892\n191015 191014\n265147 265146\n257715 257714\n448996 448995\n301800 301798\n421208 421206\n176611 176610\n118107 118105\n314845 314843\n408561 408559\n367232 367231\n496126 496125\n265383 265381\n130098 130096\n328436 328434\n144849 144847\n72647 72646\n222958 222956\n172359 172358\n293336 293334\n126992 126991\n259116 259114\n71878 71877\n200909 200908\n294070 294068\n491522 491520\n440590 440589\n92079 92078\n461062 461060\n283974 283973\n209894 209892\n455934 455932\n95480 95478\n331308 331306\n72089 72087\n318135 318134\n380923 380921\n325170 325169\n91664 91662\n124191 124189\n447328 447327\n447015 447013\n390707 390706\n201371 201369\n409561 409559\n172176 172175\n312579 312578\n494275 494274\n342991 342990\n138110 138109\n386957 386955\n83924 83923\n412791 412789\n59787 59785\n313923 313921\n447118 447117\n273257 273255\n150323 150321\n415256 415254\n354625 354624\n304637 304636\n386002 386000\n92790 92789\n69777 69776\n317931 317929\n150927 150926\n399638 399636\n272648 272647\n355976 355974\n183267 183265\n454348 454346\n225969 225968\n463895 463893\n418712 418710\n82704 82703\n339716 339714\n356487 356485\n194448 194447\n397365 397363\n367815 367813\n273860 273859\n240362 240360\n482020 482018\n130504 130503\n494505 494504\n244328 244326\n195107 195106\n325277 325275\n490111 490109\n394124 394123\n352141 352139\n306909 306908\n152032 152031\n280560 280559\n425961 425960\n269027 269025\n438024 438022\n350272 350271\n258505 258504\n399261 399259\n134559 134557\n208724 208723\n105038 105036\n140448 140447\n282974 282973\n129415 129414\n345190 345189\n144681 144679\n489847 489846\n84151 84149\n211364 211363\n80158 80157\n234163 234161\n85088 85086\n77613 77611\n316797 316796\n158667 158665\n326914 326913\n211566 211565\n106640 106639\n268570 268568\n201306 201304\n384344 384343\n260494 260493\n421701 421699\n145664 145663\n404994 404993\n303665 303663\n415031 415030\n263792 263790\n379441 379439\n399458 399457\n229813 229811\n228025 228024\n484576 484574\n443421 443419\n55344 55343\n404484 404482\n333790 333789\n439521 439520\n143687 143685\n402026 402025\n242186 242184\n358298 358297\n70196 70195\n97877 97876\n339792 339791\n364350 364349\n356431 356430\n215034 215033\n216394 216392\n180948 180947\n424507 424506\n308144 308142\n150424 150423\n494436 494435\n312488 312486\n195068 195067\n444400 444399\n300864 300863\n464824 464822\n470350 470348\n319657 319656\n406324 406323\n198918 198917\n118763 118762\n401253 401252\n200574 200572\n69473 69472\n187682 187680\n493178 493176\n328433 328432\n259341 259340\n437278 437277\n347400 347399\n125682 125681\n150688 150687\n230357 230356\n466718 466716\n181894 181892\n64954 64953\n50506 50504", "type": "stdin_stdout" }, { "fn_name": null, "input": "100\n1\n2\n113\n9\n3\n635\n945\n442\n756\n306\n848\n108\n289\n873\n842\n382\n334\n617\n879\n922\n827\n79\n280\n863\n440\n372\n575\n707\n105\n5\n816\n453\n770\n244\n435\n377\n48\n566\n13\n911\n342\n145\n520\n719\n223\n800\n533\n657\n859\n245\n301\n812\n581\n498\n955\n256\n637\n527\n226\n161\n290\n921\n90\n391\n221\n928\n839\n238\n917\n481\n789\n734\n624\n491\n511\n553\n50\n422\n220\n510\n755\n677\n854\n85\n749\n598\n909\n20\n856\n661\n746\n604\n4\n753\n818\n270\n10\n489\n871\n471", "output": "39 38\n375 374\n352 350\n315 314\n165 163\n114 113\n174 173\n309 307\n344 342\n442 440\n36 34\n88 87\n147 146\n430 428\n228 226\n151 150\n337 335\n427 426\n491 490\n187 185\n356 354\n334 333\n479 478\n74 72\n168 166\n143 142\n162 161\n494 492\n383 382\n406 405\n281 280\n469 468\n412 410\n138 136\n139 137\n40 39\n224 222\n405 404\n153 151\n305 304\n427 425\n448 446\n343 341\n293 292\n4 3\n175 173\n219 217\n370 368\n85 83\n65 63\n277 275\n254 253\n230 228\n53 51\n182 180\n428 427\n35 33\n152 150\n280 278\n456 455\n310 309\n493 491\n375 373\n184 183\n137 135\n220 219\n317 316\n36 35\n127 126\n479 477\n50 49\n430 429\n379 377\n446 445\n57 55\n76 75\n203 202\n287 286\n443 442\n380 379\n467 465\n59 57\n13 12\n9 8\n296 295\n194 193\n155 154\n76 74\n212 210\n13 11\n431 430\n258 256\n106 105\n402 400\n103 101\n106 104\n472 470\n104 102\n358 357\n241 239", "type": "stdin_stdout" }, { "fn_name": null, "input": "100\n77\n749\n702\n629\n328\n227\n347\n616\n686\n882\n70\n175\n293\n858\n454\n301\n672\n853\n981\n372\n710\n667\n957\n146\n334\n285\n323\n986\n765\n811\n561\n937\n822\n274\n276\n79\n446\n809\n304\n609\n852\n894\n684\n585\n7\n348\n436\n738\n168\n128\n552\n507\n458\n104\n362\n855\n68\n302\n558\n911\n619\n984\n748\n367\n272\n439\n633\n71\n253\n956\n99\n859\n756\n891\n112\n151\n405\n573\n885\n759\n932\n116\n25\n17\n591\n387\n309\n150\n422\n24\n861\n514\n211\n802\n204\n210\n942\n206\n715\n480", "output": "1 0\n2 0\n57 56\n5 4\n2 1\n318 317\n473 472\n222 220\n379 377\n154 152\n425 423\n55 53\n145 144\n437 436\n422 420\n192 190\n168 166\n309 308\n440 439\n462 460\n414 413\n40 39\n141 139\n432 431\n221 219\n187 185\n288 287\n354 353\n53 52\n3 2\n409 407\n227 226\n386 384\n123 121\n218 217\n189 188\n25 23\n284 282\n7 6\n456 455\n172 170\n73 72\n261 259\n360 359\n112 111\n401 399\n267 266\n329 328\n430 429\n123 122\n151 150\n407 405\n291 290\n250 248\n478 477\n129 127\n319 318\n264 263\n114 112\n81 80\n146 144\n461 460\n46 44\n196 195\n111 110\n465 463\n420 419\n120 118\n459 458\n241 240\n395 394\n368 366\n313 311\n246 245\n256 255\n277 276\n26 24\n212 210\n111 109\n256 254\n378 377\n339 338\n428 426\n43 42\n375 374\n300 298\n455 454\n11 9\n429 427\n331 330\n374 372\n303 301\n3 1\n377 376\n410 408\n136 134\n6 4\n245 244\n436 435\n236 235", "type": "stdin_stdout" }, { "fn_name": null, "input": "19\n1\n10\n100\n1000\n10000\n100000\n1000000\n10000000\n100000000\n1000000000\n9\n99\n999\n9999\n99999\n999999\n9999999\n99999999\n999999999", "output": "1 0\n6 4\n51 49\n501 499\n5001 4999\n50001 49999\n500001 499999\n5000001 4999999\n50000001 49999999\n500000001 499999999\n5 4\n50 49\n500 499\n5000 4999\n50000 49999\n500000 499999\n5000000 4999999\n50000000 49999999\n500000000 499999999", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Monk and his P-1 friends recently joined a college. He finds that N students have already applied for different courses before him. Courses are assigned numbers from 1 to C. He and his friends will follow the following conditions when choosing courses:- They will choose the course i (1 ≤ i ≤ C), for which the value of z is minimum. Here, z = x*c where c is the number of students already enrolled in the course i and x is the sum of IQ of the last two students who enrolled in that course. If a single student has applied for a course, then the value of x will be that student's IQ. If no student has enrolled for that course, then value of x will be 0. If the value of z is same for two courses, then they will choose the course with the minimum course number. You need to find which courses Monk and his friends should take after following the above conditions. Note: Each of them will choose their courses, one at a time. Monk will choose his course first followed by his friends. Input: The first line contains the numbers C, P and N where C denotes the number of courses in that college, P denotes Monk and his friends and N denotes the number of students who have already applied for the courses. The next line consists of N space separated integers Y[i] which denotes the IQ of the i^th student. Here, the i^th student chooses the i^th course. The next line consists of P space separated integers X[i] which denotes the IQ of Monk and his friends. Output: Print P space separated integers in a line which denotes the course number which Monk and his friends have applied for. Constraints: 1 ≤ C ≤ 100000 1 ≤ P ≤ 100000 1 ≤ N ≤ C 1 ≤ Y[i],X[i] ≤ 100000 SAMPLE INPUT 5 4 4 2 8 5 1 9 10 5 1 SAMPLE OUTPUT 5 4 1 3 Explanation In the sample test case, the last course has not been applied by anyone. So, its sum will be 0 initially. Hence, Monk will apply there as the value of z = 0. Now Monk's first friend will apply for the 4th course as its value of z = 1, which is minimum of all the four courses. Monk's second friend will apply for the 1st course as its value of z = 2, which is minimum of all the four courses. Similarly, Monk's third friend will apply for the 3rd course as its value of z = 5, which is minimum of all the four courses. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import heapq def solve(c, iqs, piqs): res = [] q = [(0, i, 0, (0, 0)) for i in range(len(iqs) + 1, c + 1)] q += [(iq, i, 1, (0, iq)) for i, iq in enumerate(iqs, 1)] heapq.heapify(q) for iq in piqs: _, course, student_count, last_iqs = q[0] res.append(course) student_count += 1 last_iqs = (last_iqs[1], iq) heapq.heapreplace(q, (sum(last_iqs) * student_count, course, student_count, last_iqs)) return ' '.join(str(r) for r in res) if __name__ == '__main__': ''' Once again one of the input is broken on codemonk ... ''' c, p, _ = list(map(int, input().split())) iqs = list(map(int, input().split())) piqs = list(map(int, input().split())) piqs += [0] * (p - len(piqs)) # because input is truncated ... print(solve(c, iqs, piqs)) ```
vfc_143148
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "10 10 10\n2 8 5 1 10 5 9 9 3 5\n2 5 1 8 6 5 1 10 1 6", "output": "4 1 9 3 6 10 4 2 9 9 ", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1767/B
Solve the following coding problem using the programming language python: There are $n$ block towers, numbered from $1$ to $n$. The $i$-th tower consists of $a_i$ blocks. In one move, you can move one block from tower $i$ to tower $j$, but only if $a_i > a_j$. That move increases $a_j$ by $1$ and decreases $a_i$ by $1$. You can perform as many moves as you would like (possibly, zero). What's the largest amount of blocks you can have on the tower $1$ after the moves? -----Input----- The first line contains a single integer $t$ ($1 \le t \le 10^4$) — the number of testcases. The first line of each testcase contains a single integer $n$ ($2 \le n \le 2 \cdot 10^5$) — the number of towers. The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ($1 \le a_i \le 10^9$) — the number of blocks on each tower. The sum of $n$ over all testcases doesn't exceed $2 \cdot 10^5$. -----Output----- For each testcase, print the largest amount of blocks you can have on the tower $1$ after you make any number of moves (possibly, zero). -----Examples----- Input 4 3 1 2 3 3 1 2 2 2 1 1000000000 10 3 8 6 7 4 1 2 4 10 1 Output 3 2 500000001 9 -----Note----- In the first testcase, you can move a block from tower $2$ to tower $1$, making the block counts $[2, 1, 3]$. Then move a block from tower $3$ to tower $1$, making the block counts $[3, 1, 2]$. Tower $1$ has $3$ blocks in it, and you can't obtain a larger amount. In the second testcase, you can move a block from any of towers $2$ or $3$ to tower $1$, so that it has $2$ blocks in it. In the third testcase, you can $500000000$ times move a block from tower $2$ to tower $1$. After that the block countes will be $[500000001, 500000000]$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys rd = sys.stdin.readline for _ in range(int(rd())): n = int(rd()) a = list(map(int, rd().split())) b = sorted(a[1:]) ans = a[0] for i in b: if i > ans: ans = (ans + i + 1) // 2 print(ans) ```
vfc_143152
{ "difficulty": "easy", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1767/B", "time_limit": "2 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n3\n1 2 3\n3\n1 2 2\n2\n1 1000000000\n10\n3 8 6 7 4 1 2 4 10 1\n", "output": "3\n2\n500000001\n9\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/flipping-bits-no-and-binary-format-in-reverse-order0513/1
Solve the following coding problem using the programming language python: Given a list of 32 bit unsigned integers N. Find X, the unsigned integer you get by flipping bits in the binary representation of N. i.e. unset bits must be set, and set bits must be unset. Also find the binary representation of X in reverse order. Example 1: Input: N = 1 Output: 4294967294 01111111111111111111111111111111 Explaination: 1 as unsigned 32-bits is 00000000000000000000000000000001. Flipping its bits we get 11111111111111111111111111111110. Its binary representation is 4294967294. Its reverse order is 01111111111111111111111111111111. Example 2: Input: N = 2 Output: 4294967293 10111111111111111111111111111111 Explaination: 2 as unsigned 32-bits is 00000000000000000000000000000010. Flipping its bits we get 11111111111111111111111111111101. Its binary representation is 4294967293. Its reverse order is 1011111111111111111111111111111. Your Task: You do not need to read input or print anything. Your task is to complete the function flipBits() which takes N as input parameter and returns a list of strings containing two values, X and binary representation of X in reverse order. Expected Time Complexity: O(logN) Expected Auxiliary Space: O(logN) Constraints: 1 ≤ N < 4294967296 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def flipBits(self, N): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def flipBits(self, N): num = 4294967295 - N binary_num = bin(num)[2:] return (num, ''.join(reversed(['0'] * (32 - len(binary_num)) + list(binary_num)))) ```
vfc_143156
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/flipping-bits-no-and-binary-format-in-reverse-order0513/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "N = 1", "output": "4294967294 01111111111111111111111111111111", "type": "stdin_stdout" }, { "fn_name": null, "input": "N = 2", "output": "4294967293 10111111111111111111111111111111", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1629/A
Solve the following coding problem using the programming language python: Did you know you can download more RAM? There is a shop with $n$ different pieces of software that increase your RAM. The $i$-th RAM increasing software takes $a_i$ GB of memory to run (temporarily, once the program is done running, you get the RAM back), and gives you an additional $b_i$ GB of RAM (permanently). Each software can only be used once. Your PC currently has $k$ GB of RAM. Note that you can't use a RAM-increasing software if it takes more GB of RAM to use than what you currently have. Since RAM is the most important thing in the world, you wonder, what is the maximum possible amount of RAM achievable? -----Input----- The first line of the input contains a single integer $t$ ($1 \le t \le 100$) — the number of test cases. The description of test cases follows. The first line of each test case contains the integers $n$ and $k$ ($1 \le n \le 100$, $1 \le k \le 1000$). Then two lines follow, each containing $n$ integers describing the arrays $a$ and $b$ ($1 \le a_i, b_i \le 1000$). -----Output----- For each test case, output a single line containing the largest amount of RAM you can achieve. -----Examples----- Input 4 3 10 20 30 10 9 100 10 5 1 1 1 5 1 1 1 1 1 1 1 5 1 2 2 2 2 2 100 100 100 100 100 5 8 128 64 32 16 8 128 64 32 16 8 Output 29 6 1 256 -----Note----- In the first test case, you only have enough RAM to run the third software initially, but that increases your RAM to $20$ GB, which allows you to use the first software, increasing your RAM to $29$ GB. The only software left needs $30$ GB of RAM, so you have to stop here. In the second test case, you can use the first, second, fourth and fifth software that need only $1$ GB of RAM per software to run to increase your RAM to $5$ GB, and then use the last remaining one to increase your RAM to $6$ GB. In the third test case, all the software need more than $1$ GB of RAM to run, so the amount of RAM you have stays at $1$ GB. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for _ in range(int(input())): (n, k) = map(int, input().split()) mem = list(map(int, input().split())) ram = list(map(int, input().split())) dp = [] for i in range(n): dp.append([mem[i], ram[i]]) dp.sort() rm = k for i in dp: if i[0] <= rm: rm += i[1] else: break print(rm) ```
vfc_143159
{ "difficulty": "easy", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1629/A", "time_limit": "1 second" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n3 10\n20 30 10\n9 100 10\n5 1\n1 1 5 1 1\n1 1 1 1 1\n5 1\n2 2 2 2 2\n100 100 100 100 100\n5 8\n128 64 32 16 8\n128 64 32 16 8\n", "output": "29\n6\n1\n256\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1\n1 1000\n1000\n1000\n", "output": "2000\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/find-the-smallest-and-second-smallest-element-in-an-array3226/1
Solve the following coding problem using the programming language python: Given an array of integers, your task is to find the smallest and second smallest element in the array. If smallest and second smallest do not exist, print -1. Example 1: Input : 5 2 4 3 5 6 Output : 2 3 Explanation: 2 and 3 are respectively the smallest and second smallest elements in the array. Example 2: Input : 6 1 2 1 3 6 7 Output : 1 2 Explanation: 1 and 2 are respectively the smallest and second smallest elements in the array. Your Task: You don't need to read input or print anything. Your task is to complete the function minAnd2ndMin() which takes the array A[] and its size N as inputs and returns a vector containing the smallest and second smallest element if possible, else return {-1,-1}. Expected Time Complexity: O(N) Expected Auxiliary Space: O(1) Constraints: 1<=N<=10^{5} 1<=A[i]<=10^{5} Write your solution by modifying this code: ```python #User function Template for python3 def minAnd2ndMin( a, n): #code here ``` Your solution should implemented in the function "minAnd2ndMin". The inputs will be passed to it and it should return the correct solution. Now solve the problem and return the code.
```python def minAnd2ndMin(a, n): a = list(set(a)) a.sort() l = a[:2] if len(l) == 2: return l else: return (-1, -1) ```
vfc_143172
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/find-the-smallest-and-second-smallest-element-in-an-array3226/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": "minAnd2ndMin", "input": "5\n2 4 3 5 6", "output": "2 3", "type": "function_call" }, { "fn_name": "minAnd2ndMin", "input": "6\n1 2 1 3 6 7", "output": "1 2", "type": "function_call" } ] }
taco
verifiable_code
https://practice.geeksforgeeks.org/problems/check-if-it-is-possible-to-survive-on-island4922/1
Solve the following coding problem using the programming language python: Ishika got stuck on an island. There is only one shop on this island and it is open on all days of the week except for Sunday. Consider following constraints: N – The maximum unit of food you can buy each day. S – Number of days you are required to survive. M – Unit of food required each day to survive. Currently, it’s Monday, and she needs to survive for the next S days. Find the minimum number of days on which you need to buy food from the shop so that she can survive the next S days, or determine that it isn’t possible to survive. Example 1: Input: S = 10, N = 16, M = 2 Output: 2 Explaination: One possible solution is to buy a box on the first day (Monday), it’s sufficient to eat from this box up to 8th day (Monday) inclusive. Now, on the 9th day (Tuesday), you buy another box and use the chocolates in it to survive the 9th and 10th day. Example 2: Input: S = 10, N = 20, M = 30 Output: -1 Explaination: She can’t survive even if she buy food because the maximum number of units she can buy in 1 day is less the required food for 1 day. Your Task: You do not need to read input or print anything. Your task is to complete the function minimumDays() which takes S, N, and M as input parameters and returns the minimum number of days Ishika needs to buy food. Otherwise, returns -1 if she cannot survive. Expected Time Complexity: O(1) Expected Auxiliary Space: O(1) Constraints: 1 ≤ N, S ≤ 50 1 ≤ M ≤ 30 Write your solution by modifying this code: ```python #User function Template for python3 class Solution: def minimumDays(self, S, N, M): # code here ``` The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python class Solution: def minimumDays(self, S, N, M): if M * 7 > N * 6 and S > 6 or M > N: return -1 else: day = M * S // N if M * S % N != 0: day += 1 return day ```
vfc_143174
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://practice.geeksforgeeks.org/problems/check-if-it-is-possible-to-survive-on-island4922/1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "S = 10, N = 16, M = 2", "output": "2", "type": "stdin_stdout" }, { "fn_name": null, "input": "S = 10, N = 20, M = 30", "output": "-1", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1300/D
Solve the following coding problem using the programming language python: Guy-Manuel and Thomas are going to build a polygon spaceship. You're given a strictly convex (i. e. no three points are collinear) polygon P which is defined by coordinates of its vertices. Define P(x,y) as a polygon obtained by translating P by vector \overrightarrow {(x,y)}. The picture below depicts an example of the translation: <image> Define T as a set of points which is the union of all P(x,y) such that the origin (0,0) lies in P(x,y) (both strictly inside and on the boundary). There is also an equivalent definition: a point (x,y) lies in T only if there are two points A,B in P such that \overrightarrow {AB} = \overrightarrow {(x,y)}. One can prove T is a polygon too. For example, if P is a regular triangle then T is a regular hexagon. At the picture below P is drawn in black and some P(x,y) which contain the origin are drawn in colored: <image> The spaceship has the best aerodynamic performance if P and T are similar. Your task is to check whether the polygons P and T are [similar](https://tinyurl.com/vp5m7vl). Input The first line of input will contain a single integer n (3 ≤ n ≤ 10^5) — the number of points. The i-th of the next n lines contains two integers x_i, y_i (|x_i|, |y_i| ≤ 10^9), denoting the coordinates of the i-th vertex. It is guaranteed that these points are listed in counterclockwise order and these points form a strictly convex polygon. Output Output "YES" in a separate line, if P and T are similar. Otherwise, output "NO" in a separate line. You can print each letter in any case (upper or lower). Examples Input 4 1 0 4 1 3 4 0 3 Output YES Input 3 100 86 50 0 150 0 Output nO Input 8 0 0 1 0 2 1 3 3 4 6 3 6 2 5 1 3 Output YES Note The following image shows the first sample: both P and T are squares. The second sample was shown in the statements. <image> The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys import math from collections import defaultdict from collections import deque from itertools import combinations from itertools import permutations input = lambda : sys.stdin.readline().rstrip() read = lambda : list(map(int, input().split())) go = lambda : 1 / 0 def write(*args, sep='\n'): for i in args: sys.stdout.write('{}{}'.format(i, sep)) INF = float('inf') MOD = int(1000000000.0 + 7) YES = 'YES' NO = 'NO' def vt(p1, p2): return [p2[0] - p1[0], p2[1] - p1[1]] def isSame(vt1, vt2): if vt1[0] == vt2[0] and vt1[1] == vt2[1]: return True if vt1[0] == -vt2[0] and vt1[1] == -vt2[1]: return True return False n = int(input()) arr = [read() for i in range(n)] arr.append(arr[0]) if n % 2 == 1: print(NO) exit() for i in range(n // 2): vt1 = vt(arr[i], arr[i + 1]) vt2 = vt(arr[i + n // 2], arr[i + n // 2 + 1]) if not isSame(vt1, vt2): print(NO) exit() print(YES) ```
vfc_143175
{ "difficulty": "medium_hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1300/D", "time_limit": "1.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "6\n-99555247 -9420873\n-68495517 -72858523\n-56392372 -82582689\n-45496035 -89051170\n-76555765 -25613520\n-88658910 -15889354\n", "output": "YES\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\n15618728 -98772746\n91392611 40588059\n88444454 46664531\n12670571 -92696274\n", "output": "YES\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1165/F1
Solve the following coding problem using the programming language python: The only difference between easy and hard versions is constraints. Ivan plays a computer game that contains some microtransactions to make characters look cooler. Since Ivan wants his character to be really cool, he wants to use some of these microtransactions — and he won't start playing until he gets all of them. Each day (during the morning) Ivan earns exactly one burle. There are $n$ types of microtransactions in the game. Each microtransaction costs $2$ burles usually and $1$ burle if it is on sale. Ivan has to order exactly $k_i$ microtransactions of the $i$-th type (he orders microtransactions during the evening). Ivan can order any (possibly zero) number of microtransactions of any types during any day (of course, if he has enough money to do it). If the microtransaction he wants to order is on sale then he can buy it for $1$ burle and otherwise he can buy it for $2$ burles. There are also $m$ special offers in the game shop. The $j$-th offer $(d_j, t_j)$ means that microtransactions of the $t_j$-th type are on sale during the $d_j$-th day. Ivan wants to order all microtransactions as soon as possible. Your task is to calculate the minimum day when he can buy all microtransactions he want and actually start playing. -----Input----- The first line of the input contains two integers $n$ and $m$ ($1 \le n, m \le 1000$) — the number of types of microtransactions and the number of special offers in the game shop. The second line of the input contains $n$ integers $k_1, k_2, \dots, k_n$ ($0 \le k_i \le 1000$), where $k_i$ is the number of copies of microtransaction of the $i$-th type Ivan has to order. It is guaranteed that sum of all $k_i$ is not less than $1$ and not greater than $1000$. The next $m$ lines contain special offers. The $j$-th of these lines contains the $j$-th special offer. It is given as a pair of integers $(d_j, t_j)$ ($1 \le d_j \le 1000, 1 \le t_j \le n$) and means that microtransactions of the $t_j$-th type are on sale during the $d_j$-th day. -----Output----- Print one integer — the minimum day when Ivan can order all microtransactions he wants and actually start playing. -----Examples----- Input 5 6 1 2 0 2 0 2 4 3 3 1 5 1 2 1 5 2 3 Output 8 Input 5 3 4 2 1 3 2 3 5 4 2 2 5 Output 20 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys def main(): (n, m) = map(int, input().split()) k = [int(x) for x in input().split()] d = [[] for _ in range(4 * 10 ** 5 + 1)] for j in range(m): (dj, tj) = map(int, input().split()) d[dj - 1].append(tj - 1) (lo, hi) = (0, 4 * 10 ** 5 + 1) while lo < hi: mi = (hi + lo) // 2 cash = mi offset = 0 _k = k[:] for i in reversed(range(mi)): for j in d[i]: while cash and _k[j]: _k[j] -= 1 cash -= 1 if cash == i + 1: cash -= 2 offset += 1 if 2 * (sum(_k) - offset) <= cash: hi = mi else: lo = mi + 1 print(lo) input = iter(sys.stdin.read().splitlines()).__next__ main() ```
vfc_143180
{ "difficulty": "hard", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1165/F1", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5 6\n1 2 0 2 0\n2 4\n3 3\n1 5\n1 2\n1 5\n2 3\n", "output": "8\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/146/D
Solve the following coding problem using the programming language python: Petya loves lucky numbers very much. Everybody knows that lucky numbers are positive integers whose decimal record contains only the lucky digits 4 and 7. For example, numbers 47, 744, 4 are lucky and 5, 17, 467 are not. Petya loves long lucky numbers very much. He is interested in the minimum lucky number d that meets some condition. Let cnt(x) be the number of occurrences of number x in number d as a substring. For example, if d = 747747, then cnt(4) = 2, cnt(7) = 4, cnt(47) = 2, cnt(74) = 2. Petya wants the following condition to fulfil simultaneously: cnt(4) = a1, cnt(7) = a2, cnt(47) = a3, cnt(74) = a4. Petya is not interested in the occurrences of other numbers. Help him cope with this task. Input The single line contains four integers a1, a2, a3 and a4 (1 ≤ a1, a2, a3, a4 ≤ 106). Output On the single line print without leading zeroes the answer to the problem — the minimum lucky number d such, that cnt(4) = a1, cnt(7) = a2, cnt(47) = a3, cnt(74) = a4. If such number does not exist, print the single number "-1" (without the quotes). Examples Input 2 2 1 1 Output 4774 Input 4 7 3 1 Output -1 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from math import * from fractions import * from sys import * def li(): return list(map(int, input().split(' '))) a = li() if abs(a[2] - a[3]) > 1: print(-1) exit() if a[2] == a[3]: ans = '47' * a[2] + '4' elif a[2] > a[3]: ans = '47' * a[2] else: ans = '74' * a[3] f = a[0] - ans.count('4') s = a[1] - ans.count('7') shit = False if s < 0 or f < 0: if a[2] == a[3]: ans = '74' * a[2] + '7' shit = True f = a[0] - ans.count('4') s = a[1] - ans.count('7') if s < 0 or f < 0: ans = '-1' elif s > 0 or f > 0: s += 1 f += 1 if ans[:2] == '47': if ans[-1] == '4': ans = '4' * f + '7' + ans[2:-1] + '7' * (s - 1) + '4' else: ans = '4' * f + '7' + ans[2:] + '7' * (s - 1) elif ans[-1] == '4': ans = '7' + '4' * f + ans[2:-1] + '7' * (s - 1) + '4' else: ans = '7' + '4' * f + ans[2:] + '7' * (s - 1) print(ans) ```
vfc_143188
{ "difficulty": "medium_hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/146/D", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1 10 1 2\n", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2 1 3 1\n", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4 7 2 1\n", "output": "44474777777\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "1 4 1 1\n", "output": "74777\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "45 65 31 32\n", "output": "74444444444444474747474747474747474747474747474747474747474747474747474747477777777777777777777777777777777774\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/ARRFILL
Solve the following coding problem using the programming language python: Read problem statements in [Bengali], [Mandarin Chinese], [Russian], and [Vietnamese] as well. You are given an array A of size N. Initially, the array is filled with 0-s. There are M types of operations that you can perform on array A. The i^{th} operation can be described by two integers (x_{i}, y_{i}). In this operation, you choose a set of indices S such that 1 ≤ j ≤ N, (j \bmod y_{i}) \neq 0, A_{j} = 0, , then you set A_{j} = x_{i} for all j \in S. You can perform the operations in any order, but one type of operation can't be done more than once. What is the maximum sum of integers of the array A you obtain if you perform the M operations optimally? For example, consider the array A = [0, 0, 0, 0]. Suppose x = 3, y = 2. Here you can choose indices 1 and 3 and set A_{1} = A_{3} = 3. So the array A becomes [3, 0, 3, 0]. In this operation you can't choose the indices 2 and 4 because (2 \bmod 2) = 0, (4 \bmod 2) = 0. Suppose x = 5, y = 3 and you set A_{2} = 5. So the array A becomes [3, 5, 3, 0]. Here you can't choose index 1 because A_{1} > 0 and index 3 because (3 \bmod 3) = 0 and A_{3} > 0. However, you could also set A_{4} = 5. Suppose x = 4, y = 4. Now you can't choose any index because A_{j} > 0 for all 1 ≤ j ≤ 3 and (4 \bmod 4) = 0. So the array remains same. Note: Since input-output is large, prefer using fast input-output methods. ------ Input Format ------ - The first line of the input contains a single integer T denoting the number of test cases. The description of T test cases follows. - Each testcase contains M + 1 lines of input. - The first line of each test case contains two space-separated integers N, M. - M lines follow. For each valid i, the i^{th} of these lines contains two space-separated integers x_{i}, y_{i} - parameters of the i^{th} operation. ------ Output Format ------ For each test case, output in a single line the maximum sum of integers of the array A after M operations. ------ Constraints ------ $1 ≤ T ≤ 12600$ $1 ≤ N ≤ 10^{9}$ $1 ≤ M ≤ 10^{5}$ $1 ≤ x_{i} ≤ 10^{9}$ $2 ≤ y_{i} ≤ 10^{9}$ - The sum of $M$ over all test cases does not exceed $10^{6}$. ------ subtasks ------ Subtask #1 (100 points): original constraints ----- Sample Input 1 ------ 3 10 1 5 2 8 2 5 2 6 3 3 2 2 2 1 3 ----- Sample Output 1 ------ 25 41 5 ----- explanation 1 ------ Test case $1$: Optimal filling is $[5, 0, 5, 0, 5, 0, 5, 0, 5, 0]$. Test case $2$: Optimal filling is $[6, 6, 5, 6, 6, 0, 6, 6]$. Test case $3$: Optimal filling is $[2, 1, 2]$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python def gcd(a, b): while b: (a, b) = (b, a % b) return a def lcm(a, b): return a * b // gcd(a, b) for t in range(int(input())): (n, m) = map(int, input().split()) operations = [list(map(int, input().split())) for i in range(m)] operations.sort(key=lambda x: x[0], reverse=True) ans = 0 running_lcm = 1 empty_spots = n for (x, y) in operations: running_lcm = lcm(running_lcm, y) ans += (empty_spots - n // running_lcm) * x empty_spots -= empty_spots - n // running_lcm if not empty_spots: break print(ans) ```
vfc_143192
{ "difficulty": "medium_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/ARRFILL", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n10 1\n5 2\n8 2\n5 2\n6 3\n3 2\n2 2\n1 3", "output": "25\n41\n5", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.hackerrank.com/challenges/the-story-of-a-tree/problem
Solve the following coding problem using the programming language python: One day Bob drew a tree, $\mathbf{T}$, with $n$ nodes and $n-1$ edges on a piece of paper. He soon discovered that parent of a node depends on the root of the tree. The following images shows an example of that: Learning the fact, Bob invented an exciting new game and decided to play it with Alice. The rules of the game is described below: Bob picks a random node to be the tree's root and keeps the identity of the chosen node a secret from Alice. Each node has an equal probability of being picked as the root. Alice then makes a list of $\mathrm{~g~}$ guesses, where each guess is in the form u v and means Alice guesses that $parent(v)=u$ is true. It's guaranteed that an undirected edge connecting $\mbox{u}$ and $\boldsymbol{\nu}$ exists in the tree. For each correct guess, Alice earns one point. Alice wins the game if she earns at least $\boldsymbol{\mbox{k}}$ points (i.e., at least $\boldsymbol{\mbox{k}}$ of her guesses were true). Alice and Bob play $\textit{q}$ games. Given the tree, Alice's guesses, and the value of $\boldsymbol{\mbox{k}}$ for each game, find the probability that Alice will win the game and print it on a new line as a reduced fraction in the format p/q. Input Format The first line contains an integer, $\textit{q}$, denoting the number of different games. The subsequent lines describe each game in the following format: The first line contains an integer, $n$, denoting the number of nodes in the tree. The $n-1$ subsequent lines contain two space-separated integers, $\mbox{u}$ and $\boldsymbol{\nu}$, defining an undirected edge between nodes $\mbox{u}$ and $\boldsymbol{\nu}$. The next line contains two space-separated integers describing the respective values of $\mathrm{~g~}$ (the number of guesses) and $\boldsymbol{\mbox{k}}$ (the minimum score needed to win). Each of the $\mathrm{~g~}$ subsequent lines contains two space-separated integers, $\mbox{u}$ and $\boldsymbol{\nu}$, indicating Alice guesses $parent(v)=u$. Constraints $1\leq q\leq5$ $1\leq n\leq10^5$ $1\leq u,v\leq n$ $1\leq g,k\leq10^5$ The sum of $n$ over all test cases won't exceed $2\times10^5$. No two guesses will be identical. Scoring For $25\%$ of the maximum score, $1\leq n\leq10^3$. For $100\%$ of the maximum score, $1\leq n\leq10^5$. Output Format Print the probability as a reduced fraction in the format p/q. Note: Print 0/1 if the probability is $\mbox{0}$ and print 1/1 if the probability is $\mbox{1}$. Sample Input 0 2 4 1 2 1 3 3 4 2 2 1 2 3 4 3 1 2 1 3 2 2 1 2 1 3 Sample Output 0 1/2 1/3 Explanation 0 Alice and Bob play the following $g=2$ games: Alice makes two guesses, $\left(1\quad2\right)$ and $\left(3\quad4\right)$ , meaning she guessed that $parent(2)=1$ and $parent(4)=3$. To win the game, at least $k=2$ of her guesses must be true. In the diagrams below, you can see that at least $2$ guesses are true if the root of the tree is either node $\mbox{1}$ or $3$: There are $4$ nodes in total and the probability of picking node $\mbox{1}$ or $3$ as the root is $\frac{2}{4}$, which reduces to $\frac{1}{2}$. In this game, Alice only wins if node $\mbox{1}$ is the root of the tree. There are $3$ nodes in total, and the probability of picking node $\mbox{1}$ as the root is $\frac{1}{3}$. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import sys adj = [] p = [] def dfs(v, par): ret = 0 for u in p[v]: ret += +1 if par == u else 0 for u in adj[v]: if u != par: ret += dfs(u, v) return ret def dfs2(v, par, cur, lim): if par != -1: for u in p[par]: if u == v: cur += 1 for u in p[v]: if u == par: cur -= 1 ret = cur >= lim for u in adj[v]: if u != par: ret += dfs2(u, v, cur, lim) return ret def gcd(a, b): return gcd(b % a, a) if a > 0 else b q = int(input().strip()) for a0 in range(q): n = int(input().strip()) adj = [[] for _ in range(n)] p = [[] for _ in range(n)] for a1 in range(n - 1): (u, v) = input().strip().split(' ') (u, v) = [int(u), int(v)] u -= 1 v -= 1 adj[u].append(v) adj[v].append(u) (g, k) = input().strip().split(' ') (g, k) = [int(g), int(k)] for a1 in range(g): (u, v) = input().strip().split(' ') (u, v) = [int(u), int(v)] u -= 1 v -= 1 p[v].append(u) cur = dfs(0, -1) ans = dfs2(0, -1, cur, k) d = gcd(ans, n) ans = ans // d n = n // d print('%d/%d' % (ans, n)) ```
vfc_143196
{ "difficulty": "medium", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.hackerrank.com/challenges/the-story-of-a-tree/problem", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n4\n1 2\n1 3\n3 4\n2 2\n1 2\n3 4\n3\n1 2\n1 3\n2 2\n1 2\n1 3\n", "output": "1/2\n1/3\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.hackerrank.com/challenges/strange-code/problem
Solve the following coding problem using the programming language python: There is a strange counter. At the first second, it displays the number $3$. Each second, the number displayed by decrements by $\mbox{1}$ until it reaches $\mbox{1}$. In next second, the timer resets to $2\times\textbf{the initial number for the prior cycle}$ and continues counting down. The diagram below shows the counter values for each time $\boldsymbol{\boldsymbol{t}}$ in the first three cycles: Find and print the value displayed by the counter at time $\boldsymbol{\boldsymbol{t}}$. Function Description Complete the strangeCounter function in the editor below. strangeCounter has the following parameter(s): int t: an integer Returns int: the value displayed at time $\boldsymbol{\boldsymbol{t}}$ Input Format A single integer, the value of $\boldsymbol{\boldsymbol{t}}$. Constraints $1\leq t\leq10^{12}$ Subtask $1\leq t\leq10^5$ for $60\%$ of the maximum score. Sample Input 4 Sample Output 6 Explanation Time $t=4$ marks the beginning of the second cycle. It is double the number displayed at the beginning of the first cycle:$2\times3=6$. This is shown in the diagram in the problem statement. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) t1 = 3 while t1 < t: t -= t1 t1 *= 2 print(t1 - t + 1) ```
vfc_143201
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.hackerrank.com/challenges/strange-code/problem", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n", "output": "6\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/ARYS2020/problems/FREQARRY
Solve the following coding problem using the programming language python: A beautiful sequence is defined as a sequence that do not have any repeating elements in it. You will be given any random sequence of integers, and you have to tell whether it is a beautiful sequence or not. -----Input:----- - The first line of the input contains a single integer $T$. $T$ denoting the number of test cases. The description of $T$ test cases is as follows. - The next line of the input contains a single integer $N$. $N$ denotes the total number of elements in the sequence. - The next line of the input contains $N$ space-separated integers $A1, A2, A3...An$ denoting the sequence. -----Output:----- - Print "prekrasnyy"(without quotes) if the given sequence is a beautiful sequence, else print "ne krasivo"(without quotes) Note: each test case output must be printed on new line -----Constraints:----- - $1 \leq T \leq 10^2$ - $1 \leq N \leq 10^3$ - $1 \leq A1, A2, A3...An \leq 10^5$ -----Sample Input:----- 2 4 1 2 3 4 6 1 2 3 5 1 4 -----Sample Output:----- prekrasnyy ne krasivo -----Explanation:----- - As 1st sequence do not have any elements repeating, hence it is a beautiful sequence - As in 2nd sequence the element 1 is repeated twice, hence it is not a beautiful sequence The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for _ in range(int(input())): n = int(input()) arr = list(map(int, input().split())) l = [] for i in range(0, len(arr)): for j in range(i + 1, len(arr)): if arr[i] == arr[j]: l.append(arr[j]) if len(l) == 0: print('prekrasnyy') else: print('ne krasivo') ```
vfc_143205
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/ARYS2020/problems/FREQARRY", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n4\n1 2 3 4\n6\n1 2 3 5 1 4\n", "output": "prekrasnyy\nne krasivo\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/MAXSPSUM
Solve the following coding problem using the programming language python: Given an array of size N$N$ and two integers K$K$ and S$S$, the special sum of a subarray is defined as follows: (Sum of all elements of the subarray) * (K$K$ - p$p$ * S$S$) Where p$p$ = number of distinct prime factors of “product of all elements of the subarray”. Find the maximum special sum by considering all non-empty subarrays of the given array. -----Input----- - First line contains 3 integers N$N$, K$K$ and S$S$. - Second line contains N$N$ integers, the elements of the array. -----Output----- Output a single integer. The maximum special sum considering all non-empty subarrays of the array. -----Constraints:----- - 1≤N,K,S≤105$ 1 \leq N, K, S \leq 10^5 $ - 0≤K/S≤20$ 0 \leq K / S \leq 20 $ - 1<$ 1 < $ Any element of array <105$ < 10^5 $ -----Sample Input----- 4 10 2 14 2 7 15 -----Sample Output----- 138 -----Sample Explanation----- Consider the subarray {14, 2, 7} Total number of distinct prime factors in it is 2 (2 and 7). Therefore, value of special sum is (14 + 2 + 7) * (10 - 2 * 2) = 138. This is the subarray with the maximum special sum. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from math import floor, sqrt try: long except NameError: long = int def fac(n): (step, maxq, d) = (lambda x: 1 + (x << 2) - (x >> 1 << 1), long(floor(sqrt(n))), 1) q = n % 2 == 0 and 2 or 3 while q <= maxq and n % q != 0: q = step(d) d += 1 return q <= maxq and [q] + fac(n // q) or [n] (n, k, s) = map(int, input().split()) (a, di, l, m, ans, su) = (list(map(int, input().split())), {}, [], 0, 0, 0) for i in a: (bb, su) = (list(set(fac(i))), su + i) for j in bb: try: di[j] += 1 except KeyError: (m, di[j]) = (m + 1, 1) l.append(su * (k - m * s)) if su * (k - m * s) < 0: (m, di, su) = (0, {}, 0) print(max(l)) ```
vfc_143210
{ "difficulty": "very_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/MAXSPSUM", "time_limit": "3 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4 10 2\n14 2 7 15\n", "output": "138\nSample\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1476/D
Solve the following coding problem using the programming language python: There are $n + 1$ cities, numbered from $0$ to $n$. $n$ roads connect these cities, the $i$-th road connects cities $i - 1$ and $i$ ($i \in [1, n]$). Each road has a direction. The directions are given by a string of $n$ characters such that each character is either L or R. If the $i$-th character is L, it means that the $i$-th road initially goes from the city $i$ to the city $i - 1$; otherwise it goes from the city $i - 1$ to the city $i$. A traveler would like to visit as many cities of this country as possible. Initially, they will choose some city to start their journey from. Each day, the traveler must go from the city where they currently are to a neighboring city using one of the roads, and they can go along a road only if it is directed in the same direction they are going; i. e., if a road is directed from city $i$ to the city $i + 1$, it is possible to travel from $i$ to $i + 1$, but not from $i + 1$ to $i$. After the traveler moves to a neighboring city, all roads change their directions to the opposite ones. If the traveler cannot go from their current city to a neighboring city, their journey ends; it is also possible to end the journey whenever the traveler wants to. The goal of the traveler is to visit as many different cities as possible (they can visit a city multiple times, but only the first visit is counted). For each city $i$, calculate the maximum number of different cities the traveler can visit during exactly one journey if they start in the city $i$. -----Input----- The first line contains one integer $t$ ($1 \le t \le 10^4$) — the number of test cases. Each test case consists of two lines. The first line contains one integer $n$ ($1 \le n \le 3 \cdot 10^5$). The second line contains the string $s$ consisting of exactly $n$ characters, each character is either L or R. It is guaranteed that the sum of $n$ over all test cases does not exceed $3 \cdot 10^5$. -----Output----- For each test case, print $n + 1$ integers. The $i$-th integer should be equal to the maximum number of different cities the traveler can visit during one journey if this journey starts in the $i$-th city. -----Examples----- Input 2 6 LRRRLL 3 LRL Output 1 3 2 3 1 3 2 1 4 1 4 -----Note----- None The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import os import sys from io import BytesIO, IOBase import threading from bisect import bisect_left from math import gcd, log, ceil from collections import Counter from pprint import pprint def main(): n = int(input()) s = input() bl = [0] * (n + 1) br = [0] * (n + 1) if s[0] == 'L': bl[1] = 1 for i in range(2, n + 1): if s[i - 1] == 'L': if s[i - 2] == 'R': bl[i] = 2 + bl[i - 2] else: bl[i] = 1 if s[n - 1] == 'R': br[n - 1] = 1 for i in range(n - 2, -1, -1): if s[i] == 'R': if s[i + 1] == 'L': br[i] = 2 + br[i + 2] else: br[i] = 1 ans = [0] * (n + 1) for i in range(n + 1): ans[i] = bl[i] + br[i] + 1 print(*ans) BUFSIZE = 8192 class FastIO(IOBase): newlines = 0 def __init__(self, file): self._fd = file.fileno() self.buffer = BytesIO() self.writable = 'x' in file.mode or 'r' not in file.mode self.write = self.buffer.write if self.writable else None def read(self): while True: b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE)) if not b: break ptr = self.buffer.tell() (self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)) self.newlines = 0 return self.buffer.read() def readline(self): while self.newlines == 0: b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE)) self.newlines = b.count(b'\n') + (not b) ptr = self.buffer.tell() (self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)) self.newlines -= 1 return self.buffer.readline() def flush(self): if self.writable: os.write(self._fd, self.buffer.getvalue()) (self.buffer.truncate(0), self.buffer.seek(0)) class IOWrapper(IOBase): def __init__(self, file): self.buffer = FastIO(file) self.flush = self.buffer.flush self.writable = self.buffer.writable self.write = lambda s: self.buffer.write(s.encode('ascii')) self.read = lambda : self.buffer.read().decode('ascii') self.readline = lambda : self.buffer.readline().decode('ascii') (sys.stdin, sys.stdout) = (IOWrapper(sys.stdin), IOWrapper(sys.stdout)) input = lambda : sys.stdin.readline().rstrip('\r\n') for _ in range(int(input())): main() ```
vfc_143214
{ "difficulty": "medium_hard", "memory_limit": "512 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1476/D", "time_limit": "2 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n6\nLRRRLL\n3\nLRL\n", "output": "1 3 2 3 1 3 2\n1 4 1 4\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/JULY16/problems/CHSGMNTS
Solve the following coding problem using the programming language python: Chef has an array A consisting of N elements. He wants to find number of pairs of non-intersecting segments [a, b] and [c, d] (1 ≤ a ≤ b < c ≤ d ≤ N) such there is no number that occurs in the subarray {Aa, Aa+1, ... , Ab} and {Ac, Ac+1, ... , Ad} simultaneously. Help Chef to find this number. -----Input----- - The first line of the input contains an integer T denoting the number of test cases. The description of T test cases follows. - The first line of each test case contains a single integer N denoting the number of elements in the array. - The second line contains N space-separated integers A1, A2, ..., AN. -----Output----- - For each test case, output a single line containing one integer - number of pairs of non-intersecting segments. -----Constraints----- - 1 ≤ T ≤ 5 - 1 ≤ N ≤ 1000 - 1 ≤ Ai ≤ 109 -----Subtasks-----Subtask 1 (7 points) - 1 ≤ N ≤ 20Subtask 2 (34 points) - 1 ≤ N ≤ 300Subtask 3 (59 points) - Original constraints -----Example----- Input: 2 3 1 2 3 4 1 2 1 2 Output: 5 4 -----Explanation----- Example case 1. All possible variants are correct: {[1, 1], [2, 2]}, {[1, 1], [2, 3]}, {[1, 2], [3, 3]}, {[2, 2], [3, 3]}, {[1,1], [3, 3]}. Example case 2. Correct segments: {[1, 1], [2, 2]}, {[1, 1], [4, 4]}, {[2, 2], [3, 3]}, {[3, 3], [4, 4]}. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t = int(input()) for q in range(t): n = int(input()) x = list(map(int, input().split())) dic = {} dic2 = {} for i in range(n): dic2[x[i]] = 1 if len(dic2) == n: n += 2 print(n * (n - 1) * (n - 2) * (n - 3) / 24) continue counter = 0 for i in range(n - 1): if x[i] in dic: dic[x[i]] += 1 else: dic[x[i]] = 1 for j in range(i, n - 1): if x[j] in dic: dic[x[j]] += 1 else: dic[x[j]] = 1 for p in range(j + 1, n): if x[p] in dic: continue for q in range(p, n): if x[q] in dic: break counter += 1 dic.clear() print(counter) ```
vfc_143218
{ "difficulty": "unknown_difficulty", "memory_limit": null, "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/JULY16/problems/CHSGMNTS", "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "2\n3\n1 2 3\n4\n1 2 1 2\n", "output": "5\n4\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/1506/E
Solve the following coding problem using the programming language python: A permutation is a sequence of $n$ integers from $1$ to $n$, in which all numbers occur exactly once. For example, $[1]$, $[3, 5, 2, 1, 4]$, $[1, 3, 2]$ are permutations, and $[2, 3, 2]$, $[4, 3, 1]$, $[0]$ are not. Polycarp was presented with a permutation $p$ of numbers from $1$ to $n$. However, when Polycarp came home, he noticed that in his pocket, the permutation $p$ had turned into an array $q$ according to the following rule: $q_i = \max(p_1, p_2, \ldots, p_i)$. Now Polycarp wondered what lexicographically minimal and lexicographically maximal permutations could be presented to him. An array $a$ of length $n$ is lexicographically smaller than an array $b$ of length $n$ if there is an index $i$ ($1 \le i \le n$) such that the first $i-1$ elements of arrays $a$ and $b$ are the same, and the $i$-th element of the array $a$ is less than the $i$-th element of the array $b$. For example, the array $a=[1, 3, 2, 3]$ is lexicographically smaller than the array $b=[1, 3, 4, 2]$. For example, if $n=7$ and $p=[3, 2, 4, 1, 7, 5, 6]$, then $q=[3, 3, 4, 4, 7, 7, 7]$ and the following permutations could have been as $p$ initially: $[3, 1, 4, 2, 7, 5, 6]$ (lexicographically minimal permutation); $[3, 1, 4, 2, 7, 6, 5]$; $[3, 2, 4, 1, 7, 5, 6]$; $[3, 2, 4, 1, 7, 6, 5]$ (lexicographically maximum permutation). For a given array $q$, find the lexicographically minimal and lexicographically maximal permutations that could have been originally presented to Polycarp. -----Input----- The first line contains one integer $t$ ($1 \le t \le 10^4$). Then $t$ test cases follow. The first line of each test case contains one integer $n$ ($1 \le n \le 2 \cdot 10^5$). The second line of each test case contains $n$ integers $q_1, q_2, \ldots, q_n$ ($1 \le q_i \le n$). It is guaranteed that the array $q$ was obtained by applying the rule from the statement to some permutation $p$. It is guaranteed that the sum of $n$ over all test cases does not exceed $2 \cdot 10^5$. -----Output----- For each test case, output two lines: on the first line output $n$ integers — lexicographically minimal permutation that could have been originally presented to Polycarp; on the second line print $n$ integers — lexicographically maximal permutation that could have been originally presented to Polycarp; -----Examples----- Input 4 7 3 3 4 4 7 7 7 4 1 2 3 4 7 3 4 5 5 5 7 7 1 1 Output 3 1 4 2 7 5 6 3 2 4 1 7 6 5 1 2 3 4 1 2 3 4 3 4 5 1 2 7 6 3 4 5 2 1 7 6 1 1 -----Note----- None The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python from collections import deque t = int(input()) for i in range(t): och = deque() n = int(input()) d = list(map(int, input().split())) pos = 0 ans = [] for j in d: if j > pos: ans.append(j) for k in range(pos + 1, j): och.append(k) else: ans.append(och.popleft()) pos = j print(*ans) pos = 0 ans = [] for j in d: if j > pos: ans.append(j) for k in range(pos + 1, j): och.append(k) else: ans.append(och.pop()) pos = j print(*ans) ```
vfc_143222
{ "difficulty": "medium", "memory_limit": "256 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/1506/E", "time_limit": "2 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "4\n7\n3 3 4 4 7 7 7\n4\n1 2 3 4\n7\n3 4 5 5 5 7 7\n1\n1\n", "output": "3 1 4 2 7 5 6 \n3 2 4 1 7 6 5 \n1 2 3 4 \n1 2 3 4 \n3 4 5 1 2 7 6 \n3 4 5 2 1 7 6 \n1 \n1 \n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\n7\n3 3 4 4 7 7 7\n4\n1 2 3 4\n7\n3 4 5 5 5 6 7\n1\n1\n", "output": "3 1 4 2 7 5 6\n3 2 4 1 7 6 5\n1 2 3 4\n1 2 3 4\n3 4 5 1 2 6 7\n3 4 5 2 1 6 7\n1\n1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\n7\n3 3 4 4 7 7 7\n4\n1 2 3 4\n7\n2 4 5 5 5 7 7\n1\n1\n", "output": "3 1 4 2 7 5 6\n3 2 4 1 7 6 5\n1 2 3 4\n1 2 3 4\n2 4 5 1 3 7 6\n2 4 5 3 1 7 6\n1\n1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\n7\n3 3 4 4 7 7 7\n4\n1 2 4 4\n7\n3 4 5 5 5 7 7\n1\n1\n", "output": "3 1 4 2 7 5 6\n3 2 4 1 7 6 5\n1 2 4 3\n1 2 4 3\n3 4 5 1 2 7 6\n3 4 5 2 1 7 6\n1\n1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4\n7\n3 3 4 4 7 7 7\n4\n2 2 4 4\n7\n3 4 5 5 5 7 7\n1\n1\n", "output": "3 1 4 2 7 5 6\n3 2 4 1 7 6 5\n2 1 4 3\n2 1 4 3\n3 4 5 1 2 7 6\n3 4 5 2 1 7 6\n1\n1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://www.codechef.com/problems/CONVSTR
Solve the following coding problem using the programming language python: Vivek was quite bored with the lockdown, so he came up with an interesting task. He successfully completed this task and now, he would like you to solve it. You are given two strings $A$ and $B$, each with length $N$. Let's index the characters in each string from $0$ ― for each $i$ ($0 \le i < N$), the $i+1$-th characters of $A$ and $B$ are denoted by $A_i$ and $B_i$ respectively. You should convert $A$ to $B$ by performing operations of the following type: - Choose a subset $S$ of the set $\{0, 1, \ldots, N-1\}$. - Let $c$ be the alphabetically smallest character among $A_x$ for all $x \in S$. - For each $x \in S$, replace $A_x$ by $c$. You should find the smallest necessary number of operations or report that it is impossible to convert $A$ to $B$. If it is possible, you also need to find one way to convert $A$ to $B$ using this smallest number of operations. If there are multiple solutions, you may find any one. -----Input----- - The first line of the input contains a single integer $T$ denoting the number of test cases. The description of $T$ test cases follows. - The first line of each test case contains a single integer $N$. - The second line contains a single string $A$. - The third line contains a single string $B$. -----Output----- For each test case: - If it is impossible to convert $A$ to $B$, print a single line containing the integer $-1$. - Otherwise, first, print a line containing a single integer $K$ ― the minimum number of operations. - Then, print $K$ lines describing the operations. Each of these lines should contain a positive integer $Z$, followed by a space and $Z$ pairwise distinct space-separated integers from the set $\{0, 1, \ldots, N-1\}$ ― the elements of $S$. -----Constraints----- - $1 \le T \le 20$ - $1 \le N \le 10^3$ - $|A| = |B| = N$ - $A$ and $B$ contain only lowercase English letters -----Subtasks----- Subtask #1 (30 points): $B$ contains only characters 'a' and 'b' Subtask #2 (70 points): original constraints -----Example Input----- 3 5 abcab aabab 3 aaa aab 2 de cd -----Example Output----- 2 3 1 2 4 3 0 1 3 -1 -1 -----Explanation----- Example case 1: - First, we can choose $S = (1, 2, 4)$, so the character $c$ is 'b' and the string $A$ after this operation is "abbab". - Then, we choose $S = (0, 1, 3)$, so $c$ is 'a', and $A$ becomes "aabab". - There is no way to convert $A$ to $B$ in only one operation. Example case 2: We can see that it is impossible to convert $A$ to $B$ since $c$ is always 'a'. Example case 3: We can see again that it is impossible to convert $A$ to $B$ since $c$ cannot be 'c'. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python for _ in range(int(input())): N = int(input()) c_str = str(input()) target_str = str(input()) no_match = False for i in range(N): if c_str[i] < target_str[i]: no_match = True break if target_str[i] not in c_str: no_match = True break if no_match: print(-1) else: indices = {char: index for (index, char) in enumerate(c_str)} m_match = {} for i in range(N): if c_str[i] != target_str[i]: if m_match.get(target_str[i]): m_match[target_str[i]].append(str(i)) else: m_match[target_str[i]] = [str(i)] print(len(m_match)) for i in sorted(m_match.keys(), reverse=True): print(len(m_match[i]) + 1, ' '.join(m_match[i]), indices[i]) ```
vfc_143227
{ "difficulty": "medium_hard", "memory_limit": "50000 bytes", "memory_limit_bytes": null, "problem_url": "https://www.codechef.com/problems/CONVSTR", "time_limit": "1 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "3\n5\nabcab\naabab\n3\naaa\naab\n2\nde\ncd\n", "output": "2\n3 1 2 4\n3 0 1 3\n-1\n-1\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: There are N people in a group. The personality of each person is denoted by A[i] from the set A, where A[i] denotes the personality of the ith person. Your task is to find the total persons of different personalities. INPUT: First line contains the total number of test cases T, for each test cases, first line denotes the total number of persons N and second line contains list of N space separated integers denoting the personality of the person. OUTPUT: For each test case, print the result in a single line. Constraints: 1 ≤ T ≤ 100 1 ≤ N ≤ 100000 1 ≤ A[i] ≤ 1000000000 SAMPLE INPUT 1 5 1 2 3 4 5 SAMPLE OUTPUT 5 The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python t=int(input()) i=0 while i < t: n=int(input()) array=list(map(int, input().split())) array.sort() j=0 count=n while j < n-1: if array[j+1]==array[j]: count=count-1 j=j+1 print(count) i=i+1 ```
vfc_143233
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1\n5\n1 2 3 4 5", "output": "5", "type": "stdin_stdout" }, { "fn_name": null, "input": "8\n793\n2009 6911 389 7025 9959 8936 8403 8938 1880 9148 3371 4343 2392 8483 3887 7041 7635 4131 5576 322 7408 3259 1246 2756 9961 2188 2600 3043 6275 1575 4759 2102 8021 7384 8409 5289 9573 7635 1215 9059 1453 7111 7928 4063 2195 74 1434 1793 162 843 6189 6248 9395 7704 7192 4128 4723 3737 1715 6234 6705 8729 1415 6807 1769 8438 7636 8389 7732 3320 5890 7672 8463 965 8219 5687 2984 7738 9728 7766 997 172 6362 8852 4202 2843 7685 6555 8805 2298 2098 5060 5005 3460 363 4424 6391 5650 7891 5186 9531 1559 5551 9789 3944 7332 8463 7011 6286 7659 7535 2290 4438 2222 5831 533 5349 2660 1050 4678 5804 5641 6298 1841 7427 4110 4826 2662 1928 3532 7666 7340 8610 1723 4480 5802 8365 2041 2911 3855 937 9786 1823 3913 2600 1626 2908 379 2600 9455 8161 6981 8162 995 373 5542 4663 6963 3403 8737 5494 5208 5970 6544 7293 6153 518 3206 8041 4080 9048 8369 9943 5644 6784 1274 90 7878 2244 3834 8806 1099 7935 1876 6187 7594 76 8961 7683 5006 3782 8931 649 9314 7757 2658 4485 1718 2323 7197 4489 3937 6099 2491 9812 2791 1965 85 7400 9259 6568 3232 6774 9523 1255 1284 9740 2105 5329 156 3575 5146 9260 9208 4233 5442 1399 2029 3839 9295 8332 862 8671 5785 4408 7391 9957 50 3211 2256 6801 1820 4822 9738 6427 2182 7317 4716 351 598 1553 6758 7618 7491 1415 6496 2156 1472 6277 9884 6388 9794 1206 6568 5408 9416 2346 5603 6467 9579 832 6527 3592 503 118 8997 6520 4058 7073 9252 8332 3247 568 2041 9814 9117 3475 8345 4 9702 1966 6354 8253 443 9174 1242 9154 5403 4738 8756 8429 8887 5075 4097 5555 1198 7336 7311 5332 8758 937 8851 9650 1914 3921 6903 1002 4176 2122 5091 9144 9862 1618 5334 1836 2014 7473 4444 5327 5508 3432 7421 6217 5536 1733 2773 9382 4488 8291 9045 5213 774 4537 3450 3520 2411 7414 8799 632 8788 5944 58 2593 9232 205 6041 2740 7843 4278 6343 4973 8636 998 5189 5273 3738 1527 9276 6469 3646 1126 4103 2418 5053 2601 161 9800 8899 5430 7992 5884 2237 1166 2610 7019 542 2205 9065 2135 4923 3380 8760 6845 6114 5391 6328 9694 4096 5973 6258 1166 4479 5957 5427 3584 7263 8364 7793 4344 9794 9869 6770 7814 8864 876 5187 7156 1813 3202 3453 4748 3283 4687 8792 7024 5696 3396 7809 1360 6204 2172 5933 4607 6419 4256 8839 2114 4294 3595 8059 5911 3510 1427 2063 9595 8611 6039 8173 9502 7095 8236 2386 8730 2984 4738 6251 6873 8947 3765 1142 5149 438 4587 5336 4208 9990 1712 5708 388 2327 3922 5398 6586 1107 4699 3126 6983 5663 8727 672 6223 9707 7792 354 638 1699 8242 8631 7502 5139 5370 1269 2885 7484 8434 3946 8498 9772 708 855 545 5631 5323 6926 6443 2982 5269 4597 4260 8401 2110 9094 4192 2365 3992 3522 9546 6341 7932 2115 8872 6349 733 2621 8649 3077 9025 3364 8067 767 5936 6395 3949 2167 8086 2081 7161 9904 3189 7617 2571 9283 2014 7278 6513 1350 7660 619 1267 3998 8418 6528 4921 4270 272 5942 9565 9737 3722 1738 4728 3632 1341 4043 6852 3820 6682 2666 4167 1525 7242 4712 3185 4774 789 2250 6358 8338 6905 6313 4828 6939 8352 3021 3988 9743 4656 601 3739 8986 4882 2211 5135 5952 3904 9462 3819 4706 7817 3306 3965 4632 3993 5529 885 74 6777 9854 1028 254 8165 6630 8656 9795 8955 4638 8292 7497 9141 9964 4899 8992 8754 8194 2249 6918 4699 8944 2888 9916 154 6827 3195 4395 6615 7834 9587 7987 5901 3979 6909 9189 7120 7817 1561 1268 5889 4660 3722 4656 880 9958 562 2679 3536 6758 804 3188 3714 358 7700 916 7709 2134 1826 3916 2506 8196 744 3314 5491 2941 9505 3317 2292 6257 9089 5754 1416 9491 987 8017 3995 2523 6994 6218 58 2190 3811 2376 9572 18 9253 6182 205 6337 5553 4174 9317 7644 7810 6545 9755 7572 6522 5176 3673 6772 2210 253 6940 3751 2084 5370 2079 7628 8516 8042 1340 6667 2870 6620 4238 7517 1073 9690 556 3858 1189 9079 6677 742 8777 206 2680 2755 6455 7667 9783 2153 7951 9556 6131 5876 6829 3377 2004 6728 6188 6142 4870 4669 9494 8420 6349 2969 5343 1360 6604 9298 6616 5430 4761 1164 4325 2490 2624 4762 7504 5059 511 6260 23 1312 1763 9407 9195 6134 2723 8489 6030 1812 2175 6628 4085 7237 3083 5576 9029 5594 2718 9559 2701 \n4558\n4032 6060 9814 7462 2439 8022 1871 3823 4317 2823 1831 1586 1612 6275 6250 625 5903 831 7965 9463 83 6664 7199 1240 4654 2409 8010 1298 2741 2734 6784 6946 3135 2304 3753 3612 5174 1764 3212 4909 4953 9701 7309 7586 2056 383 6386 4211 7921 6951 926 4530 5130 5404 4913 8874 8227 3321 5789 8368 4546 6159 8322 6253 5026 9380 3956 4716 9626 3458 352 9299 8691 2687 4138 7194 3620 568 1431 2200 2129 7762 7151 8329 5637 6255 4636 1349 8469 7743 2992 3303 8638 5849 1953 8554 5133 5408 7245 8021 519 5522 6057 6119 541 2242 6116 585 6298 7103 6305 8541 3057 9349 732 2968 4850 9783 3578 7142 5246 7928 3535 9752 5207 9529 3327 7047 1452 1805 6194 6106 8187 9906 6495 7366 5827 9517 917 6538 7793 606 7987 7734 7233 7631 5243 3462 8214 4250 8223 39 9700 5194 4318 7529 1002 6911 787 2019 2817 9427 7814 740 4752 7680 7801 7686 9845 2173 6921 3352 2729 7946 8615 1814 1253 8803 9200 8681 2294 452 6804 747 1511 3840 9873 5643 3058 2192 6865 2478 6833 4701 1256 9355 7174 3257 5871 7978 8559 8303 8835 110 4943 9405 557 2122 763 9810 2746 6517 4303 7007 8619 4419 5352 9261 9553 5088 3624 3472 4828 6556 7746 2850 4269 6587 8069 9736 3026 7383 7411 7126 1629 6726 9681 1523 9861 8323 3649 472 8547 9638 7478 5645 1448 4458 4761 5492 9086 106 9697 3735 3732 9086 9182 6478 6467 9007 1079 7789 9876 6306 8505 375 3477 6332 2693 8235 4323 6525 6835 2304 3900 328 2408 3686 7789 9189 9997 1386 9165 8026 3502 9332 5570 5265 1243 2678 5235 4056 3516 2785 7163 4482 5804 1259 163 3373 3461 2169 2218 2725 2665 1782 2470 7321 4408 4925 3845 2831 8570 4887 1873 2544 1750 7269 3313 725 7935 2583 7148 7857 4542 1239 1528 6607 9793 7656 5907 1375 4805 1059 2073 4928 9583 3921 1726 5461 8270 1723 9079 7474 9031 6052 6561 8297 9855 574 7431 7629 2434 5064 1854 804 9944 5539 9772 982 6396 3318 6325 941 7164 4611 381 2098 8474 6646 4907 6059 9228 5285 3959 3719 8567 9412 2388 1385 3477 9680 3825 5588 8928 2527 6046 2871 4145 7294 1865 5606 3424 9301 6345 8457 3708 6504 1454 9839 9382 2758 9416 5382 3749 9386 7900 1805 1045 7541 3056 5438 1349 5324 6896 9537 8400 8040 9374 7037 8572 2590 5787 9522 2809 8350 3944 1781 9302 1104 5943 496 7334 2540 6426 8364 5680 1162 3464 964 7644 7651 5230 9056 2553 265 2832 3976 2411 8674 1103 795 7605 7022 7561 1983 2700 2517 2324 3176 3257 6324 410 2318 9457 445 3906 6362 9637 8996 9085 1817 1581 259 7682 5433 2493 3121 6520 8152 523 4978 9764 3863 7103 7073 150 748 3860 2453 4680 8037 5181 4400 118 6630 1417 1396 6727 5828 4483 9901 6304 3654 2583 1097 7484 3356 7347 6384 3761 1737 7099 3422 1606 7553 5953 9192 7746 266 8341 7192 3314 6503 9368 8366 8110 485 6467 8921 9429 4222 9596 7234 6883 5307 1475 6489 9154 6315 160 9887 5383 6385 250 1151 773 4972 7693 4502 3246 6288 1865 4668 5792 8326 604 6279 653 6851 6477 252 3664 2870 8221 2014 4996 4252 3388 1478 2994 6196 364 3903 6069 9292 2160 6989 6025 3265 638 9486 8049 2165 6551 5359 5711 3888 3511 3397 8176 2253 7184 5692 9430 5921 2370 7211 7231 8816 340 7305 668 7536 3188 8154 6648 5701 4720 904 2550 28 3872 7640 8112 8700 5802 3039 2205 7136 7237 4572 244 5667 2288 9130 2395 8723 2248 1584 9426 939 4903 7144 826 6352 7258 1350 2769 9066 2034 1272 3149 3312 7632 5223 8594 5882 5233 6190 9087 8452 669 8660 1343 1985 5711 6023 9130 9740 8925 9064 8933 9643 1677 880 682 9226 9633 2812 6123 6134 5219 5196 1263 9450 4294 1131 198 7347 1162 9514 8589 453 101 8758 6628 7278 3754 9003 6411 919 1741 4443 3482 3765 3003 7636 5233 8530 4339 8498 1513 728 3032 3478 675 7734 1669 8280 2880 2879 768 9367 2702 2886 6784 4187 1990 3436 9098 3645 4461 7024 8266 1185 2571 3544 5289 3985 3138 8100 8641 2650 1429 364 4595 3873 6688 4183 8878 8734 7638 8267 4717 2811 4515 6984 2273 6361 7159 7080 8153 9976 6918 4906 7933 6877 6725 3096 2613 1834 797 1866 7923 5065 7570 2540 2086 8107 2880 5656 1238 8219 1096 668 3301 5099 781 7407 8361 7210 9903 4214 7909 3645 6022 815 4708 9161 7132 8519 7263 595 2161 6848 4472 7133 5314 4946 2699 1236 7746 5869 3801 2365 8908 2038 6572 4995 2821 5747 1058 1547 1120 3778 1194 2147 2212 3572 7457 1766 8728 6982 7475 2892 7441 1060 361 3797 2409 6832 5271 5460 7209 7349 6686 4378 332 9981 6852 2441 4321 8963 6715 5417 9841 5959 3311 560 1279 1765 8511 1949 7427 6176 4203 8645 207 2113 4556 9093 7005 1697 9995 9324 5849 9951 2206 8356 9652 7742 4687 4515 5787 1892 6379 1452 2787 6949 7637 5956 5291 8529 7902 3999 1473 2738 7611 6634 8806 7166 5970 1138 7663 6756 6737 3694 3212 8637 5497 9187 2898 1092 9159 8558 4969 4946 1056 6374 9754 6834 6080 5068 5545 8321 8088 8529 3546 5556 2755 872 3407 4154 6620 8021 3028 6343 7874 5743 8935 984 632 1986 2524 3036 9377 8208 8924 5043 8136 5728 589 1483 4172 6493 3958 9111 2981 9888 146 3841 7042 8968 417 9529 9889 9350 5848 3504 920 3199 6058 476 8206 534 9036 4787 8575 5446 1489 9511 531 7362 9906 8653 1656 2882 9240 2102 6378 2570 4345 2267 614 6040 1850 6880 2800 1050 5521 9855 6409 5205 5371 6164 3069 3097 12 3507 5877 5409 4253 9284 7408 3425 5605 8290 5823 5155 4256 9207 5472 9124 9772 353 4513 3619 6824 1199 1677 2297 6025 8190 2061 679 2013 5693 5975 7193 7790 8860 3989 7471 1835 1947 1485 8954 4679 5336 7467 2827 3893 316 8325 5682 11 6207 2614 3279 3894 4048 8009 5919 399 3804 6465 1801 9949 3095 3521 6401 2199 2229 6389 6646 9131 7612 2357 6865 6568 1733 8837 6007 7123 5759 3650 3079 9129 7513 1853 4153 3623 826 3185 1399 4857 9388 4589 1732 2314 9447 7071 1595 3188 2420 1560 4792 6792 6514 7975 7951 7605 454 5968 8500 7105 6606 5077 5780 5905 1336 6922 4381 5333 4561 1445 7309 5522 8694 2725 7491 2416 1546 1591 1975 5779 550 687 6282 8574 5926 8327 816 263 3917 6275 8282 2805 861 4425 6143 6861 8238 1760 2301 5530 2016 332 948 8534 388 6833 3577 6941 6962 8999 5300 2209 8517 1399 3470 6065 8554 9785 401 2291 8878 1501 1359 5487 5499 2503 3567 344 6973 764 5505 9267 9146 5287 5171 3266 4369 230 8207 5741 2490 5503 2177 9217 8803 828 6381 5530 109 4847 3074 580 1313 9987 8361 2929 3329 6549 7064 5574 7351 6252 7 100 1244 9493 5346 4430 6721 45 4215 5357 6315 6669 2627 9494 6943 783 9711 3881 373 4148 2676 1938 9828 2475 4233 8077 742 6632 6890 7312 4534 4360 3420 5867 5244 2310 2804 4409 8937 3885 406 2770 7871 3536 3831 8299 2393 8393 332 3694 1299 7306 7742 4741 2984 8104 8627 7944 2524 8013 4547 2604 166 9691 29 474 2456 6240 9618 5788 889 4387 771 6152 7968 9693 4877 6647 1087 4367 9884 9803 3187 4129 4321 5721 4538 9091 9837 6285 8155 6943 3184 3423 6066 3762 1713 408 7783 4702 6348 3930 5869 3941 3359 411 6737 7128 7146 3200 8157 9473 6274 2728 7932 6880 988 8318 8935 4389 3631 1325 3160 6374 136 6388 711 6654 2029 7460 9963 102 2653 6726 7698 2516 4152 7411 7505 5306 7826 5421 1373 1268 8563 10000 8925 6951 4221 7281 9559 2102 5609 2608 7523 7366 8239 1629 8062 7614 7827 1927 2256 1742 1403 9930 710 4232 2278 365 660 7832 5738 5156 6469 2355 4648 1025 8205 9920 623 1286 1106 4 6911 1157 9059 9382 5025 4448 3146 4676 7630 6259 8880 5090 4027 5927 8148 4047 1474 5420 1273 350 4410 8396 3804 1557 2208 3240 3221 7303 4432 240 2861 6744 2164 3183 2038 4619 702 3420 4515 8780 1822 5992 7215 3000 2527 9536 8539 9200 1318 8206 6536 5074 4992 692 1799 4507 3833 4348 9340 2690 4561 7485 6520 1298 6883 8621 8712 989 7488 4026 5666 4246 4907 4473 8488 8829 9061 7901 4080 7149 4456 2210 4965 4712 391 1467 1535 59 6124 3263 601 7514 1921 1991 9227 417 9479 9837 1022 5492 8867 6552 7152 8154 7264 9877 2686 6049 6253 3074 9116 3129 2550 2882 2023 9828 7734 6751 8004 8881 9072 5854 7007 9967 1276 9907 2349 9736 8988 1155 5371 5884 3492 8563 3569 6943 3898 9515 2643 43 9110 7865 6758 6400 9414 1278 10 8077 2867 6053 3950 9863 3623 8637 9432 3251 6799 6531 135 776 4240 1547 5115 7691 9547 3229 4748 7061 2163 8050 5012 6447 5958 7004 1409 8615 5759 5470 3776 8623 1036 8262 2022 3585 3218 1459 9282 9384 7192 2824 5919 6934 6275 3620 2211 1307 919 4426 4884 7067 5757 3908 2241 4191 7621 1126 2026 1432 6962 8378 4845 950 7138 5856 9823 7869 4685 6054 6479 244 774 4585 4171 4443 9774 4172 6489 5934 8771 3355 2135 7653 8100 4908 2879 8960 4166 6020 3023 3953 7251 6915 7996 2072 1724 4476 989 1487 587 8773 9912 9631 4640 3208 2617 8818 3091 4130 2503 9893 4448 7418 3691 5905 8078 1577 2360 3535 576 4601 4518 7703 7270 6881 4914 2777 8169 298 4223 9689 4930 45 8059 7071 5717 5722 4163 5465 5950 8751 7902 9389 5438 9700 5351 7933 6817 1266 8343 4588 1240 772 9919 2558 3377 3267 4804 1645 7846 2687 8173 3224 12 8046 2616 6133 2518 1114 5585 5959 6797 6538 9325 6542 3446 1441 6731 4654 9966 2387 7449 7600 5694 9688 1772 4983 2328 8182 2896 739 5259 3542 9649 3967 9247 1920 9045 8078 4051 6218 7542 9197 403 8593 1893 1443 1141 6601 9837 4360 3651 385 1331 5871 9799 5993 5241 5777 4365 4473 7919 3369 183 1270 3529 2299 6092 5056 8462 8477 4883 8595 4010 8712 4012 3811 7949 8232 7767 2036 5036 5837 6821 6263 942 4063 2130 4807 4938 4905 5094 6482 6893 4341 1406 9357 6965 5186 8621 369 1981 3078 9594 8049 8960 9441 3746 7603 1057 6344 4636 9688 2595 5742 6033 3738 9531 3477 4036 7177 385 7473 5379 1309 325 3376 1209 8763 9989 6377 3400 1407 1620 2358 1265 7231 7332 7182 2853 323 7067 9011 6936 7794 7179 8078 3906 5704 446 9746 5594 2419 168 9573 7308 2732 2280 2991 5209 9950 7554 2366 4768 4177 7690 7689 3637 1081 7214 4770 8015 7762 4615 4954 5371 9999 5258 6227 1962 4220 2873 2518 7164 6633 2618 7446 2201 7866 7800 5313 5925 4545 6064 5713 7301 5698 156 2370 3608 9854 8495 2823 3861 6935 5300 2314 6061 8202 8115 8275 1996 2285 6430 3622 7556 8178 6187 9777 5898 2714 5467 6820 2402 1466 7612 9447 5512 8620 3265 4234 426 8340 2704 4889 6765 1110 5070 5535 2665 1005 4410 7754 2368 7797 5558 3496 2226 20 9947 4504 9932 7264 2126 8670 9691 7090 1363 9344 162 1704 7245 4769 2409 1616 6942 3889 9857 1460 9367 8910 5812 6280 3004 7116 5854 8384 613 1076 1697 3549 6857 3171 4485 4114 9559 9068 5931 704 3478 7997 9247 5087 7598 297 367 4946 2459 540 1341 6252 5005 9220 6560 6265 5977 7724 7796 9243 3969 5074 4542 4829 2778 4978 2078 5793 9360 9611 6386 1120 2990 899 7232 8334 5779 8879 3233 1317 1930 1442 6824 3538 3362 6442 3243 227 8580 8919 633 6117 2599 1033 9743 9962 8874 8895 2187 1982 2959 6453 5005 6772 2252 3201 7667 2792 7473 3105 1652 2987 780 6496 2880 2102 8488 9202 886 3329 8348 9404 1808 5485 9368 8435 2050 5918 3206 1561 6622 1931 439 8407 9226 8913 5604 3467 8432 8502 4655 1780 7079 6896 8201 5834 2240 4335 2351 5622 9105 5148 2360 271 6005 5461 6508 7555 2349 851 8188 2499 7997 6452 9915 2858 4123 1231 93 9048 5838 3080 5053 3661 9997 6011 5573 1621 854 7113 3632 9089 372 2649 3794 3050 7645 1973 6654 76 3616 1698 9087 445 2162 9330 2820 5377 333 1014 8048 5694 1992 5402 9019 2686 1027 1530 9237 3419 79 5829 944 8660 7812 6524 5642 1145 4725 6416 1173 7834 6860 7073 110 5499 800 8875 9519 5688 1054 1837 53 7951 3582 9477 6302 3716 6055 7735 5541 9352 9866 9461 4301 8382 8611 541 6036 5483 7267 3937 6017 2102 3386 4728 3761 7309 3008 7469 3610 1312 8921 1521 814 1977 9952 7948 1818 2720 3054 4916 3306 6831 4272 527 1987 794 9974 7130 2166 8531 838 7263 8723 4796 3684 4223 9934 6493 8129 8032 2079 3040 3951 1445 8057 1109 5071 897 1285 3241 4982 8146 543 5109 7851 2809 5174 6728 1036 6669 8542 1174 4815 2717 2584 2226 6162 434 4325 9379 2786 9060 6815 3003 8878 4449 7 6090 997 4547 5459 4059 2382 2461 6566 2047 6519 9926 2628 2290 7755 6704 106 2103 9481 3256 9601 5436 8789 8864 4026 3133 3733 5799 4400 7976 9104 6921 268 797 4739 4121 1513 859 1095 9826 4537 602 536 9613 8849 7220 8161 3931 5673 9706 9601 7675 8447 9542 5568 2252 9514 4080 4483 7716 491 7952 2341 2659 2742 7004 5580 3333 4033 6250 6569 1664 5382 1941 8389 9758 1882 3097 7069 3403 3282 9707 5432 4935 9451 7962 1441 1290 2872 6007 5585 8294 2581 2688 9427 188 5589 7181 799 7415 5254 7727 8542 3897 2429 9340 2698 3613 768 6389 7727 5703 2139 3122 2660 9518 7182 6817 8660 7707 1553 7213 8923 2244 8494 869 1325 4005 5974 5337 739 2414 8611 7696 4154 3608 3897 2549 521 8639 7657 6745 1080 993 8401 4176 8909 7821 1655 6812 4111 7033 558 552 3542 8220 6908 7951 7777 2917 3024 3763 5793 6530 9089 5335 6043 5843 2515 5382 3718 4429 3348 2245 1465 7146 6918 6989 9255 4184 6655 9041 7 4381 7066 1779 4068 4446 6462 6612 671 4867 1291 333 7361 5439 690 5125 6074 2280 4155 8340 3396 7289 3150 3162 7768 4313 9642 3549 3296 9590 7176 9657 9460 2689 5092 3598 6389 8198 7170 4232 6978 6718 3038 2603 288 5206 465 6156 2361 8485 2036 2674 5651 6379 4016 2921 6193 2804 1514 2704 952 8478 1379 7224 6979 477 8803 1590 618 3743 6453 8624 633 2165 3427 1698 3265 4876 1271 2439 2939 6712 2609 1372 9812 9228 2112 7582 3457 8682 7995 3597 9958 926 1809 8090 8516 3515 1475 6315 3552 1240 7099 8897 9396 7726 2125 197 9429 5714 6851 9826 6374 3927 6198 8175 3954 3825 3622 1439 3913 8536 8036 2025 6636 8722 6474 3849 9098 978 8173 793 3693 2896 8524 4581 2787 4281 9261 7661 7169 934 3521 9880 4006 3958 2796 1201 2337 9125 8503 4442 4552 4311 6787 6361 3177 8268 3876 4268 4241 3729 7921 4082 2384 6087 3810 1629 5437 1619 9088 1596 5097 3657 8708 7463 9716 5227 171 2632 7517 3594 5340 8018 8158 822 2632 2451 6937 2940 6727 5571 7887 6129 4905 6795 8360 1328 9014 7640 6743 9260 6870 5303 8974 3262 7046 8759 8459 4975 6109 7430 6689 2223 399 268 7611 9686 8836 2142 1172 1162 1969 6727 5337 246 2843 2465 9293 6921 1195 2687 1693 9940 4694 3939 5632 2271 7035 1646 8701 9950 4074 1282 3823 8772 6951 2812 4093 5095 2184 6918 4495 1591 2000 4271 8027 8718 5970 2059 5774 6065 9790 3502 6429 6750 5930 2429 5115 308 7675 7161 1306 5170 1599 3058 8846 8229 1947 1222 341 3326 7816 6322 7115 8942 6329 1613 5948 851 1364 2211 1178 343 6638 3634 1900 5412 5306 4688 6823 2560 972 3989 9855 7961 3023 2869 9522 8859 6735 5019 5458 3346 7124 8577 8811 9769 9341 6401 6171 9794 2693 4092 158 4525 2697 3920 4229 2322 3789 3660 191 1181 8303 2958 7098 7066 520 5016 8143 8700 7522 1459 756 2600 1973 7174 7521 3285 9647 9534 8955 7936 5353 6577 1970 3750 5852 3468 9087 3245 241 4218 1785 8050 7914 6486 2321 316 2511 5467 9191 9576 5766 9662 9647 7897 2406 5465 4936 6668 7370 3163 4769 4525 7857 22 861 1766 4656 6349 3715 534 220 9471 1157 2753 1365 5879 5741 2392 4805 6359 5962 5055 5731 2773 698 6679 9649 7797 4586 6592 4135 6895 1059 3170 4518 9138 5611 2728 6791 2402 545 1531 2081 8438 7562 3248 3491 518 4048 2517 1286 1435 6614 7387 4006 6618 4897 9036 5781 9944 8731 1836 1026 367 1599 3663 4614 7675 4166 9535 3364 9333 8843 55 523 1720 8425 2465 2152 2660 2155 4306 4067 5627 6128 4989 8698 1157 6081 6384 4777 1048 7418 6953 200 9438 8866 1659 1606 7285 1629 3535 6412 64 262 1185 7033 6422 3193 4601 3316 1097 750 7052 9889 8464 2573 6173 7166 2635 4387 810 8278 5886 6229 215 2819 5868 4285 1454 7180 6765 6692 2798 8923 8390 6488 6819 9621 5371 3995 580 5608 2751 8148 3642 296 1254 2078 9531 437 3039 4742 8580 773 1471 8794 1761 1843 6718 1995 2514 162 3897 3287 7353 4954 9281 2360 9517 8333 2409 8882 5981 7086 6483 5852 189 7491 6886 2360 5543 5660 6073 209 758 398 3000 530 7621 5671 7853 9064 5565 9054 450 9658 2128 5417 837 9503 8465 1282 8760 4466 7306 4894 8003 8644 4120 4474 2709 5930 8340 9459 461 2444 1101 6698 6686 1225 7749 4418 7033 4962 9619 9205 6065 6694 996 3774 4008 5436 3344 722 7031 8553 9966 8181 5467 2125 1265 4621 5528 5877 9152 5835 2996 8866 6048 8863 832 7909 9953 1323 4654 3990 5840 7217 9684 9844 7532 8158 3193 9881 514 9401 5841 9416 3646 3739 9839 3913 875 1228 9030 7639 2573 1103 6122 9531 1320 8552 7029 4587 5824 588 9432 4046 6632 4688 6299 2505 7073 9860 2020 6353 4523 655 4031 550 8909 9115 3177 8854 9321 866 6545 5920 9648 3430 7435 2694 6242 9522 5344 2671 9439 7034 2695 6423 5669 8205 7876 8812 2188 4219 9612 8318 1772 2895 4966 8258 1735 2426 5879 4780 2210 6357 4224 6171 168 433 7313 6284 1694 768 6280 5219 4337 1405 7593 4862 7297 278 8269 6635 8776 9876 9164 7862 6157 5887 3171 437 921 8993 4593 8429 5320 153 554 409 9817 1926 5923 1146 5526 1889 9356 9314 6486 4303 8914 3293 6780 1595 1753 9175 9020 7189 7322 3334 2370 1153 8218 4920 7851 6999 936 3031 4813 8598 5653 4094 6195 6736 6357 5701 9738 9293 4981 1063 6769 7115 6553 5712 5812 7282 7617 8501 8583 8494 2985 2833 2840 9788 3369 3898 6149 1942 9871 1687 9430 6652 2497 2812 1219 2491 5077 5585 1873 9973 9361 7863 9738 7033 6191 6855 3862 4924 7499 947 1908 7237 5637 638 4529 2531 5407 8897 1877 8760 2827 9814 1301 1274 8187 3935 4679 1980 5817 6158 7175 6569 4541 6813 4233 4177 367 9544 2245 7137 3370 3873 2573 9952 4907 5511 9534 5261 1089 1874 3561 3369 5881 444 3511 1333 5915 157 5646 4058 165 9965 4760 3900 8518 7135 7774 7705 249 3909 4716 37 5339 1619 735 3784 8248 2377 5072 7115 1592 5668 5645 7145 7363 6694 8108 9945 2206 5670 8093 2722 7478 2069 8845 618 3263 9724 7778 4587 8209 1009 1047 577 1209 5123 2355 4257 1604 4968 8014 6917 4433 4810 2833 1722 5575 9030 2421 5105 3351 4431 1012 5738 8267 3232 1337 17 3055 2352 8878 6677 9355 9931 7863 4753 3147 7414 8053 8905 3100 4995 4718 8747 2463 802 7145 1265 8287 2282 5877 4656 7218 4063 1472 3344 928 9654 3924 8273 6095 1805 6274 6866 3962 1029 2572 9391 6448 8741 8810 1547 9280 609 6644 3779 4567 9213 5374 4624 5386 4699 3467 597 6074 9158 2533 9813 4714 139 9079 8501 9000 7889 8351 3575 2644 2116 8459 3807 6686 9082 9662 5083 2786 1017 8588 5252 7781 9001 9558 1897 5730 209 4780 4652 3600 9498 4253 9454 6193 3603 7192 3439 2200 5363 8900 8963 2164 155 2525 2190 2391 2745 8076 8164 5150 6384 6687 7453 9462 638 4325 357 4721 9735 1028 6891 9147 3227 2518 4730 6511 4975 414 4058 9130 4107 5909 6862 2610 7204 7683 4320 4859 6204 9339 5753 7977 4684 9201 3017 9585 2229 9969 4213 2901 1549 8893 6342 5049 8884 6998 1432 4921 3534 5766 9464 6791 1729 1542 944 709 8308 8395 5189 2597 1220 1869 8702 1045 4707 3812 6486 6379 2519 2564 5075 1392 6557 2515 7124 6458 8769 948 5860 1047 9984 264 6504 2991 1596 572 7784 1671 5479 7874 7152 4561 1727 5427 4598 854 6027 2319 9281 4883 6688 9250 8637 3317 1119 6199 1949 7847 7651 2620 1450 7798 425 9856 9750 7101 7568 3112 7725 4607 4223 5050 5791 4929 2635 4129 256 7122 1445 64 877 207 5569 9890 2782 7405 9465 6206 8079 8602 4232 4877 7830 8037 5926 4374 1786 345 2474 1105 2002 6049 1196 171 8307 823 6164 7045 878 2209 7280 8681 5345 7323 921 5265 4289 3005 6843 8962 8002 9355 6487 3047 2859 7218 5278 5016 1728 7058 5322 5890 8844 4155 6208 4720 8525 7722 7344 6889 659 6857 8631 9770 66 3848 2002 8623 6658 372 7808 8920 7059 7550 9578 7108 9874 5814 2044 8886 9318 5421 4454 252 252 1271 2010 3148 243 6342 7487 3887 1213 5190 9136 7473 1040 7016 185 470 7077 714 2376 8036 7892 8603 6378 6493 152 1989 5255 585 682 1030 1183 9035 2644 133 6529 1434 5273 387 6983 3321 1519 1174 6168 6102 8385 9828 980 6469 6524 4794 2378 2933 4817 161 8093 8370 7701 2564 3038 3355 3187 8617 3830 9554 5512 9954 7923 7106 2744 4425 4659 4757 768 8975 853 9270 4851 3500 4435 3359 1418 1319 7782 7377 6877 5933 2775 5453 9595 3172 6966 6253 9593 6311 9714 4026 4919 3767 9312 628 7074 5608 8280 9055 1879 5768 7833 2211 8125 7565 9869 8009 8723 7625 7751 7892 7282 5173 3511 6505 2186 7376 5516 3965 196 4899 5569 7239 105 4952 3215 2387 4173 9856 6472 8485 8273 2907 7856 6007 8632 7823 1648 2738 3959 5311 5708 4740 8789 962 905 8475 6768 6009 1373 3711 221 6406 9301 156 7340 3937 3140 6442 3207 6250 466 9686 3691 3300 6624 8017 3835 9999 9013 1313 9863 6361 5617 6577 394 515 2911 4027 1980 6790 2379 8237 7083 394 1878 1376 2827 6287 6603 190 5646 9124 4614 1740 5590 6840 7678 4301 501 2836 6919 5386 2317 1045 3916 3902 7011 5510 6608 2879 9573 2122 8584 8289 278 20 5975 4412 4027 9775 3321 6146 3761 8382 8271 8706 9758 7256 5680 8443 622 2212 8112 7460 5288 2605 8589 4385 2176 3057 5197 8735 6892 9229 3773 2811 2772 3943 7836 2096 4443 3254 3889 9880 6833 3624 3153 6932 5547 5856 8444 1105 2065 9746 4429 9778 5866 9583 9532 7142 6869 3037 9163 1965 1644 4558 4287 5283 944 9090 2430 5213 1758 3187 8681 6141 4558 1899 7460 9806 1865 5885 4356 1466 1273 5523 2427 4736 7901 8368 9783 940 5575 2265 4864 3043 4189 2811 3742 5477 6043 2264 4978 711 3506 7930 6925 3633 176 4107 1450 6278 3497 6757 8892 1570 108 9641 5403 6441 383 1814 5131 2764 3741 7913 331 89 5784 3816 3537 8220 4625 6788 7758 3709 4056 9834 1842 7998 7266 1125 3060 5435 1805 5624 2671 5725 6940 6385 6400 3128 9953 6426 5248 9092 6680 7624 3048 1182 7022 8913 943 6285 9727 785 1124 7568 9583 5542 6703 4601 4325 1125 786 2175 386 756 123 9852 2561 5409 4791 8463 5373 8058 9967 574 817 1104 3802 2092 9206 3700 4696 9633 761 8015 961 5529 4521 1585 7452 7040 8052 6273 252 7163 1508 4697 7552 3044 7244 5543 9315 7892 7608 6496 6037 942 5679 6036 4478 5491 6851 4385 8192 2523 3348 4505 1360 5192 3798 6358 5900 9519 8081 6192 5475 5200 1161 4521 3816 3927 3143 8649 3577 529 3127 6202 5032 3852 8850 2502 9614 2644 8578 687 765 5489 9660 5301 273 2448 1184 1141 211 183 9394 9083 5554 8758 8797 7455 4903 5721 8509 7717 7325 4781 179 8664 2257 1956 6856 9461 3763 4171 5408 6027 2336 116 1785 2119 6694 8397 5289 3889 7911 4250 4206 1683 1777 1648 5863 9956 187 9667 3763 7781 8720 1163 5272 122 5206 5622 3297 7272 6034 2009 6294 9739 7054 1709 2264 8187 9689 4862 2579 8700 4610 3288 8205 3538 451 3468 5909 8463 2634 4130 792 655 8453 6730 2261 5938 7069 3494 7404 1642 426 3718 2607 770 6490 785 8387 7984 3255 4732 1836 6891 4662 2354 1401 4695 1559 4389 9803 871 3774 5544 3858 6775 3105 2084 3773 4842 969 2036 5569 7328 1254 8337 913 9246 6507 3711 6603 7686 4529 4972 3453 4914 2657 5021 7 9362 126 3373 3470 7517 2936 1653 1192 6784 8736 1558 9638 6747 4729 1004 1102 5159 2034 5424 2204 4648 7044 7783 9089 7973 440 7489 2051 7178 9973 9132 2707 6467 1016 1428 7978 2768 7701 33 710 2655 3569 5800 4339 8443 4081 9212 5000 9586 2857 7236 7381 6333 1853 938 776 2311 9582 4217 9440 5992 7342 9583 3071 3982 1763 623 1162 2414 3178 5610 6045 602 5904 9689 9131 5682 3259 7531 5851 3726 1605 5326 2031 1760 5102 2458 1642 5996 9899 1888 6911 8413 6713 9887 8758 5168 9794 4076 2138 3690 2551 256 8240 8641 5880 6604 6197 5986 9869 4465 672 4216 6777 2295 5090 8998 1276 890 5421 8001 7252 2036 9413 9784 3629 2162 2899 6015 9149 7535 2665 2498 2785 2665 5234 9005 7673 3108 1386 4754 590 7846 5633 6075 339 7304 6879 8185 7546 9161 2099 2800 1855 4542 1533 8939 9448 7471 1083 2367 2220 8296 9718 506 4983 5308 571 8433 6133 3072 4511 2626 6446 6945 618 9618 5020 6260 2849 9434 7744 2822 6417 3422 6349 1334 7270 5946 6922 9932 3570 8983 8820 328 1026 2227 9693 5288 5672 2294 4373 4634 6605 78 6715 \n2819\n9208 620 8558 1367 4467 3474 7293 9992 2205 664 6660 9685 7723 179 7600 6249 334 4487 7265 7579 6461 4240 7548 6976 7816 2926 8366 6069 1526 7421 2024 5802 2470 8217 3148 3231 6076 9721 98 3483 5637 7971 2112 3388 5300 5068 7937 9232 5723 8343 1411 6724 2187 6745 9512 5323 5384 3881 3076 1647 8764 9673 2799 8883 19 3396 9318 6374 6462 1640 9705 4858 227 4637 9793 2098 6756 5344 5916 5696 5373 8808 2360 2515 5691 5044 9828 9440 3392 9873 6336 3 6023 1513 7478 5328 8860 7681 4649 3267 122 741 4742 4021 4998 2585 1161 1292 9717 4460 5790 3830 2063 8727 40 9198 4783 3482 16 3305 3609 8345 4744 4782 2068 6265 713 9148 1807 6486 3743 6221 8326 5008 8556 2221 2217 9351 1268 8867 2415 3078 9570 2264 547 1232 141 3386 9627 474 6104 1573 5088 734 8862 1743 854 4742 5509 3278 8719 7378 8762 6972 4788 8836 9906 6467 6908 9502 7345 1649 4239 4072 2986 2809 9825 59 8683 140 3842 4329 6133 5055 1452 7985 1689 2296 8255 2602 2280 1402 7350 9150 4278 9476 8023 7638 3928 2586 1670 4431 5467 9611 4451 2291 7197 162 9228 1202 5390 1880 6307 2976 3727 8846 4061 1322 6754 1174 6101 8374 6131 4301 8986 7034 8177 8460 4544 2470 1372 1319 7039 3085 8580 8819 9126 4975 6571 1924 3674 2002 7986 454 7590 1625 34 4498 5055 808 5509 8818 75 8209 2458 7082 6244 8903 794 5841 8888 2300 5128 8885 2329 6885 9220 9436 7802 5596 7600 7680 1135 2003 8845 1651 3753 4319 4880 2701 2046 5157 2965 7974 1885 9974 5789 4685 2048 4081 5097 4198 6568 1822 7831 2526 5486 1242 2783 9189 4330 9791 1921 9604 5822 5341 8171 1537 3620 3554 6299 5982 2988 6534 811 7106 6173 1787 2617 4650 7751 6180 2437 6019 7261 9709 4080 294 20 7646 650 9227 9209 4814 2322 4591 2346 1995 4929 7252 9808 4398 9781 4579 4200 4368 5536 3315 9903 6309 6421 5316 7462 4672 3567 8669 2866 5111 8372 1457 6449 54 732 2181 8161 3676 6938 1999 1575 682 4231 3018 7399 3516 3255 7080 356 6881 5239 3127 2272 6482 3624 9513 7619 2164 2110 9390 5685 1308 7462 4936 8782 8234 7926 2919 522 30 5969 5703 6982 2231 5027 3174 386 5842 1046 8394 6619 5865 5269 7106 7978 6252 5943 3822 9075 5158 1707 7520 2494 3723 9591 4849 9074 3465 5328 4992 6342 1183 8845 2243 6968 6829 991 9017 9016 7921 1614 275 4260 868 6059 6729 1486 9514 6920 1681 8995 8701 8541 7952 343 1300 4290 9925 2639 8590 9154 6629 9261 3609 2269 486 5997 1083 2847 8177 4369 2764 1795 6121 6622 1540 1366 2068 4824 9712 3124 3516 3901 4055 665 1887 8968 8419 6320 381 8410 1821 8899 6138 853 7814 4160 3944 9292 2030 3212 3903 6066 6805 5040 6040 7157 8366 1627 8123 6835 8186 8054 2072 8341 1180 2976 5664 2866 4948 7416 7090 2760 8209 750 3375 6139 6664 2386 7447 6560 4535 8739 2821 7617 8267 5653 1538 8587 9377 5247 2578 9544 3441 2209 20 3410 1024 6964 9980 4511 5807 1486 5138 4363 9302 8534 4253 572 5704 2388 8400 3628 5622 9632 4912 6269 4036 7180 9057 8216 438 4330 5243 7712 3678 6486 9938 4244 7549 6166 6486 6149 8845 8566 5317 6410 9302 2464 4994 7228 438 2029 4679 5258 898 8979 8046 9489 5397 4999 631 1480 9205 2347 9318 8883 7746 7330 6232 4977 2652 8904 2352 1226 7938 5998 6785 7571 4761 38 5839 8423 5119 3588 9254 1633 480 2570 9490 6722 49 2861 6598 2369 2259 4378 8917 3335 4812 7653 7264 7674 245 7298 4172 8014 4680 5838 6291 3394 8160 9967 2722 6499 471 6614 3651 3523 5187 8954 7428 2879 1645 6898 2254 1556 9529 9568 2961 6799 8898 2486 8539 4887 5998 76 7389 2359 1886 8016 8764 8439 8034 5947 1715 8079 3214 2243 8452 4554 107 5886 9016 8340 5732 1420 1364 1263 5142 5354 6844 8637 7114 4398 6511 4053 9972 9824 854 6865 8020 4245 5757 9705 8083 5317 6383 7625 9812 4981 456 3822 6365 8449 4050 4234 6680 1458 6044 1792 8815 2820 8657 2325 2681 2011 4786 4679 9211 8094 7335 1777 4338 9036 9097 6308 7248 4021 6264 8378 9860 2234 7013 4371 9944 867 8943 1288 8854 3670 7900 1674 6610 5365 9118 8667 580 7767 3810 3655 593 2442 3538 8947 5137 1987 6336 4893 9580 1076 3356 3963 7115 9412 3845 830 9470 4973 3367 9006 8162 6390 1521 6935 3058 6822 547 6179 4195 3077 8639 4709 8196 9525 6370 3413 6375 8589 8869 3486 7495 728 2887 332 3198 7113 6699 3139 2745 6971 7268 7142 7211 5022 9053 1885 1432 6494 4603 7502 8139 1062 1883 4105 2695 9396 7470 8825 8923 2074 3061 9399 2909 6950 8131 1147 8606 5220 1460 9134 7097 5833 4097 904 7719 2813 9226 9709 8652 3587 5283 1289 2785 8128 155 4131 8022 8868 684 5411 6188 1709 2218 8744 6256 3733 2796 754 1753 3464 4456 6157 8270 2948 7881 3187 621 1511 3437 7356 8351 5938 6853 8385 3919 8581 6430 3398 6364 5548 4628 6772 7139 6890 8190 9795 8240 3692 811 5123 192 7323 2700 6720 4714 530 7525 1355 5317 1127 4778 6656 672 6986 6537 3487 1619 3028 6211 5175 8202 4860 2012 4023 7413 8992 4710 2805 1972 2111 8571 8430 191 1617 342 2312 7179 2316 9170 1917 1825 8739 5805 4224 6023 6658 2946 4663 1010 8551 642 4092 384 2480 2763 5022 1688 7826 4569 8826 6666 7998 8348 6654 8785 4463 7692 7669 4708 8385 5963 9412 6926 8035 498 5909 5883 3369 5811 2226 7031 7373 8477 2721 6435 1107 1037 9506 9588 2747 9080 5539 9894 9088 6265 4107 4342 9555 7262 7492 1085 1028 2375 5072 4698 7998 1579 6723 1721 4833 7992 1622 9842 8672 9370 2814 888 5475 9953 517 8605 5578 6102 8165 4085 1642 792 4103 9603 3151 6077 1952 3219 7441 729 6115 1099 2008 3146 4101 8100 4842 7316 3239 1757 930 8586 4072 563 4045 7393 978 1012 8146 5712 5760 834 6730 9814 3693 3483 844 3521 2444 4417 5932 6385 5869 7010 4118 4040 1613 3583 9970 4659 3441 1048 2122 8162 7569 853 2798 3813 3326 5039 3404 2077 4844 3935 6404 1904 854 6705 1372 2442 4048 6909 1590 466 7354 7991 905 5048 8681 5979 9114 5643 3430 9989 8883 8773 7773 9283 153 5530 4958 3503 7689 5988 7229 2521 1029 7200 4707 451 413 4654 4750 8476 165 1893 9397 2648 5433 6447 276 3204 8846 5312 3869 730 7196 1643 4507 8929 2230 5540 5863 4628 4902 711 1718 7718 6350 8728 6824 7468 1100 7639 9188 2319 9833 7154 8429 1887 8380 3423 5323 4368 894 6545 2922 6950 8773 9743 6821 5826 175 717 5834 2244 2490 1781 2097 7553 2814 7727 7423 8799 6333 8168 3276 2472 9157 3765 999 1375 6997 3923 9172 3131 1710 2030 9119 2010 1188 2407 838 120 6862 8629 1952 707 4976 2014 7948 3499 5302 8244 9314 6020 6707 3973 7808 2835 4263 4004 3779 334 2880 3038 9554 3720 2820 7357 3668 1800 5678 2091 1772 1128 9681 7860 5829 1066 5599 9260 5971 3104 1023 7353 470 1813 6395 5669 7577 6867 6549 480 8011 1644 1676 9191 9937 5354 4591 5544 9016 5814 2598 1243 1835 3851 290 6389 6505 3808 5452 1539 5672 1918 9239 78 7730 8022 3623 570 3029 6672 326 7603 1002 4673 7286 8153 8811 1303 9017 3033 4035 6938 4376 5 63 1885 6160 2776 6263 1335 1830 1681 954 2346 3384 9917 9951 2801 1068 8801 9334 508 6788 8690 7193 7491 2548 1453 1441 5818 4839 7161 3175 5035 78 9825 6013 5148 5561 3662 6191 8704 3468 5080 8796 3178 2134 1422 7043 9403 2362 6232 6034 4195 9333 9132 4314 492 8751 3097 6106 5229 3468 2402 9446 3555 374 8145 868 8907 4537 1370 7435 1825 4231 8375 7857 9139 977 1610 476 9945 5061 403 868 1669 1487 4343 2202 1077 101 3335 5888 7102 4378 7771 4633 2515 7238 3271 6067 9931 6770 3413 5856 2511 2216 4114 8097 28 6427 9911 1249 7515 3706 2706 7443 6244 3283 47 4055 9723 6474 965 3232 5965 4862 1809 7526 8446 6113 6038 1476 5676 2928 8355 2904 6853 4330 6490 8297 1544 7577 2576 564 4695 3655 9563 3342 1236 8602 9524 8969 7425 8143 3110 6453 5239 7622 4004 6214 3086 8422 6630 8097 3659 7694 1874 1215 8649 4312 3021 2071 9159 7547 6976 787 6080 6811 6901 7090 2446 8064 2345 3764 548 4730 7989 628 3944 1346 2904 1468 1663 3889 6930 8581 5928 7683 6732 7684 2272 3465 4778 8450 645 146 1534 6172 4078 1083 7056 2414 7789 913 1172 5183 3306 6969 3806 4004 9060 3650 7634 3154 986 5238 1978 6747 4927 2079 5961 3014 7938 5363 7901 3767 3252 8850 6687 5365 4236 7358 1305 7602 5465 9934 1263 7686 2430 5534 8261 1403 369 4989 9633 2781 2394 5744 6769 9216 2846 8491 1234 5949 9735 8790 1449 3418 7881 3461 7432 2218 199 6841 8028 943 3625 1608 7249 1831 7219 2894 5881 6744 9913 6376 6988 3273 1053 7324 6671 6880 3420 9103 4803 4677 1291 7081 4683 2786 3334 9528 2698 5568 98 7184 3998 2252 4726 6594 3142 3604 2499 3376 8365 8730 7658 9510 642 4516 2527 4604 1807 8921 5264 6980 5442 9934 2679 3308 4693 5368 9041 9925 5962 5148 1926 884 7061 1584 284 1696 3378 9790 4823 4486 7425 6251 3160 9975 3245 1257 748 8477 8697 5910 8900 2374 6172 5001 8589 7760 5204 3149 6721 694 7 1943 9501 8744 9789 780 8306 9304 7507 8123 468 4203 3478 3211 211 8232 8645 4983 335 9909 9018 3196 3812 8994 9795 6635 1707 3004 5235 2666 6634 9003 5306 2973 9854 1041 6354 553 1773 8542 349 6097 2705 6277 8820 1606 6033 8124 790 9374 1830 8677 838 6509 3018 139 4583 5485 8691 9092 840 4575 7921 1426 8616 6622 468 907 7511 5055 7169 2402 2795 3038 9811 9925 9215 7510 7164 6284 1516 8070 7259 8890 729 8037 3519 729 3566 952 7497 4932 9052 1670 7726 6221 7287 1922 7078 7996 8968 9188 8301 3157 4404 8519 4712 3611 6049 6316 6191 2194 8542 3092 4566 6731 4482 3070 4362 4970 5504 7158 286 6782 5073 3799 9131 7643 6570 8503 1238 2206 8008 4866 5140 4749 6297 8475 9076 7558 7567 6070 3529 5916 5628 2608 7535 173 8115 2824 8915 3771 5313 7036 2294 1602 1187 21 2839 7432 312 2280 2551 6961 5829 6091 5186 8702 4607 3873 6253 3728 6552 4356 184 7940 8004 633 2679 9378 3073 6413 7938 9880 8539 8841 3750 8754 2532 7583 6320 6214 3373 2997 3312 4093 5189 488 2038 7053 417 6270 1145 7009 6453 5916 868 9294 7078 4303 8184 7236 6860 5386 1875 8232 7672 3394 2484 2674 3157 2711 6685 4796 1829 1258 4274 3411 1791 5076 9568 3620 2817 2897 2705 9380 8142 2399 2965 1264 6479 4092 4710 2791 8973 139 3499 8369 2446 2896 3161 9114 1813 4900 16 9143 5896 3392 8685 2195 1515 6333 3388 9377 2125 6444 8739 1723 5599 7977 3730 3591 7587 2788 1646 759 1076 3277 6946 6380 5497 4788 4396 8271 5516 129 8765 9620 9041 5259 3857 8967 490 2485 9776 5173 9961 9223 8705 7805 4254 7065 6347 4382 9896 514 8786 562 8573 5158 5610 1976 4947 7462 3111 5968 4842 5538 6938 415 5171 4020 8511 5878 3906 9494 978 2779 1242 1669 5413 3096 3534 3231 8541 2186 2289 6028 8049 1837 3799 3551 8109 3467 5717 1701 9449 8872 3245 4668 2084 3542 9326 3902 9172 6298 7437 7377 3674 2909 4408 6331 5947 6074 5991 2925 9001 1960 3975 2314 9620 7530 914 2639 7480 832 1965 6973 378 403 7592 6505 7269 9274 4862 1207 4328 8906 6832 8100 2664 9004 5131 2271 430 5314 1334 2524 2152 4313 957 5677 4085 1225 9942 4687 4846 8846 2162 7814 6676 1349 6447 1581 2952 9437 9018 2774 1292 8038 3428 915 4974 3022 1428 231 1420 5815 5445 5871 7411 1711 3120 3374 9233 7114 305 8176 3613 6041 1249 4040 6044 7024 6940 5791 395 1473 4037 8105 4214 1928 1944 4637 3814 4138 5089 7095 441 2195 2370 6309 9991 7388 7069 4193 9182 9281 2758 5451 2462 3606 2962 1609 5665 6037 1981 1188 6338 6750 4357 6082 8774 3291 5615 2534 1591 379 2592 3464 991 7357 1172 7221 1594 4463 2475 407 4096 3086 6848 4150 3169 9625 6713 6109 762 1587 9472 3090 211 1809 8937 981 4425 3214 8146 2813 3485 8586 3253 7217 7858 8571 6373 7126 295 2127 9543 3372 379 3975 9657 250 1415 927 524 1814 5694 2946 513 6673 6781 2564 4783 8857 485 4174 1942 5032 3917 5507 6681 3578 3280 6054 995 3276 7053 8685 1524 3548 1340 6537 3956 6693 2850 6115 6923 1188 2361 6336 8717 6407 1030 3000 6102 9339 3598 8319 1392 8343 5172 7700 6013 3401 1722 1746 5231 4264 3876 9945 9829 338 5527 8686 7845 7649 7084 590 5932 873 8551 7734 859 2665 1230 4928 3039 5661 6014 4203 7745 8157 6916 9085 1201 5079 6686 2942 7745 4898 8128 557 1771 8467 3097 2321 6037 8706 6381 1353 7942 997 6470 3717 5587 7258 9984 9364 9351 5451 3834 9341 5856 1021 3901 8983 6218 1860 4640 492 6601 4092 4935 4831 8781 5238 2839 7497 2777 7223 747 8307 8637 8046 7241 1604 1189 8658 8835 9055 9636 199 7380 8906 7005 2735 466 2818 3768 2987 3026 271 8496 1749 5555 5577 7825 1391 8050 106 606 5366 1061 8945 8053 8947 2816 7122 4653 6583 7489 8452 8350 1685 4214 8143 4858 1032 9634 6065 4352 2747 5408 3543 9601 8781 6089 4220 204 8598 1194 9822 6717 6621 8355 3637 8686 8380 1699 7745 7338 5407 9263 8178 8780 1779 9712 2956 318 9894 5868 8052 3050 6727 4179 7436 3058 2609 9682 6802 5134 444 1062 3089 3961 5949 1400 6035 680 3917 5354 8987 2213 578 1838 4020 4183 3565 8020 4356 9734 3086 2650 6593 5480 853 1578 9578 1600 6128 312 1994 2842 6403 9361 1838 8508 7881 9094 8319 1588 5034 1889 4998 5925 1585 3910 4934 9940 2697 4660 665 1426 4651 8819 1386 8750 4636 1058 747 7190 9658 8047 8869 2913 8280 5650 3046 6730 2739 445 7342 1594 4744 8604 4461 3511 5446 941 6768 5380 9150 7585 5934 3109 3658 1806 3605 4232 9348 1963 789 9165 4597 8195 4719 308 1167 85 648 9282 5168 2162 6081 2794 4352 62 4357 4136 4249 3572 2126 2356 1666 482 1113 1837 9005 5620 3335 8964 3069 8235 3283 799 5807 1678 5961 1272 1634 4635 2543 4965 5337 3389 4096 1560 6528 8669 6792 6985 5821 6991 2897 3423 5362 7541 3504 5074 2988 9674 2811 4811 2644 8124 1126 8598 5082 3198 4520 4836 5702 3977 7835 4759 7760 4058 2820 4629 3773 5909 385 7631 5038 3157 665 2802 2457 4341 9241 7579 444 6930 3994 2712 3609 9735 5104 504 4707 5478 7972 2984 8761 3153 7442 1111 5235 1537 2561 9895 6630 614 7410 5257 1180 15 5799 3773 1522 6655 1367 3856 2809 8282 7939 1277 4121 6981 1331 5563 5902 7633 6276 4776 9959 6215 6948 6125 5064 6485 4156 5162 8773 6630 1000 1738 8761 3441 6763 7416 6935 8642 5523 2978 1324 4284 9956 6043 204 3139 4158 7377 3028 2043 1061 8113 4351 9389 6193 3781 5973 1073 4856 2415 426 1947 8258 431 8618 1067 5148 6511 7556 8443 3832 1629 6396 5018 8438 6514 1923 5467 6629 4124 4154 3519 366 4682 1628 794 8548 5893 6409 5935 6859 2974 2121 8330 1298 4003 758 6721 24 8782 6361 9496 4887 4566 3736 6014 7004 7051 4350 9179 4192 8930 9608 9918 7830 2630 6808 5627 6570 4473 4728 3869 5957 8663 5533 7309 7199 9819 7550 8155 8921 5656 3973 5413 4060 7734 6973 8749 8763 511 4207 3649 4985 320 3492 4366 9815 5269 9316 6132 3282 3834 1977 9433 2501 9419 8442 9102 2580 9873 3582 6783 7162 2780 8899 1187 3592 615 2295 8768 6664 7712 6472 5967 7403 4267 1078 2713 4977 6207 148 7224 9047 893 5326 4910 7349 \n7542\n8833 2103 9685 1895 2428 553 8770 6381 100 8789 3753 2660 3765 978 1379 1617 777 5949 5105 4799 7839 3787 8782 2413 6515 9068 729 3475 5143 8160 8327 2558 257 2122 3523 5271 9831 2261 6575 40 7925 962 7817 3791 1974 5528 822 413 9640 4668 4055 6450 1395 6561 6396 7067 9258 9066 4185 7382 1639 8019 2178 5480 2365 7435 4995 9188 5549 6270 1946 2610 2855 4365 2343 1655 9605 2348 4635 8127 6356 6191 838 8122 3723 6487 8705 9156 4475 2288 9598 6727 1040 4301 6344 706 8707 1042 1434 2605 2564 802 8583 3214 7035 8566 7983 9499 6525 502 4957 4255 8729 9463 395 3066 9171 8161 5482 6998 5830 1280 5433 8345 7883 3244 6392 6338 4069 4258 7638 3747 5833 6882 7532 4306 6479 1355 4269 8167 5406 7846 487 8971 9196 7768 7483 8666 7497 3414 7034 5736 16 7383 6258 4444 7973 8049 242 2606 1277 896 3601 9544 9051 121 5646 6827 5478 6332 6800 5505 4442 349 9028 3447 3775 3709 729 524 6271 8036 2208 4537 5202 7205 34 8711 8865 4451 2129 3064 7065 478 8996 6497 893 2139 2506 711 2172 3647 175 8876 8837 3537 8451 6796 4401 6200 8896 9407 6676 3327 7444 8803 9983 3464 9493 7814 8630 8783 2209 3822 6813 9832 1361 7434 6334 23 8715 8270 9181 4416 4478 2155 2396 2624 4546 8801 2237 1952 880 4829 890 7390 5269 8014 1890 4245 2949 2520 4627 7518 9625 148 4657 1499 215 1148 2137 7914 3563 1019 4352 3725 75 972 2296 5895 1629 1359 8907 6450 8875 2341 226 2960 772 4177 5150 2814 1952 3759 4487 4762 7436 7955 9389 741 5710 2255 2794 7603 1078 9176 9661 6526 4535 9406 8448 8866 3831 5580 4459 49 8072 3134 2832 792 2788 784 2948 6044 7721 8336 7315 8122 1002 2243 9996 7855 5545 9241 712 4670 118 3630 7556 1368 5325 987 2856 8109 9920 8306 1635 4766 7318 9322 6208 2744 9822 3850 2896 5448 7064 9484 297 4822 9932 9225 7245 7429 9177 3943 1478 523 9896 4313 3074 635 1789 9658 340 4350 8723 773 5020 505 2863 9187 89 9368 1995 6736 341 5022 5529 3720 9166 5879 1811 45 2573 2155 9560 7196 7674 419 2084 2604 7691 3475 2460 2663 9741 6549 4450 5523 1101 9913 7426 822 4285 6235 3358 9280 1552 6567 843 4532 9230 3638 4213 1149 7413 9362 1373 4529 4439 1970 5329 4459 4624 6909 8470 5432 9732 7986 2397 6605 7346 9028 2771 8420 4573 1862 3265 7634 4998 8371 6820 7143 5718 7572 42 9300 1079 6224 6237 6400 9546 5532 516 8799 1552 7293 5447 9147 333 9012 9386 8265 2592 59 146 8142 4380 7468 5014 9225 98 358 6242 1904 9268 8748 2688 5568 1628 7970 4467 4245 9651 1645 3987 7616 4807 469 5422 2523 2615 7183 2674 8107 5481 5 7702 8583 2838 1515 9813 6437 3025 6091 2130 930 6356 2728 7752 4721 4241 8827 1315 2571 446 2815 9737 288 3546 6534 1536 1971 4590 9188 3899 8887 1828 7668 4556 8486 2933 4680 3608 7332 4202 6292 7219 2610 2712 8407 8217 7420 2225 2876 7580 2786 3552 1859 1621 6214 5832 4599 1675 7409 8433 5948 2888 7789 7439 8145 5041 3396 6404 5166 3023 4135 9197 4290 93 411 3442 5026 581 2347 6223 9704 2857 7303 187 1722 3113 8328 3042 3952 1654 9236 2457 963 5197 6251 1824 3659 7473 6873 4684 2212 814 7083 9870 5955 9003 6396 5602 9897 6936 7711 8503 9056 7213 2689 8287 3111 265 4732 6260 5399 3461 906 4997 9324 177 5239 4029 6731 4004 4921 7867 6580 6274 8628 8088 9223 2547 7614 3617 7593 7127 1217 9746 3835 168 3876 5690 8026 2345 3267 3980 2267 1902 4084 4747 3720 8784 8053 9483 7474 186 2298 1108 480 4291 9635 9388 4624 3738 8355 3186 5841 5233 8425 828 3768 8334 1012 8440 754 6870 2934 9609 6011 7789 7531 1170 5511 8236 7852 3322 6444 9164 6377 1733 9945 9233 5592 1577 8114 6949 2461 1374 6906 5169 9161 2508 1515 6717 225 1379 7001 4421 1406 5718 6206 3776 8798 3926 646 1575 8730 2210 7726 3153 2074 6793 6559 4354 1888 1539 241 6837 1378 5592 6885 2704 3014 2530 2155 6113 7170 6518 5750 5025 5374 3823 6514 9963 4585 8211 6113 7044 6187 2641 9897 2698 3606 9399 8955 3838 9211 6080 334 1557 5638 7122 4191 8917 3890 1924 8577 162 6323 257 9448 7707 7026 3950 9147 2252 1516 9978 7775 9522 7804 1602 8033 7099 9852 4383 345 2302 4174 3400 3186 894 2935 1128 485 2525 8493 4799 9553 1767 9829 2187 9592 4875 793 5038 9699 4239 2519 709 5721 9539 2736 1823 8823 6518 6041 336 6736 6959 3566 2227 8614 7391 1988 604 5931 9030 4493 6364 3553 5470 8204 6395 7588 4344 2699 8553 9205 3287 6894 8024 2162 888 45 6975 2740 8239 2279 5945 6590 484 7889 41 3243 224 526 3279 2275 5418 3233 9058 6552 2503 9082 2807 2432 1070 8698 8345 2059 2428 7756 2405 2854 5663 1350 7763 2897 5495 3492 6761 2781 1975 8011 7471 4417 9021 357 7740 8133 2991 820 5116 4847 2301 773 121 1012 1524 3092 8331 9798 5939 2304 2634 4378 2752 9420 5642 2719 1802 9445 5747 5614 1511 9031 6425 1479 8831 1074 3422 4137 3495 2099 8157 9835 8737 8453 8603 3901 1562 8016 903 94 4699 2855 4410 5095 6470 6244 2737 6687 7602 408 4138 6031 4589 5010 9899 3574 8804 7517 6044 2832 4572 3055 6340 8041 6587 661 8094 5140 6115 6652 502 7555 5627 2278 5950 2014 2357 611 5373 7942 1730 6340 9144 7202 1461 1139 3571 3375 7377 1990 4271 693 5223 7891 6308 1298 2300 5063 3863 7883 1654 9799 948 911 5112 2178 4012 6049 2033 8368 4803 1581 9874 1900 7529 8735 1582 8059 6651 6495 6118 8392 6480 5067 7526 5706 9873 8665 5485 8639 294 5886 5118 2809 9910 1469 9676 976 2399 3433 6293 5769 2846 5911 2824 8787 2140 9900 414 3722 3065 1950 9270 8324 1666 9920 7635 3000 3415 6025 6762 3087 9588 9496 1267 4320 5759 5165 3588 4853 7114 1016 1782 1899 3153 1268 2911 8611 8876 8210 1208 3100 2954 2431 2276 9470 4734 3283 5590 2012 2270 9869 9501 6934 4159 1346 4836 2070 546 1978 3555 1571 5228 499 4194 5162 9747 8481 6594 6601 4449 4422 6050 693 2564 2313 7739 8439 9549 2664 2313 9729 3573 8078 8407 4782 6096 124 2569 9856 7186 815 5121 8703 7788 9525 9317 3985 2535 5239 9134 2633 155 6476 2761 6661 4023 6051 8307 5138 6670 1933 1446 1330 3163 8851 1227 7683 3849 5306 2669 3029 9106 2284 9111 3433 8110 1676 1336 6842 9290 681 847 2732 1170 8868 1648 7670 2293 2599 5734 3093 9164 2628 2935 2539 9278 3195 5119 9014 4950 9907 4389 3172 8085 912 3760 9626 7835 3932 9020 748 8068 3686 8297 5171 4068 7345 8016 1689 8024 2187 1649 4126 61 2417 5051 1997 1897 7211 5940 3641 676 37 1936 6693 8314 6991 5892 8668 142 332 508 7514 7598 8713 9017 9792 7435 7984 3108 8032 1294 2206 9852 8675 6884 7299 1740 2378 1340 6126 3532 6137 2383 9272 2630 1748 5345 5716 3467 2011 7937 6881 7784 1875 1146 6145 8203 2078 5775 6102 3781 8 619 9666 4144 6259 9000 6578 6773 4499 9990 782 3720 5391 7396 6421 9292 8087 1901 6836 2235 9111 68 8229 4184 58 107 7274 5790 6706 6494 1925 9234 7319 527 7341 7465 1152 5109 4777 9212 8682 6741 2394 7281 5466 3065 1586 8073 6487 9676 4242 6756 2660 2260 9794 5663 8832 5119 1700 7339 269 2646 6466 1879 7122 901 3057 2135 9033 3176 7136 5510 2624 8617 9105 7405 9874 9825 7964 9524 8099 8056 7687 212 548 469 2815 7041 2189 9469 7234 3544 662 4652 2625 6965 8147 18 82 5961 3458 4614 6304 7967 6201 5036 5122 7230 4050 2034 6922 6449 6249 5106 2253 2218 3393 3999 7031 1113 2178 9899 2558 3206 5355 908 2555 3102 2075 239 1870 9134 9778 4053 5476 4186 5965 4444 7758 7810 1458 9140 7492 223 9198 3466 6745 9227 5458 7774 2627 4121 4231 3611 5922 7651 2126 6623 960 5927 3614 4755 2680 6713 408 7912 5330 3061 2390 4245 6853 7395 716 4264 1088 8982 1629 4871 8995 3699 7074 4648 2574 4427 8908 2746 2736 3778 5655 7508 8554 8994 6631 828 6280 8818 6442 195 9771 132 1457 8351 1943 722 9730 1432 6569 8322 3113 5821 8609 8230 7558 1319 8612 2670 9361 7409 4587 1473 5410 2776 1843 831 3226 5469 6943 9608 1648 6726 7116 6966 2604 5541 7089 6777 4362 3853 3586 8853 2487 9519 5418 5500 9498 9377 2309 4877 5 7656 4329 1589 5897 7794 4940 1741 4313 4836 4490 6953 996 5580 2540 6405 6615 13 170 576 8208 7100 6497 5071 1856 5039 4054 3557 6688 1469 4322 4669 1733 5953 2133 8493 9547 9140 6361 852 6570 1158 7527 8647 5137 1582 1382 6569 6000 7684 7892 7537 4137 4722 7921 2912 1716 7682 8704 941 5934 4012 7696 1736 1924 6956 8206 9977 8299 6765 8317 9542 5892 851 7847 1121 8383 1739 563 9089 8199 2352 1778 2040 6110 5105 6763 1636 4493 7426 8494 9551 9601 7947 2621 6763 3830 4892 6293 8407 9936 5264 9759 7586 2238 8839 7463 3726 4425 2217 4501 5703 968 9813 6349 3140 6128 8532 579 8856 4300 3096 5986 8879 5379 2095 9324 1869 6006 4280 8790 8713 5644 3417 2181 522 8447 1230 9097 3374 344 653 6558 9686 1982 1357 8282 5887 9654 3347 5667 2859 1351 469 6178 3872 3770 6244 8919 6592 8242 6180 3760 4494 7927 9579 9471 3858 8335 3345 2433 20 2823 6050 1132 4617 6957 8811 5092 6044 8370 5767 5413 2546 6118 6266 4589 7392 1154 5784 9194 6480 9870 437 9771 9629 2318 2990 9740 7439 8057 8337 2333 1679 3454 4531 851 170 2269 7900 481 9226 6948 192 7471 6648 368 7073 7581 2956 1125 2778 2608 2312 1412 2516 9450 9025 2819 5082 8532 1875 4219 5725 6022 4487 834 9170 1211 1721 8429 9081 1985 5115 2471 985 4045 8538 5723 2198 6506 5514 8740 5988 3277 6982 3802 2631 9625 8157 7795 1100 1754 6961 8998 414 5291 8523 6810 1508 2213 9848 9827 9009 3117 5286 4924 7613 2723 4294 7025 5559 9855 9492 344 3876 5562 1244 8872 7046 786 6413 9305 1917 8254 9960 9117 2362 2670 3210 1069 8473 3986 5151 3146 335 9428 4865 3161 3667 6469 5555 7836 1329 6343 5524 405 6857 5928 1313 8165 6457 6080 1891 1714 5077 7727 7423 7783 6776 5484 268 6940 7041 61 8553 2300 258 3258 6634 1489 326 9066 5915 1917 1492 6876 7713 6450 1729 7748 6560 6038 333 5695 1084 8514 7814 8498 3740 1836 5430 6068 3968 9465 1744 707 9877 2341 8173 6824 7097 5673 2958 5154 6092 7609 8071 7687 1138 6025 3782 4740 905 1082 4525 8674 5451 3882 3850 741 8950 1190 8823 671 4664 1073 7064 3602 2676 9775 3498 5195 4770 314 54 9564 8539 8958 1567 5776 6501 9625 1732 800 2034 2847 4923 3216 1824 7758 6793 9753 9220 2202 9132 8360 5852 9603 4903 7382 8710 5806 3721 1534 7584 9405 793 6020 8913 7202 9784 8099 459 3260 9917 4802 403 2040 5344 6245 9122 9520 2667 2001 9925 8300 617 123 2463 8155 3541 1622 8782 3379 5283 815 6595 1193 6714 6532 4353 522 6216 610 7372 8964 2813 2514 1122 2888 2958 6961 7516 8066 4593 1570 1428 8362 7499 6609 5367 6707 4392 5775 5795 4656 677 8069 3174 7099 6502 9092 1281 2343 3351 2358 994 8686 8924 6078 303 6161 7725 4002 9193 9035 7855 5866 1303 3310 6682 6751 5267 4965 7714 8688 528 7582 9087 8979 6082 4111 3299 145 4567 4477 3639 912 8820 4941 7941 8160 5938 3196 8850 7982 4256 1527 8916 4938 5997 8937 745 408 6535 7089 8713 3735 567 5572 1839 2094 2540 1556 4183 6021 6041 1009 5535 8378 6652 1301 1998 6910 6630 4905 7760 3288 5761 3500 1542 8781 6831 6430 950 6181 1202 4021 1408 1808 1565 9830 4726 1734 6459 7040 1575 2056 9133 2804 6009 3557 3054 5945 4982 6411 9586 9130 1208 677 5179 6287 786 2647 5002 2872 1588 324 7529 135 3891 2587 7430 7040 6180 4450 6166 3707 6010 2911 2107 9747 4040 6508 5218 252 7361 3010 313 8574 4649 8625 4276 8046 8776 6061 5575 1527 680 185 6794 8608 5155 6919 7722 1822 8916 2659 3739 3786 5229 1195 7632 4156 3776 3446 9396 1603 5578 5372 6660 692 3222 3092 6378 8086 328 7205 4847 1094 8769 7608 5254 3839 1736 3638 6475 507 3447 376 5504 6640 9083 5018 9466 2930 392 2606 9135 5598 1021 3354 392 641 7275 8305 9969 379 1260 5269 2113 2624 6579 6129 3298 9731 9235 8869 4706 9773 7979 6536 4486 4471 1832 3270 1349 6629 5928 5414 3847 6623 5693 9559 1941 6432 3458 8227 2348 4949 4552 6223 6459 99 1107 2324 3732 5423 9969 1035 9784 4145 2706 9714 1391 6215 30 63 3391 8059 7973 3496 364 3989 2930 4137 3177 5065 2975 9728 9114 5061 207 154 8772 4559 6052 4566 8901 5330 1785 6165 9525 9064 6307 2435 4554 8194 3462 6130 2738 2818 719 3109 6850 3285 8949 9862 4256 6199 9224 3056 1473 9586 5637 9069 7804 3214 1517 4036 2685 3427 8892 2151 239 5133 4524 1922 9323 3132 1742 8589 7379 3947 8492 9016 159 5588 2782 6764 7517 6958 6469 7093 2491 7640 1993 3522 9568 2766 2688 5985 6213 1473 9937 2741 2414 4628 6525 8398 7719 6837 5861 7462 4339 1865 2999 4305 806 4304 352 2028 7856 6230 8733 8703 7572 6454 2485 270 1077 5692 95 5001 9442 7328 4206 8583 9575 7443 5580 1546 8189 6978 7984 238 5389 9570 7207 7812 3660 4797 2355 5722 867 6846 8387 7435 5473 5495 8897 72 4074 4071 2348 233 6215 8135 7286 2307 4196 6150 6205 6330 1588 4024 7698 9814 5445 2314 8043 8703 9387 3159 2279 9208 9482 3696 5351 7924 5807 4165 7741 9079 5952 299 7968 3432 4054 1058 9447 7994 3486 9208 4612 682 9862 9761 5495 12 4128 7112 1883 1800 1789 9630 7376 4851 9277 4821 4901 4052 491 6976 6006 3760 6943 3692 4946 9918 7514 5155 3055 7014 8151 9834 7735 5705 172 7135 8856 6594 7298 995 352 8713 3515 9796 4764 729 9592 1069 327 8486 2178 6173 2891 5701 8942 9364 6334 1990 8314 2644 9458 1284 3688 9846 8650 2811 3156 7407 100 6902 791 8276 9063 3968 9489 6680 1180 2817 7499 3058 6229 2358 3486 6367 5195 2340 4476 4734 7296 917 1253 3045 4812 5419 5125 4485 1925 1610 3786 6570 421 1944 1038 1066 2698 6990 5922 3990 1307 2337 4138 7674 7376 352 1079 6095 6169 5061 4041 4328 9200 3520 7235 5931 6253 6104 9844 2162 4756 3419 9646 4508 2412 4571 9681 8821 9997 673 9227 4057 7388 7934 1798 2778 8204 2472 4558 4483 316 8428 9987 8047 5986 2327 699 8100 3894 204 2470 5092 3910 4643 8025 6066 4537 7019 8348 5906 8451 6981 7780 4991 4073 1766 7206 9991 1701 7500 5723 2775 5563 7562 7885 4953 5866 3673 2465 5781 5383 6744 6132 8445 3641 2574 8830 8074 5154 695 931 896 7578 4681 33 2676 7059 9166 4638 3506 2322 244 6637 4558 6610 1319 4987 3588 5950 4378 7621 81 1685 4276 2235 9248 2498 5592 4714 643 8442 12 504 9589 241 4606 9732 9158 1722 3798 890 6120 2398 5642 3663 4156 302 1609 5978 2596 9937 4605 5541 7684 5091 9591 8405 1049 8415 5570 3922 1598 3058 7833 8930 7523 2266 703 4074 8520 1800 9787 7930 4796 5047 8760 1232 1764 1036 500 2976 6386 623 2264 4674 8389 2897 7303 2291 8121 2208 3173 394 2469 7205 7910 8258 4161 7378 2035 5897 8146 2884 7214 4947 4867 5230 6089 9574 7756 4470 5116 1556 5670 1567 5210 1508 9268 8970 8412 3914 424 3677 9946 6438 4419 763 3486 7005 2749 533 9281 3103 4376 2431 6779 8555 5439 715 6848 7061 4595 7861 1438 1325 2712 2678 7996 1431 8000 1345 9957 8614 708 9477 4672 8915 2235 7099 9260 1467 906 2840 339 4240 6559 2811 6145 8388 9853 8909 373 2354 8113 917 5005 8998 8327 8302 3834 8272 6782 6421 7032 9170 954 5663 1163 3769 6305 5344 7020 485 1597 6610 6453 5858 8826 7222 6721 1413 1967 2997 7365 4741 240 6935 3226 2514 8862 5359 6202 3908 9578 6392 2262 4774 1016 2555 4545 9858 2957 9720 2986 7717 7935 1518 1879 942 6074 7637 6291 4086 5599 598 5511 4308 1735 6222 5480 2972 4055 2423 3193 6264 8669 9744 5800 2672 9409 7147 4132 2988 1023 2015 7752 1737 915 9889 8091 7864 1017 3023 1521 1905 2317 4640 2797 4328 5527 1630 2216 2187 1673 5911 3529 4848 1579 348 4585 9240 9094 3658 1299 9732 6600 7482 5419 8789 5576 4906 4948 210 7357 7155 5838 7952 199 9464 9782 6489 7318 3383 3781 7381 3023 8416 6720 6075 2115 6784 8461 7033 7590 944 1925 3025 5433 1124 4893 3970 892 1053 5405 4415 2651 2828 9666 4034 5592 8953 41 9497 525 2986 5576 7699 7245 8845 3160 2903 7948 2314 8635 4868 4634 5383 5443 5279 5721 3961 8592 5717 1412 2795 1130 1413 9918 27 7905 2006 6011 9001 9147 5073 7139 1557 7398 2325 4856 5090 6549 916 6121 8901 2580 7624 9135 9538 5887 9057 2368 3713 946 7936 1487 7243 7837 7863 4192 1211 6190 4741 8823 826 994 2326 3366 8099 7271 2901 572 2814 6073 1727 9033 8731 8192 8666 3241 4311 8510 599 2509 7324 2204 9316 5122 1403 3741 2407 9798 5445 476 7411 3993 3453 2066 901 9878 1687 8211 5373 7344 8968 5257 2498 5734 730 5291 6861 208 5547 5183 8691 4956 6398 4846 7369 6221 6423 5115 4290 7424 2212 862 455 4846 3761 76 6550 1220 9551 3888 3611 2617 6444 566 4865 4715 7428 5046 4467 8180 7238 4083 3843 8718 4835 373 2550 8558 3645 6068 9596 6678 2040 1657 6555 1887 9692 1457 9131 8307 9543 4344 5783 2542 7927 4606 1864 3128 394 8232 6037 1822 9679 1547 6093 4300 1850 1753 9718 9961 9680 5759 2614 4624 9358 1749 4969 5009 537 2902 764 3594 7058 6573 7643 9536 2341 6743 4212 4088 2745 64 1618 9674 5173 9607 192 2864 6137 2556 3202 4101 8202 9964 549 4409 6205 6637 9219 3032 7053 7432 9286 1146 8688 1949 4741 2615 7039 3752 8921 9299 5589 2018 4420 5941 4004 2341 3756 4663 9985 8382 5772 6310 8631 5297 6549 6062 6774 4127 6834 9027 9384 3527 5618 1523 4470 2229 76 8663 3601 9312 9645 3038 303 3381 9381 1244 6538 4814 9144 2959 7209 5745 5398 3193 2940 1728 7018 5324 6237 6634 4676 79 9466 3272 5755 1926 7057 8345 6364 7823 2272 281 7095 7111 3769 7768 9133 3465 7083 5859 5168 7031 8998 8029 8463 3186 5966 779 9855 6299 992 992 3938 691 7935 5648 6676 2384 6652 4649 1755 6417 9706 5507 8490 4246 4555 8554 1831 2647 496 121 6297 3321 1429 9538 4695 5043 783 3610 6832 7841 8566 7270 6774 9621 4251 6841 3175 2368 2047 9782 473 6438 8131 650 9104 280 5412 2128 311 5916 7830 3294 6857 1275 5903 7472 9586 5244 4076 8078 1854 9127 7611 4384 5784 1998 6929 4990 959 8596 4877 6210 1755 8338 4819 5309 6539 9529 3654 2946 7525 4514 5039 620 5320 8306 9285 6503 2120 8226 4382 274 1789 5668 8968 2379 5244 745 8085 4238 584 9853 9681 1658 4165 3051 7304 1143 409 2851 4521 3270 5157 2264 8138 2890 1910 862 7767 5302 5038 536 6993 8456 2973 7780 1720 830 3338 166 5322 6852 8668 728 4854 8736 5080 2088 1600 6779 6222 5454 3120 9414 2450 992 3859 5184 9213 4468 9748 4357 958 2983 8654 4358 7157 3447 6277 9580 5911 1067 1686 342 6738 2375 7692 8372 9297 7729 1442 2047 7639 5946 8675 9181 1316 7330 6922 8924 5935 6122 7827 4292 9303 4250 1270 6514 6306 2980 1072 2167 9879 318 2236 120 3928 9549 1382 373 501 121 7274 9823 900 6444 5572 2260 4630 1460 902 8308 4860 4815 1578 1462 7954 3297 5820 8267 9154 4512 4058 2975 9498 3559 9066 4542 1305 2131 7744 7127 908 6703 8190 9367 5840 7149 933 3635 1017 3628 6895 5993 9103 7983 8706 4637 9757 2881 8127 7893 5689 4655 279 6851 795 6504 3669 4581 973 413 3322 7908 591 8294 8332 8140 3552 1686 2320 8773 792 9725 3400 271 9795 1420 8125 3574 7762 4192 7237 5332 3545 6318 6556 9866 6382 4667 6567 4459 575 1565 2892 6560 9114 1461 355 5904 34 12 5649 6383 8959 3500 2224 1589 8868 5804 9956 9610 6606 1973 9720 1787 8149 5629 5995 9397 4499 6128 1775 8659 6641 4215 4426 1941 3078 5501 4932 283 2981 4475 3927 9104 1896 4621 8634 5186 8184 9539 2198 714 9269 8508 5975 2375 7746 2898 7816 4577 5978 2240 5254 738 1112 1261 4758 7719 2184 4975 364 8415 1877 3279 3940 8511 5267 2170 6590 5949 7296 5772 615 6835 6596 791 5835 2300 7128 1473 6218 1986 3106 8344 3260 3271 8872 1311 3683 5592 9803 8187 7857 9520 49 5641 4721 6628 2345 5552 5512 2638 7673 581 1832 8056 238 3741 7600 4029 5329 8033 8859 7462 3508 563 29 4318 6209 6174 6424 9986 6783 7183 704 3157 5772 145 178 1461 8391 7959 1300 6651 628 439 5893 2177 1647 2828 9823 437 1552 6117 8711 195 923 6814 7618 723 360 6603 1244 777 3748 1155 7486 6810 6202 9991 6717 1461 9850 1261 6620 3288 1389 873 4173 954 6993 3913 2566 4489 1042 3834 6814 3559 4481 563 3664 7045 9222 2096 549 9765 4091 9589 83 5158 8685 2986 5564 4096 921 570 4564 5468 3563 49 2773 9632 5197 7718 955 5384 5177 2628 4316 5023 1736 7504 818 3939 9972 3883 9654 8213 1426 9393 3286 6744 7601 5866 2854 1040 3870 7150 4554 9610 51 2172 1265 2176 1027 3097 1639 6016 2674 8345 4560 901 1799 5010 8847 7122 928 2605 4443 3768 1829 8341 2776 9970 8057 9680 5609 9435 1419 7379 9433 1988 8654 7318 8617 5257 9543 4801 943 6845 2049 6492 5401 5136 2593 2481 7243 1451 4322 7196 8187 7357 4705 9279 1896 8281 7707 2366 2239 5969 280 4420 2963 7070 4865 4888 7797 5370 4790 1145 4416 7695 5031 7522 296 2511 8945 4547 1686 1466 3327 9736 5731 5225 12 958 145 8632 3980 6043 9598 3112 4842 3190 9753 637 7782 7005 2814 9899 2534 5636 6984 5029 8501 4722 5812 8209 6687 5444 5339 9345 6284 6432 6315 9856 7656 1061 2626 6935 8592 6675 105 1730 474 4988 9541 6757 4525 1285 1314 5699 2218 8939 5893 4242 8230 467 1446 6484 9150 1034 918 7862 60 6160 9626 8920 6558 8174 7968 7660 5818 3111 417 7395 6978 440 3497 4891 6482 8054 6053 2586 206 8737 2210 5893 7829 9498 6516 7769 7583 312 3331 9073 1086 2266 4184 901 847 6718 5040 9394 8906 8637 6867 6817 7739 3688 3418 5843 9246 2987 8939 533 6475 4776 1490 489 3561 4014 5351 8233 8846 61 9211 421 8397 134 238 722 7780 2691 7132 4195 2670 7245 9929 7423 4233 630 7655 6394 2614 1826 2673 4976 3322 4830 1369 8321 7213 5773 9822 3234 4704 9587 1330 5836 3933 8815 730 5894 7620 1827 5572 4113 120 6690 4904 2917 9213 1702 9824 933 4799 6085 1534 1073 6742 6415 2712 1296 2134 5292 9212 6324 6608 1388 4242 1194 8999 5446 6543 1197 7573 7070 1558 9146 9166 7388 9588 3499 6833 5261 3532 4342 2980 8483 5869 781 1601 2344 1557 4111 9547 3531 4168 8439 5088 1747 3465 8362 7173 8162 4841 5217 8035 2829 9662 239 3814 3548 6180 2079 2241 6305 7180 9977 4831 8067 9300 921 9261 9118 3584 7017 8978 4848 1219 4412 9293 2322 8091 5953 2991 5496 5263 2799 9091 890 843 1528 7560 2971 8315 9984 9229 3076 7503 9966 7984 4860 1481 2134 1197 4596 3722 2379 9266 4837 9811 1694 8915 9081 6899 9131 873 8117 4740 1398 8487 2807 2811 1745 2836 2132 2938 5155 884 8888 8781 4756 7154 8034 1185 7847 42 1674 1731 1607 9978 3311 9315 8230 2959 8741 4455 245 4652 7742 614 9355 2219 9113 4070 9416 1530 6869 982 6840 3429 4769 1881 6215 4702 5759 4950 9220 9702 8676 485 3353 1584 2853 2288 5153 2611 4602 9483 6858 199 7407 1564 8927 2647 318 8524 3894 4338 9377 4542 4512 4997 4700 6292 8293 6747 6970 1216 1283 5959 550 826 1237 3449 3807 8144 3203 5538 6174 2629 5177 1717 9139 9958 9507 2657 3749 3466 5313 1587 8636 1156 3021 3158 3159 2694 5179 1422 2836 2809 3459 9594 211 8089 2677 9654 5877 1542 1043 5931 4088 8462 7384 149 7390 1726 3920 8723 1232 6368 2095 1842 4376 9736 3315 3414 2110 4296 330 9322 5891 8313 7144 8873 9759 3857 9090 5508 6135 8158 7945 4529 6096 9808 4801 8051 9566 5997 4184 1844 3887 4622 5621 8203 219 4452 7149 5107 2290 5298 8262 7434 6045 1856 4058 150 4674 4691 1249 1732 7902 778 4838 9385 4915 5340 8696 4274 2104 1438 8620 9120 6351 9666 511 9672 3745 1853 6004 7984 5578 1711 7127 1237 2745 7921 1555 4203 2933 8813 2806 7166 3513 4979 1882 6998 2761 1024 7001 2333 6469 5119 2879 5238 8976 95 7995 3083 719 8551 7931 1414 4306 7731 4016 4974 7864 4114 6632 8366 7236 8350 1868 2490 3261 8 6245 5660 8207 9033 3327 4696 874 3443 7758 1013 8134 3947 9783 2882 8428 2185 93 1275 9278 7508 8356 9917 6527 9216 4182 8538 5866 7357 3582 7738 6479 5811 4995 3858 2005 7187 8926 3940 6077 6842 5778 4667 1548 7079 2704 2624 7141 296 2350 8556 5651 9049 4706 1616 7989 5732 5616 2322 2549 2025 6715 6241 2544 8479 8246 3243 6968 9966 4305 3657 1457 1466 8059 5886 356 421 9754 3026 2810 2539 7665 6676 6584 2534 5248 5274 7105 8508 6601 196 3623 7813 818 6703 3114 4626 6970 3325 6510 2727 6803 8970 5342 2701 4601 6036 3036 2473 5496 8918 414 7714 4926 7159 5265 7726 1614 1963 7095 9639 3922 1136 977 1754 4080 154 7792 7936 12 1624 8519 2852 9404 7930 5864 9195 2685 2044 4017 5722 2440 3715 6105 625 4489 3674 1528 5110 6681 4912 5370 9008 3770 7388 2824 3408 7467 7726 1030 4216 8257 7223 7334 3398 4300 6900 5286 5041 5983 8498 771 3861 2604 4766 6054 8406 3964 7116 9432 6045 349 2062 3972 4368 9211 6700 7016 794 3817 8919 9774 6616 2929 8392 596 5022 4752 1570 6489 9771 9944 9005 3208 5818 7394 2296 5536 6977 1689 1054 2784 3537 8169 9307 6271 1252 4142 195 1918 2378 3042 6308 5908 7137 5130 8082 5367 5068 9382 7260 2686 504 8234 8430 6244 7100 9455 8906 8074 28 8520 1917 4693 6149 6287 3500 1095 9374 8765 7905 2666 1211 3095 8713 3247 5929 9440 1665 2410 4267 3478 5041 3128 978 6286 1092 844 6002 4868 1336 4292 318 4323 5413 4532 3965 7333 821 5343 5289 714 7929 3225 1432 1261 8395 8210 1599 6053 165 23 4247 1626 9342 526 6974 7262 4644 9408 3859 8129 3632 8902 1591 5414 9747 2930 8343 6015 6259 5914 1956 1186 9939 8617 711 1179 8766 2301 4230 7844 6513 9458 8688 4508 5778 2896 6765 7705 5752 4707 3788 715 2310 6800 1727 373 9113 8722 6432 6747 1989 3274 3237 5880 9486 2269 2296 9852 7475 2273 894 3944 9866 7606 3531 3501 8245 7967 3534 531 7090 2124 1456 4281 531 3597 4152 3924 8191 469 3597 7369 1041 2971 167 9114 7231 7863 9434 2512 1717 4831 9786 3002 3379 8681 6053 3613 5241 8770 8481 6292 7467 6548 6108 2506 1391 5173 9261 7299 4435 578 6858 2317 9418 8050 9945 2586 6756 79 5556 1112 8525 8678 7978 4375 2389 5288 2029 5418 4833 8015 7913 8060 5130 1799 7461 8093 5077 2771 6278 5029 9699 4378 2777 2098 6691 793 9611 9160 3745 1260 9925 7958 7314 2742 3182 3583 4504 50 6667 5148 3991 6651 9202 3840 7021 7622 4955 2274 4483 5225 3476 5432 4065 5771 2570 8404 2456 9830 279 1039 6386 2417 8864 528 9728 1408 1960 8300 1328 6452 4921 7588 1841 3860 9791 3872 1087 5200 3342 1878 1862 7924 7372 3945 2787 4281 2541 8494 2546 7804 4173 8695 6641 8039 613 4797 654 7154 3376 1031 9594 1915 2541 7920 1972 429 785 4107 6148 9530 6753 5480 3774 1556 3134 5145 3539 7588 7773 4313 8995 3431 3732 124 4864 5418 1476 4812 203 9347 9387 1477 9459 1593 4137 1476 1489 4335 2710 2698 1431 1611 7432 207 3574 4496 6903 5856 6165 2264 583 9365 8429 4221 7826 8422 4018 4927 3804 4301 5714 2401 3323 660 5948 473 3873 1681 2602 5944 1371 7106 1443 5718 9188 3887 3712 1279 5204 2139 8509 2808 2328 6502 7063 8585 5431 9147 3250 5360 6826 7585 7829 7458 7871 8338 2498 3329 5760 6590 690 2439 6041 5571 1373 3461 4958 2259 765 5129 2366 6386 1231 7388 4125 9288 2991 7432 4393 1578 6344 3397 4479 4353 2535 1963 7284 6656 8495 7120 9144 7860 9054 8182 8713 4160 3074 3541 8567 5416 9720 2588 4267 3233 8808 123 5330 4325 1625 2585 1505 3559 1686 9694 8031 4642 5098 1272 7991 3618 5530 4095 1445 1134 1742 2433 2974 3310 4811 6795 7317 7621 6140 6195 8096 578 8267 6480 2565 9063 4765 1279 9688 3447 7190 4306 8518 3727 6534 6009 6553 2809 5750 6732 5682 4578 2453 7876 7530 4854 3565 702 633 6893 3823 5323 1081 2238 2641 4785 3185 1231 2352 94 8666 7794 4154 89 9780 8894 7573 8965 4163 3563 5593 6305 4338 3908 2601 3453 6883 9270 6718 5386 4133 7676 613 7580 4658 2092 823 3270 7042 8322 2714 8496 9402 588 719 7453 1992 5020 9080 5615 706 6694 7506 7871 6065 8130 9915 7456 1416 384 8597 4618 368 7058 7368 3165 3710 6179 6438 7181 4448 8635 6451 4014 4175 6998 8532 7311 5853 6050 7371 5483 6795 9080 939 2442 1467 5255 6367 7094 7521 6654 4606 9734 4348 727 5642 3020 2249 1593 4186 20 6592 657 5206 6450 8839 9038 4069 7616 2363 5692 9068 8718 1416 969 3644 4155 7244 2473 4351 9336 9831 9769 3095 2840 4621 1159 3481 3332 6019 3581 797 7141 6467 4078 3925 6441 8211 5682 7195 2093 6349 3373 2814 7741 7127 7844 2894 1620 4382 9346 1083 6241 7360 5241 5533 8660 6330 6299 5062 4895 9863 1832 7630 6130 8146 2356 2211 8795 9328 875 8016 5631 7238 5477 5508 3568 8044 9575 150 7225 2395 3728 2161 9491 8107 2401 4757 1092 8883 8541 6939 759 18 1382 3141 4575 7368 8611 8276 4623 458 6387 6797 9045 2525 4102 8030 9455 4241 7674 3076 8464 2609 5930 7871 2202 9540 8248 6235 4198 1789 7758 1811 7920 5014 5384 4820 6385 8338 9408 705 4089 6275 9596 3683 7538 4356 6247 5068 657 9000 2377 2986 6609 4477 6349 596 4643 2880 8012 9355 8870 6190 8116 9536 8605 1733 1497 8947 8949 3128 7274 3552 7087 3471 9607 3087 8132 8806 5625 9123 8520 1850 5511 2506 2900 9496 526 6202 7637 3452 8731 6078 443 3616 7443 356 1412 1214 5022 8180 8962 1424 3656 9080 7854 1776 9190 6787 8356 8229 3633 8895 6718 1293 4739 7126 2323 2201 4573 251 4884 5942 6316 4197 6876 7216 4582 7219 9972 5599 3309 9681 4077 1847 9532 6189 4066 196 3282 4788 8625 8000 1646 3901 8955 2228 5392 1074 9471 3156 1753 7178 8514 280 3528 6199 3446 1108 9379 414 181 8250 6395 6600 7591 9385 9161 7966 7020 6616 8831 8273 6500 818 8568 6590 7856 3765 1742 5002 7447 1848 8596 3774 1690 1379 2433 9508 7571 4031 9799 4378 9983 6842 5661 5905 2825 9992 6711 7191 479 619 813 3515 8010 160 1958 6777 6286 5314 6117 2395 6716 6041 5047 6267 1253 1769 6828 8513 6857 9123 2492 5099 9336 3237 4172 8078 4217 9062 6622 3866 2659 5327 7167 1709 1556 8561 3562 8113 4335 6290 4098 6256 3174 2436 3058 2194 5280 2081 8704 6925 8293 2515 4964 4733 9626 4898 5048 9569 8341 6199 4319 5080 3278 825 3542 51 5979 3254 8526 1511 5997 5544 6756 8534 6694 6809 9225 6550 5738 2408 8965 4685 9012 2497 3578 9259 7299 7621 6558 62 2242 9758 5261 1488 5028 4157 337 6728 3169 5747 9652 4580 4892 1867 8503 9872 8301 3712 1952 3165 6983 5274 9465 4928 2463 1325 2614 2268 27 9260 1527 7720 5696 8975 8997 2393 9418 4349 4973 3174 77 799 6472 5357 1569 4846 4142 5552 2952 7324 6761 6193 4163 8388 809 1003 9260 4197 6862 8655 2327 948 5963 7101 8483 8809 4946 3598 2552 9555 6785 3667 1203 6591 6740 9003 8986 2830 1175 7355 3926 6403 4123 4722 9342 8809 9029 5539 7707 4422 7239 7272 9640 9516 222 7863 1810 2519 3582 6029 102 9637 7764 6384 4579 4031 3435 5980 9312 1861 3981 5969 5868 5607 9724 5123 3695 6573 3797 6033 1539 9724 545 3327 6701 4853 2796 7126 7424 5828 6682 1232 6139 44 1321 5054 1310 9451 515 9068 9895 7334 2265 387 2797 3336 271 7483 1347 2466 903 5502 5081 6869 6298 8980 7049 1077 1892 9109 3860 1053 5549 7331 1443 8804 4795 300 4526 6192 35 2839 7732 650 3821 6314 4211 189 1836 394 3402 850 6981 8325 141 7071 2123 9126 2215 1303 7796 7510 8499 3877 7663 2758 605 9196 2552 3458 5023 9494 7593 4419 2226 1968 4767 6646 9214 3604 918 2783 6771 6383 9745 7494 1752 160 8674 7976 3598 3143 7078 6536 9727 3304 3627 2436 228 8886 4591 8425 9415 9577 3820 8329 2508 4071 5720 1501 3114 6678 2973 9253 5801 5473 5863 4112 1344 8553 5408 3069 3498 3041 8807 5563 7054 2274 6042 6503 8110 8605 3208 5747 3097 3005 9087 3970 9605 8604 9764 6526 356 3638 8195 5592 1245 5115 9091 2648 4692 5723 3527 9551 2604 8808 2224 9788 6244 8430 916 5917 8981 3105 5240 2844 9872 4175 4058 1846 5456 3892 2239 6181 9952 8183 4965 7456 2283 4390 6198 9236 6420 1198 8741 1301 7119 1196 6632 6898 8185 2196 4393 883 4142 6074 7675 6248 3622 4602 6841 2327 4500 2468 3971 9388 6528 6092 3325 4706 6632 5241 9593 3364 4822 4138 1609 2966 7454 5505 5246 6619 6496 4808 9814 6108 6423 6213 6673 1920 5569 831 237 3525 3411 6290 9405 1084 8956 873 3679 1703 3014 7049 1818 8193 6576 7423 284 2430 742 7255 8848 3305 9871 7429 2887 6947 1309 8287 1610 9466 3647 5797 3703 4908 9591 2104 4346 1789 9517 5575 9731 1084 1115 9667 8196 5248 7135 5343 7889 2100 8762 8408 6244 6361 9863 6744 1831 1486 293 901 8867 7923 2437 9153 9024 1127 8849 9526 1990 8203 4146 6542 5591 6946 5332 7305 1615 7972 240 5365 3974 1411 691 7984 666 7208 8001 1206 7419 1478 205 3368 8848 4528 779 6656 728 983 3119 2574 846 9526 7622 1420 86 7670 4378 1058 7989 4543 2343 3526 4036 3546 9074 8587 1332 9533 7309 6766 7663 6729 7442 5509 3108 6876 2874 9731 1027 2395 6824 8725 947 1191 5721 5524 1990 5939 3670 9061 4871 1564 9454 7837 8384 748 9441 7692 9781 868 2191 7656 7937 5179 4869 8157 604 2884 4949 3153 8076 5864 1121 100 8681 86 5558 331 6740 3917 9466 5182 478 7493 3498 620 3946 3124 5853 6322 7758 3337 3106 9855 2034 6981 4511 7365 5273 2445 2649 1040 9463 1279 4853 8032 8463 8609 1334 8614 4655 9637 1084 774 6548 5606 4537 4556 3693 2605 841 3870 4612 3406 5870 7338 7560 3711 4963 8442 4029 7000 1255 3486 9207 8584 2824 6126 2772 1953 4042 3498 6829 2964 1478 9357 3105 7317 903 3139 6970 7 6514 5889 6349 6989 8135 8 872 8371 3245 7712 3370 5393 8269 660 7081 8267 203 9276 1455 9676 3729 8524 1906 5040 5964 1935 2986 2665 8300 5336 4473 4968 4189 5885 2706 7904 8203 2109 3432 8228 7078 4127 116 5951 6819 9352 8988 8997 169 3961 444 6471 2745 2032 3505 592 2175 8253 8588 7232 2140 1342 6846 6091 8999 4587 5945 467 7187 8528 3449 1943 4706 1236 6957 260 4697 8091 2300 3217 2844 1289 8772 5081 1608 9279 2258 2588 5395 7360 2710 8993 9826 4956 6754 7842 7061 5585 9219 2609 8759 2445 387 5638 8940 2139 7517 3933 1385 6587 2839 2076 3453 1958 2114 8204 8593 428 9607 1331 4588 453 1539 665 3752 2119 1053 3059 7917 2633 9040 1915 1092 9150 2420 8952 6786 6316 2955 9823 3174 5381 2063 9135 3750 3563 9165 1761 7784 8067 6184 8241 3719 5094 7123 9654 9593 6934 8958 2911 5857 1888 6663 3615 9167 2764 1268 5708 3870 871 4472 4089 1812 7265 1523 7550 3365 192 3985 2273 947 8306 9368 2882 947 6184 2477 2293 5946 8989 3996 6014 6818 7574 9924 8182 6646 8367 472 3869 8165 3999 9169 5491 4394 5488 6041 6496 1490 7685 1615 9924 2463 5445 8949 8572 8385 4872 8736 574 4561 1429 5061 5956 797 8479 6318 7212 8140 4365 4935 1456 250 5185 4366 5018 5507 2560 7369 7061 5962 6465 2500 3732 9959 9797 8336 4932 2298 5374 1960 1487 4783 9698 5073 5273 1129 8500 2973 8433 9363 9312 7893 7152 8330 796 9760 3870 3794 2011 2884 9393 4362 3568 3675 1062 3891 1329 8521 2165 9217 8486 5964 2175 4135 8494 712 5766 2173 997 6887 4239 7421 9447 6626 4424 2467 2037 2738 3364 4429 635 7735 1137 7646 7210 856 3350 7607 3179 6316 9903 1289 4559 569 3431 5836 1422 7485 4363 6740 9965 1861 8038 8434 7257 4983 1456 2209 9752 5085 8594 2719 7962 4429 2359 6014 3691 6376 9251 2727 9185 2608 1962 8845 9480 3363 5120 2074 6504 2200 4594 1910 8123 5527 6234 2886 7027 1532 3912 8760 9857 9754 2104 1460 60 2770 3256 9165 1980 2452 3959 9904 4899 6673 6676 5549 866 9636 9576 3782 3270 2140 1087 7213 5374 9774 8288 9767 8597 2610 864 2775 2295 1129 2198 2887 4353 7141 7300 6464 635 7480 4156 2287 1856 5818 982 5194 9988 8830 4095 9303 480 5304 106 4650 3427 3773 1291 4867 8646 9027 6644 9607 65 3874 1542 9108 415 1535 4416 2146 9953 3218 8200 5570 6838 3472 3388 2719 5450 4333 8231 8291 9395 6076 494 4196 5718 4646 3217 6319 9738 5441 155 6270 1057 3091 9710 2110 690 7766 2968 9981 7695 7950 7545 7381 513 4421 6761 1352 7300 3397 8474 9640 7420 4246 6248 6152 1434 2440 8198 5067 8051 934 7687 9695 2971 6620 4237 6523 5520 7703 2943 9617 4409 5580 620 6208 1759 5636 4287 4990 3794 4212 1959 9614 91 6238 4231 4830 437 6236 574 9036 8335 7878 5991 9121 2684 4416 5055 3482 2194 6390 8146 7694 1999 8766 5316 2369 5764 8489 1157 3434 9917 2579 4553 9952 273 5593 2928 3855 279 4278 4143 9680 1344 8515 3270 377 6323 3458 9778 9423 2577 2591 613 5121 4545 9719 3709 4127 8889 9435 5939 9166 9587 4537 6855 6732 616 6425 9082 9240 5667 4700 7847 5615 2539 6524 2197 1036 8189 8379 7818 7283 3195 9338 6745 5903 4333 4986 6408 9832 5082 8847 962 9647 4667 2120 9031 4155 6575 5424 5040 7239 8239 9203 9503 1593 3896 6006 8583 1487 3456 2634 222 2614 6044 3087 3263 1391 2730 5864 9874 740 3273 1873 9332 6094 4794 3896 3416 9177 5785 3947 7530 6138 6852 8631 9611 6441 5705 7599 7943 806 9280 6069 876 9396 5618 2073 9852 502 3548 9371 3956 6346 7227 1961 7769 4529 6272 4687 2766 9874 1340 7801 412 3201 8866 6892 8770 3579 8172 3697 4114 7089 2748 9532 459 5990 1987 8125 1689 2808 5826 7087 4570 8660 9304 4657 2201 8116 742 2742 9646 7504 3704 199 4862 4190 3910 9849 3329 4900 9246 6632 9147 1036 3657 8876 8930 9562 5825 7614 9814 3116 7714 3677 1678 4091 8060 7246 2823 2530 5615 2798 3522 3404 6691 5603 5791 305 1644 273 1779 6992 6869 5430 532 2708 7314 5384 8769 1195 3652 1350 7930 6686 1239 9841 9507 1691 7176 6465 281 7433 8822 9338 3105 4847 1883 8687 6416 1347 725 790 4316 6045 5171 4231 705 5808 6579 2266 8550 6694 9665 7715 6943 2903 6804 4176 4227 5593 5609 2083 221 1132 8824 5763 8607 2699 1356 6930 9256 1467 3796 6961 9414 3823 4849 6346 8966 5184 2958 416 59 9063 5012 5839 4024 3622 3883 602 3800 2307 6328 888 741 6290 245 5085 743 2218 7057 3069 3494 6866 5312 607 1830 276 6808 5246 9982 2501 2760 8175 6239 7704 5134 1243 1713 9804 5487 2966 219 4165 7735 6497 6693 1211 1941 5882 276 2836 1502 9936 413 5149 7395 5165 6710 3850 6738 4038 8883 2475 5918 3328 4426 3903 6699 104 6432 9196 3421 5848 558 8789 2106 5878 6282 7877 8044 6050 8723 5325 2380 9811 4809 4470 1088 598 1837 2420 7667 9503 7056 1152 1241 2259 8371 1070 9198 7654 902 9678 2867 4644 5577 1682 1888 3780 6870 7406 1967 4282 5385 7675 7667 7947 7793 8202 5664 6970 5879 5572 6941 1886 5897 4912 9432 8969 8900 3449 541 2125 4820 3090 4062 4140 5447 6927 6697 8184 4349 244 3042 8224 689 7 2959 7513 8559 5423 7314 8081 8151 481 8926 7667 5188 2492 5124 6901 5188 3344 4439 1521 943 8425 2790 3843 8848 1628 6403 8031 7319 3839 2261 3807 8392 5922 8575 8796 6047 2101 9106 891 4620 9622 6916 7557 3588 7937 7007 7090 1203 5673 9492 7502 4477 9833 2159 6233 3698 5383 9343 7542 1488 446 3462 2650 1215 2207 9729 5904 5705 9122 7567 8963 393 9987 6289 9052 3765 5677 2474 1968 3888 1239 9302 6156 7776 3225 2191 2952 2389 6802 1270 4249 8347 2882 1520 2501 1823 3416 1609 958 1161 9270 4778 13 437 1785 9604 7672 5915 1909 5816 998 9966 3295 8288 6816 8456 3531 4546 6529 1523 1598 349 8555 5373 231 7526 7200 3149 5159 4259 7145 7642 1162 4346 7162 6803 7554 7038 2594 6695 6170 6529 8346 6275 16 7246 6865 7765 4033 4729 2785 5983 7521 5198 4541 4087 2490 3289 5964 9966 3527 7126 3773 7914 1461 6066 9256 4485 6376 6982 2638 2330 6119 4014 3215 7346 8841 1545 3167 1103 2191 7127 1121 3951 2055 9678 8287 9016 1905 2234 8843 935 2396 9787 2407 7917 3440 9787 2093 8075 8900 3361 2897 907 780 1580 2658 7454 7669 6488 7669 6915 6226 7510 5925 4453 6234 2601 622 2348 8889 6736 8362 6660 3018 2522 3721 763 486 3123 4395 4437 7278 7685 8826 6738 4670 9845 7395 3816 3114 713 2113 5877 6594 2158 1583 5891 1432 6972 2526 6575 3752 4815 1826 6977 7289 7485 1464 9579 511 7635 8115 8465 8461 9605 4102 5197 9642 2722 4593 5551 535 8920 4427 3456 9590 4 5280 6557 8149 8382 1227 3628 5735 4930 587 3558 3838 6101 9277 2228 6372 1527 4952 7598 687 1234 9016 8774 3957 930 8276 4852 4227 8399 4140 1525 9464 5163 9944 470 696 5044 5386 9146 7962 9815 6811 \n8849\n881 9928 3786 3263 9968 5326 2291 8234 6121 2623 3159 974 6694 93 1240 2928 3781 903 3971 5102 9057 7612 6440 1567 5431 4026 1261 3002 4299 7261 1022 5022 3049 210 7378 7599 9812 5573 8434 7755 5515 6472 2879 3866 2998 9534 7559 873 3901 2652 7679 8172 2379 4825 3710 7940 8470 9683 2150 6577 6301 6897 6760 6589 7289 5014 6633 7001 89 2148 2626 9260 8330 9052 3264 1154 8764 1844 3670 2587 9223 5916 8634 5004 3862 7932 5844 4432 5712 5969 3186 5809 4050 4282 5780 3797 559 7548 4306 8088 9089 2471 1985 4224 9514 760 3781 6122 3670 8021 6168 2642 7888 6689 6413 5162 2917 760 7709 9096 6657 2084 5830 2527 9957 8194 8453 2689 5710 7235 7404 3161 4177 4048 9859 4389 7945 6022 6727 3440 5910 6901 7899 3809 3671 1109 2001 5926 5542 6592 8502 890 9203 5396 8422 9005 6904 5211 6483 6622 6536 4349 3308 6815 1076 4095 4800 7472 6577 1471 809 1866 2210 9351 5626 5934 8707 7178 6815 3259 635 9109 6676 2356 1267 4562 7871 2439 1003 5121 5390 1717 512 667 7569 708 4023 6190 4317 3967 7330 7461 4892 9114 8513 3016 3173 7362 7213 1742 1011 3180 3401 1398 7576 8154 5358 2644 4920 7588 7961 5259 4603 7610 4974 7056 770 6746 4987 2440 3210 4464 1444 4619 5083 6505 1285 7684 6047 80 2687 3373 9851 3590 4225 1306 7226 8578 4419 4267 2882 4398 6422 5378 9397 4742 4389 4758 7506 5626 8054 1893 3105 9587 2141 2229 5220 6610 5509 5824 4309 3913 8267 5226 4408 9614 3084 731 5765 9977 719 6533 9329 4328 2909 6076 2219 5134 8515 7794 7313 5916 3982 3327 474 1784 4627 9718 5001 7287 156 4935 3542 7843 5217 6760 9478 734 4428 6573 7986 9763 2373 7547 4618 3081 7433 3747 2651 309 9318 9046 9622 9546 7767 717 7851 9011 1471 6571 9171 9409 9537 2951 4930 9423 4655 8931 4145 6940 386 6335 6509 696 6954 801 7692 7123 9770 9252 6250 324 6381 5129 8176 8291 8285 5993 7000 2874 1397 4551 8888 1292 2109 1525 2482 263 5692 8309 2537 476 5934 5408 8173 4313 2772 2747 5043 9566 1894 8233 9211 4623 6303 1943 4686 8249 3817 5665 9139 9976 9489 5894 3310 6635 3818 983 1722 2103 6168 2169 2230 7053 6127 3992 6267 2594 4283 8517 9959 7026 394 5342 5881 2040 7873 9452 7637 6679 9601 6537 3006 619 4021 2854 5331 9395 6792 8246 1227 1263 3551 6906 418 5325 1818 2496 5760 441 5751 3513 8045 9295 9371 8391 9965 4157 1659 9819 7790 1493 87 4372 9197 1624 3642 8497 4845 6850 1199 7497 6915 9669 6136 911 9405 9915 1455 9122 6151 7215 8616 546 1228 544 2824 5617 152 5078 430 7963 9647 9669 5380 6970 4481 6679 627 7348 559 8354 7929 1209 6762 8288 9141 3971 5677 9474 4618 3026 1317 6362 4409 2913 7843 458 9159 187 3156 3323 4697 4929 6799 1859 798 394 7709 4155 1816 8853 8748 4738 1679 4067 206 5983 9369 6528 5707 6486 2874 137 2351 8050 7055 7742 7697 1031 1835 6116 9893 649 9708 5429 5689 8105 7777 202 7124 7711 6354 8996 9274 1614 6967 6092 1301 1375 3109 7385 8854 9906 6326 9650 2383 4202 6700 4071 9760 5520 2039 643 1628 7003 944 8741 69 1882 8013 2556 8327 4412 2787 5376 3068 666 9854 3909 3763 6471 7692 1902 5289 2511 3242 9967 4839 414 9285 9717 996 5289 1989 1254 4343 6766 730 9886 5793 7940 8145 7522 8303 5628 1349 2055 1139 3951 5115 3917 407 4003 6167 8765 869 8195 2905 5634 2480 9720 6364 4258 5453 5806 5219 2848 1051 6573 2004 820 4259 5705 858 310 7848 910 2127 8723 3706 3140 1719 2498 4719 2750 2204 9877 8557 2446 7635 6392 2114 7390 1781 889 5148 6445 6612 2947 733 3907 7603 2358 4982 2002 9836 8492 6134 3783 5477 8273 9878 8793 956 6800 4324 3410 7630 3013 8113 2998 44 3740 4784 6233 3799 2250 8888 7761 9195 8245 6938 2432 903 1956 5064 1934 8607 5529 9017 4907 1582 2844 4490 989 160 4462 4592 3370 1497 6612 1388 5 5515 8802 8417 6112 6571 818 4298 6008 8887 308 6399 9788 4502 8528 6707 8186 9433 8704 1547 171 7466 7989 2221 4700 3698 6131 6207 3031 6154 3427 4186 8340 3657 3084 6485 2877 6820 3626 2638 9986 9623 7847 4906 2774 2196 3287 782 3635 8664 3830 376 3908 6397 1584 2572 8876 6572 42 1156 1069 8088 8810 3582 5395 8996 4246 8759 9757 4983 36 8762 8442 6429 3763 2513 5324 8786 4532 9945 2863 1777 4644 9322 1852 9881 4331 875 6858 8042 2408 5413 1098 6551 4836 5831 358 2978 879 3369 2264 924 3023 7370 527 232 7239 4763 18 1812 2223 547 4382 7947 4522 6384 5673 2746 7680 4798 5216 8039 3274 9761 6764 1754 423 4597 6962 2526 787 3635 5374 8840 1309 2892 4428 6877 7925 7834 263 4210 2579 8468 9181 6241 9660 6805 1973 1174 6627 2835 2563 7554 644 3066 7533 4894 3999 1505 8886 5349 2646 2748 7891 4876 5204 1916 7957 3068 25 8946 9412 1048 4799 3597 1035 6326 1158 8534 4845 1642 961 2121 5627 433 3621 2268 9691 2683 4522 5216 3283 4887 6632 8891 1235 9496 8987 5493 4904 3144 5984 8681 6380 9004 6870 5626 1747 5603 650 5230 5603 3402 2500 590 8833 3498 3830 1633 4823 3182 4673 1409 256 4531 6926 435 3770 2500 9425 5111 3463 734 3602 7712 9183 8892 9554 8837 1982 6974 8282 8831 6610 7147 2922 7344 3875 5376 4430 14 1807 8240 2558 8312 9996 4855 9936 7379 2759 7873 2328 4911 5588 7734 4574 2763 9099 7580 6860 4896 6201 3860 4394 5076 5509 3622 3608 9923 1851 8192 5991 3081 4937 7537 1746 2736 1152 5584 2933 8117 4138 4061 6798 2608 3745 483 8140 5058 5018 2016 7776 2702 6262 8024 5898 9687 3764 6934 5976 8628 1203 6063 2178 3399 4979 5955 6243 8842 2849 9941 4805 5650 7302 9463 683 9230 9192 6452 8857 6996 7535 450 2680 3882 6180 4960 3091 2794 2434 462 6748 8907 7060 3605 6634 840 8510 3370 1325 980 1685 9635 6939 8145 2986 6923 9965 8292 6220 3577 5128 8560 4006 3341 2565 8908 8577 6638 5545 1275 595 6704 730 4950 916 4473 8882 578 8901 8145 8644 8234 1770 6703 7630 1521 8779 5625 4929 3473 1264 3121 8193 9911 4183 2294 6010 6439 9200 6319 1516 1333 9972 4694 1267 7654 41 3917 8313 221 3330 5275 3775 1710 2988 2061 415 8444 2676 9960 1725 804 4165 9525 4041 8188 4837 785 8110 6220 6133 6045 4871 1355 9144 5131 3495 603 6949 8027 2757 1426 6050 2855 6958 3124 5850 5293 2605 2994 9054 8511 999 6543 3522 9044 9651 3839 4193 7519 6599 776 2213 2805 6819 8899 8502 4130 9967 1286 802 6246 3472 258 4702 7769 8910 3905 7614 6125 899 8947 2896 8381 6303 9129 459 2872 6827 8036 1594 5798 5155 4693 4693 3650 6101 8623 313 4178 1550 7193 4186 4836 2756 6132 5393 6992 7766 5381 1862 3910 4281 5305 6878 2482 6588 8375 908 7609 2732 8963 3070 3037 7569 3837 3314 2484 6373 7114 3042 9320 6493 1278 4091 6262 1354 489 5195 173 8422 556 4646 3393 4973 3635 3139 677 2830 2090 6107 3714 5221 7187 8280 3569 3301 4367 4371 7910 7619 7369 6139 5994 4315 6811 9748 1305 9741 7388 7152 5838 7876 6784 5671 9862 463 4950 9702 6690 2946 2572 8572 6899 2307 1596 5238 5768 2068 8165 6369 4039 9094 4610 7890 4050 1884 9386 9521 5604 6498 4552 1100 2309 2282 8709 2306 8083 2598 1596 9008 4651 3911 5640 3719 9266 8987 1731 8386 221 6298 7776 1084 9729 3736 7558 9317 6427 4955 3320 7623 4685 5346 3373 5853 1072 1289 3803 9384 6181 3297 2290 7956 9354 1441 9430 3777 1346 6008 5386 2390 2396 517 1900 2994 21 4594 7042 3503 6317 129 5810 7967 4561 9271 6630 7296 7218 9511 1485 6239 3734 8569 3010 585 6293 1290 3378 9935 8382 3925 1419 6446 426 719 6214 2565 3972 9523 3618 2632 4945 1285 5922 3218 8583 5429 1143 7092 7309 5536 6878 8370 8796 7765 9890 4381 918 933 6294 4666 1126 3968 9804 9543 8332 70 4061 9213 3438 7248 9767 5029 3325 3939 7193 7392 7112 2309 4560 7717 8408 4290 2745 7996 416 6146 702 9009 5443 9250 8935 5811 1774 9797 4587 3458 6709 1772 4624 9011 2118 1533 7587 618 8592 8469 983 5897 323 9920 6325 4977 5561 7585 626 7664 7992 9718 432 9018 9754 2297 7178 5001 7346 4752 9068 4245 4210 2053 4203 9567 2916 2718 8413 2917 8666 1415 8728 4344 7107 2090 4947 7348 6888 6423 4998 6143 797 4314 9185 3285 1786 9709 3831 4088 8247 3995 9364 939 4665 2794 7099 5441 8978 8965 2629 3144 9349 817 7715 3181 6957 6436 7871 5009 9960 91 481 6664 1095 9159 6948 5122 6132 5841 8341 8092 2575 3715 8779 7924 2182 4266 2 7798 5405 5980 3448 4697 2401 2030 8717 3416 9873 6629 8074 8098 8570 9711 7058 3432 6507 6001 2269 5884 9277 6977 6240 1447 8474 8272 864 2336 4900 8972 2555 3798 4448 2867 2025 7502 1054 8439 5053 5717 1478 7798 6987 3501 706 9133 8116 6724 1694 4761 389 419 3555 5665 6952 761 6703 3939 3203 923 9839 8523 3961 7956 842 6699 9424 5912 441 3695 6947 5332 8403 2823 713 5840 1301 1107 2481 1600 3651 5752 9336 397 4263 6484 7102 4403 7148 1567 3029 4853 7238 416 6875 3323 4230 805 8960 8229 9963 1360 4174 2465 9912 2952 6566 2918 8037 7817 3933 9641 2058 1466 9282 7233 9260 2531 9277 183 6567 5978 9537 2418 17 3589 245 7084 170 8924 6713 6186 3264 6971 8905 3421 8154 7563 4745 6213 4367 2661 4880 2757 9627 411 3419 1858 4352 3775 926 4815 9955 9835 7812 643 9963 3884 2136 9041 1776 7117 4942 1928 381 4797 5619 5652 4615 7527 9206 5959 6148 5668 2612 2507 4624 7349 6513 4610 6595 8208 7617 6740 9318 9583 3048 6547 3541 441 8167 5559 8447 7198 5528 3809 7721 434 9970 9239 5195 2883 3566 3295 2894 691 9545 4930 8546 6421 4064 9874 2420 5340 270 2595 318 6028 3987 6911 8097 9412 6786 5648 7298 4761 1869 444 8554 7526 646 7178 1039 9049 98 309 9310 9516 5226 1460 9256 1031 8365 910 3169 8498 6284 745 9226 6680 4004 1769 8978 17 8129 9742 299 5273 6188 7548 7479 9612 862 6326 7221 377 2566 8207 7208 4435 4860 801 3930 5897 4780 8174 381 3316 2287 897 1418 9487 3640 9251 6258 2379 8927 7474 3133 8525 3046 6362 7573 257 7370 2793 1025 4857 3399 5302 2588 1235 297 5669 5638 9459 3505 6410 423 2618 5837 8193 223 4818 5579 3988 2244 4462 3557 4594 9596 3701 1473 1987 1111 2934 3879 1279 1392 4293 6359 9776 6766 8713 1999 9110 5425 7312 4090 8415 3770 5918 914 5295 4501 1410 7994 188 9143 5123 9075 732 104 6518 2181 7691 8940 886 2165 7936 1810 2313 414 259 9105 5011 9145 5636 3269 342 4428 3882 8776 8813 6180 7188 4569 9833 3237 7425 2205 1774 7067 6121 7531 3387 308 6464 6423 1319 5704 8296 5094 2171 1796 9190 9466 7879 200 7745 4709 7586 8172 5895 1370 3364 1052 7542 3984 6192 460 1764 3675 7117 9615 1673 9517 3748 5712 2549 1712 8715 8163 3184 986 2760 5527 8386 2203 3617 7105 8623 8611 1043 222 7717 2562 1677 215 8765 3056 2882 8300 8703 346 5216 3452 9676 1613 5794 1204 5672 9043 9316 102 410 8489 7893 8012 7328 3912 917 1438 4483 6577 2865 897 55 9515 7806 4780 7369 1853 577 9225 3529 9297 5158 3640 3711 5497 3966 2576 7555 403 8180 8307 5483 5738 6507 2090 4741 7803 1829 2915 523 2877 8441 4777 3886 341 7514 2279 798 2876 5416 2267 1850 5274 6706 8866 6218 3862 2417 6477 4927 7996 6922 6141 3909 5522 3462 4502 7054 9673 293 5626 9620 9351 4875 9880 5069 9911 4675 2139 2804 4602 9399 1524 4102 4305 6391 1488 3047 9505 5441 8869 1033 2335 4020 4068 610 1445 6490 6300 8383 1295 1043 5767 5976 9098 2973 1453 5139 9950 7435 1401 5526 4282 1377 3460 5130 2756 7145 7406 4254 9239 1915 7621 7888 8651 6343 4303 6483 3901 8639 4574 7509 5890 3649 1270 3108 6284 8711 4552 2597 8956 2573 9487 1879 3796 5203 3290 1723 5605 907 1458 9075 4825 6255 5029 2576 5568 1599 4778 5729 2636 5492 5587 3748 2106 6349 3861 6247 3565 1111 6657 9401 574 6948 9528 8017 9916 3247 9057 3306 8386 2716 8935 3100 5501 1579 3394 9776 2839 7420 783 8719 1990 5879 5788 1194 5489 5301 9816 4411 4941 875 1786 239 6860 9843 6902 7901 7759 6050 1426 9261 2255 1178 4800 2901 2001 4145 7528 3944 2832 5580 4628 3511 5745 5630 8735 9610 3694 6086 3100 1704 2183 9236 6512 9641 8007 4764 4168 4911 111 9391 8431 5201 3445 5163 5500 8340 7240 1049 4317 4304 3427 1238 2834 5695 563 8031 1264 2943 4013 2522 3030 5472 3586 9739 4603 3071 5677 4615 818 1217 2912 8330 2950 1204 6761 3220 5315 7376 8943 9921 9050 3086 6225 3689 5401 4208 8522 3347 3877 6649 3810 7519 6674 2931 9852 3852 1373 1498 7886 2707 7510 3844 7816 8243 7674 422 6589 3733 2964 1041 5983 1794 9688 9151 5696 9606 3540 3791 8892 5136 1501 8721 3017 8851 7512 6242 89 5788 180 8291 7952 9350 9241 1912 7200 71 3490 4247 9221 3266 9849 9380 5314 2568 8510 4480 5581 318 1869 9713 772 2892 4011 3453 3508 1223 8754 1250 4912 549 7736 1715 9426 8478 1146 2215 4845 4216 2297 1605 6063 3937 7971 5642 6364 2743 9128 164 1938 4019 4356 9673 1356 3918 9856 8103 4142 1855 4522 3055 5238 1738 9978 9142 4127 7505 6739 1936 9002 5833 9248 2582 6974 2612 3530 3274 4853 9628 7866 11 1278 7521 2347 9542 8341 9865 9407 2088 8197 4474 3156 6852 5001 6303 6432 4249 8472 3845 9740 1725 7774 458 5976 3929 2496 9044 6131 4594 8412 9153 8418 8040 4045 5619 613 312 2341 1647 4652 7185 7130 2690 2078 3605 7801 6975 269 1854 6337 1855 8815 9755 9389 6714 9561 5917 3282 2233 7426 7676 6603 2471 7273 1878 8302 3598 6494 4147 8282 5882 1542 6983 4103 8228 2336 172 7500 3629 9820 5028 2782 8500 7729 7445 5510 6031 6727 7073 3624 4778 4541 5045 8112 6221 4997 7607 5740 5414 5625 4283 6509 1500 8913 7053 6383 925 2101 806 6354 5136 2083 4205 7389 7218 2627 4590 8901 9905 1590 884 9581 6203 984 9289 6125 5741 4596 3496 4305 287 6412 2432 7090 8796 6193 9655 172 4104 1595 4839 9757 2761 1099 6803 4687 4880 1109 7437 150 6007 5381 7557 5506 4832 2092 4366 2514 8752 9423 4421 3949 6324 7319 9797 4148 4630 5439 5331 3430 5494 9878 3587 3266 7542 2717 3581 1913 4243 5707 8205 8988 3104 1277 8016 4998 7663 6253 3770 9159 2819 9500 5845 9799 7449 1485 7021 4412 2775 6701 5834 8095 2148 1379 845 5414 7055 4699 1040 2676 8074 4820 3272 1402 4682 6542 5849 223 648 4989 6972 7021 7889 2262 5574 6204 9628 6322 7836 9562 1061 1511 9259 3804 5598 8698 3449 186 5098 9672 1368 73 9421 5645 1274 5602 5018 7401 9790 3143 5557 9450 1750 4149 27 7176 4027 7803 9016 3073 6831 5920 8375 8056 7449 1576 4248 5075 2903 6961 1472 6845 4778 5323 6174 8516 6268 4607 6613 3079 576 9805 3051 9382 9389 8410 1327 7477 4340 7862 6121 637 8895 8482 9994 4659 840 955 9935 6835 7230 7447 7850 3912 2443 7895 4136 2477 8350 7749 9135 6821 5118 4749 1 6689 4040 6672 9936 705 8588 4783 7707 563 8311 4065 9424 1071 1805 9925 9708 1401 6672 3388 1787 9971 8424 6344 4990 4346 6230 1273 5098 7747 6341 4944 5903 4298 5175 8895 5074 8920 7934 3158 3018 9146 5306 2496 991 802 8135 9636 6526 1430 2064 9644 6625 6546 6760 7303 7587 2835 5339 9521 3233 324 5507 4368 2030 3527 8250 9169 1483 4389 9394 4752 8691 2579 2014 9066 4449 208 3951 5924 5377 434 576 6610 7107 1863 2088 7184 5846 4414 4641 9756 1241 4228 2497 5975 8669 8541 9766 4449 4719 6821 7429 1389 8597 2333 2310 883 476 4426 94 5624 5423 4695 1628 8782 4500 9052 3631 2098 44 9204 3921 5869 6759 4814 4997 1136 2553 9674 7311 5971 9051 5686 2504 5364 8132 6674 4298 1240 9889 6447 9888 722 5720 7420 9965 6419 9872 5792 4767 4692 1488 8450 1959 2672 8142 9273 1757 8101 6432 3214 338 7738 1842 7975 5284 7551 5620 8463 8907 6112 3295 1806 8914 2184 5406 7100 8851 7854 3621 9187 7445 6253 6442 5681 2254 2361 3767 9096 1903 9117 2159 3002 1880 7153 7472 3584 7521 9919 2360 5524 8032 9266 7789 288 783 3157 5516 1553 6424 239 8009 6741 1978 4846 4242 8385 6793 2958 1641 9640 1972 2045 7771 8672 6736 7605 4595 6684 6720 1652 7015 9285 5351 5046 8963 7668 9878 8599 3913 2504 4515 6623 1183 6860 1209 9434 3169 4657 3839 5527 3073 1887 9428 8898 1629 6614 4150 9531 9323 5031 6901 8265 4600 1933 2972 9170 1089 4828 4191 2641 8056 9008 2505 7643 1844 998 5771 859 2356 7101 1319 3874 2367 958 1892 9464 6534 965 1980 4455 7799 5136 4516 4074 4051 9730 8594 3816 4983 6414 8733 1213 4510 6824 4512 3288 7042 9819 8206 9956 1128 3077 7354 5180 5996 2602 4465 7383 2585 1685 9548 4345 2785 8925 9336 4060 8422 3377 7245 7320 2014 5761 3504 7279 7809 3339 7736 1987 8271 603 5027 9224 6900 3138 2790 4368 6848 6452 4164 1817 6144 8737 8736 8898 5600 8405 4027 7221 3241 2279 6181 6041 7782 6641 5113 2929 5524 1295 6063 8930 1451 9749 7901 7962 7311 5662 6064 7867 268 9490 8533 966 6059 4518 5449 7382 3821 7862 117 6119 8383 4230 410 5022 4854 3052 3127 317 638 7371 3146 3721 7167 4113 3383 3118 4827 1627 440 9501 9151 3844 8132 2185 4259 2647 3301 7895 4118 351 6881 6714 9674 2263 9469 177 1571 8307 2788 2008 6051 9743 5976 8391 5599 5696 6748 8813 2131 5691 2441 4037 916 3878 7141 659 4226 3962 2106 4085 9761 4219 8930 603 2222 9188 1938 3159 6866 5322 2283 5619 9885 3713 8253 514 9335 777 6093 5734 2877 9263 6493 4649 421 7008 3568 1843 3944 4139 1280 1060 9477 9786 6871 5347 6989 8381 2823 6484 8947 2255 8246 3720 495 600 6421 8801 8597 4885 5582 1395 6756 1113 5081 5427 7056 1728 711 3473 9664 4701 5129 3994 9434 4828 5784 8796 9582 8692 8074 5112 1972 7804 8686 1683 8543 5502 493 3301 16 2400 9213 3113 306 6077 1918 541 6002 8605 9746 9901 6761 4503 7279 695 8654 7976 1555 1833 7773 2198 3869 8261 1775 6527 5043 7314 9892 8660 5471 6315 8846 3464 3882 6965 5907 6424 1468 7823 9223 7883 1087 7342 6393 4253 4076 8739 4198 9620 8229 3599 4692 250 8473 7874 9927 5093 6654 9830 990 3343 4050 4402 5254 8827 1279 8913 6758 4436 626 3229 1919 2756 2913 4795 3431 7111 14 2992 3370 4079 6585 4281 9922 7907 5757 8921 4635 669 9554 5497 6951 5020 3876 6261 2778 2377 1371 5029 8064 1041 487 2643 6269 5085 8170 6766 3271 3403 5167 6970 290 8119 146 5250 3499 5585 5397 9251 3148 884 9987 1810 9851 7947 4929 1986 1624 5457 7731 3676 5421 1320 4344 5699 1728 3696 4100 3856 4569 9280 8636 7586 9695 2020 6371 341 4838 136 4844 8490 5138 6648 1092 5385 657 895 3192 3215 5489 9604 4503 9010 5881 8392 273 5172 5705 5545 8695 5363 7785 2726 8327 5360 7383 7758 214 8634 1258 4448 8339 4484 6770 5723 4991 3405 3214 9391 4618 817 9821 3198 8291 9892 5420 3131 8073 7521 7157 6050 2497 1848 4888 9068 2575 6632 3773 8505 4356 4063 5515 2955 8124 5098 8451 1193 9210 1202 3489 6184 3242 1802 7706 1810 7190 1087 8706 287 6096 6925 8919 5955 9659 3921 8598 9260 9463 9316 3863 8619 3440 7324 2874 1541 1607 5447 2310 2404 3566 5016 1773 2054 572 274 6013 2051 9522 1525 8635 9823 1797 490 7631 8178 9843 9649 6290 3077 3829 6763 5903 1352 7449 314 797 4122 3586 9604 6759 5619 6764 9192 1926 5515 473 5752 1148 655 7528 4026 2189 789 9299 7951 321 1034 7431 1798 470 4072 4256 6543 1213 8030 897 3636 6632 1666 3608 4453 4454 671 9107 773 6969 4882 8806 9412 7067 5294 698 1123 9410 9923 8658 9484 5335 5442 7318 3447 3172 4704 6537 904 7043 1230 4424 4446 7006 4290 2279 3168 1062 9789 4845 8504 6684 7003 6104 1610 5594 3623 9256 3619 6358 4679 9457 7952 645 9147 2761 9873 5417 4340 4757 8424 766 5793 5726 5016 6354 9533 845 8998 3121 5799 4070 8807 7548 7504 6908 2919 6219 3269 4545 8663 3056 4164 1720 9447 153 5043 1379 2603 4409 1716 7224 3980 9457 299 9333 8105 6993 8084 1484 9874 1371 7107 2867 1711 785 714 2666 7987 4575 1902 1047 34 3231 7673 770 9870 7643 3963 9728 2941 7752 8427 1596 8426 9633 9125 4966 9139 9243 7102 4006 9000 1060 7637 477 4931 8387 7472 2741 3911 2833 1865 2432 9316 9742 8890 1980 759 3858 3533 9385 2 6080 2004 3961 247 9291 116 9927 4205 843 7859 2102 3266 2053 3517 2878 1146 9435 7708 9157 675 5903 798 7418 7704 9979 4425 444 5458 7217 910 6153 5713 4046 8007 8524 1075 3560 8951 4691 4781 4710 7079 4588 6026 6670 8121 8878 610 3036 9255 5372 7764 569 8948 566 4882 7835 250 4706 7569 9689 7528 3191 4828 2952 6103 2217 2523 8234 1818 9197 5956 433 4154 7183 7588 3745 751 7518 3875 2917 3908 2044 2297 5297 8668 8051 7271 3698 1443 1065 7565 9283 7474 2555 4903 1203 6737 4066 4924 830 9754 2154 1137 3053 8500 88 9565 4580 6850 8272 9454 9540 5655 6935 6075 194 1539 626 3214 8904 2263 6471 1055 1406 6243 663 1397 9661 6857 6705 4384 8203 4618 2872 5843 8511 3757 9595 6636 6833 1449 3295 7962 3951 6217 7337 3442 6617 3438 2308 4348 7383 1632 3082 7189 7862 5422 3046 4072 4657 5310 3833 3783 3297 8151 1942 1939 3225 8530 8485 9226 1984 6005 6049 5870 4363 4339 306 2349 8501 1127 2332 3334 2733 8249 2893 589 3130 8063 1567 9549 6987 5544 9464 5058 9969 6032 6306 5814 780 9560 1253 8379 9320 7435 4448 147 8021 3743 925 2755 1350 4001 9481 3176 4374 7935 7776 236 5868 6328 4073 8050 7903 6175 4719 3261 8092 9531 5390 9511 9040 2693 151 8800 259 2319 4421 7765 7747 1957 8076 1275 7391 6577 215 7880 4005 5010 833 5848 8539 2114 6704 5500 4218 9684 3268 7608 130 5441 32 2692 755 9538 7629 8439 3968 9135 2760 1723 4308 8104 1259 8995 8183 1589 8832 8368 8382 3425 6381 2011 9878 7661 2792 9469 8382 2437 76 4164 9741 2443 4763 5032 3220 5392 8172 3783 1516 5013 2062 7208 2570 7710 7587 2633 8374 9611 1170 8797 1155 9334 7491 2652 8453 8095 8071 8551 172 7368 1373 42 5968 1948 2740 6746 1680 7114 6338 6465 5242 1484 7592 262 4965 9750 1355 5753 9700 5743 8699 9843 9648 9273 9787 7881 4652 9893 4595 993 3447 3210 7462 5972 528 2209 3342 4899 6726 7322 2836 569 5391 5110 5096 1196 9635 7602 2088 8445 8926 9399 7481 2081 8998 349 2593 9999 1608 585 4449 8304 4948 6398 5357 2428 4593 3255 3077 7503 6219 1416 4041 2960 8830 5878 3579 5001 3783 9541 3482 1968 9474 9458 3899 4907 6804 694 2957 9917 3232 4181 4813 3386 4002 376 3413 741 216 1328 6722 2094 9981 2586 264 8659 1031 5819 1030 6543 7396 1186 279 9417 3844 4695 4679 720 6366 8206 9128 9319 839 8432 3059 753 2994 9987 595 6646 1258 6692 9881 1713 2587 1153 1508 8172 8564 1275 5968 8179 1690 3634 1614 5910 8299 3205 9784 2119 903 8149 5185 9778 9433 8508 3557 834 8229 4089 956 4944 9524 1093 2329 134 2 5160 7242 1148 4509 9678 8402 5052 1173 8673 4355 4954 2860 764 3717 6171 1830 5448 353 3423 639 308 1774 6106 9640 3323 6900 567 5927 7732 9554 4689 4195 3215 9566 6841 1645 7972 6864 342 3469 5136 1953 247 5984 8566 4021 2029 1884 2433 9812 4569 6607 8687 9451 1105 7633 3699 7689 4480 6437 4913 313 4356 2697 3586 2512 7994 3970 9127 7068 5761 3381 7476 8801 2100 5142 4704 9887 3867 6665 9112 3886 6186 6745 7296 7490 288 2307 6078 1149 927 2332 525 6839 2582 6923 3085 6753 6632 1156 5057 3970 803 4313 2553 4932 3409 1053 4131 5725 6536 896 4910 4939 4744 431 8112 2088 4084 2675 9560 7527 2232 2074 8942 7211 3235 1070 8274 5711 623 4666 959 7608 6945 1631 1381 3724 2614 9914 3313 9590 157 5451 7316 7894 4484 6 3338 404 64 9384 7572 7974 8691 2019 3375 3483 8958 3672 3028 9605 1631 1469 7350 103 5526 9718 5862 7723 1907 4003 4418 5291 1280 2161 5121 5341 9814 8013 3095 8129 9678 7363 7468 9666 3532 8486 3013 2546 850 4185 137 4857 361 8484 4279 4732 1616 7373 8824 5820 9137 21 213 880 7646 3483 4003 2006 9963 9394 5403 6485 6129 8307 9478 4224 6009 1464 3110 2127 7088 1129 4144 1536 8541 6191 9505 506 4019 2159 9344 7983 3673 310 6263 2261 8705 1252 4254 9328 3542 3542 4801 2201 734 3259 246 8413 7677 3127 8998 8968 1729 4443 4846 7429 5993 3327 749 5427 4585 8044 4825 8733 43 7648 5903 3342 8537 6845 884 4657 2608 6679 196 8159 89 3705 7243 9996 3689 612 4120 649 7189 139 8723 337 2003 78 5995 9300 6285 8188 8336 8884 4025 7799 2010 1461 9077 1347 8569 1 8246 8494 2153 7845 4363 2289 827 8057 5674 2540 709 1013 9700 4934 4164 1125 3364 4563 8460 1010 7302 8178 8062 1674 5615 3713 7031 6150 7130 9981 578 167 6947 6598 5327 1485 5373 5678 4270 6528 9684 695 9765 3653 6221 6646 5694 6354 7449 9122 1382 5257 9117 1390 6629 1886 9060 1697 5526 9549 124 6995 7249 121 2064 8985 4013 985 5507 4190 6736 334 2580 641 4922 7987 7689 5486 5272 8153 4141 3643 4513 4822 2521 5946 9074 4951 1114 6621 2356 7024 3068 4445 140 4644 5510 3967 8410 5777 9080 5168 4655 4173 6485 7531 6072 3039 2464 5952 9802 3706 9961 5407 7517 6903 1469 6271 7258 292 7105 4969 1521 5520 9184 6206 6142 5275 331 1769 1092 5216 6851 6362 9030 8001 4853 4073 3218 9884 4143 8198 5214 1251 9615 5696 1902 1706 4685 4799 7659 1791 9755 5122 9014 2392 2322 6610 2640 6764 3089 2211 5564 3208 8937 1684 1695 2692 2734 7495 7802 8184 9036 2270 3120 1941 9641 8981 3506 19 7445 5739 2339 4574 6735 6771 8294 2570 8846 2934 4049 2830 7131 4861 7573 8504 5018 4889 9901 8224 622 2401 6998 4771 1422 3284 7228 4819 825 8246 5987 2842 355 505 1560 4957 6036 5286 66 9825 2125 7818 4864 9426 9203 6506 9406 7797 4033 3114 6796 9521 13 845 8522 8765 2001 1964 1538 9868 3832 5437 5899 3709 4404 5495 3457 3664 9383 5052 7607 5215 2264 3412 4564 9660 4031 9734 5861 9087 8752 1248 9097 9469 9517 7237 183 4397 6351 5901 3714 2069 6631 3091 672 3033 3599 2226 9069 424 2658 6942 931 2095 6825 7073 7313 2131 4622 734 9328 9207 1086 7065 6449 5784 1805 3456 5571 9661 2261 5081 1704 7 3999 4564 6248 2353 8432 8227 5019 7444 9328 9962 1494 4742 745 4057 6832 1528 8993 5428 7854 9900 2339 690 880 9240 4237 5178 8194 3951 5903 9328 4405 5286 1819 1594 1247 5191 7723 8762 1497 1247 8602 6258 3254 9833 6310 4979 3743 4089 2684 3185 1843 8761 1269 5222 9827 432 2961 6796 7503 1823 7906 5950 4440 7978 1693 4502 8276 8437 6161 2959 3044 1224 6007 4817 7958 9570 6012 691 9701 3557 7444 3729 2554 4514 5274 1225 5419 3096 9126 7910 3497 4370 4876 7736 9528 8702 6357 4062 4453 7799 6023 4431 4753 4291 5314 5516 9499 3345 5974 6154 2921 4217 5443 4292 5305 7299 1703 1321 8103 3571 9367 3182 8303 4622 4524 1692 1585 9142 8360 8469 8227 5428 7864 8244 6053 9763 9351 1386 8540 4483 2722 4021 5896 6840 4593 3862 3234 5771 6764 4869 3227 7941 3143 399 65 5117 5583 9335 9214 8977 2745 7802 8475 6827 2008 2502 8673 6532 3446 2555 854 9508 7680 5897 2117 7853 3995 3166 1581 5540 8795 501 3182 6948 766 5977 2837 6991 1111 7344 5842 8401 4532 6674 1328 7661 4638 2848 2581 3881 6815 5150 100 2230 2954 9477 7488 1752 9391 4409 7504 1982 1155 6021 6217 6476 8832 4637 6497 8101 3791 3775 5704 9027 4367 4651 2802 513 1880 1147 9409 2239 600 5244 5848 9834 2873 1161 8057 447 2577 2846 1033 4281 1080 2441 7554 2151 2502 8580 7920 4813 1488 9289 4879 9811 8833 1665 6236 5566 7971 408 545 5221 299 9629 6160 7178 2716 6924 1283 1107 5507 831 2991 6187 870 9021 5596 7424 4764 1371 5523 7907 5407 323 6763 7884 7560 5237 7672 8013 5874 8317 2571 9350 3745 217 3697 4160 9395 4257 8611 1470 5827 1137 8740 6126 9292 3929 1478 4608 5119 8726 2304 4023 6464 4447 2337 8285 6021 8202 3271 1625 8110 7036 1151 1904 5089 8580 4644 2545 766 1509 1973 3833 1645 253 4808 9878 3652 2701 3339 1979 6524 6365 5052 7511 9276 7009 933 8692 9426 3221 2231 9485 9033 4377 9584 2339 328 9477 5548 2794 6276 6270 7395 6557 9032 7001 6926 2091 5366 422 2343 2096 2855 121 1 6076 7432 4249 403 1122 2468 2238 6316 9397 8922 1129 9324 5181 1709 5467 2956 5754 7415 62 4897 6428 1522 5228 738 6252 5675 1304 641 2987 1943 1380 3826 3683 5254 7542 3375 7059 4855 6443 1296 8930 6670 9382 7822 2436 8673 8908 4559 9201 994 9589 2964 8580 2573 4473 582 5923 2047 8520 470 7309 4733 9375 5827 8682 9166 1965 1324 7972 1378 1555 1242 1296 9637 55 4781 5360 471 8043 2083 659 4089 4208 6834 6859 2092 4314 6217 6539 6134 2718 2621 2727 9961 7464 8890 3301 284 9994 6055 8437 1270 6194 5137 7575 3116 3845 1767 3909 9630 4251 6399 5770 3279 6059 245 587 1989 2798 910 6617 8972 5788 5742 6341 4036 1811 1204 8177 931 8353 3083 9234 8798 7211 4287 9960 3397 5932 8840 8291 7439 273 8266 2527 4707 9335 6809 1080 6374 5250 6840 8338 1147 4206 2459 1641 2559 1943 7088 7578 8107 4878 5647 6703 4980 486 7163 6382 5703 1404 6857 4824 2031 4778 9382 288 1079 8256 9244 5262 9472 78 3139 2210 6207 1505 5364 7001 3036 431 8391 7206 3559 3657 6938 4357 3418 3160 8583 8722 3857 6003 7132 4632 450 1382 1623 3428 7351 8692 1783 6309 5594 7173 1652 513 5289 9993 7672 9956 5615 482 2725 6866 777 9978 4737 3845 1914 6084 3817 8417 9154 8658 144 834 3881 5422 8368 5126 7052 3446 9261 5824 5935 9238 9879 540 8282 3780 922 9348 6570 4733 3726 283 757 5606 9946 2789 1545 5720 5570 7727 8050 5479 5627 9308 2480 2565 2518 9772 5504 4814 9953 4282 7086 3858 125 7844 53 5862 9673 5733 6543 2767 2772 8050 2380 1802 4236 727 5391 9372 3508 9836 6054 7240 1771 9047 4442 1785 4413 7543 1565 1484 6604 9745 2061 1236 1306 6723 672 509 5327 426 3395 9846 682 8642 3056 6689 9061 5430 2959 7853 5760 8825 2646 2942 9159 9485 3131 2678 8017 5712 5125 9384 7403 3444 7452 2917 6924 5803 5350 8492 5289 9066 8346 4533 7859 2559 4858 911 901 208 4400 9388 9328 2494 3732 8810 9529 5652 4240 3550 7125 1734 2368 6600 8219 8496 3660 7477 1421 3254 8556 9383 1638 2912 9232 4482 1808 7613 4964 6756 9072 3306 5811 5002 81 3590 6597 7587 5268 6588 9907 8221 4188 2209 383 4604 5144 8204 8399 805 6155 1404 7085 1105 2751 4230 1403 8717 7442 9941 4038 2346 9261 3557 3858 560 3915 9582 6354 8539 350 6543 7267 858 722 4530 2943 4757 7812 1413 9626 7915 5014 3025 4027 2428 1845 1774 1744 1229 7355 9882 6254 428 1665 4875 4239 5842 6289 333 9626 733 1281 5577 2245 8684 2781 8721 241 6656 3897 9947 3931 8304 6387 2847 3602 1796 1570 8538 2382 3975 4559 4674 1188 5514 8988 468 9245 8704 437 6712 3097 425 5083 2121 8220 9194 5054 4672 5048 6659 947 3297 161 4598 4130 4804 3709 786 5491 135 8334 5723 6593 9336 2460 328 8627 7631 3991 2143 6533 6810 1877 998 7915 9343 2543 9649 9737 3034 1923 8041 8053 678 6682 9836 227 4501 3402 4965 883 6741 3960 256 8656 52 5295 367 5694 3795 3375 3028 5838 7777 6001 7994 373 6575 4904 2689 2400 1633 5209 9259 9177 5242 6371 6981 3461 296 3860 1332 479 9239 9176 8478 1525 3870 215 5227 3224 6513 3245 340 5259 445 3368 9846 4598 3791 7281 3136 6748 7193 6648 2432 7765 9246 3621 4215 4957 8015 4785 5000 3255 2529 7148 6696 8794 200 8496 1191 572 431 8625 7055 6264 3618 1717 9544 8815 6916 7543 1192 5150 1188 8255 7732 3862 6535 7809 8910 785 2716 150 1186 6601 1197 5023 720 3794 1866 6813 6720 432 841 1236 5818 6107 6641 5048 3723 8839 7262 6824 2049 5393 3103 4293 8924 4970 9668 5723 725 3319 3707 9297 1057 8826 2370 2847 6081 3844 1092 965 7509 4533 9476 7708 996 534 247 7855 2709 4460 5547 511 4940 4677 1943 8032 7771 2442 359 9791 9154 9291 1757 4712 8157 3580 3899 3819 9358 3266 7375 5646 2768 6488 6034 89 3289 2986 7337 3341 3005 609 4460 6662 8355 1840 7501 9739 5167 1847 197 2929 6801 220 3179 25 9933 5004 6362 4503 8415 2163 1057 7873 9379 6208 7655 4276 3685 1340 8179 8455 7991 706 9605 4170 489 6488 7190 1668 1775 5457 4829 8469 1531 8996 6213 3794 5314 2054 6320 9898 3122 770 7136 5658 2364 6690 756 7510 8952 728 9470 1606 8821 6525 327 2131 227 2398 7448 2116 3339 6573 6281 1269 7338 2666 7787 905 4991 6776 189 546 2184 5197 2572 3034 4095 7038 3948 7851 1305 5646 2364 2962 7245 8912 8783 2098 4768 1997 1376 9488 3178 5539 650 9015 8110 8827 7428 8048 9219 1117 7102 8047 4523 7031 4691 955 9067 1000 9994 3197 2485 3764 1258 2201 845 6082 5662 9013 1344 8576 5997 5750 9134 1262 6934 947 9650 2254 6570 2385 4629 3118 9720 1305 8152 3190 3026 3331 7658 4632 6042 5030 9272 9021 8440 2878 3572 8774 4297 5159 2939 2477 4894 4919 2522 8257 6462 7864 8573 603 9583 9864 1982 1201 4092 83 1104 7169 7240 7043 2572 7270 5478 7329 342 7994 4695 2241 3963 4216 338 903 6345 151 908 567 7288 9603 5764 2148 6137 1143 9989 8737 9728 8807 9929 6595 9862 6167 1623 2958 2235 1102 6126 8021 4922 230 3584 8236 9619 5678 7900 2954 40 6200 5427 3112 7234 8076 5312 1453 5210 2218 1882 9364 5607 885 254 3929 7390 8659 8362 6289 7053 2689 226 7099 9703 2553 9040 6482 4324 410 9876 2818 4353 7177 7493 5296 8533 6247 4986 8553 4526 1051 1129 6439 1351 9909 3681 7464 4446 3242 8073 6368 6647 6236 4793 8633 5538 7621 3799 5568 2854 8278 4461 4206 2036 625 29 5635 6166 2167 3706 9457 1252 8230 5943 1826 9808 4360 9337 1833 3880 6402 2614 2714 8681 4037 7183 2820 1876 8499 535 3662 3652 5680 5630 3627 8440 7851 1200 4067 9640 879 8702 4938 1836 551 9492 6150 6331 4359 5183 8763 9567 530 479 416 421 2268 4740 6157 8031 5827 2107 8737 6177 1959 1259 5430 3282 8275 5812 240 5851 8923 9992 9082 7991 1632 8319 2835 7399 8107 4464 4991 2511 5560 6441 1480 6542 9018 6236 8142 222 5397 2658 6144 8271 1872 4676 7793 1787 3599 1985 337 1679 8488 9823 4291 3168 3464 1135 7840 1702 4127 2171 2431 2570 3881 2177 4128 8391 4681 8137 3636 7476 2802 1195 5245 2597 1216 1201 5394 7073 3221 5884 9696 9442 3310 1892 8498 4015 5338 5046 6930 7054 3973 34 4740 9912 9405 7250 5370 8829 7825 9981 4564 5896 7701 152 4152 6740 3067 2038 4689 4246 9907 503 7308 1665 3118 2237 1760 7499 1499 4805 2808 6813 1081 9146 4958 7138 3217 3968 4504 3511 6244 3760 7888 2134 9155 3500 5349 7213 2420 7980 5610 6918 7982 6521 6411 9787 4242 3240 1895 6714 6972 7784 3952 9451 375 6467 387 3204 8256 7014 5485 6547 9660 51 951 28 214 5372 2434 2457 9842 3771 784 5087 4230 4157 1342 2727 7448 3143 1041 2827 2830 4351 9672 1376 230 7398 2119 6089 8188 3048 7778 2229 6720 1838 4461 5499 136 7074 536 5138 9008 2098 1835 2103 4582 7109 7062 8889 4480 3017 4873 833 6924 8950 179 824 4110 6837 187 9054 7068 7365 3053 9795 6874 3804 9058 3542 1196 8468 8903 2690 6858 4825 6226 9473 344 7655 260 2720 2916 2934 2396 4397 7045 8776 8064 12 8001 1172 5817 1000 8064 287 783 845 5375 5941 4769 7851 9756 9506 589 3469 6573 8889 8809 8585 607 1290 8152 821 7266 4217 6472 3655 5927 2545 5180 1784 7740 3499 7153 9010 1796 2148 1147 3589 1958 9308 7990 1866 8476 650 2205 5422 2829 8153 644 8405 7000 9034 1574 3623 3481 1746 6425 2638 9912 7670 2226 5053 7873 1537 2460 1926 8741 8285 3773 6603 703 8777 1720 9499 3130 9155 8026 6126 9120 2299 9280 8968 8138 4599 797 3871 3027 2963 3048 424 6935 5088 4207 6834 2856 7164 9124 1865 3829 4464 4816 9769 4503 6381 2513 6881 6674 702 8381 9143 8336 801 4920 1574 4457 6252 6743 8069 3281 9288 6369 9587 9727 8631 7215 4257 4427 1120 7947 4246 8004 2451 9645 712 260 6983 3020 3924 6410 9271 4907 8911 4617 5475 1683 4664 5064 1345 8341 7921 4926 7681 1769 889 8772 6615 9374 3740 9253 9581 6132 1508 193 4854 9967 3781 1330 3512 80 3558 2550 8539 6959 1973 4751 5253 7949 8634 4227 8264 3073 4855 2189 310 2617 1710 4578 3756 7778 4638 6892 5971 653 8256 271 9399 3196 5093 6911 872 9439 3205 3026 2875 2165 7241 2872 3981 824 8421 3545 4423 5648 6443 7233 963 6975 5525 9449 8698 633 5299 3796 8723 8872 5751 3720 2364 4949 3481 6072 2872 5043 6539 1997 9910 4505 4904 66 4084 2298 4104 7926 7809 178 9579 8443 547 8029 527 8647 6792 2664 3403 7329 2514 4810 389 9953 2538 5584 5365 1618 2448 2241 8628 2983 2048 9965 8515 7120 1278 1610 9933 8941 6152 4053 2339 6654 4640 5647 3056 5070 823 1007 3429 7605 782 2649 6370 7338 6796 1758 5624 6487 1259 1383 8158 4725 2420 130 9071 5743 2689 7742 4351 6897 9307 5482 1769 6762 6426 2961 1931 4527 9079 1747 5536 2685 220 7932 4654 9839 5978 7407 5677 5521 787 6823 1814 4148 9286 1879 7945 9077 1009 6123 1284 7233 4591 7035 7367 6411 4208 2701 8779 5013 1757 1699 510 5111 7107 2866 162 2937 5473 2112 4506 9377 111 6005 8218 6710 8397 346 7426 561 108 9415 7688 3746 784 8909 3141 3663 9466 2955 6975 813 6498 5941 1110 7254 9514 6300 8672 5153 110 2291 8518 2499 330 2594 3145 8832 8819 4550 7137 3723 7036 121 3589 3656 2626 9489 4536 2310 9274 2996 1174 4435 155 6203 6243 9574 2656 4916 4622 6242 4783 7308 6859 1969 3387 5276 753 2586 9553 7818 5770 3512 1907 6870 504 4236 9131 1606 3723 4593 5009 7447 5335 8978 1262 5234 6153 8164 2364 1633 2047 3885 5991 5631 9706 5863 7330 8827 819 5702 5934 751 9947 2569 5021 5589 2151 7885 6659 615 7002 1337 5964 1227 3542 9016 4818 3610 646 1041 5674 50 2869 1133 6143 1061 669 2693 8510 7829 899 851 9149 6755 8095 2134 73 6214 7866 5547 3733 1126 1775 5673 2173 3138 5756 7120 6711 6568 9337 5910 3314 9028 7804 9688 4574 2857 4841 1738 9737 3861 3522 4724 7247 5013 5792 6603 5617 9129 2201 3471 6906 4260 8672 5867 6790 8463 1063 9640 9321 5692 8210 8 6807 3632 3864 4958 2455 1304 8517 1548 2251 7945 3342 8054 7770 9987 791 6468 7683 3528 2087 3148 9435 9685 5424 6092 3603 4059 3731 9517 4158 1750 8780 6273 1385 951 463 6609 9028 1940 4839 4780 472 3536 2538 527 8467 7319 2638 6925 4749 3728 5908 5406 8151 4797 8529 654 2214 3941 5849 789 4857 6855 170 8395 3965 1510 1789 2261 7547 65 9916 4542 1915 8230 3369 54 3598 9171 3373 9597 9342 9053 828 5324 1788 3968 492 1954 7099 568 8117 4024 169 2969 6002 1757 6267 4339 6075 8442 7756 1836 2280 5981 696 6330 226 8067 6315 3373 5663 360 6385 4422 6602 1644 2338 3250 3376 9667 6539 5308 5962 8655 3975 1328 9532 3361 9333 2263 3060 4716 7441 9224 4265 8459 4451 4295 9508 2104 405 7680 6499 6934 4302 306 2751 3406 5291 9596 1659 863 622 8007 3226 8229 1353 9830 464 18 7959 5318 9368 1506 4025 5694 6561 5371 1303 6319 772 6276 1029 1377 753 4742 5217 1483 696 242 5981 5902 5392 8457 9681 4066 5434 8625 9216 3751 2604 2689 657 9906 6711 8506 5290 4605 363 6384 1064 9813 5244 5259 9828 7531 280 307 1782 2099 9481 256 549 3622 3996 2262 8122 2067 8450 83 7780 9699 3498 8060 5540 2195 8476 8885 632 5304 5237 2469 6927 5732 6221 4942 4154 5764 2991 7055 5418 7982 4196 7317 5061 5262 1998 7511 2283 4514 3487 1224 6584 8490 1501 1840 3216 8288 7201 397 2780 9555 8535 1628 5764 563 8881 7160 7074 2939 4727 8623 3091 109 321 1536 1450 9107 3378 6045 9562 5124 751 2596 4943 1162 5507 8265 4572 1939 9646 6076 7421 4710 6722 3544 7547 4480 3759 4649 2682 9864 3067 1743 1936 2720 4449 46 8436 268 5563 5359 6994 8107 3691 1896 7580 5929 6457 3037 8795 3045 6674 867 649 2686 6339 1244 3264 8131 8652 3200 1746 7613 5290 300 7933 6538 6913 1325 2126 3195 8207 6469 6456 3554 7434 1809 2297 5796 8273 1963 2087 7697 3979 7158 3210 344 9454 543 60 1593 1570 7543 8471 9317 845 4695 1720 7890 2 379 197 7334 5825 9402 4207 9354 5409 2130 5508 6234 5163 5504 6066 9775 3341 5155 5594 40 4968 4197 7280 662 5199 9518 6821 1696 6393 2145 8629 1278 8755 1266 2624 6087 6472 7880 2192 7817 722 6595 7935 5759 7908 7404 6961 1357 2449 403 9337 6230 9972 6318 2309 6290 5666 795 3732 9826 9256 6917 3109 7755 499 8346 8410 2367 9113 4482 5879 1984 3230 6502 9989 5899 5475 542 1001 5718 7226 8720 2373 5651 8316 4688 9097 2209 4129 1291 3712 6969 1663 2733 3133 6030 4570 8717 6469 5170 8962 7894 3875 4121 7960 4949 4888 2983 5016 9947 3569 7795 4219 4998 9122 7414 2451 436 1066 5502 6249 3676 8403 7787 4966 973 7214 1250 9287 2282 4270 4482 5095 3994 1377 8478 1197 1498 8076 9993 5574 6258 4575 2633 2102 6927 4640 8106 772 7391 5308 2694 815 6568 4016 5465 3917 8831 2058 6706 6227 1534 2981 1629 577 9232 7569 4629 1759 8337 5126 1847 2058 3767 7450 9097 9435 6057 6 4904 1381 6734 3023 4554 3039 1241 6384 3927 9606 4692 565 3415 1016 7303 3362 8009 7278 8962 4567 8005 6594 5116 108 9900 4606 539 9623 370 500 9680 4984 1526 8707 5491 2567 9658 7217 9056 4878 9726 6588 4169 9782 9124 8035 3331 773 1415 1670 9793 8321 579 5597 8720 7732 5817 6178 3739 8044 6463 5495 865 412 1466 3688 9994 3416 7833 4785 5499 3052 6957 3553 1121 2921 2966 2345 8191 9828 8825 6774 1302 601 2022 2795 8051 6570 8984 368 940 8707 9673 5902 751 6291 3724 8499 3866 7937 2660 9082 707 2257 8794 7367 7506 8774 4629 1649 978 9914 6876 1880 1777 3820 9356 363 2851 3394 925 1035 553 4484 1784 4320 5454 1506 2794 3702 8097 4053 8743 6429 3960 7088 5920 4222 9154 174 4991 2333 312 6211 1956 5144 6316 9333 1535 1040 9457 9438 8484 5206 7352 8211 1771 5261 8379 6808 251 9150 1463 7806 4965 9475 6662 8001 5885 8708 3657 890 8512 4968 8817 5588 6464 2335 8513 1297 8045 1497 4989 5621 2881 3043 3102 5799 4990 5707 4096 3384 2581 3519 816 9793 2846 1048 9199 2437 1436 6631 3345 2506 4597 8146 804 61 6180 8831 6321 4198 3537 122 8578 4889 6334 9622 1456 349 1202 6138 1951 9745 441 3417 9711 6096 3841 8281 5457 6115 9038 470 274 9656 5116 2853 1822 4096 9497 730 1915 7747 4392 3412 4261 7202 5602 3234 7553 3443 7450 1763 8823 4479 2351 425 6333 6410 2336 7848 2554 9645 7092 9142 3943 8747 375 6911 1799 5744 7205 3432 6281 8626 2905 3944 5340 711 7656 7134 9084 907 414 1172 4356 4778 2800 7797 9367 8082 5338 3753 7323 5056 8662 8388 7865 1575 371 3594 6426 4642 9329 344 8851 1571 2103 6551 9207 7972 7387 5535 8340 1609 7202 4990 7461 918 7100 2306 1241 1839 3827 6513 2460 8610 6323 8928 6867 4792 3479 808 7530 1448 6330 6614 4599 4391 1432 9713 9875 9527 2817 4878 4511 5624 7190 5241 8016 3637 3873 8031 481 7334 6084 669 3695 5653 7646 4559 9463 6026 5199 6030 8705 7288 8103 2315 5423 718 2689 9413 9934 7854 6611 7899 4392 1497 8824 1011 765 8730 8559 9531 8429 2673 5812 9177 9013 2169 1852 1641 4885 1388 2221 9066 4696 6690 6234 3959 5312 2138 8023 3545 1656 3060 2437 1068 4605 9791 3132 6921 4773 2347 569 2414 8551 9892 8562 1669 8240 2101 6206 4682 7271 4430 1342 2396 9780 9707 820 180 1551 9226 7481 3365 4006 2004 7807 1558 5753 2785 5940 996 9107 7757 331 4599 3444 5177 4580 9653 2273 4322 7596 7592 2665 11 3792 1307 153 1512 8475 5933 949 4032 2584 4380 333 6076 420 2641 6704 2735 9246 1010 4739 7406 7490 1386 6828 5629 6501 3909 282 2496 8069 9432 8625 9589 7029 5336 2794 3879 7813 5915 9948 9469 323 8632 8141 8393 5841 9318 210 824 826 4166 1002 1247 6879 8811 855 9559 1469 6407 8966 1967 1156 1234 729 3720 512 1550 8561 203 7746 4077 6675 8724 8922 2954 4529 1881 2277 1725 6364 2319 2135 6652 7029 8991 1011 5975 2982 5939 7825 8582 4479 1003 6532 5338 1406 5878 640 632 9940 4581 8030 8121 1974 8583 9611 7434 6650 6181 2982 4732 7145 3883 3063 3855 8794 6381 552 5706 8088 428 7244 5739 9292 3193 658 5887 65 4957 5929 3426 846 4544 2474 2157 6009 1622 1307 9313 2879 7515 1287 4382 5924 8349 8568 8087 8040 7120 3890 7692 7556 7525 4039 8976 3685 5864 4986 6877 525 8593 4168 854 8476 752 2748 4653 2233 1685 727 8905 1165 3336 575 2910 9087 8498 5497 2973 1598 9402 6096 8602 1148 6222 4005 5874 8772 8335 9463 553 4778 6762 6722 1534 4028 6059 6679 7756 1689 498 7068 6857 9441 4635 994 230 4347 7683 1241 9170 3175 8735 7898 3810 1948 2667 9883 858 2392 4844 4003 3169 4752 251 7189 9084 3865 1011 4325 4682 7830 4185 2582 3453 7916 447 2084 8035 6362 9451 9602 4813 3590 8365 2710 2563 614 3272 7173 4693 3176 1341 7436 1386 38 3622 8382 8145 3912 8343 1028 6607 8041 8067 1898 8503 1700 7716 210 7106 5066 179 9784 5481 881 4439 8401 2836 6960 4131 9759 7547 3552 1538 1142 9302 2571 8606 9048 3937 6367 8244 6505 712 426 3057 1755 4550 3096 2840 677 4173 3816 7531 870 3805 1088 2764 344 2873 3543 8618 961 2621 8258 8822 6675 6922 3867 7211 9034 9294 3705 165 4777 902 7884 3898 3332 4792 7020 856 1642 9247 6490 8943 1964 4008 6481 6160 6459 5093 3666 6554 5293 7251 9779 8333 8623 9494 2602 9499 6662 7612 6414 6526 4184 3465 779 9377 7157 5598 7397 1724 1865 50 1991 7892 7836 380 3973 3385 6326 1271 8993 1220 6024 980 1703 5634 6564 7194 8174 5852 6486 8626 6838 910 7913 5369 9244 6114 1890 4027 4749 5705 6918 3538 4893 2285 2278 5244 8569 2631 885 2958 7649 158 1050 8752 3981 6442 7410 3101 5769 4424 4405 9692 9084 2464 6335 2298 1342 5268 9340 5934 1731 6578 9795 4929 5896 1968 16 1458 3889 1590 290 8242 9675 9372 4398 323 4538 756 5710 4442 6198 2428 1399 4381 4517 67 1553 6769 3550 4430 4651 3250 647 2055 5884 8183 5035 6028 3507 2977 5544 668 1718 9081 3383 3858 6586 1114 1938 7436 6759 5037 5003 2094 8631 4645 4984 4165 8573 7682 6498 2608 8012 4173 3655 6221 3777 8540 2578 1622 6084 4198 4020 4274 9281 7778 2274 6013 2774 8295 740 3577 4775 2668 8074 2819 3800 577 9556 9117 149 6557 9079 5666 9137 9556 5915 5622 9790 8184 7111 6547 1038 265 708 3790 7331 6190 5621 69 9450 423 3395 8309 549 3426 9994 9801 1173 5864 3371 673 6458 8401 3374 5196 8752 2961 5500 9113 2576 2006 9063 6626 5238 668 5839 5326 3091 1698 5234 3212 1764 8848 8152 479 3292 4876 6589 7500 5839 6520 7064 6120 8120 5393 6513 7703 3087 1606 6647 9434 595 4200 7986 894 8728 631 5843 6787 1901 7940 7273 9668 7495 1826 8279 2809 2340 7795 7316 3463 2626 1354 4563 3865 5320 8016 4319 1665 4479 4464 5927 7208 2503 1183 1314 4781 5258 5756 6944 8724 6227 1660 8294 80 4284 1206 366 807 2841 1140 1447 3429 7732 762 4305 6397 1696 3060 5536 1037 6508 7273 5128 9693 8372 6893 2799 4429 6503 4189 4272 1590 4509 4127 9943 5905 5320 2697 42 8999 7894 8221 5298 8657 9571 7188 2976 8119 2464 630 1491 5960 5232 1867 5553 6137 9422 1956 3817 7724 9911 1394 4769 3993 5761 9785 3256 3925 2624 2954 2104 9057 7779 4095 5840 3126 4747 5650 1901 9931 2203 7165 5925 3462 9121 5792 7903 5373 7472 8434 5651 8533 5440 1263 3705 9485 8032 3551 7626 2611 5492 4024 6255 5190 6097 458 1774 6560 4580 502 1510 4765 3604 6883 2799 312 6006 5551 5705 746 3492 9730 2939 9016 9935 3550 173 513 1927 1185 8625 755 1986 7518 1529 5747 3926 \n6781\n2689 6735 9967 4150 1215 3055 1028 6034 1302 5229 4683 6702 8683 4314 3376 4585 1909 3931 3314 324 1379 3983 6911 9325 1046 8204 4642 7631 4806 6003 1857 4531 6384 1118 4313 915 1537 2405 4243 5741 3364 2316 8708 139 8914 3589 7013 5371 4804 707 4552 4450 9308 8534 8662 9324 1335 2491 7118 6210 2062 5840 4364 1334 2145 2598 9394 1657 1991 7971 8382 219 3274 9611 8417 9564 6760 994 1767 5178 4343 2121 3250 5282 9170 2984 2766 2157 1445 8145 8720 1998 1555 8460 4999 9134 2896 5312 6669 7794 8495 4755 1992 7767 2302 9979 834 3529 336 3391 2564 8791 7968 3194 6745 4201 78 64 2095 8415 7081 7055 6312 8272 8749 422 6662 1701 5205 5156 3389 3748 6341 3735 2157 7501 6173 1200 494 5546 8576 5212 3549 7094 7803 569 2138 7750 4260 3377 484 9653 3626 7613 5728 6144 2223 7875 7815 6641 898 5241 3818 4338 4494 1707 7000 8642 256 9312 822 3991 5955 2622 5218 7910 498 9262 7873 5468 8381 2089 7711 2683 1735 1699 8802 2804 7945 3606 6732 3312 5512 7971 4943 1781 9140 4857 3021 6888 777 6467 8110 5824 325 4230 5693 7713 9136 1655 2850 1532 2482 4481 265 1887 3538 9378 6716 1476 9202 4296 973 6196 348 9231 3056 6921 772 2649 8509 416 8700 7006 1669 2266 210 7225 6550 6514 1754 736 7534 6344 5367 5455 4964 6607 4535 7237 8992 281 6477 8987 4647 9581 7899 5406 9443 6267 5975 533 8031 9048 8213 3385 227 6877 3072 2023 3682 2722 8769 6247 7153 4133 4066 6125 257 2338 5221 8416 2659 10 1874 1443 6265 3377 9623 2106 5312 2371 6805 7508 2090 2347 6535 9761 8202 1470 2992 3532 6675 3497 3086 5263 9432 763 5955 1090 4711 4710 4083 9438 9642 2651 8399 4755 9236 144 2227 89 869 1367 4899 2907 301 3667 6518 6925 4309 2871 3570 2445 4732 8152 6066 3956 9029 9958 9646 6067 6789 5453 3436 1569 544 8429 9899 9015 7682 5744 4979 7477 6113 3603 3399 3636 9756 5322 9754 7306 2881 1746 8376 5788 8006 8673 4572 1426 2198 5607 7339 7228 4573 6221 1687 9688 2785 1478 8101 910 684 8544 2685 1066 2978 2828 9812 6782 7296 8947 984 5310 7371 7333 2440 2373 4495 812 3428 4589 453 5153 3745 982 5943 8037 2778 3138 2822 7868 9648 1245 6798 6079 3229 4605 188 976 4413 4584 5043 4228 2008 9002 5796 7385 4029 9612 4281 642 8355 9023 4687 2801 586 8415 4353 7648 3212 3298 2966 2560 2026 2691 2105 2306 8995 9787 405 4791 6271 3128 7589 3676 2578 4188 7003 134 9550 5801 9991 9336 797 723 5904 7512 6626 8625 724 4140 46 2561 4813 1628 8956 9080 7135 1775 5367 3038 4410 9820 9711 6803 7504 1649 6779 5839 2798 9047 2702 6869 8235 155 7639 8115 6516 8647 3125 6005 6294 4716 2473 7635 4869 5633 4966 5219 1891 6539 2142 4336 6031 5624 4811 3404 1114 8188 993 1929 7800 3844 6779 4959 809 8835 9231 7801 9901 7275 2661 4119 6777 5190 3596 2756 8454 731 5066 5414 4504 2482 4935 6405 1460 3905 3788 9231 8884 5151 3496 4264 9430 7437 4968 445 7824 2991 6817 344 7613 433 9693 4198 269 8279 7303 2609 3548 7675 2017 4232 74 1750 6887 812 6561 1747 8888 3782 5546 1572 6680 5489 7055 7631 2763 4925 9467 3044 8108 4328 5121 992 8399 3943 7382 4847 4624 3305 4567 2320 2124 1756 8205 2116 6735 3487 2333 176 6065 4778 839 9918 8462 4798 6611 935 8022 7606 6996 919 898 4004 6889 2071 6242 7037 5960 1175 8401 5893 2105 5141 6786 7111 8332 3780 5047 1400 2251 5293 8458 5456 862 8321 504 4659 1315 6651 4032 4920 385 1668 6644 9832 7565 8103 1295 6815 5048 9989 6711 9385 8942 4871 1945 1665 7353 3706 8748 5232 4716 6144 5315 4552 6900 4373 1878 4352 8306 27 6660 2709 8402 3756 5344 6056 2868 8522 7403 2353 6614 2221 4261 4017 6676 2926 734 8556 9462 9938 3080 1384 7031 4140 352 9164 1767 8939 416 5694 8077 4019 283 342 5109 5924 163 9506 2691 695 1121 3384 7279 9432 3945 9673 9809 6482 1621 3153 721 8568 882 4308 1469 8733 665 5051 1849 3060 9929 1914 6818 5524 6711 9671 4590 391 6524 6568 9553 900 8025 888 8045 4506 3016 3081 1222 2903 1421 3389 35 3159 2417 7040 6929 9210 8339 1446 7624 7182 1046 425 9937 8653 8988 2973 8208 1247 2582 3106 3578 3901 5518 9451 2038 8969 1928 8341 6332 5312 6331 6379 9899 7990 3910 5183 3731 2210 3484 6328 6369 4699 2696 8412 7857 9880 4133 5884 4723 6396 346 1616 8505 5291 7600 5765 3096 8172 9366 172 8831 2001 5065 6024 6702 6495 5682 2146 8570 6185 8983 5084 2014 4937 4005 4076 3987 1449 9991 5542 2245 3622 7924 2758 2704 9624 7729 7361 9631 2646 2598 9971 9459 8942 2063 3725 9081 1042 9674 7904 658 7748 5315 7049 9706 9331 4421 506 3260 9685 3532 7429 7692 7670 2454 4216 9735 9025 4314 6069 546 8799 8729 6293 7381 8044 4461 1319 4321 1928 4951 9083 3822 5981 4960 1251 2605 2222 2978 3762 3901 1919 1806 6794 7183 2205 8114 5268 6435 1422 9609 7962 7977 4903 6918 6369 7093 7174 5929 2730 5592 4325 7128 2304 835 280 7298 4746 1967 2920 3836 2650 4260 5860 2935 7435 2915 8809 3131 6946 2622 3542 5101 5539 6931 3066 4518 1283 4866 1218 5325 3048 2519 8274 6670 1068 1149 5516 5650 7810 9230 3370 2936 2294 1191 8691 1160 8511 3222 9164 7947 5634 8663 214 6119 7961 3119 6791 6877 2949 7537 8228 1335 2655 2261 6983 4464 1528 8659 3614 7799 764 7579 1737 8602 1229 5930 6327 8051 4638 9569 7725 6074 9688 9850 2454 4471 3914 9858 9016 5703 9098 3995 9573 3783 6248 7209 4415 5067 7282 6712 5736 5926 1218 8090 9613 9963 3627 1264 7707 3876 3665 9061 9791 7322 1687 7504 4195 2709 503 8448 7715 7750 769 4978 9270 7222 589 2120 4800 5805 1191 8200 3218 5050 8284 9852 292 710 4451 7728 2848 1902 1483 2131 6767 9693 6170 6637 5922 8300 7715 4027 2301 6895 1538 7462 1477 893 3207 7409 438 9312 3038 1440 5076 7343 3009 449 5308 1690 2224 9344 4544 5411 5725 4694 1265 2662 9537 2003 1179 4489 6155 6543 2731 1092 5423 809 159 2702 3183 554 2329 7633 6155 5853 5671 1685 2623 430 5543 1412 998 9718 7523 2847 1763 4612 6012 2532 6811 5142 2690 2486 8895 6206 6498 8063 768 7791 2304 5963 3174 2680 9686 8060 9691 879 3828 4666 153 1824 5518 7657 2612 418 3392 3518 3085 9290 9642 8571 8392 3955 2695 8463 9971 6512 98 9755 4738 9613 4585 2326 4996 8364 6895 3876 5992 3394 3018 3643 3512 4300 8912 1679 9676 8966 7343 9366 7371 5504 7568 4754 1796 8011 3692 3400 1338 8294 3323 4202 7389 9563 4415 8876 2054 7121 6921 4615 9777 7108 9808 7913 2275 5680 5597 7556 304 1542 2637 9861 5010 6553 936 4129 8908 2947 2305 7053 2316 347 1604 9116 2492 9115 8619 8222 2772 2776 3678 2491 4635 1652 6095 8409 491 3427 7393 9914 8440 3401 4446 6531 539 9908 882 783 1350 2458 8353 3232 8025 1455 28 1198 5813 4375 1744 8412 5907 3500 9480 5202 892 9374 2077 9797 1865 7530 8378 3354 8713 2412 3509 5072 7415 1794 3308 1716 7100 2256 3218 2171 8355 8865 4217 3120 8765 535 491 9047 8713 447 534 74 6862 1467 7098 9487 8250 7415 4074 788 354 8910 1027 9221 3790 4529 9578 608 5812 2490 664 4964 2488 7332 2032 2437 147 4876 5299 5905 6449 9349 763 4073 5334 8652 8652 4400 5274 2897 337 955 1999 9382 3242 5137 9265 7859 2717 5393 3886 3823 9214 1680 7885 2578 2160 4232 9446 7108 4392 9883 3202 158 9907 2136 9995 9249 3385 4745 5480 6787 6268 4539 4373 4115 5465 6528 8204 4772 208 6848 3586 4082 790 3795 9644 8715 5672 2236 2484 4881 6808 9337 6075 6569 6228 7898 2543 5980 1597 5220 5214 7101 3448 9590 1332 331 6542 9986 7233 9278 6934 9302 6072 4218 2818 7321 768 1054 8443 6583 3859 9038 2866 9313 2089 1923 7301 1176 5143 464 2913 1155 940 7861 5534 2836 293 1577 9866 5158 7120 9869 5829 7999 685 5437 1763 9261 8814 1189 7829 9877 8814 1567 5579 127 20 9303 8158 7557 8456 3548 683 210 4533 5392 851 5512 9237 7632 6612 9463 9829 4334 2721 9943 949 8394 2740 9874 8385 5316 7357 5349 9923 1442 9919 4604 4998 7026 3328 3519 4308 7815 4240 7297 1329 103 513 5752 127 5043 6805 1467 1833 6345 2210 5441 2170 3701 696 6266 4296 2535 4481 7979 2519 132 4133 6621 9770 4469 343 5465 788 9765 5975 982 2022 5749 7559 5306 6962 2673 7938 161 8610 4640 8166 9603 5386 8930 2760 4452 4327 2342 1453 2617 2960 5271 5615 3336 2177 2247 1244 7521 7396 2505 4045 7399 6331 2227 3665 6528 8992 1344 9854 1380 2590 7272 5080 5737 4831 7703 293 5853 7329 5651 7019 2984 9973 7869 5670 2000 9236 6987 3719 7747 9646 5279 624 2048 2833 3436 170 4682 4257 3334 8934 1873 7253 321 3589 3556 4845 9891 5315 844 9853 3091 3549 5969 4251 6195 3544 6419 995 3921 8311 1093 4697 3181 9151 5701 8640 3293 625 7590 9722 6363 1605 5887 874 8767 4021 1248 2064 7517 36 4734 7357 4755 5169 2 4729 8056 4814 7215 6330 8251 8772 1860 6483 7170 7770 680 6276 4193 3162 5921 8930 6240 8077 3570 1902 5867 1673 4326 5188 4138 583 3170 1800 250 6358 9693 4604 3644 4972 1308 7676 8156 9513 1360 856 3218 8310 3326 3436 1746 3917 9408 1316 2738 6301 8084 1728 1544 9135 9735 4580 9931 8986 5525 5239 3519 3288 2182 6885 5878 7080 8572 3299 7964 918 5377 2624 9233 2611 3449 5705 1598 4704 7415 9648 6735 5752 7325 4443 7119 8504 9673 1959 9041 3685 9325 5541 9082 4318 6861 2298 5959 3521 5274 5109 939 1689 9434 3409 5210 342 1557 850 3643 9904 5821 3167 9550 3068 9703 7530 5543 6318 5596 537 6657 9105 6067 4095 9317 7040 1158 4687 423 1885 4998 8426 8272 1010 7059 1368 8380 8987 1104 4220 1762 7039 5231 4114 6683 2435 4018 7781 2623 679 9381 6583 3384 3192 8936 2001 4351 3711 603 3727 2340 4036 235 3055 4664 5489 600 189 8717 3799 9564 7077 5850 7976 9120 3809 901 730 5249 3012 5279 6260 6566 5374 4546 4413 1506 9970 6198 1407 8298 3689 4602 6102 2817 82 9044 3466 7321 3693 2126 5130 3748 1763 5431 8546 9256 5421 9360 4441 446 1246 8268 66 2726 5727 877 4488 8052 7196 8605 8288 1916 7382 4816 6710 5176 2859 3191 1122 9283 5251 530 7610 684 6547 9650 7560 7914 913 5001 4471 4229 7464 3224 1814 4079 6476 756 7680 7509 8164 397 7929 8362 8387 3215 7262 4489 3752 1111 98 7455 8328 4595 9336 2464 4427 4080 3082 1713 3269 6811 4513 6195 3576 178 3131 7026 7238 6269 1139 6879 9202 9521 707 4676 6371 109 5310 5496 9577 5040 7612 8059 6405 4259 6877 1631 5204 5449 5875 1458 2890 4264 4159 1601 8157 4363 3607 8411 7792 1467 9989 1876 7371 5099 3700 2007 9687 6169 5891 6244 5608 5657 2378 4043 6287 1691 3997 5017 9565 9388 1060 4609 1851 7506 6485 2565 3135 9222 8485 5579 5821 8449 6264 2323 3206 6532 2056 3107 5983 511 656 3802 149 4541 3680 8703 9021 3035 7890 7593 4326 9002 1530 4853 2031 8822 2394 4924 1270 2804 5286 1448 5948 8125 266 3582 3960 5958 2601 6960 5594 2325 3550 7121 7522 1908 7848 3946 106 7599 7922 3088 7482 131 4775 3144 6197 5882 4737 6687 225 4817 4900 7329 5547 8645 5782 2444 2873 6212 7022 1616 9218 4906 7589 8066 5973 9544 6200 77 7348 9239 1713 5301 5487 6894 7363 2719 4640 8250 6050 9027 6493 4026 3388 9163 576 7881 4985 3205 1601 5221 3645 7554 2237 4192 8641 3823 9680 8731 1886 49 762 6782 5250 3603 8805 9152 8257 3084 7006 3107 1289 9307 5645 6518 8936 613 9387 2160 4410 4483 9594 5669 4358 9070 5233 4742 8684 2019 8272 4872 7672 5868 538 5013 548 5274 7615 170 9848 129 56 6812 9718 7772 6783 469 9067 983 712 9554 1072 5690 3472 335 5519 9637 1899 8526 523 6356 3172 8351 6948 4722 476 6173 5457 3085 7822 8299 964 4423 9005 1876 3550 4849 5433 3380 261 1441 4617 3989 3175 9154 4303 6728 4599 6351 8851 7528 1590 6410 7386 8253 7023 4931 1368 2354 8697 7088 6838 2282 8899 5975 3226 3888 4868 9524 4556 5057 3308 6285 1151 206 8380 6380 6458 4642 3511 2228 8732 3875 1984 2889 2040 7983 5465 9537 8996 7122 2801 5057 5196 1477 9777 7044 5895 7216 6661 9042 9858 3746 572 9182 4278 4326 1949 8046 9980 5905 2548 2105 7033 1627 2984 5404 5996 6274 7610 3765 4039 7389 7252 1138 1942 2320 5964 3806 9678 2607 45 7860 7457 7037 872 2595 3549 678 1093 3160 1810 2785 2395 489 137 8337 6998 8858 3313 5086 4739 7926 5767 2464 1474 5201 413 7640 9987 9550 1297 9541 4592 9842 3107 7293 9125 2438 2255 118 313 1422 3039 4967 3324 3541 1234 8892 9289 4539 8036 5438 8525 5097 704 3738 6410 9577 7116 9110 2709 6627 8358 9239 2712 5020 4384 3329 6068 2488 8529 354 162 1340 3697 1077 1895 8971 4990 9550 7372 3081 9936 2188 1528 4907 6425 9377 5321 9323 9052 1860 8073 1135 5319 9140 6167 5488 7190 881 6891 205 1703 5812 5270 4851 1079 9025 7096 1842 3701 1313 7772 873 6047 624 209 8896 2388 7545 5245 6723 1201 4417 773 2768 1499 8932 7593 7216 8196 3724 9971 4511 1339 7928 7562 7146 9005 1314 4591 8714 6416 7949 5595 5247 4996 2780 6373 8793 8530 2485 6299 2499 235 8566 91 9225 5779 8853 2890 2671 928 6586 6414 4207 102 1042 9695 3198 940 6275 9244 7659 8402 9840 781 2070 9779 5486 8295 4255 7529 6048 4301 2035 6175 2450 3019 6713 2838 7039 4996 399 1604 383 7574 2314 7318 9812 1929 338 5896 5404 9190 11 3821 2150 5985 3937 1440 9151 9745 803 1934 5939 9647 8735 5362 7167 9427 9927 857 3269 3790 1895 4957 7565 4468 6888 1132 2111 2397 7735 1239 3641 9793 2786 400 18 427 424 2376 1987 3801 5840 7354 5927 7365 8832 5375 4118 407 9328 6023 6476 9493 9268 4438 8200 4788 2877 4553 3906 6073 4462 8240 4976 944 7803 8179 6235 5325 590 1084 2610 8678 5237 2182 758 6477 786 7944 937 9521 9477 1625 3306 219 6995 379 6094 1101 6591 7237 849 5177 5100 4491 6769 9404 3374 9770 8989 159 6340 1369 3772 7930 2668 8814 4044 3660 9263 1845 154 9101 3050 1911 3111 5908 4535 6310 9032 8423 4076 9112 8644 6957 1090 7686 7348 4085 2802 733 9278 898 3341 2701 4231 6032 8508 7551 8021 6878 3783 5622 7906 1191 2872 4037 8200 2988 5549 572 6141 3583 6377 8528 9616 9482 8267 7265 7521 1164 9442 8264 4207 1248 5240 7402 6117 8214 298 9484 9659 2656 1346 5129 2458 992 3950 8046 3602 4007 3099 285 4795 4256 8788 6490 6279 9009 1176 7233 3682 9394 2211 6417 7192 1204 7528 1664 8623 7605 9872 2189 3068 1063 1937 7102 1912 666 9666 9703 2724 1529 495 231 3935 71 7589 3943 6406 6964 9227 2846 9480 6259 9773 3472 1981 8571 8646 5528 952 8404 4658 9770 5539 7841 5704 4752 8439 2412 4577 7677 4598 4525 57 1575 3208 2405 2281 9500 3852 3422 611 4643 7105 9388 1450 1137 4431 3044 6931 249 1335 7465 7157 1860 917 7303 3826 7133 1675 8530 6097 3677 9600 9055 1508 1937 1272 4893 1790 8953 9023 6303 8105 9875 2524 3177 7584 8705 452 9884 2534 6181 1777 8845 147 3528 8129 7394 1928 5084 6306 1262 5282 7854 7689 8046 2230 6022 3390 6019 5618 8110 7723 8987 1394 9079 2159 5737 5438 1291 3468 3056 1097 8296 6047 107 6483 5097 9306 7163 4505 5756 6472 2704 2254 2629 8020 9175 3576 7951 9502 2861 5654 3870 3509 8694 2387 734 5774 6857 7261 9564 7764 3080 5984 8736 4338 4569 4376 2213 6154 6766 8256 786 7028 5128 2645 7092 8438 2212 2639 8186 5124 8826 7904 4226 9917 3139 9331 6795 3772 6659 8859 8394 6010 8037 2354 4226 3450 1499 1348 4992 9224 5824 4078 7669 8833 6482 7366 8524 826 5272 3452 6805 7333 3063 2839 9521 8517 3093 1485 2056 2278 6042 5656 2648 4333 3404 9171 761 894 687 8429 3680 3762 6797 1310 5954 9206 3746 6525 9029 4074 517 4240 3087 2423 1255 2993 695 2493 482 5972 5606 3654 7075 9166 1120 9185 7407 7716 8814 6674 3660 5914 9524 2557 9824 9548 5506 5923 3386 9476 2469 4904 727 1006 293 2995 6362 4567 9628 8772 6141 9155 1304 8092 6418 1565 8717 7208 1788 7472 3578 5790 6061 7303 803 2686 61 8524 6863 8887 2734 3312 7559 4880 3758 9827 8539 1652 7884 6636 6228 6844 1296 8167 8801 5938 7540 726 5778 3974 8907 4211 3142 9873 804 3905 4175 9247 9973 5424 6339 3326 6777 9243 3843 4961 8648 6853 2564 3131 1268 9725 1520 4663 883 5280 2707 9828 9258 6936 2798 4451 1898 1340 6512 9580 3324 6787 4638 7991 5579 1063 339 3391 1858 5376 5342 2487 6372 6218 1067 3962 6286 8025 5578 9343 7997 3336 838 3459 1770 6806 8023 4108 4368 6168 8085 3769 5734 607 6396 5428 4722 7055 3190 8135 8212 9977 3417 8652 4436 4689 5638 2957 7960 5905 1064 6269 2335 839 5421 3687 3134 7395 9544 2611 3476 9995 7871 6161 5667 2319 3730 6811 524 4269 9686 9485 1672 8438 718 9725 6162 3339 6108 1739 1530 9847 5754 2072 9100 1536 3624 5069 6746 1586 9860 2506 7572 3040 7913 702 3109 5959 7217 7333 7949 531 9001 7670 6591 5135 1958 8454 5956 8123 5798 9879 5320 7914 3353 7944 731 5245 5777 9754 180 6104 946 9744 5882 6467 2614 4564 4912 4516 7659 5747 2749 4334 5007 8549 8514 8283 7474 3174 6793 1607 7209 3196 3141 8367 6465 4839 7485 3369 8496 1326 2892 333 8364 2846 9566 785 7384 5373 177 8999 9414 8770 3068 495 1253 2080 279 576 1353 3640 2166 6161 118 4931 6416 9143 9974 5255 6957 1505 2166 3455 5583 2016 2710 2698 9956 1149 4820 3400 7692 9758 9712 4625 2098 5197 5243 2566 6225 4331 6697 7470 9837 568 7523 8640 6075 2163 3146 6600 8140 882 171 3044 4993 2124 2722 3514 3146 5220 1879 8837 5520 6788 5050 6535 4307 1886 8882 3510 9624 1917 7735 3474 7386 3116 7199 2510 4090 7024 2724 656 3725 7000 9483 346 8629 7012 9380 2063 9451 6184 7957 1936 4001 3202 1138 4739 7833 3293 872 7447 1792 248 8125 2651 2543 7500 3255 3912 1964 404 5399 466 1522 3073 5149 9363 2750 7958 3350 4532 9958 3931 7304 6955 7427 2637 5466 5288 287 2485 5008 6990 1073 9324 5804 6263 4177 3760 3411 1176 6781 7006 7786 6369 3183 106 6452 1220 3050 4383 8571 8004 3307 6600 1984 7998 5322 7227 846 4375 1460 1871 4545 511 9293 2818 8380 4276 3273 6976 9650 6977 1289 8718 6774 6704 3669 2871 3511 9929 7718 5000 1278 5428 5933 7797 6473 9457 2462 7176 3259 2355 9560 862 339 9506 269 3903 3409 1207 1670 9039 7369 4055 9887 3103 3653 3044 3953 8178 2065 9515 7326 3579 4362 1696 8729 2088 769 4165 3979 7214 8265 4413 2837 8357 3725 6691 761 267 1308 8355 5894 2982 7041 4748 1294 6601 2670 5935 2293 2333 4294 6214 6898 3419 233 5266 873 4202 6232 8563 3909 5145 4262 5254 5316 9745 5610 2570 3773 8997 7672 5172 6805 9826 9348 7607 8846 2289 9942 6187 8523 294 9944 3881 9522 6905 6434 5830 667 6252 5696 3432 7413 8849 2900 3502 6387 5820 9593 4361 9215 2548 2039 5457 8480 5910 1656 1573 5861 8516 1673 3314 9323 6812 6429 9079 5876 2837 6355 6942 8474 4611 9778 1258 2282 238 5182 7270 9285 1051 9450 5166 5211 9130 6162 3481 3918 9321 1995 7547 163 6143 1160 5092 6357 1954 719 2783 2659 863 375 9877 194 4841 8169 7756 1724 221 1866 4444 772 6652 4107 8186 5509 7863 7951 5323 5287 685 5210 402 9115 3797 6610 848 8090 9015 6815 2443 1413 8871 8550 5671 7117 8140 997 9854 2719 4742 4962 1732 5737 4158 3902 7760 7324 9388 6964 9793 7268 1660 1172 1031 4464 7136 9117 1307 3822 7747 2937 6469 9110 4014 8628 6154 3852 6414 5806 7436 4741 4422 4669 411 4362 7819 7508 6308 6559 2945 8962 8276 7650 1610 8716 2677 3138 8399 7917 7728 505 9527 4599 5138 6083 5545 3652 2863 5259 8487 8742 8019 710 8167 6299 9008 2084 7878 9775 6843 1254 886 6329 2755 8247 6704 3841 4896 4129 9722 7419 5416 9664 4748 7551 1666 5081 1541 4951 7391 5783 7853 9167 1422 9212 644 7398 4846 9148 1526 508 4128 5845 3461 7190 2320 9533 5299 2980 6384 7227 2564 3135 4279 6909 9318 2197 1110 4846 4905 9186 4624 1971 8167 8300 3197 2150 6841 221 7231 9790 6210 6961 3071 8761 2334 1163 7090 579 3844 1563 4892 4749 3716 4154 4901 5883 4328 5711 9862 3576 5825 2590 8865 3401 7486 4601 4814 5703 9983 5505 6851 9233 5512 2274 7477 1821 2239 5815 4174 7683 4126 8672 4194 4780 4081 2106 7865 5616 9130 1183 3125 6466 6962 4008 6231 461 8491 5706 2825 3029 602 4144 2879 80 6923 6396 814 4438 3393 3955 8911 2984 4399 9025 8026 3621 5871 5737 7736 4813 1572 4323 4395 724 1193 1937 3754 4422 6526 2746 9446 1977 9726 3386 1729 2239 4643 9802 9604 7869 8663 8501 9074 9434 2025 4936 3803 43 756 7622 6821 6190 4784 4119 7680 5986 9717 8905 1832 5726 656 367 5841 9164 6984 5620 7147 9090 7518 7450 711 3401 9976 2167 5781 175 5004 4168 1503 6446 7486 62 6083 6544 3463 1284 697 4133 3142 4259 5801 6161 7170 1464 533 7246 9540 650 2028 5205 1022 2844 8156 9785 5507 7204 6460 9665 7320 8232 8213 9293 7927 564 4446 2493 5847 9501 9112 6412 4271 4047 959 5234 2433 6786 3576 5139 4521 5016 4856 6024 5667 4757 5867 9151 2655 1426 3982 304 1076 3368 7288 5561 5673 5921 7016 7442 2404 7929 5164 7210 4760 3408 6948 8913 3509 3219 6500 5181 8697 8077 5166 2949 4266 6265 4324 1835 5829 3847 4052 3315 4794 3719 2340 4271 9643 3612 2345 5518 7886 1564 9875 935 6206 8817 7648 9979 4508 2077 9564 1991 4989 7823 6036 6401 1262 586 192 958 3482 4797 7682 2256 5056 4087 9916 1129 9278 1997 2544 8585 1303 4669 4933 5489 3984 3999 1783 2235 8274 5034 763 4429 4067 9989 4458 4644 2160 6694 3831 5265 3530 1460 4226 9560 2115 22 8558 4232 4429 8687 4478 8536 5339 8478 4897 7635 3545 9488 9337 532 9711 6028 6135 4587 8890 4305 2972 9994 617 6570 10000 248 5822 201 1735 1919 8758 5428 9129 2861 9937 6742 6687 9042 6070 5417 8151 351 1637 6676 5511 512 1245 4615 2130 4739 1897 8990 1910 4298 2617 4032 916 5427 7465 2061 8781 3434 1629 9458 9568 4332 951 9855 3799 947 4319 245 9212 4691 3858 8624 3263 1223 4460 7114 7418 790 2028 6619 8055 5062 9290 3422 7823 5236 6296 3205 5352 8948 7510 311 4443 40 6927 6082 3952 4367 1433 2862 8933 89 2393 2410 4974 4659 1049 6190 2395 4288 9556 3393 3103 9774 3547 1694 6363 3434 5537 1630 6803 35 170 6858 6202 6489 2118 7261 5722 6775 4286 9860 2879 813 1466 9351 1649 9332 4631 1612 2560 7123 7702 2392 1974 2894 1844 9367 40 7794 711 3886 9100 2581 1302 7931 1050 3676 199 2804 5061 9155 9352 9127 6340 8641 9094 2173 252 6566 4739 4573 5062 7161 8426 7257 7901 9608 7821 1514 6892 4432 7017 763 2388 5748 7927 1046 4883 8792 3871 4840 5892 5455 6636 5484 3225 95 8019 8243 1017 7271 9408 7232 9734 9367 3012 4501 9954 2255 3100 8028 6369 4801 8017 8529 5766 936 1933 3936 6266 4337 3464 4662 944 6172 8489 6519 4966 6465 4097 4116 2616 4974 4863 6613 7546 6549 4134 543 5027 1140 4968 3360 445 6264 131 4383 6130 2269 2536 6543 621 9976 9022 8774 5589 5652 6269 5694 8633 4957 5769 6839 7197 730 380 2578 683 8551 106 7943 8696 3526 138 4915 843 5306 9726 9926 8187 9498 2154 907 4274 9467 2290 3504 3966 8581 3984 6113 1250 8885 5185 2421 2723 1814 1203 939 3322 9020 2491 4955 7633 2563 720 1161 1576 5896 2759 3168 7021 3771 9867 5094 2184 7293 562 294 4556 3034 5801 4955 1747 4061 7199 7163 4041 9540 2063 4422 4964 1068 6338 1601 1149 22 5559 3681 5551 6541 6891 9299 5070 5190 2262 9406 2881 7412 1353 956 7008 7002 8546 158 1815 4028 6484 8275 7525 7036 2604 8668 3442 5130 803 604 712 3787 2731 2381 6022 4655 2489 6659 5546 6724 2267 5956 7018 4772 3125 1840 7235 8425 3350 4183 2263 2951 9375 465 1855 9788 3548 9843 4937 7528 6974 6449 2417 2506 3839 6162 3693 3928 3144 9996 522 9560 1515 1199 3643 1805 9250 7980 5774 1231 679 4101 3063 3651 1043 7356 4953 5681 1400 6791 4621 3015 6325 7598 3251 3472 6249 6609 8155 8610 5078 1265 6962 6670 21 2999 1321 6965 7586 2981 84 3566 3230 466 601 9282 999 33 5259 9916 3793 3496 4378 6933 6385 2569 2694 4144 1753 5550 2415 4172 974 8897 7066 576 3718 7818 7587 1819 19 7731 6035 4003 7913 8245 3030 470 5544 4827 8751 2413 1162 4416 5863 7236 7527 3090 2357 694 883 1451 584 9520 1614 7428 3248 2098 4132 4933 8579 6497 6603 7841 3703 935 7766 2264 2799 1750 7447 5057 122 9312 5967 3711 1818 1731 8689 1593 3306 3410 5443 4781 6851 9299 8229 5663 8640 8106 1397 7081 5713 1447 2300 6597 5342 3147 823 767 8844 855 6439 1565 9058 8602 5194 7691 384 1091 9638 9312 6855 4662 8718 3514 1796 4482 223 7789 2159 6788 2546 5354 4356 2265 8365 3710 2729 7352 1398 7781 1585 2487 7708 1805 6595 2505 6595 5989 2588 7651 646 5041 9389 5228 8369 9229 3687 4724 7356 5833 5939 685 8826 9392 1850 6234 8449 4797 6540 2447 9079 5196 2972 7335 8350 7760 4892 5658 869 3681 5771 7124 1364 3929 3202 1998 9108 1784 7107 5999 5949 5933 7381 9425 8562 6641 7322 8413 3150 5617 1051 320 3942 830 8864 676 6540 3224 9047 6839 1996 9770 5719 5928 1734 2864 8145 7447 1087 9383 4827 5535 9445 222 8335 9422 7325 4581 8668 5412 8705 1943 1702 4528 9436 9199 665 8024 350 9827 9561 850 3100 9335 445 8532 7006 9029 5248 1817 3342 7511 9588 855 9853 236 755 4842 5425 3579 2338 5910 8662 4496 1548 2574 119 2088 3462 8932 6464 4107 3347 2341 775 8728 6346 8236 8450 8012 9653 8914 4553 5577 1367 8766 4562 9056 2018 8053 3098 6479 2566 3987 2188 6601 9514 5879 1268 4783 1905 1049 4565 2533 1326 7040 6147 2543 5996 4172 9053 1212 5438 9877 2816 9342 958 9530 4971 3138 8700 7945 3386 5160 442 912 4648 528 3987 8363 6838 9769 5628 7187 6751 1710 4990 3269 4168 7268 2388 106 4487 6229 9218 184 2350 9118 1893 6893 9260 9267 3476 5662 4993 875 5721 5576 3874 9999 3592 2225 362 462 1976 3325 670 6171 3368 5034 5193 3575 1650 3469 5872 7947 7020 2117 5254 5383 8139 4133 69 6852 4504 9085 9171 1276 1366 8819 5647 9433 1072 9923 6983 4934 2436 3754 4583 812 4202 4170 5801 7311 2464 888 7045 3503 6052 1245 4080 2968 8516 5000 4701 530 6574 7484 8193 7121 8217 9295 9858 5197 7317 7694 549 854 212 5631 2196 1321 8030 5647 630 9328 2288 6187 2439 5857 8741 8200 4461 4213 2930 817 9751 6084 2641 197 5366 6702 806 8971 3219 1823 858 4615 7618 3640 3544 638 3760 1303 2857 7238 5272 4585 3263 1046 5120 7973 4432 9620 3521 116 6284 7889 73 6370 4504 9085 9252 5757 9318 1290 4807 906 8471 9445 2819 9654 9116 240 1059 5270 7243 9805 5302 6564 3687 6764 7094 123 7189 9382 7182 2290 8590 7814 9370 6319 1008 9280 4049 663 8707 1602 1257 2200 4601 7267 8641 8201 8274 7910 7601 9862 6054 763 8853 4103 9528 6607 6377 5883 2585 3936 7920 6594 3426 834 7839 5305 8490 500 5559 1128 7390 1825 4429 8817 6960 2176 9754 6373 8884 6766 3013 3539 9436 2192 8436 8741 9812 5717 9606 9850 987 6052 8348 1013 7397 2005 3443 9644 3949 3444 8325 4894 3501 2766 2802 843 9631 4525 8924 5893 3980 4812 8789 4317 5701 8023 6630 5034 784 7591 200 7319 6968 7919 7445 6499 1888 3976 9670 2977 2435 2797 9784 2573 1148 2943 7313 214 9989 747 8456 5791 9710 9053 365 479 3308 667 6739 9868 782 3083 7360 9029 2843 7321 9318 6361 9939 5686 3303 2798 2391 7762 9736 2775 2661 8505 355 9051 5481 9294 9917 4721 3598 3743 1935 6007 3919 2737 8240 2553 5613 3773 2893 2921 5983 5721 9843 5286 6053 6653 1914 4989 8620 5032 2642 7498 8113 8961 3252 405 4248 7755 2470 7134 1228 179 335 8411 7973 1927 3559 6596 3589 1295 5248 337 3265 5355 786 4211 5949 8532 3915 9265 2193 8546 4564 7262 844 1064 5414 282 8180 357 1289 4419 3029 2744 429 676 8767 4908 4283 1332 4546 3055 1901 4707 9447 7492 4427 7904 9382 1321 1294 5555 4063 51 2698 579 4318 5388 6625 2721 5047 508 6384 9279 6490 5321 1782 3838 2449 9973 6153 519 2843 5389 9353 4680 3288 7377 2162 9845 9078 611 7988 3259 9256 1606 4966 4513 3601 1658 1384 5536 8957 611 3665 557 9596 102 9049 900 3137 6015 6846 5253 488 9 7318 3749 7300 3675 8984 5151 9543 872 7877 7254 8255 5447 8913 8765 9184 600 1148 8869 1622 330 1839 4256 4384 6506 1401 2770 9411 4560 6413 9718 6440 4639 6808 369 7596 7569 2334 3215 4471 7007 4347 8781 6813 4876 2089 6366 9811 1124 8606 2698 8058 4706 1930 393 737 5693 668 8512 8531 7849 8110 7652 8427 8873 6144 2732 9330 7484 4806 1794 2994 7224 5366 758 9950 2984 1550 6170 1297 989 6032 9250 264 1200 7917 9190 5504 2491 7144 1950 9824 1326 9132 9097 8681 6581 4941 6551 8828 6194 5246 258 3382 9148 9372 4930 7235 2162 9204 7771 8395 3454 2452 410 4764 7411 7885 4309 8965 8281 9669 6916 2227 4635 3281 837 7985 3827 8212 2012 5852 8563 7878 7241 6177 462 874 1587 759 5923 4078 3643 8205 3801 6604 5633 9390 5327 662 7289 2697 4397 6248 2317 3374 1660 1882 3701 5334 3771 4704 8903 6418 3649 7868 3169 8643 7582 9033 4192 4316 5872 6696 8341 2837 77 4958 9778 9689 8649 1081 706 3494 2877 9045 4877 3485 5157 5433 2458 6880 7090 3481 7366 7858 9186 7180 2350 6732 6303 8980 3721 4802 8519 2604 6495 109 5134 7339 7628 7770 675 4300 3037 2141 1292 8562 6405 8481 7898 5721 1110 732 3650 2044 3958 7895 7199 1724 9156 4490 3249 7487 712 1555 5629 9785 7622 3463 1322 4710 8318 3739 2791 9242 9437 2434 9759 1778 1014 2055 5977 849 7847 9263 9599 6348 7875 5521 9107 8587 2099 8902 4594 2143 5714 7478 8418 5234 419 1829 6239 5312 1744 6061 4311 3852 467 9350 2980 8587 8359 3059 7214 9592 6732 4184 1310 2434 5019 7819 4942 3356 4995 5870 2535 9267 6953 4857 3805 1169 7450 8470 7545 9959 872 8549 3479 3929 8540 9464 1002 461 1625 6591 4918 6757 5639 4107 3435 8330 174 7351 4016 582 2766 7684 6419 4432 1324 9390 5834 1075 6355 2029 2534 8051 4643 6275 579 2037 8251 8081 9884 1422 4244 5503 6553 6349 9798 9176 7449 6843 5365 6005 9722 1768 4544 2540 7650 189 3621 2594 9025 320 6424 1620 1575 3001 226 658 3610 7484 2429 6964 1181 2237 8834 8219 3207 8698 5962 6619 1884 6676 6501 8754 5919 9654 8679 8575 2449 9817 1140 6438 4064 6770 3866 8012 4534 2898 9444 8606 1474 9751 5443 9706 2400 9471 8036 9053 3724 5772 7672 6726 8949 689 3460 6610 8870 5938 4300 5218 7088 7920 3446 6197 8061 5163 5500 7963 2929 495 6435 7771 5603 8698 7640 8413 208 7465 6342 6979 9670 7529 4154 3580 1004 5608 6235 3502 5231 4469 8664 1220 3221 9603 8613 8874 9824 6978 4087 4163 5854 41 3250 5435 7948 4742 7971 2438 7489 5564 5404 5702 2536 523 6259 4783 9752 8689 8225 6393 2372 9737 1811 3773 4342 7084 2543 1189 4624 6114 4749 7082 3140 5928 6465 6030 980 8153 3572 9842 7387 5652 3616 2793 7187 7304 3320 9336 7891 861 8566 2488 7039 5137 4618 2679 7276 1902 8297 5702 3333 4888 3525 8533 1823 4882 5914 6712 9704 1474 4400 1983 8584 8528 7970 2966 3618 8823 7730 4564 9552 6194 2744 5951 4350 7301 2462 2003 515 9543 6290 868 294 2687 4982 9786 9926 2965 6593 2024 1260 9947 1143 5834 4645 9187 7699 2437 5052 9682 2143 2753 1449 5568 4512 7044 8017 1075 7079 4251 2799 8877 9599 743 1947 3250 3594 560 7397 6122 6496 2975 6399 7927 7639 2218 522 1065 1812 8990 9791 7352 4691 1 7712 1422 9906 8034 5984 5734 4813 1403 8166 6805 7687 8692 341 5101 7131 7158 2668 2965 2200 9684 3380 3400 6856 7515 7357 33 2726 9666 395 363 8888 2421 382 6382 7620 8596 2299 830 9181 6137 9276 8894 1270 2992 5223 9166 8868 6419 9752 2051 7392 2581 8710 9545 8340 6320 7836 9572 1029 1546 8895 1506 2518 632 2413 3819 7065 7337 4470 4416 1903 1539 1050 3885 6088 2413 1829 7236 1873 8098 5046 7555 1743 8633 6899 2920 3975 7869 3543 7375 4488 9315 3681 1006 7924 5782 1205 294 9303 5633 3955 5849 7092 6651 6234 4768 7354 9417 9400 22 4699 4596 2503 1881 8363 8207 9430 1538 8031 7931 4095 5720 7003 3383 432 5665 9033 3974 4463 800 9658 4864 4888 7180 9153 4030 4652 837 9415 578 9692 4252 3315 2002 9316 8030 6248 3178 8607 4394 6554 7626 7040 9477 4084 3182 1331 4929 2413 4486 3839 6610 2954 8545 9147 3002 7254 1909 8006 3801 2915 3194 3743 6433 388 5618 2696 6606 8113 9012 1667 7292 4878 3547 3057 8307 9611 1736 4199 5796 7504 6353 6487 987 9685 3469 7462 4349 7141 7495 7653 9587 8664 7155 5343 5896 8629 1185 8200 6178 5498 1946 8000 9038 3795 3437 4410 3338 9302 1722 2434 8224 2845 1537 3361 5817 2770 7856 4501 1801 8166 7222 6766 6092 5167 4503 5401 5626 67 5274 5104 3426 1533 815 7555 8220 9919 8109 4118 5823 7270 212 7604 512 7679 8106 2169 3609 6121 7335 1272 8896 9212 6366 8452 8813 2103 9857 5477 3358 9560 1660 8220 6486 2448 5265 7297 7961 1387 3929 9514 9437 2079 9121 6490 3795 6947 4531 463 1350 162 1107 6121 6594 591 7750 981 805 884 5077 7561 4068 9156 2869 9309 71 1187 9783 6868 9264 3200 122 1873 9395 8744 8137 5072 4722 5439 1058 3707 6912 1969 6443 9899 943 4824 7839 2346 3118 3844 3368 4188 2876 7578 4551 753 2937 5379 4863 3903 9162 9603 452 5600 495 9959 7363 2784 3904 8602 914 9306 821 8491 3044 7217 5307 1598 2093 1638 8113 174 2716 5683 8421 8225 4534 8140 5446 9521 5042 572 376 7544 1753 7912 8505 2371 27 6211 2683 3614 4069 1883 5460 903 1225 1677 3841 4088 8736 1033 5949 64 3697 2042 5225 1041 3279 5081 7571 9592 1469 6458 5124 9435 7790 399 7527 4049 2524 121 6607 4025 5175 2488 3480 5276 6017 607 7382 6881 1610 3066 8046 4085 778 9301 2514 5518 609 1800 6871 7858 2384 6100 7393 6918 1841 4673 2358 1488 7323 5391 3594 217 6963 1778 7396 8359 3322 4271 5186 6704 2901 7670 6538 761 2424 7104 3921 8750 9185 8515 4594 6419 7476 3181 8629 1327 5699 7651 2458 796 266 2995 9254 3148 1645 6196 5557 3107 3142 8325 691 4494 5711 1488 8485 2277 4876 7482 7206 8768 1593 4954 1077 6275 6033 5052 7037 2168 991 6849 4689 2630 1778 1580 890 7773 408 6060 7175 5733 2250 6665 9121 2138 7391 2222 5051 9862 3266 3933 2512 9112 3819 658 8662 8367 5306 8003 9539 476 7759 3977 1926 8247 4197 2822 5662 1729 7800 7517 4803 278 6516 6562 5403 4342 4580 8929 6606 6828 6140 281 3031 3821 1618 8123 2182 5115 1096 8352 8504 8454 3855 5332 8166 2883 9590 9627 2960 2791 1685 4894 878 3336 2564 4757 3597 2883 1357 6782 7458 8840 2418 8678 4442 4460 7804 3289 6026 9440 9708 6366 6703 1955 1383 4608 2880 3810 8665 3609 1242 5424 8297 7633 2915 2496 9377 6130 918 869 9966 3222 4401 6467 5661 4091 5182 9008 507 4303 9542 3332 8207 6335 9974 5133 8387 5330 8560 7750 3346 8052 8895 3028 8423 3960 7195 6693 4265 4107 6533 4663 9179 5404 5406 2877 5516 6699 2299 519 9678 6315 3635 1093 1788 2562 1665 8497 4736 6973 8147 1772 283 2394 2823 9816 194 6095 6293 1879 7039 4935 6264 9356 4814 2689 1048 2654 5178 4745 7797 3163 2526 6689 9255 7933 1223 1431 2263 1143 9178 2173 7359 233 5079 3085 3854 5049 873 4052 1719 4129 6279 9605 2569 5304 4333 3862 3973 1865 8587 5827 7056 1431 5101 5832 1762 5984 6191 329 7944 2485 4608 6856 6205 3654 3498 2932 9041 5064 8754 5786 5968 5735 1175 1057 1052 4112 3035 7125 1718 9247 3881 2959 7060 3460 7138 6093 819 3266 2298 4220 2816 169 5854 8216 3447 9914 1593 1139 1541 1199 4139 5681 371 8415 6816 3477 7211 1065 931 9504 3526 5821 6921 4195 9606 4961 2792 5572 8720 6163 2573 6962 7084 4984 699 7529 179 9060 852 9380 1198 8897 5781 4586 9497 972 9669 9219 7902 6067 3247 5396 7939 9121 5010 9521 1266 8415 2580 3817 9457 8127 2506 7427 6259 4316 2345 811 9365 7404 3675 5807 8821 4765 6365 2214 7359 9323 6375 3659 7780 2726 3943 2690 4267 9896 6083 1812 8739 3437 8768 1458 7730 4561 3410 597 3675 4566 4338 411 3017 1055 643 8036 9370 1763 5056 4088 2529 7110 9516 558 2906 7286 6692 329 5928 1011 4209 6841 9147 133 3048 9695 4851 4881 4825 6162 6237 2586 9614 3064 5609 2409 1723 1461 2293 632 7032 9859 7192 9017 4455 3251 1249 5534 7126 6065 735 5889 9246 9495 2621 4890 1713 7201 6716 5680 1810 1994 2669 108 4935 9560 1269 6658 4547 3318 2174 \n5066\n122 7620 6576 2780 4990 3504 2480 1780 2176 2233 7496 898 2729 7565 9355 688 3641 316 4225 991 363 5787 6348 6373 85 9736 1798 5421 9726 1324 394 1324 4473 4461 9931 3972 1280 9907 2390 8919 1503 7195 7819 2465 5879 372 906 8355 1918 9772 2132 2325 7824 9972 5521 3202 9813 2038 3098 8193 9071 6049 9221 7337 3089 7710 6744 6711 8215 8633 5855 8049 5716 4684 4265 5906 3191 1147 1439 6198 5142 7890 7151 8474 5666 6430 7613 5230 5013 460 1506 1285 8879 8670 3868 5925 466 2879 5014 4086 8154 4689 4289 7298 3720 839 8104 1421 9848 4854 5460 697 8461 565 6929 581 979 7717 3389 3247 6631 7995 1822 1755 1573 3800 7754 6110 9329 2886 6230 5121 3000 5062 3524 9099 1656 6497 4482 8969 2189 3791 8457 7017 5983 5504 8712 6931 4236 8650 9991 4010 3513 4246 2348 2459 3918 293 251 941 8035 8483 8614 8344 515 7388 4204 2946 1317 9691 6890 4415 4758 9309 6737 6080 9268 9195 9739 180 15 7349 1438 1023 520 5712 7030 8306 1610 1031 9377 5038 3189 6237 8542 1779 9699 7384 2775 7072 3859 111 7513 9957 4569 4111 9953 3490 1677 2411 897 6853 2714 3579 7234 6498 8876 3132 9549 3932 8355 4753 9757 320 6511 4349 3491 2282 2696 1453 3753 2250 3771 406 3968 8272 7253 5216 9892 1731 3486 4633 8600 3590 4371 7762 8949 4041 7405 5959 259 4631 1240 2840 8151 6890 260 6892 2761 9009 3074 5337 2383 244 294 4923 7549 9577 9469 4313 2865 7733 6117 5017 4673 9663 1693 3451 7060 9804 5733 1973 8750 7685 8214 7996 1535 1704 1059 8546 7737 1093 1200 1345 7959 7768 602 6925 1383 4704 8264 7651 1777 2010 9528 9953 8013 6401 8991 6836 1889 2433 6450 8422 8047 3330 1043 9798 5204 1737 6127 5796 9286 7626 1432 8018 4823 5067 7588 8668 2077 8977 5858 1953 6002 9101 472 9001 5787 5525 3493 4561 782 1491 610 3068 4027 1219 735 8104 3326 5577 7931 1790 3939 4100 8238 2650 8417 6319 3361 7910 5076 6446 5802 5708 1138 7907 6417 3626 2184 9839 7446 27 1065 3115 554 1308 9897 697 7367 6805 439 4410 7991 7699 847 3987 1816 8687 5504 6011 6582 359 7232 3876 9983 7324 2258 5338 915 7287 2947 2601 3110 4548 2444 3227 4321 8057 3312 3552 8058 3603 8250 6388 1287 2113 6202 9151 2598 1552 133 9852 2406 3543 6113 8888 8262 4194 9788 9020 561 4463 5075 6150 3657 5314 7855 6077 7225 7010 6959 1531 8996 7730 5007 5247 8999 2802 5204 8334 9065 285 1529 891 4117 4645 6273 2907 9108 144 3000 9056 3841 6442 7409 2346 8122 9415 6237 1707 468 3158 2027 1206 2832 7270 1898 4238 1284 9730 142 8807 4372 8979 5793 8399 2855 5337 440 1073 8371 8698 9107 100 9946 4821 8571 523 5878 239 1599 5429 9126 1565 9468 1025 1995 2044 2699 8150 2724 4433 3918 585 2989 960 3837 5003 7033 6382 6443 5233 4567 993 1491 6429 684 5795 7354 6247 5869 435 1095 1474 2028 2146 3636 3343 901 8104 2045 5024 7586 8019 7986 6525 7966 8030 942 5718 561 8656 6173 9438 8138 9047 5923 5786 8796 219 9530 8158 6620 3376 2796 8927 9841 2942 438 727 3017 7634 804 3710 2758 9391 9256 8996 8078 4551 7180 6089 9083 4998 5440 3440 3528 6111 4292 3861 1757 6129 1881 3093 115 3894 3362 5117 9656 7657 5061 6882 3201 4248 9961 9299 2675 2824 1016 4028 1659 5919 734 5117 3819 1359 6406 673 5588 5177 8004 8365 1670 4041 9644 1217 5383 7036 5920 8477 8944 4872 3877 4178 2611 9879 9637 5186 1795 1128 3619 3600 4419 8032 9374 5363 3356 6056 341 618 1278 5255 5884 2603 1551 9661 2477 108 6786 2083 2480 1278 6625 955 1315 2025 8457 5647 8002 1613 9804 8398 9021 3377 1235 5116 141 9615 944 9928 8805 7004 9455 3926 5050 8316 2851 3791 8709 8948 3956 703 5155 2114 4835 9513 5928 7495 3773 3271 8182 9135 1665 7756 3219 2346 6958 6086 4947 8861 4322 9388 814 3819 5590 6322 4732 2982 8653 5292 2568 1409 4702 5144 5506 6269 5973 9649 2026 6449 9126 4112 1374 1314 1561 1568 8520 9767 5301 2805 6806 3073 6988 5847 3651 286 4736 8922 8929 2088 4456 9587 1962 4552 7409 9078 5468 5477 7124 9888 99 1411 9161 6 1349 4440 2456 4733 2703 8520 5524 5084 9002 2932 2379 5644 9045 2099 8956 344 7493 6847 8438 3754 4861 3299 9198 8215 8373 4643 4846 9197 6754 4706 4066 383 224 6914 6573 1846 8641 7286 4367 6889 6590 4782 6101 4337 3228 6171 6222 9769 7675 9947 3832 8952 7017 4196 5304 7977 6907 3351 5395 4229 2904 9529 5188 2848 6079 9056 563 7659 1452 47 190 5602 934 688 8739 1341 4621 4890 9531 3588 9889 265 462 3097 1130 4488 7937 9567 5100 2151 5396 1090 5210 3962 56 6970 1222 7863 167 801 8503 6962 6906 28 9679 4331 971 5511 4066 8131 5387 1349 188 4372 5198 8566 1104 6066 3700 9044 1696 784 7918 3380 2760 3348 6136 391 8068 5966 5676 7376 6571 9676 998 8453 4692 7490 2019 8653 1447 7263 2660 8097 1953 5454 2609 8786 2282 2761 707 8139 4396 9411 8656 3288 8608 9866 7184 3229 1749 7269 2630 4355 2302 8378 6575 4738 7250 9606 8397 5069 440 6629 1136 4874 1944 6205 9481 4057 7327 2120 6498 3360 6610 326 1718 4244 8313 4778 555 4007 8367 3327 4110 3425 7059 9599 800 1815 9940 7026 8720 7188 1899 9316 5865 7367 9362 565 2675 7367 5443 4327 1771 6908 1070 1111 8974 5404 44 7622 2461 9843 9554 6310 1388 4176 7403 8523 6839 4572 8663 4114 7738 4402 7007 8225 492 80 1141 6413 2085 6287 8128 9597 7679 6617 8179 8189 9571 9267 3991 7244 8380 691 3229 4607 5555 4623 3566 2030 1467 5766 1227 9493 145 1326 3920 7395 1842 3859 9078 3180 6646 7748 7674 1951 9085 2827 2260 622 5511 4395 7758 2293 161 5785 2295 8714 7736 1093 4734 49 8477 6310 6479 1984 5661 7069 9659 5612 3532 1516 4919 9000 9989 7166 4848 7201 3814 5941 2116 4055 343 5815 4044 9975 9609 964 9250 1293 4379 7495 8220 4036 915 5140 1994 4029 5634 3378 8166 3109 7300 6807 2782 2664 6800 5153 3767 5724 7357 4768 7864 8854 2027 9555 1050 5221 4040 3247 7825 1461 8538 928 1753 6802 5510 3251 7418 5400 9205 5334 2269 2482 2417 1078 6028 8177 5001 7347 1075 8165 3637 8870 1960 7988 9139 993 3739 240 6044 8546 7135 9706 6850 356 4016 3714 8924 4967 2842 1344 7992 5104 4410 1164 4735 2357 6844 9194 311 6359 387 9312 2204 5414 1285 5982 9549 7445 8722 8405 414 4434 3959 6961 7908 8901 2800 6798 2338 3834 323 8612 8750 5951 6011 7289 1022 1856 4184 2318 5579 8155 1588 9762 4806 7346 8212 6027 8509 4280 8880 6966 9248 3618 5833 2224 3990 6326 809 6277 5715 4608 1861 9262 1112 5419 2427 7956 8526 9478 554 1747 5158 8812 5752 7489 7719 4765 4945 4134 8539 9723 4932 7489 2019 5275 4140 1793 5200 6794 1742 880 8109 190 278 5253 7484 2033 7214 4695 6983 1073 1898 7381 9488 239 1727 7614 1372 9 1104 9805 7900 381 6202 7233 7581 7065 8331 7672 6664 1430 8415 5859 2005 6148 540 456 2566 4485 7504 4335 649 8637 5531 8951 2353 6591 1226 5172 5264 7506 8236 1308 329 1053 6060 4341 9365 6805 4495 4236 957 3098 7437 4735 4732 5187 2981 2660 4386 7826 8517 7491 6563 9112 2198 886 3237 8812 9909 3429 4989 4535 6542 5638 3066 4846 1739 6467 483 8460 9819 7649 8586 9802 7622 9286 4954 9165 2301 8823 1249 8642 621 998 9852 3639 1845 2080 613 6774 6380 5191 8321 3969 6744 8727 5759 4056 4695 5974 981 5902 5167 7316 6850 2171 156 1643 9408 7048 6170 1046 641 9538 2478 8512 3670 994 3501 2481 437 9342 6586 9478 2566 4697 9773 4488 1441 1497 6015 3262 5168 5134 4424 4685 9560 7285 2070 2372 1298 3638 2032 8886 5968 7602 9845 3891 9749 9070 8606 9925 2586 11 6629 2832 6624 6724 1954 5062 6699 2616 7606 599 7479 2989 3953 9017 9273 7549 2732 1467 9974 8378 4436 5046 7270 4502 5922 1702 138 526 5976 2064 1611 7672 5545 5585 4834 4939 3362 6858 1027 7476 8208 2193 3206 2759 7339 6000 3176 26 5264 240 231 7465 6599 3819 13 588 6162 1970 2035 9609 4899 6270 7609 9643 5038 6730 974 288 9875 9677 950 9031 8179 1287 8436 8660 4121 823 8035 5337 309 7352 4430 7104 131 1415 1815 4454 4952 9473 5714 6455 4863 1208 6480 5170 6269 5526 4809 2975 4471 8780 7943 7825 5699 3449 9573 3692 6462 7501 2961 1919 3130 4376 2108 8078 6265 6536 6167 8139 9740 3983 3858 8186 7839 7534 8324 3457 6854 3126 4170 4697 510 9558 6440 2553 6797 4655 6250 4798 41 5278 4044 6198 3338 5164 7796 8126 7106 5875 69 4447 7402 5376 4758 6593 5520 2493 3989 2843 3094 1934 5256 4802 8968 586 9514 184 8351 512 7483 2316 4163 5110 251 4228 9522 708 5335 9132 9981 9903 1167 7185 3813 4922 5889 9490 7217 8929 2702 4073 5959 8922 7333 4529 2010 2437 2060 8090 1448 8529 7577 330 482 4919 1604 8959 3087 2454 8083 3944 8638 6191 3015 8436 8085 5214 2578 1111 9208 9092 3743 7413 917 2813 247 3605 8769 4047 9623 3112 4976 8541 3249 4781 197 3931 4337 3740 6102 2855 7839 2488 3466 4760 8943 562 790 9680 5938 6865 4819 8317 7357 1814 9541 1219 9294 6382 633 3171 216 2601 1148 7035 4630 6418 759 9756 8203 9634 1371 9590 5012 5718 7521 3273 5817 2270 2655 4180 23 7273 1101 3214 7230 8872 3414 1712 5538 477 9951 6914 8866 272 7215 3356 5805 1695 4173 2823 6775 4515 6230 6974 8155 5511 6933 2955 7667 9874 4988 3068 8490 6346 7071 3863 544 4614 5256 6494 840 6147 1602 3404 5922 3298 2394 949 9548 7899 4028 5136 8188 1216 3050 2286 4021 8740 7314 2047 3799 9922 2707 4741 4767 8369 9311 809 7959 9111 1392 5911 6714 6640 1037 919 6194 395 8957 7561 4616 2646 6221 4646 9628 8411 3888 2264 324 6481 8948 8269 7272 5206 6 6097 9754 1594 3247 6508 3288 9986 2387 6310 768 5919 4705 7184 4797 7051 1692 2135 4287 6785 6750 6794 111 1839 4302 2317 3464 8238 6918 8735 7498 8348 4462 9231 8036 3994 6964 3084 4230 5056 5857 9765 9406 9685 2379 8186 1281 8296 7686 9605 9141 3205 494 6682 8693 8350 7056 1538 5777 93 1068 8522 1477 2248 4118 9470 3640 6924 4248 3320 667 5740 8627 2890 8144 3645 7863 7127 5012 8292 1156 3400 2142 9270 2357 805 3196 9264 4175 163 7784 5911 5654 3886 1682 896 4074 774 6895 998 9475 7566 3812 4901 7372 38 9274 7849 1873 7133 5079 2253 4952 7489 2330 1671 364 5622 548 6621 3902 9535 7903 3900 5169 1554 5145 2452 3755 5960 5629 1781 4893 1255 5509 8047 2423 3252 5472 2825 1851 8096 8328 4474 4479 8331 1876 7982 6985 4191 8055 8774 2047 1491 1549 8876 8743 5032 3005 7196 9975 80 1362 1471 5587 9504 2363 5115 830 6791 6805 2656 5576 218 6751 2789 9372 4340 3686 9436 2226 7494 1140 4092 4600 4028 893 7801 4703 6236 7424 1464 7437 7845 5534 1887 328 5109 763 5579 4015 912 4448 6730 6073 4609 8212 8735 7857 1922 1233 9691 5928 6285 3651 4701 9919 8758 515 9380 7756 5216 8188 925 5147 4250 7934 49 9602 693 8740 828 8273 1246 1992 314 1087 4716 7334 2112 3728 143 681 5602 1185 4766 3199 5565 8555 9857 3789 3986 5689 600 9552 7671 3347 3847 4625 3937 5976 2796 9313 7364 1942 1713 9745 6092 371 8930 4743 9244 1260 5064 7714 3667 395 2630 1896 756 9900 9567 2437 6945 8239 3724 1080 2861 6364 124 597 4882 6131 6075 9885 8766 5073 8184 585 6174 3069 1996 4957 513 8196 738 669 269 5617 1819 9397 7388 4644 9082 1475 236 6307 7486 4052 2803 6616 6416 6054 445 7490 3275 6913 9365 7773 7688 7404 26 935 5090 4503 6407 3245 6744 7900 8554 4819 8529 7168 4094 8746 7969 5980 3149 2401 1470 9289 8893 4676 8516 8126 8377 8373 3087 8374 2223 9557 9557 3025 7958 1946 3004 3995 9153 1556 204 3715 1757 2269 4474 762 3901 9579 9704 1231 6409 6048 3083 2705 4943 6850 6436 4803 8676 9095 5749 5285 2597 1540 4232 8331 9077 7023 7241 2494 668 611 9343 9624 1943 7926 4206 788 3540 6154 2341 6284 7403 7754 8288 7586 2189 2736 6881 4697 737 6924 8001 9694 9224 7963 3022 1066 7655 7973 3226 3627 6552 5483 8212 6652 1416 3867 7269 3760 3594 1051 3149 9439 1496 5759 4204 2543 8211 5443 6371 2086 4573 5448 6943 8466 9460 4989 2285 7434 8848 3463 2079 4738 1594 501 2338 9916 9001 6396 3176 4004 2389 5076 2752 2532 2643 9196 2107 3116 8151 9771 3617 9451 8667 8721 9899 5595 7237 9152 3832 9187 7739 4516 1653 5307 472 7279 634 4538 2383 1486 9257 3153 2544 9076 9048 9843 3285 3448 4585 6875 424 943 5384 4418 5802 4017 8227 1425 4753 8961 278 2919 87 2779 5966 265 4756 9180 1508 9760 3322 5515 8825 2959 4876 3716 309 3670 1702 1565 6966 7299 7886 7088 8512 9621 8325 4885 4399 8793 4539 2962 72 6363 202 4681 529 6905 7268 7779 5468 9784 8590 4109 26 1440 723 3852 9599 8460 7159 6934 2343 425 200 1062 7 5625 1012 3119 2308 6083 2965 4326 8057 1677 9332 7985 6499 553 3907 6795 7971 7272 866 2138 3079 1221 1185 4431 3103 5271 9958 2429 6644 9872 6216 6822 4349 4894 1261 3089 1186 7078 5810 548 5555 8371 7389 1113 6402 1310 5763 1252 3078 5995 6784 1010 9719 1654 6290 7318 1220 496 1171 9637 6993 4599 1418 4826 4291 3766 6170 6760 9155 3249 6393 5625 2342 5942 785 1487 4208 7272 9246 4426 2880 488 4462 1504 3987 6919 8206 3198 8172 6581 8637 7952 9203 5837 700 3531 331 7059 4364 4596 1984 3976 2547 5384 9489 162 2319 8883 7678 1153 9224 2721 4643 8690 9032 310 1206 3312 4462 6001 386 7518 4975 6926 4456 8531 7204 5521 9078 9575 1612 972 9975 3775 6697 2248 1320 9282 6904 3767 3835 8794 2042 9962 8395 8062 318 2656 7124 8363 9608 9046 4605 9424 1357 3604 9377 5012 3513 3426 8231 761 3236 8279 4230 9671 9503 689 4894 6409 5734 104 6419 5478 5799 5522 3076 916 4580 1291 527 3499 2125 2669 9581 9609 9361 6049 5099 1704 542 2810 5475 4994 2219 2910 4671 7308 3076 577 217 3557 8757 9836 5577 766 1061 4284 6466 6934 9876 6691 8201 8877 1976 2897 9228 1471 3862 7908 7279 5416 7578 8483 9393 232 5487 5131 7755 5560 6542 7912 9799 3498 8474 3985 862 6777 1224 5593 3418 2635 5566 8837 8852 2470 3331 2556 1866 6452 2808 4360 7039 2937 6189 2286 2494 1533 2617 4063 333 2528 5224 2239 2717 7535 7897 3486 9529 6962 6157 3698 931 2275 14 4319 1006 6700 6540 2700 7552 4101 289 1847 1278 4022 1282 6433 9904 1925 7818 964 8996 4202 2542 2705 6543 8773 4886 1254 4570 4773 5972 7281 4827 3646 1761 5957 7300 4891 7692 7657 1088 9968 471 6450 5809 6237 1453 3530 789 1315 2877 7682 5216 6586 6966 9884 7094 1892 5139 8662 3119 3647 9428 3317 1542 9224 5300 7812 4792 2639 5763 4016 7790 4236 8323 5135 5188 2765 3661 7151 4916 8143 5252 9193 9805 5065 466 1609 6195 6109 2256 3555 7152 1943 1778 5519 5572 8805 3074 7605 7733 3961 6770 791 757 9014 5325 6133 9208 2421 6664 2472 483 4362 5383 1360 9291 3336 8131 6145 9638 2144 2572 2043 7458 6656 1060 5508 9891 2468 6136 8696 3490 8535 5849 6217 1219 1713 897 6983 4985 2909 9293 8736 2013 689 9303 295 7235 5971 7497 6499 2236 1769 275 9775 5713 5657 8176 4656 625 5745 6806 6446 9620 681 4522 4578 9249 9898 3201 1052 3449 8655 9661 1411 6086 9076 658 1418 6751 9484 5174 7341 7493 842 5077 6428 1614 9164 6511 5262 7612 7469 2456 8502 2368 6853 4943 3465 5681 1832 3382 7668 6394 4767 3720 6581 5623 803 4455 3882 5734 4924 7577 2473 4184 1244 8793 9619 8081 8148 4281 6883 4981 7529 9371 5352 4917 1024 7294 2995 5744 5762 6731 9926 1750 2163 8330 7038 9572 33 1396 9573 1411 2755 4357 1117 3489 7486 4902 3515 5033 7048 2987 8901 5748 5896 9822 205 5459 5998 6483 4503 5687 6480 6727 958 9417 9327 4000 6453 2571 1556 8596 7258 8913 4414 4938 7518 1278 1551 8591 2860 7613 1127 4813 2451 1260 6264 3203 7833 4054 1996 5281 2857 6321 8142 5739 5604 2611 7874 2416 2336 9905 1180 9346 5932 9013 6805 4029 7043 497 6748 3284 4678 3253 1495 3351 1468 5881 8901 5916 5232 2802 8475 295 9456 9003 1843 1722 841 1783 3959 1869 1393 8813 8259 9500 8221 2756 9507 7795 4767 7750 2999 8065 8181 6286 8818 5259 5392 3521 5042 3249 7882 6333 1162 9269 3597 4603 5571 845 6119 140 163 6372 6963 5544 9482 7336 5735 4347 6603 9802 2058 9965 2135 7400 9327 1068 7998 2286 8870 7904 2873 7156 2430 5370 4410 7285 3973 9740 6603 2929 6585 7645 616 8943 7700 2296 3612 9008 9706 1517 3323 2829 9936 4311 2715 1256 8816 8871 149 5323 2924 1274 9330 7461 6999 5376 7481 8630 2364 2379 9117 3805 3064 2921 9394 8449 4764 3842 7375 8344 4928 63 8671 9328 7978 9086 1837 9231 3655 6752 9380 3417 3100 4046 3049 5802 6293 5226 4481 6503 9038 7678 4704 8646 8050 4378 1294 1875 6901 2098 3091 6600 4470 8236 5960 67 7897 8574 3007 9914 5526 3538 8557 7683 482 1963 8763 2473 8931 4433 9795 172 5484 9612 506 1844 326 4933 8211 9572 4879 8388 4779 9739 821 8083 842 3844 4998 1860 8307 1507 3928 1362 5939 1649 3222 2928 1422 2082 4712 3578 7049 5077 786 1441 4970 4349 7167 2905 2063 8123 602 8640 6440 1506 3747 8687 1484 9348 1501 4932 7946 3361 9759 2194 5350 9215 5911 849 33 8769 7237 4365 6946 691 2467 1283 1573 9002 2119 8925 526 7099 3135 4489 9404 999 4491 7108 4652 8780 6929 4156 297 3044 8107 1233 9067 965 7797 6647 7746 7273 150 801 525 4949 415 4834 5869 6493 2414 5746 2098 7748 7260 5995 4343 9677 604 8253 1740 9261 1413 4242 364 9093 2533 2121 1989 8090 4876 9095 2138 545 1762 3233 1638 3857 991 2692 4189 9331 5983 1034 996 1620 5887 6637 7697 4464 2728 9527 5281 6267 8246 8255 8218 1287 7808 8504 6086 7676 5261 3276 2573 305 4110 7478 6999 8430 8556 6355 8132 916 4866 8922 1045 2618 5295 6328 1576 4947 2692 2800 2513 5024 7355 9304 3833 2553 8986 7656 811 6618 3583 3180 6607 2226 6911 4015 9458 1418 2636 823 8629 1485 7500 7351 9013 3313 6926 7021 7369 7860 813 7964 4474 7477 8718 5829 7117 4516 8255 3966 9598 608 2037 1483 5138 2529 337 2808 2743 9679 6922 7024 6862 8159 6269 4966 8909 2293 9486 5557 5325 9394 9652 8272 1850 9683 3469 6579 8421 8493 7548 6208 4715 9185 3812 315 4310 8633 248 5494 6491 665 4212 2322 6579 3157 3436 2700 5175 6570 470 6810 3355 8689 1512 6263 6954 4080 4207 7105 283 194 1866 3890 3192 2712 8035 9631 899 9441 5433 4708 7831 4060 3272 4729 2998 9041 3718 1967 2362 4519 7128 453 7635 1751 5495 4772 2530 8400 3805 4675 1912 4632 5149 5248 5202 8772 2050 7801 748 8336 4794 8345 2104 9803 6291 5262 8363 3586 8949 119 7550 6564 2346 7295 1660 6545 6584 9092 1801 3904 8996 6602 4086 2111 1450 8660 3188 2992 6709 4420 5640 1404 9787 7731 6828 2572 5133 2257 5041 7544 2972 4732 5592 9325 4934 1590 2748 4389 8289 7259 7568 2420 2325 3529 6716 8283 7284 7856 7139 211 1449 8808 3612 4285 2175 3454 3650 9489 1260 5116 1643 8522 3214 1686 4824 882 2184 8361 9133 2309 1894 8184 6937 314 7393 1530 4745 7427 7028 7535 2146 7704 8173 5018 6952 3358 7292 2137 2942 3161 9864 3396 5691 1012 6515 78 5580 9690 3434 3480 6053 1979 9985 6160 3338 6572 2203 9878 2739 7040 3645 7685 6693 4910 2583 4977 6713 6419 4006 535 5624 2791 2144 3302 2358 8414 2527 3836 2046 6063 1953 8754 5095 362 6015 5395 3197 1379 5414 8149 8646 2863 6375 1685 2000 483 1844 3578 1148 9959 6248 4187 6377 3441 9371 7846 2392 596 366 6054 3328 9132 5796 7365 3989 4754 2905 6722 759 4471 7835 2867 6362 2770 94 9678 6257 3267 8941 3971 4448 3079 7853 9658 6198 96 7227 3116 2651 4615 6483 6751 3974 2925 6474 2633 8716 2776 521 4486 2414 8104 5066 5645 6956 622 2881 6861 8298 1572 9341 5242 9539 856 789 4717 5113 3363 9725 3974 108 7022 1151 7783 1686 7504 1247 6922 8869 27 7840 1518 139 3686 9412 2321 8843 2967 2939 1721 9359 3031 3648 1875 4965 6284 660 7115 2496 2189 3974 605 7860 3676 7480 752 3837 7159 825 3367 8947 8899 8161 8883 5804 1633 5847 2309 4788 3876 7142 9407 2695 6198 2337 6967 927 5453 1904 9655 2157 493 5479 9913 7297 849 3719 5457 9869 9077 9376 5382 7701 9157 4778 5124 4706 8018 1474 8600 260 513 166 6092 5610 1519 1988 7739 2348 987 6444 1323 5748 2823 1120 455 6243 5235 4881 8815 3864 7471 3513 1982 183 6842 6389 2341 1994 4049 1098 6956 2739 8283 8161 9616 5072 1909 2488 7901 3360 9556 2247 8900 4772 9249 8194 6418 7616 1969 1351 8002 4718 943 3632 8846 1294 6389 9359 1042 3778 908 313 5709 3427 277 8651 5745 9479 5875 531 2854 5207 4275 5883 1813 5882 1188 9198 7363 468 2338 7595 9328 3469 6156 8507 3070 1534 6607 8948 760 1087 2741 7525 241 1795 6347 1191 1988 5905 9551 3458 5963 6584 1280 2979 5662 3078 2791 6166 5958 924 1886 26 9277 3564 511 645 7605 8371 7407 1030 4360 6563 7910 3314 5972 4681 8531 9835 3952 591 2672 1967 2422 8679 7288 1953 9724 4580 9388 8908 1929 8879 25 3921 7980 943 483 9148 3722 7651 9335 7954 6052 2206 7891 3909 129 2179 1045 217 6236 9873 3199 9111 6948 1204 7814 9858 9712 5538 4027 7241 2545 1484 4339 85 9292 5435 3870 3010 7771 8949 7283 4558 2763 6832 7068 6088 6664 1567 9861 7204 7411 4554 55 7143 6117 6155 4614 9982 4882 7749 913 3283 2357 6193 1213 8345 2471 587 4041 675 3988 4970 6601 8514 8560 7466 7042 6168 7562 6499 3987 7919 8474 1942 9882 6437 488 1340 8587 4221 6405 9993 9632 1109 2451 6674 8468 7080 7659 349 1123 8147 8299 9387 6126 8450 3684 1958 2468 105 1863 2102 9054 7322 1424 4899 6465 8150 4516 8787 9416 1196 9250 7279 8752 318 6968 5460 6273 1160 9894 8297 6667 6233 7888 6072 5595 8376 3281 1764 2212 787 5668 5536 3808 693 4297 3145 4356 4941 3131 6548 409 2550 3607 8345 7000 4144 9264 8801 1931 6615 1276 683 3507 420 140 9126 5317 9775 5067 7600 7416 4191 9159 7121 4930 4538 7261 5094 8162 7242 1453 2304 463 2449 2856 8239 7381 2898 5076 3123 9505 5247 135 3225 9708 6101 1704 7133 8839 3156 1866 9130 9116 6160 9885 2435 3413 4988 8571 7482 5826 8025 6675 8968 2625 4551 7123 3832 3435 374 8091 4965 5 972 3856 1646 8420 1171 9694 2248 8230 3412 2806 5112 6888 7031 7918 4664 6296 6948 4860 9281 8517 7176 8876 402 6057 1557 4360 6366 2302 7321 9426 4862 5873 379 4905 345 4059 4503 3976 4716 4068 8102 1443 8381 9083 4356 2656 9297 5664 7864 4616 9610 6169 6956 1619 1755 2920 8504 1808 7584 3824 358 6872 5123 2880 3902 531 783 9336 688 5119 7468 8914 1919 716 375 3429 4000 6676 290 5048 4263 7334 2442 4719 6874 805 6354 9222 1586 7757 9770 8112 8488 8336 8974 9038 3615 1647 3143 3715 2790 8708 5282 9635 3859 7955 4172 7303 3890 1447 2016 9761 7679 9679 658 8245 8243 5989 4579 6579 46 3536 413 1797 5879 1518 8794 4592 5757 7294 8158 5356 6252 3640 8841 383 8914 8746 3775 2845 6328 2005 2429 9535 9872 2366 7563 5047 8617 9200 6420 8204 5268 7502 8274 6201 2417 9199 6655 3331 6079 65 6056 7153 8676 6446 1056 2735 1566 4475 5213 6299 260 8587 6487 9879 3687 5583 2500 9243 8275 2548 6322 5828 2225 4212 8416 6444 4089 6599 5569 6754 5408 905 4540 4417 7588 7835 5340 7881 5689 4315 4791 3282 544 1170 7465 1250 2898 8473 2962 6729 4424 4756 8474 457 717 6052 4800 4098 2701 1384 5479 304 8009 3724 63 5958 1103 5885 9444 476 4834 1466 6019 9064 9508 566 8596 7335 3157 2715 9462 7329 8038 3234 7469 6734 248 5719 2258 666 8751 5479 785 2114 2 1191 2009 5718 2211 6283 8982 4634 1386 8495 7967 3412 1265 4015 423 3443 2242 7942 4902 3748 6962 3352 2909 7423 304 7469 2883 1379 8840 3145 4529 9752 8898 915 7513 1071 2707 8744 8965 4366 7147 999 5415 3479 2946 4701 4250 4748 7433 2626 5196 4286 4978 3354 4975 4080 3665 8821 8032 3632 5596 1698 1144 4667 2042 1916 9908 6977 2671 8679 3581 8990 4548 2547 3415 2060 8830 8363 6419 4732 63 858 9228 4628 8745 2845 5493 6400 4306 9027 2994 1117 3713 2949 5244 1377 4896 9834 8780 4301 6379 1859 5916 7586 2952 6297 3660 5740 7984 8991 9189 6834 7290 2139 2104 2151 3689 2434 7867 1820 243 2342 27 4869 3853 1966 2755 5816 1627 2048 6265 2543 34 29 5442 1740 4629 8210 1063 1942 9642 8998 917 3211 7019 5005 7758 9467 5201 3362 3241 7878 8741 9195 4982 2249 1758 3809 4097 5523 8074 483 5500 8937 2547 6943 6838 9645 4661 212 5443 5910 1635 9494 7804 3634 9109 9312 3448 3817 4938 7592 3355 5425 9223 2469 8564 8821 8500 3895 7038 4048 4579 1306 7857 1651 7536 5038 8492 1451 8138 1688 2036 5158 5568 734 2189 1870 4122 5616 4838 3664 3622 3220 2759 4739 2905 5974 3643 340 7276 9189 116 1431 7764 2245 4612 4622 3086 6666 3384 4236 9168 7089 9025 9443 8140 9057 6405 5030 7121 3595 3923 9524 6100 9408 9081 9043 5934 9241 3273 2584 6077 7145 23 7873 9366 7956 129 1138 3148 1927 7445 4310 6085 5060 6173 3871 6159 2806 2460 3851 8522 9791 2900 9939 2182 9351 8966 1628 8130 7833 2293 1556 9373 7329 9443 4198 3616 9404 2716 8378 9597 9917 8183 5645 8168 1328 7311 3349 395 1585 896 2277 8278 1062 5262 6278 3045 524 5863 3340 498 142 6757 2538 4568 3549 1956 9616 4903 2763 7200 5228 9850 5381 6515 4782 2092 5702 1048 922 1323 5057 603 2975 6728 8225 3853 4340 9985 5022 2114 2065 6070 758 2947 8039 2153 3513 2056 5442 6154 8931 7897 4283 1509 9037 2488 3141 1476 6067 5364 7971 2574 3677 2578 2375 4651 4168 1061 7471 124 2254 6652 1060 1540 6425 1600 133 8670 6723 9455 6047 6146 8825 7808 7202 6594 3068 9503 1020 1742 3327 4409 4904 4801 2715 5469 4165 6246 5804 608 1157 9831 6896 266 5287 7408 7367 2232 4038 3448 5543 4997 188 9392 9332 4710 4931 9709 5903 7518 3923 3840 3156 3269 3732 184 5436 8656 9572 6601 6385 9948 7061 8034 9308 1664 7980 2367 58 1953 1459 7378 3345 3010 5315 8634 478 2229 9779 2156 8930 5259 772 2209 6924 7587 26 2980 3881 8037 6542 9170 8150 3475 876 7182 3676 9585 8791 8502 6247 5674 4501 5138 1366 8296 431 18 2975 4841 2420 5229 2523 4379 6822 2575 8002 3940 1454 6333 7781 1587 9023 4270 8692 7748 2019 9133 511 943 2654 7399 2361 593 694 812 8960 7741 90 5412 8895 5735 687 2822 2147 7109 6196 5178 6942 940 2 5188 1181 9939 6475 4275 9745 7978 7280 5478 4728 3493 1591 2785 402 7446 4288 5213 6284 4305 5280 3414 7804 34 3733 9958 4893 7903 3705 6790 4581 7944 369 9947 8135 3272 8201 9738 4170 5734 1600 8495 2073 9926 7580 9388 8671 9792 4199 1616 5699 6623 9268 32 9847 1431 4473 4567 8067 6847 3702 1570 719 5558 3404 3362 1565 4497 3509 8049 1996 3556 9251 2061 9296 497 416 6115 180 1004 1717 8790 2131 6643 7827 6724 101 1998 103 9975 4844 2607 2811 6857 4672 7088 5582 1639 7922 1059 7283 4065 9743 8646 3146 1986 2945 8775 4558 2585 4146 8299 8445 4128 2000 2854 5830 5320 7014 8419 471 8282 5757 6542 1145 4183 537 5210 6603 2170 254 9199 9096 3846 3520 9261 3506 1450 5310 7624 762 7820 2245 5884 3095 8114 9548 9122 2670 3846 7713 7841 3928 \n3327\n8765 5151 1073 5957 615 7906 1475 2744 2640 1822 522 6578 3316 5149 3303 9089 4582 4918 2323 7693 4732 5130 4612 1066 9918 3491 2741 7238 867 5783 4226 2187 3108 7595 4173 5453 1589 6523 5808 3220 1768 7110 7197 6894 328 808 2494 7966 2017 143 6547 5221 8857 154 9012 164 236 8537 4914 6517 9888 3318 8827 9354 2230 1378 8467 4160 2989 6255 9783 2915 6101 4158 9084 5354 4247 304 6312 3017 3947 5244 4114 8413 3946 2552 1473 2508 5661 6577 9496 8738 9640 4899 4803 5675 7293 6775 977 4773 8904 3557 1379 4839 815 2336 9731 928 8026 8859 4043 5230 4191 2927 5328 5924 3441 5870 3849 2797 613 1321 8412 3812 3340 3762 4406 5901 5301 4824 8609 8776 969 1291 3103 3570 2449 7564 4947 6001 7577 9042 6676 4839 2680 2488 6708 1502 1411 3029 9092 4937 6455 9276 4227 910 5449 5574 5157 3635 9577 4497 981 7151 8445 4453 1984 6043 4263 7280 8258 3594 1353 8262 578 493 5823 3723 7657 714 4455 5960 9325 7298 6194 1145 8121 4112 8926 5173 1773 8606 7548 86 5422 2894 9084 3614 889 2050 6992 1715 4372 4850 5433 3114 5062 6642 471 7051 5136 3323 3632 4604 5510 7261 5079 4564 9195 2079 5777 2305 9189 9286 4051 1837 5459 6771 522 7882 3198 7133 3235 9722 6233 3100 4408 5125 6081 7196 6841 2711 8053 6696 7174 4576 4340 1826 5745 9032 5190 5186 3642 6678 1183 5498 4660 1217 2173 5348 5922 3903 6750 6424 2987 3262 7424 4344 9710 8457 7809 6101 3255 465 9820 5314 3311 4195 8043 8053 7691 2908 267 552 8377 8750 8444 4088 5153 4188 8167 5484 6695 1314 9274 8182 4183 3257 2220 4635 8496 8956 1761 8789 7812 86 3091 8540 7950 3169 2350 422 1749 4396 3929 2946 9213 2862 4305 6213 1549 8050 7543 4941 1548 6648 3369 4172 1058 5946 8122 3267 4983 467 3201 3426 1096 1494 1727 7883 6050 6413 403 4616 40 1217 4226 4733 8027 569 7722 7165 594 8810 6539 6710 5328 6029 6581 6263 8547 3059 2522 249 246 7110 4734 9322 525 7344 2333 6307 122 9641 1018 6807 3616 9675 3680 6282 7908 7655 715 7621 4434 2304 2406 8375 8914 5795 8882 9141 7739 636 356 5546 6924 9845 4810 1825 6916 8867 4885 3586 4211 2250 5203 7248 2952 6760 9257 9382 2223 55 7929 743 9943 1825 4570 9672 1560 1304 5487 8932 1241 522 3601 5539 8357 836 4353 5909 1562 3204 3167 9083 7367 6167 3881 6176 831 8653 253 862 3236 28 1925 8997 3767 5026 1002 2899 9934 8258 9735 954 450 1628 8955 9570 2836 6676 5551 9016 5688 2281 2494 3595 2737 6057 7724 3800 2844 8556 8252 8500 1730 2648 2859 5312 9934 5570 6507 5699 7633 2208 3054 5289 3802 2835 57 3616 992 2380 6984 1148 7667 555 438 2846 8153 6280 7127 4454 9123 944 9975 7163 9690 7874 2535 1293 593 8924 886 7408 8286 5039 6798 7042 752 2051 5233 5592 1266 8793 6789 9401 6847 9999 4110 1961 6938 4142 9979 342 45 9604 6221 4790 2009 6422 6343 8764 3660 1450 4978 3385 5862 6156 5835 3113 7620 4579 706 9208 9379 9332 9343 4522 257 9916 5874 8705 3336 2397 4346 3260 336 5030 4908 7044 4482 6913 5699 5689 4910 3309 434 9068 1428 9907 1491 8734 3929 8279 466 8795 5678 2608 5563 866 9063 3300 226 6026 6950 8784 6457 47 3728 5289 2595 6328 9211 3922 8388 3291 8920 8475 4303 8270 7454 7095 9116 117 7349 898 3125 4496 8845 2427 473 1511 5858 5549 6276 8701 9978 9675 8388 8522 849 6920 5847 9866 4851 4473 6695 7615 3659 8333 6 4110 5618 7230 6284 898 6034 9441 9554 4977 7294 8805 6895 3410 2125 7979 876 8185 3439 8643 539 8370 2848 5991 1824 9645 85 5900 7727 5305 3959 9739 4705 2427 6075 3734 2901 4423 591 2753 2164 4611 7582 1490 137 9709 2412 4232 6036 6318 3850 1638 7783 7226 1341 7891 8416 3853 258 8472 851 3100 6270 1969 1143 619 7967 9811 4887 9005 8154 4247 4434 5032 8667 3376 6427 7717 3047 4178 2733 1594 2206 6242 1307 4836 8267 3931 2320 1460 1340 8497 7262 9706 5217 6887 7278 2046 8862 4986 3504 320 6763 7385 7753 5634 7408 9217 1578 5976 6490 2055 765 49 2384 7522 4657 4636 7074 2355 7826 7135 8834 9674 5401 2591 7734 6690 6277 3635 3620 9636 736 249 5047 6253 4954 1225 7518 9725 8777 8435 4326 7774 2225 3193 2975 8126 3050 2838 1376 4066 8021 4598 3879 2147 7497 7306 4918 9552 6781 8349 5292 2148 7672 1104 1397 17 9269 1338 5187 9224 2851 2232 3819 1799 7127 2211 4294 8667 8538 7467 6964 1623 6054 3203 5025 782 7657 5416 9777 4517 6416 1575 5402 6706 4973 5536 9933 9399 360 5856 4697 2448 5980 524 5561 3667 7261 4677 1583 6210 5175 7839 8713 1667 912 5022 4229 3297 7517 5035 1016 5445 8148 875 4223 137 8901 9858 7735 243 8950 3514 9594 1997 4817 8204 6142 7046 1501 1241 2238 1982 1060 2872 9202 601 798 8381 3077 287 8146 5400 9263 9629 650 3034 3486 6368 3140 6103 5985 4421 6312 1006 3930 8662 9241 5378 3551 8037 7956 2743 7976 6500 6932 2700 3950 8567 1509 3720 4093 9988 1095 1725 1954 8550 7221 7659 9370 1916 517 9424 6994 1129 856 4326 5317 2514 9282 4889 443 3293 8426 4875 8658 6804 7192 3766 7940 3174 3769 9460 1036 7832 7085 9844 4086 3961 3336 1239 7630 8072 3337 7921 3881 757 25 3666 2147 4182 3346 889 4898 4990 6565 2939 9855 4872 1531 6740 8277 8736 6540 6414 3206 5707 4821 6311 5800 8734 3921 8602 5527 4936 9000 6633 2041 9022 4185 5083 2703 2563 5266 3744 2435 3804 3992 993 5169 94 6236 558 661 1544 4471 2294 1065 9938 4984 5485 7279 9420 8184 6251 4153 5032 6496 5418 6266 7442 4447 9487 2329 5515 5751 5903 4118 776 2216 9583 5827 1945 7930 3909 3899 1630 2209 894 1740 7278 6070 3348 8695 8185 604 3160 1110 7484 5568 8383 1682 2916 5391 5528 1159 8809 1375 2385 1658 3652 8592 3843 3790 7464 3393 2321 2410 2619 8622 3910 6229 968 3804 9915 2709 7814 9364 5216 7719 4303 7188 1993 3764 6048 7978 6102 2586 6322 9387 6414 4564 1235 7642 9838 9696 1292 2111 7515 4061 1579 2825 3092 6419 7187 4024 8230 6416 464 875 9661 7275 3847 5245 8281 6560 4888 4438 6822 1083 782 5334 9147 8832 2209 8392 5407 4119 1031 3720 7730 2099 1139 48 4110 1499 3405 2153 8582 915 1520 1000 1848 1416 2119 6611 5642 3551 8564 4654 5175 8228 9898 5809 9612 9922 5117 3300 1301 8485 9216 1986 1304 5910 567 916 5270 6064 3991 3848 3764 7477 7237 8626 1544 5092 1667 7299 4037 6695 4032 9737 6175 9145 7107 395 9316 7217 8391 6306 5511 2543 8887 5782 1949 4024 8676 3672 4591 6150 8288 530 7867 9289 9556 4311 2151 308 4291 894 3321 1605 5576 4522 6714 1780 4239 8950 8093 3576 2932 6549 9297 2173 716 7621 3696 2530 2541 733 291 4014 5467 1799 9627 2807 9167 9206 6076 5893 7423 6181 9358 678 3729 3293 3940 4691 3099 1512 9853 9270 7232 6271 5801 6059 8167 2350 3105 539 3903 3752 2448 352 2556 4543 9134 6278 3320 3736 8420 5759 7284 6896 6579 5419 6073 2511 882 7462 872 1584 1204 1680 5794 6181 9191 8161 2292 275 7516 5487 5999 6951 6414 1100 9341 9049 4012 9551 3287 6793 2076 9253 430 6135 1221 6794 4590 8939 9089 4647 5162 8653 3706 2968 5779 7979 7433 4807 2159 6836 2436 8325 3896 9911 7433 5887 3145 7803 4486 4921 6752 219 9252 9877 7554 2670 7642 4405 3778 2091 7359 4115 9053 4887 9849 5414 3415 2097 9365 4621 6586 413 6943 3861 7638 9079 1108 7254 4905 473 4759 6789 3600 3042 4579 6103 2341 5124 2339 8008 5831 5567 7378 4463 9587 1424 4651 3972 4620 5041 3735 8311 4506 247 806 9174 7197 3997 9020 7189 310 3268 806 6559 2771 5693 7369 7448 2516 5550 269 4114 6815 3700 3962 1201 7129 1343 7105 2010 5481 206 8444 2005 4659 5749 1157 7305 4289 3527 3550 1236 8263 821 9116 9107 6757 2159 1761 9075 1364 2428 5123 1405 7409 4445 4877 9426 5860 4262 4963 2803 862 1166 4394 5571 9604 8814 5215 6001 8856 3963 7684 909 1257 3784 7351 5475 2589 2284 2594 7577 4452 37 8116 6587 7241 2897 4679 7546 3381 943 7727 6747 8211 2502 4834 4371 7074 3642 745 7117 6545 3308 9622 9574 4939 6755 3541 9575 475 2530 6684 8008 6110 7449 323 7540 3667 4663 3715 7203 1147 7243 2691 9827 5555 394 3716 5431 3404 3616 7952 1316 3443 9296 3862 8772 9371 3198 2544 2397 4514 5983 6640 1069 3991 3292 5161 2875 5512 9893 4292 3125 2627 6369 7333 8745 572 8700 8777 3890 7503 6285 8435 886 2868 4309 8178 8728 8167 5414 5204 6611 3379 9965 9386 9122 822 6680 1187 8149 9650 9653 6751 4608 892 9946 4147 8458 7048 8997 6944 1955 7165 1000 3536 1758 2933 4404 6660 4953 288 5951 3203 117 9662 596 769 3781 2534 6495 4622 3609 2819 8538 3495 9950 1079 873 4801 2718 3936 7098 1092 3227 7046 5208 9393 1162 2443 2625 8885 6882 1160 5730 3628 1337 5273 784 7993 9979 1008 1493 7104 4259 6012 2172 6443 4043 1904 8869 2316 6239 9656 6792 5055 2273 6899 6687 3051 4603 7763 1933 8484 4919 1509 1336 9295 4283 8617 4560 3112 2921 7363 6570 4975 1683 1596 9406 2540 1035 2333 2151 3577 9774 4179 7606 9384 9590 9420 8769 9038 6337 5600 1561 4252 3390 8206 8219 1153 8395 7085 5793 3667 8601 2556 1536 6999 8122 8552 6408 9640 110 7796 4870 7629 305 6659 250 6830 7550 7316 2011 1133 3600 7896 7831 1092 2264 126 9759 6147 9048 9729 5551 6694 891 4462 9431 8819 6181 7760 5215 6720 8035 4771 5657 5209 4435 3813 3275 6718 9661 6118 4450 7983 669 5459 2719 5211 6289 7401 6166 7341 9641 5 2694 815 7401 6106 3530 5989 8756 9711 5546 5043 6331 6804 8870 661 4635 41 397 2488 7066 5015 272 2258 2549 2463 8771 6146 4149 5578 1545 6577 7277 5255 5620 6844 389 8309 2689 9109 2416 5897 9774 2903 6450 5444 7903 6921 7372 5590 7708 54 6671 2991 5902 2242 5668 8349 7862 5209 9412 4230 7307 4583 1227 2650 1648 38 6251 522 4457 8521 1686 8331 5519 2157 9546 6727 5696 5042 1672 1330 162 7440 1322 9965 9966 5700 6746 153 3548 8394 7891 618 4170 5916 4590 4333 5339 1800 4782 9348 9517 8844 8619 9860 4861 763 5190 604 3901 7529 2632 6676 8067 9134 9620 8298 3576 7147 1488 2016 4132 2048 9962 2383 9999 715 1762 4772 9228 90 9761 5433 6274 3422 5747 2150 3512 3087 3172 8664 7213 6053 230 8632 6694 2151 1008 7918 5142 1528 2929 9502 8773 3951 61 1855 208 486 4997 5242 7916 5390 9705 8302 7692 548 5153 1216 214 5435 6074 1978 7223 6833 9641 5452 5928 6697 5847 8812 1900 7535 5285 2506 5884 5135 3952 2244 7715 8418 7946 7942 3255 3882 70 858 8638 3982 8533 7473 7904 8559 8055 8989 8869 396 8518 9788 8105 2041 4845 544 9989 3683 6822 3722 9832 295 4972 6817 3718 6823 4741 6536 1253 7976 7456 8784 9562 7792 3305 940 6366 8639 6503 1592 9946 9288 9657 6044 5940 4910 6857 7921 7746 4111 2065 467 3094 2153 9039 9866 7743 5628 2910 5570 6767 5770 5786 5271 9769 8392 4390 7062 5479 3261 1725 5065 5790 4071 1446 1818 9944 2984 9610 6038 2680 6855 2388 4062 345 4423 6810 9451 2760 7128 3488 6861 2948 8790 4969 1827 4211 7190 755 2497 2208 4046 4034 9763 8730 769 6185 7650 410 3304 8944 6013 56 8864 472 524 2355 2604 6407 3226 8456 3487 9511 7255 7792 3838 7905 1233 9179 3045 6471 9468 4926 9791 2687 4669 6741 3231 1378 4556 6924 2580 2327 6764 7179 2611 9269 4835 8579 9371 9353 6808 7874 4190 666 7720 3260 6207 901 7422 8757 3631 2128 3717 337 827 8019 7386 8693 640 3919 349 7771 9445 6441 4098 4711 1722 6399 810 5993 208 3123 2963 9873 7635 3011 946 1661 3024 624 6100 9334 9496 6796 1755 9854 6775 1868 6260 1012 5716 1891 6425 7212 6555 3290 3197 8867 9331 7018 4637 3120 8796 2717 286 1464 2309 8003 4963 81 7474 9672 8380 1345 1084 4933 1610 4406 1501 3921 636 4751 329 5688 7188 9879 4445 178 5319 8222 7931 3540 3078 400 5355 2769 3429 9633 7123 5796 154 1436 3309 2698 3854 5845 4762 77 1843 9427 2725 1918 3862 199 8635 5844 6098 6953 4076 9345 8749 5427 7705 3154 2102 6525 1378 6838 2131 4528 7864 1601 6545 7491 8637 4269 8787 9086 1155 7680 6907 5222 1543 2905 8151 74 9441 7378 6008 5743 8648 1072 3617 8563 3591 5212 4406 2085 8359 9244 6333 9834 522 8010 3203 594 8870 5996 9748 1074 1246 8276 1812 645 9760 8379 1015 8611 8668 3527 2748 9867 7086 4701 4088 2783 4572 8411 7843 8008 2307 2465 1104 4975 987 1349 5341 398 7221 7252 3525 632 4846 2547 8233 5493 1807 2177 4524 4618 8115 4313 4713 2912 6611 7908 2681 4424 2531 5897 7364 2580 3261 9710 5238 6391 3946 8027 6830 3532 2348 3718 972 1685 8750 2536 4412 5892 8181 1189 2233 2062 8321 1789 5413 2968 717 6266 116 6904 7033 5718 6314 2451 1586 4464 5731 8633 2412 3358 8501 5274 1812 906 6718 3330 7216 8068 2004 736 2567 6815 561 7154 9538 9516 2975 1255 7137 5161 4746 8908 4818 4804 9556 9573 6197 1210 4647 7354 3718 3392 93 436 9723 1264 9107 3052 5228 3822 1184 341 8099 1772 1110 2232 6315 9951 3897 5352 8121 660 1283 1421 839 4632 2623 2986 2393 3088 6077 8291 8843 9490 6028 6400 2501 9120 8456 976 4764 605 1735 1509 5133 4665 2249 6415 278 9167 4936 111 4097 1112 5286 8372 3103 174 5863 827 8662 4703 5123 193 6924 3585 1844 476 6042 9881 3918 9242 1121 7531 3476 8586 3527 8331 9767 315 3503 9973 3174 6706 3276 4371 1401 3352 113 7534 7104 6337 8269 1020 5861 7035 1476 3730 8642 2257 7107 612 6750 2824 4239 3574 7144 646 5000 4958 6321 5646 7069 1395 339 6380 5646 1283 1982 7593 4981 5572 4703 5473 6887 544 5553 2742 3081 7998 1328 6314 8071 3244 5877 8640 9402 3760 5247 1306 2420 1035 2982 4325 9956 3766 6465 4426 3195 8562 4 3495 3131 8012 3754 7010 7449 3526 7153 2899 7367 8964 4324 2246 7426 9422 734 4518 3382 5724 2030 5264 7070 999 8305 284 2026 2386 6743 3348 4196 6642 6988 3404 7309 1654 516 1233 7908 1547 13 5976 7107 9620 367 4201 8782 384 7157 2671 3383 8264 6556 8441 9568 5870 8960 9091 1032 5125 4423 4217 4814 2402 823 8814 9285 7894 4433 7486 6265 6103 9443 2175 9107 1997 9139 8806 1022 6237 8640 6704 2952 2411 5869 8047 6566 6738 3012 5996 6559 8906 26 3839 4674 5366 7941 974 5546 7890 922 3653 9081 8032 8397 6781 7265 9217 3613 7835 5997 6294 9182 8688 5819 3354 6772 849 3945 4369 4102 2896 3357 386 2095 5876 2479 548 2303 5131 9000 2355 1115 2422 1254 9853 6349 1060 3048 3573 6403 8592 8057 701 2447 8272 1847 3447 6119 9551 9643 6792 8813 5589 4924 7604 8353 9124 7887 5987 8672 2844 5338 3032 9708 1555 8650 1220 6689 1576 7518 8789 5445 6753 5938 6729 7342 5620 7150 7164 6657 3240 612 4252 3045 9743 2844 6325 6364 2218 2980 6886 6441 7068 4198 5630 8810 2654 8599 6607 6000 1001 8894 6189 9270 9202 863 4355 8299 4298 6986 2971 6263 3959 43 3152 2747 4848 9547 3686 1784 5660 7790 4052 5555 6592 7594 7279 1858 3822 272 2161 5197 5329 9893 7285 7529 7739 8149 3833 7694 5422 905 3924 7789 7402 1287 5243 2282 231 8296 5581 9645 1187 5022 6644 5045 9667 4800 1043 4501 8245 1003 5024 7369 6050 649 7068 3620 6124 905 2311 7917 5562 3656 3503 9322 3880 2910 1709 2782 6095 2257 838 9324 4983 2187 5335 4012 3191 1663 7950 1387 8885 3902 826 1379 2059 2501 5612 8704 3721 391 6462 5310 3184 6745 2742 3562 2863 3778 5100 7330 8023 5635 5608 3842 4587 5280 4559 9143 4287 9568 2184 8856 1449 1998 2340 4453 8112 9677 1096 1039 5389 5933 3381 1743 3404 2168 2484 9926 4962 8558 5932 7421 4875 8353 4019 9294 107 6753 164 9464 6587 7389 3635 1997 4161 1755 3900 9810 2632 6714 3765 9860 5623 4398 8140 3435 9038 8810 3098 3120 9921 6104 2965 6003 3121 6553 659 2681 2038 3518 7317 60 3549 9996 817 3285 47 5495 1029 8940 3900 4881 5612 4161 6487 6701 821 2503 363 3538 8464 5621 9329 2291 7664 3402 5877 4921 9847 6023 7332 3394 6601 6887 911 7485 6342 7506 4150 3068 9216 3035 433 8823 2466 3126 3711 5221 5618 7633 3079 8907 6262 2396 256 7044 9448 6493 9173 7376 7316 7648 6498 4354 7034 9213 235 9107 7652 5418 3730 5987 5903 9751 7633 1956 6911 5158 9698 439 1446 8701 5755 2638 2600 7846 2518 5722 3320 7994 4799 3454 6341 124 8810 7762 4099 1661 537 5058 660 4492 5148 828 3325 2038 6225 3120 2169 9094 8813 8327 4440 3820 7422 7679 9579 3613 7143 9008 3784 8252 8910 8025 4191 7342 5220 7348 6494 7273 2502 6830 1749 5045 4179 8765 1184 6811 6528 6759 937 3610 3746 6169 6499 1319 2232 2141 1545 5504 5357 2459 2256 7148 9887 6087 5326 8965 3172 2120 4916 7435 3185 6779 8717 8037 8816 9582 5246 6696 4060 355 1755 936 6914 8874 8077 6029 3867 5580 359 3923 7797 522 8496 6220 6071 9763 9450 7958 3108 6148 8515 6531 2418 2776 1681 323 7847 6452 4543 3048 1039 6108 4955 3187 46 9894 8928 7928 8061 5523 1082 1265 9138 9147 4081 8105 2266 3092 1649 7512 5384 6178 3635 4224 8250 1180 6820 8192 2639 5807 2811 1434 5154 9787 9505 690 5203 9609 5424 2485 1322 1703 9869 4345 1083 3969 1589 7663 5640 4087 4125 6439 164 1979 2272 8665 7490 3570 5711 176 3512 4064 4489 120 7588 7479 1034 3317 2731 5324 4652 4937 7786 3211 355 4335 124 6241 770 2300 8504 6272 7823 1178 9764 1677 6264 6837 1640 852 3377 5179 9382 5884 5604 4250 2704 312 5359 314 680 2927 6329 7694 7302 9808 2220 2896 9042 5516 4210 5273 6059 789 1491 7069 3266 535 9117 3586 2883 7256 5842 5342 7005 668 2735 3016 7889 8090 7535 5320 6832 6553 48 1682 8932 7058 1375 999 2354 3970 6423 817 961 1122 760 2462 5811 6485 9098 4781 2146 7626 6315 3971 5062 2082 7640 7678 2974 6690 2509 592 8928 6232 5207 7926 1670 2711 6877 5630 3107 6193 9625 4250 732 8431 2377 8405 1840 916 1842 2491 6207 2047 538 8699 2779 3258 3237 4877 928", "output": "766\n3662\n2437\n5256\n5801\n4915\n4020\n2831", "type": "stdin_stdout" }, { "fn_name": null, "input": "16\n2513\n4874 1823 7949 1415 1625 340 6887 3963 5596 415 4342 4641 9788 468 6928 6947 1912 945 1852 6876 1622 3132 6013 9278 9716 4001 1048 245 8852 1433 6975 5753 6786 7334 4777 3506 5906 8401 8220 1150 7876 3088 7610 5548 579 7027 1290 3154 98 2783 7988 2627 8223 8650 2777 2864 521 422 7345 8949 3603 4701 5925 3607 9804 5694 8521 348 1956 8666 3002 9885 6310 625 3002 9957 4100 6715 9839 9796 8388 5800 1766 6822 8190 9002 7211 7185 8360 6291 3476 9147 1229 4021 3597 8821 4913 9460 6567 8780 1529 692 5794 3483 2448 1767 4532 8998 9938 8465 8102 656 6456 3336 7821 7949 5487 1122 5430 4476 6701 6731 5453 2584 3165 1286 9910 6675 2539 9072 8388 950 686 868 7821 5083 1997 4552 9544 4095 7620 9409 6862 8633 8962 1721 7800 6601 6447 7956 6734 3820 455 2122 5967 6097 7961 4388 3891 2127 727 9686 9375 7355 4977 552 5645 1997 3158 3542 1845 7272 2133 2638 9554 843 9884 1018 798 7490 9348 3870 6960 2945 6433 9820 6191 6665 1289 904 2895 8173 5391 2941 7060 5250 2743 5429 1467 3261 7622 6373 9968 8085 7514 1876 6611 6351 1236 2821 7645 5846 1906 4819 6508 6732 1868 7639 2557 5455 7668 8812 4557 4285 2486 3938 2176 4819 9755 3006 2870 3562 1457 4916 5476 9739 4003 7758 9626 5619 9761 5364 5264 1961 4636 4627 4511 8470 6092 5633 8123 6922 9180 5358 8838 2720 8073 6024 5245 65 8253 5187 8954 3584 4045 4799 1169 2997 803 3983 3600 3553 4514 5548 797 8486 9801 1950 8612 5708 2008 3843 5293 6034 1505 1618 9226 6562 7767 2054 1263 9832 6639 9873 6253 1414 4881 3895 6745 5145 7544 1050 7898 6242 3483 3 9771 3132 3666 3576 1993 7038 952 9000 9843 9166 3267 4785 552 8132 2122 4932 1894 6908 3545 4753 8775 176 4612 4998 1539 1988 3105 9612 1918 4642 2621 2000 5083 4490 1599 6014 2831 5306 923 1296 1967 8001 9289 4116 6633 6108 60 3317 3645 8206 9678 5030 1497 7972 5827 5286 6656 580 9235 9255 5245 9843 8938 8593 3779 9702 1305 4721 8231 182 8503 6354 8155 5866 2080 7178 9388 624 2135 6976 6817 5056 8013 7505 7156 3556 6204 7961 5035 953 8522 9731 4992 4286 1061 8575 2115 8033 9177 5784 1322 8641 7361 1466 3606 8923 8641 1703 3120 5844 5903 4946 3154 1726 6304 4215 8466 1356 596 1698 2973 1287 4965 8196 5798 8581 8121 6890 656 9382 4082 3268 2047 7102 1158 472 1598 6085 923 1006 3385 9844 2541 7195 43 4549 6811 3219 5082 3961 3817 31 2852 7208 9009 995 1692 954 5011 6053 7357 115 1473 2137 3033 4239 8188 7844 9015 3112 9486 4354 6729 707 2952 1641 4278 7257 1407 9710 4504 5038 273 6989 7989 5651 2568 7564 744 3419 1626 2550 7863 1048 1378 4063 7482 3468 1311 3687 7811 2890 2848 7487 5019 6091 9170 2768 9771 5039 2105 6298 7181 370 6312 6197 5746 1188 4587 1219 9727 67 3333 502 6365 9439 7815 2246 5057 4914 3466 7273 1490 439 3485 3512 6891 1557 6696 4825 6294 7091 417 17 5140 1151 9544 8809 1973 4265 8035 5093 5361 8047 9480 1109 9960 2492 8411 5570 1203 3709 1882 1412 4251 5332 2194 4004 1878 973 493 8513 6826 9138 3080 2484 3370 3043 8818 1839 9790 7262 1793 4837 8936 7746 4586 9993 6953 1066 6145 4520 8501 3261 7479 2971 2447 7038 5482 30 8449 1639 1735 8656 7525 4787 9519 1538 683 5925 926 3224 3182 6089 2063 3179 5087 3671 1357 6646 1120 143 5318 348 9306 2738 7277 6946 5442 4952 9145 7024 6818 5874 8375 3683 6250 3062 6650 8286 2600 1349 684 9175 9658 5502 2616 2916 7513 2438 9635 3674 7229 2617 2036 2437 1600 2678 4896 9519 1850 5534 6158 6197 6358 4173 662 2532 3030 3475 9536 3483 9563 5660 6093 1535 9672 4177 7065 9354 3673 626 4764 2462 702 4079 4980 6891 4681 9460 4789 7833 6485 3338 977 7878 5347 1932 1831 2776 832 7032 7818 6058 1291 507 2079 9420 1961 9333 5014 8396 5469 4188 9085 4905 1085 3296 9307 3517 7549 8206 5749 8671 9165 4605 1812 8158 7765 6349 1343 2098 8742 7183 504 2148 6070 8968 9858 8858 9577 850 8106 6461 5366 385 1533 1197 1455 6589 1890 626 3730 9386 2443 2779 9549 9290 5632 8319 252 8526 817 4165 1786 3255 1314 1615 7974 3475 4928 8197 7668 9871 4451 2072 5695 5419 9578 5528 3732 4699 906 783 7678 2908 2499 8676 733 3018 5285 1367 6810 245 6115 6189 574 518 9789 7124 344 4284 989 6834 232 3297 456 3986 2432 7578 3234 9657 8646 8550 4925 4011 8222 229 9896 9619 364 3071 2112 8466 9904 1383 5195 2463 6908 4331 7336 7553 7325 1348 199 6638 7 6738 7482 8452 7467 4996 8825 2630 5445 6605 1682 4688 1698 824 5227 9286 4390 2202 4591 9611 4704 1504 4537 7075 7455 7252 8810 7859 6466 2246 5658 5631 4064 447 3170 4798 5410 6356 2509 4596 7114 2785 2608 9946 6808 5360 5973 1152 7217 4355 4241 4426 1298 1187 7638 2498 1272 5083 4673 4437 9582 5241 7038 5285 711 2026 4388 5415 4455 6114 9254 2881 4549 306 8002 2822 4556 1966 2119 7178 4769 8675 7901 1118 5002 429 6579 8737 8847 2170 9382 7090 3707 3952 6425 6493 374 1139 2538 5710 8275 468 3834 6466 7960 8501 6252 6592 5324 8025 3091 16 3181 9466 2665 2858 5108 5735 6181 547 6111 74 5878 1449 3631 6042 46 1353 453 2666 8757 8648 6604 8903 890 8235 4262 6930 5423 604 8000 1142 2446 7935 2755 8045 8459 7184 8668 4075 9451 52 1905 2767 9358 5881 4935 3717 9501 2844 1202 7886 2101 7035 1844 6543 1755 2415 7746 644 2080 6970 7916 1284 7620 6625 5197 4527 8392 6119 6526 8442 1818 7183 2425 8401 4261 5490 6204 6780 9473 6493 3298 6879 208 5418 1224 659 4206 5159 8966 7100 5114 1536 9798 2507 6976 1676 7087 9849 5189 4579 1394 3244 1528 6016 4758 6418 7061 5498 8679 8589 7777 9826 2783 3374 4588 8819 6169 1609 308 6022 7953 1542 7387 7635 6744 6683 4938 2357 5982 8926 473 4314 4931 1615 271 1605 9764 7312 9430 996 9252 8656 8113 6414 2608 6802 6396 4984 4527 3209 7078 7108 8023 95 6264 3962 7900 3192 3658 9768 8060 1838 2184 517 4173 2393 7295 9817 8328 3157 1728 7443 1551 8391 5584 8514 9892 7344 1052 3657 8289 3238 5299 5987 5020 4980 7418 1778 4284 6790 6659 5279 8277 7541 5602 9783 1882 213 860 6338 5811 4443 75 6818 3130 2490 9485 7638 6343 3831 9772 8090 1665 231 1914 5651 5004 6191 9307 8463 8365 1632 4380 947 1025 317 4460 9340 1224 1383 3217 2108 2144 6917 3086 1570 1093 7024 3511 8580 1106 2482 2303 6194 6832 8391 5249 2028 9541 177 4782 9706 5232 6802 2262 3306 7788 3885 4280 2680 1896 5017 9894 8084 3900 8881 9561 560 7656 8677 3790 2298 7708 608 7559 1919 1353 6075 293 5875 5761 4199 9566 9464 1934 9466 8409 9585 7917 7723 2909 8621 8496 6864 4199 1621 4473 791 7690 1392 2018 1619 8224 1563 2687 9180 2102 2424 2084 9372 2323 3152 1599 9989 8236 4204 7407 1310 7907 6960 2392 5922 5307 8790 183 4764 9007 2001 6089 1035 7012 2260 6729 4263 3088 7170 6130 2554 1647 1281 9961 7597 9248 5064 1289 7795 9 1198 6793 6728 6363 7222 1100 8365 3343 2392 8192 5529 5516 5981 8773 3411 655 5335 4834 9265 5975 7486 8337 7282 8619 2437 6331 9479 9971 7262 1270 5928 5412 2621 2502 5026 7811 8802 7756 6942 9952 1251 144 1643 5229 9830 231 2394 669 1811 5831 6777 7379 9246 9487 5891 8265 866 6730 8859 7946 2478 2442 1816 4670 4719 3458 6771 452 9224 6570 8442 3247 3590 6756 9082 8507 2263 1891 6293 2177 8497 6102 4510 3168 8520 6557 149 7131 6820 8284 7214 5840 1701 65 5386 2320 6798 5148 9747 9434 6713 6761 2890 4158 1186 2403 633 6359 6443 6017 5287 6928 9816 8819 755 2863 5847 306 162 2023 1073 4727 5074 9019 6155 2270 7061 5455 1952 3789 9123 3896 6310 6387 2297 2267 8190 4874 8409 3287 9640 591 946 7950 1259 3368 1444 7504 9373 4346 9914 7995 3674 1084 2783 1039 3030 2437 5350 7132 7466 6953 1185 1090 25 4364 7863 9521 434 3593 7031 8991 4263 1221 716 6096 9556 5833 176 8750 1543 6692 5194 3756 6232 1069 7734 6995 4354 361 6802 4568 5942 2312 6038 2678 7518 7707 5844 712 394 8825 8163 5940 5083 5345 6489 6906 7066 2328 322 1727 7247 8178 3957 4299 9090 6632 6131 893 1903 2051 8468 6099 6524 1035 4823 4924 2572 5181 4390 7570 9435 5594 1281 1156 3485 9510 5245 6995 9067 3161 1886 9366 8881 4018 7654 907 7581 1331 5115 2610 9670 1163 9117 1915 2995 8501 8220 6815 2503 1059 602 4759 5896 122 9115 224 4295 1254 3342 8468 9261 9561 8944 531 3769 3000 850 6350 2209 6316 2731 3879 4924 6892 2636 4377 7457 3918 9198 7790 6805 915 4544 4872 4345 2853 702 7254 7912 3891 3809 9042 6840 9987 8811 7773 8307 52 6091 2685 634 3432 1904 4307 4198 7472 7741 8882 3107 7231 2354 5993 9829 6774 6321 2768 4904 5634 6117 8329 7561 1784 4063 2137 9704 2988 9722 9024 1864 7978 7675 1122 5997 8297 461 3098 6817 4493 5787 3755 5807 4511 1132 3520 916 2002 6110 1421 8089 5377 9364 5661 9499 5338 4674 8827 9565 4345 1305 8971 408 5970 1189 9557 4017 6676 6709 5506 2873 2430 5431 148 9632 9745 4385 9419 668 66 7947 6540 7696 9344 3803 3771 7507 4055 9682 7313 212 1723 7928 4449 7400 7958 75 1373 7063 580 8086 4110 9720 9009 9293 9645 634 287 6849 9422 1242 1092 7945 3879 2458 3635 3577 8902 1887 6618 1236 148 3380 8984 9676 3176 8815 1232 7686 1929 8841 1013 2574 1749 2413 1101 4366 3859 9086 712 2174 8740 2394 9807 9207 9338 7394 384 9276 8409 1165 9733 200 3926 2795 5767 3000 6201 7574 1866 7084 7110 2077 8047 5722 9933 5815 2874 4119 279 54 7760 9234 3891 6700 273 824 8656 7243 4535 2289 1501 269 4775 7535 9725 9004 9205 8076 6846 8422 4185 8392 3067 1041 8951 4990 1959 3597 3886 6409 6296 3361 4471 7894 2514 1651 4017 8285 5029 3935 699 9907 2418 9529 8058 2732 2004 7965 9503 7804 7526 5849 1677 8205 66 9146 8241 4556 1091 4759 2146 2679 1340 4633 5336 2135 163 1896 4814 3033 8639 2220 9950 9427 6155 3702 1090 4980 5465 7713 7943 8016 1138 6098 5010 3787 1698 1511 8002 5781 5626 8231 9491 6647 6597 3987 9085 7487 872 6962 4876 4167 163 6361 986 844 1157 8404 9467 614 1966 8400 5592 1898 2337 9433 3249 5759 4028 3719 4019 6528 7566 9816 2058 1592 7362 441 7542 8431 4783 5615 2241 8643 2954 3178 5275 363 5847 3287 9132 9726 2274 4491 4562 2094 569 7537 4553 870 6835 7978 7982 2619 6882 339 9615 1379 3454 582 2274 8033 1742 1022 1484 8006 3618 2291 2140 5629 3731 2343 3579 8994 5921 3049 5030 453 892 8674 2819 4600 6893 3532 5797 9085 6197 4894 7389 4224 6703 616 2394 874 267 3958 9475 4916 809 3917 7073 4874 1326 6806 8497 4200 4443 5358 8086 6407 5684 4720 6283 656 3943 9559 7024 4659 3163 7098 1001 9377 274 2778 2784 4393 8522 1484 7095 3902 6315 8547 7063 7000 399 6822 7899 5718 400 9808 747 4047 7082 164 1836 5969 2026 5661 3858 824 1506 5730 5877 2394 7406 4421 4395 3258 3167 1732 6112 9868 7686 1572 220 8101 5367 69 2738 7820 5499 3908 5973 9303 7516 5639 314 7045 2613 7779 6777 5556 6760 5377 9252 3271 2552 7500 3526 9251 7698 4221 72 7715 2264 4659 8067 189 3191 2005 3571 2481 3462 3119 1235 8454 6815 5757 2530 4959 5701 3121 6057 1011 548 8772 7385 3924 4848 4546 7203 643 4563 867 8004 16 5033 2194 2020 3541 8800 95 7677 8586 7111 2017 5822 5555 6219 4526 5043 5787 5447 737 9730 7768 6252 4636 2923 6514 8110 9899 5585 9978 1876 5423 539 351 3866 3580 7930 9397 8997 9593 8552 98 1219 1637 8567 4742 7699 1586 9360 1231 4942 3396 8556 8791 7713 6007 5532 525 1349 3268 8817 3115 8135 4689 6526 1950 4836 5675 7782 3180 1624 5696 6350 6052 8263 6778 2408 5496 6597 3824 5085 4926 9495 6085 797 1043 5695 368 4250 6489 4373 6659 7111 6994 5646 3238 1963 6102 2006 8074 2889 6945 702 8311 9107 1833 2462 1118 6378 4234 9804 9300 2816 9508 2128 4263 9921 2700 8503 6228 4953 8269 2038 9423 6455 9056 8019 4661 7467 3345 1111 374 3139 2621 4282 9178 8587 145 7583 2243 5327 6601 4224 4050 5507 1424 1236 8529 9561 6179 1277 2968 9150 1169 2754 4964 8661 9728 267 9661 7977 2600 1200 4736 2279 9081 1183 5385 6157 2969 2796 330 2286 4300 3355 1713 6827 4957 1837 6489 9573 2763 39 783 6832 7702 9376 7365 3681 6383 236 1265 5516 3024 7916 7368 6780 6714 672 148 2578 8057 6526 5119 992 5486 6103 8980 5166 6775 1804 4474 346 4269 7728 4557 2081 178 7780 2364 3328 7325 7184 4744 922 3310 5103 3358 9214 2727 5464 9794 2407 3403 9639 9340 6506 3020 695 5346 9566 8402 3574 4928 1280 9994 5763 3325 8824 1601 4906 4676 619 4020 3800 5006 8099 4424 8951 3325 6175 4853 3328 6220 3499 8536 6186 5318 8508 6319 2871 4025 4257 2349 8470 1103 5641 7428 1231 5381 5463 2863 771 7940 9384 2440 6422 4645 9700 4981 1290 6892 1555 5966 5542 8053 8609 2221 7845 2169 6560 2452 42 2433 9176 6720 9831 5882 4841 7269 8373 5982 8582 2051 177 5401 9236 423 8109 398 1762 9656 3939 2536 8979 5035 944 4028 4888 8137 8135 9740 8473 4361 7979 165 4870 4257 1207 851 4537 9387 159 5036 5344 69 5506 5206 7924 3263 9182 1897 7863 5994 7018 8683 4556 960 8380 7550 5658 5115 924 7687 8941 3698 7145 5413 1339 9427 4996 6729 4229 7404 3365 9138 1865 2241 6364 4862 1524 1483 352 9185 2998 8475 3562 6157 9646 5251 241 3685 608 827 3585 306 9832 7366 446 1887 8729 5134 5618 785 7630 1827 2675 \n1386\n5407 4495 7421 6774 7374 3541 4474 9217 4248 2907 9129 2833 5842 6413 2588 7246 7510 5659 3878 1289 2726 8413 916 676 7632 7485 7722 7947 7999 4078 1049 3802 671 2373 2305 1609 8746 6580 1575 8418 2118 3454 4618 2234 2463 7674 4623 1987 8265 720 8750 9380 9341 1411 1756 6764 7138 7236 989 5211 8921 6772 1248 6155 3703 7494 1612 6282 3721 2068 7719 3018 9451 596 4490 9362 5512 1731 5837 9942 3182 893 7730 5316 5471 7003 809 445 4718 8825 869 8876 3135 4867 3798 2211 4291 1823 9941 5415 7526 427 2893 6830 395 9309 8979 1665 1844 9512 8329 162 8812 7378 9948 4983 9762 511 1264 1163 9115 3391 362 3200 7068 7224 5831 5853 3662 766 7308 7342 8017 3483 1300 996 1561 383 8984 9768 6805 3554 385 7302 7573 586 9795 1728 6257 403 3978 3669 6976 9388 777 4963 5400 8733 8627 3577 5449 6383 5003 2733 3570 5603 1877 6699 9133 659 2541 7633 1236 1081 402 82 87 3229 3281 9393 5497 9725 9825 9509 4739 8784 3720 5279 9014 8595 4286 4758 5605 7107 4309 521 2249 4080 6621 5849 1118 8578 4832 8913 1916 673 7060 3974 8440 6357 6840 9436 3840 6870 8921 4958 267 8464 8763 4527 9776 9156 4013 8921 1997 9722 2024 5286 2901 5575 1146 1705 106 3860 3899 335 8094 6667 5560 1960 4704 7797 5442 5612 8066 7006 5042 4833 5072 1988 7643 9157 5464 2059 5710 9052 588 7540 9790 7436 7863 1962 9994 7290 885 1990 3112 9585 2003 9047 4661 189 5681 920 4028 1384 9596 8404 3151 4527 4528 5907 5727 3059 1864 279 9705 1261 7003 9286 6130 8760 4504 9858 748 8462 2414 1165 8461 8726 7991 3767 9230 4496 4165 1710 1875 9072 7091 6540 9266 7198 1970 9835 9189 7300 4089 82 1918 389 3309 3220 2962 7424 8824 2912 4516 7378 1859 1910 6740 9254 8238 7670 1433 6942 7068 5862 2385 5566 950 6852 2885 7789 8293 9899 1381 8072 3430 2136 9870 6870 1184 7541 3255 3263 8047 9856 6414 5594 7885 4101 9213 862 9874 2087 7282 8504 2886 7580 6011 2739 2132 1989 9384 1326 3289 1048 2042 6032 8367 143 8802 5862 9677 9712 1202 3281 3078 5495 2983 4887 4917 6715 4322 9214 6739 6219 1266 5656 799 8734 4601 7266 3498 7239 827 1209 2765 8911 4461 6600 4764 4345 3956 6312 8572 3507 2419 3400 9344 7298 2163 2968 5666 9142 1219 2456 5392 5945 9215 5097 2582 3965 7313 9197 3761 8852 8153 2997 3196 8246 1125 2426 4628 2497 3137 4866 6248 4532 8730 961 6437 5604 6594 1323 79 5418 4261 419 263 7560 6933 8460 1514 5480 3576 3427 970 1670 8072 2541 1988 9344 8040 4919 3530 4159 3164 7483 6189 4095 6037 7882 372 6006 6710 5103 4659 1931 7469 316 4087 6691 2660 8233 4791 2035 1570 8306 8599 7925 6871 7984 8822 8498 5588 582 8130 9583 6696 836 7109 9493 5912 9333 6289 3383 7045 640 2039 784 6099 5066 8388 7455 5648 3028 8562 78 354 4003 4152 3147 9331 9127 1745 633 8599 7763 1508 4715 4375 1374 455 1879 7645 8934 6075 7121 4928 4981 3692 7636 2948 9531 7103 2036 2878 5018 4908 1656 1532 730 6714 5002 5298 2327 8531 8513 439 4211 2730 9423 7663 5778 9016 5688 3701 9554 7579 1981 7319 4167 2737 7651 5436 6159 1361 2808 3707 4941 7849 4411 3736 9022 508 1272 886 9663 2589 9628 1707 4616 2384 1059 9133 7328 9034 7538 8467 9578 4409 7641 5875 8144 247 4439 6820 8076 280 73 1632 2312 6366 9864 6824 7254 2470 2951 5550 1215 4687 2744 4456 2541 7973 4226 4383 1881 2580 6888 1040 2994 9531 4158 5842 6326 2250 5552 91 6855 4518 109 4889 5122 7418 8602 8942 6237 5276 5888 9605 4657 6071 986 7685 6834 3058 3142 1391 8823 5950 9015 7551 5288 2549 2454 6140 2567 7995 6602 8528 5707 4826 2676 8860 6441 3015 2216 3856 6535 2215 2689 969 5368 8676 7097 9137 8748 8117 2952 6029 5541 867 8817 5446 9117 4410 6833 3384 4246 518 1890 6991 590 5780 8459 7438 6508 9563 1520 9814 1348 8345 594 719 4964 811 4454 5336 2159 5293 7898 8335 4601 3380 6777 9383 7856 7801 4101 7980 90 1608 7390 756 3982 9539 8360 9361 9152 8810 9190 906 4739 3688 5216 8403 9578 3752 7032 5801 6714 9776 8131 7280 4495 9035 258 7504 8505 8989 7710 5008 8931 8798 7158 7068 1966 2123 7280 9367 76 5055 3684 5338 3498 3627 581 9859 8221 3195 4283 1701 4817 9690 526 569 93 954 7042 9714 1132 3899 8581 4317 6284 7494 4867 2020 7994 8614 6161 9066 2444 2844 113 5002 961 4786 8934 4462 7194 8235 1736 9632 8043 1183 3960 3296 6716 8522 9490 1600 3422 8588 9496 9771 24 98 9720 2255 566 9869 5893 3983 762 2791 2978 664 1168 8541 2322 4244 9175 6850 8856 1698 8517 3318 9307 6357 9856 6744 7764 9675 6897 4576 4005 3162 7458 7319 5816 2128 2871 2174 9025 5102 6034 4073 526 5596 6905 5859 2743 3830 7018 206 2651 1103 8180 3997 4031 6687 9681 3017 2746 2166 4892 2411 9965 5246 9356 5840 8689 5215 1621 9536 3313 9744 8701 8566 2474 523 286 1017 1357 2919 716 3469 6759 8449 142 6522 2571 7806 3265 3826 437 6542 567 163 9139 1817 120 9469 2058 1557 8767 6458 5491 3003 767 921 4623 2603 8025 6180 4041 2197 5620 6408 9094 6836 1967 3656 2001 4394 2873 5092 4527 7764 3016 6692 6890 4930 8932 5860 5807 6385 6814 1152 2196 8188 6684 2652 1806 6392 2532 2689 8377 1499 7749 4423 9701 1659 4643 2506 3993 3961 6583 1472 5965 7655 3842 6229 7022 9742 156 5811 8524 4721 5047 6579 8567 5506 3516 5033 4409 5708 6511 9073 6284 2285 2778 7252 1369 5866 7262 5347 9121 3643 7194 6826 3356 9283 937 2124 913 5242 4397 4271 9232 9790 2345 6653 6797 9227 8379 8957 693 9462 4077 3817 9363 7037 2064 9965 3950 7318 9922 9658 4515 5364 6662 8316 5783 8922 9941 7409 9362 3867 4824 3508 504 8050 9645 4674 8137 7842 8941 9726 6202 9634 4885 108 8476 5899 6139 2640 2818 3701 5972 7365 3940 2611 992 4243 8320 5776 1159 3772 1127 4076 3087 4935 390 7023 5537 8487 8644 7844 2155 1958 8784 6727 5144 6214 7139 8709 2924 1915 688 1281 4033 2598 7169 8990 4795 1518 826 9265 7837 2535 3561 2735 6785 1390 4544 4075 2714 6128 5609 6796 7401 1071 8914 4275 6714 2197 4619 7850 8211 3295 4692 8950 6853 5497 1498 1272 7195 971 9899 3469 1965 7429 1172 685 9 1506 856 7664 9280 2370 9006 6802 7035 1222 670 3913 5992 4591 1317 7809 5681 664 6786 8882 3208 4936 3400 6338 3591 7886 4630 5984 2672 487 9508 6173 3650 3340 2474 3877 6077 948 439 4724 9318 8781 2703 3463 31 1014 3796 8714 3098 4639 6890 1362 5690 4989 7044 5212 7502 9499 7928 8589 3740 1775 2514 9006 2619 8488 9926 7202 6124 9519 6101 8672 3327 752 7799 1765 1463 9176 2253 7837 403 120 4812 5388 1026 6375 6910 6797 9803 5314 9140 5133 8851 2737 124 6880 5462 7153 2158 3253 7120 7187 6007 3511 7608 3683 2867 9235 6492 6462 2320 564 886 2442 5212 4431 3242 5215 2936 5469 870 9623 3790 8437 5016 2593 2438 2473 3299 8727 6498 5645 1253 9690 1139 7306 5207 9278 6957 1439 7363 370 6508 323 221 3513 8228 5543 7585 6350 2528 2282 7733 4925 7393 6975 6788 8438 4605 1382 6689 9763 9694 3473 5549 2668 2039 1190 8718 4935 3621 1139 831 4867 9867 8449 246 768 4300 7344 5679 3827 7007 3456 2277 1561 5378 9594 3169 7495 7921 7636 8662 9901 9160 8347 4886 526 2623 4455 2919 5282 5721 3066 9487 9028 5869 1573 9367 1393 5177 6263 1766 734 5661 5552 8680 8681 8815 9050 6487 1996 5674 6662 3243 2519 2805 \n4320\n2602 7870 9564 208 9335 980 809 4870 4478 2925 4009 6935 9004 9607 9982 9488 3465 8470 3090 7263 379 4154 1852 9161 3491 8216 1580 341 9744 1445 4940 4253 3002 3416 9353 8025 1652 6779 2004 7243 4889 6372 9546 9288 4387 9207 8284 8024 872 2444 1058 5932 4858 9387 3037 4082 4142 1924 3078 2562 1633 5089 4332 4368 2596 1863 1993 6861 4557 4626 7428 5246 7257 8794 6535 9955 8208 8869 8939 3422 7488 8338 3716 2262 9577 4177 1281 2698 4246 9840 465 2183 175 7749 8410 6373 8567 7073 5391 9642 5615 3383 6899 2412 7948 4467 3896 2220 1919 4453 3863 7377 9066 9176 5706 3625 2662 9839 2154 9328 9462 9208 3937 3600 2919 8413 1552 3139 3843 1964 1714 9168 8779 4927 5187 973 4246 875 2767 5388 3676 4802 878 2738 5051 1407 2274 2929 6427 423 3016 874 9971 8513 1238 1405 3055 6921 1149 9774 743 4913 3787 6647 3911 9175 7390 509 2435 7139 493 7151 7142 9762 1966 9569 6853 5390 1922 2236 9476 201 8003 6308 8216 7832 113 4938 1332 8475 7804 485 3165 367 8567 2231 7521 2991 133 9794 6054 8614 553 1510 8207 3784 2567 2276 5929 1048 6779 3320 9641 6682 2331 1908 1791 6683 5441 9891 7692 6505 5000 6086 1182 7340 2955 7974 8624 6905 5748 7369 4788 9707 1544 624 340 9636 5394 8304 7792 8999 9009 5202 9043 6228 6028 5677 912 8052 8441 9500 9747 7142 691 8590 6357 8388 429 3871 3083 7227 4312 588 3425 5061 4532 5605 3843 1131 2353 4141 8887 6686 7480 7134 5458 2731 3751 1711 8265 1574 5175 2092 6276 1053 4692 4665 1488 4146 2795 1221 9275 6035 4638 7335 795 1968 63 9683 2238 3031 5255 5565 539 7552 3300 3903 2879 3786 8268 4380 2829 5896 4617 6450 9064 9743 5163 6309 8245 8183 6252 5879 6390 4733 3773 270 8889 1992 6593 2009 6512 3404 8939 9570 7418 9455 6324 8459 4553 9678 8888 6941 5820 8526 4078 3250 6779 1670 9345 4442 7142 632 5468 3158 6653 9159 2478 1246 6120 941 8910 7074 988 4456 8430 2332 8780 5273 1835 795 4990 7327 519 4996 4748 2925 7315 8243 1085 2462 1315 8355 1920 1118 6289 4013 4487 5463 4986 5162 4166 4216 7508 1773 9093 8181 6619 4558 9021 2858 9465 2810 2925 3313 5582 2957 3964 6928 879 121 7934 1633 365 6971 6731 536 8429 745 4109 3419 5056 6978 7671 5540 60 7498 2760 2247 4879 5931 4914 7026 6997 4191 2240 7656 8478 208 6721 420 3443 686 6439 2221 324 9552 781 1277 630 790 1442 7486 4809 3748 2196 5468 9916 2166 9745 8029 1269 7536 5731 2572 578 4987 9482 340 398 9509 6277 5818 3778 5984 4386 4613 10000 2380 2402 7533 655 5381 5659 4133 4400 1520 3368 2140 4745 3811 7015 9951 3569 1431 1974 9068 2869 351 6313 492 1673 8187 2219 5648 7050 3606 6079 4753 9604 3589 3298 3825 3706 3309 4846 1174 1568 79 4665 3806 9598 559 7589 8574 1935 8685 5108 9961 8635 9013 2367 1786 3621 8242 1827 7036 7520 1653 661 2170 456 2188 2933 942 5212 9892 2063 8158 3091 2333 3129 4906 819 6362 483 3549 2658 6576 9720 7135 7896 1522 5552 2620 7728 1502 7977 4501 3284 9599 6172 10000 1597 8782 2960 1527 3306 9439 2243 1496 547 5213 6819 218 6475 5868 8189 7717 1046 925 9999 8956 9793 7152 3643 439 972 7384 5017 417 5600 537 5338 160 8462 645 9295 1225 3996 2746 4025 6326 9082 6609 1121 2548 5718 9236 2168 4822 2728 6326 8568 9618 4670 4195 8843 9257 5333 5854 7401 7305 6267 5011 5182 6448 8785 9808 6274 7894 6922 2815 5884 4303 3408 2336 5656 7873 56 7327 2610 8333 2482 119 6216 9954 622 5545 3485 4212 5162 6523 6241 5886 6460 7750 2413 392 8248 8693 2694 249 9954 6272 4149 907 6859 6347 5921 3191 9703 1076 1582 6081 3162 4935 901 2691 2769 4942 2594 5768 2748 2924 2299 183 1018 2107 6109 9769 6390 1884 4379 3864 6560 7389 1983 5786 1956 5139 3780 4206 815 963 2500 1442 9609 3029 1495 7662 807 3253 7416 9444 771 5868 7341 3343 8529 3443 7852 3180 7053 2510 5787 3508 1422 3462 5809 2999 8311 2667 6907 7952 5533 1437 3401 5932 8163 8978 6647 1533 6917 7658 8123 897 1681 4559 260 6458 4648 4155 7847 873 73 6069 6440 8641 7878 7568 8525 7745 8751 2719 5037 1432 7307 4986 8965 1194 8090 7928 8979 6938 7921 7555 4689 506 9452 1626 7257 5357 4495 298 6596 9084 2755 8410 4820 4452 101 1906 4168 2288 6396 5993 4426 4165 9174 2344 3527 1529 4083 8133 7920 7104 5228 1925 8932 1396 7654 7884 5172 770 4015 4194 9097 9670 9962 2906 9540 5231 1912 8394 1228 5849 707 1401 6632 4179 8979 9153 9716 9659 3784 5955 191 2482 5579 5316 5890 5463 6497 5174 2374 595 7664 4219 6691 2374 7905 8302 5771 7487 2786 7175 4406 9681 1473 4729 6337 6178 6234 7147 7102 4320 5395 2569 2066 3416 6047 4931 4274 4159 6669 6055 7751 1617 460 6899 6496 4464 7984 1781 9485 3821 4946 6317 1769 5902 3494 832 1335 9567 7561 8650 4035 4769 6807 312 9156 4394 1094 5288 5832 7865 7453 1306 8970 6279 8463 4723 5677 2024 7708 373 4813 926 7832 4598 4997 8500 3525 9646 1218 8915 849 1456 2260 5584 5370 7779 5847 2925 7199 9611 4560 5674 6605 4318 7340 6039 4233 9513 1798 2773 9690 8537 2597 7508 8650 7070 8268 840 1764 5159 5702 5184 6010 5977 6975 1191 9923 4668 8528 7842 4477 6851 4548 3609 6480 1070 8277 128 1311 3401 3767 4084 1410 8006 1097 9707 6084 5665 7748 523 1219 4900 9007 9831 7124 6565 9546 4316 9317 872 9124 7492 9812 941 1460 2111 7967 9407 9424 5369 1324 4036 8870 2735 7512 7720 6987 4797 8967 5208 3237 3730 5149 8355 1586 7360 8364 9654 9662 3136 5229 6693 2200 9424 6770 8827 2015 6231 9734 9989 4727 5831 3457 2447 7526 7952 7633 820 5397 8415 4932 6325 256 7125 3308 9760 2315 6604 6111 9717 1823 4642 2159 5051 5490 9447 2979 3673 7230 7698 748 945 5414 5107 4132 652 9659 4228 6724 9507 5369 6955 6188 6752 5913 7416 1202 3325 80 2352 5696 4155 9567 1302 7459 9357 8047 6994 146 6798 632 1491 8557 4502 7390 3737 6894 2999 1221 9831 1340 6202 6730 1499 5385 1633 8919 3133 7296 2254 3464 2765 2954 661 2128 9129 3760 8125 3464 7397 4225 3020 6528 7547 7927 8857 9947 1251 1054 5494 2458 3761 3024 5933 3762 1448 3588 5160 8100 847 6773 8951 215 3565 4143 4099 5100 8857 7884 4843 2845 9537 7408 1793 4710 8831 6537 4732 3563 3780 8748 1085 5512 8052 6449 1136 6038 5457 2527 8944 2661 8713 5847 5842 186 9871 3996 3979 4740 8861 6993 6777 2496 4022 1496 8897 9901 6322 1205 2344 1840 2030 4545 7252 4761 1946 222 8759 6077 9582 5222 5515 8686 2889 9594 5509 9949 7499 7061 2891 176 2015 8707 9252 2609 3105 1403 2130 3012 4213 2444 393 7495 9916 4244 6611 962 23 8880 5484 5184 6548 6516 9436 2285 6816 798 6916 3675 3138 6629 774 1592 6172 5214 4751 2998 9761 4726 6798 9498 6269 3343 2366 4235 796 6700 4614 7134 6833 9842 332 6063 1520 5657 9889 3824 4445 7999 4705 1860 8813 3491 2683 6415 9526 6360 1652 2858 736 7887 7618 189 1985 2880 6883 3235 8585 2588 8964 7144 1651 4366 3922 9344 5900 7475 9271 5640 6589 2698 3724 9766 6637 5610 3937 5268 1118 4046 8817 472 5239 8567 4453 1644 6128 8038 3252 7074 7972 8960 9091 6849 7393 4690 2572 7709 7657 978 6424 6132 5439 3930 255 939 9667 5871 9028 7057 6706 8682 1512 3257 2042 80 4093 6304 3605 4075 5867 2390 6307 7604 1943 8476 1408 3509 1054 7748 5330 6873 8627 2737 2427 4838 7507 2454 4281 9064 2606 8032 3329 6603 268 213 7072 4364 2084 2860 9901 4187 9866 7412 2760 821 8619 9602 4219 7616 6773 7190 7271 832 4337 1197 2306 3022 7125 3512 6336 1990 3900 389 5184 7937 4909 745 3105 9511 4331 7255 693 2037 3271 4045 1100 3800 2876 7826 3278 5540 6753 9841 8061 5585 897 5746 3952 9909 174 5330 1068 1575 2948 4313 384 6699 6717 523 6491 6801 1792 236 332 3828 7505 8227 1109 5259 6948 7497 8229 7614 7455 6177 3286 4850 6435 2311 1938 6688 2205 4552 7056 268 8701 8395 8746 9223 2774 7528 8464 4226 1731 2552 9368 4170 1065 9845 6245 4760 7406 3745 476 4216 6690 6764 8228 5112 283 629 2383 7239 7030 408 283 9773 8885 8248 4277 7083 429 9493 5009 4881 3569 8999 7423 9645 9229 7606 4702 4044 2242 8282 3880 3477 9711 1016 8758 3186 8584 163 4729 7433 5476 3268 8404 8823 7648 9209 6157 1615 5188 7290 5112 301 8699 9378 7451 6141 7930 9507 8502 6152 950 6119 9143 3367 631 541 1476 5036 7659 5177 8186 3285 654 599 8899 8803 7760 6719 9633 6982 5672 1823 8017 1752 5785 3424 6052 1322 3583 3145 2228 9237 5562 602 7071 6911 2856 650 3373 5664 2383 9863 4719 546 5995 5165 412 8453 176 27 169 3295 9804 281 3445 5703 1863 6678 8396 4376 5654 3260 1167 3487 8083 2398 3301 9839 4686 2204 1861 1666 2053 6567 45 1723 4876 3567 8897 3930 4562 5225 2668 6740 9389 628 9386 9689 2495 8667 7148 4425 4098 856 3529 8299 4398 8528 9586 282 3949 6619 542 9483 3125 2368 9283 2746 2935 4629 9443 6509 3961 144 8337 9426 2413 3480 9501 9698 237 1391 1295 9719 6347 4871 4609 7294 3593 8208 1736 1208 5358 4657 1761 4892 3606 9517 4399 248 9289 7797 7390 663 5903 254 4964 6760 851 3407 1831 4967 8044 6082 7802 1740 4249 3622 9054 6331 8538 6293 303 989 9286 5787 3498 5759 1275 1716 6976 1649 4819 6844 7944 4987 7413 2590 8573 9855 9713 5963 8353 4329 3369 8364 5932 7099 6484 1562 6901 6684 9021 5067 3412 2583 5095 8309 7259 4360 8300 9938 2643 6303 3082 985 9236 8914 2873 6764 4690 8550 9719 4461 6210 2727 84 4681 7012 9301 9388 4665 8650 9468 9084 6620 8071 9152 3344 3588 3522 2011 1263 2976 4180 4225 4416 6254 2000 9590 2575 2260 6148 679 869 7104 5049 5913 9323 2 4684 3812 1742 9563 9045 9860 7876 9077 2001 864 8214 1355 998 6134 258 8341 9212 1052 4089 5967 5383 4967 7450 9857 4838 3963 7952 224 4260 7944 8638 2652 1965 2345 4728 9777 38 9127 6646 8139 4205 1946 5293 7423 8642 9310 2543 2045 8582 715 1536 5467 9520 8553 1046 3 6191 4248 6173 5973 7206 1668 4917 9418 2385 917 9717 1400 4461 8551 7059 6954 168 9615 7234 5268 7746 1698 9751 1106 3807 9662 3664 5067 8084 9221 2248 309 8599 6453 7310 4 1167 5925 3009 8258 3605 1394 7284 9012 1851 9309 1559 3421 3645 3218 171 3164 4874 1746 7410 8886 8047 9130 3260 64 4433 1506 2780 5547 4480 518 5326 9291 4877 7518 6041 7819 7844 7962 2020 9233 5811 4654 4780 183 7632 8538 9366 3408 2203 8926 2587 6952 4650 608 1536 4065 5992 1721 6317 6358 5371 5564 7240 3836 7777 3175 1402 4217 99 9346 1434 9441 9476 2740 8037 6356 459 1494 3955 8380 9924 1194 3420 2502 3963 5765 2456 5408 8742 1482 5803 885 43 8407 2596 8778 5097 2926 6588 8059 1269 5934 346 3328 6537 4778 9576 8794 576 6946 7466 62 5666 311 3185 706 2183 90 8800 1677 5083 2338 9431 981 1740 7365 2302 7829 4325 1698 7685 5526 1341 212 5784 1067 4257 5127 6291 3026 6135 8561 5220 8770 5788 5515 8920 5622 9548 2834 3684 8528 9931 402 8627 2268 2768 6288 9920 4656 992 3954 3172 7929 967 7217 7020 6025 7679 4342 4630 5195 7100 2393 7478 2745 7813 6011 4628 4605 3684 6381 1740 5220 3126 6692 8066 3527 9472 4745 8862 2447 7142 5981 2284 1390 1774 6981 5167 6418 8310 9727 2912 2359 1249 1307 3583 7132 3955 316 7419 7350 7302 3400 2648 8527 4956 4126 742 6808 7300 7441 9390 3806 8260 8763 1628 1208 4894 9041 7358 8103 9063 6749 5446 6412 5886 2240 6100 1248 9307 544 3070 7915 2649 5391 8139 6749 4598 4076 2901 4746 4848 1183 7546 5830 2451 8031 7585 8305 3294 2542 8968 3872 3278 2656 2016 9260 6573 7493 2588 3557 1908 2442 9616 8430 7253 313 2608 1746 4934 2324 6602 5531 8826 8960 5194 6842 9057 3386 8923 6604 9867 2041 5249 6598 4178 3378 8803 2886 6284 9340 4054 9095 5351 9781 1113 8664 428 3790 980 2725 439 3628 2606 9800 209 3317 1892 6072 4531 3780 2894 2319 3610 2153 2743 6518 7290 8758 6558 8158 2764 2458 2666 6669 3572 3954 8071 3391 7234 2071 2721 6925 1252 221 3509 7415 161 1563 7060 9169 9195 2110 2159 3311 6775 1698 7324 9650 325 6962 8387 8292 7997 2472 6131 4852 8885 6661 7878 2955 1466 4300 6981 6325 8448 2408 901 1292 5732 6087 5763 3040 2608 5945 7792 1988 3020 5339 9709 5281 5911 4334 3210 615 6142 2079 1337 5549 287 123 7113 3957 4491 7676 6696 4302 8671 5840 7662 4108 642 3548 5295 4533 4472 5302 2749 8042 6646 9792 1232 7881 1823 6146 6645 2890 7204 9047 5917 8770 7817 2363 8752 379 2076 3589 1938 6960 2173 9707 5575 8052 3347 6737 1604 721 2716 1846 5505 7567 2859 1717 7004 3436 3033 1721 7758 2472 2387 4044 3873 8018 5558 3831 7238 541 9984 7863 855 3054 7902 36 2930 7734 3340 7388 5822 9511 9101 9844 4735 6629 9338 8447 6634 7374 8321 2768 3391 5373 3319 9173 1155 6316 246 7942 9867 7775 6756 174 8202 2364 9586 1696 5640 835 1808 5418 164 2213 321 9697 8513 4981 9236 9285 4605 8440 4901 9816 1611 1935 805 3721 5511 4952 9331 3377 7919 1076 1541 5601 5109 6562 499 1521 5441 3144 5516 3155 4796 6313 4685 8414 229 8524 5144 927 7155 5282 8603 8889 3771 4869 2819 6746 3946 2494 6617 232 227 3209 6271 422 3020 1336 1011 5334 7590 1169 2204 2256 9532 4530 9873 8074 9477 6934 8052 7689 1200 3357 5216 5516 6506 6597 6133 3483 6310 2139 1970 593 1518 5815 7122 4228 976 9540 3700 2785 6593 5888 184 2810 5257 303 7165 2468 7538 4532 8744 9900 652 9323 5134 3913 3471 1613 2214 506 6732 2416 9399 2676 5035 10 739 9002 3130 1741 9078 6185 714 6612 3702 8365 6629 8649 7838 8984 7316 5053 9051 2926 7110 9151 1363 3994 2091 6815 7319 2037 5535 3801 2916 3418 1677 1820 440 9856 1998 2611 2308 9281 1448 4855 1458 2428 7683 4851 5529 9835 9978 4337 9425 6030 7271 3227 2218 6663 4926 7118 9963 6699 2086 4126 5336 7050 4107 3437 5056 503 3964 2006 7370 3374 3682 2399 859 8214 5442 7518 4023 9712 7144 6440 1865 5068 3186 3187 6062 6982 3138 4794 8149 3080 6724 7193 4761 6144 8773 5737 7094 9922 6378 1868 5600 3147 7697 5910 8786 2934 6833 7176 5460 7766 5273 6333 7337 7502 2224 1352 3709 8586 8458 174 3942 5359 4344 6617 816 7753 6818 859 9083 9208 2878 8098 2650 9221 2103 4113 6703 7931 8123 6113 6754 4600 3157 5157 6137 2508 843 9908 1016 5599 4649 4498 6189 4978 5217 6517 6367 6139 1275 6213 6586 4883 6580 9785 1155 3854 2664 6229 7146 7945 4927 741 2082 53 306 2489 2024 4474 2945 9297 6787 7280 9995 3130 6145 4614 8715 4215 7670 6274 6133 2084 4114 6120 6244 5203 3678 7728 7638 8186 7239 682 9634 8902 3589 7682 12 3881 3809 9948 374 3222 2889 900 1629 7588 9977 4753 5040 6012 6438 9112 6554 5094 1200 8904 8984 3000 9792 1661 4614 1254 3833 3347 2201 8868 5695 8713 3255 6569 6294 4762 8521 6740 7721 1093 2425 9637 9978 5201 640 1971 1925 5848 6229 8227 2525 1812 4263 2295 1246 33 434 7308 5622 5290 3098 5408 3396 1343 7744 227 4624 7834 994 2864 1163 8277 8011 9660 3904 3844 1969 9321 5778 2424 1454 7405 9941 4070 6520 5422 826 5294 437 2816 1093 6710 6970 6557 6829 1675 8760 5160 746 3212 8886 3260 8508 8554 2627 2293 9099 1990 7973 1200 2448 4926 5911 4135 3913 742 933 5926 2700 7966 1832 415 3287 5360 9710 9456 7967 8644 4895 5831 791 5844 4451 1813 6935 2104 147 4319 8932 4307 7037 4148 4051 9991 4838 1338 5445 1930 7278 8930 7345 8916 5648 2166 9466 6938 7139 4754 1324 8622 5237 2140 5062 3607 3409 759 9789 7407 5962 3669 1693 4906 1402 6464 8073 5250 5123 2336 8604 6125 2552 8476 6577 2862 128 7499 2637 9078 42 6729 3497 8554 7033 5716 4441 6909 8049 8696 9656 2765 5904 9706 7530 3958 4406 2584 5775 6786 6569 3909 1428 4429 9583 3250 4589 4428 1494 7775 8702 2721 4649 4734 7333 9644 4049 1046 6345 3587 3594 628 9009 848 4545 5807 1561 2788 4201 1867 6250 9036 150 3214 2678 7872 7206 8953 8770 8232 6883 817 3665 8894 3764 4399 3054 3862 8617 4561 6741 6543 2848 8799 6294 9665 7326 5415 8233 1645 85 1316 3596 495 4820 8450 8577 1134 42 2478 5551 6056 257 3763 9960 2884 1598 3363 9277 7231 6333 5811 1203 612 3304 8734 8597 4558 9933 5269 7458 328 7472 5419 175 7344 6007 1706 3995 2295 5122 8290 1306 6324 8240 3529 2110 9423 43 766 9695 100 5664 5341 1017 3803 2620 1589 4794 6184 7278 2622 5744 1233 5193 1615 6669 4317 2077 6774 2298 4758 6955 3012 8396 2247 8794 2054 5880 3810 8025 7682 3534 5320 375 4622 4036 6016 8566 9817 9245 9822 5987 1227 444 6794 938 1057 5104 5455 1335 9102 2380 7269 9394 6738 4001 5544 4188 5205 3498 7231 2411 8658 1007 954 2330 8310 471 8981 102 5312 1481 3035 8992 4712 8709 1432 6062 9337 1317 1887 8780 6387 4752 2151 5418 3931 3524 2059 4742 6031 4001 4447 1996 8946 6877 4316 5526 8512 939 5374 738 5134 3668 3645 6141 8531 662 4940 7274 952 7350 7675 3166 4282 1753 7474 1313 9192 8432 1891 4258 4297 3565 7386 7573 4094 2722 6694 996 6806 2639 6312 7676 2168 7115 2492 7549 5674 5571 5378 6270 2288 818 2485 8424 8445 3194 8758 2072 87 6777 5912 4438 5905 5240 3069 1692 2121 677 3575 6809 3784 1967 1008 4712 6897 5525 3546 7110 9007 8341 8610 8531 7860 195 9142 7059 9470 3413 482 6370 3655 5473 6021 7112 5096 9089 2199 7403 5402 5934 7716 8545 6402 7777 5310 390 9085 7120 2276 241 9890 4503 7212 3489 313 6352 2947 2749 8499 3214 8137 331 4155 4169 8797 1247 2143 4686 5248 190 7799 8193 6340 9136 7920 2757 1450 8151 3896 4715 1416 7949 67 8509 7052 6813 1366 6107 1592 2183 8834 921 7943 6626 8721 9393 8428 1766 3761 9014 6518 2795 9063 2761 5627 8332 894 6146 4256 4963 8677 6015 4485 3290 7471 8550 5266 9536 6903 1934 8413 3194 8149 8091 3060 8679 7697 992 9326 7867 5947 8017 705 174 3709 7839 6272 8131 6335 8953 4147 1943 3378 4941 5185 4879 9152 1255 5950 3015 890 3211 713 144 2121 165 1550 4270 4593 7919 7365 6183 4414 7361 1680 3683 6258 4892 3410 530 4601 393 9079 9796 9317 9230 6888 9303 5021 4134 9374 4022 8744 7009 636 5244 6045 1214 1044 7985 5327 3316 2585 1625 413 5376 1301 8929 6953 8048 7360 3522 3943 4962 3812 4614 9848 2596 1542 5120 8501 3582 5815 5814 6433 8768 974 5391 2394 2939 5182 4046 9640 1432 676 2845 5160 2881 7669 2811 5517 232 1326 8547 4517 1222 8351 5583 9943 5229 5453 674 5562 2028 1977 3105 2991 3142 1580 6665 6120 7525 1158 9661 2823 6625 3158 8175 1720 888 8771 5637 2628 4131 5581 1191 6829 5473 8823 9539 3407 7275 6900 5286 548 3862 1391 946 85 8883 7255 7493 2466 8939 1807 9157 7267 3255 7591 5054 9932 81 9946 425 9070 6995 6801 9753 1813 3093 8996 1764 3298 8375 3626 6088 9210 6014 8038 7308 9970 1374 6963 8638 5521 5627 2135 1221 3856 5298 8525 6064 2047 8976 8995 4801 8854 2666 4253 10 4402 4760 1447 388 25 568 2632 4529 5575 468 1395 6692 6651 1766 2925 9555 1276 310 5851 4423 208 449 5278 2515 539 2571 6793 1526 4902 6401 4104 8273 327 766 1232 8008 4107 2535 9867 5039 545 7272 207 1766 5773 1776 4897 6408 5413 7142 8671 735 9464 7066 2511 397 4802 4383 2987 4310 8126 9228 9428 7022 9386 6241 3212 2090 9470 6194 7629 6422 2839 6330 9475 6425 101 8319 9551 8077 5108 6917 6070 3068 3187 111 9670 1249 7818 4372 1901 24 1792 3509 2275 5567 2010 6120 4988 8092 2742 3260 7912 4840 6466 7959 9 4770 2702 1453 802 9059 2202 1488 7868 8924 3336 1322 5148 1736 5936 5542 7159 2918 1946 9171 689 3718 3692 4118 4851 3824 5276 5927 2833 494 8977 4821 2855 7612 3732 5486 5094 9619 7826 995 4031 4930 2988 4759 3418 2186 4020 6371 6252 381 9912 1527 6284 8852 5224 9619 3148 452 1196 2640 4000 9602 5173 4631 24 3427 7735 6671 5506 6070 6415 8371 9550 3729 8909 3572 6203 9623 8717 6519 9840 9949 2770 794 1759 4556 165 442 1980 2028 6915 7959 5374 9232 6591 3266 4613 8896 2086 3206 2754 6660 2411 216 2741 9605 7994 8598 3828 1980 3145 4954 1811 7811 9422 5193 5290 9039 6162 2743 8662 466 7398 2249 4101 8221 4685 7246 6400 6318 1879 552 3645 7750 4878 5226 8218 1345 9920 4101 4231 879 1443 8657 3066 1924 615 4371 6250 540 8095 4189 9427 1203 33 6172 8276 3111 9740 7986 2879 5248 480 6789 7076 9806 8985 7483 975 1586 9955 8122 572 7702 6063 4296 8410 3771 5755 4089 3457 468 2820 9740 5982 237 8379 5233 4049 4800 1060 8520 3683 9271 8185 6348 2169 5391 2780 1110 8011 3240 4724 1120 1118 415 2188 2765 5901 7654 6590 4043 8321 9739 6550 822 5429 9157 7410 3020 163 1173 872 6068 4495 808 979 598 4908 2050 3046 4988 2042 6907 8238 167 6212 1204 8612 9727 8099 3674 1700 1730 869 5947 5959 5742 1431 9931 5036 5850 4193 4176 8210 8814 9919 2556 1493 6129 5589 150 6749 8561 4424 3784 1872 382 8385 6850 4370 535 4854 6613 8143 7085 5064 5137 3353 2385 4071 4368 4779 5877 1054 9443 98 2950 7352 6716 6555 5558 5254 1410 6788 3006 2063 8365 9995 1335 627 3822 4854 4623 1029 4862 1829 8284 633 8215 4587 3944 3848 5765 1213 6067 8008 306 1320 4257 5149 8500 5189 769 7346 2277 2012 2397 7916 9769 8741 9261 6489 6500 838 7158 1776 7679 2691 4722 8694 8182 8261 3682 8018 7718 2271 8252 6026 800 483 2203 7138 1426 6150 4332 5320 2889 8836 3529 9400 644 8974 9940 6236 5275 1036 5792 1009 7480 2802 1980 9114 9979 2110 8726 5063 4101 5637 7981 433 4933 7716 8894 7750 9827 5460 1471 8135 7363 7648 2704 7416 7166 5509 9129 1156 7499 4860 5069 1296 8043 760 8249 1559 7290 3179 507 6076 5137 4458 4794 7048 1888 7650 3350 2053 1053 6782 5186 9576 1047 8858 4421 7382 2950 6681 1462 7421 7709 385 2908 1679 5353 535 7807 7808 6136 2602 2643 5182 6433 8102 3811 3682 459 7118 6575 2985 2939 5840 8621 2338 5749 2893 2621 5341 8506 4648 160 7825 6849 7268 2407 3029 4940 1615 9638 808 4800 6290 966 3654 4547 7690 9949 8730 973 3996 7990 9017 9899 4716 8381 6258 647 528 9384 7155 9695 3948 6755 283 4101 8373 1364 5553 939 130 9837 9816 3164 1584 5941 8439 3228 9338 4262 1328 7985 3584 9570 3734 8928 4953 4841 9739 5771 2711 3442 1412 939 3398 4465 4273 5246 6995 8955 7216 4321 5452 6116 1101 456 5328 9201 5592 614 8330 4618 2509 4007 8309 2995 2947 5277 2666 5354 3351 2385 8147 7602 1140 417 5394 9654 1945 3187 9579 5883 330 4132 7590 9934 3598 5311 4846 7434 1384 7935 8037 6611 1411 1453 4151 811 9286 4892 9750 8976 3337 6915 5863 8324 7937 2350 7246 8614 4354 4051 2012 7908 963 6938 1850 7543 9888 5888 4137 9972 8194 8052 5463 6763 9480 2063 4849 1509 7738 306 3535 4462 5279 2111 7037 3831 9350 1601 2410 2359 2673 2185 2449 7022 432 8523 3412 843 6500 5596 858 8724 8944 8203 6707 6237 9489 170 222 8324 7981 3675 6302 1771 8197 2294 3728 5819 1024 7913 1369 8366 2533 7569 4123 1240 179 754 7365 4066 701 6896 4511 7352 1807 4942 63 7348 9855 3220 8684 6587 9759 9902 \n9593\n2318 6524 2858 3198 6974 7638 4700 2394 716 6862 9637 2279 1710 6591 1681 4891 4191 6861 5945 673 8914 6881 6085 6620 6328 6558 15 1961 6395 4632 3564 6658 6719 2309 9374 501 6940 4938 9242 8213 5093 2604 5920 2839 856 7464 159 7469 7242 6035 9848 4168 8615 9980 3517 8913 3171 2884 4517 446 6182 2747 5190 7807 8651 1159 2815 4314 3483 2877 4776 1333 1309 1982 1927 8843 7802 2162 5476 8760 8175 6068 5 816 2887 7451 4898 1467 8577 5311 4380 1459 2917 9563 6726 1277 5147 2941 1264 9940 9468 3444 9665 4977 3139 8323 509 1306 1572 8512 9173 2396 9263 9454 1077 744 2993 1636 40 4361 5666 3763 6355 1357 7167 538 1039 4346 2259 8670 9784 4056 7637 3997 4705 8871 4066 1256 9770 4840 5604 6875 230 4937 8787 349 3146 6868 3293 7462 1281 6690 1801 9613 5263 6714 9016 6482 8460 8863 1217 213 6489 3861 1184 7355 9328 9242 4554 3089 2918 7795 7244 9044 2916 9509 217 3963 262 2355 2549 7729 5633 2565 1715 2429 4195 7851 6805 6351 2676 8700 6464 7197 8245 7594 2072 1376 8373 7533 6731 6333 5489 6842 3721 2235 8924 1087 6973 7421 8826 528 5887 5782 1359 5454 9823 5656 472 8234 5035 7227 1253 1637 7837 1251 508 1066 2057 7589 2521 900 1595 4660 4506 377 3289 5899 2748 9758 2353 6059 4421 4815 528 2085 3686 6276 8090 3229 1527 8366 799 7320 3084 6333 1433 4789 1521 24 9162 9625 5074 5900 8944 2584 7125 6302 9374 5651 9633 7546 7319 6953 4806 9402 8602 1139 4338 4800 5457 9421 7731 5077 6191 2651 6125 9797 9388 5633 1454 4154 5780 9564 5749 6042 5712 49 9893 4200 2241 1695 8934 8085 2956 7907 7216 270 5926 8008 9715 6959 990 1458 744 1320 5503 8645 7961 6826 3000 6019 4738 9284 131 5306 1006 4938 9677 8030 8587 134 1237 6256 1344 5689 9205 9179 7038 831 7055 4189 7706 7715 5527 8238 535 9155 7026 4966 4344 7414 8971 5902 7039 7222 7111 6881 5395 5141 6976 6301 7365 133 8000 3302 1738 4736 7573 5553 7551 9614 4631 7712 8244 5161 8466 2235 4900 1854 9209 7878 7697 4641 3075 9393 4044 6822 2436 7280 6778 3514 9766 2419 3437 476 6295 6016 1678 4752 5052 1312 4691 9548 8066 654 2944 262 3010 3749 6651 9696 6731 9355 5403 9394 1361 633 6768 7243 2559 5812 1738 4861 8431 2527 7314 4327 9645 2573 5443 4374 2384 7436 8234 8466 9850 1513 5103 7585 1353 3615 8065 3930 406 41 9446 2433 237 2763 2329 4641 6456 9917 3304 4299 717 6384 4847 2157 9281 1870 8932 3411 2691 5544 6924 6010 1223 1941 4888 8235 1146 9466 4454 3252 9904 8100 3209 5422 35 8960 1207 6779 967 5433 9734 6457 1146 7017 6737 6977 9360 8777 5189 6732 1723 290 4991 5745 4752 6202 7131 898 6935 8348 7990 5301 5290 3304 4102 3793 2109 5136 3806 9514 3175 3639 1906 9375 7761 6071 537 9511 8648 3404 4651 25 8202 4416 8810 3503 5176 1163 5344 1071 9071 1126 115 1486 9660 1008 7182 6186 1747 9229 702 7924 9945 357 3103 2290 1227 2602 4213 8263 9987 9438 2475 9296 4956 253 5245 3745 7891 156 994 7984 8194 3218 2421 425 4886 2466 8125 6720 2335 4752 7482 914 8060 1939 5277 1601 8984 6890 6444 3502 797 4871 6468 2396 3520 4453 3919 9929 3597 6320 8558 7485 3884 7516 3461 7324 7657 4451 2627 893 3222 8900 3960 4590 3924 668 5297 3378 2444 1880 4528 7770 256 2181 5846 8213 4302 8767 8049 2855 2527 6613 6255 4292 1068 2520 502 8514 7162 920 9384 1597 6590 697 736 8777 4273 9215 9706 2224 805 6346 2111 9425 8445 576 3987 6765 6636 3788 2716 2019 1861 1668 7609 4749 6333 3741 8820 8418 6931 3796 2221 4337 3506 5277 8705 4334 2554 5274 9033 9745 2532 3528 5078 2237 9305 9717 6570 699 2372 360 3238 2193 348 6651 1824 8772 3620 2599 3408 2063 6783 5649 3282 2713 351 9165 8003 9666 9945 3637 9243 9364 3357 9412 682 9683 5037 9053 3302 4566 6471 576 2592 2844 8390 2137 7806 2066 7252 6577 4922 3246 7708 4984 7508 7922 5778 4653 145 2505 6689 5114 2364 7465 4484 7448 2519 5994 2444 7840 3647 582 9553 1043 7770 5362 8144 2059 5845 8735 6045 2299 8715 8258 10 171 6269 3659 7189 205 7955 3865 8710 7644 3339 505 6694 6702 6593 7140 919 6339 6754 3098 28 9283 2729 1422 3382 5328 2669 8400 1484 7896 1185 9628 7761 8943 9086 8062 3024 4331 143 2100 9041 4390 1861 4158 3169 1412 5347 3607 760 6578 9241 2471 2165 5092 7088 4447 5250 7692 1690 129 215 9775 3044 7091 9352 9385 7498 3914 7702 225 243 8464 8678 4679 7046 953 416 4064 320 2477 9847 2424 9167 5585 7248 3099 6727 8728 4321 643 2635 4602 3982 6437 125 2445 9992 9131 6894 9710 2737 5920 1628 9157 2919 1085 5005 8746 2122 1627 8877 3625 8257 3424 4202 6807 9792 1750 6986 8527 9761 3844 633 2319 6538 4826 7771 7569 621 4672 4356 7627 2415 7510 2585 3264 4388 9933 4876 3461 7365 9929 2284 3776 6607 7237 8051 9332 3274 9194 9207 860 8144 2205 3440 8384 1634 8750 4652 7402 9003 2412 4006 126 3949 3660 8246 7781 7904 4282 820 6820 3648 5594 6982 6756 842 5430 2749 3496 1105 461 5898 1961 6859 9298 8767 5864 1532 8527 204 3339 4747 7505 1265 3918 7965 4991 1992 4695 1044 5664 4409 3050 1024 9709 1717 8687 8756 6447 45 2136 218 3502 8067 3684 2832 1009 1617 9591 7054 1813 9160 3923 3797 1380 5392 4688 433 8998 4641 6180 441 499 7575 2361 9681 6650 4429 8144 9428 820 633 1221 8226 3380 7541 1887 2765 1151 7206 7472 8140 145 5403 971 5737 9693 2837 1974 7439 7927 284 7103 8155 9268 1734 5898 5623 3408 1684 811 2065 6679 5692 8981 9851 7993 5080 8824 9089 592 4164 876 1482 5158 9206 5850 6171 406 3123 2826 3007 5523 5412 8536 7986 6194 8025 5191 4073 2124 1156 2951 6943 2547 7406 7086 6114 3549 9599 7241 6682 1479 9563 2604 7948 771 9028 7858 7597 8005 5095 5825 2483 6151 408 9373 34 9823 1977 5089 7939 802 9934 8311 592 2675 9501 4003 9648 5918 8864 1124 4614 8071 3917 4049 9274 4664 8038 4081 8548 8809 2153 6617 7114 3805 8517 4281 2783 9753 4445 7388 5489 1115 7405 4339 6065 7123 7085 5271 2375 4432 6331 8762 900 9499 5510 2873 3136 2228 8805 3331 626 3632 2388 2002 8508 377 1111 4593 1076 4472 8061 5704 2363 3232 7660 3889 7545 876 1070 8053 6989 5292 2874 4435 6879 563 7321 4769 5262 5897 9295 2479 652 9185 4297 1795 6125 5989 8356 4879 4580 1871 8736 7216 2015 1835 753 1692 1614 534 2623 922 3760 2796 3055 5178 9537 1511 6771 4196 9982 8165 2210 3781 2086 525 1425 3175 942 1220 6195 3412 3646 1195 9875 279 9623 4842 5156 224 118 7967 8000 7825 3980 5750 7583 9135 1506 6302 3879 8604 4400 663 5678 3694 1964 8018 4411 6505 6423 9412 1205 1837 2618 2734 2659 1941 7117 7568 97 4463 3325 4983 9220 6810 6714 9433 1536 8298 6140 6415 6607 2844 5956 1298 3280 8943 6970 7120 5878 6254 3244 811 4992 6406 4909 8134 5423 6191 1851 3132 9717 3374 7269 6795 2677 6866 6766 3067 195 3742 2663 7737 3294 1851 8886 3745 1308 9599 6388 4553 7312 1014 7878 794 6341 241 3464 3387 4414 9947 1265 8636 8422 8925 3775 2258 1816 3117 7584 7433 8076 6659 8107 6227 3119 3910 1449 4898 7123 1312 9549 1832 4478 2089 5021 3557 3863 4507 27 6667 1799 424 6580 3910 7488 6100 7600 9129 9394 5629 1846 8474 8390 6907 2615 4963 8847 6943 9983 6760 57 3431 87 4096 1881 6928 3401 7411 1759 2045 3589 4269 7947 9394 1196 7082 1827 793 4379 8791 1427 4978 9566 1704 6635 6272 4394 9131 310 600 335 5095 7980 7632 933 5816 8816 8515 9821 2785 6991 6997 3084 7485 5993 4209 2273 716 9109 388 1484 5839 5093 232 2820 2076 2751 5493 2707 4777 5 8951 7434 3553 3827 3025 2481 6431 1808 8964 7744 9828 1090 6654 371 4787 1514 507 176 8183 7558 9234 8542 3395 9159 5125 4610 9013 873 7411 8702 1103 3357 9183 2699 8209 7078 3380 6792 9184 6921 5489 2039 8261 7794 5848 7381 3772 2707 2510 4310 435 3823 8882 8012 41 1848 5024 2505 7032 4939 2490 4313 1867 3948 1059 7939 3100 4385 9060 6066 2047 3567 2044 2218 2092 4840 7374 8948 3953 5925 4610 8032 1668 4365 4061 6779 8693 4347 4048 9748 4276 4308 8645 8600 3381 8454 9629 3148 1719 35 2245 994 2187 4115 4184 6754 8597 192 5839 6007 352 661 6850 1522 3648 9350 6780 3067 7422 5889 9850 9083 7141 9947 196 6644 285 2839 462 2886 5654 1507 9156 4238 6543 761 7914 8460 205 8953 6243 8913 9157 4727 187 8488 5339 8492 8994 5259 7364 2044 6270 6463 3259 2241 6354 7675 2410 2160 3896 5604 9306 5140 9769 7692 9686 5662 1089 5700 3762 3702 8854 4307 6123 5910 5470 7775 1768 719 9042 3900 7936 1868 2208 7897 1366 6584 2432 8977 9563 6701 930 5030 3159 2619 4599 7393 1588 6324 7727 7093 2086 5253 3760 4026 4427 2422 7636 9416 3665 1058 8557 2309 4560 3041 972 1775 5043 2258 4165 5372 5204 9760 5920 8507 5671 4656 631 3944 1956 1748 3245 5068 6242 4151 9054 9091 3101 2484 4093 7829 1836 6846 7685 2032 382 3790 5844 7009 6196 9012 6835 4895 349 2716 188 3546 7196 6826 4654 8046 9058 4481 8564 3864 1396 6897 9895 3372 6857 7195 3465 6191 8507 1027 4843 9470 1188 6744 8402 950 9461 4350 201 142 9158 120 3320 765 3272 5308 8853 4864 7461 2640 8745 5289 9101 393 1551 7832 8425 6384 3063 3031 623 6808 1777 525 8784 5961 6226 2298 9923 1741 1390 7783 9081 4751 2491 8355 7480 1315 607 3154 4278 8481 6791 9822 1086 398 344 5515 3346 4497 4903 6895 2738 8544 3174 2435 2410 4386 6127 1941 1392 2756 2514 8355 5452 890 5136 5469 1853 8273 4629 2999 3516 7229 3407 6638 1299 8688 4707 6524 97 3839 1339 6203 7817 3392 7911 5094 8188 5153 8093 7098 4134 4663 1994 7676 7804 4698 1870 9232 851 7499 313 9736 7764 188 7510 9471 4407 7334 6458 6909 7179 9418 3872 2382 8207 9942 7936 6147 8978 8679 5894 6007 4259 7544 2195 9186 7271 7333 8708 3183 1584 8101 3664 7797 1398 9982 5874 3548 7267 9698 9578 703 3132 9559 540 7924 1868 8764 8708 1907 7282 6541 2753 5621 8658 8123 7478 5030 703 7422 2293 4486 7662 3862 835 8759 7419 5860 8322 9720 7015 17 9599 6286 3974 4049 3980 4647 4956 4927 9621 4033 3486 9020 4109 6716 2064 3011 5024 2184 6736 1388 9494 3905 8257 8850 5691 9207 2722 4836 1509 9259 3413 797 3100 1328 7865 4504 7045 2684 4370 5597 839 1758 3642 3966 827 5790 2842 583 2217 1396 7118 4591 4217 7900 1458 8012 8279 4891 5731 4271 8928 3955 3784 8654 7957 415 9861 4437 7596 5534 8038 9790 2862 8576 4654 2390 8736 2724 7360 4398 769 7402 2222 4483 216 200 6381 4762 4950 6973 7533 3427 6500 6080 1963 9708 6985 5580 232 4011 3902 1987 1828 8758 9909 7987 8344 9016 2373 2851 7084 5723 3293 2683 2934 8170 8398 8008 8313 6759 6258 5818 9288 9281 5061 8440 7945 9630 2422 4495 8746 3094 864 6914 2112 725 3871 7866 7274 383 7069 7801 9811 3041 3294 1313 573 9798 5744 5188 6607 8796 86 3986 8410 8377 4420 1142 8131 9595 9385 7326 826 2959 6801 1650 2386 1740 912 7337 7305 8146 468 9096 2617 7476 6483 1739 8658 4729 3988 8597 8942 6915 8614 9141 1075 7340 4360 8440 2848 7608 1769 350 8755 9578 5407 6399 9843 8677 9860 5175 3653 1609 3495 4094 5670 5684 5892 2632 301 6972 294 6546 4760 5737 5283 9717 870 343 5765 4374 483 382 8426 7461 7461 2171 2836 6248 6871 8572 4343 9559 8219 1952 9060 2133 1533 8499 4627 163 8477 7320 5680 4067 9815 5598 7552 4719 9836 7699 1009 1465 326 6522 3610 5377 5832 5008 407 3836 1245 4557 1619 2528 9085 35 4284 1645 4155 4067 9161 1428 1106 5248 9907 9948 5348 2695 6931 6494 1530 5135 7476 4141 3832 9706 662 2085 1609 1895 1748 7989 1790 2827 3060 9971 817 3363 5359 671 9837 936 7944 2319 1211 8898 2825 9108 102 2674 9545 7997 8191 8318 1539 5864 8579 5499 5354 6184 6044 6701 6747 6003 5856 854 8999 9665 2834 3915 5705 1055 934 2159 2219 579 7458 2545 8903 5897 4120 626 2877 8153 9848 2613 2957 3761 9973 4073 9346 755 9890 1851 6015 3043 6161 7403 5991 9362 3930 9403 9560 4099 8906 851 2688 8864 1862 2558 3719 3926 4148 8883 5397 5978 4588 1056 6992 836 652 9895 5198 9459 6127 4068 8158 7016 1237 6398 3600 6527 2013 539 6245 9182 5436 6036 801 6632 3207 1236 8623 2257 7278 3103 8188 699 6348 3595 7786 2379 6734 9802 7760 698 9539 2563 5416 7475 1011 439 4355 6899 1344 7719 6276 5658 9321 6100 4705 5931 340 9743 7515 9870 6401 6056 9873 2256 6089 4342 5400 6241 3442 1927 3327 4295 6377 4413 6296 1042 5515 82 9021 3022 4468 1668 3754 1918 3246 9012 324 4 4831 5807 3500 5445 2652 4102 9756 4756 6121 2766 498 8360 4488 4781 181 9997 675 1688 1259 1198 4529 3502 2403 64 5316 4715 2594 4178 6882 4724 1611 875 412 2490 7671 6299 4835 7619 5385 4015 808 8133 3046 3045 9408 9453 2401 6937 1656 2531 7807 3371 7201 7079 908 8633 7926 1758 393 4521 2263 5670 4997 3567 1374 5664 8662 3696 6300 7756 6948 3787 8345 2371 6736 4579 169 3275 8678 8292 1762 5134 9460 797 4043 9209 5464 7220 1163 5244 2342 4411 3938 3174 6138 2807 3917 3263 3037 3753 6258 604 1552 2395 2207 3978 6899 1057 9349 8939 1623 7799 6423 9867 5592 5911 7791 647 2472 2127 668 6683 510 3894 4920 6253 8393 3798 9362 6921 9120 3220 20 152 1989 2357 4471 5052 8673 346 5470 3680 3441 9199 1249 1031 9119 6064 1635 4004 6729 4325 5729 8211 9883 2000 4347 3882 7526 457 5856 1166 8317 3646 5840 9698 2255 8577 3682 9346 5426 1491 3353 1408 4741 1607 394 6637 6281 2319 8724 7123 9161 101 7085 5766 6950 6539 1337 2053 4011 9091 9242 270 437 9187 7535 2491 7246 9672 2527 2227 6855 3234 5888 3615 9966 7127 1029 47 6948 1055 3817 7761 1975 6036 2817 8635 3940 6127 9753 1642 147 3331 5006 6769 238 2893 8881 5636 7923 1152 6653 9464 8051 3162 1609 1019 9942 9075 3735 7326 3560 1443 2287 9607 450 6452 7897 9722 83 6338 687 4593 8353 3958 9091 4807 2945 2028 1986 750 272 7523 7374 6426 2155 5937 5997 7799 1642 5044 6294 3545 5514 531 219 2125 8003 1657 2982 7690 1205 7178 5198 227 9364 1774 6423 9373 6685 780 8407 6662 1383 4526 8894 8750 4148 512 9718 9642 7737 870 5065 4167 3627 4688 9488 5848 8383 9902 317 5993 1349 4771 5512 5526 7936 9503 810 89 6078 4491 7069 4336 806 9498 7953 3518 8244 8274 2461 4630 4532 8215 5986 5595 8574 8202 4544 1588 8620 9364 1583 4227 3403 8064 6206 4330 8406 9250 7587 7409 2726 7501 5211 4709 4833 5051 3973 3348 5722 1981 2927 2952 9528 9796 2853 2490 6828 7710 2473 8433 9453 1020 5092 7146 5096 8801 2320 221 5536 8303 6209 4542 4605 6953 8007 1308 2332 7498 792 4817 2195 9058 565 904 3145 373 7022 9775 4888 1483 7509 6431 4471 3809 3458 6096 1761 1202 3224 7628 5026 4221 1606 7299 2055 5026 4441 9582 1255 3499 9530 9687 2629 1564 6739 6119 816 5248 3188 3684 40 6216 4093 301 4861 2541 7899 5025 5418 2592 4469 2454 8444 4523 8716 2145 4823 5455 2733 7829 2934 9739 5690 9188 6034 7872 5910 3719 7632 4104 621 4816 6586 1602 7967 9872 2601 7927 4019 6391 9188 5913 6093 2859 6729 33 1103 1564 4606 5221 6056 1708 960 2144 4859 9806 3621 5037 2741 1872 5406 8098 2117 3854 2577 8451 8012 7025 9649 1993 2962 540 1461 3655 4160 5283 3547 2619 7036 8156 9583 9183 8819 8498 5027 8499 3229 5683 1276 5756 8293 77 1076 1078 3717 1930 4515 7797 2593 1645 2772 5646 9369 6502 1649 4848 5920 8128 9639 3235 6856 2877 2650 8566 3910 9189 3918 7246 947 1524 1333 4990 5440 8908 5199 841 7212 7683 1346 2999 5880 9854 3217 3577 6395 9486 3445 6291 2690 9038 5840 3123 1266 6694 8734 279 3158 4254 7051 1800 7563 6646 9979 9749 6427 6113 4522 4103 9484 5007 1074 1597 2037 6305 6038 4806 6751 9093 3563 9884 4619 4007 1928 9858 4456 3517 6133 6418 90 6279 8417 6269 7585 8031 4625 851 6068 6948 5496 4639 8415 1934 5195 9408 6348 2079 2746 2188 8752 3837 4876 9410 5365 2154 5225 7647 6104 879 9657 4719 5227 7516 9036 8134 4404 8692 4063 5610 896 283 6523 7514 4164 2448 1087 2215 7952 581 6517 8020 848 6135 8752 5427 4401 2413 4804 7897 8369 2710 8918 254 4246 6834 7537 5594 3255 4336 5327 1135 6939 8145 6232 2143 9912 3723 1918 9242 1518 5338 1828 9652 2852 8671 9495 7018 224 7865 312 4517 2815 5409 4303 6145 1582 5134 1942 2636 3191 6033 9981 7930 6135 9545 9487 6192 7419 3300 6453 3876 9598 7466 2439 5550 6506 8296 8258 8422 3246 1933 6392 750 5025 874 5335 1056 308 1531 5059 7541 1897 3200 166 7840 9896 8840 3924 648 6171 7978 7870 7587 8836 4070 1698 4398 9611 7010 4751 5483 5257 743 775 6732 6354 7941 2455 7560 3826 3356 1901 2182 5365 3580 6712 3030 1004 7427 2756 4408 4302 6159 1099 9208 563 7730 5308 2254 2586 9573 5948 3590 310 4141 993 2642 8189 5585 9625 7343 6429 9162 7893 3997 5426 8209 7726 3415 167 5558 9457 8231 6393 3935 237 8321 8954 4103 8983 4606 7936 1569 525 2382 5879 7519 4626 548 979 6610 9060 7146 8140 9894 3985 3851 121 8455 9913 853 5111 9586 7022 3568 2241 7296 6503 3783 9465 7518 9457 3776 7555 3553 4167 9167 6627 6462 6629 5783 6390 4824 3139 2842 6324 2848 9946 9101 4132 7745 2934 2002 4950 2883 572 475 8337 7636 8815 6726 3582 6034 8681 4622 2379 245 8704 2841 4225 2278 4171 7419 6346 1398 8819 7787 1734 9587 6882 2065 9779 6682 364 624 9234 8760 5590 2404 6053 4070 1444 6851 6970 1960 5348 3555 7685 4961 6287 4405 7956 1529 2526 4968 4408 3900 7535 3736 8400 7695 827 7426 8172 9199 1891 1850 335 5414 8694 5830 4075 2705 7081 5125 3545 6403 2265 5502 6600 6125 2888 9517 9883 1893 418 2224 7089 2705 5363 8576 6949 6005 2737 5156 4992 7859 1029 8429 2458 2901 8855 9402 368 6412 9063 2540 7188 3818 3227 2292 9141 2566 90 4364 7492 6804 5180 5934 6129 1713 6138 7469 5789 921 2337 3037 416 9780 3603 7839 9166 3203 5229 2839 3602 3392 5779 6114 7303 3193 6962 5120 8808 7200 3432 7398 1091 7026 7418 9070 7874 7968 4765 3230 1938 8619 194 5781 8575 4524 8859 621 4990 5361 9402 8818 1591 4838 382 1667 798 1299 2905 1160 2347 450 1619 3485 9017 4008 5556 6135 9158 4731 3019 6975 5827 6832 3303 3717 132 3628 7255 5434 5077 4432 3563 9723 5024 8939 1511 3446 4520 6431 89 5366 4887 4845 9412 6039 8545 2572 9842 7428 7292 4341 6653 2733 7481 628 1287 3668 6152 8784 1874 2166 269 6933 2113 3307 2542 1855 9817 1275 8555 5016 1994 574 6827 8825 4370 3087 4134 7661 8277 6244 9916 7247 1238 3276 9846 4000 4436 5827 428 6326 2768 7039 3450 2398 9136 1622 8448 727 1088 8247 4675 5688 4160 1261 5376 9474 4764 8344 1231 4827 9520 5888 2764 1356 9949 4312 2192 8360 7947 2852 3017 799 4012 1800 5220 2012 8661 1027 467 3526 5564 7945 3626 6612 640 1451 6319 5949 185 3878 6585 6677 2419 902 4424 8865 4996 2543 8907 1124 1106 868 898 110 4459 3331 3904 8584 7914 3928 8706 1727 5637 968 9288 5401 5171 3679 6235 4178 797 1956 4702 8668 1338 8431 9463 7523 5704 4877 37 7644 3781 1551 5250 9832 3440 3277 5874 6856 710 6795 5645 4530 3559 9326 9966 6674 2700 4979 9061 7063 4117 9988 5618 9314 9620 8620 6869 2248 9980 7629 7355 1845 6465 5419 8748 2598 8753 7330 38 5000 2467 6830 3520 21 6271 4655 8279 8283 3407 8397 6783 9371 2589 3381 9393 9950 6156 6877 1320 6127 3377 6213 8371 7042 1093 4060 931 4905 9303 3254 9008 1938 8976 5402 338 617 6928 1611 7776 7265 7494 2803 5976 6747 3391 1583 7040 9376 539 4037 8521 7492 532 7450 8084 2876 6585 6842 4898 9816 1605 5989 3939 5581 9382 4189 559 390 2373 1745 5129 8457 1782 1746 1457 8010 6244 9274 7089 5979 6592 7421 1819 4525 3296 1986 749 1109 3660 8361 7077 5360 8814 2924 8642 4622 8804 3251 6442 4990 8467 8624 1087 5767 14 2487 7017 2760 9416 9644 5092 2752 2926 1353 2637 2106 2961 7889 7664 7576 5016 277 1885 5038 9437 8186 1045 4493 1193 8148 3354 8727 9278 6533 7941 4888 1242 9670 6844 615 2837 2670 221 8324 7749 2173 5495 6702 7939 4556 9169 4434 6369 9998 7018 3577 3428 3129 7660 3477 6327 327 8651 2759 2065 249 4448 9469 3401 1077 3229 638 4176 952 5477 9329 973 4963 2165 9452 6782 9666 9883 5876 5185 7104 4869 6831 3784 5276 5158 6346 2774 2768 6886 8339 8139 3324 3821 7483 9835 5817 8795 6477 9664 698 7705 6334 8586 3564 9543 7664 7406 131 2237 8727 879 2664 5370 124 5057 7685 9811 4546 4358 8221 3291 6917 2737 9943 2125 9099 5752 7213 8467 7049 1520 3831 6115 280 1970 9192 4852 8636 8973 7615 7440 7368 8435 1119 7130 1870 7750 3824 6291 8622 4525 84 3235 339 6507 2466 1084 5269 1638 2291 3737 5457 707 1997 2815 9659 236 9423 2935 511 3666 8957 5516 5452 7479 2304 2539 7477 5414 5105 8496 5600 9772 9030 9378 943 9134 6111 4784 5429 8564 1606 3615 5283 2763 4921 3992 9883 2877 9620 7557 2299 4378 5301 6521 8131 3931 7268 6524 1362 2891 5162 8911 2537 2483 2195 8511 7374 7194 6539 4843 7005 2188 6139 2359 5417 5955 9351 158 3945 5792 8631 51 8913 8297 6354 3678 658 1556 5593 2013 8055 5860 8609 1102 8024 3342 4268 5865 1415 2250 7453 6569 3136 3433 1711 859 530 8210 3297 5406 2726 2626 1117 3468 3004 5583 61 9363 5274 2646 7583 1486 9034 4447 753 3995 2516 9101 8368 5026 5818 2078 5136 7462 1045 6813 2844 292 4114 5029 2917 7548 3637 8997 9028 9392 3477 8476 808 8801 962 6654 1951 656 8603 7867 3113 3345 1076 4697 3294 3438 1291 9340 5950 9296 9836 1170 8875 9806 3500 9076 3147 6431 7131 2604 8236 4890 1851 4897 1691 1550 1678 9372 857 6404 9168 6382 1109 7850 8521 1185 1742 4539 8849 9761 1355 7853 7669 7046 3002 5289 2799 9778 9576 813 5121 1059 3459 7554 2798 183 455 5282 980 9129 9099 6972 1573 8106 9089 6182 7989 3047 111 751 4158 4656 2965 5472 6397 1186 8253 7277 6294 4651 1177 2244 5778 4547 5806 8308 5891 5303 144 9925 1862 9752 2968 6439 7743 8096 6149 2870 8444 8984 4178 5277 4510 8935 7652 3017 2221 7273 5384 1192 6212 2399 3001 8076 8005 5576 3314 6073 1279 1205 5524 9766 1820 4488 8787 6709 3826 5847 5442 995 7775 1371 9829 5524 1990 8050 9667 3048 2007 3566 3826 4939 3996 4069 1828 4447 2035 2252 3400 1792 4612 8106 3783 7170 198 7255 8969 1975 6322 2445 5455 9350 8798 2569 4098 4245 5872 3279 7677 20 2757 2092 3641 8030 151 9614 2000 1611 9995 5932 6239 3324 6140 7597 438 2751 5515 2853 5851 4637 808 2417 9281 2562 2672 6402 8944 4710 578 2577 470 573 2312 6283 5584 664 1519 9586 6779 4655 6674 5236 4083 3234 9606 4140 4897 1294 1616 8721 6247 3483 6383 8915 3454 2807 3108 693 5555 8150 356 2119 8655 9802 4085 4639 463 6926 9888 4257 1257 2118 7812 1384 1848 3395 859 5463 9812 6061 6415 3029 7564 2254 7844 5057 3900 7701 9658 2288 3199 6104 2289 1474 865 9258 9728 446 5060 8515 5317 8897 2534 375 432 7036 7105 1105 6604 7330 4526 5141 5130 7873 8662 5787 5590 8829 9586 8523 3210 3057 3102 1055 6054 6104 2764 9676 7222 5831 2394 8879 7273 7425 8019 551 6592 4704 9591 4837 1985 445 2465 6082 8082 6401 9432 1119 3075 2792 6871 9993 6181 1654 2835 8409 82 70 7085 3327 5529 7954 7036 9615 7139 6806 1215 1257 2335 573 1398 2017 1386 690 1582 8623 9862 9803 286 5493 1143 1590 2987 732 5423 8080 1180 573 4991 87 1433 1415 4445 8170 1394 9033 224 8105 8454 9329 6920 8226 344 5669 4377 5395 3130 9871 6357 529 9140 8120 9458 2883 566 5492 3085 4292 348 9237 5496 8075 8327 1571 8514 9395 4669 6282 8882 2478 1890 8854 6942 732 6788 5235 7458 8744 3424 8801 9178 5113 2123 6482 3919 2687 914 1758 3558 8401 7327 5600 3252 2186 1427 6353 5519 9668 5928 8728 427 1857 7004 4642 7438 7492 1606 6522 956 6766 9771 1856 5284 4919 2138 5520 278 7352 8502 477 7949 739 2141 3513 9679 4872 1724 7075 9545 4570 7175 4515 1009 5969 396 3724 9718 3490 777 9324 5203 9877 6320 1464 8963 7053 4078 6971 1233 3389 7903 2107 1247 5565 7267 2085 3973 3398 8610 177 5055 4997 331 772 2986 6240 1718 7664 1022 2358 2591 9676 1486 6530 5462 931 3022 9715 765 4957 2952 4986 4943 9371 109 7820 272 1032 8193 279 5041 2608 7380 9655 6403 7616 3092 5510 2442 3896 2253 3499 4484 7706 556 7195 9370 2183 9354 105 2055 3455 1159 2412 4909 1169 3029 8374 8428 9192 1831 4216 1009 5314 8344 209 2487 693 9296 4881 5860 5400 1756 1991 2499 4287 6576 441 7964 3919 8515 303 601 6487 9164 2730 4483 2090 1062 3558 5639 9557 5178 3404 2323 2758 2203 7299 7817 411 6168 2776 9998 756 4559 7888 3127 6985 6610 4013 9863 3780 4855 5033 7906 1856 2098 7635 9479 5699 3380 7636 1853 4097 6053 8039 3408 9598 6222 8101 9945 942 2233 2790 1915 735 1117 6318 6782 971 5098 1924 3713 5468 646 392 602 4144 3319 1150 4064 4467 8362 9110 1855 6228 2916 4328 6440 2618 2396 45 6975 4281 3627 9982 5868 2733 5233 367 991 4202 3996 2098 628 5492 1173 1599 9937 7270 7097 7203 2388 8504 6949 5353 2794 7590 1975 7230 7675 5730 9561 757 8835 5581 8783 2098 4284 5968 2572 2415 76 6495 3736 4822 1455 6104 2726 5646 4155 3544 1533 1534 3740 7054 2550 98 4582 7386 924 379 8715 8981 5109 6585 3285 2712 7549 890 7766 9807 243 1818 8066 2521 3858 257 529 7916 3237 8966 6947 3933 839 155 3445 5999 6868 8199 2960 6636 621 367 6363 1491 10 8591 8431 6587 5778 5647 4796 5335 3080 5580 155 7663 8056 3474 7721 1574 8116 1866 3177 1370 7021 7386 694 5818 4181 2390 5099 1310 9439 5409 5370 6255 1378 7907 1821 1877 6006 6479 9646 6479 5214 1371 6933 8031 203 459 5462 7254 513 6320 3774 6098 7446 1639 7631 4491 6920 6732 8771 9772 6496 1872 8907 4114 2566 4746 7266 4024 9062 9875 6217 1775 6390 7838 3538 2320 2807 6825 7304 534 4649 2540 2929 880 9974 8302 8543 5144 59 9676 7369 4841 5660 6389 175 4299 1579 426 4851 3109 7501 1960 6572 9575 8332 2827 3074 8977 9475 3008 7399 883 9110 1672 3842 9083 5655 1722 4298 3945 2618 8428 6337 7398 5321 9842 3363 4975 9017 9206 6115 7432 7236 6253 1234 2326 1043 6672 4661 1346 2023 305 6443 3783 57 8824 6616 2994 5317 7213 6660 2765 5893 6979 392 4313 5016 6937 826 1378 4344 2813 1695 7646 1635 9673 8883 3280 3167 9560 1343 8213 4517 7170 4525 4597 1662 9204 569 8129 9878 6689 3017 5295 8714 3163 2805 4584 4521 4695 2350 9726 1166 3296 5764 6989 7597 7435 5049 6879 8468 9344 9870 3693 3000 8378 7770 3741 352 4926 4543 8579 2976 302 2578 9868 6038 1044 9651 8055 2346 7799 888 7628 3209 6524 2506 1329 2933 1528 9286 1087 8338 4337 9773 8416 2830 4746 983 9018 1868 6519 6925 8117 6509 2521 7962 9005 6206 2440 133 1079 3005 6103 8374 5216 1117 882 3457 4332 2995 6839 6626 3928 4922 3865 7353 1827 8799 8998 6484 1852 1883 7655 6715 5587 4314 2526 9200 6258 8955 6767 7237 2487 391 9041 4666 3309 5311 7166 9738 5828 7624 6438 516 703 1514 6147 8417 2839 4781 5388 5827 91 2640 1530 3231 8563 5018 1347 9870 765 5140 401 8621 7047 1398 8849 3913 4237 5726 7992 8965 4249 3608 5194 7517 2245 6006 4545 7149 912 284 5647 5776 3019 7811 8341 2392 9193 9530 8388 3305 9624 7551 7738 1664 6211 7825 4644 7341 3921 7235 6335 7040 7514 160 7414 5593 2735 1027 5804 7785 2606 8450 5948 9330 2643 9618 5578 4279 3344 9666 6317 7912 9974 6176 4339 692 924 7349 5230 3088 8981 9636 7884 2941 304 551 7862 5158 6186 5442 8326 7504 8755 5640 2645 7646 4121 1633 8844 3643 5974 2644 9360 3854 9612 385 4792 5309 1452 7020 5339 7132 6432 4438 6064 9204 4228 8405 1848 6084 7104 614 698 9765 8490 9747 5868 7223 2916 3620 155 4467 6065 4579 2392 4920 1180 2969 109 7128 202 4480 1995 2883 1609 369 3778 7144 4672 7948 6407 3092 2513 3708 8599 1288 3301 8325 6131 7797 5664 1144 3958 1327 7138 9462 4453 2233 1375 2290 4045 8951 6425 3532 1178 6446 6968 5743 7200 4629 5722 8108 3886 4861 9889 1622 4260 5432 9111 2151 5237 8736 5660 6134 3268 8149 5365 7960 8690 9612 6770 3169 7344 6468 3802 6938 6217 1564 3205 3559 1639 3951 6997 2399 6525 7761 1897 3015 9019 5883 1258 6653 9774 9022 2877 6043 8216 5010 8310 1720 6233 5384 5426 7034 4782 6830 5066 1075 3207 2288 6234 63 6085 4481 4102 4099 8706 9522 634 2434 1506 1330 2829 6015 2744 1331 5871 7308 8811 4766 1645 4438 7606 6840 6642 8845 7239 4931 3611 2688 4905 3132 6077 3767 7220 451 6242 9047 3281 5508 6977 9583 5069 8649 3498 5324 3248 9542 5663 3519 6270 4295 8989 3432 4969 1984 2641 3234 8527 2920 4942 9675 9318 362 1760 134 4616 4861 7003 3370 4205 7014 4398 3135 3638 5456 7148 8952 6640 3751 5667 707 4996 9615 3060 6607 9245 902 1245 6112 2725 7875 4832 9850 8451 9762 9219 6581 479 5426 3204 3989 2786 222 4389 9397 4445 8912 8000 9844 22 6371 6241 9133 7909 265 1494 3825 3264 550 8655 5953 9250 5619 3200 7256 2007 3755 8873 3438 6826 3097 5190 488 9673 4401 1263 5880 1350 1570 1719 2562 7891 8368 7931 8463 2279 4080 965 6524 5242 8511 6244 3747 4438 9152 269 6346 4532 3107 6567 509 7157 2884 5629 4695 6237 5572 4492 9145 9296 2944 4980 1310 7415 638 7414 807 587 2547 839 611 251 131 4113 2018 2065 4169 1160 4317 8821 4417 6107 2507 6138 4559 7339 4414 7839 3569 6783 8711 1822 9588 3009 2677 4600 2657 5542 3746 5155 2830 6654 8062 6766 2318 9009 394 7650 8491 305 3616 7178 6179 7847 6560 4581 1595 1288 1412 9935 8060 8668 4366 3154 9322 854 3334 5075 3834 8610 4749 5744 8791 5954 6149 3941 3056 9934 3114 4988 1052 1804 8318 3467 7186 5736 99 1292 8797 5899 2920 1687 7927 7432 5155 4921 5735 8357 3108 2063 9562 2505 2174 6732 7014 6321 4309 8830 1874 1952 3682 4505 1414 6854 7844 3308 7477 3705 6728 7621 9226 4071 3303 9683 2263 321 3722 7041 8635 1049 7861 4404 6086 7034 9937 409 9892 4507 3809 2687 5598 2425 1516 1043 4666 3081 3437 4867 6435 579 9103 9971 875 7258 8850 5347 1638 6148 7322 2072 7414 6994 8099 4375 1894 9462 600 1602 2891 7248 3794 5607 3147 5147 5796 2891 7841 7722 642 7554 8130 2898 6667 4150 9857 4735 6606 817 4222 742 394 4549 3476 8553 8837 9970 8052 4541 3286 9646 1217 3626 7985 9712 9374 3009 23 571 4470 433 1264 4289 2605 9279 9056 8350 2693 2400 7293 8353 6183 1736 8449 392 4519 1923 5500 6184 39 7279 6548 7196 5831 3037 7699 7021 700 4909 1085 9334 6415 6389 5804 660 4199 9660 7471 6069 9676 1802 5656 2142 6983 9913 3068 1909 5323 8258 7019 6432 9214 3020 3137 4952 1529 314 1432 1281 6554 6703 2420 6694 1681 1777 4065 1716 7382 5120 5883 689 4328 9576 6930 9111 9707 6659 2051 6636 7432 7953 2897 6393 696 1162 7697 1201 5693 7134 304 1437 8536 1357 9674 9155 1379 3962 9982 283 2740 1430 2169 1232 9569 3381 474 7160 4746 1453 8085 136 7726 9425 8371 6543 5452 4227 5960 765 7599 6910 4801 5001 3079 7548 6353 9285 8832 688 4705 7454 3293 5878 3047 7776 4396 2219 7376 1374 5257 4892 3174 4425 6271 3942 5351 7054 7962 684 8599 8109 6363 6302 2162 2373 4356 8157 8525 5975 5872 482 7610 7432 5768 4690 7960 6156 417 4217 6484 6613 813 8645 3854 1975 3161 6357 4204 2265 165 8430 2647 6427 354 7378 1555 507 8323 3996 2886 2590 9449 8214 8124 9135 6639 5404 7877 7498 4608 2728 7547 988 984 8022 8891 3926 6782 30 8862 8116 2464 9448 9231 4938 1088 5541 568 6812 9035 2655 937 536 7087 2879 2182 4265 7522 5697 6090 7984 2158 6605 418 9547 6328 5244 7876 7091 2114 3377 8532 8377 7428 6685 3809 3691 9933 7979 9824 1938 7284 9578 3419 983 4884 760 8434 449 2958 5851 8969 6628 9732 6687 1252 2180 5065 218 100 1921 4214 3650 3384 9438 9533 6263 9977 7176 3364 3804 7617 2870 4306 3300 2019 6805 8477 1152 7127 3457 4592 6032 9974 2547 49 2951 8493 9248 9314 4670 3568 4416 8344 2659 9963 1799 32 4953 7492 1066 2065 6256 5858 1053 7896 3563 6931 6081 8598 8484 8970 1774 4955 4919 5600 1092 1894 944 6471 5058 6761 9565 5948 7378 7642 596 4235 6135 3504 3712 6857 1691 4722 2542 8112 811 5525 3743 4236 3672 7442 8407 804 7698 799 3602 3142 4862 2416 6007 2451 6640 8595 8072 9678 6620 4611 32 4560 9074 2637 3903 8375 9550 3080 2154 1062 4194 846 921 7729 7643 8370 6019 9090 4460 135 3558 8560 6056 9773 9630 7881 2031 2494 9418 482 7857 8737 7356 1183 8497 4552 3564 5549 5804 2480 1796 4488 8872 2782 4559 1522 8370 823 7078 8616 3244 5583 3209 5265 8175 5026 7376 5582 9117 4832 3959 6016 9701 3554 3985 1156 5442 7366 3427 1289 9609 4180 6480 1904 7034 6183 2689 2862 3382 4653 5917 902 2489 7410 8010 397 2269 9262 1509 6834 5614 33 8319 5366 4546 7990 3918 6348 3226 6092 1116 6471 7512 4034 773 4657 112 3229 9734 3078 4318 8752 9325 8673 8013 6529 335 75 8432 8401 3378 7791 3818 1170 3131 3306 9731 5650 9000 4697 9251 1440 8514 2073 2162 6888 9613 5530 6419 3820 6370 7321 7185 2796 4813 3093 1570 4500 4231 3797 1889 7421 687 3795 8801 4243 5333 8605 2826 1734 6590 143 6849 1984 4759 9348 9170 7832 388 7191 9843 487 825 8999 2571 9832 484 6979 4606 4921 556 1119 6129 9212 509 7020 5278 1383 2587 117 766 2567 4430 8122 2729 8993 5615 203 5682 7629 9276 2264 4982 1918 5084 6720 2780 2911 4512 3812 1187 604 161 7815 7510 9207 868 447 418 698 652 6470 4836 6219 1779 8142 7097 1865 8186 1891 2918 6177 6473 9860 1299 9105 8731 5062 3337 8793 5981 4186 7650 6641 8734 9584 7471 1661 844 6930 651 5772 5405 2374 8732 7104 3628 8744 6120 7590 2063 1029 147 8522 871 3876 3046 4782 3710 8503 9839 1407 7049 488 7444 7329 2032 6159 7927 4760 5177 10 540 1330 4065 35 5489 6886 457 5231 9182 2243 8560 2820 5700 9720 7859 89 5195 6021 3916 7273 2262 4854 107 2968 3824 9029 9841 445 9817 2182 6276 4274 9065 6428 8864 1233 5010 5769 3619 9876 8666 856 2307 6031 5125 3591 9052 6101 9594 9304 4984 2629 9487 302 8822 5769 7226 9827 7818 6291 3989 9305 8548 9591 2857 3370 5349 3013 4851 3184 8132 5827 5158 2476 3296 3012 2063 5169 5345 803 9427 8633 6312 2995 3170 4120 5621 7331 9405 5181 7611 2676 4617 9134 6276 7198 6295 6212 4561 801 1041 1533 9471 6871 1578 1654 3161 1634 9226 3595 2260 3436 7013 5232 9921 1663 9074 7527 6822 8704 3670 9146 3894 2731 7671 703 624 4740 6198 1026 7656 1612 2861 7153 1641 4136 1140 4363 1884 1381 1862 2114 2504 930 6471 3811 7816 1727 9239 8861 7900 3305 9663 7524 840 9275 2014 5948 8185 6076 1563 755 6272 1031 4397 7727 4416 1009 5044 6804 5246 5199 1395 4961 9067 1394 9743 7941 8327 6505 2065 2738 8288 6795 9495 4634 551 1230 3487 4034 7558 2753 1159 8020 1477 6019 9782 9707 5803 1849 840 6858 86 9815 1623 6173 3980 3050 4393 8090 2784 5118 7049 5157 5683 4199 7109 4340 5140 3546 9678 8786 3495 8284 712 165 4584 3351 7262 6681 1180 7162 6811 5139 5849 3263 4386 4815 8240 2113 6758 6858 2160 8849 4937 5058 5579 6683 5750 1083 9047 6304 9643 7300 383 1953 4405 611 8008 4365 6102 2692 8987 1881 3359 1927 4119 5740 4651 5684 9041 4414 5336 3579 3358 2589 6124 6102 7114 3375 2908 3085 5475 9971 5137 8026 9390 4065 8018 8751 7223 641 3855 3028 3678 724 8801 8688 2623 1685 7751 9358 6513 6253 3658 7138 3578 2036 6743 8901 6389 5671 1225 2513 7634 4145 8027 254 7200 376 647 7003 1936 7295 8687 9290 5430 4342 421 5609 6173 1251 4502 184 8130 7638 2321 8848 4144 3614 1607 4519 6935 9774 8401 3375 7209 8265 2506 7409 5108 6364 8154 5626 7889 7237 9536 3768 1109 4395 372 6804 4857 6749 5022 3623 2084 8923 5154 6182 9834 5425 4159 1553 331 7462 9483 7997 5893 2806 384 6550 4199 5123 2249 611 4838 7927 4746 5195 4843 4765 2924 6529 5286 9982 6734 6766 7911 3239 3572 9298 595 4882 911 1631 3796 4757 641 7667 9924 5520 8200 5945 2592 3254 4781 5330 6013 9689 1162 7101 8912 1465 7354 2557 9364 6394 5405 4389 9696 5146 790 1005 2626 451 4209 9710 7914 5880 5716 927 4624 2553 6222 2754 2348 569 5265 1617 7500 6336 8720 3938 4902 1008 7896 700 4962 8395 8749 9782 4232 9869 6074 8496 3891 4776 1478 6519 9438 4249 886 4781 1125 1397 5621 517 1241 5222 648 8761 5099 7464 5561 6307 193 1656 7278 2617 3129 2144 8836 5387 9339 2896 2598 5673 6676 7426 4693 9795 4154 5037 3881 7943 8665 9636 7490 8144 319 8957 6855 1276 3382 8927 9924 2792 4511 2398 9990 4826 3277 2449 4920 7008 8389 9945 9684 6627 8912 1140 2747 4652 2530 1897 5714 5941 3161 4194 5518 1454 6551 3232 3652 913 4923 8701 2600 3374 8362 3711 7069 9337 5887 6552 1317 2684 1761 9527 4515 9821 3567 8975 1602 1556 4342 4450 5447 3584 4585 2654 7564 6625 9450 9424 216 9941 2561 5291 2942 7967 837 1465 4315 6689 704 8932 6437 9441 3016 3018 9818 8968 9109 1886 2693 2619 5496 6399 7950 1677 4255 5782 5916 3184 531 9475 7774 915 5858 2714 6272 4428 8773 9822 1950 2947 7561 8080 6812 3844 3440 9093 7165 8839 8986 603 7107 3365 4732 9378 7672 5660 4293 9533 8439 865 640 3676 2783 2939 3493 2852 2181 8979 7190 6228 4845 2432 981 1886 6734 4168 7118 59 5370 712 1140 1057 8127 6783 1709 9290 8942 4264 1897 935 1623 2832 7873 6631 3840 1411 232 7906 736 1224 3268 8653 6400 4261 2669 5146 8275 8867 6357 9824 5921 3461 9298 4009 8470 5288 2020 8256 9049 8516 6662 1843 8349 7828 1634 7407 3120 3825 3677 6706 3503 4756 8244 7345 9928 8652 2621 4572 5290 2164 4845 3172 4748 3381 3198 8311 2800 1630 7223 2963 8557 4984 6661 7702 497 385 8228 898 6712 3525 3270 4254 1234 9884 3652 8984 9715 3360 879 6712 9052 8091 601 6402 2425 7781 5903 9239 3980 5897 4484 9580 9121 3589 170 7336 8714 8519 7545 6555 9810 5220 8990 8445 8686 8503 8578 6450 7482 5839 1546 3666 8537 8655 4694 7570 8122 6134 3246 120 2491 7808 8428 1172 6950 509 733 4915 1784 9019 7738 6317 1389 980 5265 1647 3554 8735 4712 5803 8118 6005 9943 7716 1671 1679 3607 8623 6477 8265 8626 1318 2333 1971 7296 3784 5706 6373 8009 9237 146 4365 1413 8299 8736 4015 6234 5444 9253 1533 8701 7544 8563 8934 1075 9161 4365 5929 4179 5461 7741 8026 6299 3299 6061 7003 1771 6977 2362 1305 5050 8944 1160 3658 8924 3386 147 4999 4978 138 4111 5224 7507 9810 8640 8641 3327 3750 9692 186 7154 5755 3624 3378 5139 6275 8324 990 1763 8652 2751 2759 275 1701 268 47 3707 1987 2459 6981 251 7469 1449 5089 9738 7828 6707 2722 4150 5584 8721 2134 5164 7234 4331 3171 4246 9693 1659 8299 6144 5805 4713 2049 7725 6811 8435 1703 9751 7903 7703 8619 5432 5755 2376 1751 7769 8463 5880 2741 1860 8197 9475 1680 6790 2832 374 6128 8376 5844 7783 7859 5926 8372 2398 318 6337 5148 4798 7090 7541 5826 903 2267 7233 4949 2291 5855 6214 4808 9117 1741 3397 3766 4753 2405 8372 3886 7285 9982 91 9245 6734 6701 4033 5250 1276 855 3894 9117 1311 6360 7145 2547 6476 18 2540 908 2862 7745 1113 5319 1676 8185 4231 397 1699 7821 3090 1482 1793 7320 9955 910 7985 1651 4917 9817 4895 7856 1273 5348 541 9583 2988 4699 8030 8305 6075 7008 3189 501 8709 1693 9227 510 8011 440 4616 315 1605 7201 2032 7495 277 1766 6055 5237 3829 7665 4545 4756 1211 1705 8692 2171 1549 8547 784 3990 3290 4649 4327 6063 142 1591 1129 3532 9687 2382 8738 6468 8493 5042 5623 6809 5179 1211 8596 2953 1663 7443 788 3694 7497 532 6987 8320 340 208 1188 4832 2335 6862 1213 9470 9580 5357 5429 3593 1333 3509 3249 2896 4839 7708 93 88 1982 2449 2973 3283 5733 1653 1272 6462 9084 3389 2035 101 5023 272 1096 4045 6762 2233 4984 587 1190 5585 8386 9322 8131 1256 9382 1836 9445 7735 7855 5567 8008 1857 7328 7219 3765 2552 8259 7791 5488 79 803 4257 7243 1736 8911 1362 8014 4480 1596 9157 6059 329 1537 4516 3166 4736 7840 3069 5916 7294 5784 6265 7831 3134 6230 370 1522 2923 6578 5663 612 3737 829 6010 1174 3575 1126 5740 1881 690 1511 5671 8673 4898 4691 4240 8032 8610 3435 2761 4559 8129 8312 4427 6932 4722 252 8856 2430 1774 9494 5874 8659 1847 3603 7092 8326 7859 3846 4438 8622 2708 9613 5212 6441 6674 781 9569 8217 2656 3470 8433 5057 2564 4480 8185 6399 735 845 1778 4516 8934 6142 511 4172 6266 7627 1036 6226 6532 5161 1313 4865 4401 5805 6221 8940 4820 7630 2321 7247 1874 9333 5934 5452 9568 189 3008 1733 2306 2990 6452 7962 3541 8691 3238 8429 1015 5509 1563 7452 4910 213 9751 8030 1680 6532 2201 5491 3501 8794 3139 2023 7800 6336 4690 1119 4659 303 8621 9217 8030 1224 3902 8843 2945 4742 7670 1154 3006 7327 3115 48 5964 4156 1761 4262 7171 5624 2122 8592 4999 9537 1902 5588 4160 8874 5147 9320 5739 1173 5895 9981 4235 1670 5904 1368 4434 8080 230 132 4278 9767 6186 6183 5201 9883 244 1099 9925 6973 8900 2466 105 1481 7108 4854 9115 9647 6325 2899 9762 3796 6006 8617 6249 8364 342 1431 3426 5324 8909 6524 6780 1890 3520 9579 3759 7407 1717 1680 8612 2768 4233 7219 2679 8449 877 5827 3821 7772 9995 4676 9741 1075 2357 7077 7835 229 9697 1592 13 5867 8086 6004 4325 7137 3110 7637 5467 104 4841 2903 1647 6782 9612 4227 6289 3337 9710 891 5755 5595 647 4815 7050 1807 8498 9630 8947 5161 675 589 5283 7824 1759 8916 4002 3292 2695 5838 1101 2400 6399 1737 6162 3115 8731 7349 2986 2621 2600 3198 7617 8317 6490 7581 1490 5447 2339 9340 8793 1273 9805 9975 4163 4839 3727 6155 9225 4261 6151 5739 7443 3897 9141 9240 432 5250 9000 1907 5336 2555 3921 4469 6008 5141 2221 3801 2458 7287 7501 7663 4761 4920 679 2595 7862 7884 4538 3964 3286 6850 1419 7221 7752 1488 8737 8131 21 7866 9208 6265 4481 6329 6002 9826 8241 7754 1001 1895 2155 516 8606 8411 2894 2848 5678 5165 6511 7066 4098 9208 8242 9818 5151 1735 9856 1680 3642 5885 4382 737 9819 5122 2395 4856 9895 3712 686 6676 1151 5016 8145 1761 7337 4770 6616 6228 9769 6464 3749 6968 4633 1547 563 8696 5512 4169 4628 606 307 6578 2720 3833 8679 2104 3396 9983 9369 457 2158 9509 3124 9072 5987 8482 6987 8035 8944 1123 2786 4352 8777 2369 8904 8545 3420 5226 6582 242 3027 3610 2725 3830 8373 9632 3615 7308 9764 6600 9824 9345 511 7940 2088 7803 8056 8726 456 2799 7237 8205 5371 2959 9803 9336 1106 7921 8993 2762 4804 6463 6807 5683 1148 6385 4421 7856 636 4082 5834 7974 2891 3575 8619 6596 2367 3927 9179 4134 5905 4475 3816 1027 9906 1328 6133 4815 6605 8755 1069 2679 2589 9829 3769 3312 9821 4679 9670 1766 6681 7396 5525 8240 8006 3141 125 5648 3326 72 5256 2815 1997 155 1488 1472 2397 7953 7947 2314 7966 9873 6897 4641 3813 8602 985 1778 2532 37 8333 5378 3530 1485 1180 4479 7068 9834 9566 2635 966 1046 1236 860 7258 619 5760 6715 9571 280 7115 8897 4271 7384 5094 3386 7072 8538 5757 8216 9202 7155 92 2699 2500 7376 2802 9850 2843 2098 679 3364 3408 3028 5770 1317 9154 1951 4264 9609 2227 6530 6255 4760 6056 320 9348 8938 6686 2869 5657 7882 5954 709 3636 8670 3556 9593 5635 7175 2218 5936 1956 2068 2776 387 8938 9609 6466 8847 500 2734 7701 4736 601 9755 3454 2209 6837 1183 2533 6240 259 5220 7343 2383 5620 5717 2389 6750 5444 3699 9043 7628 893 3051 7702 9062 177 1511 591 4258 7072 3653 3209 9296 3784 8527 3067 4002 2181 5047 5257 89 5704 5534 2129 7627 7690 6267 7161 2426 1027 1848 4350 3736 8133 4395 3360 3996 2240 7328 3732 9025 6705 5523 3784 9891 5415 8601 9425 114 2255 7942 9662 9457 7463 5965 6141 6471 6434 6847 8637 132 6882 536 716 2202 5154 630 1294 8664 3711 634 1134 1681 8057 3457 7158 249 7361 4216 1306 5888 7803 2974 5111 8250 349 6344 9694 5531 7741 5198 2076 6097 5192 2025 9881 8886 1980 8933 8812 212 3363 8310 5638 5553 7915 4164 6007 2344 8025 7816 2519 9600 4914 6311 7052 9492 3938 8533 4223 7790 5588 6436 7979 8614 4912 3205 6123 3765 228 6895 1236 8527 9189 9461 5822 8406 574 4184 9086 6685 1505 3829 3447 8847 5193 3567 7382 1143 895 1855 3924 1598 6108 5117 4871 8180 3566 8157 8123 2836 1447 2227 9264 3881 2393 1523 3727 9970 8223 8101 604 2059 6505 1433 5009 2106 8683 6541 7287 3820 839 9259 2117 4466 4202 3369 7971 6692 9977 1719 3509 6024 6150 3088 6719 5763 564 5043 7072 2090 6140 9462 4852 7138 4747 8360 6172 5219 3749 7028 2066 9271 6464 8475 3504 3844 7925 4710 3938 1073 4037 2974 8988 9216 5104 2596 8922 7679 9227 3513 1861 7656 8722 1300 3515 1227 5014 3994 3200 6609 6032 4576 7985 6641 83 9245 2504 7361 3251 9298 311 8504 4446 207 1342 8312 6563 1224 7965 6432 3471 5718 1258 2826 8771 3799 5607 960 972 2253 1668 2672 3941 2317 2801 4068 2586 5328 9285 7610 9957 1208 6228 5036 2835 891 3009 8088 2926 785 2362 8459 8120 1005 9524 6551 5064 4847 1398 3602 9656 4784 6136 4738 9069 6541 3533 513 4748 135 6101 1840 6866 2952 3709 54 8651 6047 4677 8578 2804 7539 37 2241 7975 6789 9050 733 6797 4750 9145 5814 263 4913 3013 7001 5748 2339 2230 5044 1399 9217 6460 3012 5318 1 2191 1325 1029 2793 5633 1722 588 3156 5593 1443 6712 7561 877 6126 7603 9467 4754 8105 6879 5727 1225 2052 8024 3419 319 1938 3878 4807 5702 9628 1319 8454 375 8904 3947 5202 877 4845 3294 5081 6702 3459 190 8088 2850 2231 5725 795 2213 5236 1509 6299 4531 9894 4677 6648 3877 4849 6791 847 9213 2781 7263 8064 2497 4517 1316 9044 2947 5959 1670 6811 971 2420 3088 3734 3093 9958 8120 7776 2578 9311 2879 2616 1300 6484 9882 3324 9269 5148 6472 769 4364 8913 2862 2114 2915 7817 4111 4006 6418 3415 1460 6930 3272 9561 2586 5066 4610 5658 3851 2852 3992 9033 6529 4011 8412 564 5797 7608 4696 9981 9129 9723 6182 3607 7186 4596 9947 8440 2664 1024 4217 5385 8362 1863 8335 6127 8745 2938 2266 314 2270 1705 7133 3800 4151 9263 1415 7066 1808 3299 6679 8296 7762 6475 9953 7560 6460 8418 9228 2903 7721 1537 5583 9748 4023 9464 1987 8897 3820 5463 6303 3255 9818 8147 9057 3158 9992 8514 1121 7433 1487 3317 8853 9118 7248 9929 8323 7448 3752 5134 3771 7707 5739 5948 3077 8938 6735 423 4136 4911 3802 8856 1682 4782 747 320 5995 2796 9856 3897 2068 2971 8475 1812 9929 4926 5759 3663 3285 4085 2369 5714 5834 8425 3431 6698 1365 5736 8761 2350 9587 9078 9877 9447 9596 5185 2280 8353 1175 422 6033 1377 6433 4612 6679 2526 3370 4188 5181 2015 2245 3853 1914 6184 380 9882 5616 8287 3309 3763 9139 4061 3497 8880 3260 5207 4896 6259 8417 101 8794 5142 9968 5015 7014 6364 8900 1341 3357 5018 2847 3592 1669 4108 4165 3976 3833 9253 6450 4584 7182 1337 4331 3488 7913 2910 7795 3848 3600 5872 3392 3691 1309 8952 3184 9010 7027 1065 566 115 9194 5485 5428 5402 8683 3616 8864 7932 618 8829 2793 6827 2042 7198 7503 1121 3719 1451 2546 836 7222 8372 2021 6959 5106 2260 3508 6064 7300 5123 32 4454 450 8700 4275 5167 5058 934 964 5444 7470 4459 4943 5584 160 6631 1581 4156 6856 2225 8421 1795 284 6058 4077 2039 494 7121 2468 6713 8364 4494 5591 1968 6454 4579 3264 5956 5180 8440 3115 7887 7070 3107 1323 5609 55 4732 5061 2387 2909 9272 808 6535 3247 2899 2045 7434 9170 8576 8120 8108 7879 7273 4106 3655 3694 7724 4521 7774 8044 4037 9164 2813 6776 3285 6331 177 6458 4383 5584 3711 9407 8129 7867 6556 416 4603 752 8745 6883 4531 5049 2598 1706 6275 1721 8389 1761 8770 6833 6682 7835 8104 6259 2921 6495 375 5038 7104 8422 7887 4676 5917 6772 5575 5006 7292 749 5282 8507 6539 4396 4714 1286 5079 5092 5672 8818 4210 857 2155 9253 1663 4876 717 2513 6027 904 9705 7129 3298 5304 7794 2404 7304 8433 7336 6352 9372 8841 1585 6981 520 2234 9542 5543 8496 1563 9280 4779 2607 9834 3292 8423 1342 5325 2495 1703 1707 1396 5933 9438 5612 5291 4099 7338 5693 3863 6050 2721 4192 127 5188 9940 4221 479 3898 4030 3841 680 4490 5143 3652 4752 3386 8691 8890 5262 9643 9955 9530 2596 5158 9454 3101 7073 4994 8298 7373 4940 5114 9949 2033 9700 3048 3156 3540 3907 479 4602 3997 4434 4239 1422 8158 7352 865 3171 1956 3182 8252 2807 9591 2300 7746 7244 4214 7936 9044 6571 9389 8824 4279 1447 9446 7158 6303 7559 9349 9307 9691 6625 3387 724 7588 9150 7074 9395 9450 8863 7499 3300 2438 6259 7412 3444 4932 3598 5940 6054 9688 3353 3197 4196 2404 5509 386 5945 1840 9935 8839 3270 4487 2122 2933 2997 360 1263 5201 2396 7413 1255 3398 7642 2093 186 5260 3994 68 9472 5327 5115 2793 9563 7143 5751 7471 8969 6951 9859 1215 2395 3517 1849 1926 1148 7074 5896 6431 3567 7731 8943 2142 8247 236 683 7297 3611 4573 8022 1887 2155 3145 573 773 6272 7590 5366 8367 6972 7980 5808 2366 519 9953 5541 7383 3411 7825 8054 3025 505 5413 7529 3591 2448 4321 6077 7842 1478 4265 571 5062 8621 7803 9560 8026 134 8988 6791 419 3577 7752 6877 7848 5310 1007 5902 1626 5483 9795 9610 5271 4758 3571 1624 240 3192 4782 3786 2164 7674 2415 9073 6972 7205 9342 5870 6814 7341 438 5394 3999 1529 5124 9494 5949 1849 1331 9440 6545 6016 3529 5294 6402 8990 5947 5458 4786 3460 6176 5701 6183 9611 9271 7062 5349 2579 7012 8016 2229 7721 6657 5215 1281 9802 2828 1388 2707 9076 1809 7665 570 3914 595 1950 668 4533 1312 2076 7686 7960 1110 1079 1255 4156 3292 2109 2737 8559 3919 6561 7530 924 8991 1100 7971 6954 331 1142 1573 4795 7247 7896 4759 2914 8824 2061 6687 2628 5528 3923 4517 6072 5555 9443 1110 6887 9667 2332 4194 8556 5477 1792 4100 3165 6556 624 4186 1323 7553 9771 3017 1105 2014 2589 1576 1091 3947 4162 4789 8755 3028 8605 6614 7066 1749 9422 8110 76 3008 9162 7329 6696 8840 8627 5094 3485 6965 2279 5090 1477 6394 5367 1816 5217 5586 8783 103 407 3530 8659 5969 4218 2803 8777 4470 2388 7796 1960 9690 5390 9200 7567 3933 5729 1997 5818 2078 488 3688 7618 7713 5468 2157 1361 2474 7376 4802 6476 7776 4761 6609 3974 8370 9410 5835 9177 364 5684 9234 8513 7718 6147 6330 1409 9947 2155 9481 3487 8040 7056 5546 3089 1153 3408 1201 2363 2888 4884 2165 1462 6240 9950 3821 1125 6350 7488 8214 6947 1092 4881 6203 4746 5477 1581 1409 7330 3615 2097 477 3373 5259 4669 2117 1434 3680 1036 5631 648 9538 5280 3252 1748 3184 7604 3278 214 8419 634 4220 2188 9198 4968 5950 2750 53 8733 5730 6512 5102 7291 6846 9960 5575 8030 5070 1934 6083 4796 990 2677 2768 7036 7351 8844 5843 3832 4987 8759 8862 6469 1757 5188 7270 4710 2731 7995 8524 2212 38 1294 5774 4509 4942 7718 3237 2465 9870 9675 244 9272 7995 9996 8620 1846 8754 7115 2843 3040 9827 927 1262 410 2784 4418 9524 8456 8902 6388 4710 7550 5895 5792 675 1734 9365 4802 2827 2929 6780 6008 8241 2692 9164 621 1185 3188 8340 8815 8546 5550 855 9857 676 9765 4341 3540 9554 4193 1179 1141 9934 935 4097 6899 8045 1144 2189 696 \n8195\n4689 4192 6385 1160 2452 6818 8568 1965 4382 7990 1036 5485 2697 5347 1096 1550 2798 9234 4675 9511 7524 6623 844 4884 633 7869 2629 1974 5590 6492 6769 3784 1214 8313 1265 1451 4991 521 1233 4569 3189 3568 3519 1932 120 2175 3359 2293 2625 6009 6675 5546 8021 9048 2200 811 2696 4830 3687 7568 6556 8737 2441 449 5582 8157 2361 5425 2017 4936 2385 3313 1115 4635 1223 4067 4396 6735 416 5299 2552 7657 1244 8857 2704 5438 3970 5693 549 5757 8184 6673 6414 9925 4261 1778 2431 5409 4398 3519 2143 5480 6151 5990 3179 403 9086 9394 1531 9960 9641 4550 7007 6432 5588 4305 477 8001 1032 6246 6328 7675 2174 8038 8627 4163 3379 4450 8092 5363 7718 1839 1785 3800 9004 8763 5273 3302 42 6642 6706 2964 9636 7931 8412 2161 347 7051 1930 8461 8074 1228 820 8440 3077 4618 5728 2947 5172 6470 9717 250 6639 5544 6072 5671 7164 8131 8941 7777 9216 1813 9028 201 7478 4303 6173 5229 2093 2607 770 4665 5222 4288 5619 4007 3092 2169 8648 5316 4285 1770 8337 4822 9885 7103 9491 4028 5857 8471 7252 8192 664 3080 9290 3790 4260 772 4883 2800 8351 8951 2555 9610 4087 2692 2092 1409 4130 6276 4877 707 1877 1155 5965 2202 4800 5216 617 5678 1494 3928 6053 2860 4974 1088 9560 1277 274 5837 25 8026 6635 4644 4314 8 1154 5659 3340 2952 8675 2724 1122 4112 4941 716 620 7708 8134 3619 6868 2977 771 3190 8774 8389 9144 8392 3895 289 1679 714 657 3216 3176 5162 6398 1983 8636 2607 3889 7845 1645 9578 4132 2708 3990 5323 3296 5773 325 4962 9770 8871 9557 7303 9264 9159 2645 7261 743 8163 4776 6253 614 3265 3900 3494 2521 4399 6687 8047 4643 7704 7287 7678 2834 926 77 391 5903 1327 717 9054 9921 2774 1503 5459 1376 8479 1644 6150 4748 4047 3896 8239 8979 414 7720 5891 6993 6898 5228 6431 460 9448 4863 4798 4095 7163 5583 576 6397 4871 7428 6983 9798 8734 5110 3554 4693 5970 6133 2863 7698 2070 6965 6570 6031 3672 5171 9450 6055 6264 111 1920 3493 6551 2817 6003 541 4295 9402 9877 582 5241 744 9000 4278 4589 2791 4388 2226 3389 364 870 2530 3851 4821 7718 6408 5797 6179 2837 7837 858 3777 8087 837 3818 1168 6021 7055 6072 1142 7522 6586 3991 1950 613 341 1329 132 1160 4587 3526 9876 5992 4951 849 1828 9756 2042 8212 7561 5551 6827 3561 2304 9757 6731 485 6704 923 7477 5353 2609 7881 5898 8458 8538 8043 4462 4301 9072 9909 9665 7997 6828 2177 1439 6930 3170 6490 4039 2273 7160 8429 3776 7940 5228 1326 4228 7711 5272 5177 9076 4770 745 912 1070 3621 8252 2385 1964 7634 9137 3114 33 3919 9060 3671 40 5891 5155 7943 3664 2015 8787 8632 2078 4736 6331 924 6370 78 649 9945 8975 3943 8370 8728 3201 4605 5921 5972 8313 2676 5698 2816 3905 8184 5482 1138 2768 9825 9192 8566 7257 4941 8977 8015 9119 6972 6878 1150 8175 8957 7861 469 7757 5566 907 7450 8720 2015 4294 1389 7528 9520 4131 3492 6731 5632 9931 526 4921 2619 4389 1025 5626 1079 7398 531 3583 4878 4345 5166 5350 2944 3668 367 2566 5734 7698 9326 3271 4154 6857 2274 2611 5381 8128 8732 8249 6795 2048 744 5984 5119 3872 1615 4106 3080 7474 9358 8469 5221 1122 724 4201 3550 7613 3497 4122 3163 6909 1041 5136 4041 2051 3017 8056 7791 6755 5219 7044 7711 8716 8696 1127 1745 7357 4831 8529 8687 9531 3950 997 4231 7142 1243 4500 6181 5364 763 6218 6284 9993 5828 6019 4688 4202 9336 603 2500 4780 4040 6964 4753 6878 7037 5426 5900 813 7737 8621 4330 3021 6803 8916 2140 4647 8556 781 5425 2377 5215 405 8057 9228 8296 6716 5657 6042 4568 8035 3725 3358 7331 3728 5212 4900 5849 8796 1486 6982 5770 1831 1543 7110 7375 3986 1380 2895 8006 1630 7844 9500 6183 2408 8587 690 3539 2400 533 2952 863 6139 7042 6948 74 2299 8797 7287 3705 6224 7099 2532 86 8981 5837 2789 5696 7640 7565 1865 87 4641 8278 3108 9222 4750 611 6963 8876 6134 7716 6844 8746 7630 3309 4365 4928 3187 1935 5222 6362 7657 5620 3964 5159 3039 2887 4744 3404 5098 1327 3395 6458 5049 3316 3111 1367 8147 8959 3525 8466 7568 9689 9835 2035 9442 897 5724 5189 9793 9238 2570 1067 109 1664 650 9043 4925 6875 6501 1851 4956 9439 4905 7399 7009 6323 8370 2830 3558 6525 951 1905 2083 4373 9617 7467 7337 5269 3450 7114 1400 1505 7386 4025 5123 4521 5655 5145 3887 9411 9385 6583 5245 6562 2020 5657 2382 6364 6413 8907 5564 3034 456 1025 8518 4283 5566 7981 195 5196 2120 476 8422 2378 2555 7268 3859 7599 9765 5870 65 5534 8087 8744 2290 86 3700 6006 4539 134 3836 3681 9303 6410 982 4758 1879 5433 487 7921 9757 7936 3511 589 526 8041 1786 2512 5261 5176 3023 1837 875 2914 4412 346 5463 1481 320 3843 5327 5123 5140 522 3696 6346 3276 3504 1224 9310 1489 1540 9591 3858 3256 5801 1394 4513 2154 7498 6811 8840 7209 8056 8292 9428 6476 6578 330 6701 8840 9623 3579 3918 5762 3336 727 2736 1290 9023 1603 6914 4370 5291 8882 7113 7443 6078 9111 2896 275 3452 8023 8541 6724 2655 8228 4605 6665 997 6010 5132 3377 1143 8534 989 1160 8644 6274 9868 7493 2103 9877 5273 9196 323 549 8145 9017 3009 7464 2002 1630 1630 4427 1544 9822 7793 7448 7362 3243 8269 7897 5332 2170 7693 1705 1370 9930 2725 3723 4367 6713 8549 5426 5086 9017 4190 25 1687 6276 6380 2532 3870 3881 5445 6327 2149 2116 1526 9779 190 9165 191 6095 2010 8663 5959 122 7441 4482 4980 5828 4714 6007 6682 9237 5610 9887 6266 1322 1400 334 9566 217 5298 306 7939 56 3893 6059 1275 9223 5197 5703 6348 7138 8276 7735 9669 1304 1526 4999 8567 3981 7916 2007 5860 8886 8044 8215 4861 6938 7835 6379 3156 64 3389 1867 9557 2490 7132 1392 7412 4726 1762 9281 7893 2010 796 6070 1473 6825 1224 8657 8007 8024 5253 4662 6850 579 672 2238 2673 628 7720 8196 5947 9943 2846 9181 2137 4023 9439 2541 828 1032 8535 2855 4612 9999 4934 6117 6456 2975 6782 3510 3617 6748 3325 1890 8341 1235 6230 7417 9622 5169 9291 3734 7695 6357 7715 4359 9206 3891 1131 3579 8380 3087 3024 8859 6136 6322 4755 2627 344 3153 9092 7606 3538 2635 3287 2822 159 4399 6336 8914 3409 395 34 2648 5033 8327 1938 5179 4999 5336 9911 7908 5839 404 421 6874 7502 4271 9821 6402 3663 5633 3275 6461 430 2868 977 4395 8828 4707 2303 8459 1641 1310 8424 7456 2941 8772 956 1569 1978 7758 7000 4515 3852 3145 2913 7693 4744 9815 753 4513 1283 4250 6421 5536 7828 1373 9246 8182 9726 1012 2064 4069 5112 9965 6303 4486 6800 3507 3815 1308 117 1520 6456 6062 4104 6211 29 5012 5512 3295 3946 4698 7270 7525 1908 8561 3257 993 7212 3107 3491 9710 9902 1418 5296 6258 5338 3750 5089 328 5277 1608 4007 3234 5477 1427 6049 2616 4057 8323 2289 7621 4627 1600 294 585 3110 8713 2728 8465 3485 6561 8328 6030 1119 9700 3661 123 2409 7502 9295 4677 1636 8914 6486 1764 5941 9107 8255 54 908 174 3201 715 3243 3447 1815 4706 6285 1848 9948 1200 407 4278 9192 6664 4523 7763 8548 8706 417 5264 6924 3956 127 4188 256 2874 4967 1842 7831 3948 4106 9736 3145 1323 8960 4356 7178 9779 4448 4178 5874 7835 2364 1152 3688 5034 3318 3101 3194 7929 1690 2680 4651 9710 6287 8162 5050 8759 8387 6204 1726 8347 9259 7357 5019 3741 4920 9444 5455 7892 8309 8690 5738 9130 4503 7750 8590 7730 5848 6127 6304 3482 7597 6076 5792 5746 8177 6118 8805 7879 5961 9882 4179 2941 8018 198 960 6982 1068 4871 1298 280 9385 1651 5801 885 3066 5862 6146 8916 2894 8332 7404 7077 3052 6189 7005 1346 3696 1856 8264 2621 3223 9332 3725 1458 7827 8505 9906 2625 4005 6758 2951 4132 9042 7653 1273 4818 9390 6279 5088 3383 4772 8610 7428 9092 5816 2195 8058 3740 2071 8725 9811 4324 781 9767 109 7444 4148 8518 2354 717 3232 2786 3112 6811 1062 8590 6173 6104 1924 9758 1419 1370 5333 2531 8888 6649 9426 7507 8575 8363 6214 2880 5856 8026 8595 2214 4074 9927 851 6723 9659 2218 1058 7244 106 9803 3984 7325 9203 6626 4710 1235 4600 3720 5590 2087 1404 2150 9196 8919 7061 8643 4271 8169 4027 8065 5734 9698 4083 1421 1415 4587 7887 6224 137 1763 1470 4239 2288 628 7824 7786 961 4186 6434 2451 7802 7379 4325 1362 9483 2441 6910 7102 2756 1402 5419 6985 6469 7907 1115 1079 8623 5996 7213 2089 4642 210 8598 450 4033 6537 76 1086 8255 2444 9099 2625 9256 4919 7807 2012 7097 7440 8622 7544 4816 7154 1202 1847 3673 6061 8681 5922 9483 3468 4154 7528 623 7661 1689 4705 604 4749 1874 6722 9385 6241 678 1213 5270 945 6689 8340 383 5794 6884 295 9528 8243 1908 4338 9229 6761 1959 5704 2843 9133 5736 7330 2046 8977 8445 9627 8909 8339 7119 980 1472 518 3373 6767 8250 468 5745 8684 94 6971 5163 2916 5167 812 8084 3877 1681 7813 9431 44 4956 7966 2712 4627 2135 9443 4183 3066 6777 9972 9004 4839 1388 4871 1798 7769 4791 3120 5372 4119 2852 2658 7005 185 9242 6401 9449 6374 8437 574 24 470 8755 1546 512 2331 1781 1297 3242 7552 809 1620 5175 7159 7840 2693 6605 6448 8327 2685 6857 9094 9146 5688 1537 4026 4993 4815 9127 1929 2994 7258 3796 4690 6143 6570 9416 831 9149 8638 6591 1683 7650 4985 6274 2201 6916 8680 3835 8934 9272 7020 937 5848 3018 7258 360 977 1673 6800 3357 9268 6055 7864 9359 5886 564 2003 8454 5468 7881 2159 2365 9023 2316 201 1572 1016 1598 9623 2684 5704 1821 4436 8183 9135 7173 1683 6416 1065 4864 8815 1883 4936 3597 8181 3104 1138 6969 7936 1912 9974 6490 7591 5097 9015 5767 6595 2234 556 9738 9519 5850 6715 6020 2803 5191 7151 4455 3905 2866 1069 5338 7945 1478 7095 9333 5469 9006 2455 5398 5039 8875 1766 4769 7904 5739 9090 9219 5579 3118 3799 3275 4535 8618 1353 6551 7913 6492 5675 1861 3324 1591 6568 1101 6478 98 3601 497 6821 809 2093 7807 6500 5259 2953 9291 5066 1780 7145 8270 8231 9095 730 3073 4877 5507 5419 285 9298 6045 7261 1661 3505 3348 3877 2588 8031 3093 1642 3646 3727 2987 4921 3767 4429 3735 5531 1914 5517 4270 16 9940 3541 3578 260 6663 2030 6344 3290 7599 4460 4253 8456 7547 9218 8871 8575 4049 6415 4041 7201 857 1817 1545 6385 1077 2778 8624 8602 7032 960 4878 2825 7930 85 5211 6522 932 9773 9257 6507 3338 6717 3362 8820 7249 7343 6182 4467 4591 4174 2691 7991 3428 341 3884 3917 9423 1869 8010 5099 7157 7153 9342 7781 272 2894 2140 3691 2879 7618 1914 7918 8512 5351 9935 1056 8457 5276 6811 6909 7972 8170 7977 2071 1166 625 1137 7817 3484 5030 5022 6388 792 8279 4385 6519 3436 8770 4441 1838 1306 3493 6972 1768 4902 4957 4955 4009 9190 2806 7737 6489 4474 4481 8141 2247 5281 9391 9920 1987 410 5674 571 7865 903 1403 2304 8476 3857 6875 6611 5747 3499 7698 5342 6547 9799 3484 2014 9159 5132 8460 2411 1951 5119 7560 4692 6212 8898 1795 6181 1067 1961 4924 3 4201 7669 658 5425 8095 6798 4195 2472 9853 1949 1860 8700 1213 8758 5408 4771 5159 4619 4980 269 6298 5121 1337 8103 966 6874 9069 455 859 6896 9785 789 6439 2361 8343 2406 8896 3259 9936 7036 9861 9867 1210 5354 4900 3995 3285 4698 4130 9467 7761 931 4261 5360 8174 2842 8618 1784 5144 4002 1380 3707 4062 9541 235 8345 3298 7954 2457 8370 136 5729 5980 3893 7608 3355 2367 4660 2787 4517 7745 510 4616 324 2352 5723 4571 9198 1848 3847 862 1516 8496 9903 4424 9475 9943 6738 7740 2145 8114 6493 8581 834 4934 5052 7105 1664 26 8781 7600 4178 9950 6823 3125 3320 7275 366 8801 1213 1162 6912 8732 8507 6627 8011 5972 4224 3750 9560 1180 8218 5712 5001 3615 8862 3563 9175 5260 749 7528 3438 5676 8613 6719 4392 847 7504 2930 2327 1177 687 4469 2449 5849 2115 2322 7941 768 988 8317 5912 9717 5027 7830 659 8561 2991 4268 751 9863 6948 353 9733 3806 2392 2692 7336 898 9543 6217 4543 1036 1601 7287 7364 4558 2961 9765 6377 203 4303 5418 7472 6997 1486 2934 9640 3444 4933 9444 805 7815 1914 7686 1779 5386 6506 5005 8701 7077 4957 7249 7583 6179 8819 6838 9460 7484 6505 3839 3605 473 2220 3238 3952 1837 8533 5716 7447 1886 7007 4329 1245 7906 3800 8221 905 5802 61 3416 5257 2339 6 5211 8464 2564 3100 8816 3757 3724 1724 3039 9993 2133 9735 8578 1437 8777 1802 9378 7299 9841 1334 1360 5409 2985 824 6838 9062 8034 1813 2361 2584 9843 4736 7099 649 2976 9193 5376 13 8210 6739 6981 261 1233 7079 9170 9448 6625 3056 7519 1217 7127 8152 1393 4994 167 1048 2870 217 5201 1825 1700 7807 9972 9113 2676 1533 5962 1119 2740 7899 4624 8170 7003 6913 2485 7579 7205 2643 8681 2868 68 9648 9082 752 7529 9720 4280 1012 9244 9292 7111 1874 9102 1852 4603 2395 6936 2987 9271 8137 43 2127 954 4241 498 6846 315 7256 3914 4183 3233 6892 9085 3727 5518 4346 8598 8088 5393 2500 7597 5221 150 4824 7058 7185 443 1154 8150 684 2454 6817 2575 7613 7271 393 2854 6430 9529 9670 4828 8038 1914 3751 1199 3003 132 6453 2618 9525 902 1738 6903 5361 4751 3476 7585 7081 3719 240 739 7162 4917 7348 4386 5153 5576 7669 8510 71 6974 5681 9988 3211 2 3255 3959 4183 7116 3558 4558 7303 3454 5238 7966 2236 6913 1418 6683 3331 7458 6531 2684 2260 8795 1579 1012 6571 1474 5098 9312 9967 8327 8822 1825 8568 5174 436 865 5465 4744 159 5602 6645 5039 954 8684 8286 6763 2808 8703 5280 1632 1364 7423 3145 5206 6860 1989 2105 4009 769 5996 8426 3001 8130 4211 8317 3949 237 3207 1293 9869 8314 2531 4174 3053 9973 399 9012 3550 8412 8676 7366 8146 8275 9706 7264 8744 66 4904 70 2768 1080 6947 1532 4048 3519 1183 4459 6343 6552 2226 8286 5462 4481 1775 4343 1983 8753 1553 3259 5998 2507 6623 7040 1328 8444 4313 973 9669 844 3727 5748 1975 4534 526 7498 3474 31 131 7756 5983 6542 3100 7256 3483 7023 3102 5337 2478 5440 4393 8696 882 6802 3333 955 4062 5613 8000 8133 6670 7791 6154 2201 4304 6128 9622 1835 8062 1386 7802 7459 7586 7198 6985 7001 4905 6455 8619 6130 339 2518 9007 7646 7501 9192 6684 7372 9506 3730 3518 1986 1771 222 476 1009 5456 1134 5182 5469 3110 317 4910 6521 6246 5354 9083 3121 993 6233 6037 3204 9465 1874 9040 6757 9110 9111 1210 5699 9954 1841 1652 8062 6865 4138 6865 8035 5381 2964 1213 1586 6287 7004 2897 5858 5783 826 2606 2819 1018 7838 6153 7547 755 1408 5247 3341 3659 2407 9627 3733 5917 2980 5489 2556 4363 4280 4687 9920 5199 4979 2754 5529 8171 3464 9587 655 5135 9313 8210 4427 3929 9612 226 4972 6226 848 894 2765 5054 4884 4772 3361 2684 4715 2511 401 1739 8072 8389 6486 6109 4385 2415 7195 849 7579 2340 5264 5618 3191 2469 8021 437 2794 7780 753 9295 8485 315 1266 2638 5780 9883 5009 5802 4116 9045 7826 4318 4441 2517 4566 9327 1164 1490 8467 4325 3267 4679 430 4036 4411 3716 5396 3716 6891 3303 9660 8426 7891 5296 7084 84 505 5004 39 389 4890 8387 3631 676 1508 4974 6669 9893 2849 8948 3704 9552 7611 5182 612 8042 9954 6124 6134 4161 3236 5937 2676 4850 2703 6186 9747 8717 761 1679 6176 6771 3307 4649 1968 3265 9503 3810 6294 6432 667 582 2407 888 3151 53 8585 9005 480 3230 8017 1704 5050 5701 1401 5988 4612 3012 3168 8174 2346 1112 5912 9995 6684 7657 6208 320 2120 3437 9592 7940 5268 1395 9938 270 7285 7443 3236 9167 2037 8155 8218 9405 5342 9271 1172 7706 3001 763 3956 5723 7354 1386 8659 459 6606 362 3033 1823 3501 8030 1761 9331 1451 1779 7192 3061 9825 1935 7485 4887 2204 7812 8485 7935 1190 4765 8682 5774 1309 7240 2947 3324 1048 5315 9474 3172 9837 7349 9170 2338 9938 1000 9313 3732 8399 3964 2100 3900 8990 5592 9511 1102 9265 8933 2035 3941 8316 1209 8232 8294 9738 7194 7297 2839 9482 2477 8374 2787 5601 2180 3786 7846 5668 9266 9960 2331 194 3311 4111 4803 727 5268 1306 3566 8197 358 3758 8524 5352 6649 695 454 2611 8648 7473 792 9844 4730 3065 2691 2591 991 6247 65 8516 9075 2117 8193 7064 8574 1171 5270 8211 6429 1800 3836 2854 6883 1686 6058 5656 3755 2519 2793 3214 1352 8417 6868 1221 5376 8874 1239 8948 8404 561 2367 7931 3173 5342 9873 6441 7046 7277 5685 9339 3546 1712 4522 635 5659 8335 1694 8920 7189 5565 2364 7763 5440 6882 1390 4734 9429 8800 995 2954 3917 7929 4448 7750 2784 5663 3245 5592 564 4051 6260 1129 9172 7700 2615 3129 9625 5579 6586 2095 9020 1683 9640 3653 5340 7789 1669 5003 6627 2284 2872 8973 3638 2952 4666 9926 6255 8116 847 3143 6982 8720 7231 7125 4668 7414 7798 1852 3220 3406 5164 2546 9985 1527 4917 7923 6597 9684 3059 2669 2269 2591 5459 9478 4261 4535 206 2114 2481 3723 6915 8595 2407 1124 9964 2330 5506 5354 8375 5484 221 8505 1162 2003 5926 8087 1248 3612 6667 5000 6174 7779 9816 6817 5166 6495 6241 9110 4916 595 9114 2880 991 4326 1524 7632 2725 2679 2939 4231 2864 1935 8899 3016 3154 7320 32 8554 6329 1360 4170 36 5825 7463 3386 9730 8274 4155 7148 9796 2202 8422 1770 263 9140 4556 6040 5238 3783 234 963 1100 9787 2701 483 2870 2681 4180 3885 9690 5761 8047 5506 8893 2143 7273 4914 5822 4739 7740 8605 4129 1342 6089 1818 771 9784 3 6240 7423 1432 4867 6244 6362 4912 3482 209 198 707 5747 2652 3232 8771 6551 5942 5102 9527 5737 1751 6440 9231 1807 4817 653 9845 5087 370 6939 9909 3224 2527 9553 530 8964 9456 6692 6469 1489 1183 542 6816 6862 9992 7516 4700 4112 1025 1829 2026 2137 554 7443 9285 8171 7496 840 9568 6544 4272 4247 3217 8615 8042 7072 5797 7134 2050 6851 8360 6015 4226 785 9964 7325 4913 2377 5474 813 3900 8611 5272 6004 4016 7067 5668 6627 8666 9361 2006 4876 4967 8598 2665 1729 4617 2615 8926 2386 3966 7392 9979 6337 2400 7731 3194 5833 3102 509 7162 1340 2539 1906 7807 5104 5336 8089 8055 5689 9776 1036 3051 6237 8131 8186 8970 8430 6991 5980 3534 6367 5523 9188 5070 728 4742 353 4438 8829 5849 2713 6702 8074 12 6388 985 9368 1315 1721 2124 8776 4248 8748 1357 2530 6582 8764 8366 5170 5950 5054 2659 8257 7247 7383 4244 1228 4363 5858 8392 1660 2966 3763 7618 6295 3155 2408 3815 7892 2459 8637 4956 3481 4321 4886 4363 5882 9981 6729 5210 8174 9611 16 6100 990 1007 3783 6820 4904 8262 3886 2433 6184 5314 4941 5234 8864 7828 4950 4248 940 9722 9432 5811 5406 9263 5690 6776 2867 8610 4170 4783 6837 6301 8914 8816 3344 5598 975 8776 8089 7526 9893 4589 4504 186 400 8677 4636 5867 951 7457 2770 5263 2825 9004 5604 3955 6734 6721 2601 1310 7723 4887 9649 2015 408 450 6206 7590 9693 9572 5284 1632 3746 8322 5869 4856 3302 257 6543 741 8087 5203 6657 4216 9253 7102 8270 5746 3495 9631 2142 5572 626 8079 9237 7119 7583 3013 5357 350 7328 3878 7051 1757 5927 6363 9709 9387 4962 7895 7211 7797 4098 2307 4567 1010 5438 4803 3710 6529 853 2321 4624 8305 3448 2932 8321 9896 2744 929 2747 7127 5576 125 7631 9062 1430 1089 2379 7403 9144 2706 7460 8966 5680 3265 2219 2204 776 5514 8880 7207 7825 6354 6334 523 522 2251 3133 3610 8053 278 3381 1015 8937 6238 4455 9279 926 2821 3922 5326 1678 719 3900 8355 4431 9611 9606 1604 7406 2580 1230 2081 5150 8550 6294 5112 6397 3585 5084 109 4204 2068 4746 940 458 9762 1080 6930 1665 8659 6185 9056 5107 5667 7066 2245 959 3976 5628 1146 2283 7887 4962 19 5066 7121 6667 4209 7651 5219 1774 4248 5492 1253 1457 6890 2079 3649 519 9743 7848 7824 8159 3145 5715 2493 3272 6784 4152 4652 6734 5583 1499 1803 3191 7971 2640 3716 397 2066 9216 8211 7001 9452 2574 637 8167 7007 6849 8950 3389 4157 4743 9527 9867 2964 6173 847 9812 5678 7406 5905 7214 2846 6335 1142 5453 3740 9706 437 2929 4968 4852 2463 5566 2675 5437 4670 7171 4524 9699 73 5322 5296 723 7252 2020 2734 714 8533 5652 1266 4930 2071 2500 8695 3996 555 7486 2589 3933 4851 2271 8338 4093 8063 1337 8098 7014 6349 2184 7281 8695 4071 2137 8427 2140 4735 8832 7219 2271 313 9438 8702 9722 9510 8629 6863 8881 5147 2450 4278 9392 2133 7604 3770 3774 8187 3433 9005 7292 4549 3299 144 2466 610 9451 2728 6364 6593 7436 9098 7358 108 1572 8476 7660 2500 6801 602 2242 9165 5594 2278 3048 1920 1138 713 726 7108 8651 5709 8185 8434 7128 3250 795 9875 4708 4328 1470 4049 9543 5473 3687 3858 4838 8882 7603 8118 1726 6409 2777 6634 4207 5332 36 1263 1622 7461 5280 6105 6518 2019 4140 9555 9846 7367 3349 4271 2556 9338 2073 8831 7793 3151 280 8127 1210 6592 1949 7402 1712 6777 5490 2659 9970 8194 7031 8048 4634 8613 5869 3887 4746 4516 5743 6372 7656 8896 5060 1563 9120 9943 2879 9991 804 3628 7319 8148 5716 7001 8419 2287 3214 5982 1873 1442 602 8492 8937 4982 9459 5795 8964 5356 5750 4676 8555 5086 3138 1011 7960 2660 6102 3472 8362 3891 6016 4522 9888 2760 7081 5385 8435 9300 9218 2100 7130 7739 1972 2078 8639 2282 6629 7708 4783 7890 2954 6296 5494 9823 3839 1393 1143 5227 3844 3899 8114 3687 4167 3926 2110 6173 3042 1767 8308 6687 5509 1023 1034 3247 7303 828 7595 2730 4410 8589 6097 8345 204 439 8546 6217 6686 3535 2175 5961 5061 3602 2174 3092 2974 9154 9394 3680 5522 4710 1720 332 1715 4524 3111 7690 479 5392 3747 1953 2235 5855 12 7900 543 3451 7583 1254 4057 3238 4922 5211 7330 2441 8949 1779 2846 3323 6575 2861 4128 3904 8317 5191 3379 4169 6823 9406 3735 540 7570 7276 4506 4844 9877 9191 6663 4736 2407 7269 8300 1935 3289 5120 5496 129 9706 775 8711 379 5710 3404 2263 732 6856 6377 1640 4862 4630 9621 8467 1649 5215 2681 9651 3261 1804 6064 8382 9588 7235 7173 6361 1976 669 2389 2478 5091 4399 1487 6958 8504 7274 201 9531 455 1199 6892 6257 2455 5795 749 9484 4620 3486 2276 8635 4624 9555 5523 7561 5790 1642 2944 8645 3844 7618 7296 4635 3817 8814 856 182 2703 1148 5885 5150 8724 825 7724 1169 303 2890 4989 5984 7551 6123 1304 5493 5090 1445 8159 276 8464 8608 2645 1187 6193 5500 6995 12 5112 8874 6740 7851 2308 1357 9972 1237 5568 4898 9780 4730 6436 5087 8764 9800 2299 7170 2842 7872 6261 761 3767 9288 9586 1386 3856 6926 7598 3326 1378 2379 574 9719 4098 4798 3889 8523 6013 5385 1706 9443 1064 174 6787 348 2162 409 4796 5054 3466 9782 333 9515 7453 5529 25 3950 5827 5520 5524 210 5599 8557 1555 1893 3970 8486 9016 171 630 5226 3842 9585 6010 5313 391 1456 5516 1479 7425 5801 4802 7523 6001 765 6454 1231 3173 2744 6195 2110 8041 644 4894 2828 4200 2580 2841 5316 3899 6474 6221 7729 7900 3508 9755 32 5604 593 2118 7331 5797 3318 9085 2450 285 1405 8859 1972 5581 3224 3793 240 5086 6267 4533 1286 4289 6718 438 7476 7914 8522 8741 7711 5071 2654 4266 1311 9706 6984 4519 8266 2091 9244 1050 6044 2272 6530 6975 3804 7092 6899 7873 4806 1124 51 3803 7530 1632 7852 9875 7193 5341 857 9616 8104 561 9626 3601 1137 8406 923 4193 6504 7490 6663 5328 1251 3370 3881 605 3856 5399 4916 9629 5147 3047 531 6213 9859 1848 9792 8150 8670 4939 3634 3385 2048 6453 6289 8539 8084 1645 6008 3211 6585 6334 844 8390 996 8830 127 4737 3057 5345 2662 2713 8697 9013 7528 2821 4749 624 3346 5761 4481 2307 9983 584 4198 7396 198 3986 1127 7160 5979 2868 790 1515 4427 5776 4827 864 1664 8406 9896 8272 1273 5835 8841 7648 3304 4434 547 4456 9550 6667 4463 6727 9689 5986 3722 7174 9906 6906 3536 4533 3883 9896 119 4833 7308 1209 8912 7870 3293 841 8989 112 9656 2780 8446 5763 9845 6090 4706 9869 8413 9284 876 5314 3471 1438 915 7107 2818 6769 3458 8330 618 734 269 5572 8330 5857 2620 9536 8967 7216 9753 312 5574 6834 6975 2379 9874 8902 8480 1478 4045 105 8022 4746 4774 4017 7452 2022 302 1355 3789 3601 3029 977 6222 3716 7490 5819 6427 5482 4790 9793 4156 1290 1765 861 7798 5137 5154 7990 490 845 469 9013 5073 2605 5210 4029 9648 175 1094 8065 2559 2345 1372 6302 5598 6990 6593 3325 5984 6110 5250 6276 5290 3424 7176 3825 6248 5735 7836 7902 5283 9273 8873 5691 6241 4474 659 6261 2108 1151 7881 512 4174 4808 730 140 1452 8605 8058 3077 7021 5015 7268 4319 4111 2326 9338 7151 2463 9492 2305 1802 1729 9327 5870 6676 9903 6055 7201 1979 1746 8408 1744 3286 1618 7829 5184 5551 3280 594 6929 6457 5186 5753 8303 5356 6612 9546 3183 1918 1417 120 2476 152 6299 9404 5118 5479 5306 1737 3231 2036 2572 9643 8580 6923 4627 1848 4779 9233 7254 6281 8154 7296 7615 2233 1908 9633 3238 1193 7570 786 8876 9028 4957 7316 9562 7793 2176 7971 8770 9371 2453 5824 2175 2981 4260 2382 4505 5053 6220 7047 6724 9379 6174 7445 3380 994 839 7812 7414 9984 9770 7559 6554 4835 7041 6515 3966 2167 774 4167 1516 4975 9750 6677 5914 7487 1682 6055 2321 999 3074 3179 6973 8347 6034 5520 1484 718 3972 2992 4928 1594 7937 2461 6000 8405 1936 2461 2235 9530 2692 2472 9898 5200 7008 6576 8663 7568 5877 513 9283 9187 8778 2919 3145 4951 4142 6069 2791 6091 3861 5617 5208 8762 5441 2566 7670 2916 2702 9031 9895 283 920 6633 4969 1553 2571 4627 9522 6611 7581 7010 1940 3734 712 8032 255 8840 3427 2563 3257 5344 3050 2624 6702 9701 2165 5276 8332 2163 5486 817 5733 4702 5966 5932 2383 6086 676 9089 4800 7661 9706 7849 6511 8441 8818 8800 325 4784 5669 7565 433 2367 6586 6639 696 3820 1147 6745 5981 4094 2351 7565 492 3956 1664 1623 7986 399 5430 2732 2872 9791 1504 1416 3929 6600 4897 8445 2665 9492 6932 1825 1146 2815 8719 398 8164 2413 8660 9114 3982 4022 2421 8365 515 8647 5425 9838 8373 4347 398 3190 3180 8879 3833 3242 3858 4825 4908 1629 6364 6717 1508 7076 1662 6557 257 766 401 2 3329 9290 7244 4914 7921 7725 1821 8872 4479 1442 1952 5733 4523 9213 1421 7917 9648 4944 4550 1397 1538 1262 9243 4048 4465 54 5999 4222 6413 8018 6726 4807 9669 1380 4111 1585 8096 3842 6991 2208 9212 8087 8741 5402 290 3866 3303 212 1438 3529 353 6596 6957 7121 595 1058 7523 7485 4857 2155 6308 6031 5116 1510 6259 2450 7221 5046 4593 7357 3649 2137 3371 5130 9872 3064 4547 7216 3195 7883 1436 8191 5447 2603 1055 8140 9927 1356 6589 5930 4674 593 8674 5906 4225 1153 9619 1340 3177 4622 9840 1602 2490 5648 2165 154 9012 8295 1710 6902 9358 6093 2484 1109 8245 3371 2931 9057 7980 5157 1055 2929 7321 9206 5 8788 2502 1104 2511 8029 8015 1006 2136 5401 6616 2482 4706 8879 3754 8936 7411 8502 8604 4151 418 213 5802 6777 9288 1227 9253 377 5740 6861 2913 8466 2574 1212 1264 5925 4459 4149 4933 9567 6026 3766 3060 3259 4067 4772 8127 8892 3979 7494 5300 6643 4302 9853 1557 5735 3829 2635 7546 8422 7699 1757 1082 5689 4334 9765 5661 786 4429 2670 8982 301 1876 1301 3850 6105 2805 5627 9297 5405 9168 4183 6278 6004 3839 2217 4810 4819 9176 4980 70 8020 9250 6949 9527 853 4432 3296 5002 7858 1869 5217 4100 4290 4155 3493 726 4353 9896 9316 435 4758 5993 1616 1820 3346 8014 2527 6615 2101 9902 2157 9615 2703 9990 5419 4910 4491 6334 5125 9515 5197 2198 986 1004 4641 4083 2318 3233 6275 2354 304 2854 4912 641 2721 9030 8653 8688 2550 8776 4883 4873 4133 9871 8798 7743 7648 3155 7439 2705 9038 831 5659 5053 6260 5903 1311 9143 3111 3188 9843 6399 82 5579 4383 6164 8362 6304 5863 5003 8665 7735 8471 9691 432 2607 1839 4398 1999 4940 3432 9283 7099 338 9 8617 2871 1977 7060 2087 2075 9012 5297 4020 7390 2083 83 8064 8662 4061 2091 8787 8035 9992 4453 2415 1380 6518 4043 3303 4060 9285 1464 6902 8395 7666 4922 579 9409 280 9242 3193 7302 5169 4560 6348 2741 277 655 4544 8947 5097 2781 9955 7978 1147 4837 9988 7676 9993 9570 2100 9799 2827 2565 1961 3625 2104 2087 6622 9902 6139 318 7754 8873 3412 6372 9319 748 7814 24 1925 3371 1533 8851 4784 8427 366 6007 755 6694 603 2093 1047 7656 3081 5336 8655 795 1019 4584 8432 3279 5738 832 1250 7739 8953 2929 3708 4616 8049 3362 6723 7385 465 668 7077 3370 5324 9327 5471 7537 151 8930 5457 8793 2609 7387 1455 8059 6015 719 7345 8916 2183 1383 9345 3821 5587 3729 5257 7837 6686 1027 1229 4089 8535 4245 3463 6739 7761 8583 4437 5937 8572 7865 8579 6351 4833 5358 4903 8232 2268 9441 9265 3031 1584 847 3834 297 9932 8766 8157 9277 3246 2235 6295 169 2743 5947 7545 9921 1673 2554 6341 5269 1738 1272 2339 3669 2530 8655 6585 1076 4917 8580 5325 7830 2587 7061 9452 4687 1022 3363 5792 6031 8016 7598 4554 4863 3488 1519 6590 1313 4011 7331 3836 888 6101 8056 3561 4557 6771 4432 7466 781 8458 1860 7103 3942 7743 1372 1898 8935 8180 6940 4614 2462 4179 1957 8662 7104 6688 6646 5717 5498 761 7036 4656 6047 6854 4410 9095 2864 8020 7245 4655 2373 123 9021 7031 4326 7562 2881 6710 5904 9996 956 5124 9775 233 7053 7993 9114 3713 217 3769 6166 8168 2026 2633 3825 2584 3135 2329 9700 9749 4628 2102 1998 8964 1280 3328 4263 5968 8069 4551 5555 507 2442 8182 4218 9921 6884 5694 4046 7596 8209 3738 8810 7735 1761 4103 7483 6433 498 9197 7479 8906 691 8579 6415 2446 3858 2342 5669 6946 3423 7415 5419 8802 4845 945 3214 9304 9465 9445 2789 5738 7006 9411 5327 6029 866 5407 2191 3109 9365 91 7588 7253 698 9621 9267 1314 7436 4439 1934 9676 9360 5478 1861 865 6244 4735 3253 879 5576 4593 9497 8894 4954 1481 329 2462 4775 2657 8884 8925 4875 3193 2988 8739 1514 9828 9321 7442 2344 4836 8948 2265 954 4819 8119 2463 3655 9146 8520 803 1383 2393 1876 9712 4172 8844 1016 736 6542 6538 4632 549 5351 2214 278 9282 1080 6206 8575 7999 7265 2399 6359 6618 5322 306 6164 9210 1961 8965 6088 6365 8105 8796 4054 2847 1788 2169 6382 8380 9319 5583 5943 6854 7127 507 3845 9108 1698 4661 5076 2154 5819 5954 8179 219 2400 6343 1553 4609 5669 7550 7319 759 4933 2454 7413 8659 314 430 5244 5409 9379 9004 4681 3585 5381 2245 1262 6042 3262 4509 5335 6361 4181 244 7627 2304 6094 852 6499 2254 3635 2719 5782 6176 6168 9123 9583 6301 6663 8193 5062 6665 8918 6346 3878 5195 5813 230 3242 8824 3497 7315 8566 1609 2030 1949 8749 6585 4091 7955 9555 5579 5232 9832 5800 4415 8302 4297 1190 7447 7686 6551 5250 4603 2081 290 9020 635 7693 9208 4140 4275 7012 3256 4824 5022 624 5628 9143 5946 9131 9232 682 8642 5968 1741 5842 9273 3760 749 7066 9002 4245 2896 1909 2953 6194 1237 5952 1548 8987 9091 4893 4075 6730 7767 7441 509 1792 8735 6822 9532 8429 2078 99 528 3140 4328 6360 7468 9621 4390 421 6993 8618 8170 3225 4519 3620 1041 4929 9653 8932 7512 6939 8475 3473 6195 2813 4201 6680 7202 6153 9392 5572 6390 5532 1234 5038 9661 511 9047 2867 9817 8656 1011 4513 1826 1236 8933 786 9795 5846 3314 8603 9337 2485 8854 8742 672 639 2265 1852 7228 1617 8886 5411 8503 6891 3999 5877 5972 5271 3618 235 2304 2313 4717 1206 3533 2682 5030 8933 4765 7894 4975 3777 5466 9876 2819 3822 2049 6120 1810 1533 3957 7096 3800 7212 4263 3873 9812 1144 7789 8611 9788 2825 5332 1785 2086 9602 7545 2332 7767 5211 9016 2516 6702 8740 7237 7656 9074 7253 9040 9552 8196 9118 7848 2945 2586 5663 9902 2447 6382 2879 3689 1108 7891 7917 5809 4872 1733 1178 7921 6157 4876 4549 2580 5903 7775 9527 8242 6658 7249 4163 4449 7073 6888 8479 9094 6644 4966 319 9935 4839 4297 4119 3816 2912 9201 9459 6503 3958 6895 141 2433 9798 8530 4776 3344 9846 2537 274 4051 5915 1210 2018 5955 1587 3801 6424 3546 9980 2531 7542 8943 6448 9881 3027 7596 8472 7376 1002 2708 5019 5613 5043 7164 8694 3950 3552 9565 6420 5808 4362 2617 4043 249 8203 1664 2176 2122 25 442 2875 8563 401 92 9401 2849 9102 8100 5509 6781 6285 8375 3298 8042 170 5278 3982 3556 6139 6827 8370 3929 2346 7829 538 9178 127 4316 9345 9136 272 1443 8604 5123 6617 4608 6428 5266 8673 6494 4608 9325 7299 4376 8562 6991 2585 9767 4701 9047 6021 2920 2246 7285 5519 417 2034 6900 6085 4260 3129 4464 8232 8280 3864 8729 2347 7619 3652 3521 3114 1718 3999 9517 1909 54 832 704 9695 8035 1691 6505 1229 6036 771 8105 691 5515 8650 653 3994 9372 9943 4579 2647 9347 6369 7392 8420 4993 6811 487 5842 339 162 680 1825 5163 5875 6054 5051 5576 4092 1678 7379 883 278 7381 9741 5869 611 6972 8832 2569 7823 3069 7004 1194 9503 560 4881 9878 8592 7183 2729 8882 3046 812 1144 7991 6186 7062 6221 9252 9393 4215 4445 1402 6875 6536 5188 5136 3964 5390 2126 4308 4281 1315 2473 8540 1016 8571 2690 4984 2364 6099 2775 4548 1123 320 8374 9710 506 2488 9359 5936 6356 5376 4997 3712 3282 3132 6802 2699 5236 6295 2617 8709 5916 8047 4513 8660 5874 3191 5501 179 7139 3687 3216 5152 2946 4255 6032 5591 3181 517 343 8007 5806 3817 6828 2897 5265 5048 395 6900 9766 9761 1621 2555 3401 2215 8103 465 1232 6747 6083 4270 7500 7015 685 4770 5894 7735 6861 8851 8011 6279 3959 2321 5446 2757 7898 370 3888 5045 1530 3066 7196 2254 5880 2794 6801 9562 4840 5311 6998 6165 9344 7726 8854 9960 5348 1997 8601 6931 5948 1941 7705 3675 134 5249 3958 5397 8559 7787 1442 8121 7998 2006 8825 3282 9050 9938 7187 6893 1681 3192 6722 8692 8457 1680 9391 8972 3930 6041 5494 7988 8128 9864 341 9780 5303 8326 5251 6967 6769 550 7351 9130 4829 5431 9790 2067 7565 5054 3233 6471 9678 2443 8146 2336 3282 3340 4586 4090 3286 4656 8909 1306 8238 9024 6094 2002 7149 4175 8675 9447 8957 8680 930 471 4470 2477 3564 7489 5309 9384 1104 6583 2218 3275 666 789 7576 9830 4844 4910 5572 209 6040 3840 8963 5578 2115 3900 3389 2684 1389 4393 6853 2291 6716 4411 5372 862 6710 7961 5533 2727 3116 2458 1411 291 7246 7011 4232 9048 8362 9932 1168 8920 4632 4113 7693 6799 6347 2997 6577 9002 6422 9518 6877 5254 7875 9447 9765 1972 2845 8459 7730 1113 2889 6237 8029 3693 9169 2076 8038 6591 6744 9664 1954 2856 6909 68 4961 4353 1257 7686 4348 2978 1745 8833 1686 2130 1823 9352 9194 8321 576 3821 3725 5870 5375 181 6047 5089 5334 8674 5680 9743 4321 3785 1340 2238 5906 2958 140 1305 6050 4732 3195 1909 3133 7278 9018 5812 536 2581 1082 2959 3200 6348 8168 5727 9271 1694 3371 4941 1641 6586 6610 661 5558 8469 1796 4652 7860 1674 3435 7666 4672 1884 5350 8495 219 9042 1 4030 9985 9932 5018 459 8311 1680 6997 4024 1247 4399 5937 2186 6158 4767 7122 3894 5106 3786 4374 9092 6223 4635 3500 9214 2623 7121 8945 8592 7170 9986 5132 2735 3365 7975 381 1947 7300 5129 4773 9007 4783 6151 1919 3037 8619 3313 1032 7357 9688 1198 4491 8723 5451 842 1178 1394 6686 6864 6947 6334 9678 2759 2252 6932 7407 949 1955 1210 2480 688 3466 6764 8824 4946 3919 3469 6145 8475 3965 9269 4163 2442 5295 4256 5733 4179 1872 2733 2302 56 7390 6390 1007 6633 3782 8797 9996 1538 4007 3364 2158 1746 7988 3048 5558 1824 867 2651 9582 9744 4173 1163 8497 1459 9486 9027 2986 3149 59 6906 8744 2624 2453 2098 6929 4007 9500 8305 1417 9284 2858 3457 1743 1018 5292 7733 9472 6373 169 660 1032 1348 5310 2530 4763 3740 1319 2774 6564 987 6237 1734 5400 4370 7761 577 8392 478 4588 808 4949 7718 2267 5734 841 9078 6513 7992 442 4780 1313 824 4321 8328 9059 1448 347 5660 7223 7779 5254 419 3760 3425 4393 2003 6807 7904 3513 2444 5263 2865 9988 6764 6056 338 7485 5735 8205 7240 4626 2501 238 3325 5899 6746 7852 1567 6034 744 2235 4890 568 858 9596 8418 1133 9538 1000 9665 7634 4814 5963 2430 8592 2294 3758 6975 6030 6616 9239 4066 9888 1116 4390 1093 138 8603 2614 4069 1762 9709 9223 311 4061 1508 704 9153 5555 3068 3446 9777 7862 9073 8949 4650 7925 2080 6586 1636 3304 7866 1313 9233 4748 8251 3997 3147 5848 2899 4583 1719 3464 1041 4646 8162 7322 9745 9374 7146 9371 715 8761 3038 7817 2340 135 3004 568 1299 2253 1481 4786 5400 4722 3892 802 9555 7767 449 3724 4467 6856 7743 6300 2373 8479 4344 5172 2246 4466 2009 483 9076 3688 8517 8152 3498 4890 8903 5747 5270 1729 9475 1970 223 7177 7768 5658 3904 805 5306 2693 8753 3286 5735 7646 7657 492 9572 3136 3142 3449 6723 2601 3795 2479 8515 7912 9298 8385 6041 5858 4682 5802 9498 6027 9651 8822 2082 9839 2740 8195 8911 8128 2191 4381 8844 1283 3837 118 7790 3402 935 1956 5327 7644 7150 4607 2059 6220 121 4951 8241 4778 8512 4788 228 5981 1663 6312 2600 7640 1574 2726 8298 4144 2768 5779 9612 5733 7446 3965 8951 4238 6738 6195 5676 3184 889 4405 4444 5394 3740 7685 8563 4131 1160 2421 8900 5674 3684 458 8864 8569 4311 5413 9376 460 9247 9733 6703 5062 7409 3110 989 2405 1610 9791 1754 9922 4051 2517 2420 8846 4267 6849 2468 1785 8207 3058 734 8645 1305 6223 2309 6579 5137 7534 1448 9110 3127 304 5929 4769 9471 4897 8875 3082 6453 2949 6179 8457 6150 4192 5242 7788 1394 3805 154 9113 4933 2755 9635 7992 6937 5808 8651 5307 3950 7846 2333 6902 5926 8867 1132 4540 2408 7988 4529 228 6006 5120 6370 6013 5569 7919 8293 2774 9268 2072 508 325 8921 6748 2806 1743 9688 2163 3249 2900 1733 2685 7869 6680 5610 660 4050 4256 6265 7502 7096 5408 4293 5752 9849 2397 710 8865 9068 2641 5436 9272 5127 246 1452 6868 1138 2662 2057 5843 4953 8664 4814 5933 4420 6075 8514 4597 4773 2394 812 2629 4338 8764 7239 3756 9710 5492 8014 4365 9002 1876 9130 6779 1291 5627 8135 4354 5873 1725 6319 9273 6342 5898 8198 5781 4818 3658 4323 8950 4417 8027 5962 2362 2322 1245 4307 9146 6596 8483 682 7857 5052 4802 2844 5786 1487 1337 4307 6998 5108 9290 4403 9363 9594 9126 1109 1123 5751 7422 4908 9551 2748 7357 8118 9663 5383 9147 3912 9868 3274 2782 3786 7259 912 2081 3891 9428 3943 3527 6752 8980 5542 9327 2614 213 2845 5764 9593 2600 6458 6275 1763 4745 7075 7701 1667 7830 4359 4983 1573 816 9116 1641 4504 5343 5054 1561 6664 4912 9139 8062 2389 2403 132 9682 1968 4909 1511 5476 2765 4064 9335 2050 6064 5422 8379 134 7496 1157 6342 4422 6969 2505 3265 2341 7975 6658 9660 9176 9146 7022 8995 1546 8313 418 8768 7226 8892 41 3803 3742 9293 5470 1004 8013 4812 8280 5843 4551 5137 8888 4775 8731 8578 7781 3053 9313 7431 1700 5299 724 2656 31 7966 7771 5195 273 9422 6778 9060 2005 9756 4714 794 1318 3566 9859 2940 9318 9529 7577 3846 537 1494 2466 9090 55 6652 1846 6218 4307 9020 582 5670 5151 2851 777 932 5149 2435 1354 8908 1765 6761 3606 4478 1322 1134 3775 8220 409 9625 2397 949 7975 2757 9781 3678 6972 8038 510 2902 8884 2273 8068 6075 7346 8730 4034 9223 61 5532 13 6893 5673 4998 8334 6708 3663 467 6810 6685 4692 207 2024 6464 124 5969 6712 915 3495 136 9227 2530 3908 2685 8691 6618 9596 37 210 3751 9506 8044 9113 6255 3557 8899 7635 9923 4475 5580 9990 5562 6019 9726 1052 1651 3709 9602 8614 4105 1121 5637 5391 5510 1181 8173 9292 1036 1113 3227 6859 423 3486 9479 7104 3208 2398 7187 8646 1320 109 1201 1746 2311 8119 2310 6706 8072 6172 1840 2759 6210 7444 3839 3345 3866 6291 832 6166 1724 2257 91 172 3738 4872 422 1034 8933 5261 3690 3121 119 4674 4409 2834 2823 1045 5669 7195 2136 8431 8575 6885 1351 9554 9379 8741 5510 4668 6435 646 6936 632 7314 3512 5804 2059 2991 7198 4255 6834 237 8131 2174 7510 3866 3454 8162 7540 1251 4643 2595 1810 7749 1709 1780 6245 4178 3755 957 1627 2842 6026 4757 2832 492 5475 1127 6088 3535 2801 9079 5053 1613 6759 833 497 9079 4313 7380 9409 7292 3272 8774 9014 3217 7852 8960 2408 3005 8239 415 2149 8002 837 5067 7887 2992 4734 3935 6442 8408 9584 1165 7680 4572 8197 27 9825 7811 2906 9610 1341 7544 2130 677 8821 8609 1309 7010 7213 5145 2289 1188 4987 9779 4866 6132 896 8759 3597 2290 5997 2045 9337 4136 1358 8950 2084 4985 8528 7656 5050 5203 6318 3231 9614 2162 2763 8132 200 9060 4159 5740 5499 8481 9907 744 4900 3737 774 2950 3895 2968 6968 7207 6633 2585 3225 3785 5580 2238 9682 3015 5794 722 6604 2796 3913 2850 2816 1302 4042 6978 2975 7282 7683 2356 8877 8038 4614 8184 9230 5548 4174 3784 8022 8119 9806 6276 9606 6189 9584 1800 378 2352 6996 8512 3776 809 1582 9208 4995 3117 2052 3341 177 2588 2365 6194 5584 4549 2758 4535 6122 7710 3759 2247 1102 5950 9195 9126 1472 930 5667 5346 3110 2007 2257 7981 9137 9216 9494 5553 5248 7688 519 5372 8422 6997 2216 6980 4918 8975 1303 3714 2096 349 3421 808 7194 4143 1812 1351 881 523 1246 7286 4555 7 428 4537 283 8169 8000 59 4140 1617 1395 8007 5449 7726 3621 4450 7473 8024 6491 6251 6256 7043 5790 1224 6770 1581 9212 7705 4890 1707 3536 8665 8477 237 3207 8270 2653 5588 5780 9947 6770 1806 8540 1218 6792 5071 2133 9144 4010 6206 4069 6075 7597 5304 2142 5030 7219 24 2609 1307 804 688 1722 6164 3966 2221 900 567 8476 1170 1483 4969 4909 4123 3104 708 6565 3631 7456 8857 9298 5101 240 5046 75 9168 591 9724 6421 8828 9410 7746 1110 462 9318 8616 8547 5472 529 685 1019 7014 453 779 5894 2550 1371 4085 5172 9860 3344 2904 3275 5124 8638 136 7957 6861 7451 1252 795 5830 2044 6338 1197 7831 8868 1674 7579 4009 6403 3410 1994 1016 1166 104 7054 5790 1488 6948 5193 8413 8931 1226 579 5907 7780 8291 978 5682 2510 8455 5657 7980 8156 9315 947 8047 9111 4300 7032 5454 7229 5051 1839 2613 7327 1048 832 3590 6799 1820 7230 4839 9317 3636 6972 4942 8426 8807 2495 4504 417 8187 6577 7504 6056 5309 6272 2192 7989 362 8340 3810 8221 3136 7074 888 9327 9089 9055 6436 3736 6255 2824 3177 1548 9085 6623 3905 2730 9184 2933 8828 3535 6359 4075 8511 7142 5692 3824 967 8338 5887 4875 4137 9796 6071 265 434 793 6002 6345 8914 4759 578 8109 9197 612 6121 8753 5939 8834 1643 4456 973 5990 120 724 5439 4174 5527 679 306 1584 6511 3922 3562 3106 7927 4869 6966 631 8681 5761 6692 1647 2168 2076 197 6865 1678 7812 8181 7157 1051 3860 5860 852 8252 2915 1039 6369 4413 4274 9023 5025 7075 8925 518 9173 8865 1896 9087 4999 2753 4573 6187 2573 5602 2765 2166 9955 3593 8019 8517 6483 3251 6161 7832 5195 995 1492 4636 6554 2745 5169 4372 1378 9298 2166 4514 9171 2419 3844 6689 4150 414 7129 6643 2170 1487 2753 9545 206 7590 1376 6844 4309 6293 3998 8845 944 3669 4808 1230 9661 5360 9834 2660 3086 1443 9470 5650 8605 9743 9249 3110 952 431 7461 9459 1114 6061 6204 1400 9191 6633 5236 8376 7604 4636 2839 3926 9499 68 1060 8308 9474 4408 6404 7818 7585 5372 3639 4717 5901 9980 628 1415 4071 4331 2261 2212 8731 2336 339 7454 5101 6907 6838 5059 9995 3653 163 9023 933 8321 3938 8430 1615 2092 4086 7051 5192 5279 193 6676 5493 415 5217 4263 8613 3088 1721 7505 3879 8124 7061 3369 1816 6062 9768 3399 392 5487 3230 4209 5108 7836 5314 7805 667 6474 4631 8025 5897 5151 9366 2252 4412 292 9153 5711 2511 7428 4258 7237 834 2450 1223 5467 2573 4842 2068 117 4986 5838 352 3536 1725 5888 3683 3330 2074 5887 9170 1595 1673 4618 2542 9067 110 1855 1206 5401 9736 5714 8238 3134 5184 9252 5255 6399 5610 4158 6590 9125 9082 8131 5589 4868 2222 8239 8893 5201 8298 7646 8593 7522 6735 4742 5689 5523 9638 2557 8622 7049 2898 3403 5175 5485 111 1951 203 8881 3670 9256 2635 990 4965 5143 4127 9765 2041 2179 7113 2673 4690 1493 382 5337 7972 5213 6125 4739 4256 3510 3692 7038 7894 6244 1369 4221 2530 3743 3117 9098 2384 5864 3491 9187 3476 7546 4955 8720 8520 7703 1526 192 1312 9397 962 9968 8375 95 2841 8381 18 1897 4437 26 5991 5849 1266 8344 2939 1947 8957 6302 8228 8325 615 2657 8438 \n5130\n8082 6227 6200 7627 4236 4258 2198 6842 4905 5447 5614 1889 6885 6197 4038 8549 5616 7837 3726 3860 6325 9929 8082 6534 8661 33 4868 8914 7253 4217 1003 1012 8038 5728 6333 1503 4544 4780 2835 3460 6025 8815 2970 6508 855 9604 1630 7218 3292 4975 8406 9448 833 7655 1317 8351 9552 419 279 143 1968 1495 8427 940 7019 8130 1168 9143 4962 3760 6689 3110 1413 847 9528 1556 97 6295 8866 5519 4009 2677 7238 5222 1864 5690 7397 8762 3565 342 1097 56 1144 3867 7723 1008 3833 5397 2620 3736 139 5063 8900 5351 4142 5531 1180 4353 5293 1118 2549 3263 4033 572 6552 7796 9003 7664 9961 8895 88 8859 6257 7367 9644 9721 9083 6336 8432 1114 2382 8845 2928 944 6092 6787 3241 424 4997 3356 8583 839 9925 4412 3478 3352 4581 9881 8102 7791 871 7210 7738 6781 9648 9874 5221 6553 204 1613 2456 3235 7466 1951 4907 3405 8118 2115 6074 3617 9847 2427 2485 1756 8539 9708 9633 9554 5601 7850 5081 6539 4895 2290 7665 3914 4719 2711 8439 1201 882 2567 8950 489 1717 8800 7102 603 1376 8184 8408 5129 641 1203 9317 9523 3378 3904 6292 9900 1748 6230 5294 7211 3315 4570 418 4684 9378 3928 4897 2356 5994 1298 8425 794 1807 5527 2624 3665 9106 2848 7329 9722 7620 7156 971 3465 6171 538 4736 4605 6332 4322 7644 7026 8170 6016 3703 3344 1364 4865 3797 7007 7571 6018 102 1590 1169 2716 5804 4179 8301 9485 4351 8328 850 4062 8362 5120 6160 578 8498 5877 96 4995 4082 82 86 9560 4539 574 5559 6922 6256 2721 1016 1404 7792 4532 9172 9488 1029 1592 4200 3297 898 7244 1562 7042 3633 8271 9221 8421 5420 628 6622 174 6316 4278 7015 3426 6278 2313 4705 99 3162 6957 3974 9567 846 8790 4710 1369 5748 6379 8180 5941 552 700 2775 303 6959 2093 4328 4220 6712 2558 8040 4533 9003 1797 9132 977 8292 2124 4755 6316 727 5732 1604 5204 7134 4873 75 8531 4788 7139 7892 7762 2058 3053 5487 5987 1889 6414 8683 5553 5774 4800 7729 676 2388 9186 3089 8811 8400 8908 4808 6162 3351 38 1069 7883 5170 3484 2454 7797 4441 7750 1215 3850 9476 7159 4194 6954 304 471 8470 2766 3929 6764 3649 523 873 6327 4845 8306 4786 3413 188 1604 7487 9108 319 1361 1799 7933 4020 3406 6102 5232 9104 3854 6243 6952 3725 6737 2502 6338 6416 4606 205 5292 6192 2914 4004 311 9468 1212 8291 2158 7443 2136 7108 4639 685 4315 2461 5887 707 8387 5581 1411 2503 9930 985 7917 1101 7360 2570 6383 6639 6014 7163 8441 7504 7495 3848 7031 8042 6889 7316 8233 3687 7706 9045 3876 1474 3483 3211 6688 6980 2899 8096 7282 9167 7477 9261 2508 3518 9071 6327 7224 7514 6486 1525 3832 2473 7825 7299 1438 9926 1707 2022 5720 2727 7956 2351 4441 3976 9219 676 2159 8977 1391 2287 5703 8590 8921 9438 3628 9791 8045 2192 1595 327 6975 9156 6060 3515 9495 1731 6879 2645 8883 8815 5755 2668 9384 9375 2556 7987 2899 8007 8339 4558 5920 3564 7853 8793 1086 3925 4391 752 3021 5915 4013 4220 6222 6248 3815 1835 658 6280 4486 7031 9347 4744 5176 1273 7484 5847 7917 8735 9304 6280 6735 8990 6030 117 4035 7469 2597 5980 6659 3451 7998 1782 2707 4082 6456 6078 5501 1061 440 1024 1475 9742 4951 4139 9296 4495 3530 7270 3631 219 1110 2935 9406 3311 8081 5823 8892 1674 5651 3178 4276 16 9260 5256 2294 385 8151 8836 9053 9538 2716 9058 4058 3761 4650 4197 6047 6266 8507 2587 8999 1551 3649 1173 7487 8976 6437 53 1277 7690 3811 187 3037 3266 6837 3519 7623 2076 2740 6833 5619 97 8593 3263 2224 3186 8881 7565 2597 5071 3468 1053 1505 8746 6976 8845 7771 8523 5247 5713 1645 3797 4525 683 17 6504 8973 4702 7093 9074 7408 4596 508 4644 3176 1028 7968 1079 2264 9061 5548 8540 8788 6589 5183 9839 4235 6494 5065 3108 1320 2018 3914 4444 7741 3669 9885 6042 5202 2012 9709 4081 4547 2802 5268 3284 6567 893 7270 2762 4609 5384 971 1325 7469 3126 264 8953 2459 5765 5302 1040 9629 1242 1533 9930 520 3695 5585 1154 1644 726 7067 9 9607 9331 8203 4738 9779 1403 7260 7822 9830 583 2639 1261 5556 270 516 4912 9194 9882 9240 427 6437 8174 6423 2459 2406 4430 6201 1295 9835 8412 1880 1595 7153 3817 3307 9605 52 2628 4804 85 6279 2478 4091 1719 4170 4381 5653 801 4405 8820 9426 9993 546 9407 4596 4850 7844 219 5475 2486 5275 6496 9154 2289 7242 9426 9705 2720 2510 6105 788 6483 3997 2919 3284 9195 9490 8079 1286 9483 1557 6149 5749 8228 4114 8043 9627 5432 5607 9020 8236 8964 6487 6513 4271 3996 4455 759 3572 2978 1790 2659 1824 3124 6253 5731 4050 3717 7497 1770 9315 2364 6235 5256 4597 7781 7868 1186 656 2928 436 7402 9401 7710 879 283 4608 3227 9435 1833 9833 1825 9070 3432 161 4642 1087 3639 5124 3800 3884 6858 7479 1474 5375 1746 8285 9888 3172 7721 9103 4619 270 941 4683 886 110 7451 9968 8771 3249 3429 7039 1437 1870 9163 1961 448 5009 5306 4788 4064 422 8064 7582 5765 3473 7417 5855 7448 6659 5936 7988 7605 1144 8367 1286 5380 7607 9632 69 199 6738 6393 5239 9764 3242 5473 4873 5852 8023 8047 9061 1913 8703 9628 4939 7729 7777 6998 8098 1608 1729 5418 5616 1568 9273 3499 9923 4759 9278 81 557 4945 8771 872 1932 975 9437 6428 3169 2786 854 487 6959 8713 6016 3169 8797 1165 4684 5748 8750 4735 1274 7057 3826 9468 7814 3624 1506 2566 2098 5448 9651 4255 1522 1027 3170 9353 7052 1983 203 2575 7524 2253 1302 163 9467 9966 381 7443 4717 6925 5694 9747 341 1903 9310 1287 687 836 4231 8511 5017 6856 5282 7843 2886 8366 5843 2542 162 5354 5250 1897 96 598 6360 2138 4049 5723 7238 9765 3600 9188 1199 1468 5647 3815 8996 6110 3774 3766 3465 6482 5393 2586 7573 1135 1394 5020 6021 6458 7512 1485 6466 6757 8013 8788 8516 3860 5263 707 4271 5318 2417 7521 5367 9865 9748 214 3424 5690 1223 3879 2545 7119 1751 102 6932 7119 4978 9849 8883 6540 6818 4057 3301 975 585 354 1100 3199 4474 1592 7232 8712 1916 4477 5027 7600 8333 569 5368 3038 4698 9967 4629 9833 3207 7092 3108 8489 7732 492 7708 8015 5747 5459 6834 5185 3429 3120 3958 2257 463 7413 707 2894 6141 8443 8184 1122 8045 3767 8102 9457 4745 1500 6787 4463 82 7245 9995 2129 8074 4839 8889 7555 3233 6676 3346 164 6308 3746 2344 1004 3613 1215 7450 7552 7952 4251 7531 2325 2458 5027 2668 8804 4957 5601 5399 4125 8496 578 1936 3551 9408 9419 1091 4145 1258 9139 9793 3428 8486 9503 5595 2457 62 701 3002 5379 4841 5336 4494 9096 642 7907 3742 3337 8689 5153 4045 5888 4203 6181 3160 2662 5035 4497 9255 88 7389 3658 3416 4935 1530 6578 144 1915 4807 7949 7618 5598 6450 8742 2759 7124 3576 2701 2313 7848 3079 9770 9308 6043 3016 1932 8871 4165 7730 3371 1649 1650 5424 469 7714 751 9661 1402 5545 128 6828 7415 8696 8366 1431 8784 478 4083 9887 7466 1773 3384 7475 4441 9846 5038 9730 8054 3926 943 7208 5577 5005 928 7845 2709 8769 630 857 1409 2685 3359 6369 5151 3168 7149 6630 8065 2269 2757 2318 4148 7186 7561 1117 1839 9180 8898 4806 4873 4883 7435 9430 5933 2293 5652 7758 7322 2439 8773 6183 5916 2870 6964 7032 1286 2448 2838 2119 2993 9512 2015 1866 7883 3946 5399 8796 6594 2557 3543 329 978 4399 759 7169 2533 8746 3865 246 7909 5074 62 2603 2232 4137 4264 3821 4238 6247 1736 1242 1933 3035 6533 3977 2003 9702 1423 2333 8818 6048 6787 1345 3865 7428 7516 6908 3984 6551 2209 5729 9847 1329 1562 2455 5232 5056 2755 4634 1720 5162 7718 2326 5787 5215 3620 5667 4728 7292 61 1318 8407 1387 8180 6245 9959 1162 9094 4607 406 4790 8882 3175 5919 5839 5126 7780 5913 6684 8598 858 1915 270 8951 5702 343 4811 2286 744 7421 8944 7312 5034 2341 3949 4287 118 6799 8434 7114 1073 6874 6935 3014 6158 672 3087 582 9454 6870 2380 9424 5754 4274 9235 3110 5041 9710 7896 9495 1376 8906 8252 745 4066 1729 8638 988 6759 670 7855 7619 5657 7667 2308 3697 7711 7736 8633 5223 3145 5660 3403 8469 4766 9157 8676 5782 6635 2021 8407 3157 8631 3351 2068 9054 6311 1124 8274 6416 752 4445 4989 976 5572 6142 4074 6774 6297 6171 5684 1521 1957 3414 8528 5837 9349 2436 7983 3061 5486 9055 6124 6421 1214 5311 4053 1621 3439 699 4554 7804 4415 7255 8146 8851 6048 4135 5042 8009 3321 3582 5516 8871 9070 7304 2718 1346 6558 8312 2358 3222 1204 9962 2530 6562 8937 1615 4273 7249 6932 1154 9578 9495 478 2136 6826 9652 4179 3398 62 7976 3247 3412 6215 7695 9080 2990 7875 2708 8721 387 5990 8945 6136 4405 4987 6074 9370 3532 8144 8553 5260 9385 8563 6801 6265 6460 3396 6653 6109 3639 204 4139 2164 4908 8740 5661 9559 7314 3449 9624 7825 2283 6537 4381 1745 6423 9650 4397 7995 1951 7710 6216 1368 1723 8937 2506 5842 6452 6209 9854 5780 6109 4815 9311 2561 3526 6683 4010 6340 6158 1775 8042 109 1039 201 9476 8187 2740 9387 4753 751 8052 1634 6665 4091 7715 7027 4364 6657 2658 1622 8986 5875 614 8510 1471 5747 9589 4080 9204 475 9327 8539 4015 8816 7380 5130 9585 1007 8668 780 9426 6852 6215 2593 2562 778 3039 7273 7464 1312 8519 8265 5774 7455 4149 3726 9380 7281 8702 1592 4402 5407 2489 1802 8229 4382 5671 159 4043 7057 258 264 1628 2097 1057 2535 4112 1689 5551 8652 819 5192 6037 5329 5734 1356 7832 6807 5086 5730 2413 9151 3875 3919 1113 3606 8212 5088 829 3730 1159 240 474 5641 2813 1802 2653 1386 9554 6294 2242 7582 8978 979 5155 9779 5550 5904 2319 2921 7172 506 3577 2479 2623 2638 9786 818 120 7801 4305 7791 6062 9442 2558 1524 9653 3495 8981 7147 8228 4275 3980 5445 7074 8020 8972 5206 565 8169 3745 6495 6862 8698 1293 6286 885 5628 4175 1956 8254 3995 9512 5314 2297 2816 547 8609 5756 4703 4965 4355 6734 8932 6367 447 6276 9890 5080 4985 5342 3078 3101 5899 625 3459 6963 1625 3191 5308 3827 8725 5972 1897 1803 5228 4439 1737 6315 4716 8175 7750 1554 3944 3706 1671 6223 572 3187 341 1516 7693 9113 5450 9462 855 8755 5168 44 5459 5013 6175 7443 7822 7212 7291 7993 8320 4247 4994 7941 2924 8280 576 1869 7399 9193 8152 9266 2131 721 7675 5832 5784 6359 2788 630 8610 4080 4185 3518 3115 9749 2857 6275 7309 7928 7872 1745 8410 8279 442 3408 6575 3412 2951 1446 8375 4147 2650 1361 7748 800 339 4427 9791 7914 5754 64 4691 2310 3887 3220 8753 2713 3010 6372 2748 6693 4742 9853 9112 5771 5364 2234 1173 5342 6182 6684 2919 2323 9003 1830 3948 8643 8164 4633 5044 2815 6217 2156 1507 2251 380 2729 5030 7763 3952 659 3805 8587 516 6534 2567 2400 5688 6437 3715 8938 3186 5675 2557 7613 8772 9803 8385 8113 1275 7069 1693 4957 2087 807 5747 4943 4013 7402 9897 5642 1746 7527 7662 2044 990 4439 2980 8145 8833 7050 7161 456 3638 5168 7446 1937 9606 2452 1420 427 3778 8113 9128 6126 6970 5706 9076 932 5127 8712 9201 1059 2729 5858 8947 1565 4008 8750 6726 6089 8827 2785 5144 71 4974 6955 9367 3464 6971 7346 9336 2994 5948 5721 3009 225 9154 8625 849 4367 4927 3178 4682 8083 7796 8139 3728 7639 6954 6678 2611 8433 6063 2610 4224 4364 7136 5880 375 2481 6387 9813 2379 3793 3757 6644 4865 4426 3001 5943 2139 1289 924 8976 617 2361 9931 715 2179 228 5549 3790 3515 4609 8953 3006 3346 6737 1247 8462 9312 3317 1055 6814 7746 4500 4255 9834 771 8416 9919 4364 434 3406 9477 6200 4854 4242 4342 7210 3994 8472 6348 9849 9592 4171 8532 8794 8761 5289 3659 7764 7052 1502 3109 1712 7346 6510 3229 6997 2877 1336 6660 8040 1537 595 995 1857 6210 8954 7546 9125 5473 5405 9661 7917 1585 416 9379 5219 1270 6956 5840 1121 8285 9309 7906 8658 1843 2919 5626 7380 6414 3851 2521 141 3294 356 9231 4839 7926 5495 1857 6627 271 872 9626 5205 8228 2719 158 9284 1428 5657 4101 7501 3150 1188 9605 1717 2465 7627 3124 6195 9913 2126 7693 2306 2157 2134 8191 6495 5082 1986 2630 1491 6046 3659 5446 7372 6912 6882 9127 8344 6436 5345 7298 400 5932 795 4786 7800 7939 9819 9207 6103 6821 9770 1326 69 8774 9571 3256 7527 3003 2481 8229 7009 2236 6784 2393 9014 4661 2122 8263 3579 5993 1761 9435 6129 8309 3798 2565 8594 5102 7251 643 140 2405 8511 898 2484 2406 8544 9732 1195 6812 668 9715 1492 2451 7467 6338 8494 1149 8530 7314 9778 6470 1286 850 5240 4870 2555 8155 9984 3124 8927 6111 9719 2319 9582 1835 3803 9253 5395 5032 1524 9288 1180 6190 5271 5042 5554 5836 3026 5319 8430 4734 4193 8632 1213 3294 8916 5155 3785 8117 1467 4882 6372 3727 5104 9818 4504 5889 2538 863 3810 3797 9311 468 1048 8190 2052 9116 5776 995 9725 5299 9262 2219 4545 2793 9559 7642 8329 5597 706 5199 3410 729 3554 3162 5603 536 6575 4280 4879 4973 8846 7405 5327 756 4017 2206 7794 5356 8027 4707 8072 104 5424 9203 4314 9000 5288 8286 6230 8549 6431 6876 7400 4643 4580 9933 3763 3421 9579 4367 213 100 8471 1058 8404 9529 4891 3736 1106 8350 2952 2170 2151 9325 8894 1086 9128 9219 9002 4910 4633 8440 5719 5814 898 4797 1207 6240 6025 5462 1659 6234 917 4702 4699 8298 9330 9832 4403 6064 6018 6811 3680 6763 601 5004 169 8157 6800 7220 2263 9484 31 418 4764 2757 8359 83 3244 6028 2161 4117 5673 7271 1705 3815 8952 9603 2847 9761 2425 5560 3426 9266 3889 5373 8917 3244 7393 6430 4513 2212 7156 8219 5476 6672 9741 2930 7345 8982 9719 7071 8959 1304 590 3593 4914 6321 4817 4954 1313 1129 939 5160 8722 1293 6241 2915 1229 35 2341 8272 3108 7381 1420 4517 6686 4467 7034 5609 85 1776 9337 7820 7210 5866 7769 634 67 7028 2417 696 918 7065 162 9687 8576 6324 8909 10 6988 4481 9200 8520 5208 2325 6882 6413 7187 91 8065 5060 6919 4316 661 884 1717 2117 3453 2884 4024 8795 9519 8751 2074 933 4624 2989 7917 3519 9461 4997 1902 5494 5250 3883 9200 5678 9643 4122 2375 7647 2533 2867 1854 1995 8393 2239 5396 7966 8633 6194 2644 1168 6629 3688 9437 4051 4300 8905 2974 1793 3363 6498 7090 4791 6837 7031 4261 8355 9613 6378 6203 6957 4189 3579 5580 21 7489 4336 4220 1397 8777 7876 4743 3417 1218 8094 358 499 6908 8109 3062 5399 8671 8513 7665 9357 9486 560 8122 7289 8474 3242 6099 1434 720 9453 4456 4398 2731 8116 3400 3144 9953 6272 1190 1782 4816 473 3872 4748 7857 8621 8509 2261 6093 7882 4307 1319 8450 5856 6726 4241 1455 8721 3581 6977 6920 6615 8244 2456 9641 2165 6052 8868 6401 6472 290 3913 7265 6042 1644 2374 260 9308 18 4284 8101 565 5997 2606 3610 8558 58 8639 5657 6110 6006 6623 1832 5461 6586 2039 2861 2674 5049 7706 8837 190 9487 8747 6855 9239 8314 9119 2398 7436 1802 8060 2639 5652 5696 5828 1607 5307 8263 6067 9913 8886 1855 9828 9641 1225 2511 4657 6443 2903 441 381 5319 6381 2781 2172 2534 5190 6008 6371 4902 3550 1525 1208 1032 9886 1351 8092 2071 392 4945 5197 7507 2006 7863 6642 5188 1840 5028 5526 1386 668 9428 8162 4228 6666 8181 1045 348 1802 6520 9507 6055 57 1276 7611 7112 5861 6795 6309 3722 6743 568 2018 3648 8801 9676 3610 660 5566 9240 4516 3573 9469 9381 9830 6681 1814 8997 8941 1145 6195 9967 3557 792 3430 9227 828 2199 5052 9111 808 9202 6713 7201 3752 3557 4283 6812 6186 4340 995 8463 2894 3501 2079 8348 1623 1343 2729 3841 7432 9648 8252 1517 7152 898 6584 6406 4271 6361 6948 7084 766 8476 6292 3908 8985 3360 9880 4178 1428 8054 9336 8543 9274 6009 9704 7522 3222 6813 1257 4676 1261 1298 8564 7552 877 3180 5693 3193 9290 2181 7143 1949 4995 4481 2966 8931 3575 2346 1483 7883 727 1155 9980 1069 9992 8914 4774 5113 8892 5382 9126 9348 9282 1256 4387 121 3860 7015 6058 9138 4214 1160 8350 5423 5284 2839 2136 7536 7637 6946 4727 4121 4303 4671 7998 9773 6293 2699 5026 8549 8140 3294 2549 8264 9385 5558 6698 9663 6838 3590 9233 144 8452 9203 5927 8902 5063 1993 3989 3727 2294 2499 1720 1248 608 209 423 5501 5317 2381 6744 4836 2799 3047 5911 1263 3292 6090 2956 306 2223 4683 9290 3227 4430 3356 2485 862 7742 8093 1823 778 5740 8210 2333 1267 9585 9636 4869 3102 3081 9283 8999 4295 8989 2044 5976 4668 9986 9368 5380 4621 1075 4953 9647 4376 8271 2417 2374 1533 6515 6686 1043 1594 6458 9291 4904 7385 1807 4021 7740 5117 5222 9418 956 5989 4681 8031 239 5385 4101 2727 447 9946 2779 5881 5160 4539 1195 7894 7386 3976 5309 1547 8796 1504 2230 647 8737 2577 1714 5712 9972 1420 9503 1159 663 3520 7954 4624 3855 9106 7242 438 7411 5521 769 3954 7778 7854 9348 6808 5914 7591 8335 5440 6955 5921 926 9805 2338 3610 7006 649 3657 2873 5032 360 4532 8289 3267 8037 6565 816 5818 4111 2122 9997 3142 7657 7961 8611 7297 478 3155 2802 3509 6366 7539 3550 952 6234 5355 3177 4065 3760 9579 433 4366 7358 7673 1529 9470 2042 4044 3276 6092 4226 9842 4187 8053 3869 2738 5859 6325 7549 9039 4058 2045 2794 2488 8863 8392 517 1775 8195 6266 3591 2640 2038 201 4697 114 8234 9974 531 7918 7749 8485 755 9384 1652 8097 3302 9745 1965 9749 2284 6243 4332 8404 7882 2412 9887 348 4135 9446 1993 8566 9491 33 9512 6475 2003 5646 8292 3331 396 2614 9509 8072 9806 5504 6910 6992 4197 3450 8835 6406 2042 9648 7368 2048 9436 4207 4562 3785 8212 7777 4242 1228 5662 3074 5484 4300 3166 7831 7123 7237 1291 6431 3828 7080 1750 2223 5393 2207 2957 9194 270 3336 36 840 9178 913 5475 5046 3461 5949 1309 6701 1341 2447 7714 5107 5061 7120 6396 1455 6091 783 5241 4592 5812 7920 4302 9424 7748 3404 5492 6558 8125 2953 7774 7559 5575 3478 5073 6408 3392 6713 8735 2324 8630 6182 2044 5062 7139 882 6047 3235 6232 5018 6651 4357 3438 3622 2984 9151 6021 1992 7341 9827 2232 2894 4050 8211 9784 5430 7980 3926 3317 9831 8136 6139 9359 4726 9653 1981 8318 2444 7900 9083 1330 3593 6251 8138 1529 1252 9064 8520 7051 4084 8010 7522 6158 3549 5968 8723 5653 9613 6414 5636 8440 4188 3017 6465 7602 9688 350 9149 6832 1439 6638 8740 6175 791 3028 3793 7522 8159 3280 769 4394 9789 3687 335 7755 3143 9352 1858 3230 6018 9079 3198 177 3080 3676 3556 6430 4648 5590 9652 5350 5377 7674 4013 9940 3605 5562 6990 8643 4164 1357 9023 9318 6970 9727 2714 2000 4698 2870 6401 9535 2337 7652 8256 1839 5829 1924 3746 438 952 5478 1889 2458 300 2487 7140 936 9538 8838 7226 8311 7639 4661 5568 2985 3010 6972 3246 8322 2593 2478 1406 7526 2267 9876 8477 1115 4010 1248 6754 6718 9084 9122 9399 8833 6500 9538 7685 4050 5908 3112 6102 368 7126 6753 6787 874 7141 9167 2815 9049 6399 5480 4232 8067 765 8635 8463 965 4115 1011 7911 3435 525 1048 9307 4375 2864 4242 4997 5056 6314 342 7485 1968 8104 2757 5170 8892 3944 7825 1114 4535 1334 5066 8391 2275 1709 5130 9531 6340 2259 4272 8138 2832 3734 5404 9087 3144 3321 9946 9002 1849 118 4222 7909 2608 4368 8829 3423 4542 4082 4483 1847 6112 322 3905 4752 1187 5860 536 1593 3604 4178 3341 6880 3013 7030 6663 9028 8182 2666 1328 5430 543 3476 5725 6839 7581 9880 8858 7125 5092 4330 202 5128 9509 6997 2185 6149 8730 7525 7203 7542 2372 7730 2994 1888 5283 9082 89 3551 2054 7736 2609 3356 3063 1261 8325 6885 2323 5504 4926 1812 6168 5563 5699 2105 615 2045 6510 1323 3403 7627 3813 3232 9361 533 6031 711 9781 5318 7667 3823 6035 2904 4523 9257 7454 7650 8687 69 7031 6571 8582 4574 9924 2745 6826 6337 9228 8276 489 5989 7445 218 6580 70 7337 3546 9812 3102 8959 9740 1296 598 5680 214 779 8908 6607 4410 6787 5788 2835 3399 8272 8569 8102 9081 3448 4762 4643 8244 682 2507 4478 8819 2380 1845 7703 4247 4643 6911 8599 7937 1385 4949 4749 4688 9007 6964 1403 6619 1020 228 4607 921 9086 1710 5766 6398 9642 8284 663 3118 617 9180 591 4252 8606 9696 6630 7119 990 3971 7474 9379 9380 7132 2987 3417 1349 930 4312 2827 2521 8382 9329 7147 4870 2960 9517 6592 4694 1294 4058 1527 9194 4210 2265 1429 5718 779 1772 1224 4655 6082 8520 9675 3117 317 3527 6805 9449 687 9631 4546 9160 2830 399 5375 8331 2715 4520 195 4510 2620 3203 4514 850 7001 5303 3214 837 6808 2110 3494 7746 438 240 9123 3495 5260 2125 9088 61 8658 384 7906 8057 9416 8795 8254 9943 1262 1084 778 9966 81 4105 4996 3166 4582 410 8800 6288 1195 5248 6730 7294 7921 5870 5756 645 3854 717 8994 2925 6383 3362 4507 1202 1693 230 3938 591 5751 6247 8959 9130 6964 5744 804 5761 9355 4279 9213 3108 6806 2195 2013 7385 3696 8006 6019 6841 9756 971 199 5079 8683 1179 616 7767 2081 1693 1048 4810 2480 3434 332 7680 6589 2015 6422 8703 7380 5886 9673 8487 2529 7663 9198 6671 9842 6554 4139 2998 4812 4035 5316 3548 7128 52 1998 8095 6232 3456 3019 121 2948 3728 6218 5929 3128 4837 9426 1418 7351 4214 1377 9083 4946 7113 2836 640 5686 9636 9973 5756 4106 7839 9206 2757 6504 33 9508 3314 1596 537 5164 7009 69 103 903 401 5360 6143 4841 1133 1702 9966 8091 1878 4711 9335 308 1115 6048 2382 1594 7078 6853 5277 9901 6419 6785 1070 7574 8088 2106 7961 5865 5157 1791 951 3509 6998 6372 6487 248 9857 3062 8001 8605 3692 654 564 9529 9637 8823 1148 7827 384 3441 9823 4598 4315 1091 2704 3456 6361 5507 6055 7087 4144 109 7393 7170 5661 4930 8913 4151 1107 8358 6261 4128 9349 577 3937 691 9161 6227 5774 236 7470 4544 4668 494 6172 2871 6770 297 6301 990 9796 6439 946 9217 2287 7530 1775 7712 8046 3185 8774 2331 1588 9576 6602 5589 7931 2736 8077 290 1461 9413 2892 4143 8331 1804 3354 3975 5134 1298 7347 5441 6531 110 2776 7687 2110 9985 5360 6954 8143 4398 5008 4765 9588 1723 471 2674 6375 7997 8370 8058 2495 8667 5942 9025 906 9609 4057 8700 7004 6981 1726 2907 763 4851 101 451 6938 3880 4575 6574 5883 3902 2534 2517 9739 4053 4013 9170 5309 197 787 3080 3542 4087 9359 629 5081 4110 5035 6820 5985 9909 974 5912 7123 642 4540 7226 4453 6401 4007 2566 7684 1710 5661 9948 4182 8933 3612 4042 2220 9709 8466 2013 2563 7448 782 751 6453 761 9505 8735 4799 6193 1093 1211 6298 6743 9800 9060 4848 6098 8260 1818 7459 4454 8877 4062 5029 83 5367 9927 6918 8825 2338 2933 3032 5802 7695 1680 1578 9050 9820 5918 346 3166 9391 9619 9619 7443 7705 8474 9104 3896 1303 2546 2717 2597 4295 5299 5853 2900 1741 2459 670 3509 2638 5352 3473 9054 1445 9204 3680 7939 2619 759 9822 8610 4628 5541 5579 8437 7709 1892 2503 5185 6616 8447 8055 8869 9751 2226 3835 9393 1650 5622 2031 8675 6693 1496 5138 6085 5390 7339 2842 8296 9517 1977 2187 748 5317 1762 4633 6487 2037 3185 3377 5459 2490 839 4560 1296 1061 821 5541 7601 442 7978 3048 9904 6327 275 2716 276 8373 6449 1070 4143 5549 5330 1958 3607 4798 7182 3979 3497 2753 5383 470 9812 4483 5792 5511 5000 6109 1606 5012 8975 6424 4725 885 884 57 3919 9580 1291 980 4201 2595 8297 3792 7336 435 3362 3507 4335 5719 9529 1646 2425 3754 4869 2363 2333 7102 4641 9732 2721 2128 4270 768 3668 200 655 7583 2726 1343 1754 124 2168 4455 1734 5251 2900 5677 9921 490 1373 4073 3260 3017 4864 7132 336 4996 7268 7660 6191 171 5482 3620 3380 1153 9055 7976 3693 1263 1088 4707 485 2355 8161 4887 2482 366 5579 1166 1607 600 3945 4448 3950 5045 8567 1356 5857 4655 5376 1779 4632 1509 6935 1924 2944 3703 1790 4987 5859 6746 5444 7672 4274 7510 498 4472 6803 9947 9492 3131 4021 400 5927 3709 6597 57 4652 7817 4526 4032 570 2165 828 9710 8729 147 3692 4200 899 138 6534 2185 5610 6350 2298 7281 6233 2477 2278 7632 5633 9609 6594 2947 5592 6147 1241 9001 4547 7777 5673 701 4549 4291 6698 8655 3303 5116 1316 8266 4721 6532 4178 5111 2335 9412 4462 4903 7682 3252 3859 8241 250 1860 354 3735 763 1731 7650 6078 4908 9005 564 1624 7176 9320 5662 3149 2094 8943 8994 1265 2868 7123 650 814 9337 6017 7829 10 3634 44 9456 6874 2486 2225 1106 9413 9366 1790 6328 9524 7625 6315 5612 2047 6015 9083 7117 9932 1335 2293 3611 7846 2042 3356 8167 8638 1815 9413 1494 8604 4581 5411 210 6545 9728 5194 7734 8617 5495 6108 7691 7837 2932 7887 4769 2842 3793 6430 880 7664 5438 7384 3333 8727 3394 8256 8397 4708 7666 4292 4918 9529 9231 4021 942 5498 8129 759 2093 9781 7702 2202 2113 6131 3614 5094 9895 4967 833 3310 8176 1560 3968 9685 2648 6164 5015 27 4643 7223 8615 8738 7682 1139 4313 7312 4710 7465 9975 2935 4965 4728 632 6637 1557 7866 8624 1548 7569 5413 2066 6362 7514 289 2379 9760 8721 8928 1076 8211 9425 8541 861 2251 6714 8978 8187 8215 303 308 5143 3466 6656 8113 6618 4800 9048 3403 7653 3040 5856 9126 2504 3004 1957 3752 4747 8437 9235 9969 7500 9154 1041 6863 8978 7919 1385 5463 4449 7907 6019 9695 9785 734 5665 1788 7152 3794 551 7272 3881 5864 6132 2684 9462 1690 8905 3104 3491 6036 8985 2184 894 5299 5038 2732 5061 6948 9380 2806 7540 5474 5461 8536 3211 5835 171 6994 6871 5801 2169 1531 3225 8992 9286 1122 1995 8090 3138 3837 2473 5267 2550 6804 188 8545 7982 4797 7494 1818 7977 6960 3464 9873 2025 4599 3132 376 283 8752 3549 4157 8532 9127 848 8343 2778 8109 4115 3240 6534 607 7803 7539 3411 5285 8602 3709 6754 9314 2921 2483 1298 8021 3754 4067 9189 8742 5600 1581 5050 8650 6049 3961 188 2111 5851 3441 5270 3605 845 2300 361 1682 4684 3772 7198 208 8672 6584 2609 5395 4630 2528 3438 9726 4486 972 2326 8312 5826 2160 4674 1768 987 9593 6402 7894 2154 8144 8743 3731 8174 2720 9460 5574 7879 4072 8847 5836 164 5244 9117 8862 781 2407 1516 3639 2375 1751 6788 2020 843 7091 1028 5949 7632 6446 3246 9233 4270 6993 1662 679 7187 9661 781 1239 3550 5495 3819 1778 5522 8420 1492 5203 4346 7111 1147 6155 6792 2688 8007 9076 7715 675 6299 4528 9559 7691 391 595 8381 8650 1888 2267 7673 9828 2769 915 2038 9284 4966 4474 5632 4844 6885 9295 1723 8872 5328 9919 3363 9305 9000 3356 940 3975 4137 2305 966 8871 1344 4205 8876 9307 5286 8574 9826 5398 1468 1322 1904 7478 9048 403 3652 335 4214 3223 4271 1761 472 8907 3373 188 3288 621 581 9339 3720 1778 2243 7094 3701 7402 1305 1066 6384 7056 7237 6287 6232 1914 2866 8491 2651 1229 9313 3256 6185 9051 8048 2874 1118 8512 8258 3153 9472 5240 5736 295 2030 7111 8425 617 8060 6545 9036 6384 6868 197 96 1452 5231 3496 8377 573 8673 8894 1224 5904 8278 1564 8814 572 9247 3156 7945 4070 9994 3062 6606 2968 1179 2335 9239 5473 5228 4431 7912 1980 9371 3695 9637 4575 1961 6472 5114 1627 4929 5496 3755 1897 7831 5295 5090 8767 2632 5526 4387 4740 3030 4130 8404 107 9469 8130 9678 2831 3101 8139 6859 8746 5997 2569 3825 2183 1918 3603 8681 6819 2508 3054 720 4876 7337 3447 4806 2087 832 2583 8570 4460 6780 8970 1 4780 2293 5005 9702 6336 9256 2414 4438 9158 2951 2035 9570 5037 8138 6126 1793 8972 6000 6340 353 1469 743 343 3820 2827 7295 582 1478 1589 429 7865 6166 3153 4493 3992 3728 3001 5438 4670 1033 4399 9574 71 2115 3119 3020 6326 3423 9079 2373 9805 547 2536 7239 6404 1847 9064 5612 733 414 1039 7457 8603 1116 343 2504 2847 1880 3483 9410 7873 4530 3739 3295 5170 2708 3143 5958 284 7393 9467 7909 202 5501 5143 8624 8567 3684 2206 4776 7973 7089 6654 1608 \n3618\n6899 6133 7529 9351 2235 6290 2849 3771 6870 7548 916 6852 3044 2804 332 9528 1190 3649 9905 5842 3201 1518 2823 1458 3508 3763 2458 4237 8225 9488 9837 7377 2456 1711 324 4064 4674 8547 9265 4285 4326 4496 7138 5238 3193 2163 9736 4642 414 4530 6431 1451 9999 2097 9451 9071 359 8775 9059 9620 2060 6301 8541 8656 3884 4983 6612 123 972 2609 2502 9364 95 1405 3495 3981 362 1206 7198 7442 6274 5624 3784 438 4431 8771 2972 4083 7739 2437 6088 5505 849 1105 7501 6129 1248 912 8868 756 8281 2980 5272 6331 6179 5696 9156 8170 8006 2097 4646 9326 7111 7474 5191 161 3781 7092 8877 8076 8495 9942 2670 7128 9853 5974 3516 8705 6718 7040 782 1627 2419 680 9350 3946 8700 9991 8427 9769 9678 1459 999 2500 5284 7618 2176 3741 9512 7841 120 3062 7636 3114 9220 1991 8594 5057 8099 3616 648 6537 7002 4091 9196 5321 7879 1101 5330 8731 7102 1878 923 5446 4684 4324 7737 6085 462 1177 9836 5131 835 6209 7622 5893 3392 9946 8871 3871 3700 1263 81 2853 1202 6537 2796 998 1644 4888 3037 8273 1118 1425 4996 2850 5666 1059 7347 8164 7902 2585 2992 3176 4866 6224 2220 8948 2125 885 9479 7279 1358 5470 1229 7297 1600 688 5308 9642 1713 8425 9802 1892 2840 28 2551 1204 6400 2005 5897 3647 1206 7679 3515 7120 6053 7125 6032 3016 5209 6518 1268 1445 2847 2458 6996 9859 2391 6360 8796 7965 7647 180 4583 5560 8852 5244 4954 914 5063 9648 5837 8743 6549 2895 2318 4765 2391 9676 9007 2751 3382 5855 319 9978 2551 645 7684 9509 6200 2196 4862 6946 6755 7018 2847 1051 3809 330 2805 1062 2617 1076 9142 3768 3210 9347 7811 4551 8581 5606 6706 2821 1110 6650 8311 3307 4046 3333 8994 180 4116 4024 495 3206 4653 8317 7156 76 1357 5763 4566 3076 9224 2331 6412 524 1263 9869 3889 7605 770 8395 7298 706 2859 3361 8207 5989 718 1726 8104 1352 5940 5657 1835 7403 6413 1190 5559 7987 4680 5300 3249 7732 5459 4621 9621 8252 4413 7294 9229 3566 613 5679 1563 4394 1806 4475 4731 7613 3849 6978 3607 7803 8378 824 7823 2512 4336 8753 3443 5025 70 7380 1889 8225 5427 5136 3007 4837 8162 8163 4282 569 8644 162 6289 4558 9422 60 2541 515 8990 9275 3658 3186 1512 5131 8659 582 4268 7718 8634 6655 7643 7569 4695 1488 3310 1405 2901 3148 1465 7725 5373 5533 8648 7355 4496 1734 5768 429 122 9252 8821 3390 3475 8116 5409 4050 5126 1384 9601 6909 782 3822 9277 2748 3684 903 2564 9802 6336 602 2032 5143 8962 6714 8163 9898 8405 8171 4566 3671 2877 5952 865 1549 1772 4107 2129 147 844 5891 2337 1256 5957 5583 6258 7474 128 8930 9087 9353 2862 8243 8296 7306 6885 7106 1028 8233 3161 6980 8679 3284 1721 4585 4056 8227 2521 2269 6460 3291 4070 8174 6732 2862 2942 4889 7230 979 3446 1153 7352 2378 9843 2977 3368 6068 2362 8778 7796 871 4175 5635 2722 2485 8975 359 4189 5555 6624 9009 1350 504 1545 1887 3634 8505 6171 2440 8013 7389 518 6204 2894 8076 828 3612 8072 376 4244 118 6438 381 6347 3952 3903 2767 4204 9729 1258 2292 8893 9921 5909 847 8562 9228 5612 1914 4639 3249 6369 3261 105 8571 5110 7761 2881 8666 7022 9971 1358 3560 4247 9696 7026 9428 8259 8683 9161 760 7367 8281 3678 2781 1768 6645 5510 2320 9037 146 1292 8164 5531 9832 708 4477 3827 7521 3404 5233 6006 644 5993 7146 1224 6531 9728 8418 1420 3639 5110 2408 6356 4464 5311 6497 2400 1048 1041 3227 8519 6101 7274 8064 4257 5308 2142 8892 8794 5032 860 8892 6083 2768 1687 8977 3575 9441 6147 4937 1524 7819 3561 8653 3566 2158 2217 6043 2419 9073 2438 1594 383 8562 6037 9200 9542 2693 3091 5203 6303 2323 1660 8442 1046 3148 6027 360 7739 9397 6106 6843 9827 8170 8279 4614 2173 2805 5527 4412 9532 1948 1415 6154 4327 8827 9554 6800 906 2639 8793 2961 7003 7260 3689 7263 2219 1935 7619 7642 3013 9332 6763 8417 1893 8451 2690 730 8506 1941 8623 549 8291 4728 1648 2442 7960 1770 7701 5826 8840 3951 1424 9396 5737 2888 6698 9149 1780 3172 4664 99 7951 2823 4071 7826 6647 2016 2890 2688 6696 5026 3597 9647 6162 3109 5892 9382 2680 7653 556 8569 1057 3327 4591 5389 7399 3095 2313 3102 4648 9457 3560 3890 9675 8512 9084 9677 5943 8440 9765 6686 1422 7461 7158 5059 3397 6125 1762 5788 2756 7974 3951 3143 1520 2124 5162 3667 1650 8514 5703 763 8789 2654 217 2788 551 9737 9474 4730 7616 9744 5243 8278 9668 3574 7593 365 7410 9023 3985 4564 6315 6820 5011 2455 4865 2776 8648 5421 4794 3895 6524 8125 4636 914 2127 8822 3984 5021 4958 1151 4079 5708 6947 8079 9754 3293 9017 6893 3375 4230 7872 6023 7023 3208 3015 497 4523 7518 2968 1262 8201 2197 3889 4862 4483 7779 3276 4509 2882 886 7595 7024 585 9216 1821 3198 2486 1327 2802 415 5809 4674 4320 1663 1388 2456 3679 9595 5825 9798 8047 4636 2181 2880 592 5543 7646 3566 8526 6534 4971 7443 6133 232 5001 3611 4832 6318 620 3892 9596 200 4109 822 9417 5182 67 7062 4908 2964 7855 1260 3666 2796 6418 6762 6322 9453 8585 6764 4337 8643 7831 9114 9468 9268 4496 7142 4308 6009 4792 632 1258 2257 7857 2665 4245 1425 634 4601 4864 4298 5944 4095 4288 4165 8054 8058 6730 9526 4379 1721 3154 2799 4177 1321 2579 7192 7176 7368 2333 9366 3466 1484 2658 2329 8035 5686 9719 7938 2298 5275 8643 7411 5293 4378 1334 9725 4835 6083 7417 1411 9449 6713 6730 2855 100 7757 125 5124 3938 6698 7824 2365 5200 7165 5852 7527 4858 4863 3546 2132 4390 147 8309 6021 7947 2417 629 2926 1026 7763 9060 5103 1287 4270 6152 1743 8622 7708 1136 3922 4929 5313 9699 5552 442 3600 2260 6035 4281 1104 3254 839 6297 142 6020 4954 4646 5192 5486 3787 1535 9820 8851 4600 6926 9887 3807 9516 274 1630 1511 7383 1456 3256 7954 4609 1466 4886 9316 4482 5222 8016 6989 8277 9247 2573 9515 4991 5396 3630 3948 5236 5870 6504 8324 1033 8461 2061 3066 2173 6172 8994 3062 3543 3551 625 8112 7557 7271 7230 562 8016 4975 3429 4549 1484 7183 2339 2438 5699 309 5147 9080 9936 6856 4213 9919 108 2169 7450 1323 5724 5569 623 1155 3043 7544 197 5162 6416 8771 6180 3270 6882 7768 8459 8318 6464 7904 5747 7226 4816 2962 3067 383 8463 2381 5741 8608 209 8494 8892 5962 3866 6479 9337 2724 7765 5052 1580 4429 4018 2535 4938 6881 1532 1197 4095 2844 6612 2006 5541 808 1307 9292 6377 7279 1240 3552 1232 6597 9433 9525 7301 3705 7593 478 6881 8342 8544 6917 5627 8180 6290 8216 5448 8689 648 5556 5505 2924 4198 5747 3992 8552 6287 5508 5532 9471 7652 8575 1257 5371 9842 6996 6926 8985 3460 3406 4451 4426 5246 839 4209 3321 3763 8297 5004 7792 9168 3253 8200 2297 6262 7345 7401 7961 861 8722 1761 2595 2899 3072 9065 8981 8423 2434 9035 471 6363 3940 6370 3701 6298 5767 9299 9928 8907 8901 431 1030 7351 4070 467 8807 6441 4256 6069 9877 471 4723 4750 3085 7987 9457 9721 8052 5978 6932 8734 9075 8323 1611 5894 3391 3966 679 5518 6586 7607 7485 5014 8184 8287 346 2781 9801 5556 7986 8544 7725 6279 4909 1808 5168 2193 8072 2910 9554 5815 1630 7221 1401 5727 9516 1478 8662 695 8459 6304 8539 1295 4683 9073 5885 9270 4555 9156 8298 5142 484 9631 2467 2606 6123 9647 125 4863 9109 4054 2653 8233 6919 2713 2128 2540 7932 4274 8672 7899 2061 1214 94 3423 7664 2437 3486 954 8739 6620 7034 6895 7223 9089 9008 3989 4378 2304 2749 5967 8293 4895 4716 5034 6726 2328 7780 6501 1225 665 5223 6043 7085 1946 4345 7558 8742 7173 6817 99 6016 6536 8411 3794 2040 9188 3723 2214 6511 6932 2393 1858 6374 4658 2200 9488 1159 5182 1212 2893 2689 416 3023 3314 1677 8126 5890 6125 1206 7847 2904 247 3292 9300 7661 2600 420 7187 7896 2553 5833 9583 7841 200 541 3970 5454 6540 7486 6720 3763 2639 7802 8094 2348 1871 3254 9060 7096 5250 6789 2406 755 8625 7695 9674 2847 4501 7781 7061 665 7667 2366 6907 9183 9140 3280 4807 7577 4028 995 6596 3910 3873 9102 6440 9576 8045 6809 6656 9238 4703 1295 7327 1076 5852 2345 6250 2184 2990 5938 3482 2187 9671 3044 9791 5833 995 1985 6709 6359 62 7675 510 4252 2125 108 6848 4643 9165 9174 4041 6203 7346 7835 4998 7065 1093 9004 5775 9762 8827 6150 3158 6419 5447 4754 1035 7342 7887 1482 7085 1756 1525 3042 6153 4003 832 6518 985 8670 761 3137 3958 7953 2028 4911 528 9895 3610 5493 6512 5751 4004 9940 4575 3408 5115 146 9195 5049 3594 2123 1711 9874 3727 8971 1130 4921 8891 1819 459 1188 4195 4300 4864 9556 6581 9208 4773 9631 5169 482 2861 8679 6494 1376 9170 2352 8322 5281 7461 5026 2481 1052 2389 6341 7112 2586 7433 2942 7775 4392 7697 1745 7935 6004 5183 5532 3909 1829 1862 3884 231 1804 5041 8834 1901 430 9311 2749 9848 2979 4133 4331 1306 7240 7524 4270 8896 3234 1370 149 2091 2983 6584 9171 4850 6546 9653 6494 8078 7004 8143 6299 1676 9811 4921 1182 1250 4166 1885 4729 2813 6465 1058 1214 4884 7802 1857 8552 1656 6201 4795 6551 2367 9767 4899 5649 5884 4395 886 4810 515 8296 7419 9748 5671 7926 2929 2506 6658 5928 9753 9086 5278 6181 975 2341 7960 1623 7011 4215 8758 2921 8882 3758 8887 2879 632 9385 4770 1652 1174 8781 1628 8236 8352 2275 9106 1518 6236 2626 1977 7868 6905 4856 8728 5553 2379 7486 2323 22 3383 8342 4321 3176 4432 8287 2677 3715 6750 2499 1008 3630 3724 7753 2859 9009 6039 9976 4841 3295 1029 895 9083 7573 7680 7316 2273 367 919 4591 9417 8642 7300 4927 6225 5849 7160 2606 2122 1201 7759 7705 7080 7601 44 2036 4472 2216 7479 3399 7220 9339 5697 3026 1604 1966 7248 9177 9989 985 2988 4749 8354 5687 3337 8032 5747 9155 4704 3597 4797 9579 4386 5218 2644 7926 8055 117 8933 8241 2391 8325 7637 6782 7571 9885 7881 3497 358 205 6975 6384 216 8640 4375 4710 4701 1781 1284 1077 6077 9141 1594 7180 4753 3038 6141 3161 2383 375 9148 840 5206 2908 3084 4917 6805 1409 8319 1316 2883 9881 1336 292 7593 6741 9919 4879 5008 9167 5690 7389 7160 715 3866 4452 9863 6955 7707 6373 5078 7147 8691 3675 6511 6038 3218 5376 4909 3201 7638 6483 2299 4648 8043 3415 7826 8136 6487 3801 3572 3810 443 2738 3253 4150 3270 4169 509 7455 5428 3030 3527 1181 235 58 6098 24 7117 8338 9819 1558 1063 1326 8091 556 8433 8232 1411 1346 8282 8967 3945 2104 6681 3900 6039 4192 5579 8254 8951 9068 2569 5058 383 1686 4197 3359 8718 3818 6131 5151 8094 9179 4775 8104 5601 8323 8 2660 8449 2338 183 245 3895 4947 4129 911 4459 1732 7053 2770 3350 2081 9755 8797 2027 517 9059 1473 4448 4695 8190 5594 7840 2414 2577 1022 5257 184 7732 7094 7114 1696 1627 7036 2445 6223 4975 8502 3025 5874 7731 9934 5995 8566 5800 8945 2262 2452 4882 8520 3996 7796 1056 9579 4465 451 2185 6309 8104 6406 5879 9548 6752 7245 3308 9832 8390 3703 9027 844 1010 9981 9618 2135 5167 2836 565 4952 225 3255 9696 6754 6595 8020 4285 2155 9380 4642 9844 3171 9895 9165 6960 8310 6431 6103 8510 516 7916 61 8138 5539 3770 8717 7351 7086 2802 7645 5861 8506 1110 3819 8070 2010 8651 8540 1801 8432 9986 1455 3220 3975 2508 7756 6129 5154 5958 4985 9717 743 9855 7947 5027 8838 7273 7351 2985 4161 2498 145 5256 8599 7351 7567 8681 3419 4952 4023 2125 5578 271 8331 3382 3766 819 4440 3868 7986 7165 9764 7700 7049 8766 6748 7045 8467 6798 641 3398 7799 6265 213 5556 7490 8509 40 6357 9214 1381 7345 8092 9951 8390 5893 1942 9388 5359 2844 8708 3688 609 8883 5247 6936 9050 8407 4778 2066 1886 6869 1149 6005 327 3407 3281 5859 8768 4275 9344 4208 3623 1640 3704 825 5212 9305 7930 2341 12 473 6245 5138 7193 2270 4392 3148 4688 2393 3785 6358 5140 4808 3198 5102 9769 8191 8115 9990 3519 7599 4773 7006 5687 1829 8582 1116 7019 4157 4481 784 3431 3958 1296 320 2087 6724 2648 7234 9010 639 9319 8111 4239 1270 1520 336 1028 7386 4212 4216 58 6976 8255 5144 4906 3773 8588 8861 1652 7178 4237 2348 2008 1861 7844 3948 7681 3710 8227 5288 795 6988 8420 1807 7048 6875 6110 4801 4460 7585 6241 8945 9433 9052 1534 5259 8206 1198 2792 6966 6627 3496 6082 6272 9839 4695 5843 2846 1785 4616 9941 3557 8895 4768 5829 3869 7019 2328 6753 8203 7446 1150 4456 7503 555 3183 4771 9596 3032 673 1041 5038 3140 4343 3844 8401 8931 5271 4301 1435 235 1077 7121 9882 4123 4524 1414 1297 6543 8033 59 2236 1340 7903 7582 951 6727 8475 2289 4937 6321 8059 6882 124 4405 6784 171 6030 9389 9021 4129 9580 8448 9283 6687 4485 9788 95 7717 4346 3904 2197 9467 4440 9885 7138 9267 2235 8102 3738 174 7923 1030 3554 7255 7085 8965 4515 7953 8625 4750 5772 9617 9953 9102 2650 1685 4644 6884 6525 8475 7540 5964 967 7835 9872 8154 6980 1379 9480 3453 5304 5205 2072 1576 5365 7988 1961 2756 7779 893 3636 203 7582 4437 3771 6705 4347 2734 4995 8814 8082 7766 683 3076 7443 5628 8406 5589 2179 8717 7245 829 7407 7506 1995 6688 1086 5925 662 6665 9988 2542 9298 2273 2321 9640 2505 9034 6111 9633 1551 558 242 4300 3947 8214 6697 4620 3354 5850 7449 5338 9932 3855 1935 4375 6620 1016 5270 3410 1936 7159 337 6983 4532 6808 650 9600 2472 7628 7580 4750 8910 3146 4414 758 8751 9885 2652 9535 9547 470 8386 9065 5212 4215 7534 8420 1648 5813 3308 5405 9939 5325 266 3375 1870 4505 685 3454 4515 1511 639 2412 7279 1626 1306 5456 3249 2921 5809 7079 6963 741 7464 7655 527 593 1797 3812 8271 468 6846 4005 4596 1631 1883 7196 4152 4917 4950 8310 559 5798 5178 4864 8276 8973 5882 6097 6585 8842 8564 3046 8111 1409 8596 138 4885 2637 7892 7568 8684 3852 6232 6627 4016 4805 619 6665 7552 3169 3973 9892 1199 863 6468 6597 9747 1723 6067 2658 8201 2281 7676 7745 5796 6063 9138 565 3503 947 7600 9072 557 3151 2543 9813 7598 7834 2578 1240 4934 8287 6914 105 4328 8383 576 6436 9116 1993 9386 1024 6768 4772 4082 7560 5151 9082 3412 7931 104 7715 2158 6702 7946 6268 1571 1787 5463 2176 6970 4139 5724 6117 1430 6470 2005 3331 3662 2846 2115 8582 3668 2877 5499 7234 407 7122 550 6132 4452 9860 6713 7858 3847 4584 9128 5201 4856 5758 1673 8195 3843 786 3486 1624 1006 1127 658 5755 1454 6540 9496 3949 9606 5951 6859 462 6875 4537 8354 2540 3779 9904 2706 7405 2921 6104 7274 1146 168 4238 4985 7401 8314 5435 7652 4068 5216 5414 2853 999 9794 3868 8696 4707 2229 1951 1978 8279 2565 9599 5023 4878 5539 3002 693 235 7285 768 7391 3251 4596 3588 5247 4767 8434 923 4989 3021 502 5625 990 9306 5338 508 3557 7886 5283 4750 508 1151 2945 9249 2965 3032 7570 2224 1456 8881 6754 4424 5066 3360 5049 4221 3523 6713 6979 6285 2592 1066 8534 4302 1979 561 5743 4391 4085 7134 2055 910 1696 668 1259 4619 630 9685 9029 5147 8908 4391 6427 7358 4303 8759 222 1137 1079 1350 5967 6621 9720 7450 1151 4566 2567 3360 4283 8263 6090 5225 2199 7354 719 5813 2004 1669 2896 3872 9825 8501 4776 8592 6814 2153 4333 3423 6223 7002 6979 6772 2610 1401 7191 3439 689 2550 7576 8432 325 6944 771 8344 2141 5060 5882 4520 132 1957 1888 8053 2975 9118 2443 4844 1279 5137 2997 1686 3476 451 8789 7887 230 6408 7043 6804 377 7558 4902 4300 7487 8138 9831 2869 5336 7631 5071 6373 1551 5924 6036 6058 8582 9677 2842 8590 3974 8524 4074 5275 254 1820 3473 5767 3125 1548 3783 4720 7616 7887 6840 5824 1509 306 9064 5377 8 1432 1796 9016 4863 3551 7668 9826 337 6913 4589 4185 6349 1369 250 1515 5826 7098 7020 2893 8877 9025 9619 2306 483 2144 6075 1453 3267 6235 8237 3903 472 2425 2028 4529 1550 6923 5189 2925 8898 6531 6566 4347 210 4712 5289 3747 5437 3372 9970 925 2396 9606 6185 8476 2175 8018 9332 7615 9259 5999 6561 4239 2858 5893 8290 9086 4405 3884 5588 114 4576 3486 1005 8365 8406 1362 1519 1150 4944 8040 8584 2435 8923 1631 5658 1702 5937 6487 9904 7570 8336 5051 3446 5852 2414 2905 5323 3128 7063 6914 8889 6435 2658 9785 9973 4680 3057 3669 9157 3634 9660 8798 2064 7610 6044 4002 6389 1559 391 8097 1743 2318 1574 215 9954 7409 5074 2924 5960 3331 8048 7066 6689 7890 926 2014 4980 534 5636 8608 6754 1367 6953 2764 3931 4320 9688 7855 429 6120 8306 7840 7504 3049 1639 2976 7159 5191 2781 8746 9716 1879 5487 9984 2775 4175 1206 7186 6767 8861 7717 6577 8142 9797 1363 6574 4821 9118 5335 7365 1313 1650 9311 3354 924 270 5321 3876 7909 6179 3634 6747 6988 5322 6796 7017 5647 5956 8890 4324 971 8860 1320 3577 151 6414 833 1292 1187 3093 2356 4828 3536 4671 5425 2321 2683 8703 5121 6818 7375 3778 6720 7630 5315 4121 1365 660 6731 4375 8275 9807 7221 6969 1104 5076 3030 4781 4440 7664 6820 5295 7146 5700 559 5108 1936 7503 7443 9520 4134 3759 3196 2314 1269 2579 1314 859 9058 4658 7271 4236 5672 7039 628 6191 2493 5045 7599 6143 3268 6858 2305 6464 4048 5454 6120 3706 8185 7361 469 3923 9650 4668 8068 6332 1609 6201 7295 9246 1285 6734 498 1430 9211 1903 6576 9031 7273 4525 1864 7954 4102 3171 2432 3892 7467 8796 7536 3473 9397 3 2957 5607 2562 1556 1272 5094 672 8298 6844 9119 4828 2757 2962 7675 5529 5713 1148 8864 633 5419 3659 7710 8353 6452 8401 6407 3478 8482 606 6621 6052 3003 9086 6727 8696 719 8828 3185 3059 8483 8105 1309 8684 5882 8251 365 9634 8542 4809 1178 9275 2326 2845 9896 3987 1552 3475 1790 3410 9216 3461 9430 141 5243 4624 6658 2535 5743 9654 1410 5908 7272 8359 1730 1179 1181 232 9568 881 2702 6267 383 2791 9977 4233 4161 4095 2927 4261 7161 2725 1992 3398 1489 8381 6219 58 5581 9841 8814 8366 547 9454 8649 9680 6878 1462 4422 8770 4922 602 4676 9026 3579 4406 9445 2390 6798 6810 2318 3677 424 3955 3828 7165 3857 4436 5047 2397 3832 1884 259 1275 1840 3280 6629 5624 7598 395 5880 2880 6225 9427 4678 2100 9647 2320 9813 2800 1792 5072 1987 5348 246 5254 8055 4798 3637 8833 2179 1125 1593 108 8522 1144 939 3115 7285 1400 4528 1475 645 244 2467 1752 5197 9196 1853 694 8732 6395 6068 1286 607 9463 8464 947 5242 1651 3584 5424 5730 6504 702 9091 1298 830 9659 9088 2563 3420 4818 6843 2437 9451 8491 1121 6865 6956 7560 959 5275 4861 3782 1753 32 2565 3160 43 3986 2835 2240 1791 781 5456 4575 1320 1417 8900 3746 8820 9787 6455 6755 5649 9590 8831 424 6740 8429 4173 7656 3977 372 7037 2235 4100 645 3530 407 6538 5165 2056 5229 2048 2460 9958 2436 787 6 68 9596 7417 6305 51 5727 1844 7293 5861 9860 7848 645 9332 9203 8431 4399 9393 7102 4417 7472 3713 2176 4953 9702 4324 7997 5003 404 5191 503 7364 7919 2852 4340 2286 2798 6429 9860 4740 3695 4872 6522 275 2659 3622 3117 3042 4182 9738 7746 182 9378 8676 9968 4723 2897 8791 3588 7320 8342 1708 8509 1006 1322 9688 1253 1772 7936 6791 3384 8461 7557 346 947 3984 9719 9728 9419 4207 3675 4554 599 809 7059 5792 7887 2951 93 1481 9121 104 1075 3175 8062 2210 7178 5617 6302 7965 1399 3740 3220 4480 793 5591 8291 3609 4191 9130 9558 7262 657 7179 9210 4489 2900 3654 6825 5911 771 8100 8238 8435 986 3995 7310 205 7274 3193 999 9337 3454 4214 6731 4168 6424 4700 3527 1350 2048 3237 9315 2570 7463 1425 805 5372 1304 \n1651\n2113 4020 7511 3961 1835 3626 8112 8295 2235 4085 8 6283 781 168 4350 1143 2376 9789 8339 7336 5450 4973 5922 3924 4245 4922 132 195 4976 6482 1923 2255 8406 1483 7143 9529 6798 2113 5455 2096 2293 3998 8675 9984 8542 3943 6826 1655 4069 5849 6237 7380 7538 4052 8280 2098 6436 1316 7525 682 9431 3183 9186 9394 9632 2701 4000 2159 234 877 2061 3971 9775 8143 3213 6085 9195 2418 2235 5282 8599 7228 368 2255 7602 648 8066 2189 1585 7748 1744 1442 8044 6663 5419 1954 9994 5216 9944 2089 5105 1066 940 4688 6651 1442 5989 9327 4231 1838 8425 3076 1778 2711 5973 6591 6975 8905 3490 9983 7784 4317 6933 8878 3689 4367 801 5038 4976 2167 4801 7804 4810 4605 7212 14 985 8229 7217 9596 4752 5752 5452 8828 324 8669 2398 8068 6170 9763 1946 4047 4508 942 6594 2649 8181 3405 6936 3636 9975 9447 8377 265 6795 3993 9931 4214 4395 7932 7382 2659 8892 9939 6097 1926 876 1486 7677 3186 2431 8382 2204 3511 9738 4955 2721 1313 2761 5110 5765 7368 218 3187 4284 1391 4525 8090 1003 3503 4748 5461 4083 7134 4059 6901 3099 9341 975 385 5981 7637 4954 2606 6347 9137 3360 3169 2599 1080 3715 1798 3026 4485 8496 1512 3264 3687 2575 3147 1127 4689 4781 297 5277 2107 7421 1584 7295 4325 2515 9440 2377 1477 4391 8417 1349 1186 9836 2681 6039 2820 651 2333 5582 4489 5192 2975 9322 9164 7618 5233 4240 1721 9178 1180 192 8043 3245 7778 5850 3843 5826 450 8716 4697 3475 3963 3288 843 368 1246 5121 5116 4257 1027 1353 1985 6919 752 2957 7472 9218 444 9206 4294 6835 5204 2360 8978 5952 906 3523 2746 1618 1480 1116 2520 5209 6375 1393 9869 8238 2815 4506 6543 5847 4327 3159 6747 1401 5746 7486 6007 2115 6054 1703 4931 4853 9740 8825 8704 3836 8875 6924 5655 6310 4052 2405 7066 3921 3502 4226 3611 7875 7557 2353 7369 375 15 4955 3567 9772 3223 4933 1441 1733 7542 9993 7083 3576 6244 7419 5186 396 8591 5255 6716 7356 3343 1461 6519 5496 8809 5884 7628 9845 6982 2360 1988 2220 7816 4754 5484 4700 1902 2708 9792 9120 5377 1833 9292 1212 5946 1749 3295 7446 3632 4652 5180 8945 1921 3960 5512 5531 8500 39 7992 1930 1382 7546 7556 3857 7047 7104 5437 2936 5449 8823 3979 4298 2018 9349 963 6004 8979 576 778 6567 359 8532 9896 755 4113 322 7941 8350 5656 4175 4725 3036 7555 8376 4519 3225 8412 2492 1967 8433 6198 1129 1151 9635 4114 7806 2687 3373 7765 2986 9514 8854 7767 9378 5345 9381 368 2635 275 7011 3138 8242 185 273 3753 6428 6141 4999 3503 849 6408 8412 5838 2318 2112 7553 7066 7228 6760 1609 7938 1839 1745 451 6590 2781 6454 1988 1828 5087 84 2740 704 5967 7176 5779 7338 6526 179 4587 2310 1663 7395 7570 7128 1911 6010 7679 4443 5382 1280 3550 6340 4878 9039 9565 2535 9532 7189 911 8711 9085 6746 8457 5939 6649 4348 4689 2219 541 9318 8176 3333 9701 7930 7148 2505 6801 5083 8415 2454 4557 6376 2385 7293 8712 4533 4290 9409 3326 8271 9384 9003 5425 8107 4642 3707 9835 2844 6136 6417 5954 4244 5036 2607 9047 4794 1648 5337 9516 1750 7617 1921 2082 2447 5819 3591 4389 7265 1818 8354 6629 1518 7830 906 790 8759 3467 2274 8195 2172 4012 8672 4378 6228 5811 1879 8552 9806 7317 52 8558 39 548 9153 7991 7352 8439 8927 1557 6991 7202 4960 924 121 7772 4481 1365 5921 5401 9695 9179 8333 4682 862 1671 8539 4139 959 842 2037 1450 7317 3124 3488 2133 7830 317 1629 7217 850 9447 1632 8240 4953 9226 3277 8589 9818 7907 5224 7165 7022 4454 6078 9148 6609 7703 8902 3877 9792 312 9953 4560 5982 7822 4013 1364 9357 9079 2109 7350 5486 885 5581 739 5328 9240 6323 1120 8537 6042 2722 1788 9334 4419 7067 2424 3620 1618 7422 3929 4968 6568 9582 3696 5621 3562 3059 5627 5473 7276 1053 7432 5965 9311 6480 5549 1374 4813 124 5998 4872 6485 3085 5932 1627 8092 4144 1942 999 6835 6392 88 8007 4470 8941 81 8219 419 5377 7013 7766 7486 4798 3947 8665 3528 7968 6565 7707 7444 3819 510 6132 9113 440 7345 4961 8616 5280 1666 736 9005 2221 243 8898 7097 1427 6952 9610 9602 1100 5130 944 2629 554 5753 6852 6134 4299 8104 4514 3951 538 6285 2300 7104 4053 5012 3499 905 8690 5166 6249 3940 3453 4429 5794 9149 8405 6877 229 8843 930 8235 4679 200 2610 3463 2179 1949 9254 9274 1071 4875 7813 8717 1147 9102 2013 4691 8020 8684 7621 2977 239 8598 463 7021 5326 2107 596 3634 8969 6208 3375 7102 1779 3878 1872 6065 4687 6938 6783 1725 9210 8228 8917 2414 3220 7325 776 4177 9582 6096 8783 7887 9377 8646 7485 5661 7464 1208 7992 3362 1692 8954 3411 2878 4855 150 8361 159 8076 5468 4561 9398 5713 1912 1840 3997 1945 7049 7269 9956 7216 6856 2007 2855 5660 5296 3512 9346 9360 1843 1347 2975 2147 8327 142 8115 609 8216 2150 4610 64 3374 9946 3289 2147 5203 7820 7065 1494 4887 4297 8787 3123 2453 4252 5925 2096 2108 4142 2351 6919 2156 4873 6359 8013 7967 3534 5336 2702 3486 3752 4489 820 3817 3947 7622 636 1970 5197 3239 3494 764 8878 1344 8330 5190 8686 9760 9533 5316 5423 2094 5810 5747 5286 2921 4097 685 227 492 7966 4690 8021 1926 5162 9164 3152 2769 2865 1693 2500 9576 2158 7615 6762 7537 1155 4591 667 3636 1791 4286 4634 8280 2692 6321 4169 9756 8054 7940 2680 309 8062 1208 3507 6567 6435 6655 3587 4186 9632 2960 5353 8964 2949 8839 2152 1717 9932 9246 5070 7148 874 7905 2126 1763 6257 9501 7101 8579 7281 8259 5497 480 5084 7750 8135 7838 8489 5265 6112 7920 2282 3615 462 4143 9247 1138 7692 9157 4356 217 9158 3648 1470 402 2554 411 6685 9409 1411 4850 1820 270 5489 165 1989 2622 7164 5489 100 7154 8379 917 1684 3613 5501 8508 1355 1451 1526 5378 3243 7168 3192 537 513 1384 7885 9376 4329 8342 5367 4606 2375 1995 8246 1651 2660 7949 6838 798 5596 9625 5321 3056 8510 8536 3929 9771 954 5325 7611 462 6965 5233 7346 7874 2054 2928 4349 7045 3587 9154 3631 3237 6720 2788 6460 9032 1634 6713 7727 9704 3574 2919 7984 2672 3637 9585 7891 7905 923 8759 329 8982 1073 3733 1338 2424 4583 5983 8841 652 6670 8863 4172 5319 5770 3257 2068 424 8915 7665 7429 4089 2796 5697 9456 5372 2532 5203 1877 591 8960 266 8273 310 3432 8673 6710 7251 9357 8155 4129 8759 45 3724 9233 231 9783 9015 3495 993 5223 9015 1520 8321 9671 7055 7600 8657 7680 2596 9727 696 4268 9265 5836 5946 2752 8275 2061 5842 8779 3530 8774 1387 2040 901 6972 3328 3013 190 9959 5044 8281 1927 2828 8991 50 1842 985 7160 9247 981 8834 531 820 1410 504 3973 4562 636 6587 4505 3114 8478 5050 2057 6915 4050 61 4107 8372 4896 9827 216 9713 1084 6157 4660 2757 2228 2647 5593 4741 1707 1936 2692 5200 490 8686 2134 6379 6755 6181 37 6961 1136 7830 3259 7870 8164 1553 4642 5751 3122 9951 7967 7801 1189 2562 2815 5592 9078 4019 6889 9364 1763 8899 1461 1256 676 1539 2293 1182 8178 5970 6646 170 9133 1132 3663 47 830 2126 8316 8941 2818 8856 3938 2002 4151 2231 7578 9733 8351 1589 9313 4933 1662 4740 8260 3942 3270 698 6735 5586 5393 6747 6458 7871 6820 8495 3853 5761 1170 8404 4948 2027 2362 752 3951 7553 5037 8875 4566 4309 3576 958 6360 9457 8394 6950 2983 9177 6040 4614 5581 1912 4705 6410 6373 7281 6158 8892 3884 685 3303 8584 21 7459 8177 4273 1815 476 5681 1294 263 8065 2968 7059 7073 9979 1298 410 4323 9987 7593 98 9677 6601 9479 8249 3012 3862 7682 3061 2212 1876 5944 4184 239 6793 2457 6800 4874 1905 2712 8256 7774 7620 418 8733 2747 6364 9361 7782 3038 1571 9822 1463 3855 9663 5575 8113 455 5070 6124 3178 3538 8097 8550 1276 3585 8737 4888 6289 874 2413 3381 1437 4699 4700 9231 1135 5130 9528 3274 1054 8261 5886 6353 5471 9912 8771 7159 523 7877 8187 540 2775 4762 8565 2031 5824 5206 2515 3609 7589 7989 310 9080 7245 4750 7840 4488 6200 3230 4476 9588 9632 568 1409 304 3171 8243 485 6427 228 1190 5161 2187 3555 5301 8731 845 4088 8688 3238 1431 6944 5108 7579 9574 6666 6798 9103 1732 5977 7366 4400 8329 3970 475 1885 4961 4340 7512 2382 1613 3815 3139 1914 7759 7892 1276 1890 5961 4426 8109 1869 2316 8190 7062 8431 9921 1137 2249 5843 460 9684 9165 7769 4693 9239 135 2966 2236 2343 3613 7225 6457 1403 8932 5672 1803 3175 3333 589 8835 7305 1894 2503 7131 384 988 3070 5721 352 1688 6463 7106 2292 7200 5205 6197 8089 2982 3469 5355 1703 9516 8432 8561 2109 1970 9260 964 1462 48 2500 6770 5870 873 8475 9923 2663 1667 8676 1024 5084 236 3413 2618 5796 2596 5388 3825 8781 4395 8842 5276 708 4137 115 6783 3131 210 7105 4848 1396 1797 4261 3189 1002 9160 4131 7443 7507 443 4291 5522 8937 4547 720 8104 7024 3495 1085 3101 528 6754 364 6885 \n882\n4179 2036 2454 9077 8291 567 4721 4928 5874 4515 3 1383 1693 6552 8831 6151 2197 9456 1368 9555 4617 7091 2628 9531 1228 6621 5560 8315 623 2804 2156 3301 6280 5381 537 2821 1679 9564 348 5544 1792 4686 226 5150 7117 9951 5015 5832 902 7326 6073 9053 8331 6009 1945 9103 4973 4114 3904 7374 6756 2059 1246 5467 3220 3976 1188 3269 9274 2534 1501 3825 1561 2705 662 1180 8032 6667 5829 3753 4753 2934 2065 3656 868 2263 5624 4048 3469 4003 1490 1994 7824 8798 8869 4803 4830 77 5787 480 3452 2205 9102 5258 3865 2038 7724 6591 5330 712 7476 9032 1712 5140 3267 1585 5504 9931 8576 8137 1452 5797 8732 3776 2574 1161 9230 1770 8190 2017 4648 412 382 9474 9206 7903 7501 5435 9643 2027 120 1724 2580 6328 4430 4360 5263 9031 6179 8393 8420 1564 9194 9547 7347 9337 8142 7835 8530 9503 6193 8673 4648 5628 2217 6974 993 6747 893 1259 1045 2288 7439 633 7005 9637 1171 9172 1304 6677 8310 15 2492 3733 6625 9563 4312 9621 9332 472 8009 9514 8092 5791 2143 2057 862 3882 5449 5632 7721 9671 719 842 9014 9575 9349 6499 8863 3794 8158 2863 8593 1378 3986 3266 2694 4410 346 4893 1254 8483 6214 4408 1589 6766 5406 596 460 9798 360 8619 2258 9923 6875 1018 3398 8565 1240 4240 8298 9313 4144 8008 3192 4921 6159 452 7466 6151 7502 542 7804 7004 1295 8974 925 9745 5481 5122 8132 5190 107 2046 5232 6021 8294 8580 925 1974 2678 6962 2255 4749 8805 8908 6381 4027 9595 8356 7881 6592 7865 6204 9759 332 3943 669 8636 6345 3508 362 559 9816 7045 217 9485 7961 629 3635 6349 601 2205 1953 490 727 5215 8555 1924 8489 2357 139 1439 745 6177 7072 1505 1929 1654 3209 4343 3293 4724 3889 1137 7780 9353 3644 222 7667 8410 1331 1006 2452 6066 7468 6634 5028 5667 6120 1886 6648 8357 4711 8514 8422 8809 885 2884 5840 8459 5906 933 8697 7071 6428 9901 1337 4843 5405 928 5896 1451 2792 8976 358 6011 2124 997 1232 8188 2620 7867 1938 9306 3415 7876 6316 9825 6063 112 3998 4276 136 6406 6197 5625 3911 6194 2567 5159 124 3955 4872 3520 5071 5085 1311 420 5725 5112 3179 9268 7343 548 4453 6647 8863 5178 1583 9060 6148 3860 1646 7273 4501 9408 662 6060 240 1850 9794 3667 138 6892 2870 5821 1147 5610 8261 2175 2764 631 6490 2491 2311 7882 6469 2659 6686 2702 9113 2719 584 6323 749 5993 2168 2523 7015 9995 8006 7492 6567 9672 7734 235 6607 489 4653 4597 4271 728 3765 7271 741 5736 5289 6594 4466 5477 7487 5285 9324 373 5303 5977 5368 7528 7174 9829 8983 9228 4113 185 6515 3417 2079 9489 1067 454 914 7263 3837 1447 8476 989 8896 4649 4966 9732 3142 4194 6980 8545 3731 9667 4054 9089 1381 4662 4428 8042 8905 6929 1695 5110 2627 1033 3690 628 6226 9948 322 5663 4378 7095 7250 4237 2787 4732 9223 4100 4783 2 4538 2683 3084 6968 9596 6641 6623 1286 4360 4667 3361 3101 5971 5328 1447 4546 791 6955 2936 2819 452 5405 4140 7555 9532 1233 7947 4479 4520 2227 3079 9539 6276 4969 4850 5843 7934 6721 9663 400 856 4648 4593 4814 5448 7320 1428 4252 3249 2764 7041 1086 2527 5287 9779 1391 2704 8226 9933 7762 5272 2461 5404 1130 9214 792 41 9993 9294 5233 146 9774 291 911 8457 1746 2459 55 8282 457 88 7504 1880 2841 5906 1777 2100 4235 5308 7128 6622 7326 761 7911 9275 9487 1619 6360 8842 6358 3154 6414 3586 8657 9574 715 4710 3126 1901 5623 6065 5760 3175 8329 1631 787 891 5305 116 1693 4265 2573 4800 4918 3073 283 5809 1180 1235 2381 1085 9900 8459 9621 9043 1715 9918 8059 5932 6554 8319 1588 4244 3150 2574 8221 7855 1830 4981 8328 9776 4398 8943 3921 4070 7646 6167 5209 9911 7307 6281 4977 3936 1499 5473 5418 8048 6685 5328 8675 2687 7511 4039 2658 6869 1157 205 9288 4701 8269 865 5241 5737 8585 3592 8247 4581 9789 6179 7698 1212 8399 2373 6898 8176 3619 1795 5078 2973 3644 8352 3029 8373 6380 7220 645 1783 2403 3006 2788 2671 6183 7518 5792 8854 5262 7447 9404 1561 9456 6545 3510 7986 1244 9176 8439 7620 6479 5066 5040 4689 1232 7966 5069 7953 4422 9663 6000 7430 6183 4377 6779 5241 46 2207 6656 7808 9618 4558 2769 8993 9131 5015 148 5386 6811 1851 3980 3962 790 6651 6459 927 7360 7325 1360 936 6047 1308 8345 4647 3037 1320 5737 4447 1382 7628 9187 2802 6996 5411 6285 389 7799 4676 5002 1139 3630 4110 3129 6212 2251 5166 6927 1314 7542 2117 778 4310 1199 7909 6293 8827 4661 930 2491 5394 6741 1309 6701 3520 8439 6440 5631 8567 476 6297 1611 1497 6641 2402 9239 128 1115 7353 660 6685 2851 2096 4005 6537 7738 512 1479 4726 496 6543 8358 171 260 7350 2166 5505 4388 8735 8623 2146 \n760\n3250 7928 68 6204 6523 6145 9928 4524 822 4950 6483 2245 4903 2416 1309 9144 4087 6975 4826 7971 5131 2184 4929 2146 626 5670 7981 83 3386 9388 7543 7996 5490 5340 9092 61 8099 5449 3727 4412 5576 2201 9706 5913 1539 6503 7178 1008 4305 1723 239 2235 1884 3820 720 8530 1727 8276 791 51 5373 516 9858 9047 6518 6378 8018 785 7726 726 7185 4515 7713 6656 7567 6429 506 8922 2888 5251 7294 317 9435 1981 9813 7916 3141 1284 3620 8098 9433 5325 3452 4985 1412 4998 818 5188 3058 9035 6200 9742 7457 1138 9494 7603 9763 5528 7176 2806 648 3260 5772 6468 6492 9826 7048 3040 18 1861 4255 3788 1274 4576 1286 1174 3330 7103 5852 9052 5153 6576 8411 9610 4640 439 6671 2873 3319 1309 669 1356 5149 6878 1437 5797 4096 8602 2296 2121 3575 4621 3637 6354 8743 4456 1181 4339 5668 397 9097 3246 3667 1155 505 8222 7492 4649 2345 8418 9801 3576 6120 5734 982 4312 5438 7379 4383 8207 7115 4649 832 5831 8824 294 6103 8833 5209 6148 9518 9083 6695 1251 3219 263 9974 9426 199 4293 9761 1526 9157 6145 656 4756 3854 8510 9332 3318 9609 5064 3059 77 6880 9265 9048 2380 4392 4219 4439 192 8801 1749 3062 4856 1307 5376 7453 3803 995 2788 6158 1295 6504 1640 9586 9567 3843 4233 820 3381 3590 8187 3971 8822 9749 1535 7292 8410 4909 5963 5079 4410 3132 9531 5048 3780 3332 4014 6601 9262 7786 9751 3150 3287 1968 4705 1843 9833 5807 5922 6123 3603 8103 2813 1249 1778 8758 2014 965 160 9880 7798 376 6268 9241 8679 4418 6725 7677 4012 5047 5037 7666 7368 200 7172 5616 2998 1279 2897 1614 2119 2631 2786 23 8833 9622 6375 2166 1448 2154 1773 373 9953 7880 259 8953 3225 4603 8418 2814 2183 1741 605 7654 6571 3243 7008 2241 6897 3098 6128 9186 4396 5909 9589 1692 2442 9890 8858 1870 6382 687 4349 3665 8969 3833 6706 6324 5039 2360 1804 711 9764 6338 8092 2822 6263 3318 6548 8443 500 9268 9654 5706 6862 3555 4433 1071 1913 8804 1517 7031 2651 3493 2670 3457 7419 5749 467 5058 9119 9269 6106 5701 8469 4220 5416 9738 2243 9681 6918 9747 444 78 9174 2507 2182 9927 6556 3423 9484 9336 4841 2609 4758 7287 8769 272 4409 9459 4946 2914 6395 7765 4608 5043 5059 3761 6733 2245 4352 4330 7388 1930 219 1861 236 9530 5513 4470 4584 8276 310 6656 8584 9189 9584 6880 294 975 2359 5755 5885 4685 7337 1118 1484 9367 9110 2633 4632 2197 5343 3650 4030 6489 376 6515 2372 558 866 2984 2162 5506 4675 3035 7743 8044 5282 2579 9281 1886 5328 2489 1126 5183 669 8109 9963 4036 5949 6638 8607 9309 3293 5768 6060 4430 5013 387 1079 8716 4302 5546 7202 3518 539 5065 9526 7696 6969 5462 1148 8745 6018 2016 8246 8612 1749 3029 8059 1380 5847 5991 7664 2935 1437 3318 7468 7386 4350 6833 2347 9303 8915 8674 89 665 6673 27 7890 7729 1350 8515 9983 538 3746 1787 3426 933 9033 310 6668 2206 1266 5825 754 8813 9979 3399 6882 7010 162 959 2630 5970 4818 8216 7704 7170 1522 2350 5762 7649 8794 8518 4506 7340 6790 5478 9321 1584 7922 9833 4514 1225 8439 7102 7413 6569 2589 2196 9232 5500 519 3355 7271 8149 8392 2094 9332 5613 193 6738 8054 2976 5984 2812 4430 9521 6417 5424 9061 4180 5463 8269 2245 4536 4060 1260 679 3157 4959 1597 4734 1365 1357 3812 9893 1558 8727 3676 4639 3262 878 9211 9872 7321 8529 1060 5043 4519 4295 5327 8520 5715 9432 6274 1553 7233 3420 9359 2692 8181 6492 4370 5021 1489 3434 8703 3028 5515 9563 336 104 6964 1550 7098 3508 9589 2554 9658 4713 1289 8830 3793 452 6140 7954 2045 1955 9082 3335 1305 5057 7521 8678 4612 4204 9540 4880 9607 4901 5293 8093 5518 7685 8540 65 8582 9167 1407 9434 4892 9841 9509 7025 3417 100 2089 6580 9172 9249 6850 9978 9057 779 7145 7167 8604 7217 3331 5479 643 6673 4684 2307 467 1432 3107 9095 5343 3145 175 4704 7925 1740 710 2875 7304 947 3029 7926 8991 3817 5054 7944 4511 9976 6588 2296 3330 2968 2394 8969 1908 6730 629 2699 7108 4273 880 3674 1666 8038 6846 2797 \n8114\n3994 7278 8200 6859 6346 8008 1842 948 3696 7030 1575 2934 3971 5312 5563 7807 1765 4124 7981 6913 5306 657 2943 4717 2271 8387 8796 8267 9090 3165 6786 928 8788 283 2306 1227 7346 8778 1611 3852 9087 3321 6135 9866 870 9314 8072 127 6406 9399 6314 4392 9174 3409 798 8588 9787 1184 7601 1659 9455 9522 3122 1595 7672 799 2182 1313 6251 1412 2424 6755 285 7576 547 8985 8977 9009 5740 3360 9620 8954 287 7636 974 9071 3384 5087 9807 6760 1907 2095 199 5921 5530 1155 8850 5587 5864 6615 8548 8015 6797 4946 4745 5441 4349 3051 6214 278 3202 4946 9118 4956 6945 7346 6873 9952 8877 4195 9462 1091 2438 5258 4055 9293 9458 5673 851 562 7875 3839 7849 6517 8330 8823 665 1235 9797 1116 431 4005 1428 4545 2075 131 3555 2385 4251 4719 7458 3580 5379 8579 6852 2758 811 426 9170 5586 1419 3716 1328 7733 5607 6926 5333 676 7802 9999 4435 9795 6827 9341 6039 796 1020 5609 4466 1869 4871 8749 3210 5736 4504 3569 1264 8284 6494 7266 1908 7064 7225 7604 2994 1627 5416 1889 7662 2139 9218 7037 7932 6146 1392 8153 8015 5355 2936 2949 5532 5176 206 2577 9140 1810 7902 2696 217 878 1133 3260 9738 1578 8627 6012 1100 2456 5868 3295 4238 1345 2735 942 2206 4923 5309 5456 7436 3815 7166 1768 62 8821 849 8292 9735 9889 4293 1968 2523 7342 4914 6666 2831 9581 8454 5783 431 9680 9075 6555 3299 286 8050 7182 10000 1578 3139 5389 7489 659 1675 5986 5947 6291 2021 9318 6549 9623 9006 8441 4752 4867 9803 2268 2369 923 546 3645 2645 3506 1589 5823 656 1095 2643 392 1854 254 1543 9821 5402 3415 7597 9171 6506 7191 2693 6577 8707 4779 2710 482 258 356 2851 9333 9879 4163 2096 5278 3878 8827 2936 3838 5566 9774 8881 878 2402 1625 7183 6684 1006 7529 7202 1400 8348 403 3189 5216 1026 4253 3171 6309 7566 6652 1806 9313 1908 3022 1225 7548 4215 2411 6766 904 5735 5910 3041 5501 9300 5965 6171 6951 7951 4024 2867 6669 2998 7833 1685 1716 9820 7484 2942 391 5005 364 7683 4907 2133 9123 4804 5025 7428 8028 4504 5696 8450 7514 4683 7411 2879 8861 2270 6579 6875 3800 6925 6965 1622 6646 7039 8625 9868 1088 5127 9433 4197 9852 6608 4524 8849 6422 3505 5602 7863 4561 3670 6020 8106 5475 7494 4667 9370 6275 9515 5699 3990 5037 1629 5856 7445 8127 8650 7905 7691 6400 18 6389 5430 6673 1160 6005 375 1139 1940 5078 6236 4273 8182 7203 5782 9440 4136 5980 2335 5711 5633 1644 7864 5650 2141 4849 9100 8725 2744 9206 3010 3126 209 3082 7915 432 4730 5341 2773 4601 3903 1247 7384 4631 258 2742 120 1399 4615 3850 6041 208 4566 7125 3587 8443 6504 6498 244 39 6816 8154 1804 3978 7672 3127 2683 4055 3943 6482 3048 9784 2929 8418 5781 7804 218 7019 6854 7862 9484 4516 6211 5026 4990 3323 6023 2885 8021 16 7613 4910 8783 2732 466 7989 7937 9088 9559 4515 1959 750 9598 7854 9739 1152 7085 3019 9308 1157 3083 9934 7498 9771 6897 6054 8729 6028 1929 242 9544 7031 8203 3089 438 4784 626 6405 9409 9940 9831 5133 7958 2182 6672 5819 5288 2902 207 5086 5409 4479 833 6768 6288 2084 670 7634 9962 3548 5788 722 8977 4333 6521 1235 4233 2170 9897 1810 6933 2530 9372 4241 5493 4421 7704 3849 3368 5255 8181 2824 3686 8772 4589 7249 599 7782 6572 7320 6027 2860 161 1618 8391 1620 8778 5101 4465 2635 7489 3091 6571 8866 6640 8050 3759 4212 2465 5915 6537 3987 2214 109 9598 8271 4103 7178 187 1539 1430 969 3916 8906 2795 2763 8151 9870 4864 5093 1269 7504 2410 3835 2527 7062 4015 9972 9298 2060 9121 265 1599 3916 7713 579 6178 8608 3324 2269 3194 1913 7010 4824 1337 5940 8856 6010 5454 7260 9488 6406 5000 6419 6299 5412 72 7025 9231 3933 1161 846 1179 5926 6021 3600 1200 5985 8757 6216 9508 8830 9674 5431 9610 4164 6796 8202 7547 1696 6004 7695 6326 5843 1154 714 9312 382 5303 5900 8637 3701 5651 6055 1656 1828 6942 8648 3023 7863 202 2507 1948 9665 5211 1289 6696 9176 980 3663 310 2249 5385 3586 6657 793 2190 6943 4989 9762 9421 1147 8620 7631 183 5561 3705 5917 5535 1071 9005 7016 4052 3125 3077 8231 7594 2101 9570 2242 6979 7415 497 3394 9811 8762 4420 4564 9819 413 9101 7422 2797 382 5566 6874 8353 7798 8814 9803 2828 1024 3336 3371 6289 996 7762 6889 3323 9826 2463 3292 3215 4880 2262 3584 542 870 9810 8099 3584 3646 3231 9879 4108 4964 8701 8962 7030 53 1140 2779 5934 3098 8071 3551 7536 1155 6349 1320 912 4462 7080 5230 1878 8989 9559 6468 7998 2651 7997 1128 9573 9449 7973 3195 3650 4817 5383 2175 9913 9776 6710 7870 3481 2106 3216 6889 8815 2984 6637 2678 7270 678 3435 117 1380 7636 570 4923 1017 6626 2686 7957 779 2609 3635 4536 2832 9212 8241 9213 4916 6924 6099 2107 4003 3922 6178 4233 2570 33 8018 3071 6311 3607 1527 1403 8486 8657 769 8853 7151 8082 1806 1426 6186 7300 908 5256 9501 42 8788 5600 7653 9556 9139 9567 1760 1172 4544 102 7933 1600 6775 7869 5194 8691 4421 69 9415 6776 7867 6223 1363 5471 6297 7614 3130 4818 6529 6034 1276 8053 5017 503 7999 3781 5153 7887 6067 2385 7519 9536 5560 1848 7323 861 4477 9461 2814 859 7881 9331 6917 389 9681 1702 4104 3231 6793 2660 7560 1962 4298 5005 180 2234 2564 3345 9153 9021 338 7019 993 7555 3051 3532 8257 9314 5892 9676 6199 8922 7769 4316 6265 2477 3116 7843 2859 9670 2541 3909 3489 2637 9558 8767 1116 2441 1112 4938 4284 3022 3022 4861 4781 861 2037 4663 3419 6563 5273 3741 5965 8929 80 5271 9619 700 4443 4530 4358 153 547 5506 4335 500 4190 5002 9921 1256 9692 5253 1271 3777 7103 880 1772 430 6972 5305 6886 2810 9155 6949 9368 274 6968 1963 4808 2120 3367 9201 438 5975 2674 163 9992 8006 8250 5893 1625 7438 7367 5383 1891 2222 720 5030 5594 2590 4234 5072 9103 4464 6844 1436 9877 9983 9971 7125 9534 1511 6149 8494 9780 8634 5370 5947 3524 1557 2272 3059 121 6193 7577 1912 4878 7114 1507 9399 4534 1841 4912 6082 501 7876 7558 2058 1341 6715 6638 9948 2529 2130 7397 356 6254 712 7804 2796 1453 7462 7698 7811 2639 8608 7184 9778 3771 2247 3383 9015 3148 5882 8785 6531 3669 7992 7868 8816 7307 9558 9842 466 8298 6077 2217 3114 3217 7884 9280 6272 8453 7903 3599 8861 3545 4268 9550 1018 8931 5326 1130 2358 3436 2385 1306 4075 1993 7222 2392 5307 4401 1086 8055 5017 2581 1786 1985 348 8946 5298 7668 7539 2861 5483 1180 4927 7758 9669 8846 4241 5448 4548 8514 8038 891 4756 7041 7769 6724 8527 8167 7244 9212 7205 9076 6976 4982 736 7235 1480 1976 7844 7804 4591 3039 7935 2589 1896 3529 1399 4567 8931 2705 3499 6461 1859 5914 1322 3015 3071 4489 2331 2226 903 8769 641 6052 9343 7970 8134 3005 6354 1389 5754 4954 444 5873 1271 3557 5264 5927 5322 9695 3637 1161 2412 3715 5622 2741 6015 1605 6411 4802 1908 1478 6395 1589 1527 5510 3981 9133 1743 8308 642 2721 2344 9649 7846 9554 321 8368 4650 1890 7183 7715 1687 4758 5235 3810 1904 205 71 5550 912 2092 4688 1634 7575 9978 5405 8208 379 6574 3339 8922 8907 9745 6345 5703 6651 142 7622 9621 4604 1378 7049 4579 5588 7038 3226 5262 7371 9500 9087 5525 4027 8752 9026 7170 3595 7066 2834 4558 403 9110 4464 4084 5132 4675 3210 3777 7944 699 4917 9115 8521 9911 5421 5702 9741 4957 7697 1303 6788 8132 8396 445 4917 4390 3970 9097 757 9277 5311 9267 7577 9227 2837 1333 689 8451 8842 8750 4515 2810 7195 1695 8424 569 321 9426 2485 2421 3274 9417 3320 9161 1668 8047 9219 2619 1920 5894 1 9503 9188 746 4206 2574 1363 2712 1410 9100 9304 6144 6345 6043 5941 8568 3978 3457 6979 9088 9716 4067 6838 3920 1076 5385 1829 2989 7034 3601 6955 601 1192 3695 596 4158 4661 7314 9981 5887 7886 4230 351 1291 7644 3356 6476 5873 5787 50 8709 8412 8295 3707 6286 3218 8727 3282 6794 3861 2063 303 845 4525 2088 4082 6002 3573 1516 3666 2193 3938 2858 1234 405 666 3793 2909 9937 2948 5953 8021 3981 7539 4932 3890 6893 9022 9857 5162 463 6557 164 3421 4494 7068 4973 1773 718 8859 3552 4675 2304 6479 6283 4433 7141 2800 9208 949 2362 804 595 3567 7586 3873 7421 7531 7761 7419 3791 3582 7313 6511 9612 6395 4432 998 431 9884 2134 4195 4759 7153 7836 9359 7653 5761 66 325 8266 7639 5735 2655 3025 8053 3019 3017 5286 2295 4969 23 4908 1677 8483 5946 6069 4110 3951 9322 6031 1441 9150 5405 414 1041 1865 8851 7991 4408 6283 6688 5785 2029 4042 6134 5645 5556 6616 4448 3634 4667 915 1861 6297 4227 4141 3983 6266 732 4999 9224 2054 9785 4696 1532 6636 9266 2944 2790 2386 6605 6303 9781 5265 9581 5435 41 9635 7663 1932 1780 4205 5973 7929 3277 113 3241 6611 6536 1883 9350 9273 7818 1466 2547 969 3330 912 8219 475 2495 1755 7614 9438 8574 1211 2535 3054 4412 4445 2453 7939 5599 1546 1311 6004 3103 2178 8300 170 2463 4088 4154 5754 3142 1551 3057 1156 2892 63 3494 3859 8347 9628 5570 9315 1155 5680 4192 3454 658 3592 8496 8365 6764 4934 1835 9844 2308 1302 759 8645 4617 5984 6953 8809 3496 5763 5975 9445 2987 9254 929 3336 5661 149 7079 181 5107 6101 2739 6637 7358 6487 2916 5999 7747 8616 4197 8787 7681 5637 2508 1981 5896 2456 1812 6806 595 5107 2294 1476 5777 63 5490 4229 9823 3702 1818 2130 7768 7657 8080 9912 344 3492 2496 6991 6885 2693 6515 9290 9131 2814 6456 9932 2779 3451 320 1281 839 1333 9296 2081 5650 8795 8272 184 780 6976 110 3097 9520 3669 8214 7031 1039 6143 8810 1978 7843 5296 7316 5253 788 7852 9253 7247 2441 132 6184 5355 3013 6945 882 5710 2546 5563 2545 8052 1124 6131 7757 2246 6928 966 955 9952 3953 6158 8329 98 9897 9596 2239 9373 9467 5255 2396 7493 2571 9664 3441 2478 6478 4933 1731 1426 5130 4862 6139 8551 24 2816 3561 6032 748 9733 7602 4700 6973 4422 6893 8364 4363 7657 3935 4136 3692 6262 1531 5124 9653 5374 2579 3012 3985 3342 3992 5972 2360 8004 7849 1073 9071 3584 9002 6747 3135 491 9834 8600 9823 3011 9147 3996 795 5325 5743 2937 2125 7444 7412 9412 6003 7921 6778 2538 1420 3456 3106 6443 4617 5107 4043 8295 5378 1070 5777 7940 7294 8339 4123 5982 5898 6809 1083 7390 8216 3304 5489 4477 1003 3692 3873 3523 7266 6468 7537 4185 6605 4460 104 5182 2979 4977 7357 6086 9524 7416 8933 2131 9500 4000 4621 5651 9239 8796 7553 289 2567 4583 2617 598 4237 7825 930 2849 2100 4977 8213 8674 9259 8878 6542 3369 6962 5697 5462 6659 32 4494 2136 8695 3012 3671 8015 3322 3877 6924 1620 7923 394 4669 7546 8577 864 2288 8158 2497 3644 5266 1220 334 6068 6989 8588 4729 1094 2031 429 9157 9061 7538 2902 8088 2159 6187 6626 2090 4028 578 1739 5387 1517 7128 1035 8376 1706 3053 8433 4039 257 4277 6126 878 5612 9560 3491 7117 7724 8987 865 1159 9797 8059 4560 496 7455 6356 3231 9275 7841 7788 1979 4694 1257 7390 1717 3011 9038 8598 8914 8329 3250 1646 4900 1397 3645 7751 4425 778 1244 3094 8249 5534 2216 3679 8908 2219 663 7606 2145 5124 2990 5476 1470 4121 7386 2251 1811 479 1852 8071 9693 731 9001 5768 2203 8067 8552 4935 3821 1243 5469 2589 4531 9367 3369 4807 1779 6174 7503 3119 5246 7560 3762 4317 8072 1985 8893 1646 3694 3938 1628 6394 9689 9387 733 9674 1327 7660 9434 8016 1427 5435 4653 1937 4203 4924 6428 1823 343 7677 1470 2861 1049 1731 7920 8342 8255 9116 7906 7957 7881 1533 5560 4468 7092 312 8005 8898 1551 7646 3358 1533 3596 978 4294 5924 5149 6870 961 7235 3991 4433 8349 7462 2389 299 3042 4393 5928 1350 9457 487 9364 9597 2192 2616 6691 2197 8819 8589 7021 2947 9600 6632 4168 3914 2202 7860 4253 7020 71 6421 6417 8273 2765 1218 1175 7680 4721 7174 9642 8227 7291 5581 6557 5775 7747 5712 4521 2431 4614 5250 7648 9180 7464 1490 6989 9413 2401 7301 2369 648 1544 6543 4271 7222 6253 5200 8376 8640 6195 1759 9884 3487 7774 941 937 3580 6118 8418 3167 9392 897 5023 777 2482 5062 4438 3701 1820 3109 7989 9273 9477 8152 6683 1404 4193 1951 4050 8936 7318 340 6524 372 7068 3663 4020 4996 6739 4931 5754 8921 1890 4029 2956 3833 8962 8694 5237 3434 2627 2224 1120 9077 2915 6973 1881 3183 6247 2495 3713 1814 481 7856 6001 6544 4447 8068 3011 6609 2261 9017 3458 3651 6382 3022 4384 4371 4711 3036 6275 5455 6993 5398 8704 8290 4973 2783 4013 1794 5266 5412 125 5469 416 3612 8859 189 3913 2841 4042 7608 6748 653 2541 2697 7326 4490 8954 5974 9200 6537 3619 1636 9545 6591 4566 4971 9079 6682 4852 3641 1983 6930 9878 7166 1439 6004 9127 808 2895 8986 4684 4982 149 9089 6697 2809 910 1892 8869 6316 9351 8399 3129 2211 8780 997 6507 5375 2 2987 7656 9613 9005 9115 962 7795 6980 3583 9001 7399 3017 3037 5358 4770 795 1676 4857 3337 8716 9181 4884 3732 9645 3032 6960 8441 7302 2650 1998 9133 2620 7546 315 1535 4976 6405 1281 6781 1841 26 126 5481 9692 8701 8422 1007 3426 7231 2689 9853 9617 6634 639 8630 3797 4804 6200 4871 116 7921 3217 395 1353 6165 95 7471 1267 7624 7014 5606 1672 1427 8541 9534 9578 95 5437 5256 5540 3495 543 6346 7590 5384 703 1085 9839 7180 8663 945 817 8449 1885 2776 561 6889 8069 2080 5687 7101 3995 2885 7843 196 8310 870 949 8241 1043 4877 9297 133 8455 8617 8504 1912 9302 1119 2571 5353 9330 8658 6253 5506 6549 7361 4267 5256 3134 3601 7823 5286 6737 7228 5372 6687 6612 6983 4662 9461 8444 612 3291 7183 5727 4156 4804 1854 2598 383 1974 6153 3463 9280 4966 3732 5047 9265 4214 6996 3352 3999 2493 4190 1675 3262 5079 6492 2895 1269 8716 461 345 3776 1435 6040 3019 7148 5361 7473 4314 6890 6129 2241 2533 6468 3596 3274 3203 2366 4642 9638 6506 6533 8918 8663 2997 8476 4239 1284 6576 4972 1588 8581 2250 7867 7677 997 4741 1941 1538 5968 6098 8448 9861 4810 1096 8489 3355 4896 6560 7058 4283 7075 8395 4297 626 5775 5533 3185 4659 3197 4980 9426 9243 6367 1632 1557 1904 1593 8642 3723 9381 3013 9114 9238 3037 5659 2716 3273 5777 1646 6704 199 750 4078 5658 7995 8525 9906 7490 7562 1956 9073 7501 9686 1133 2309 354 1311 1485 3674 2707 6429 3272 9721 787 6379 1976 4783 8781 672 4447 5015 8757 6604 4500 4172 6894 3033 9338 3383 2100 3310 1162 1334 6114 151 6349 2178 3972 9077 8842 8330 2335 9356 9359 9458 2600 5570 6427 7513 5870 1278 8193 8584 1529 5626 8016 6848 9454 178 9857 3044 2776 3053 2480 8178 2642 82 719 3431 1096 7207 1972 1995 1037 5396 1877 6559 1143 9706 8620 83 4737 2794 3539 3458 4348 6616 59 7877 4701 5033 4605 6993 7732 6972 2189 118 5060 6475 1602 8992 4850 6330 6848 7276 2345 3388 222 2267 6849 2906 1714 6184 8765 1725 5454 5368 5608 1599 8970 425 2217 4487 6288 9177 7735 7708 909 981 883 5022 1290 8735 2897 7085 8015 4312 140 2323 9985 6310 8209 6072 7680 2216 7718 8294 8581 1947 3805 9649 6909 4423 2412 8400 1849 3613 8189 1964 6093 402 3669 9277 6854 4387 2028 6175 3673 9122 1344 2535 4766 4529 1969 7652 5686 2723 3502 997 4794 2168 5705 9786 5105 8499 3906 3248 7032 5551 9053 48 7540 7160 8693 3443 8303 2025 6425 8230 3151 7697 774 1281 8932 3966 1735 8873 706 7948 7824 4649 518 8131 6845 6618 8202 6143 7186 894 1737 8098 4048 9215 2308 5239 6514 7465 1115 3219 1625 5379 4650 56 858 5773 2451 3688 2417 8781 1767 2743 947 5725 4690 3187 7476 7046 931 4193 1906 1715 764 9403 9946 9159 1759 205 5 4745 1483 3524 7750 3389 6693 1356 7171 5607 4878 4368 3361 223 4413 787 9333 3975 6765 6963 2780 8749 3281 1692 17 4168 4879 8306 413 7073 7385 6898 9428 8345 9453 2488 4482 4260 1528 6005 1283 6809 9179 4998 7771 899 4055 7413 331 8858 4694 399 6160 3954 4190 825 9494 5977 2841 7862 1562 6863 8116 158 5992 8877 3453 8589 149 3591 1712 2318 6011 3796 1194 5489 3205 185 2960 7168 3896 9306 3269 2239 8780 9921 2890 7624 8325 7747 9947 4418 4049 8179 4328 4734 738 911 2600 203 2785 7106 6567 6358 1776 2775 7043 5224 942 3551 1566 3872 382 3144 5615 8640 1007 574 4488 3201 1225 3208 1058 579 5646 5587 9692 1528 2352 2317 1992 7461 5121 8499 3157 631 8344 2963 1926 8668 5044 1669 1226 1791 3960 1884 6494 6823 2979 2259 2254 463 3625 264 3581 2834 9936 2238 2699 1454 2793 919 4857 3960 863 4801 4905 5756 8339 8378 4902 1898 9097 244 4163 9686 9388 5329 6374 8277 2794 4293 9999 6940 8612 7272 2604 7960 1809 2883 6170 4190 7187 8726 2901 4188 7415 5204 8675 4233 1766 4610 9633 2245 5157 1083 2606 842 4194 9981 1144 3233 2931 9351 4453 906 1910 1680 9372 3769 6808 7329 7602 8291 9160 5981 1324 9159 4018 1751 2184 1162 7324 8573 9462 3184 7004 4625 3066 1312 9535 8451 4628 5401 5312 2528 873 5327 9187 8047 5088 7654 6212 9144 5464 5096 8501 7091 5721 5359 1319 1679 710 9063 7333 5118 5053 290 1070 8751 2604 3670 4236 2192 6097 7009 2645 1729 6970 9140 6481 9211 1230 3993 5894 1935 4746 7537 9586 8339 227 4760 1547 5885 2339 2109 7804 4671 4573 5594 560 3326 5677 5879 5516 2024 7645 1380 6263 8667 8480 2699 213 8277 2402 1548 4918 5701 3756 3076 2215 2807 6725 3137 6916 8448 4565 4153 979 1353 3649 3161 4266 6512 7715 9357 8001 9715 4990 6998 8307 3326 7784 1735 3418 3768 7989 9057 1939 1171 1174 7934 9973 4345 8411 2907 1867 1552 6017 2153 8367 8486 32 929 7915 427 9192 9991 8541 4020 5034 6888 8914 9174 1426 7117 8453 1399 5196 3030 4675 3018 7264 3852 6274 3161 9933 9952 1279 6473 5085 2081 5111 3094 2696 9853 52 144 8142 2290 2548 1132 7598 7076 8811 7744 8857 7571 3380 2369 6199 4626 1893 9500 7016 707 12 7751 5630 5896 6500 6593 8668 953 1322 2402 7706 2633 4161 4556 9302 9780 1738 9028 303 5759 1952 7455 7685 7442 6881 7895 1188 3875 1628 2859 224 9578 2639 3658 121 9007 8541 8610 8274 3125 2938 3684 1938 9480 1288 1549 7802 7672 9890 4762 5337 7540 7059 9771 2212 1727 1436 6671 4733 7490 7761 2866 7525 9383 6775 8478 7806 8525 7384 1746 3443 5775 7752 5869 642 7464 8288 3387 5681 5830 7461 1822 1595 1223 1401 3473 1928 6003 3940 3349 3116 1975 373 5064 511 8164 332 7725 250 9473 271 8073 6134 9717 9646 7098 1583 3184 3606 9287 6747 9217 5471 6481 2140 1297 6399 4610 8216 461 5300 3459 46 8365 6744 5720 9977 770 2151 1857 1133 890 4920 5939 7502 7724 6541 8486 7251 409 6582 4083 5591 3695 4371 8295 3141 2099 3935 4436 3442 9034 5108 3484 2913 9745 9912 4909 2777 9159 8689 292 7222 5454 8203 7300 8880 1446 6556 1079 7408 9634 7883 9311 6925 8531 4180 6443 7376 2237 7121 7180 9929 9159 3356 9189 9689 134 7965 8455 8129 2842 6616 7896 7316 1500 1607 7873 1432 3382 1989 1728 3489 7144 776 247 4932 8330 1537 4811 2354 2591 5279 8645 4129 3383 5296 3776 2276 6068 9657 6645 8079 3496 5885 7741 8022 7939 6553 4520 6799 7256 4679 5001 1100 904 6793 4629 6062 4093 8421 8774 5674 3129 1433 319 6246 3041 8964 2900 4635 394 1068 7407 1913 4017 4984 9374 5419 5905 5201 9659 5761 768 2991 2299 7132 4398 4326 9527 226 324 9782 7238 3302 112 8198 4231 7568 4623 224 7139 6656 8044 9942 3246 3611 9791 8295 4208 1268 9005 2915 4948 7885 3936 3434 7614 6810 1300 5712 2504 4134 7166 4230 2648 1773 9120 3352 6774 6859 3357 9793 1238 3973 7534 6957 546 2345 5185 3996 2771 534 9745 1432 3133 2917 5040 1468 4482 5715 6983 7139 2125 5949 6693 8936 2999 9147 3355 552 5003 9433 3142 88 8607 4599 1780 6388 5503 3997 4989 1390 5691 1009 6384 2996 9936 4035 4955 238 1490 9570 8766 9395 5636 825 4696 5939 779 6085 8763 9878 4880 7935 2903 9528 988 6430 2931 5938 1053 3384 5367 1411 1068 6127 6436 7614 7593 528 2375 5238 8748 7610 9741 459 344 3340 7455 4091 1738 1905 9133 4125 4176 228 1653 9758 6757 4992 6659 2605 5838 1621 8012 9241 5432 9243 5326 6093 2972 915 6098 3150 2528 8133 150 1894 9934 5371 7857 841 7838 30 4795 2590 397 1546 8266 7869 7618 6026 9160 4816 7891 8659 5047 2899 6705 1153 9397 8269 1659 833 6508 936 4200 3656 4568 931 4284 4342 2404 3672 3498 467 6409 636 9782 8682 8765 6956 7206 866 8487 4540 5951 831 9206 6593 7758 3434 1592 8999 869 4895 1687 559 481 2291 3513 4600 3262 268 7302 7243 7746 1316 1531 850 2641 9049 2854 6344 620 8881 5833 9435 6974 1809 3207 9641 9851 4412 2799 3928 272 6876 7982 4738 5165 2451 7093 6325 3577 3263 7072 2374 3923 3564 4616 614 8255 5397 2407 6403 6482 5783 9082 4521 6484 1324 8206 2695 6059 9955 2259 4126 5014 9468 8855 4345 6309 7985 3626 6402 1290 5627 9655 9058 652 7968 6325 4495 2118 546 381 9814 9098 468 2867 730 6516 9927 2349 2838 7252 8388 5841 9119 6367 1411 3844 1351 50 1146 3580 4238 2240 3261 7865 1358 4223 4810 3279 3197 7974 9321 7542 7783 2268 5138 94 6862 9516 2717 5233 2182 313 1549 5769 8268 6319 7182 1253 6102 136 4278 2481 976 7725 6102 6325 2242 3152 8345 4404 9598 6355 3275 8108 7852 1421 7946 5404 5037 4927 629 3218 3170 4548 1747 3981 8447 5208 799 62 5389 9920 5926 5544 4967 1622 2609 72 4080 4685 8581 7770 3896 7614 4878 4888 2606 2963 9833 9400 8157 6899 7696 6490 369 1923 5459 3330 2072 9172 339 5072 3542 3493 982 2148 4304 8067 5111 8889 9175 8350 7969 7504 7285 6923 4260 7067 3975 6486 2530 4352 9154 4586 3892 3172 805 4367 9227 1490 3484 4264 1651 2192 510 5926 1738 7975 8742 4934 2926 1861 8316 1720 5399 5357 957 812 7778 7584 5399 2676 1124 3146 1518 749 3225 457 4505 6360 4146 3274 1305 6539 8997 3869 6208 9873 3225 5660 342 5782 1105 303 9722 9010 7625 8995 5807 7808 5124 4432 2507 7832 8323 1444 6686 2821 1186 9305 8634 9660 464 356 6236 7005 160 2547 6638 869 4304 362 3433 1676 4250 2286 9326 9574 7855 6450 6778 3503 1061 3450 3285 7854 7966 4077 7659 4924 3635 7980 2030 7256 205 3597 3115 8919 3320 4403 1587 6753 8579 8407 1742 6457 4096 8788 6107 8951 329 6192 2112 3526 8515 7589 2870 1123 8133 4714 1627 3663 6330 8501 3791 2143 6009 9798 3789 9515 4722 8539 4824 8514 2334 8551 9131 9990 4401 886 3949 2475 1045 8796 6503 659 4680 1059 119 6721 6987 593 8166 1254 1479 3575 5418 7675 313 2720 7608 9415 5547 7509 271 4444 1953 1869 1972 6985 1409 6176 4769 2270 4836 2371 3236 6332 9067 923 5147 6927 6223 1127 4138 8806 2391 6861 2116 923 3180 1265 3525 4784 6006 9610 914 142 298 9485 6232 8628 7 6977 8010 8593 8824 868 1181 1056 1660 7396 5613 9920 389 5357 3137 4245 5758 5982 5943 1205 3290 199 5610 5550 2769 5738 598 8398 6907 2440 8551 4708 1697 5965 7819 4052 8820 3519 3556 3225 4215 544 4235 2562 6922 6803 7771 2743 7923 7594 6521 6376 8875 3905 6591 7966 6838 42 4288 4748 2026 9621 1950 54 6932 789 4138 8083 6276 8583 6253 2758 5972 3814 9943 8103 7127 4569 4136 3152 1167 7665 2909 6549 9064 4034 9967 4949 3607 4135 4000 5865 4615 8208 1528 3393 8433 8143 2975 3339 6559 9915 7788 9193 7051 5551 8455 3585 9416 1495 146 6933 1837 1546 8067 2190 3480 9935 1838 5213 2315 3759 8663 2909 7049 1545 8433 262 9449 7631 4075 8150 2424 7841 2716 2650 4647 4019 9247 1382 856 8472 96 1264 6312 3866 4147 7221 8773 6531 781 1270 2792 2248 2114 4440 1557 3831 8750 381 1232 6684 7858 9159 2631 2076 2414 7100 6163 1779 9041 1413 4732 3777 9010 9010 7584 7938 7613 1509 8677 5761 6059 5732 438 7524 9603 2696 4686 2322 881 9658 6155 3574 1136 8716 3388 1962 5236 2180 4789 2122 6868 1002 9094 507 7114 3246 2100 4072 7465 3374 8291 619 8705 4462 6725 6958 5646 5423 7736 5529 4088 7532 2239 8131 1543 1934 5363 4126 1939 30 435 2733 2173 7563 382 782 670 2365 5981 5766 4499 1766 3613 1762 4538 9008 4883 5393 9688 7525 9713 5395 3127 9424 8480 363 8078 6713 1672 4984 5617 6284 8455 6646 562 9083 2496 16 9219 1480 6475 801 6312 4992 101 9132 1126 6186 7849 243 9832 9754 9512 3516 3918 5246 3117 9873 7097 5862 4828 7454 7411 5949 5814 1490 1692 6715 1506 9281 3400 8001 4744 4235 4694 8221 165 9734 1161 4488 4661 2695 1178 3637 6717 4910 8392 6782 4787 685 9782 2822 5927 8769 9600 6351 9178 7940 8396 4181 5233 7134 1894 1345 6777 8495 7189 6184 4803 1899 1508 5482 5002 2327 7759 1386 6592 755 5238 8617 4170 924 5143 4504 3433 9557 8221 7505 345 9544 2206 3479 5645 4057 5843 2624 5103 2446 9871 6788 2161 2576 8323 4602 5617 3727 4071 9140 1634 505 7920 649 8942 2047 481 233 6658 7935 9695 8601 3246 451 9044 4599 4824 9065 9430 7931 6697 2345 7764 6373 4326 9150 8553 1124 54 6134 147 8333 3724 6540 6681 7231 3979 2613 4165 3016 8160 6966 8493 6277 5860 9795 1413 8320 2331 933 1271 8726 3134 3173 3632 7928 3839 9956 1514 3708 5537 1571 2200 7877 8453 2883 6299 468 8183 3602 4187 7883 7904 1830 1117 4600 3808 5109 9265 5499 5213 7960 1293 3689 4086 5755 8884 7909 4179 2091 7550 5066 3798 6363 3494 5992 3066 7722 725 6673 4486 5236 7421 5914 1426 1204 9192 7793 1412 2870 5629 2456 3056 2389 2648 9000 7110 845 2929 5610 2924 375 4454 6274 3610 9120 7388 756 4315 1276 817 483 2144 1264 8842 3088 2998 7663 6039 7894 4798 3177 5050 7728 2998 8839 6922 8112 5064 2421 7259 3841 6273 6251 9520 2563 8573 9297 7022 2992 4790 7372 6875 8048 2458 9044 5829 5835 8719 4878 3251 2091 5669 8605 3241 81 5189 9689 8588 8752 2133 360 9909 6870 5607 2590 4501 3464 9771 7812 6857 9874 228 1782 4838 2328 9298 7819 3628 7752 1001 8317 5833 8592 6509 2395 9706 5780 6583 9796 7747 7549 6038 8941 9884 8898 9293 8853 5778 3100 8855 9822 7317 6527 6814 1253 9672 9752 910 1290 5372 5919 1879 9344 6295 6673 5765 2626 259 563 202 2642 9137 6747 1787 2386 2768 4548 8052 5599 2281 634 7213 3036 4834 7740 6893 5881 3590 9198 5900 1007 4770 9653 666 5734 1625 9714 511 5215 6441 3664 2847 4737 3380 6864 2598 8376 9669 1078 1624 2255 3277 1361 3415 9466 4939 6273 8345 1992 922 9428 3211 7435 2952 2745 1077 2535 5944 3316 1874 6440 1050 8568 4875 2088 7703 1673 8591 9016 6303 2247 3035 9713 6840 8967 6175 6904 6301 5055 3689 8070 5231 5865 1590 3806 3962 4888 2783 6400 7965 2967 7653 6509 6022 6268 1936 2323 374 3800 9974 2174 2619 428 6402 5851 9605 870 7561 8134 6783 4377 8648 6355 7408 5379 9348 9984 1894 2300 3152 924 9569 412 830 3676 247 2484 8287 5399 2415 4618 2115 7347 6861 9111 2791 1066 5933 9669 649 9999 7367 2871 6877 3419 722 9133 8512 2027 196 1 1188 2806 8651 8759 8910 2501 9855 6782 4212 8973 7760 2758 8681 7867 3062 3650 7315 6525 5937 7051 2060 289 5545 2732 8735 1126 1166 3117 6516 1157 1415 330 8197 7378 7736 178 8540 2820 4529 728 2449 8214 5055 108 4009 1077 6686 2834 5533 7385 7124 9248 1507 2631 2781 199 8451 8922 1637 5434 6694 1055 7868 8457 453 7142 2893 9764 1601 7664 9775 723 3596 5459 5606 8797 7613 8735 8493 3425 6236 8001 6660 820 9159 7539 1090 8103 1901 5090 8953 4923 2919 1811 6741 2087 2831 9492 1249 5311 8971 9737 6036 6139 5398 5118 1446 4992 910 3820 1134 4922 544 2014 5648 776 1647 1460 8386 8473 8022 4356 1577 6626 7342 2053 7737 7704 9802 1592 5104 4822 1383 3114 9214 2036 8493 8400 1800 9512 8178 3801 424 7517 8305 5769 1741 6081 6423 3103 8474 1102 2402 8052 4239 8545 6933 9196 9369 8981 3968 2662 6337 749 8503 8427 9143 8197 9273 2438 7023 4309 3943 210 2186 5795 2723 2168 7075 2472 2435 9690 5076 4296 1065 2930 282 4277 2949 9993 6347 4165 7918 8076 5537 623 9502 913 5149 3766 5110 818 7029 8620 6054 1468 5026 6285 5477 6952 1373 599 4572 6641 6935 9815 4880 1951 9960 119 5210 5202 4552 4450 7399 1683 5718 5122 1914 6716 3854 7063 3234 397 1240 7788 3228 9326 8572 9293 1378 2154 948 771 2111 457 7086 996 7951 3121 7328 1638 7797 351 281 5860 5008 18 9458 6169 6084 7455 3825 1821 120 1903 55 7825 6766 6880 3349 6032 2764 7094 9656 8087 778 8952 6113 6507 1971 510 2439 2426 1800 1410 3967 5858 4163 7201 9046 9587 2475 8942 2169 3589 3543 1889 7481 8179 2559 7416 6956 8157 8203 8950 6062 2760 6108 7252 733 9873 2695 4377 3512 9982 6436 4416 937 8934 1134 4575 5750 1508 2304 9664 8557 522 7686 1169 8835 3137 5178 4934 3994 7582 3780 6610 5177 1035 4717 7001 3131 1997 8405 1040 235 4152 5162 8573 733 1367 7151 3107 946 7544 4272 9544 1298 2534 3654 1529 4191 2073 1105 6594 6154 1246 7170 9280 6851 8318 901 1739 4318 2300 8524 7652 6429 9092 4732 249 8092 2407 5734 7320 7667 9022 6908 9542 400 4139 8391 5956 8178 3985 6373 7886 8460 264 3691 1275 1896 2647 5613 1303 9013 1615 2581 8667 8746 1696 5871 3845 7439 512 5644 9679 3744 8115 4881 5121 442 3469 2284 2820 8818 4703 5041 1714 5455 2422 7409 2072 2992 3846 9392 180 1850 8959 4919 9459 5179 2301 3513 8328 343 5323 3626 647 6744 9804 9861 5513 9150 7751 6306 2109 654 9300 2499 5332 3044 2209 2598 6685 8574 9021 44 111 8517 4067 5860 2326 6459 9058 9606 8462 2604 2942 557 3083 1188 690 7906 6855 9633 2859 251 4020 2114 9594 9854 2267 482 1548 6420 8749 5489 8581 8658 3958 3314 2642 8906 6621 3388 4584 9200 8248 2847 2641 8317 2284 4449 6022 7448 1382 1619 1151 8421 1703 2815 5910 4984 8348 373 729 5110 2965 3400 7309 1009 1740 3583 6458 9750 7243 6042 6720 5789 7008 9163 7176 1661 1116 6900 5825 833 1435 2813 3096 8628 8946 2061 1180 2259 6666 437 9828 8260 8399 3221 2145 9832 4736 6382 8117 4039 1045 1649 8403 7167 8524 8503 5259 4295 8237 6981 9026 9657 4103 7953 140 8943 3201 6023 7697 7403 6737 7177 4457 1813 9087 6885 5118 9951 4129 8512 5915 1706 3701 2573 4486 5558 2035 1594 4083 1274 4285 3669 7702 1792 7979 3117 7436 6408 9732 8223 3648 529 6018 4010 532 1384 2186 418 5530 3297 838 8156 3201 3865 8275 2363 169 5631 1822 2085 6400 2194 6018 7312 1137 6340 1560 3761 8313 2398 6095 7792 6043 224 7401 2572 6307 8770 3482 6674 776 4984 6711 6106 5259 5954 3165 2139 3765 7461 6261 7305 319 3565 7609 1297 4857 7197 9810 882 1287 7247 471 3471 3852 913 1071 6291 7565 7960 5058 7445 3233 1998 9028 1190 2669 7166 3242 4083 2038 1701 9786 6825 6078 7179 5179 3993 195 7134 1562 1502 6389 8534 1477 7816 6230 5548 3782 8171 9826 4815 357 1049 4416 564 7565 4009 1884 9366 6296 4314 9870 3905 3311 5802 5408 2183 4764 6470 2544 7296 1924 1889 1988 5207 527 9580 9818 3832 9962 6700 3768 1257 6942 1536 8198 2986 5922 7828 1785 2759 8488 7881 5076 2226 3547 6952 8255 3933 1798 4537 7215 1151 817 1759 8919 6017 4805 256 2209 391 6627 9472 5343 1833 1141 3447 2067 2877 4601 3800 2978 7847 3845 1466 741 9868 2297 9342 9490 7000 4518 6830 9549 2205 1435 7467 6735 1522 3806 9791 7077 2428 6053 8159 8315 3451 2203 2758 22 5270 1633 1687 930 5237 7949 6214 4342 8571 8847 1363 2607 720 7363 7437 2446 6559 7339 1405 6599 459 5332 1596 6891 9655 9559 5761 6591 9097 8826 49 5087 6959 6074 7644 1821 7302 541 1634 842 371 4866 4250 3416 9321 2355 4371 2712 5722 7755 356 9750 2895 6292 7543 1436 9801 2647 2303 8973 9946 7146 8096 9820 7673 2074 6897 9750 7489 3473 6828 6185 3326 548 7507 6089 166 482 9428 5211 7813 2478 3851 1348 9563 1397 9026 8700 7978 2074 7159 7383 447 4786 4075 3922 7992 5313 6746 9120 2246 4205 660 8818 7280 5734 8800 1150 3917 5085 9558 8461 1194 4753 7460 4783 651 1358 5771 6637 312 3642 6832 8101 4064 3811 5100 9982 3455 2930 5031 1444 3514 7530 7089 2026 2656 139 4690 2441 4044 1190 1533 5535 9187 7641 2451 4629 1219 3625 1659 8618 7711 7572 1343 8691 350 8937 2208 6558 2097 7645 8807 6469 4380 3786 853 1179 5565 429 7551 9835 1009 6097 2050 6820 4282 8964 9260 6511 2527 5837 594 9320 6186 8598 5652 7638 3568 1584 3245 1413 6832 5951 5874 5427 8947 3695 7514 5541 5812 2192 4886 8371 3152 2196 2085 4515 2203 3870 6181 2939 5078 7166 4596 7705 9074 8490 2599 3025 8489 3426 917 7104 2616 7074 7609 4239 9216 3677 4732 5389 5649 9207 9360 2978 7480 9740 3721 7762 8002 1093 7686 5998 5319 9661 9010 8966 3672 1349 2422 8559 7460 555 3817 7045 9985 8768 6622 3719 4467 4411 8566 4411 9500 2451 147 7584 5446 9304 215 8370 494 9323 9623 8635 3418 6077 4318 7400 4157 7664 6322 4303 7654 2492 6016 6930 1075 6222 7127 8796 5395 5529 58 8319 9475 5263 2327 5212 9590 2226 1519 3388 8349 5584 6812 5610 7536 1564 4392 7660 9329 9514 8880 3685 3864 4989 6606 9575 2672 6451 2550 5010 9537 8598 7904 4744 2050 743 8079 6700 7851 3244 7580 6496 3101 1816 840 4667 7484 8922 5625 9548 1569 5128 9464 9430 1976 7963 8005 5916 5263 2638 9117 564 8043 6879 4501 6498 574 47 1015 5039 1988 1090 7776 6263 4569 9577 5147 1885 907 3857 9748 4043 6366 8496 4519 9136 2607 2732 480 4242 2361 4530 8955 7971 5994 8555 2593 9084 7676 1821 5487 1242 6983 8693 804 47 1672 9688 3 1104 6299 2022 4546 9741 6527 5756 2355 4419 1289 9896 596 1435 9181 3332 2306 3777 1866 9546 2733 2029 1252 3352 8127 9414 314 1553 1626 2860 6639 6852 8635 1610 8498 5244 2769 6633 5375 8469 1940 4635 2973 214 8 3756 7068 1310 9908 3462 2825 3213 7675 6163 8164 228 1444 5464 3815 3092 2250 4404 4205 2062 2414 7821 5671 846 8210 9297 4985 5004 7901 5632 4208 9147 1579 4324 2720 2283 2396 303 4347 4073 4479 5159 556 6257 4446 3471 5842 3430 6020 7726 405 6891 1525 4863 3572 2087 3091 379 6544 9510 3423 9572 1106 5406 4749 1694 5985 3204 1106 5892 143 4690 81 5081 9731 7259 7933 5224 4544 8684 5264 7642 1143 5392 8892 3485 4659 9143 6294 6914 1779 9494 8477 6807 8721 2491 4656 5588 3145 5411 9563 9563 2275 8304 6328 3325 3707 9821 9281 4072 1400 5025 7929 493 9931 5647 7671 4643 7303 1687 4413 6736 5167 7320 5601 7871 4619 4699 558 6590 8074 7116 1699 9566 9456 239 8805 7345 6107 2494 8174 4877 5088 4975 5322 5774 9469 1414 9841 5377 1741 1431 6576 1886 9941 4960 2175 9878 4728 1569 3447 7925 5603 6201 7829 2440 3352 1015 9430 4437 5907 6164 7360 170 534 7993 6518 2031 9809 2368 4463 1775 4559 5846 1059 302 37 7993 8859 7433 7796 7688 1895 9188 2016 3228 168 4607 4208 2193 8009 2653 415 578 8079 9903 6908 6915 9865 502 1077 159 228 9079 6885 1491 1536 9511 1310 549 9668 7244 5971 8148 1451 5202 1527 4428 6770 4838 8023 6982 5028 570 7309 3381 7120 178 542 3777 6898 7930 3360 8112 5385 65 3686 4950 1452 1097 5884 9544 8152 8520 6199 7020 9130 4518 5909 7298 3225 7459 933 7005 811 5554 2794 4919 7161 6926 736 5859 6051 1723 9401 3934 6739 2473 4492 1888 6057 7672 8865 393 9936 4352 7009 8804 3090 5801 5349 4985 9496 8131 3300 8733 5885 2007 1269 2281 3729 7330 6089 5040 6010 994 4739 432 9415 512 5737 9768 2626 4386 199 5618 916 2648 3598 3834 8331 4189 6755 5364 3972 711 9357 4393 8299 3220 7345 3157 694 8284 7860 3266 6978 1900 4824 3468 8340 9667 9767 2352 5195 251 4724 1976 4538 2479 7917 7753 2386 9981 2512 3825 8088 5129 4620 7256 1088 7801 8936 2166 4687 8400 8289 4358 5598 6554 4847 6802 6001 5470 2421 7163 2163 1198 7707 4623 6568 7851 2971 5648 8513 2073 1655 7551 4402 4373 7229 8500 1836 8378 8913 2731 8459 6232 5751 9937 5774 9520 199 2758 1383 4279 7106 2338 3257 7193 767 8275 4914 3177 8703 7470 1421 6800 91 391 1881 4028 7736 5412 8250 626 4206 8346 5816 6538 4361 4395 7352 2569 3350 5709 1390 1850 1838 6532 265 1094 888 5711 7806 8091 8928 7897 6494 6196 7299 3702 1634 1145 9063 7097 6857 8888 4875 85 5543 7620 436 5479 3754 4524 8773 9139 244 3706 1479 6412 9306 4128 5690 4048 6609 7143 6819 3733 9664 2933 225 5770 4746 2160 9088 588 3177 849 2437 2730 475 7523 9563 5131 3287 3904 2347 6888 2750 9008 9826 1381 6797 1846 5118 9307 5272 3790 6789 6107 1195 4155 2807 6964 384 7855 3030 7979 1824 7343 1045 7857 524 8328 1332 7308 3887 1729 9105 563 1513 3286 7441 1937 884 7845 7093 669 7044 2904 4775 8170 8895 1278 4520 9091 2681 3148 144 9137 56 2460 5500 5814 1493 4333 9922 5760 9766 7278 1210 3287 1748 4799 645 2287 6058 6774 9871 1538 5715 614 6376 7835 6850 8682 7794 6144 3030 3382 2916 2925 9954 3984 2200 5840 7022 5671 6346 4152 1401 1801 1397 7368 8428 1793 5657 4832 4183 9686 3499 1809 7294 807 9581 4348 3395 6849 5370 9972 2478 4034 5808 9239 2096 2656 7022 254 2426 3937 1877 4032 1286 4059 7057 3139 8837 7520 3196 5802 8580 1877 8323 980 5354 9126 2839 5730 3228 5284 1557 8765 4391 6497 8530 4239 2197 5687 5994 5424 2289 8858 7325 9398 8762 457 7833 9666 3844 3805 3808 6992 7479 7302 5926 6327 3672 3009 2269 8475 8297 1016 75 5885 9383 6854 6595 9601 9128 237 5396 348 8610 6057 7672 7677 3837 5899 1266 9954 8913 6809 8576 1902 5304 5317 6541 8381 3980 8172 4663 7603 2543 8576 752 9593 5505 7679 6951 4694 6872 3085 1369 1496 4231 9039 9935 8873 6962 5540 2864 5871 5370 4009 6676 7239 4672 2056 3381 9231 7084 8990 3931 5750 8031 9106 5680 9635 519 5701 4176 6996 7393 111 260 8001 7899 5000 3482 9713 2172 7601 2488 1072 9216 8517 3348 6243 3534 3282 9887 3058 3065 4404 1850 3810 4276 4373 3285 7293 2543 148 9024 1951 4261 6101 4006 5608 9822 7164 305 1218 5535 6931 9453 7294 5108 8013 3429 2375 3130 6754 4599 6492 367 4529 447 9905 7301 2029 2965 2311 3871 9496 3984 9450 8778 8432 799 2171 173 4681 8123 3906 3847 5894 9822 3596 7636 7485 8192 5029 4855 6401 9446 1265 6083 4810 2755 1317 9036 7499 943 3781 4317 6208 6393 6670 5544 1710 6601 2578 7963 7480 1589 2481 6768 2462 6 2233 4322 6910 867 8281 9992 9522 1156 1182 1266 5326 9791 7250 4765 9909 8756 6955 3380 2342 4610 6827 8992 3825 7932 8948 5954 2548 7714 9290 6918 8138 667 7150 4291 8778 1428 8874 5733 858 531 4378 173 8210 7705 7880 3421 6183 123 1313 1580 7307 7341 519 2373 1308 5891 6116 3708 7425 7594 2143 2774 9489 3107 3224 2626 3253 3851 3913 6165 4779 4445 1394 4413 7538 5700 7143 640 7697 3948 3554 998 141 1364 1066 2281 5089 7911 6829 8018 8201 829 41 3746 6845 665 1544 154 8613 1613 9524 2576 6006 554 5289 3261 8946 5770 4726 3758 5705 3015 8800 3683 9186 736 2341 2923 9779 4339 2352 5012 7832 3562 5923 3556 193 9349 2849 6939 1757 4274 4963 2385 6525 1434 4314 2247 5251 4354 4346 2565 6405 7218 1505 1282 9721 617 4587 6555 8389 504 7448 4488 7619 2424 3714 3769 6745 5382 8199 2355 1373 8868 4869 396 4043 5170 7042 7447 9358 259 2208 189 6173 6754 7735 4996 317 4538 5950 5517 7291 656 6165 1798 8170 2632 7888 6894 2070 2243 7895 3238 465 6768 5514 6290 744 9511 7977 6576 3256 5603 645 7531 9257 3489 4270 9883 8283 4225 9268 6124 3304 5444 1182 5374 5314 2442 3020 2979 3166 5437 9235 6603 9758 2968 1734 4644 427 3788 7273 454 2639 8406 6013 9644 5163 4265 5011 107 9593 5344 662 8961 4845 5508 4195 5364 5001 9493 8055 601 3763 1397 1891 7061 4976 2264 9377 3015 745 8902 2944 23 2345 8240 2780 1958 7112 7922 4800 4979 6475 1544 9010 4764 9123 841 4242 5975 9686 8730 9642 9634 5855 2125 5392 5827 6409 6104 8501 1484 3789 4154 7279 4253 1653 1439 7992 7842 8953 7757 9553 9583 6430 7655 5644 8831 917 7903 3006 5981 2841 9704 8565 19 6771 7001 363 5600 2603 1522 8119 417 2113 971 9370 5578 4386 8974 6999 9718 2492 3313 8910 1070 9866 5490 1745 8597 405 9926 7712 8476 1318 7502 8993 360 7186 6682 6439 8409 8225 9094 7929 5518 7949 4753 5256 4911 4853 5537 2123 3285 1169 4510 7057 1556 8919 8905 1432 5072 7428 4663 8453 298 17 8821 718 9485 4438 1285 3849 8127 6909 328 5410 2475 6538 9458 4013 8623 5104 4126 6221 1417 7071 7917 7464 6962 7857 2805 703 6628 3215 5354 6306 7747 1383 8466 5199 8424 1772 5371 6157 4160 9695 6237 5720 5903 2618 6937 1303 218 7625 8170 9634 7615 634 1341 6531 3323 9374 1886 9548 6358 2879 7319 8107 8811 4943 4356 7331 2389 2597 7820 4192 7793 1359 3776 2279 6326 3147 4912 9137 1407 199 8891 903 2368 6346 5561 6631 9093 5716 9437 9133 2946 4020 3838 4177 218 6077 6183 7496 3376 9082 903 445 639 5193 5894 1233 1484 9052 6358 7222 2745 9662 4919 5547 8498 707 231 2980 2267 7516 7138 238 7930 8529 3680 7158 4380 9968 409 5508 5391 6355 4164 5972 1348 7951 930 7655 9138 3167 8476 2674 5526 3455 1232 3769 8440 4489 7470 7913 6179 1435 7122 6620 7152 9995 4196 9812 6412 1418 4546 1898 5437 6528 9430 3670 5020 7755 3062 2172 1423 9301 419 4897 6544 1049 4726 5629 5994 1708 4647 2482 450 9228 8243 4240 1698 9660 3062 6869 4628 8618 6247 1888 1723 7475 2659 5534 9736 5709 7127 7715 2860 6445 2394 8438 4628 180 6072 9559 5823 5873 8428 9023 2896 8300 2964 8731 560 6011 2442 5348 8419 5023 5680 3003 3177 1340 3869 8555 8718 5599 3089 3721 875 4794 6177 1816 5310 7891 1492 557 9793 9765 6017 3393 198 540 8199 6560 3681 855 1499 4975 7800 6181 8255 9866 8841 3543 837 7881 8577 2458 4588 33 9263 3306 4167 8257 3737 1109 6306 94 9641 3757 6064 2718 4824 9497 5430 1618 9971 7352 278 2271 6390 9282 6420 1039 358 364 9980 3524 6006 8141 8660 8836 2258 2676 920 6842 2182 3409 7343 4215 3850 2025 4147 6988 8675 3453 4648 7767 1262 7555 7732 9420 1811 3458 2134 4776 6288 9302 9522 7247 1970 8971 7128 8224 8167 771 2517 5156 4698 2238 8602 4538 7952 4763 3167 6444 5234 6938 9039 9333 4969 9816 592 743 4482 5027 2517 7897 6593 4722 4900 5149 1532 7043 1443 9902 6969 7065 1389 4414 3273 4942 9512 9031 7540 298 1628 2391 8733 3177 4054 2642 2810 2798 1832 3548 8548 7840 540 9021 2247 9877 5081 6776 9295 7037 4626 7504 6591 6689 6951 9658 6414 8688 6123 4210 5594 9329 3669 6399 4239 3824 2899 4182 8315 5910 2746 3837 7395 9596 4815 4261 9349 7343 5018 2034 4184 1661 7937 2938 9394 129 644 9427 59 6769 5702 7681 6620 2279 5854 8973 5422 1030 5496 5456 825 7099 6498 5917 6806 9167 6562 2018 7640 1747 8948 4995 5990 6288 8935 8479 4835 9496 7107 7672 9178 6817 8952 7851 4553 851 2329 134 8073 5442 9549 5908 2483 3993 1382 3569 5615 6657 6089 4323 8569 1609 854 7409 9015 8767 5665 9066 2615 1532 2692 5516 728 9242 9930 3226 1196 6493 5436 6716 6331 5441 835 2967 1961 8063 180 7202 1504 2593 6027 8490 9738 292 2341 8651 4596 4693 790 1880 1552 9953 8969 8609 3517 7830 2925 2294 3661 589 4870 3878 6219 1943 3357 8140 9853 1302 3313 7812 8077 7247 4006 4120 4199 6709 5695 4674 1333 1440 5467 4672 2826 5423 6600 7324 1722 6721 5713 1529 6900 5928 7511 8751 1739 9711 1333 6652 4736 636 7947 7935 7091 8976 9108 847 9378 5735 6456 9476 8591 176 8069 5879 1414 3402 394 172 118 1355 3351 3 7233 642 3207 1053 8434 2323 2570 175 7403 7415 5375 8374 9785 1966 4211 8127 5347 4962 181 537 1048 \n3611\n2882 1892 673 2553 3823 4188 2790 2853 2544 2316 9825 6929 8690 5426 4771 6858 3715 7938 4027 9639 4810 859 2451 7828 5877 4382 8236 3590 9326 5968 1097 5244 32 9842 1047 8212 7777 4747 3474 6007 6164 1353 5870 2317 9336 6858 3103 1449 5716 2970 3118 1993 1742 8296 907 9899 808 580 8083 9735 8411 4960 6101 7173 964 5396 4098 323 5790 3706 3642 8640 6853 3561 7906 8966 6106 7421 9992 2940 3538 3254 5607 7534 154 760 6852 8923 2847 8625 6006 3027 6670 7523 255 7736 9209 9630 2050 3959 6343 7771 1160 9514 1363 598 4717 8631 7723 6006 3818 5795 7035 8371 5513 6482 1853 1293 6911 1505 6646 3526 5174 7901 5449 9046 1303 7357 8740 8109 3497 8940 360 3243 6974 2824 8880 1784 2031 9451 5517 4633 6683 9304 2087 5494 1284 9654 3442 8864 5798 1481 3524 5150 5331 343 6708 1196 4141 650 8712 5177 1949 7981 2059 2267 8565 1464 9998 9791 7896 6463 9585 8223 452 3254 1371 8771 7587 9880 3987 3260 9266 6914 7679 3681 6648 2344 9128 8105 2757 8327 2506 7933 4620 7267 7516 750 4783 4076 2529 4609 9522 2855 1772 1501 1663 6874 2126 5876 4905 8020 6119 5769 4255 7101 3658 3593 3905 9728 2601 6065 5644 8453 235 1987 3030 2795 9586 7473 8712 9318 9406 3184 9766 9803 7763 231 2263 8225 3472 9773 6775 128 6294 79 6798 264 519 8587 1486 4875 5066 1613 2503 7446 3710 4814 7339 1762 1979 8340 8779 5873 2479 6869 4856 5582 6017 1640 9940 5762 1992 5951 3885 5200 4571 4374 7324 6454 8640 724 2413 7077 6768 1306 1263 6233 3134 5605 1556 6159 9985 8284 5494 8245 8840 316 736 9572 2061 1905 9020 4378 5877 2935 9171 3507 5194 9469 5897 5049 1671 711 5422 6197 8415 7102 3869 1145 4556 4634 477 241 6953 813 5132 4543 2921 5330 5867 6457 3272 6014 3299 6127 9341 5491 7497 5987 5633 3684 3019 2420 496 3996 78 5125 2702 9495 486 5937 8665 2909 480 3976 2785 7746 1927 2240 5488 6803 2216 7014 8838 7905 1034 6627 3234 8870 5124 6455 7249 617 9598 3639 5110 2179 1104 8764 8489 2313 5635 1489 4271 7754 5583 4498 5941 4935 5377 5624 866 7926 1276 8975 6378 2234 5682 8719 1517 3583 5461 5502 9633 2254 5839 6177 919 3322 9745 8420 7788 734 229 4982 1085 953 5986 3238 3030 3436 2293 4846 6035 6010 9841 3575 2343 1029 103 1979 3767 6387 4553 8602 3595 4490 8749 18 5110 7780 650 5424 2379 9157 3897 5958 5667 5820 9007 3732 5820 3520 6861 6367 8170 4053 8316 9974 4038 75 5953 3770 1619 1181 2568 250 9181 5923 3702 4077 2778 3951 1331 4134 4438 2876 8329 7292 4429 9716 2325 5838 8494 1446 8314 391 919 5431 8990 685 2767 6732 1180 4952 5804 7698 1558 3728 3902 2966 3076 836 3821 8724 1117 9983 8871 5136 7047 118 8611 6572 6329 9614 5853 269 7079 6240 3806 813 724 7912 147 8101 5922 4724 5610 1326 7862 6451 7146 3353 8965 9604 8567 897 5603 1802 607 8497 2876 1244 6291 3394 9006 9501 8155 5636 607 561 7001 2900 3527 2518 367 7780 3513 6210 9525 8420 2459 9456 9369 2760 424 1949 6645 1762 8595 4459 1404 8047 9541 5869 3897 5277 3634 5033 4417 4382 9662 648 4702 3516 7086 1168 7658 9401 8416 4854 4377 9235 1574 5384 7278 1771 2973 5987 4850 8680 4153 8384 5925 1732 1816 8337 4326 8902 1270 7737 3833 8594 8275 928 1824 5067 3345 4935 1927 6850 9473 1116 7993 5693 147 9308 1967 9333 9321 9018 3367 9710 6333 5685 5216 2955 8562 1203 7835 4708 2304 9721 87 5330 1165 5950 125 4641 6894 4923 2275 4093 3640 8027 3403 8474 962 3951 5134 7810 5159 6027 701 4488 1257 9536 9417 5815 7927 5781 9351 6794 5891 7129 7868 93 2835 9681 7047 7548 8863 4369 3021 5826 822 4317 4824 2847 793 2373 9276 4832 3526 1150 6105 761 6135 2758 3997 430 3772 7271 3951 3198 7286 1493 9455 1364 2156 2234 6033 9986 6315 9886 5054 8278 8037 1142 6609 2714 3225 5369 7707 4612 8648 5141 4520 6415 9136 9615 3756 8323 2572 3721 3754 2510 4525 5781 9773 8189 2526 8250 8863 6608 7216 9543 7249 9978 7033 7386 7135 2182 2511 7536 2598 3890 8127 2926 1649 6916 347 7681 1649 433 406 970 1283 2209 7675 1732 1600 3800 9921 6288 3003 1548 1660 9945 6099 7416 4658 5786 3021 7250 2683 7007 3193 5921 6456 2848 2572 8303 4880 5534 518 8773 6050 2405 6280 6032 9107 9653 1169 1320 1005 6128 1820 5763 340 3571 9310 4808 3301 812 2649 4637 4281 6891 8034 5832 4139 6060 3401 6189 9030 2798 6362 6620 3667 5923 9325 8474 3298 7412 191 4246 5558 8709 6321 2165 8390 9470 6561 2681 9218 7802 5130 796 6875 6594 2246 9382 2179 1732 7704 8236 3947 1923 8327 3864 881 4674 4849 9891 5307 7679 1152 4061 2915 7307 9898 2989 7835 7790 6158 640 6969 4848 6310 7165 8015 7106 5877 8542 3090 4884 6322 6899 174 3740 5940 6421 7833 2959 1495 7373 607 1836 5215 6041 3825 8211 5870 8543 5050 4313 5633 5932 6348 9243 4524 9698 6326 3857 6094 7899 8873 1341 7262 610 1410 7762 9746 7465 5562 5510 6229 1779 8133 275 31 6125 9709 9487 1897 5728 6251 3979 3234 669 3448 5299 3606 7495 4828 9573 4540 30 2783 2410 6432 1475 9932 9230 6026 2139 4440 7400 4249 3995 3963 5101 3401 838 415 8265 742 8623 8667 8298 5040 8224 3022 1666 3789 4425 2341 6068 1788 9992 4573 8222 7211 7408 2337 6440 4296 1836 225 9645 2956 7529 5790 2052 7588 886 5689 2083 6061 5778 7599 1344 9873 7765 8256 5422 4645 2699 5655 9336 9352 3042 7164 9220 6960 7167 5065 3196 1498 8528 3688 3518 4463 9508 6204 9228 4873 8238 2562 8542 1960 617 9867 7097 4046 7091 5439 9877 3041 1124 3405 2629 5693 6008 6890 6504 8253 9780 6249 5681 9207 7959 5988 6281 5228 6164 9108 5915 9346 4582 4837 6360 9703 1072 1265 5707 5126 3397 723 9437 7225 6483 1319 7859 1922 2376 9945 415 4187 1297 9777 2624 5553 6568 6939 9324 308 3332 9050 8368 3491 6785 5222 3706 7013 195 6737 9268 3708 8209 8575 5463 7652 1070 6287 6339 6814 6768 3259 9486 7163 8320 8299 520 1734 6824 7430 2788 6837 1821 9605 3792 5429 283 9198 9486 6720 9001 4397 2065 1622 9473 3426 8725 478 1866 9201 8239 7442 1487 6351 6483 2614 6378 4384 8993 2532 7661 8378 7974 5931 6576 5318 3184 5689 2112 5650 3195 6623 9231 6466 5365 444 361 5722 353 5554 7250 2956 1159 7058 385 8308 5360 3288 9413 9311 2506 7062 9534 7066 7560 6791 7655 7769 2789 8692 7450 7212 7355 9913 5905 1614 782 552 3343 5605 8828 2717 7062 1392 3442 5378 7939 1596 356 2835 8855 7617 8336 6192 1136 3937 4012 1493 445 2183 5604 310 4147 4839 4307 6824 7359 9532 707 7317 3227 9961 6794 3295 3273 9367 108 7764 4761 6718 6004 443 5168 1724 4322 5410 9724 6044 3727 7187 4944 4925 3725 8946 949 2872 9169 6570 8972 9967 2013 4855 6314 5290 479 3454 6193 7385 3662 5800 2963 3119 4673 1427 6048 4450 1027 4914 1418 7805 4448 5767 2528 1542 8741 1823 674 3254 274 2708 8906 7834 4844 8759 3717 1067 1006 1281 8652 2644 29 7572 4584 870 3071 4768 7806 6784 3728 5311 3958 9178 7396 4965 5890 4995 1022 4854 5080 7854 173 2637 4577 4931 8814 5396 2926 8383 4350 1950 1748 593 3679 2476 7133 1648 4418 7712 7025 3123 7913 9653 7094 7189 4034 1692 3029 7051 5154 6168 8648 5006 1243 2260 2449 8510 464 4646 7658 9905 2784 8053 5953 3748 4662 4394 5859 822 2202 2277 6865 9233 5544 6773 7531 5346 6366 719 9094 647 481 9210 4315 32 8075 3925 9363 22 8531 4992 5769 2077 9729 8010 9229 2993 880 4919 2310 1215 3491 3064 2932 4073 8700 5429 6962 9558 1309 8842 868 3281 9036 8649 5053 3080 6896 3452 4304 1627 2747 451 5955 9835 2482 9084 5244 4445 9285 6504 5402 1989 7441 1220 6029 7925 9931 142 6380 2298 6915 4003 2459 7997 8402 4231 9327 137 6675 146 7617 8641 8783 6966 420 5354 9774 1818 8897 99 2051 1032 3187 150 3220 4182 6138 7031 1680 8874 5190 9933 9927 1584 6779 2910 3971 4650 1512 8188 872 1943 9573 3754 5086 2655 2675 2986 604 1983 6826 5531 5953 7352 5057 8107 9041 1738 4096 2636 9794 7935 3355 7159 5757 2739 6782 3907 8781 5922 8344 729 3902 4646 1723 5609 3232 4326 4429 5875 4056 5872 3232 2951 9439 2092 8595 9704 7059 825 1433 391 4249 3397 9678 1854 9112 8166 5655 7442 5271 7135 3851 8705 3534 5179 5990 8047 6582 7055 720 5324 8861 6226 2115 2900 7530 1727 1845 6397 6376 9963 4301 9253 2623 4104 5108 9768 6338 2658 7948 1926 6631 4677 9 4287 428 3256 8876 9615 5709 7861 6750 8794 4776 58 162 1344 7409 9921 1795 1848 5898 1678 2521 1063 4633 1045 7952 4396 7506 6242 1690 2734 5485 740 9429 1022 2495 486 4876 442 7600 2275 5832 4540 9231 4504 7437 6896 363 5186 5841 5457 3605 3530 2776 4280 8312 4151 3314 8971 3379 8062 1989 7937 2831 7873 162 1288 9864 4838 1675 2609 9652 329 9368 3066 2638 9088 6717 3516 2706 9127 2251 9340 6005 4452 2104 1633 5412 6961 3956 421 4251 811 6204 3691 8192 3542 6460 3720 5373 7885 2122 2348 8520 6867 458 787 4242 8051 1939 3442 2633 9749 7839 875 7034 9637 6757 9376 3010 6163 6263 3142 8236 6596 8462 5173 4932 6630 4918 3850 9723 7880 4346 844 8994 9893 3938 6549 2655 3320 3995 7318 101 9250 7027 6243 7864 6908 3826 2239 221 1496 3093 5404 1014 154 8965 8831 2633 6677 9671 1603 7551 8664 5464 5715 6608 6839 4566 3324 8649 8564 5190 7237 2659 6110 9139 2316 4939 7678 438 1999 9432 2994 9032 8365 4511 3208 5008 505 7167 8726 7485 8004 1892 9321 978 6513 3831 9339 7693 6606 3479 6007 4817 5834 9871 1946 8086 4596 3906 5573 9727 3983 2743 385 9568 6243 5353 1721 9384 4394 7326 5129 8735 6655 7075 2004 2509 317 435 9770 3649 1040 7434 1755 2462 6425 8236 4414 4998 6117 2714 3685 2009 3871 7853 7338 6782 4286 8253 8507 6232 7192 606 3334 2038 1021 5710 9305 1051 7100 592 3617 4011 7064 5421 4946 4499 4323 8297 282 8228 3597 7087 9703 2202 7302 7985 4692 7769 1852 9822 491 8998 4317 1872 7152 322 7856 2467 7703 5143 2050 7755 7547 5261 3600 5784 1592 9948 285 9145 1991 6456 456 6840 9604 1361 1204 880 7140 4932 6971 1785 962 1835 6314 4182 8030 2028 9883 975 7587 180 4777 4478 7558 8205 2306 7927 54 8348 4116 8150 1973 5789 8765 5897 3729 2506 6691 2279 6310 9434 3886 7410 2849 5299 8449 8706 1297 4615 8099 8920 7186 3717 3851 9711 9594 6054 5226 5942 8995 6763 3077 9359 7450 3136 7380 1933 7670 429 8332 7394 4145 2409 362 2380 8515 8230 774 9392 9524 4698 1562 1504 7214 4914 2569 8757 5269 4709 7328 1225 4622 9891 4128 10000 4056 1361 3589 9310 1656 9034 8823 8707 5916 9661 9430 9417 6134 4428 901 444 3514 5766 7805 9498 4147 3643 6906 2079 9525 3562 2834 1257 3319 8772 7559 5007 2924 7044 6965 4507 4808 286 3276 8578 718 4435 81 3066 9318 4359 5539 1225 9979 8732 5367 6951 3042 3842 1740 5651 2145 1514 6952 1634 6431 4412 9009 1144 6584 6943 4373 2171 2290 3973 2203 4898 6428 5119 8781 5247 4679 1553 6972 3563 2439 1404 7111 7301 5035 5863 4358 6625 7735 2278 9203 1578 1209 3107 5107 5141 8291 3363 6051 4762 7442 1089 4278 5952 6820 5688 4223 5638 108 59 5375 3241 4251 859 5489 1611 7417 2182 6330 8207 9331 4081 588 2222 5363 2472 9708 597 5482 1719 4961 5556 5224 9169 8770 9093 3871 6307 9141 8399 3243 5731 6741 9303 8927 9182 9980 8402 988 1060 950 2108 5877 5960 9920 4885 771 8472 2664 1723 5328 1540 64 4588 4688 2494 5179 6548 2137 3440 1475 6370 9684 6022 2552 6364 2771 8748 1790 5928 1618 242 9706 5413 2890 6102 378 6639 7531 382 8274 2276 8016 5373 2580 919 2495 7252 2536 1064 7866 9169 147 2845 7614 4328 8413 2342 3309 6400 8129 6061 4982 41 2187 2967 9515 407 4275 411 3536 7582 1922 852 3897 7231 4829 7655 1480 1873 6033 7025 1204 2688 6021 3888 8019 7504 2043 4615 7840 279 6088 1801 2189 576 8619 1012 7860 4932 3566 4929 5605 5959 1388 693 102 5825 936 3022 4675 1408 3034 508 5517 7924 4963 610 1114 6588 148 1804 8151 382 2648 4407 3713 2934 852 4221 2563 3692 7338 1581 8889 481 3861 697 6185 2268 2111 2599 21 5709 9204 8574 5700 7414 4441 3459 6951 1093 4924 1062 8579 8908 818 9670 2938 2173 1319 8974 1224 4905 5972 6320 8905 836 9604 8251 3046 6218 6883 3817 4243 5753 4254 1348 7093 784 9380 3150 9392 103 4920 196 5557 7625 4420 74 7536 9843 7005 8455 901 8922 3721 8541 8356 8009 1628 5719 6215 4741 7145 9494 2906 8760 8694 4717 2400 6646 5224 5324 7368 7301 4628 8464 7789 4869 8890 9694 22 4463 4419 9257 4111 4457 9083 3203 5427 3486 3571 3995 8503 796 6418 6798 734 7352 5090 9463 8226 1663 4083 9394 2893 6187 2950 5079 5645 587 4186 9465 3332 8404 1983 1012 8611 3126 9218 3200 6995 967 8802 9007 5730 9731 7827 9997 3208 391 3493 4269 2378 1794 924 8641 7758 5571 6458 1081 324 7542 645 101 710 2885 6100 8280 608 3098 183 4765 3057 526 9204 9123 9673 7629 1164 9737 730 3338 8174 2148 5667 887 7141 2728 723 8402 7192 2490 4611 5999 75 614 1630 6302 3696 5252 3634 310 8484 506 8979 5149 7326 7281 7077 5074 4097 1994 4418 6890 8283 4122 968 9411 9495 4008 6736 3131 8390 6303 7989 7722 7159 7718 6949 6692 2589 2820 2692 3954 8302 6498 7655 6356 3718 722 3974 2158 7342 4820 4555 4448 646 1616 6570 5291 7417 9564 9024 9828 2494 6702 5252 3305 5050 9308 8726 3648 4627 6207 2067 1388 8355 5769 748 384 3484 349 2734 2445 3310 4789 5960 4563 4189 8628 2235 5788 8578 877 1012 3735 802 926 9430 9325 5685 6914 8792 5516 9497 7011 5776 6863 2547 6370 6554 6051 8334 9300 261 6537 6769 4885 5497 2016 9042 4917 5896 6076 3967 9916 2383 7793 5627 2158 7252 3749 5352 7367 9309 965 6336 2262 3385 9643 7652 6620 7509 5621 2760 7535 3474 8511 3266 1196 1084 4346 332 6559 2330 6715 1196 8142 6939 8323 5118 7991 5223 9435 8469 349 1147 2546 9155 3123 4555 554 2115 9900 6982 8908 9395 4683 3866 1591 9162 7537 4693 7316 4827 8821 5698 2586 330 200 7090 9854 3263 377 1924 1467 6138 3071 1157 9169 7533 2827 5059 5043 1246 2708 8105 950 9945 2256 9779 4041 7564 5329 9211 7885 5137 5583 2069 5341 6560 9185 9075 9652 6158 2919 8795 988 7733 2167 7807 8974 7213 5150 2497 339 1236 1684 7034 1888 6191 6863 5721 3608 3232 5522 9744 8734 5096 5965 4786 3707 1129 8577 2648 3795 2661 2415 8442 1257 6142 8607 9515 2674 1829 9937 5993 4163 5508 7083 1241 2659 943 3928 4560 588 3952 6880 2440 9644 3864 2575 5996 2584 8053 2629 136 8886 4303 6249 3817 2181 4049 1987 6001 3444 8435 4366 5878 1804 2834 1955 8795 669 1385 3039 6041 3279 3560 5945 2131 4240 7985 7719 3245 3921 1343 641 5006 6979 8077 7210 4454 5134 1500 8266 5233 2309 4256 3712 2951 9262 1398 4576 7984 3788 2075 8110 3788 6466 5938 8513 4571 5705 4997 4789 4152 9905 5525 3839 8211 252 1498 4976 4526 5027 4971 1265 3063 5036 9666 3285 2432 3690 702 8185 4086 6883 9073 718 9615 5699 5138 8787 1951 8967 6201 5272 8995 3741 6157 5878 1264 814 6931 8167 5461 5195 4422 3141 1607 7247 4774 8041 6423 9016 1440 7182 3846 4119 7643 9333 1697 9745 1237 3923 2285 4053 3984 9577 9485 8018 8842 2496 1232 5426 8087 5574 4610 8065 7543 8810 4908 8331 9610 1388 2579 976 7630 6155 8829 3260 5190 5546 299 5620 2795 7761 3787 2471 1639 7715 5220 976 6122 2202 1321 9905 4381 1120 4941 2260 9786 1572 7079 8661 3310 7278 6137 1458 2409 3480 5121 3945 2174 1947 2896 1443 7947 2587 431 4386 7791 8176 8737 3748 6136 6112 7287 5575 9802 9670 467 4641 6166 314 231 8616 9978 5931 3033 783 5078 1133 5593 8028 9537 3858 9410 173 5051 5776 710 8098 2909 3317 8126 7900 174 9680 1907 9990 7827 292 1108 9731 7734 5435 3715 9664 2470 8837 7294 843 3489 7604 5596 6989 8745 8157 8476 7091 3850 6417 582 6582 1084 2186 2861 9630 4613 1231 7282 7035 5427 9222 8057 7430 85 4017 8187 6566 1767 2078 6114 3551 89 4816 2179 2236 4794 3974 3314 7358 161 1048 6271 3490 6934 9163 8888 3146 6196 7871 4964 636 6868 3770 9564 2583 1263 3140 1128 2859 5791 2968 5490 3892 9240 6713 3189 5425 5818 1895 5242 7244 364 1214 5852 3119 6321 289 4635 6473 2170 4646 4486 102 8239 5641 1799 4528 2551 9428 2380 9077 6847 2375 7803 7661 4578 3980 4804 2869 4562 822 6715 701 5110 5588 9260 8192 4302 1252 8812 569 6272 3163 2541 2890 4194 4815 4918 6797 667 978 460 4099 1666 6293 3217 9144 2878 3368 7954 289 2804 4799 2233 6161 2159 6944 8045 1535 1457 7619 7410 9334 719 9632 1323 4475 2337 3482 5198 7355 7303 9967 7946 415 8704 647 8715 6315 7056 7006 5888 2048 4608 2478 6548 8859 5463 8478 994 3446 324 1907 2747 6523 8515 950 3408 8258 3762 6278 2838 252 8164 7847 248 5674 1158 9361 4418 6834 4064 3237 7803 5601 4310 2347 8535 1492 2784 3650 3061 4623 6462 6601 240 6713 7661 9181 445 1766 1129 8540 4700 6016 9630 4883 9290 1306 3885 9273 1187 4414 3767 8149 4125 2595 9210 4069 3607 5241 954 7768 920 4269 8259 4988 6189 250 8171 7077 2581 7670 1654 5354 8266 3926 9464 3269 984 7047 4683 1801 5490 3269 4418 265 5692 4125 7157 6186 2239 5977 3004 4235 1868 4776 2803 1381 4016 1925 2008 8073 2243 8439 8280 4659 5927 3694 5112 2227 1505 4140 7987 4528 1986 5440 5045 8850 249 7544 3331 2002 2824 5773 8981 1179 9212 2108 5255 6820 3234 8839 9932 7766 2589 687 5259 7038 9697 4025 720 7850 8802 6073 5452 9780 6432 9359 3060 7072 1045 305 9587 1736 9175 1581 7656 9633 4832 812 4699 425 2883 7810 6198 5086 7924 8475 4646 2816 6882 7507 8593 5458 154 2708 9638 6782 1247 6110 4997 3763 8119 2414 1209 2197 8203 8721 2430 2250 4989 5455 6644 8988 1858 9742 9628 7379 3802 4542 761 265 4549 3895 4789 8955 8081 9919 4894 7908 1408 7400 5690 3811 5358 122 1843 2018 5645 4949 8223 8443 360 5215 4842 9922 2176 883 8507 9906 6120 9704 3974 6475 935 5162 5928 3730 2058 8279 9456 5697 1961 2231 5960 5911 1136 6095 4046 6392 7039 9496 7731 2954 4332 3517 8001 3897 5970 953 4142 7855 1937 9067 6590 1829 1740 854 646 5835 3538 1837 7523 9567 333 8534 9486 1329 5384 7300 6724 7272 2756 5647 3180 5604 2367 4464 6370 1419 8852 9198 9433 6453 8454 4864 9533 7089 2558 5831 8607 6345 3316 5182 7441 8736 3903 8037 1301 3825 4701 7382 2422 6473 8176 6006 32 2831 4802 7387 3242 873 5386 3535 9475 7259 4600 1378 9199 3165 6519 2301 4879 5876 4623 8094 8465 436 51 9231 663 9235 1042 7910 133 3264 2473 507 3704 9587 5086 9629 7264 4278 1498 5045 4878 4018 1693 3578 1092 8356 1987 6216 3589 9895 2054 3054 3801 5517 8367 2481 1435 4609 6170 4058 9592 8289 4638 4802 5721 9700 5891 2403 6924 9531 6203 4302 1873 3693 1667 3582 3079 6156 7218 4612 1684 5463 9472 1162 8957 9646 9796 6741 7642 9499 4322 8132 8858 7997 9435 9012 7000 4633 4529 4413 6625 5566 4168 8262 781 4958 666 7088 7300 3875 1719 9065 2629 6975 8417 8870 1848 4086 9998 9835 4587 8599 1907 9184 856 7273 2401 9889 4350 5863 3281 3576 8420 3188 1795 366 1010 6849 547 6899 7934 3413 851 670 2673 7 6973 9536 8748 8685 5817 8837 572 1420 5582 6499 7550 1747 5567 4984 575 9205 4169 5978 9879 \n4762\n9211 3389 1884 4103 5260 4829 6600 5992 4758 2732 7090 3685 3812 6927 9042 2624 8897 2089 9005 714 7501 5846 9409 9711 1617 6671 9403 6300 2178 8002 9700 7682 3101 1940 1354 8388 2154 2473 7443 1701 2870 4543 4788 4738 7314 8069 2373 6431 330 1188 9628 1942 6104 433 5167 8208 8397 2531 2265 1003 3343 235 5286 2467 6678 193 8352 6766 7809 2792 7932 635 7037 2280 1311 1385 1673 4311 7473 9170 9883 4237 578 7900 5538 8273 2918 2393 4058 3544 5567 6833 1701 9211 3005 22 6615 7579 5995 4240 3824 3710 2624 4777 4075 2961 775 3580 6 5189 3935 3525 2196 7994 6504 5224 1882 8613 8503 1439 9238 1837 3070 4448 8098 4759 7926 89 7979 1977 5503 776 5204 3285 2905 8120 6702 5301 3860 4806 5045 689 2631 5214 879 1384 4892 3890 6174 1770 4314 8605 5472 9189 3729 7973 1388 2393 3539 2777 2170 9895 216 6003 7943 1501 96 6727 5587 4203 6362 4656 3065 8299 3566 6838 1391 2984 2848 953 4770 9326 1431 523 569 4815 847 4983 6231 5902 4229 2617 684 5452 8703 9758 1452 4027 4891 1330 9544 6448 5998 1033 1170 5138 2104 3187 3770 8587 6401 7585 3432 7551 3182 8158 6404 5732 9420 9697 9114 368 1177 647 911 7474 7248 9554 1315 1451 8717 5213 522 9235 1960 9330 9587 8508 9466 4286 4573 104 626 9440 4802 3671 6907 7591 7 8886 728 7954 1325 9447 2257 6444 3267 2929 301 5111 6999 3613 6263 3662 5923 149 2936 6121 5043 7044 3074 4665 4730 5809 3502 8641 6077 5618 6039 7552 9404 4035 234 6792 739 2261 4922 9232 3923 6246 7044 8782 1316 2351 9226 2429 3888 1657 7863 3144 5271 6352 2651 8934 6477 14 1088 1074 8602 6849 7505 4397 5468 7530 4346 2912 7799 1101 787 3340 7374 5157 6827 4600 5116 316 9712 9665 894 3231 2857 171 3092 8695 930 8723 7386 6777 2872 1774 7115 2812 2374 9671 1695 3328 9430 8076 6500 4092 3403 7121 466 6565 347 1137 5297 3722 5910 1750 9268 3719 6359 2867 629 9652 2712 2901 3333 9289 3456 7080 4083 6139 9239 887 1474 8494 5287 3737 7894 4546 4100 57 3507 1606 7815 7289 9487 5830 6190 1543 6387 8859 1811 5734 1825 7814 2820 7629 4880 51 3911 9228 4276 9300 108 475 5337 6143 6189 1659 4656 8623 6108 5026 931 4604 934 2359 6350 4111 5503 4411 6656 6316 6287 5193 5152 1050 8217 7105 4793 4691 7526 771 8564 7047 9643 1111 7635 1106 4322 642 2467 5203 6886 5986 6318 2969 8025 1931 2108 9061 4630 3660 7037 6937 1958 9894 2908 2304 4936 3105 4676 5866 5968 7543 5214 5474 8782 7847 5702 2033 5720 6583 5150 7488 9622 5326 1496 584 399 503 7161 6072 7286 2601 3147 2383 6473 5097 1307 5032 3016 8826 9300 5460 800 1895 1052 495 2754 8184 190 7530 4459 9077 1950 7673 197 9756 4649 3077 1578 6310 256 8458 3481 2699 7244 8054 5720 9896 2964 3084 1462 9139 9072 1181 1971 9690 1178 168 2402 7046 6957 988 5797 3236 1717 9294 8057 9264 8750 7171 2809 3814 6461 5701 7880 575 4442 7414 2483 4216 9179 8688 1135 4160 2644 1526 1128 7304 2942 1587 5327 1531 3890 7244 3637 7049 8606 6608 8645 6947 1968 3119 3715 5831 5920 4206 1148 7435 8791 608 2305 5507 5182 7943 5165 8765 4422 7255 7484 8170 6418 575 4884 7094 4676 4188 2867 2817 7930 8964 391 4415 4455 6945 2805 2114 7224 2703 6497 5189 9498 5641 3411 8180 5743 5447 8915 1947 195 429 4573 6129 7655 6826 3766 8150 1442 8509 9333 7103 3096 9740 9641 5130 7237 6153 1877 2452 4693 189 5239 6478 3116 3158 5474 8540 8390 7452 8677 441 6475 3612 6456 9086 6479 5877 6220 8810 5515 6452 4188 7115 7012 801 6947 4861 3035 6697 5898 1744 8333 3364 1195 9270 1901 9129 6113 2298 9037 6953 482 8958 3671 9213 9826 5596 6830 381 7986 4920 929 9754 659 5714 8372 9925 9532 4970 3230 2721 5094 4858 9782 6147 4481 988 2854 8150 6025 8422 4078 4689 8101 8820 9351 7835 7239 7537 1944 6435 9872 3406 6760 6126 5232 630 1719 8684 5909 7710 7141 6569 8471 7795 418 1633 4323 9812 8052 9165 1738 5110 2329 8131 2465 5143 3999 5624 237 2150 4644 9520 2562 667 2337 7878 2466 7045 1795 7034 3276 8554 9828 3788 2732 4266 3723 8941 3051 2004 5815 6993 7412 8761 9931 5840 2050 2906 3898 3620 652 1005 786 704 3678 8552 3930 6716 3068 9375 9511 2052 9736 7146 9898 1873 5697 2153 4603 6263 2271 9692 3441 308 4104 957 9841 1482 8609 2915 2484 6793 7419 6054 8202 87 2298 3797 4507 8280 8296 6558 1965 7876 7495 9413 5118 7628 1068 5817 3529 930 8959 3147 6318 503 9087 6342 4325 2884 1423 4376 4131 497 7328 1310 6194 5562 4452 5780 9456 1077 5845 7956 8198 6157 4994 5268 5788 9824 5012 6165 9027 2729 8803 5204 4068 8187 7518 4475 8820 719 6391 905 7149 9582 9681 5482 4867 5180 3185 4383 7568 5188 7344 5180 2797 5390 2986 8166 135 5815 8886 4152 6493 4526 6517 4654 7561 7276 7667 4374 5294 2497 5486 6403 9496 4585 2857 3693 1336 5459 6016 9378 9082 2195 371 123 2436 4909 9652 7406 6794 3356 4607 4731 6827 279 5442 4923 6314 327 6759 3464 1308 473 7520 1354 8139 9421 1140 8026 7062 236 8009 8925 1829 9355 6330 3468 6731 3452 2286 4792 3981 9490 9145 7094 9781 4851 4540 3446 3053 8771 5928 6353 7882 1019 5121 5606 7931 6506 7116 5259 8623 6560 2946 8707 218 2166 5725 271 7842 745 2405 6585 2355 2398 7528 8606 5736 3223 1974 1170 131 6874 6690 1264 9313 4624 5567 6270 6050 1357 2816 4166 4712 7911 6012 946 4308 1983 2219 7407 3206 204 4572 8947 5104 268 8398 6801 2373 19 495 9293 9379 4430 8149 9418 5393 2665 2847 3640 9671 493 137 3680 2388 8488 7173 7411 46 1389 2381 1759 7049 2228 9711 9278 8183 7822 1430 8980 8644 1637 5916 4365 706 1993 9387 5040 6966 9974 1042 1696 3250 8272 4486 5301 5727 1126 7649 8486 7164 4102 1786 7447 9691 313 8722 6427 6276 1235 6222 3141 7711 9457 3992 8148 723 7286 4651 1065 1407 6186 4431 5835 1021 1381 2657 6021 66 6167 9893 2146 8854 2147 7539 1641 1161 8839 9396 7260 4810 7856 8536 1254 2059 8262 2237 8580 6789 1683 6903 8970 8749 7552 3984 781 5313 8404 7271 9250 3848 6404 4855 3238 8160 8306 4017 4336 4762 3988 4022 3091 9534 2367 7684 303 2799 8409 1904 9329 8963 6126 5238 1676 8073 786 4842 9595 5494 7675 4210 4781 5822 8020 5247 7544 8111 2013 7531 4539 6797 9155 1825 5083 8610 9491 6296 1451 4404 9024 4984 7411 399 8906 9235 5057 6202 6763 8447 1296 1785 1991 8191 4554 6217 1150 2235 7723 154 1249 6445 5169 7014 8642 2617 8113 1380 1650 5737 9532 1556 2368 4563 5865 4827 9229 4665 9708 3187 2890 7517 3055 7066 2865 391 805 6575 9695 5189 5424 458 563 7924 7173 4587 5453 9414 7114 4539 9454 8037 6224 9330 5774 8156 9027 6769 2760 6339 3866 702 6581 2103 3466 7781 5112 9670 332 36 8856 5788 6305 5786 8848 991 6763 348 7972 3135 7987 407 8561 7536 1087 3658 4264 2599 3526 5254 2011 2990 233 7920 6624 9265 448 5774 4715 981 7746 2979 949 8548 7585 9927 671 3192 5465 4423 8140 7934 1875 1069 7073 5701 6563 5841 9564 800 2236 7821 7894 8102 5705 7686 6255 4791 817 5985 3012 6394 8920 7608 9578 1506 4340 8740 4266 9494 3353 260 4841 126 6274 4887 6574 6654 59 9632 5526 5678 5690 4463 4807 6837 308 783 4900 7636 4772 9502 4458 4400 6769 6091 4071 89 1528 6867 995 679 6178 3380 1184 8766 526 1430 5455 1535 385 1779 2747 2696 9403 9948 1797 2907 2572 9160 4796 926 4680 8681 4582 4391 612 4203 8140 9725 9670 9725 7238 1739 6162 3700 3654 7226 9289 1605 8899 6996 7183 9590 4544 2894 4046 7137 2354 8911 7812 4969 831 6186 7028 9039 4203 2282 3291 3465 4356 8992 428 2373 4407 4757 1241 8218 9261 4279 2283 6011 2484 9427 5534 7654 4229 1332 2008 8612 9558 9486 5432 9954 3827 7369 9352 4665 8356 4066 7501 1099 8031 5611 6353 2109 9532 4488 505 9807 2149 5684 1961 1859 676 1461 8826 9022 7563 8111 917 5636 2484 4658 4530 4804 6348 5481 7443 9327 9069 8016 32 1913 2114 5007 1269 4254 9636 1872 3936 2061 8246 3859 1285 5812 9785 6577 8230 5213 7610 3223 8219 6017 6120 2606 3119 9914 6228 4836 7856 9806 9050 874 3817 9232 2408 9505 2392 4276 5580 898 9720 2793 301 3372 8933 3649 3151 1802 4605 1368 6136 3196 3980 4282 8916 7866 8900 3707 6020 6562 262 3388 246 2448 2567 957 8032 6304 2594 7834 3507 7682 6497 2875 5341 5186 3791 3515 1561 2448 4409 3545 2780 3041 4311 1823 8766 1944 8904 7447 986 298 3875 9490 6674 7450 7891 5803 5321 5540 2178 1546 9563 1732 462 5493 7062 2813 6880 9611 607 9306 7283 9082 4566 52 8998 9676 9826 2438 8945 4297 1 9007 2209 2880 2679 6138 5197 4571 2606 931 900 2047 919 8257 4595 308 8100 8112 9232 7940 284 3874 1023 8545 8403 6599 2451 6993 8354 4098 6561 1147 4946 1176 3656 6887 8800 4570 6529 2043 2233 22 708 802 9405 4170 4402 4212 5506 6803 8194 4913 9569 1294 4547 2846 100 6176 5472 6579 1177 146 5147 7178 9228 9630 9697 2434 6106 6417 6394 2434 5666 4017 4815 8043 1874 3612 7426 4250 7093 3697 2089 3640 965 8188 5173 8878 8953 6337 5285 6354 6631 4838 2413 285 9074 517 8363 7327 6002 1647 4796 3594 318 9567 6705 3652 4520 4241 7378 9406 8253 8026 6672 7722 5532 7741 6059 9034 6159 2773 9459 1111 6843 2715 5707 7028 2998 5383 3200 9742 6657 4883 5366 8618 1620 683 3575 7988 675 7243 8095 5152 5906 3176 7877 1701 1548 8222 4445 4544 7803 1258 1167 3170 7845 3366 1711 8218 2917 1537 2740 638 643 1289 4869 7154 8676 1320 3615 1107 5764 9743 9037 8427 2176 1244 1001 6549 408 9772 8548 9342 2405 3101 8044 64 9160 2424 8250 8548 2812 924 8309 601 8050 5895 5190 9570 1910 1136 9756 8315 9601 3698 1602 9260 9499 9538 8619 3718 6232 7849 5852 5573 8217 6377 9026 1270 8492 3698 2713 838 6085 9879 5751 5136 4698 7225 5692 5337 7597 7784 8867 6272 5512 4263 1825 2536 4622 6104 496 3578 1046 8253 1858 4329 4725 8576 8520 435 6884 9797 4217 4328 5207 919 5593 1794 8189 4567 2882 8831 2763 3956 9851 4234 6420 9539 9631 5999 6431 4999 3227 5137 1520 924 6589 1412 2395 7807 2805 6580 5280 9724 4619 4746 8162 7341 873 957 4986 4136 486 5851 5310 4741 1956 6484 8024 1546 6370 4017 297 6935 2259 4542 7683 1867 8240 3975 2749 1098 8033 3166 4251 1229 6721 3473 5930 3676 9611 5129 7393 4189 3184 1019 2960 7943 8743 2815 705 9884 2359 2959 7614 5240 7608 5960 1751 5631 3147 4254 1624 5303 8749 5000 2765 9306 5281 4790 9782 6698 4225 1036 5700 6737 3938 7064 3934 9858 3413 7563 4896 4676 7464 8445 3087 9954 6814 4565 684 322 4885 9970 9403 6725 8109 7223 3813 541 410 8950 6012 5258 7356 9767 540 4974 9985 7419 2854 6645 2143 3822 513 3901 3422 3654 4249 1281 5767 8612 6302 6471 2030 5160 9268 4024 8008 3201 5946 6469 6179 9857 6940 9634 8480 9779 1685 8529 4262 4737 802 5007 3729 6679 4450 4440 6859 6345 8733 360 197 5292 2578 5756 8993 6162 4115 7490 7929 5444 6679 7576 4480 5428 9155 4213 7276 1127 9164 2339 5644 9122 3993 2318 6256 9956 1284 7793 1248 4933 3386 6561 8853 4768 1732 781 6307 3595 9789 1428 7776 3143 2165 4340 9734 5511 5422 2075 179 951 3789 8863 2906 6714 129 9245 3744 4764 6347 3977 2662 9110 6902 9690 4016 8579 9460 4894 5487 1862 8447 7947 6214 1856 3273 7452 6186 2179 8598 1331 8923 8322 7727 4896 6126 1921 4746 1459 8141 7421 8298 884 4680 8852 3876 5234 4396 3685 1234 172 569 9566 2357 3553 875 7327 3908 9109 9015 1026 1147 7718 4659 3167 3078 5702 8300 8032 3424 4105 397 345 9669 4002 5402 5503 1895 9912 7726 8347 4835 901 1392 49 5821 8681 1637 6754 5776 4212 4091 4134 6920 9247 2880 5759 4797 3075 7364 8675 3190 8444 8652 9325 5553 1394 5744 5125 3616 4973 4557 9001 2851 6121 4299 8653 803 9302 9053 5724 2979 5429 6174 443 1836 494 7574 5189 5332 4685 6107 306 492 8029 971 4311 4483 326 4005 235 7019 444 6612 6712 2481 8562 1721 3193 6511 117 1718 5793 2079 8973 7600 5672 6817 182 8239 9873 167 3012 4960 7664 918 950 5 7944 3006 7544 2451 4329 9019 5511 2559 327 501 7828 7624 3075 6322 8877 2525 3586 3915 8256 9530 3435 1430 5651 4962 91 5122 4679 8725 2527 2248 6203 5507 1397 6353 7464 643 4252 9862 2881 9397 890 6359 8943 5492 2870 9295 142 2828 8339 5711 6189 5149 1507 7732 3911 9292 3028 6072 1559 5678 2800 5547 3264 1008 1764 3292 7956 1142 4049 5942 2211 7752 6869 5596 7394 2221 61 7008 3325 288 1332 8048 9630 1803 4581 7154 9182 316 2398 8211 7003 5272 7536 7719 1071 7135 7066 5023 2560 8753 6596 1401 952 8559 1869 4044 2609 8735 189 2003 6574 855 8725 6890 2284 364 3924 9179 1350 9573 649 3456 1934 4776 3118 8500 9501 9416 1587 60 1141 3175 3385 5961 7209 3795 7624 7976 2418 311 3804 6269 3913 4948 5707 2617 5566 7632 1301 1144 257 7288 5300 6736 6620 4158 9228 4959 1976 6290 7802 4539 3480 2944 6222 8815 6393 464 9399 5353 3739 2457 6095 9206 2308 1557 6232 7992 7653 9831 607 2509 18 8553 1112 7214 8028 8523 9096 9773 1775 5531 1954 9487 1093 1142 1280 5220 783 4344 3998 8135 5644 288 79 28 5473 7293 1990 5881 6125 6821 3786 7228 1973 777 7065 9911 3363 4747 5452 2339 6427 5897 3721 9596 6380 5630 1247 4202 4994 942 2809 4713 3670 7148 4496 310 2825 5096 8953 3347 7453 1071 798 5497 5577 6481 9493 5385 1152 7101 2986 7198 7584 4293 1207 4217 4699 1045 8767 7433 8468 7918 5233 6754 4627 2476 9566 8353 5471 3881 7633 5310 6816 6063 6005 5295 2783 2571 6102 7546 7259 5196 2700 1896 342 6330 8021 8584 6324 6209 3229 5998 4808 4696 8633 2449 4544 9542 296 9910 7499 1646 3089 5637 4707 8614 6632 4130 7303 1602 1481 2177 9650 5829 2330 6634 2142 1701 8543 143 5522 3086 8505 4263 2013 2972 2720 3915 5927 5510 4481 848 255 7229 4338 8672 9863 2191 7288 3093 6220 6941 8544 7712 3887 5590 3379 6342 1696 5017 5979 5795 3003 2462 915 7265 7844 7203 3180 8180 4836 6371 286 7449 9659 4691 3561 9468 6828 3935 5580 2888 3448 1272 2216 4468 7211 9522 8442 7833 8431 9466 2610 1058 3166 1142 8822 707 4566 2678 6100 4272 3862 4465 9673 7481 3098 6905 3568 7730 5054 1043 2673 763 7123 6371 3421 612 5617 2374 3061 3892 6464 3322 8550 2902 1109 2702 1407 9729 9186 4777 5836 6883 2805 774 2211 2564 4416 5005 1966 1256 9237 1459 9790 4601 6178 4226 5857 5443 9024 4123 2254 8180 6258 6784 4841 1868 546 6491 5861 6673 2350 368 8485 3374 2886 8004 4855 7476 9807 5182 145 7315 4332 9492 7986 523 3860 8677 4492 3284 8849 1952 7017 3859 3617 4180 5875 8321 3975 9656 2915 1812 9604 5729 7278 1673 7507 1525 5807 5698 1122 8787 2177 4412 8662 4841 8242 3757 771 65 9085 2976 7377 9458 1682 6781 2141 8199 9352 624 9569 5537 6021 6229 1761 7702 314 5184 5405 6528 8281 924 6621 9711 1521 5540 6272 5340 679 5791 8620 1573 3324 3615 639 5928 8368 7396 8461 7009 822 5841 4091 6746 617 7514 7411 8081 6412 7215 3382 6366 136 4240 1212 6219 9367 5998 5481 1371 26 7253 8625 7620 3197 5886 5532 3414 1626 2595 5765 253 1957 403 6001 9314 3599 5345 6436 6738 8342 4222 683 6442 1995 3856 37 1571 2413 5449 2812 8144 6920 7074 8023 5907 7604 1834 2273 8109 47 5478 8852 8322 7315 125 3220 5295 136 5286 6048 1775 2606 7900 3217 6754 2791 288 2885 4704 5956 752 4385 3512 9149 1000 8365 4102 7397 2769 1367 6661 345 6205 8268 4809 1596 5628 4409 5216 1210 6454 4816 1576 4322 4803 259 8626 1841 5734 6181 9687 4079 3296 4870 9148 4351 7156 2638 5389 7113 6235 2980 7299 8572 2843 6932 2720 6509 3827 340 227 3508 9008 5523 1103 3762 2077 4042 4523 2642 4773 7162 4340 5452 9181 1477 7924 7507 7146 9973 4921 4169 4841 9138 6259 5191 2668 2371 3432 5728 4579 1566 5718 817 1201 3420 3282 7329 8599 7460 9847 6161 3052 869 2538 7321 3756 880 9198 2596 4237 3513 3889 1958 3905 8387 5536 6875 9358 9647 7305 3364 7457 8151 6433 4162 7226 8935 4790 6882 2379 887 8764 8063 8188 7324 1114 3603 5719 7430 6092 5859 2582 8464 4939 6444 1384 1903 5970 9336 487 1588 7583 2034 9316 5575 3958 8292 1250 9088 6653 202 7577 7777 4395 8562 8927 3942 5771 8201 3988 1084 9718 967 7270 9424 5082 4598 8300 6543 5499 1700 2429 819 5418 503 6459 6010 4075 1208 487 7857 217 500 2630 3380 8163 9418 6427 8735 2656 9479 6342 9674 8801 6354 3093 4044 6760 3440 2614 1331 2305 933 2728 7735 1372 837 703 2839 4554 8635 1232 5807 9696 4982 2053 57 779 2253 1083 553 6256 8065 4647 3113 2358 685 3951 4841 9517 9038 3165 9565 4353 6918 7212 8167 8852 4868 9525 4528 2876 2753 5800 7487 7483 1773 2563 5451 9414 7868 7616 455 1185 3653 4883 2065 3942 941 6188 1914 4512 9783 6662 3163 5281 6646 7075 7626 2947 8473 5280 1948 5050 7257 5963 3844 3774 814 2235 7192 3189 9486 9366 9482 4594 2818 3190 6496 1287 4018 4172 6671 5331 2190 7274 7090 1763 7165 6296 211 8077 2993 3204 8582 907 149 7868 7683 1367 6223 4649 5403 9255 8272 9673 5764 3860 6796 9423 1100 677 3902 1514 1724 2547 3728 9269 6787 9517 9885 9803 3886 9061 2646 4106 2576 9024 422 2091 5383 5568 2241 5035 3312 9130 2905 7599 7814 1681 8284 9684 2336 3730 9043 9276 4079 3427 1026 6137 7949 3073 3964 7923 1504 1501 4172 1580 3481 4489 4776 3045 8681 6197 1208 1404 5665 7180 7325 3157 7662 5953 8391 6920 9851 9176 8921 688 6051 202 8246 1791 3771 4420 8830 1080 9596 384 9439 4279 8263 2972 4314 5684 6226 8809 6709 4963 3118 2573 7989 4763 3694 4522 942 2048 457 9133 2816 1686 8648 6587 8258 1132 1289 5424 3597 1257 599 2668 1403 6116 5492 4458 5896 1233 3814 1081 3828 8015 7778 2794 4568 2545 4020 410 1697 392 8688 7756 8554 3579 2953 2471 5351 6470 9183 633 2119 1050 1667 8702 5995 1206 660 3593 5383 6237 5173 8234 8709 1389 8521 7920 3589 2690 9557 3383 8454 8180 2777 7163 6606 6920 6418 979 2474 5658 7160 7642 8145 8645 4249 4855 9046 9762 3137 1889 4467 658 9346 4026 9192 3853 7702 9946 8733 282 6805 6727 8159 8031 648 8947 6651 4806 3849 4752 2529 3693 4811 7403 3327 4059 2195 2685 2161 7168 4128 2249 8007 707 442 5079 2218 3145 7922 2646 6683 5940 7565 3300 155 9283 4700 3390 2167 7501 5057 2571 7028 6240 9038 959 6039 9031 8661 2048 3617 9578 2506 7208 834 8956 1771 52 469 2109 9295 3163 1841 777 5550 7163 1752 272 7847 9022 1118 1778 4861 277 5593 4151 9702 6882 4018 355 2411 9067 9877 6253 2856 2270 1255 2125 4290 4001 7134 6866 2777 3103 7938 8595 6235 6560 9085 5032 5868 6297 90 608 5384 6652 5440 219 8266 48 9392 7057 5475 5316 5191 7434 9259 9691 1397 556 3747 103 7858 4796 9055 9756 9712 2296 10000 4052 6583 4755 8314 4988 1273 6566 9872 2994 7447 9506 4213 446 4151 3980 8204 7833 8592 8717 2767 7268 3130 3137 8449 272 9442 2692 934 1465 2642 2944 3738 8299 3291 7086 5508 7118 5710 6002 5957 6036 8590 9723 4752 6785 3355 6174 8440 7443 4202 5798 3121 4838 3064 5873 3349 294 6998 3838 3664 6168 4853 1052 2067 1475 1476 9328 3222 7312 7058 6653 5313 5436 3607 4807 3205 5148 8846 9859 1943 9975 9405 1509 5036 2894 865 1073 6486 3395 6171 8662 8787 6617 9435 7099 7670 501 4034 9207 3458 5428 5111 3761 9948 112 5390 7507 2503 7689 5494 2363 6302 3500 3667 379 8103 7978 771 2308 1638 8940 2808 2098 5251 7156 5227 3442 5533 3102 4430 6286 9581 39 4442 5468 7887 5003 5965 7359 4880 1566 1553 8340 8836 647 5150 8604 1163 216 7789 1440 5348 2432 2318 7408 2980 7351 7776 7163 8819 7881 9909 6487 3899 7517 669 7973 5344 9529 5216 564 6140 4160 7835 651 9359 5154 8025 7882 1036 4058 4988 5283 3703 7538 4247 1961 3193 1273 2834 4438 6470 5012 7867 8041 8876 8587 7624 1653 9875 2036 9378 4243 6986 5172 1919 7405 4175 2790 7408 7704 6489 329 6890 7131 7171 9195 7052 236 4334 7781 6801 6659 5932 4381 3800 3379 3799 1018 7638 8445 1043 6998 1447 8672 2206 7989 6110 926 4923 4935 7776 3331 6287 7871 5588 7255 720 690 908 9963 1227 5035 6090 9721 618 2222 40 7468 5607 1566 6581 3742 3215 1304 8909 6789 3954 9756 4383 9803 7167 8967 3197 7736 6520 9340 3054 6383 4160 1724 424 7425 2656 6613 2997 3305 264 4721 4088 7638 8007 2779 963 5973 8766 4528 4059 3885 1065 6732 3401 4020 978 4527 8597 6700 4115 1942 1378 669 1010 1378 9657 9713 5344 4279 276 2059 689 6418 557 293 2741 1846 6459 9339 6393 2732 3395 9142 3814 321 8100 7353 8796 5086 9013 8485 6694 3935 6627 4134 8685 5238 6053 8306 3382 4008 4047 9598 1279 8222 3417 7459 3385 479 8081 370 7127 1680 6527 9113 1510 5796 7950 6164 3948 9062 3458 2347 9497 2594 2637 3866 5488 7600 4350 2192 1410 3843 5658 5870 5776 6842 6550 18 9654 852 779 5589 2173 2992 7669 3673 2885 279 3800 2903 6677 7721 6375 3690 8526 7960 9702 2213 5818 2385 7965 5920 9079 8995 6447 53 4714 114 9835 7766 2248 6692 3873 7276 8576 3208 7962 1643 9536 1609 4223 8084 8180 4355 6948 1389 1249 1347 57 4417 865 794 3867 245 7150 15 6845 5651 920 3573 9350 1430 4523 9936 7611 9714 2685 2846 9348 7194 6653 6729 5086 6937 4331 2346 3835 4603 3905 3704 2438 3399 3787 4070 4213 4948 9493 4200 9338 3341 2233 8534 2801 937 7958 9347 8664 6250 7238 8639 9081 2072 7814 6262 7806 3127 1444 4007 2027 833 5530 6607 8087 5460 3615 4467 9035 2390 2390 866 5071 5085 4127 728 6950 1752 2492 8902 7701 9198 7227 3500 4175 890 4630 1575 4993 404 1316 1092 9329 3701 1606 7018 9535 7110 6551 2134 3443 717 3031 4599 4461 6633 3011 9895 4281 2728 3183 6610 346 4851 6641 7957 6102 5019 5674 28 3969 9974 107 1938 5823 9489 230 6639 5737 312 7119 9491 2218 8699 8090 1975 844 2125 1359 502 3132 5994 3647 4857 7615 7016 4995 572 3877 9786 1812 5249 8087 837 8405 4823 5912 960 7440 2271 9813 4196 7544 2881 4762 7654 2171 6377 4089 3708 1328 9487 630 6859 6530 5287 9487 6502 2988 4370 7181 7580 5654 9257 9544 4112 4520 3891 999 4846 8634 7027 2573 4360 5858 4434 193 2172 5042 1477 7815 6932 7549 2735 3213 1386 1981 3197 8976 1194 5845 825 1015 6570 8391 3963 4143 4493 451 8888 4579 6408 2297 2528 5754 1098 2557 7268 9980 3851 1454 8993 2536 7027 8264 8630 5129 656 8211 4774 5213 4444 4911 8878 9209 440 4374 501 4757 1992 2762 9566 2160 2494 3228 5606 4258 9962 68 2605 5996 2512 5143 1618 3786 1102 9050 675 5938 7627 7644 3502 5262 5357 7040 776 5885 6610 4873 4815 9977 5048 6142 9024 6328 6952 7485 10 5855 7517 8725 7331 9395 8183 2819 3705 685 1456 9252 2902 2470 4162 7907 613 8658 3730 1490 6732 4051 9519 3733 6421 836 971 553 2038 1853 3479 3868 3480 4085 8415 9296 3533 2627 3515 5934 7299 3694 1692 2458 8491 1348 3710 928 5317 6234 693 3474 8488 9696 6250 6655 982 6679 155 4062 8982 186 6107 6052 7765 8811 1605 3589 5969 6637 7744 1079 4399 2006 4171 7881 4032 2831 4067 349 858 7844 7112 5945 2852 4330 130 1197 3802 3776 321 9904 9929 138 4099 30 3295 2932 9332 8385 577 2304 5768 942 1831 848 5958 8736 2073 7409 7589 7529 4168 7103 6120 9179 730 6752 4594 1674 7165 5092 4525 8551 7972 1051 3298 3421 4508 1129 8522 5687 8404 1747 1251 7996 3819 9363 7736 1562 6872 9817 3674 6980 6880 9261 9447 5692 6549 1934 9649 1574 3132 8889 6065 2881 2128 9596 1608 1844 9989 555 9603 7712 6371 5451 7727 9769 306 16 7537 3126 6965 1221 5191 3766 842 9593 2373 6400 7519 5215 4622 7355 4145 2478 9684 8354 4489 4368 6558 1981 3466 8824 4747 2944 6314 8071 959 7615 8375 4268 1511 5535 5439 4664 796 7153 252 4933 5841 3470 4214 5472 3009 7115 2809 4457 914 6668 7060 5564 9459 1134 2870 3879 5878 3023 8725 9766 9038 8508 1997 6296 3263 7983 2544 1864 5279 6704 538 1206 1299 7140 993 1540 8829 6138 3155 223 211 2955 7020 2095 2820 6917 5548 2296 9284 3880 1322 752 1173 1056 5814 444 7813 339 938 3947 2846 5542 1991 1636 7036 2721 3964 4809 1451 2939 961 5675 1688 4733 2661 4638 4194 2043 1961 6629 9209 7855 4664 198 7789 9284 2701 8378 4451 5669 3461 593 8894 5369 3024 412 6760 8889 8053 2281 2307 9583 4569 9590 6608 2271 8382 4450 7161 5647 2020 7786 7180 8557 9409 3309 504 5271 2025 5429 7431 2813 890 7236 3038 7872 4457 7036 3645 2726 3472 7646 6509 7900 5689 9687 8366 2329 9703 9454 4305 9901 6299 7654 9837 8500 1944 8322 5246 8576 3181 6218 3350 9328 670 4540 9588 5023 1098 7660 833 2964 8755 9615 8597 6493 5755 4099 9460 8751 1625 4572 1596 3675 836 6478 4794 792 5988 7525 4199 6157 1538 580 9446 497 8722 5975 9702 8522 681 8851 8269 4288 7372 752 2034 6779 1805 4234 7752 2067 3529 8261 9310 8774 713 1467 7610 4429 5716 8397 9554 3531 6478 9454 7518 5011 2028 9974 6370 3236 1599 1689 1930 5318 296 8932 679 8910 6390 1311 8317 5025 8735 3734 2392 2624 7946 2296 6988 4026 9656 2990 1651 3792 3486 3661 1081 5001 5498 9884 6330 744 3070 2152 3659 8132 4089 1475 9387 70 4054 120 611 6005 6666 6554 4389 5035 9428 4188 9186 2582 8756 5890 8545 7976 6332 5765 4793 9994 8091 7704 8785 1984 1459 2209 7502 8708 3331 1488 6473 8554 7271 3739 2630 319 3490 3944 7654 \n5019\n502 2961 5464 7918 5102 2086 6360 3018 6726 6469 3119 2888 2418 9650 8271 4535 878 8173 9414 8283 3870 4434 9154 203 120 4097 1330 9472 9993 4185 1346 8211 732 3968 3115 2671 6704 7104 5578 1495 9003 9675 1505 7673 696 9598 901 304 2638 6284 3154 9395 3406 8865 5323 2427 528 300 5148 5979 731 9345 5941 6594 5924 6160 5698 5182 2571 8064 7956 4455 564 9032 5018 2843 7420 5038 9269 7490 7299 6061 6531 901 2291 6048 4424 1368 7734 609 7173 3841 7349 1048 855 2017 2565 9451 7438 7658 5283 5019 6494 8419 9859 8326 640 3976 6858 2764 830 8164 8533 4478 8116 933 6216 5335 2483 8127 3631 5554 739 9041 9143 5476 2701 202 4012 5847 1000 4882 3794 244 6224 6054 2515 5307 9252 4581 321 9624 4019 9731 9095 3113 385 6065 9136 2551 1710 2943 7136 9236 6732 6903 7214 4116 1218 1456 9035 6819 9005 6780 8981 8661 2591 787 4533 8981 427 7263 9591 4486 6525 8548 2919 8727 7610 5848 6920 4757 7780 5836 6311 7995 8287 8010 4181 4927 8928 954 187 6936 5538 6643 1990 4708 5938 1760 2204 6635 4849 9115 9632 9228 8814 7435 175 1194 8119 5969 2083 197 9172 4468 9419 1419 7295 9479 8340 5617 3611 6923 3752 4857 8362 8599 2445 7389 775 1673 1295 8531 5622 5525 1173 5986 4614 3744 3603 6809 5308 6898 1360 9557 4986 1006 3276 7518 9191 14 2447 7313 3526 7074 7768 9318 6097 4097 301 3444 6181 3593 7023 9948 4745 5567 6798 747 5190 6175 1038 3379 531 311 923 1424 9133 4053 3602 7327 5367 1983 10000 4902 1515 9683 7360 8997 6781 5362 8444 9344 1557 6848 2115 4814 1253 3486 3646 6054 8132 5454 7720 144 8110 6494 5442 2996 158 1731 6999 9466 6225 274 3058 8947 9514 5765 1928 3175 1796 2951 35 8988 6312 3418 3810 8763 6283 8991 3545 7452 560 9089 7208 888 1966 6610 8261 9617 7306 659 4783 6512 7226 499 2751 3849 133 9647 2326 4682 6032 6992 5654 471 3496 1671 7016 9605 8351 260 439 7440 8979 7101 5293 2657 229 7531 7854 5599 5460 1161 5585 1672 2662 4692 8899 8598 8184 9660 7705 8230 5521 7606 7689 2700 1444 1206 4955 4577 5746 7881 1951 4087 3002 8497 5016 2976 4189 5029 106 9824 2879 3355 1804 8164 361 8011 3877 3364 9417 6036 5407 9047 1816 9620 312 2532 4272 6766 1190 511 5414 6508 1002 9861 6781 5469 2731 7640 8706 4712 1430 1916 4900 8163 2860 5521 7229 5349 1261 327 1530 5745 5237 3173 6894 5113 9247 2504 6965 3230 5182 9713 7918 8202 2904 4380 6172 3772 2795 2832 9091 2991 4836 7970 1309 3499 1109 8262 6894 5664 9371 7659 4555 9410 7771 2122 2554 7309 3443 3088 7724 7990 1875 3610 3659 1628 4324 840 4859 6593 7913 3529 3146 6094 7297 6199 5674 3235 1717 6374 6482 8946 1962 7416 8486 5153 4811 4228 7717 2731 931 8678 4744 6636 4197 1707 9470 429 101 2579 7467 9961 1537 4854 5562 6457 9669 7268 1304 9872 4707 2673 5722 3838 1807 3039 9855 9267 4113 6458 4850 3449 5592 8545 2939 9486 512 6263 1386 6210 2428 9922 1423 2057 1266 9017 7245 6955 6986 4209 6327 4773 8806 1391 4052 7635 3099 3610 4038 7246 2680 8696 8768 4749 7058 8116 2572 8908 3173 4877 1022 7795 7798 3980 3574 7132 684 1156 7643 2267 4999 3861 1305 3137 1054 8589 8183 5280 3615 6909 6348 2010 5944 2157 8580 7917 8875 3130 6735 8985 3459 5032 8170 6781 3373 635 4214 6584 9300 3729 1199 9444 1969 5659 377 4039 23 879 8003 4727 2329 182 1357 5461 3207 8477 8900 3326 8131 4187 3313 39 7578 4929 229 4972 117 644 6677 9012 6685 1375 1697 4231 1577 5716 2035 7784 3694 2997 7137 4966 5368 4762 362 596 2839 2446 712 9893 1374 2258 7312 7841 5078 1205 2401 7440 9345 9686 3342 7580 380 4080 4001 7619 8907 8340 9877 4097 8558 4003 5832 3542 7436 17 862 2983 438 2639 1312 602 8646 7599 8067 2445 9012 2121 2726 7439 811 8789 331 2151 9785 8343 7413 6664 9165 4619 5362 4990 1847 8465 3803 1146 7983 931 3007 9594 2923 6881 5565 3658 7507 7843 9518 3134 3139 2602 5510 4750 7316 4573 1496 5640 9042 4695 189 2642 6881 6470 9310 8031 9063 5685 3596 9930 3521 6297 5113 9202 7980 1784 9572 6077 2429 755 4536 3308 1784 766 4483 858 2687 7153 2567 813 5674 8129 2312 9884 7514 6739 5487 6244 6348 7520 7516 2942 4321 2545 4138 3627 3228 446 8531 4441 471 8270 2663 2931 2620 4156 4140 7 5313 9091 5341 450 1432 4764 6582 5256 5254 6870 2485 9938 5527 8478 8448 7428 189 8425 5490 7181 5156 4032 9482 7495 9953 475 624 5193 9691 6325 7132 2234 6168 7983 2282 4096 7470 7836 2317 4372 5286 688 2017 5078 1523 3998 2595 2902 9148 7834 5467 4227 6450 8668 6486 1961 5338 3331 935 9815 1415 2209 4083 8724 5299 3078 3776 2307 4789 3440 8021 4771 3888 2357 4363 9639 6938 7222 6758 1927 6930 4180 3052 8886 2518 3123 123 5898 597 4912 5442 1123 4721 2830 927 8711 1199 1618 8876 6483 7973 1134 755 7107 4481 5945 5775 8974 2956 9043 2292 8987 9699 7256 8482 1646 1243 6825 4061 2225 6905 804 2033 394 9363 1765 7996 451 8091 984 1853 4145 5272 1833 9711 4475 4896 3735 2726 388 443 1742 8867 8699 6404 937 4752 2205 4842 5244 4316 7852 805 1648 7763 736 618 5086 5781 5992 157 5732 4259 8578 3727 9261 1951 9501 3474 4064 5019 9468 4217 4336 8125 4663 8444 4725 6178 5238 5880 1451 6469 5244 3237 6418 7955 2423 3592 918 8305 6402 874 4199 8125 2232 5790 717 9386 1548 2950 6999 8531 5167 6105 1791 7179 1287 6379 946 2705 7210 788 4625 1084 8108 6717 2110 579 4246 4380 2804 4458 2812 8814 2980 6290 3202 8867 9575 5345 6890 5681 5543 2636 4942 1810 8948 1571 8529 9258 16 7830 8989 5493 1652 1447 4441 5931 9897 3177 2331 5277 1292 579 9343 2775 8230 5997 3364 275 3233 7831 5970 871 8573 2473 7282 535 6967 2718 2824 3868 3700 8622 1583 170 8285 2416 5266 9699 6508 8898 6750 8245 6052 1393 5672 4988 3611 9648 5646 2831 5823 6353 651 2332 385 9351 5268 8332 3832 395 497 1384 9580 7783 4852 7793 8340 6537 1744 6100 9248 9658 3065 2119 9749 4663 7409 713 9747 4016 3225 3980 121 8384 1423 1795 6670 1774 6544 4224 9440 4590 5132 324 5079 8460 3859 9058 87 4471 1547 6833 6006 6241 8541 6012 5376 2270 2994 8979 2252 6851 2427 5812 5904 1028 334 5804 9634 8083 3587 4468 3236 3953 6038 7273 9631 6519 1739 730 9735 4430 5649 6263 1332 6625 9238 3869 7501 8493 1502 8774 9815 1916 2034 4619 575 7985 3825 8770 4543 1039 1397 3210 1841 5273 2692 6890 4474 4563 2563 962 165 9494 8020 9231 4746 804 4688 1122 2216 1450 9127 3249 866 4061 4856 9047 4523 8245 415 8247 2873 1181 702 7265 5988 77 5883 6074 7718 1972 4840 5730 6150 3718 7656 2845 381 1743 260 828 6044 5747 625 2279 7920 1376 5072 3959 6376 7457 9888 4070 2658 6950 4563 798 9146 9732 8530 1016 240 7940 1023 6523 9222 4744 2558 7684 9753 7948 7088 2073 1822 6540 8891 1772 3355 3817 1109 583 8162 1252 2749 5598 4904 4079 895 8647 5574 133 2035 3126 6509 7961 6624 7839 5377 3469 8771 7244 9473 3198 5147 5198 599 5349 3653 1627 9077 6954 1402 4959 9964 5167 1640 655 508 3134 3578 731 4940 5448 2225 3985 7101 2044 9032 3983 8931 5362 7944 1242 9830 3000 5241 5590 3573 1969 4993 5561 3934 8401 2381 9833 5317 5826 493 4013 6380 7284 6326 9177 8275 5003 2813 9851 7092 7681 5385 1913 770 7299 4374 9691 7062 2375 1437 909 515 5299 4219 7970 8382 1273 8374 1771 8242 1078 4122 9669 3443 3079 5561 261 8486 5484 2448 1077 9196 8182 2981 8575 7607 1412 675 4481 5410 1047 1608 6685 2077 4297 9362 5445 4287 9775 1903 9005 4432 169 1358 6306 970 3549 1892 7017 101 3892 5483 547 9279 3441 9026 2167 5338 7637 9400 6535 6130 8602 7405 7165 4240 9456 1954 4189 407 3264 4734 8439 9302 1326 8284 498 7057 1663 260 8811 1589 6482 3025 8488 1881 8111 2298 7567 3882 6969 4203 244 9726 9590 5893 2645 9893 7579 3631 6035 4192 2950 2724 2474 4760 9219 2857 9207 3822 3534 229 4689 7477 9844 438 2310 5682 9588 916 8620 5524 3155 1142 1168 5243 8028 7038 2461 6449 4570 8354 9882 9548 41 1965 3652 4300 2845 5711 4881 168 7597 8938 8886 3387 6461 6146 6648 3173 6732 4591 2820 1809 869 4426 2213 4017 47 6829 1644 7216 4316 7666 7967 2888 3839 4171 2640 9637 881 902 2058 6809 9246 3621 8432 3098 2235 8326 546 3477 5296 6 1101 3877 4131 8691 700 8393 2594 7754 6629 9174 6141 5401 6243 403 4060 3333 1475 4753 2197 9124 5106 3539 2747 3595 2155 1325 7689 7404 1527 3486 1120 6993 8231 93 697 1223 5769 8767 7758 6032 936 8319 8192 6679 8243 6634 2051 9604 2554 2522 5774 5006 9316 3481 5901 6782 7345 8373 9546 7501 9293 9010 1649 7866 2650 1940 8991 5996 3096 1201 871 7113 5927 6338 5625 6772 2737 2329 2156 3569 442 6368 7505 5533 1498 1680 6626 7833 4332 9368 866 2000 9550 6045 5735 9428 3691 5680 5481 937 4860 6314 784 7788 2511 1090 6351 7719 3 5891 9734 4706 452 9473 3658 1579 4468 6399 1482 9552 1313 8127 7967 6783 7010 8535 7388 2444 5921 100 7463 2257 3176 5519 1077 9069 1614 8117 6464 1718 4591 6472 4697 2091 7528 9902 9309 112 1154 1987 8981 239 3856 4678 431 6851 1136 6687 6708 7733 432 8943 4176 9670 8998 7267 5916 330 4697 405 599 7478 1689 2927 1249 2431 4465 1140 606 5647 4271 7917 302 3517 7336 6175 2524 9501 1315 6852 7106 94 4372 3913 8843 8195 148 9617 8775 1950 6083 5625 5694 7082 7781 8287 8448 6968 1735 1072 9105 9976 4337 1177 5307 1384 9314 3025 7189 5970 6634 737 236 925 8945 658 8584 8556 6740 1394 7359 5742 7310 7670 5029 6125 484 6527 8250 6038 3066 4826 9083 3185 9532 6038 4787 7125 3447 7206 4518 3955 663 7251 7166 856 7770 937 3061 1190 3847 3255 1471 9165 8265 8448 9432 4848 1534 6805 6335 5075 6157 2357 6711 5572 7026 3846 4864 6675 1177 3091 1414 9649 1563 8495 7070 3981 3570 4416 429 5519 2884 1216 7821 7542 360 391 5593 4447 9635 3213 5992 3404 8219 9568 7240 307 8460 216 2390 9304 2823 6354 3354 61 5081 6633 9510 9331 3920 4437 7344 2104 8682 7265 7178 5244 6965 8849 3155 9375 5757 6274 8552 2382 6590 4111 8162 3151 207 4163 9912 2206 1174 9749 2994 4224 7948 7470 7940 438 6438 347 782 2131 6308 9474 8418 9139 1557 9723 1768 6341 8462 4875 5664 4563 8589 1595 147 4405 1464 6051 171 5481 6687 4892 708 9387 7712 8874 7434 2740 164 8660 6028 352 6786 6996 4125 7084 4744 2236 4927 1599 1158 7937 8128 2142 5555 8166 3633 5473 1412 9703 1821 8986 5815 6392 7740 445 491 5853 327 839 9953 2681 5152 1379 2918 6428 7863 509 671 5858 8686 4289 2689 1933 6253 2108 7964 4348 8465 134 1009 9777 4753 9079 4082 6479 5044 6387 4933 5661 9243 4361 7578 5788 7189 5730 8028 5360 2293 9195 8941 454 3573 8472 2904 5259 7143 5254 200 2016 9044 9289 6685 9438 756 4810 8262 5719 2124 9784 7439 834 3582 7150 7611 2215 2715 6593 1058 2525 9900 9533 8043 4261 3756 8048 1545 7419 775 2503 6805 1882 5583 1983 3614 6783 5648 1500 4036 4489 4344 3150 7801 9991 7137 2354 1371 3166 9441 639 6193 145 5311 9410 9399 6996 2567 8854 8000 7234 36 7674 8515 794 3838 9110 2327 1710 9328 2095 1985 5622 4319 7080 7748 5193 4581 2905 4803 292 167 4635 7852 5571 427 4222 4263 6352 7935 7098 5270 7537 8613 8159 7483 7281 3730 8802 4832 4620 9487 4043 2461 3512 9823 1826 2802 3891 8507 4258 9690 4671 5302 630 8577 1022 5809 4406 6500 6326 2086 6886 2203 166 7269 4072 6766 7263 3668 2208 3261 9333 213 7024 5123 8977 3106 2020 1234 3050 4698 9637 5578 4195 6640 2345 9361 161 7568 5906 3240 5485 4264 8051 6199 241 8965 9802 4538 1242 7254 1408 4154 3957 2048 393 1888 5144 2574 9211 3706 364 6651 1350 3416 7249 4999 578 8307 8509 3731 6649 5786 4318 2155 4681 6382 4247 4185 3460 7336 3386 8364 1443 1265 1672 7840 4630 4129 3738 6390 6693 889 3741 9799 9820 7697 5071 156 9606 6791 8531 6168 6733 3345 694 2390 7806 2912 6247 8989 2066 173 8248 175 4037 9894 1520 9995 4007 4680 883 1147 7791 2893 8549 6892 4585 6861 7841 5468 6500 5860 8647 6219 2363 2000 4981 9588 6874 932 948 7979 6481 7510 6972 5644 2454 3063 2773 6852 2141 1231 3321 408 2146 75 4668 7109 3272 1805 5317 704 2644 4796 3266 1995 9480 5234 6056 3884 1001 2656 6113 6288 7572 72 8310 1247 8642 4706 4884 2970 1887 9501 2781 4399 6094 4124 9331 1267 5572 8409 2481 395 1744 483 7647 1595 3139 3872 6232 1050 5786 2349 8365 1459 8922 9511 2316 6806 3077 6615 9291 2917 9094 8076 3014 9321 9414 6150 4946 6696 9180 5097 5859 4430 9549 3420 6673 3488 6186 6420 1957 9710 8963 1243 9264 7619 1975 3105 7881 197 7181 5709 2332 265 5993 7921 5319 1557 9071 9397 3571 6640 7724 4587 551 4062 4809 205 3681 380 4981 1465 4838 9975 5295 2782 5140 5434 8290 6849 2242 540 9014 5734 3239 5842 7010 1580 176 6547 7411 4147 40 6922 8721 9892 942 5474 708 9146 5175 1772 4449 1814 6871 3536 7690 8726 544 9402 7843 9839 6796 7869 6795 115 4823 5224 3893 5141 3276 8870 6644 40 9139 2289 6634 7627 8733 5243 7346 5314 9175 1233 5081 6744 4392 2840 1071 8588 7765 8762 9555 2269 7820 4110 744 9979 7793 3793 7791 2378 7165 656 3614 344 9156 2145 9308 634 3096 4053 8745 8259 7857 4093 2262 4773 7276 633 8010 4780 4941 4754 9857 1923 235 5669 8285 762 4011 8483 9392 4485 6358 7527 4394 6111 5173 7862 6872 9633 3133 5601 1965 2173 968 3266 5108 7179 700 7503 3213 2537 8448 9199 8234 9149 1465 105 52 735 1755 1207 7563 5240 6433 7627 5577 6883 908 7622 8953 2593 90 672 6858 8348 9184 3928 5135 1150 5281 2024 2390 4495 6026 6377 7755 2969 8513 3967 3243 8429 7055 7764 1352 612 4606 9696 9650 4643 4508 4156 6900 4100 9515 3711 2063 6005 9118 5442 1807 8428 8905 5946 4748 2675 2296 4028 8593 7569 7629 2647 4350 6786 16 6422 704 3739 9785 9989 3663 4625 3501 4074 7412 22 802 9719 8845 3319 3426 106 9737 318 4200 7442 6305 5332 3023 8953 427 6942 8585 6134 5689 4094 2624 7056 5826 4473 3090 9124 4297 9576 6690 4721 9051 3955 3952 2767 8658 1411 2727 1083 4017 6856 8256 8266 6619 9413 6987 5434 2517 236 3649 1414 4759 4745 9295 9363 5996 8979 8401 3583 3333 7308 88 4523 3570 3128 2775 1609 8732 1128 7167 1887 1525 4113 9381 9803 403 5213 191 4227 8377 16 5323 6968 8435 6087 6263 8226 2950 281 3924 1359 6075 903 621 3035 3073 366 1247 9195 1881 5943 4134 7689 6382 334 7362 5857 1333 963 1317 4084 8702 6496 1100 3526 3843 1783 5195 9964 6889 855 2093 5074 3225 6370 8693 1454 4824 6494 5506 9223 871 779 9993 4437 9381 2632 8041 4533 1782 8339 9009 2455 937 737 9233 575 3007 5673 4164 3196 943 2561 4002 7246 4732 1905 7293 5266 3490 9852 8295 5396 5718 5348 2435 4297 5811 7819 3652 6890 4504 1738 2134 1758 7107 9500 5591 9404 2887 8010 247 188 1649 1765 1240 1981 7143 206 9226 6884 211 8238 6779 4115 6937 5556 480 9401 6498 1760 7985 1522 4883 4546 9551 7304 7646 2208 8767 6850 8989 7220 8876 7912 5754 549 6584 9782 5235 3650 3994 5049 8474 2130 3296 7769 2093 8320 2552 1119 8756 1252 9390 2853 2433 7846 877 7288 6776 2248 2544 5812 9272 3436 3039 1111 5791 8809 3702 8050 2501 4358 1200 3078 459 3385 5327 6275 7015 2213 7672 3041 3481 3443 9072 4570 5078 1523 1359 6105 9058 9545 7649 28 8259 1003 1935 9064 3654 7120 3190 7903 7117 2527 1954 4816 6921 3577 7088 2191 6321 6984 6355 5435 1659 7664 27 6763 3926 7488 9624 1199 5212 6820 3636 9088 8228 2574 3675 2190 2147 3240 5001 3758 7796 6173 8521 2551 4216 4045 7548 297 8121 3933 9020 3059 2321 7037 8652 8458 6959 8785 6962 4668 1527 1550 5004 7742 4858 9056 3258 8029 4650 1908 8563 3228 7087 8670 5910 1284 867 5483 3313 7571 2644 3870 6978 8669 7930 8405 6743 2631 9889 1426 616 3143 7071 2177 1241 8008 4333 2598 4345 3829 7415 6376 8870 481 8109 243 3031 8367 6516 6142 7870 2868 870 2494 8221 9600 4797 5040 7398 4597 9050 7576 5416 4770 5372 2950 7394 7015 5881 2285 2278 1911 6782 9777 5907 2864 3527 4828 6878 7297 7946 6782 3338 9075 1258 4400 3013 4302 8541 44 867 1079 7480 9845 7934 1949 4310 8213 9045 8737 2178 9173 6377 2377 6331 1326 5500 9920 5169 9923 6258 1337 2338 686 5607 2594 3125 2274 4900 4980 4453 4427 5080 2443 1467 3503 6311 251 1214 3386 7878 3881 9349 1939 5709 3958 3367 6243 4246 8438 8415 9088 5266 2632 7782 4810 3612 5836 4783 3947 593 3361 9901 1207 8623 9217 3672 1676 5139 4321 6518 9474 5347 4680 5382 5872 2009 2539 5241 6730 4652 9763 1287 5174 5947 8966 4459 3714 3980 4312 3854 3989 5066 5496 2104 9633 9523 4575 2458 4275 2331 5642 1664 15 1652 1813 5639 5867 2056 7317 8758 187 2349 7509 5871 8472 2840 5011 753 6521 3229 6242 8269 3201 8368 7709 6505 2636 5077 8164 5195 8190 5689 9900 1687 6504 1804 7795 1098 6911 5617 1571 7424 9684 1955 2262 2502 9321 2207 6128 3930 9625 3326 7476 7609 8286 5545 5096 801 6507 1717 1749 9163 3694 6560 9459 9193 1545 5829 2826 5809 5920 851 8681 9598 2425 4675 1264 9486 7656 4151 7654 2224 3090 3297 5607 7798 9446 3676 5773 4160 3776 6777 7017 8280 8693 7041 8335 4193 9763 1153 8863 4432 5009 7684 1023 9278 3609 6426 4952 9143 644 5893 9467 2278 7936 3658 4384 6514 5421 5256 5280 6320 486 354 3455 9110 2280 8586 4893 8302 3020 320 3186 5739 4645 5848 9675 113 8768 1699 6882 2597 924 6524 3063 3575 9382 9107 7069 1454 6741 5893 2249 7080 7867 1137 5088 3878 5714 1270 793 6848 2817 8848 8254 779 7134 5631 5405 8978 9894 3454 9566 6955 5673 5143 8420 2340 2751 8843 5218 8346 4729 7397 8079 2968 467 4041 1220 1170 9169 9493 2265 6908 3472 9172 1438 6210 7123 1635 6825 2057 950 396 5077 6503 5438 1025 1423 9261 2716 9680 2417 5810 6872 1861 160 8833 5933 3240 2219 9975 740 8806 7506 8764 2139 8863 5680 3407 463 1197 8342 3336 917 740 6814 3446 5744 7865 591 1597 9870 40 3801 5875 4112 4195 7939 5265 1044 1481 9683 20 1418 5320 9414 9240 4822 9366 8300 3372 1495 2346 5267 748 2778 2394 700 8939 762 3941 5959 6223 6118 5931 7288 7677 241 5187 5848 6453 5406 4287 4610 2908 8453 6195 2926 1145 7117 9219 4084 3253 2572 4225 1436 7482 9494 3329 9300 6186 5505 7642 107 2236 2318 5868 5915 2797 1231 8659 7224 4406 6007 1027 6132 6058 5938 2704 2272 1733 790 1548 9725 5254 9520 8633 9519 4031 2279 29 4288 3090 6773 5188 5636 9163 2734 9288 3350 7811 3384 4057 7326 3627 8971 8888 2569 4792 353 6529 680 1458 5195 6768 5486 8036 3425 1171 26 7674 1476 1956 1425 8424 7818 5531 5114 5088 7899 9084 2430 1661 9639 8563 3057 932 1070 9365 3046 8877 4427 1310 7941 4077 4913 278 807 6948 5876 2196 9852 7353 6743 5983 4416 9755 3617 2794 8099 8230 2561 6323 2095 3651 2620 2130 7118 5853 4160 3435 3879 6132 2945 7624 1157 6929 5808 8786 2666 2807 118 9795 7803 9553 418 9336 6899 9272 989 513 3457 8369 6925 5952 2204 5174 3990 5483 60 2076 417 1459 2121 6046 8512 1276 1824 5635 2518 2334 6770 1422 463 4813 2764 5257 3983 2266 4048 2511 4607 2297 6837 5019 6519 1200 533 6463 4648 927 1609 7628 6806 1675 6679 1276 9848 7528 7820 8569 4686 2777 742 1767 4900 2919 2638 1979 3494 3073 5649 8329 170 3507 2492 4418 7016 7953 6454 4090 1480 8027 8605 7911 5599 7398 6511 2070 6603 3816 8073 4684 2740 7364 9847 6251 6937 2540 6162 2340 4937 9194 904 9393 2233 3709 4477 6924 2818 4088 6827 9846 1182 3664 8656 2009 8402 8336 361 2746 2531 382 2632 8718 5998 9643 7196 8211 9189 2537 8006 5193 3632 8453 5944 680 7018 4398 468 8783 640 1512 2911 9660 2248 3858 2079 2148 857 4773 9281 6470 2780 5013 9727 5305 4581 1718 6561 694 270 5008 5476 1147 8745 591 4651 6355 7449 9881 8014 6055 100 2764 1061 9518 2794 6347 6901 6704 9865 8380 3345 1352 3471 3788 4513 5630 9007 8096 4830 2712 5486 9049 8085 8218 5584 3283 1706 906 8573 5620 3880 8578 253 1332 9593 6191 6252 9936 2784 6713 9884 1231 8842 3730 3165 10000 1931 5773 1393 2005 8684 6059 6311 7878 3725 3166 3303 6879 7779 541 6673 2184 9003 799 3423 6339 6924 1238 4605 9195 6122 9353 3536 7493 5056 636 7221 9091 8855 2605 5158 2999 575 5169 1566 6183 6320 2947 5102 6766 7322 1036 3567 8834 1962 5621 7524 7405 9477 2166 8961 408 3033 322 8214 4969 4743 1211 7228 8529 5423 6752 7713 5062 3972 4989 8158 3034 3143 5552 4905 2557 1335 8150 7256 5145 4517 4686 5141 7121 7944 9934 7546 8256 8550 4011 8187 4903 8414 5100 2369 3462 294 7349 1296 4711 1672 5970 9808 2657 8503 3764 7042 2151 985 8142 4290 6376 7070 9737 9933 150 9541 1829 9723 5447 7217 8575 9091 6076 9548 6638 3886 8740 2082 4333 408 952 6722 8609 5987 5964 3624 8612 2746 5128 8812 7122 4316 7733 568 1348 5581 3740 3418 6537 9599 2296 1842 2804 7573 8401 265 3696 1007 3415 256 6800 7602 4849 9416 73 4584 8369 6763 100 2154 6410 5920 1899 8135 2163 8331 7051 2514 6211 8884 9300 1407 1787 1067 6186 2134 4891 8138 446 7225 6794 7180 5217 2232 2704 6275 6944 1656 5945 1095 5936 4131 3275 7160 8060 1502 2059 2933 6938 8197 7374 85 5668 3436 3825 6811 5730 2435 3888 3490 7394 8728 3799 9802 1932 7880 2591 7662 755 4452 9874 3003 5645 4941 2725 8868 8629 3934 563 3533 4433 4549 2492 8394 7121 3285 5853 87 8180 2054 7794 8807 1884 2740 8210 1180 9073 3137 3092 7201 9706 8103 4698 1986 1979 631 6706 4433 1454 7591 8029 2195 8081 6067 9499 4157 8743 7997 7145 2310 718 7307 6405 7043 430 4370 1485 6992 6280 3991 3403 4154 8300 4535 6018 892 2601 6749 2926 6762 4763 2921 5848 8497 9011 2890 6778 5056 7682 2982 8493 6374 8407 9313 3949 3470 5787 1261 7231 6227 4593 8564 5666 8718 7598 2845 9829 5473 4246 4871 3950 4411 5715 3798 301 4191 8603 3786 7568 1170 3428 5457 1788 8099 46 2825 5149 5485 6536 9502 8695 6682 1062 2199 824 6831 4805 2516 562 651 3871 7198 1764 4914 8723 9068 5757 1269 3393 2090 9613 2833 3234 5958 2210 4406 8990 9522 7799 387 4865 3127 5074 9887 2935 6082 9687 7121 4012 3031 874 6838 8500 2768 1165 828 2003 8823 7605 7716 8442 3109 5745 1759 7808 3722 3806 7456 641 8890 4685 8788 786 4449 8436 1997 1923 6019 4992 4489 5373 4929 1130 7534 8464 5609 4134 8994 7244 1815 8432 5545 1431 837 3030 1011 5132 7392 5759 5096 3267 5922 4003 4650 6426 4241 6958 8768 6462 1332 1730 5355 3857 2464 4158 6160 2373 4160 3338 3260 897 5135 5128 5853 5477 5752 7529 8633 4651 131 1012 843 9964 9162 7583 70 5677 753 9894 4450 5732 6983 8944 3673 7183 6023 1393 5167 868 1905 7437 557 8438 9780 9124 7323 8491 6940 3352 8522 5694 3491 7844 2551 7330 4988 7752 4407 7827 5969 664 9600 4701 9675 6920 1454 7623 567 6369 9553 1992 1199 9997 1933 5436 8665 8143 7823 8183 9031 3041 5610 8513 1829 5816 749 5110 7955 6698 2134 6379 3883 2416 4658 958 1944 4094 4325 8765 48 9726 3821 9390 3489 2824 45 6651 9549 5121 1781 2192 8098 8667 2416 3719 195 2824 5358 1436 5508 278 4807 8071 6484 2650 5906 140 8482 5629 2515 6987 6344 2853 1719 5731 8095 279 2259 9568 2417 2837 6217 1310 7607 3899 9914 4890 4441 373 3889 1032 9252 7085 5808 3028 8035 142 1755 2140 8433 8343 4384 4378 2634 2794 8721 7487 3309 4329 6877 9196 8777 2675 3162 9548 7891 9669 8278 2778 3912 3389 6706 4977 9728 7662 241 4744 1691 8037 180 7323 2393 2280 2189 1698 9745 6926 2126 1464 2007 4236 6342 5510 2515 8676 4794 8095 2792 5455 3108 6663 1012 6919 7911 8933 3625 9795 2127 7198 1053 9356 668 3885 5304 7525 4196 4145 1981 6301 7763 2247 4363 758 9411 2492 6528 9461 1176 3232 5910 2948 5402 4119 9801 6291 4301 6639 9753 3504 3552 9503 2021 3275 8568 3132 1089 3626 7565 9627 8586 2902 7806 9399 3978 1019 4605 5399 3966 4156 321 3636 8848 8625 2564 8960 6044 9138 4404 9521 9350 187 8383 4417 7770 9900 5431 3958 809 80 3802 5096 681 5899 85 4896 4436 3295 5261 7161 7224 632 9563 4855 8854 7930 6584 2416 4498 7495 6410 4888 2865 3265 7454 4691 5331 4061 6401 5735 6083 6207 3983 941 6229 1570 3988 5398 1404 6652 7337 8921 6909 3720 7522 5288 4301 1590 7644 6767 2605 6342 1577 8603 4537 1499 2687 4565 352 8616 5510 3615 4399 6851 7664 2757 7441 8331 6104 1721 3435 3442 7532 2621 175 5733 1394 9673 4178 1935 9881 5206 1205 9215 668 8010 7408 5284 7366 5312 1177 9001 594 768 7582 7990 8377 1184 1600 8346 1805 3394 8340 3706 1250 7839 4249 4705 925 5328 8601 3834 9130 4544 7849 2530 1416 6360 8621 5867 1246 8125 581 3400 3247 492 2990 8556 7400 8215 9532 6834 9785 9119 9837 2739 4377 9726 6130 8526 8627 495 4645 2287 2970 4196 4711 3680 6461 3023 744 8485 8073 954 7624 1686 2853 9112 4449 8632 9535 4842 5267 3229 3317 3434 7054 5085 3455 9413 7187 6480 7817 715 5950 8870 953 8518 952 4053 520 9543 6944 5091 9051 5476 6722 1130 9492 1522 995 5861 5641 3110 2804 1232 6611 2884 2914 9755 831 8204 6361 1795 4619 1436 1824 8165 3492 1261 5749 8771 2512 3454 2053 4071 2068 9295 4222 3292 4341 6578 6441 3848 7805 8764 7199 3759 8775 9809 4965 5739 3645 2108 6768 9652 8860 8480 3770 8372 6698 5749 3948 978 3513 8192 8944 6025 3145 5687 2577 6729 1792 1533 2654 7513 2304 6656 857 3442 44 3260 7792 1406 6768 3685 8586 2910 6522 9225 6884 1843 7512 7279 4633 5524 2431 6591 3862 656 2829 3828 2564 5647 4496 6019 4599 6311 9008 790 3598 582 7771 8872 6991 8386 1288 7762 410 40 5789 7069 9769 2497 4033 3301 6235 1552 7934 7047 4673 2362 2210 4218 210 3528 4632 4262 1874 1378 3951 6216 81 6190 2148 8603 723 122 3695 4736 7262 9163 8691 4544 6301 5129 7301 3419 1409 6335 9427 8898 5433 2843 4057 2330 4587 2204 876 1892 9882 7823 5718 198 5049 3320 888 5470 7166 3306 3722 4701 9741 8368 8661 4135 2430 3460 3124 1683 3957 3997 7375 7187 602 1243 8093 7444 2374 241 6668 6192 6179 7163 7212 6723 4547 9987 8895 7313 6881 9038 7161 1247 5036 9611 5899 8633 9155 4390 2173 9792 9350 8375 4026 4509 4345 5110 2464 7781 6706 6390 1938 8684 7597 4256 3638 160 395 6541 4815 1892 3740 6138 416 7476 5082 8819 655 8317 687 1034 1917 8113 7801 4989 9147 4615 404 1699 4736 742 5074 8619 7521 8099 7967 9384 233 4328 1888 4286 5627 6341 4168 9140 80 7960 4692 7447 2588 4132 4678 3767 9047 854 8611 3774 9081 4706 2824 8786 5881 5625 5517 6996 7097 160 9699 2177 3943 3106 2360 7437 7840 5306 5544 3271 5726 \n644\n6139 7163 5968 6233 690 5711 5099 219 7989 4799 7148 4624 6905 9013 5751 8641 8854 9648 3209 1726 5568 372 7900 7279 2077 4887 7867 873 1900 7040 9848 5925 4966 5761 9538 3789 1779 9699 9940 3043 9139 7175 870 9212 8120 312 947 1936 2260 8537 331 3550 7735 990 732 7958 5146 4107 599 7587 2989 76 2093 9328 9188 818 979 8367 2774 1144 3577 824 9903 8944 8723 5221 2125 3806 7182 6956 1 8955 2583 2766 9137 4558 4719 3432 5880 226 8424 9421 3723 6557 7212 4234 1728 4583 7940 5327 9958 3425 7113 8825 3953 744 9104 1494 1551 420 7374 6572 752 3174 4173 1083 2271 6918 1142 3112 2102 8280 5939 9264 1265 7157 5828 7169 8238 9238 3820 8411 7363 3232 2847 3860 5239 4740 8481 4847 6156 5662 3344 6309 9092 7267 8473 1457 3567 9754 4810 2600 9498 8171 860 3628 6703 1903 6323 400 2130 5498 4943 6097 8991 6194 5632 1039 1484 1082 6129 8750 6440 2032 9619 1101 5975 8761 8513 4094 9353 1364 6012 1355 3205 2437 6450 7982 4904 6831 9922 3399 2221 3375 5451 9384 6306 2626 4968 8860 177 8620 6694 408 489 5414 215 1541 8075 5096 800 6424 2809 5170 8310 2457 2702 5317 683 4727 8397 9173 9418 3561 3864 7539 4122 9694 9393 2637 257 4036 5511 3822 6503 687 5286 6880 47 4742 7039 4274 3142 6256 8480 6794 6683 15 8118 9423 711 891 1305 3559 5659 5186 2223 2368 3284 2894 5984 8474 6188 1906 390 4993 5755 9057 3476 8616 6186 3772 3058 5537 1392 2999 139 216 9731 2368 4945 6030 2522 4677 7850 669 1832 9088 8247 3345 3981 6619 5656 492 1980 790 4753 6498 1657 1881 9453 7384 9117 3369 2249 7593 7386 453 4995 3838 1175 3547 9036 3929 6446 4240 7845 2752 3505 8841 8196 7163 806 3076 8794 1161 2840 9861 9461 2192 841 2226 9749 7528 5601 1629 2566 975 8973 4410 1101 5269 658 459 5484 430 3497 2292 5684 5516 2561 3986 926 84 5777 4825 2898 3724 587 7591 7789 4695 7163 2411 3126 5289 6649 5283 7415 9994 24 5286 2247 7595 8086 1877 3294 4450 467 9584 5672 5399 3735 8012 7658 2750 8538 1043 7246 6714 3146 3175 6963 541 5296 1450 8251 6752 5250 6192 2920 8667 6039 2691 2129 145 9508 7997 6747 9751 3582 6917 4863 6367 567 7066 5807 9881 6602 4124 2065 7343 7031 10000 5291 9477 2916 5330 1514 5146 8804 4773 2658 3184 3766 2212 6713 1811 296 443 5542 2774 8457 6524 6633 1969 2187 7902 5844 601 3317 6603 2150 7541 9704 662 9781 4321 3226 2096 5668 2153 6496 2868 5980 3349 9567 9682 7862 442 2900 4038 9568 4681 9527 3267 1218 2776 8149 4982 4173 9338 1860 3410 615 729 6969 508 427 5858 1374 6504 1420 164 9377 8261 708 2150 9028 1161 2465 2339 6428 6557 2535 1120 3689 6595 1029 9916 3476 8474 6667 4494 9063 4856 8243 9408 4553 8305 7803 9206 3263 9503 6887 9761 5935 7025 7687 6232 6847 625 8375 2081 5770 9118 505 5732 3267 5532 4796 4529 5820 1287 3057 8851 4373 6671 7600 4108 5429 9089 5789 1470 3834 4946 5075 1742 1508 9724 8715 5234 3831 7897 7068 5351 4050 7239 4045 8617 2149 3705 2872 2212 7006 9989 7554 304 7047 391 8718 8168 9651 4561 3921 2223 7691 5819 3435 2007 9799 9968 5978 8526 2894 9931 4555 5178 7738 5092 9182 938 8655 5646 4856 6669 2089 1856 1749 4812 3908 4536 5668 8711 6812 6002 4168 714 3317 2050 1722 1187 3377 3478 3769 672 9182 600 3396 361 3809 6903 8362 7547 4802 7853 4423 6017 8763 9293 1825 7292 8100 7342 \n4009\n5612 1177 8215 5998 2224 5179 3200 9233 8167 6533 7978 4112 3952 5066 820 7927 9251 2921 6880 4851 7660 4762 691 4304 8519 8865 7499 4537 3851 8179 6958 8292 9031 9240 4150 4124 4705 3316 2625 9946 1830 8203 6773 2423 7391 4023 8322 8872 3631 8276 1545 4059 118 6317 653 9460 7064 2337 6238 4294 101 1420 3621 1113 5800 1141 3559 2402 4312 7599 8062 595 4724 8065 404 9080 3647 433 3021 2847 7726 908 5515 4920 3290 7983 7653 5509 1743 9007 246 6117 6857 7069 5332 6392 5514 1435 4202 1268 1600 1014 5463 925 2982 525 2225 8847 1159 7563 6067 29 6464 7714 5013 7824 2079 5915 4363 6856 5642 8087 8726 4750 796 8761 8938 3514 3620 59 7573 3596 7150 6038 6635 1581 6731 4868 8586 7935 733 2487 9458 5382 1339 5621 9758 7721 3820 3271 7173 9546 4145 4317 7093 254 9196 8497 7108 6722 8563 4030 8778 7378 4835 7202 3510 4974 6270 5057 869 8306 2029 7624 7358 1249 9042 1223 5824 7274 6181 1928 9443 3797 7393 992 3064 1262 2763 7655 2035 4318 6123 6025 9532 1635 1177 5218 9168 6647 8684 9103 9708 4675 11 4124 2750 9454 4527 6716 8022 6455 5595 4507 4755 5646 2428 7425 7501 1505 7214 4730 1984 7790 2509 7721 9739 1610 2905 8254 656 8436 3662 3196 6853 6126 3802 6462 263 996 1877 5933 737 3189 6484 2305 7149 569 1627 4914 9191 3199 4447 9131 2211 9850 2120 4989 7074 9242 5662 2293 2811 1628 4886 2126 4217 8972 855 5097 6208 2406 1516 8544 6471 7214 4248 8537 6134 3935 1127 5432 2032 5692 7892 1666 4823 7101 7473 4956 6509 9745 3439 9122 8730 1830 8470 7098 3394 9770 5536 6107 9395 5995 3462 936 5936 978 2234 8840 2669 9517 5332 8218 8664 9912 7959 4230 2527 7119 1599 8578 2793 1450 1066 8656 9855 2387 5571 7051 9625 9346 1289 5723 7962 1543 795 4948 273 327 811 2651 2167 7332 1487 2709 7028 6375 7729 187 9939 3256 3593 5086 9600 7850 9718 414 3747 8230 6774 7175 7551 756 6669 6307 5165 1351 3999 4393 414 9077 5200 962 9593 1197 2088 2695 9288 4684 9391 4270 8409 5848 2256 5195 7905 3599 9523 5812 9057 5759 4258 9447 5700 5881 4508 8569 7288 3789 5324 2757 6023 3055 5638 815 2100 2315 6514 9641 9108 2269 6655 6471 2366 1167 8074 6608 9057 1165 3947 492 505 7699 8038 5708 7068 7069 921 5444 3487 9592 3753 3516 9152 8500 8034 8372 4781 8267 7798 9715 5362 4314 7681 6873 7078 5737 8380 8728 1889 6058 8778 2888 4432 95 947 9894 4937 5911 6026 8821 8697 2103 840 9996 4592 3419 4181 522 8763 5634 1105 7307 2267 4726 861 7887 8241 5458 1628 357 1528 2889 9945 7206 9374 5599 4963 7783 9727 5969 2952 9733 4267 7039 6886 8728 3685 5629 4045 2704 4136 9307 8877 508 4250 6998 3040 5387 1184 1756 5344 8432 2161 2104 6559 3416 4299 2008 151 2834 2900 2182 476 4457 7197 3173 6397 8454 4369 5605 7115 3524 5978 7086 9017 4030 2533 9736 4839 5927 7041 6423 7913 936 1700 3775 7828 8988 2355 3849 9688 6887 2609 5294 2696 4813 1777 3533 7402 8125 5489 8446 2965 209 6114 4767 1920 3302 9613 4913 9890 2258 2826 849 6668 9324 759 9454 6028 4145 2710 1194 6385 2107 4536 9901 1497 8092 5948 1577 1524 4084 6941 5573 658 9363 9434 6283 2275 3623 4296 1894 5546 2534 4970 4295 4869 3389 3556 4989 4095 6026 6216 1738 1963 9896 1199 8823 4457 6386 3669 6412 7276 3902 8891 6545 3939 8401 8330 7670 1729 9967 5058 4147 9425 3020 5199 4807 6791 1722 9260 809 8597 6518 578 9795 4699 4449 4355 6614 5978 7337 7813 300 4492 9979 3265 7832 7869 850 1537 5739 7976 9961 5089 2947 6788 3538 6761 9667 8213 6265 8441 8735 5951 7666 1018 2117 8481 1596 8916 5006 8996 551 4118 1663 215 3417 1286 8824 2088 7235 9558 631 5589 7990 4451 5451 445 2724 7501 7117 1647 9318 4517 3015 4104 529 1659 9074 6193 2456 9375 8704 7174 4459 1221 3387 4566 6833 1727 4353 3668 9101 2389 2795 3453 1648 5246 2908 2117 8005 4380 3404 1913 6907 9490 3796 4973 7782 8091 341 9332 4718 8255 364 5173 7819 8513 7784 9339 8434 191 2696 2995 703 6309 3704 7529 9549 8665 2486 5101 3647 6655 171 8605 6620 4126 1837 8688 857 2407 9950 5729 5123 6270 4016 1117 835 4792 8131 7728 5407 6446 3567 6165 5104 7733 331 2365 5026 1317 7955 8831 448 2162 3496 5544 3002 738 7347 7141 2955 8941 7256 2708 5378 238 9717 7860 275 7036 9123 6657 1486 7286 3656 3514 7305 9832 554 5016 9725 2886 1320 2394 5857 6941 4094 8481 2202 8073 6810 394 8371 3312 1460 4772 7759 9405 4459 4068 4980 3905 5906 8512 5433 7194 4893 9224 1944 8982 3998 6412 9376 8754 5335 3061 2530 314 6303 4171 8101 1987 8920 8543 1375 9925 9668 5636 6346 2512 9659 369 664 6944 9893 4337 2732 3403 1553 3393 8653 6783 416 9582 9425 5147 413 7366 7068 4439 1422 5976 4065 7874 8448 2330 5975 4319 5389 9424 2761 8641 5876 7172 4844 3508 1711 2223 758 4665 845 9999 7484 7927 5382 949 2860 7143 6280 4492 1629 8150 9612 9540 6727 934 5812 700 7694 5552 3984 3077 5822 1393 6661 116 6103 4860 8339 2211 3272 7452 295 8807 7664 990 2674 7208 3525 9299 3811 2686 614 9460 4640 8065 8889 2108 7001 6637 2394 500 2571 892 2428 2666 7203 2098 7369 5622 4705 8726 777 1595 3618 8943 5262 839 5027 4641 940 8673 3982 2146 128 6964 7460 4304 7047 2038 562 5590 1209 5794 3419 3044 6036 1308 5775 339 5892 4158 8473 613 7248 2145 8008 8305 3202 6042 6462 592 4250 8401 7474 2192 6869 4194 852 9484 2418 4194 8477 2707 9491 533 8483 9060 3725 8881 3934 8932 3371 7088 6170 1828 1864 3122 4630 3347 7872 4261 1269 5869 3969 2000 1763 3966 4557 8188 5144 2471 5344 9953 6124 5011 1644 443 1877 9744 2164 6946 1609 992 94 3702 7080 8821 4086 9192 3510 5134 8865 8429 9670 5981 3134 3030 4400 8354 7454 1882 8338 9771 2991 6672 5069 2193 813 5804 6838 6799 4925 2165 3580 1520 3863 183 2594 4324 2131 1921 991 9221 2130 1700 956 3602 1620 3533 1383 611 3745 4095 8556 9837 1070 8657 8154 3813 9690 9240 8574 5517 5528 3727 7853 4135 9351 7030 1513 8589 4745 7997 4311 7431 9787 9651 9209 546 4693 8480 9783 3780 4020 710 1180 3726 4730 4575 8419 2658 7530 4767 4593 3061 1737 6467 8753 7855 9065 8442 2492 7230 5357 4755 3987 1144 2031 2656 4307 1714 9596 2654 1769 9477 8288 2427 8308 6210 1915 3199 6171 5674 5633 4910 1812 940 8307 1992 3874 4387 4166 5373 3844 3876 4860 9718 4842 9293 3547 4300 1085 7086 8962 6700 9290 9439 663 2442 2300 1212 3015 7068 3299 6312 4883 7789 6744 5648 9872 7449 2152 3484 7760 1137 6635 7644 2914 4311 7905 5258 6108 412 4989 439 8919 4168 4819 5109 2298 7917 8536 9400 1783 7588 3836 5283 4822 2139 3188 4055 5538 5271 4933 9781 3393 9159 3363 5481 3170 2274 5253 2059 25 9628 2306 8796 6021 429 9734 1364 473 9420 5257 343 5824 924 4194 3020 9896 4237 6660 6090 7 3350 4834 4655 4075 584 491 1788 3031 5927 2264 3520 6173 6543 7500 9078 8482 5503 8614 5076 9750 3709 9657 9309 8150 9628 1051 6907 459 3100 7454 2135 8865 5903 6685 2707 783 7104 7070 9545 1483 8942 9154 1660 8359 9728 7710 9061 1650 7101 4750 2966 3073 8700 8180 4284 3880 3341 2938 210 8846 9571 9308 3913 7316 8749 3411 403 2957 1056 7021 3463 5230 3110 3571 5066 1431 4505 7811 1964 4455 6811 7097 8438 3638 4022 6989 7130 8321 9369 2787 144 1549 5035 4940 9879 3968 2672 3287 4460 2783 1103 1398 3903 8241 8205 8766 6477 1279 7743 4034 918 1000 2020 3346 7576 609 500 8335 6257 3585 5985 4965 5666 6595 4217 4791 3443 6839 2087 2506 1993 8371 9125 31 3182 7393 2621 3946 5386 1796 1190 8633 6692 1649 9190 1220 6960 3249 4040 89 8027 5976 7783 406 3961 6813 4117 9033 6709 3254 6271 395 1020 5176 9765 9546 4412 4857 7622 512 6199 8780 8663 8820 1112 4377 4781 4933 7337 4920 633 7964 8677 5230 4059 8360 690 4626 9771 6345 4681 7106 6439 295 4677 9915 5271 9363 3388 9583 4877 8487 9705 7492 9625 5062 7455 8389 2323 2799 6100 7386 6912 4390 5594 7741 9726 7661 9687 2979 6359 9597 4937 7368 10000 4405 1212 4536 2060 8446 8819 6732 8433 619 9833 6094 2146 906 4476 3994 5985 331 7127 4925 8156 4247 3476 6841 377 1802 3052 2926 3393 3387 2215 68 2280 6543 9647 8241 9252 3773 7046 577 9749 7438 3193 1408 6967 2595 7389 1044 8481 6943 744 1129 8691 6098 4029 374 3111 7343 1294 7222 503 6576 6552 6064 4995 7679 4653 8733 7206 499 5467 2460 4039 250 2311 1868 3428 3410 4923 1276 4001 8474 8702 3921 7046 2084 9320 4076 3819 3580 2401 2322 1226 3643 4252 5665 9943 2024 3621 8250 494 5864 9364 9527 2610 6373 6499 9277 551 3721 2640 5556 7172 467 5300 5951 7647 4249 1160 5691 2862 1201 6150 793 1557 6262 3243 2502 1030 8031 8938 2591 2378 5441 4978 7204 7179 4869 5566 223 8937 9431 6182 457 36 4577 9702 437 1680 7543 4 5120 928 2613 725 4485 2629 1665 8040 5764 1802 945 7198 2855 3525 2060 8943 8489 7477 2980 4452 6057 6362 7491 1358 1200 4 3514 7038 5485 9524 5732 9757 597 1516 1756 4536 6567 3173 5289 2785 7354 3748 6007 6130 8224 9175 4141 6437 5199 8581 493 5190 4228 6969 3922 8124 8765 1464 5363 1256 1714 3011 2776 8409 6528 6983 1071 4594 7854 1168 4047 2265 1443 8382 1622 6762 4043 6286 108 2355 7041 8233 2666 5253 1762 4214 4076 8809 5379 9758 876 2455 8198 2093 125 9079 9287 1968 5388 7814 2461 9280 2168 2445 2157 2246 8552 9529 1176 3605 7147 4736 3536 6187 2253 3098 5556 1566 5902 2399 981 3644 9763 2971 1669 1521 9108 1346 2583 2867 7767 1048 3470 7681 459 2617 7072 2209 4267 2047 3970 1830 1464 7706 4135 7789 9540 4479 8954 1453 5421 8710 8672 7637 8985 7637 4998 7087 1728 4093 4620 1763 8614 3740 9084 7843 1623 3422 8415 8141 4211 9592 650 3389 3338 52 6296 514 5785 706 1546 6298 3334 5593 8789 6774 5907 1616 804 3627 7555 837 761 3893 267 5218 9773 3487 4280 9728 5555 7375 4428 4147 9703 6802 5219 5980 7974 7571 5257 8385 2312 6042 2034 2971 9543 7881 2307 1760 3775 5533 6398 9589 215 3463 7973 3022 1142 7932 7694 5875 1820 6828 8102 2082 3256 3862 7617 4675 1727 4055 4616 530 7211 2800 8266 6169 349 463 8662 3832 5029 3560 2654 4378 8598 5675 9575 4811 5747 2941 9844 2910 1263 1423 6646 5558 6188 8475 2280 5667 1071 5323 7562 7962 5102 3218 123 5535 2541 112 2856 8774 9602 5709 1268 3673 91 3738 160 618 1128 2724 8037 4146 5423 1404 4456 5409 6769 9240 4502 9666 7185 2717 2650 667 3838 5300 1891 5592 9397 144 7693 5714 3055 1977 2270 8634 3698 5793 8717 1741 3487 9643 4878 5417 3885 3133 6064 4599 1599 2609 2369 2362 7181 679 2658 2791 1091 7988 7842 9811 9803 3521 7851 2386 6705 9055 4120 6861 9711 1438 8641 2662 3533 3515 7832 7816 452 511 2296 7216 6858 7619 848 9805 1161 7368 3883 2807 795 1413 355 768 1097 6726 3427 4292 5171 584 8765 4029 9276 795 1853 3159 1550 1793 2559 1030 5841 9379 513 7925 3103 457 6088 8637 4274 5692 8080 3272 4790 8831 9117 8710 9170 8182 6430 3408 6576 782 2626 5862 9306 7344 6993 8287 8627 1035 8848 7256 9950 6905 6160 9114 3572 4924 4709 2067 1739 939 8220 8074 32 2303 3663 9692 7771 5038 8210 9846 9 5585 8841 5120 1551 4371 5236 9194 9041 6045 3719 4364 2914 684 2856 9429 5733 9759 2554 6208 2401 9458 2181 2780 6199 9497 2243 5921 3498 1669 9908 6791 3743 4145 4696 2269 1751 6643 3337 4081 2705 5112 9110 216 8823 3869 4609 4054 3318 2932 8968 8386 8938 4578 7620 2813 8986 1406 6811 4496 6133 8399 1905 5360 1626 6401 1156 527 7137 8602 4275 8990 1136 6968 231 7416 1927 4801 9626 5496 6378 1491 1764 4151 7918 3564 1784 5669 2159 4241 8112 8827 1479 1921 6737 5541 1135 8761 7308 2241 8062 5109 3631 9282 5119 6632 9374 9820 5503 1191 3862 6092 7245 2224 1190 6654 9569 3954 2567 1247 3241 9600 7074 4792 8019 6691 9688 9533 5154 774 5829 7996 6335 7369 7553 5033 8594 7935 9426 1793 9595 9813 6393 7608 5971 720 4621 3223 468 2547 5623 9620 4713 5849 6962 6604 1000 1683 7877 2852 6452 3807 3073 8280 8005 9843 3097 7319 5720 6157 936 9116 6222 9006 3921 1555 4111 8613 3790 5992 5281 9475 6250 6900 9079 9478 7762 5000 7739 6552 2365 8399 4505 2382 5818 8244 6741 6735 518 9756 9129 6624 6592 4537 5100 133 9070 8419 1903 3761 6348 8911 4730 1070 8920 1525 6884 3575 3111 8631 8441 4893 8308 1901 7048 2623 9862 5268 196 6592 4952 5261 3009 2020 4096 9899 8028 539 4462 9173 9565 1601 1522 2239 3378 1844 8181 9045 330 1310 2011 6921 7158 7618 8739 619 4412 6367 5039 7541 8253 9935 7445 4481 1649 618 6426 9153 4190 705 9028 6623 1036 5 5010 5663 7140 790 9854 4200 7009 1246 7511 7636 5754 8554 409 2052 1140 9869 7159 8952 3 3133 5215 8382 8551 5782 1376 5494 1848 644 5730 6205 4207 1814 6556 6688 3582 4264 8204 1087 4125 2258 5249 7520 8388 4459 5676 227 9903 5115 6635 7451 6128 4162 4997 9304 9998 6265 2879 8646 1963 8783 4492 8053 9236 9664 846 8596 2669 4664 3365 6428 4544 3322 7198 2439 3287 1635 8269 5874 8108 9600 6630 7958 875 3857 4145 8784 9406 4638 7400 8596 3374 6383 690 9816 7884 7013 1985 8288 461 1314 8930 7026 937 7169 3833 6479 7266 4340 8027 8030 8377 7630 2235 8516 7660 3658 1042 4518 7289 1675 5309 4463 5545 4558 794 5891 7846 2008 903 6877 4469 6882 5155 1681 652 562 8333 4234 7352 180 8885 4525 3569 4683 6613 5089 1503 6677 6935 5079 8493 3803 7245 6188 3286 6527 805 6310 3472 8803 8872 5180 5414 3006 9659 6891 6211 3834 5614 3780 5234 315 9791 6768 8320 801 3230 7367 6909 8873 819 3352 9004 1985 2943 14 3684 2713 3637 8224 9334 6782 8255 1179 7794 5339 8609 7213 2894 8362 1624 3673 6278 7716 2998 409 5082 9880 3591 1526 9806 5130 414 7680 4965 1400 9953 7385 5117 2718 3030 6380 8502 758 4236 5677 3443 9580 7120 9600 5675 2193 1843 9170 573 3152 6049 2926 9164 230 586 9455 7124 5667 8127 907 8098 7959 2521 59 1995 9472 6756 837 8975 9424 7981 5955 6422 3383 2101 8961 8213 1827 7341 6250 5052 5447 2579 2522 2959 7154 9564 9378 4324 1177 4785 8810 5579 191 9570 982 7049 3604 5 6197 6618 2205 6659 8870 2333 407 5529 2214 3591 4795 2240 2990 5470 7979 4239 5296 1601 5906 1755 1235 3674 8185 4435 5997 6990 6954 9405 2607 7313 8666 7084 953 1722 8795 4462 6604 4403 9560 6414 2675 3559 9014 9011 7265 2007 2360 2595 1994 1474 5028 6277 5174 5805 9159 7173 8092 8583 8484 3048 9794 2855 5430 7752 2116 7221 9542 9421 4471 5674 9938 5684 4700 6629 5417 8007 2697 5793 3845 9299 5876 5285 382 6842 6981 2024 1654 8062 5819 7939 2724 1944 6144 6961 2916 4376 7424 9514 1234 3950 3384 3854 3369 7237 6713 6672 8852 5596 5644 4409 7472 7132 1264 6419 1617 4219 2500 8826 6520 2556 8948 2539 3352 5992 422 172 4230 7186 2852 3892 8126 5971 6205 4916 7465 9456 2259 9820 6046 1936 2331 2266 4887 9462 6851 6380 2346 567 3163 3397 2269 3816 5590 6881 3317 1350 1478 7542 906 7681 3354 4735 3409 7182 5174 9685 577 2982 1828 9459 5287 3846 5191 3275 803 5384 32 7449 3735 4591 2215 779 4447 399 1512 2392 9292 1277 3507 5347 3547 3708 2483 8543 9190 7029 4256 7082 1313 5643 9278 6331 9991 7715 104 670 7180 7437 7210 3564 6972 1994 357 4115 9944 5561 4108 601 4947 1499 7476 7832 7350 8645 570 9244 7404 2011 2527 4358 2717 5608 1300 5653 4737 6221 772 2578 490 4044 4533 1067 7638 8181 631 9388 771 3364 1019 5559 7545 4956 4809 9194 2047 6912 8956 7558 2769 2368 6347 2970 7814 2560 448 8002 1175 2717 5164 5569 3960 9350 482 1334 6361 4185 7871 7906 1602 4274 3260 3667 7910 200 3929 7938 1395 907 9544 3446 6160 9630 6122 1299 3344 6100 151 6261 5682 6705 9485 8372 2069 3291 5312 1254 4790 4439 9134 4519 669 7842 5002 471 3005 8771 3084 258 8661 4131 5529 7862 4966 3599 2973 3954 5012 7707 8403 4196 3960 4108 6988 4689 5248 6239 9520 6391 6957 5955 2749 2089 6041 8940 2095 9025 6634 1549 8993 6645 6400 3701 6073 7775 4814 3989 413 2943 5241 478 4386 5842 9830 4272 963 9065 5881 3683 8932 1503 3685 3290 501 70 2782 1488 6182 898 5285 6806 4876 277 3016 5244 8655 6665 6567 906 1680 3134 6245 2348 5757 8333 6477 3645 160 2732 6844 9039 4034 7956 1517 1626 6090 8789 2566 4656 3596 1818 824 2866 2052 9940 9727 4502 6274 8636 1550 5936 6203 3214 3853 6495 9230 3633 4598 3147 1198 271 5174 9332 5370 4476 8320 8306 8414 8172 1833 3886 4150 9106 5465 4838 9650 7192 9318 8301 2450 2878 5385 5671 2468 6736 9047 9116 8810 1269 593 978 9748 3628 3568 9541 1135 1896 360 8993 5085 4546 3761 8257 8619 8983 6553 4856 3371 547 7462 6619 5832 9593 5482 6068 8347 1988 1405 3910 5978 2166 7838 6181 8568 730 1491 1298 4746 4710 1809 8443 4117 6026 728 333 6614 7121 6973 9648 7367 9175 6910 9487 3893 3683 2749 2526 2312 1239 8519 16 9591 2809 6072 2119 2392 695 7495 1610 8963 6866 4142 4609 2569 3301 8319 917 3521 2523 278 8071 9439 9200 9385 1178 6056 2504 3184 5247 4279 6611 43 8908 3996 8935 3774 3768 8058 6017 9787 7803 465 7510 9230 6513 7883 7386 1205 6990 8586 8321 6980 5557 9097 4518 1800 2408 4564 5378 30 7848 5068 9670 6198 5077 8942 5566 5370 7357 7467 5459 8590 2878 9664 3148 7341 5671 6246 6482 925 2905 758 1093 1597 7998 3594 6019 6151 46 8045 2553 4702 3162 7574 9130 3502 6895 7244 4606 1459 8935 8764 9886 4230 3916 1392 5352 8123 1719 1805 88 2896 4848 9688 233 9703 750 2051 2410 4288 3790 1942 4146 5779 259 2304 4640 6456 4531 8881 3981 1468 1735 3708 8189 8930 1126 9972 3022 5046 8236 6915 226 8878 4891 1490 1305 9896 8861 6784 5409 3027 2311 5909 1173 5092 934 7509 4142 3921 805 6278 6828 40 1800 6075 2723 1847 143 1444 4240 8583 1921 7589 7389 1857 9471 5445 6907 2699 1883 3837 4136 5056 6573 8390 1848 6541 9261 8379 1716 8141 5265 6447 5899 9067 1453 6562 1712 7161 4987 7297 256 4505 2082 292 5723 679 2105 2121 5549 6150 7967 9472 1063 8244 1518 8306 3975 4581 810 203 7565 7063 6587 115 5487 8278 4615 7511 2610 1882 4110 9038 1502 2643 7737 3097 2816 1146 4775 2621 274 7770 4782 7052 5784 2005 2586 5227 6163 2252 8266 3550 8196 534 1326 4982 3571 5519 6434 2883 7625 7845 2753 8429 2293 7707 8087 2417 7093 6233 7140 1880 6161 8232 4403 1510 2958 6492 1272 2931 5051 1795 6515 2686 7730 4738 6301 9318 9316 5565 545 3927 623 3119 1713 2964 6311 6121 805 1412 1694 5709 4539 6741 4584 4234 1195 5042 2830 3517 8923 8225 4546 4047 9742 2386 4447 1656 1020 6122 7445 4639 129 7639 5050 394 6232 814 5420 1055 1594 6846 4724 9217 5150 3169 2740 3278 6110 6542 4875 9382 5483 5878 8192 4031 8653 4399 7466 8877 1994 2805 1776 163 4522 7753 4411 6147 9691 4396 3417 9857 299 133 196 4393 5467 8131 7102 6673 489 4277 2701 4257 713 485 1889 6029 398 8974 3141 2803 9944 9849 721 8044 4271 825 5572 5490 3973 2205 3682 422 3023 8235 2485 3716 4508 9055 1318 5739 8183 9091 4464 545 1105 7858 4274 5205 6914 1452 3977 3508 3574 9663 2417 8999 360 8402 4163 5139 7788 3905 6688 9718 3847 8557 4377 9947 2996 1654 9287 6668 8596 7762 6228 9854 5605 7558 5338 5592 4467 1428 991 1456 4346 2694 1367 3733 3561 7386 3755 6191 5351 5911 598 7200 6091 5473 5594 3928 8071 8172 8158 1218 5660 4374 1869 2248 3910 5029 8596 9389 8730 8212 2399 2933 7059 8104 9166 7993 420 1484 7752 6241 623 2913 9918 707 4512 865 3308 5212 6693 7498 9159 8495 1490 6512 8401 8771 1715 6959 4801 5795 3172 1032 458 3896 2602 7260 3722 1816 9882 156 2467 5465 1568 8162 7747 3687 6176 1630 6347 7545 4845 6566 3940 5746 6159 5368 5724 9623 7500 2120 3178 8195 2915 4398 3233 7915 9061 4765 4490 1028 5093 4088 5127 66 7631 120 43 2946 6287 6440 7814 3767 169 5444 2118 8383 1229 5572 2737 9587 588 1481 8223 180 2518 2771 8557 2148 5839 7814 5401 2036 3715 748 6391 2529 3134 2956 7309 4169 8574 8933 4776 4811 999 2469 5475 3690 321 8588 1513 6217 6351 5176 2647 9520 5496 9108 5342 7811 5487 7792 9887 1442 6851 3224 3899 1387 5357 2224 6183 2023 1592 9937 1745 7747 5387 9828 5807 5053 5703 2656 519 3642 4466 3458 876 7889 6091 5779 5102 57 5521 3490 8167 6554 5237 4132 9685 4680 8374 8472 2232 5263 1782 7453 9782 9341 4640 1759 7232 5666 206 5341 8532 9486 4339 7539 381 3995 9279 8540 5806 1596 7154 7895 6736 9200 8293 2821 2804 8899 2869 1387 4583 4228 2949 1915 1323 2109 3049 3346 5119 8522 2138 8548 8129 1976 4303 8845 4377 328 5703 5237 8245 9799 3492 2719 3398 983 5251 1199 1874 242 1691 7021 2378 3064 4513 2566 6218 9931 1655 8079 8083 8138 4092 747 2961 9717 9074 7605 2068 8146 2571 6512 1284 6524 6414 1624 8731 1405 9254 6249 106 460 207 1885 1391 7965 9837 8735 6592 5272 7734 5381 9088 8992 626 8436 604 8955 5660 7432 7912 5714 830 1313 5218 6343 5193 4610 9714 8322 1429 3598 999 3038 9451 7177 6041 7186 9600 5401 6389 9246 8195 3066 9907 8972 1611 9541 965 2191 5275 5848 3505 1306 9301 9864 4055 6248 6748 7512 9367 818 8322 9453 8842 8570 449 7691 2870 7004 6893 4732 9192 2643 4605 5515 7619 9290 299 9661", "output": "3809\n5018\n3832\n273\n520\n72\n4526\n5750\n5578\n4842\n1425\n2546\n4664\n4646\n5633\n2295\n1755\n2457\n5311\n2375\n3891\n4350\n2707\n4908\n6057\n3908\n1176\n2138\n4703\n3892\n2944\n3722\n2716\n5447", "type": "stdin_stdout" }, { "fn_name": null, "input": "34\n4767\n7072 7069 9117 3654 8819 8910 7435 5717 1079 7336 8367 702 8888 8759 8661 6585 4791 6573 6477 7393 5094 1625 9780 5137 6388 8040 9679 3239 4051 7453 2749 7883 9839 8503 5097 4487 1207 981 6112 280 8553 6588 5187 584 9606 3761 2229 7364 7073 5036 1839 1979 2361 4815 460 8057 8417 5998 6567 6019 5440 4504 5143 259 873 548 7146 261 2071 1495 3618 5743 1591 1917 7805 9595 2897 7368 1766 5991 7324 8539 7926 653 7083 4491 3062 4404 2684 279 29 3706 5899 1189 1162 3472 4787 9942 7426 6184 592 399 7166 3566 8935 6986 1464 7577 1707 7679 147 706 5940 1779 8063 2645 2715 3786 3758 3865 8464 9211 5252 8601 6281 8403 3059 8755 8665 240 3964 9277 1461 6380 621 8063 2893 1799 7199 2300 2801 803 9585 3906 9743 3671 6996 689 2760 3313 174 4817 9071 1876 2549 1049 1678 1643 2858 8925 4456 1245 7684 2544 5365 8875 7271 1843 1385 6009 728 716 7097 2495 5968 5713 2705 709 1769 1834 9043 5585 4770 9095 7494 6025 8036 8610 1374 486 5566 7186 7462 6772 9237 2425 9283 8492 3497 4512 3740 5592 8072 2528 661 2979 9946 7639 4303 1061 9010 2707 2984 4471 8459 6731 7061 9540 4640 7671 9293 6014 6224 757 956 1577 3483 1531 2104 7532 8573 1188 7439 6021 1203 7160 2724 8487 1899 2974 6618 5625 7192 7564 4323 6963 4494 5492 3994 4823 8214 5767 9986 6164 9975 8289 4385 1648 1570 5605 5665 2748 4904 5436 677 8551 8416 1834 219 6341 6910 8101 6411 5372 9706 3623 3712 6547 9424 4126 2473 6928 2931 2907 4041 7135 5305 903 9454 4593 2272 4898 4549 5430 5093 4164 2931 1150 5518 2473 2604 4452 7614 2805 6098 6510 315 2967 7735 6649 1319 5538 8421 2804 3232 610 8368 4942 2626 691 1612 9127 4057 2139 5589 5643 4291 4425 2577 5636 8448 9259 5888 7183 2661 1147 6323 2819 5367 5594 5431 7708 5473 4731 243 8286 6458 93 9062 711 4195 1285 4596 2450 8178 2725 4143 5412 196 6980 4194 4677 4567 1666 3863 4524 2535 9978 1360 1734 5489 3895 4339 7679 522 7526 317 3261 7665 9301 4098 693 7341 5411 5795 5786 5763 2768 4865 896 3526 5785 8106 2822 8732 9990 4148 8375 7258 6340 8691 4548 4435 3143 6229 8151 2039 7392 2558 7120 8638 3816 3592 2510 7884 4590 3447 7236 9780 8300 5228 9228 1169 9278 3171 4535 9673 3079 5612 5918 117 6685 872 5168 6434 6054 1270 3598 910 3062 8719 5625 2419 2327 4805 8270 3440 7668 6715 7174 2564 3854 7024 6683 5265 883 8301 1357 9024 9371 8971 6338 4467 7666 7335 1006 3536 9154 4010 6824 9189 3061 4276 8236 3654 3607 8753 8050 6784 4898 5830 7331 2246 9940 8741 404 5152 2975 4943 2001 8117 1934 97 938 6172 5802 7048 4056 8740 4611 6370 9161 4009 5318 745 7079 3530 2369 9651 8211 2957 4860 9330 2156 6854 1264 770 930 4972 3475 6309 4199 6782 5017 1170 6684 791 3100 6730 3675 7759 4316 3362 8654 2392 9878 7416 419 7939 5698 2300 6591 8000 8985 8030 1620 4236 1675 890 1699 7518 1727 4104 2673 3966 995 4232 8535 8605 5370 5335 4932 1065 3154 8081 9140 393 3545 5795 8102 5057 8053 1179 4715 9574 8574 8606 1083 5418 557 5741 9012 5363 1159 5639 4760 3739 691 1663 9012 5287 6145 7747 124 275 2417 2739 4052 2497 8843 5173 3434 9474 267 8698 9141 5023 6377 5760 8018 7418 3588 992 9625 2018 2361 4185 6206 5105 768 7443 4148 160 1000 7138 2920 5498 9379 1564 5185 644 4985 1241 3098 8574 9635 4846 2279 530 2973 537 6310 9463 9500 4046 6909 1376 2398 1266 231 9718 6352 6994 5074 8357 782 5406 5850 6307 3428 1680 427 4155 5047 1982 174 455 8174 7278 5350 2265 5198 7129 9045 7874 1257 8409 3142 546 6854 1404 3063 3499 9344 4135 673 4817 3244 3069 3785 2675 1157 3656 4737 6383 8949 5157 5390 3925 8680 8491 6235 5827 271 1325 588 876 647 5952 738 3153 6754 5637 8501 3698 1672 8349 7886 2536 627 8501 6027 5537 8253 2444 2090 9583 4235 9966 3885 489 7068 8717 5280 3344 5925 8671 5434 7364 5852 9888 9618 2479 6546 3349 3993 9936 9449 4697 1064 5972 4719 5512 3262 922 5482 7142 3641 3194 7087 6447 9599 4641 4740 265 5534 3253 3314 1026 4691 6407 6574 4435 1104 9689 8417 3208 8679 9490 1635 1794 9067 5984 5953 5310 9027 2977 6649 998 5542 5614 2617 9238 629 2574 8667 1719 2010 3039 2330 2254 3341 8546 626 8996 5940 9389 4253 7814 8828 5653 5576 9455 3127 2059 2841 1261 5843 3160 7503 5537 7909 2562 5313 4778 1255 2130 7681 4654 1460 6396 4218 8436 2745 6499 8130 3075 175 1913 9858 9639 4221 622 6884 5099 5104 2531 6849 5586 8527 4068 2239 899 2115 6396 9573 3028 6227 116 3620 9027 1785 7227 2836 7417 1567 1830 2068 2612 5852 61 3050 3671 9506 7643 912 4311 8306 1783 7331 9331 9739 4112 6066 4246 700 1241 8337 6436 4635 9013 2061 1721 9120 3926 5909 6196 7016 1582 1972 5972 6070 3639 5847 8817 7750 8086 2297 5479 5407 4752 1607 3744 7698 3599 2237 2618 3769 5101 9696 2778 8051 9464 7146 8522 5509 9834 1211 5 1141 4607 3356 4217 6929 4818 8491 561 5867 4073 7479 2370 7268 4742 3510 695 9600 3241 3879 800 9408 1328 9094 4496 1685 5642 1348 4186 8938 873 9925 7570 4919 4970 3490 9087 7859 2524 2825 4328 9477 2070 100 712 7195 9638 6297 7558 7497 9569 1981 7972 4156 3149 935 7815 7336 7530 6837 1840 1005 3582 7188 8598 3125 6186 9889 599 4307 4672 1186 580 9604 3003 3012 4718 1189 7664 6189 6305 1588 5855 7345 145 9344 236 5633 8057 7328 6951 7026 6648 9894 8198 1244 9034 8110 9739 1911 1753 5788 6889 6516 1093 3236 5833 6179 5417 1056 7045 9473 38 2515 3880 1373 2714 5856 1748 172 3281 2251 2553 1573 314 6422 3655 5734 9599 566 8715 3225 774 3935 6594 1029 2239 7809 5878 7886 1056 287 2896 3862 9593 5129 733 9181 4819 4278 8706 1422 1052 734 7286 5705 793 1954 1784 5100 8040 3971 5495 4997 5874 9569 4362 308 4014 1805 9692 9371 8416 3159 231 7309 9342 4055 2058 6834 5435 5385 5578 4483 3919 2664 5218 7690 4790 4734 4052 8904 8197 7297 3016 7016 2502 8173 6798 5421 4910 3025 743 8948 2506 1286 656 960 3806 6998 4261 2784 8602 5247 1840 3232 3384 3095 3904 7859 6096 478 8328 1921 4644 6185 7820 2951 7949 7137 3629 9018 3930 8031 9607 2148 6397 9088 732 8436 3002 8057 3619 1199 8642 6416 3314 6309 2249 2092 8546 1378 3709 4588 3874 9051 3503 68 6786 6063 1984 831 9034 8825 8891 6435 9972 6599 2499 9615 7894 804 9033 1958 9270 1705 7393 5441 9904 1432 6641 9632 9125 4902 7169 1105 2434 7761 7430 9604 6272 236 38 1194 5395 3854 1748 6621 7249 5139 7755 6167 3542 2734 1584 9300 9023 9140 3052 216 3666 6363 8997 8047 6898 4457 4565 5656 5267 8514 8921 5597 1612 2321 9897 5411 8557 8757 1949 8097 3755 824 4543 7596 917 4206 3982 4460 2618 3341 6135 6711 5713 9877 6694 6628 4051 9675 1762 7744 2951 1219 2372 1979 9675 2475 6408 5238 5414 4835 5282 5894 8844 8927 9666 8137 5257 6572 4105 1119 5636 2105 7817 9243 4813 5204 9080 5985 5525 9125 8086 1180 1926 7387 3473 5874 2736 6372 7670 6215 9670 9875 3281 211 6714 5428 2207 1807 3536 7776 4466 8101 7202 8794 6941 206 2029 6507 1146 3989 2878 1247 164 6932 7083 3027 2893 1488 7225 8613 9785 5691 2691 1126 3357 8345 2857 5707 9845 8073 6482 365 5361 247 8768 108 1817 3449 4772 6097 2592 9588 6083 4251 9169 4557 3720 1622 5105 7294 8820 7801 3780 7758 8641 7562 870 920 9278 2509 8840 2994 4652 8071 5042 750 4005 1287 1026 8917 4243 8996 7354 8598 5654 1545 282 1213 2023 2571 7413 440 4129 1972 6842 6256 6592 2980 4444 8908 5251 8685 6812 8055 1360 884 384 7820 6824 3534 1268 3948 6555 3849 2339 5097 2280 7471 5314 4530 4660 4699 898 6414 1835 4247 5379 3946 3922 7470 2594 9749 2831 7539 111 9708 4757 3821 4391 1930 6138 4473 1672 8750 7487 6075 3538 2506 5732 3199 6136 9699 8506 3955 8805 5257 2100 5324 8787 9263 2663 680 4875 2103 3244 1003 5848 5497 9734 9803 3597 3598 3795 2048 6602 2405 910 1716 6368 9580 9415 3853 2596 521 8063 3423 7009 6684 4628 950 7169 5497 3592 9604 7516 5320 9054 5725 4716 6430 177 6896 6173 8383 156 1910 3914 133 8920 6343 8791 1272 5279 4836 2635 5400 4773 9644 5100 1152 2404 2020 1668 2051 6171 7937 7677 587 7091 9871 4407 5450 6516 2236 2730 4774 2633 9790 1454 874 5491 30 4922 6291 1660 6513 1374 285 3586 6865 1185 7883 392 3049 4995 717 8541 9309 3039 7289 1802 5533 4980 3903 9247 7956 5925 5558 7318 8010 1973 6957 5029 895 3574 2565 4573 548 8191 7734 3646 7737 9724 7271 181 5462 9323 1753 260 1921 2135 5860 2062 6318 4819 1084 4375 1670 6566 407 2148 3903 43 1377 3403 4853 6090 2485 256 8283 3165 6094 4868 1612 9744 2406 4544 8993 1695 8428 6556 3911 2132 6793 3781 6547 9259 6167 6244 378 1421 7853 9607 4933 9163 4859 878 9042 5241 3250 5662 1950 4772 2742 2565 5292 2472 5538 4125 9652 8935 8183 8450 8112 8207 8430 7877 6275 1277 8948 4619 8942 1337 4283 3608 3288 101 2500 2868 6409 2610 5855 6580 3179 1118 4830 2467 2743 3543 2649 7270 6741 4137 6086 3729 3966 3495 2139 413 210 6859 63 4733 4847 8359 4404 5322 5132 756 7147 4813 545 2480 8427 5980 9106 8449 8302 4188 6830 4714 9766 6577 861 9081 4274 2799 6607 4701 167 1978 6426 3985 8644 8708 6118 7555 779 8663 5106 2384 7421 8018 7775 6245 8813 2933 7411 4687 570 3204 544 6716 2998 1350 4280 7530 6463 8474 3297 4562 5499 3959 5380 9427 1315 3663 884 7355 4096 7750 1571 5349 2344 8291 5142 4714 7895 7163 6909 205 6392 5364 5089 8081 2675 5891 9207 6510 7763 5496 3197 2571 6299 8520 9437 4748 3736 3592 8485 7027 9041 8644 5969 339 2325 2984 2721 1334 1272 4515 2376 7194 9256 6739 5879 8711 6179 6784 5425 2442 9481 5248 1963 8280 8782 8502 7105 5933 7763 1081 4719 4817 2021 1025 8816 8658 3906 6204 2091 9615 1636 1035 1396 1104 3780 3859 9024 8442 1958 1371 4901 6516 1612 4994 2861 5118 2855 2149 7270 6760 2362 801 9430 3956 7035 5994 6567 5839 5138 8495 3339 153 2914 7069 2602 8912 7923 3507 4964 675 5459 282 2840 5788 521 89 2648 7289 3722 2584 1688 4921 2133 425 9651 3537 3057 712 4764 1832 3445 1943 6480 9489 4117 1700 19 6789 9013 5157 5644 5884 7325 7865 2020 1170 7985 3979 8351 407 6 8959 6910 2291 2892 561 3801 7549 5707 4773 6297 8880 7907 3213 6879 1479 9673 7853 776 4305 7613 110 9615 4317 9098 164 8662 6694 5334 8093 6365 8380 8298 9332 951 820 7770 1465 3977 9842 2231 3062 2015 167 4263 7035 1238 242 2613 9508 465 4885 2782 5734 417 4641 7840 2840 8274 532 6373 2490 5171 6919 7282 6454 6623 4350 779 96 3295 2453 3562 127 2923 7140 4354 6515 3999 7875 216 4369 1073 362 1877 9385 5229 9522 1670 2035 3825 1597 3719 9443 8556 8353 7875 9000 8903 6109 2912 5116 4702 8684 3930 3260 4195 9474 5981 853 5157 1524 8643 7160 8594 9461 1606 7103 6223 7160 3845 4549 7123 4975 6560 505 6102 4836 8525 3561 5816 5365 9140 6300 7334 2358 4050 1021 4190 2319 5382 9664 2220 3455 1563 5887 173 3765 3020 8386 6410 5736 9670 6049 240 7758 4465 7044 5085 4569 4552 7072 5782 4298 9755 2917 8386 4354 275 7851 4972 827 7386 5129 5860 9333 8072 7616 3831 3145 1065 1165 5947 4238 8101 8960 8034 1323 4742 7373 3319 2288 9236 1480 7421 8368 2822 5975 2854 5351 8213 4206 1196 374 1303 253 3949 8492 9100 835 3260 6808 5072 8385 403 3489 1886 3264 6821 791 5412 8583 7628 4056 4718 8338 1705 7764 4725 589 8582 1633 1604 3993 3748 6093 3148 5190 9546 9293 971 2484 5040 4506 8790 3855 3937 7694 3337 3150 742 5301 2956 700 4860 1326 3829 9295 8064 6821 8838 4899 4423 4843 2413 6221 3440 6673 5725 2831 8724 7086 4331 2897 470 209 8616 4289 5829 354 9564 6303 8728 3154 4717 915 6530 1917 9380 9820 9347 7509 5751 5328 6648 1079 9525 7530 6748 6001 5948 2036 5579 6316 877 8065 2523 4611 7543 973 2747 5847 4126 2150 4621 3117 7376 2908 5350 405 2476 5608 6641 1393 2198 3587 8579 6365 8016 7819 9387 4874 2135 3765 3370 350 2668 6361 9888 5230 4848 219 6808 3791 877 6335 2458 8620 1037 103 6133 2809 1696 4802 4139 1864 5687 1662 9338 9692 6764 1449 528 139 1167 6312 1492 3768 2926 8504 6121 7396 8601 9323 7620 3316 4588 2473 4343 8155 6515 2378 7892 4820 9954 8316 8799 1569 1110 8666 7296 3514 5187 1514 7908 4451 924 542 2840 5931 8333 15 1860 5090 9950 7291 6753 42 5002 8583 6902 412 2756 347 4680 940 580 5192 6785 8241 221 3768 5914 8871 9609 7433 9279 4538 5854 1730 319 2762 7413 6277 2888 8893 9797 4764 6066 6371 6481 5519 3022 5427 589 5350 3407 5723 6901 5387 3714 7204 4047 7812 272 6768 7910 7899 2843 2886 3433 6545 64 1429 7053 8557 1772 7701 41 6959 5895 9969 2678 2113 888 611 7612 6197 2004 4182 1297 8579 2784 8 1406 3393 9956 6593 7410 551 5175 1189 9979 5698 8863 9245 8391 4063 9758 3326 3000 7134 5842 4611 4458 8542 301 4257 2340 1529 5910 972 7405 1711 8714 600 6565 2719 8397 7843 3972 9791 712 8406 8741 7482 1591 1443 4767 8878 7155 5486 710 7250 4663 9474 9511 3908 7145 2428 4297 7815 4251 3878 2113 6085 8775 7131 8240 6776 8047 3268 5600 3113 658 2883 4873 601 5276 1048 7317 6206 3800 9947 311 4543 8709 4225 7312 5208 3118 1093 6610 306 2758 6484 7482 381 6003 1914 9481 1646 7722 5513 9717 7917 1200 9083 291 6003 3223 1712 2918 4413 1295 2076 5817 4392 139 2825 6764 7183 9648 8515 2949 4587 823 1273 3939 3537 7264 6181 2250 4806 5063 2304 9116 8672 2821 1820 3120 6712 2789 9601 653 4545 8316 1343 3371 7956 2076 1380 1058 1109 8167 1177 2437 1361 9267 7969 9654 8443 531 8162 1509 6693 7076 8123 8944 7363 8656 7321 8005 5188 5929 7661 1360 5612 2404 3501 727 7067 509 4664 2574 9606 5450 1848 1301 3761 3983 2091 4820 3542 6007 4597 1598 6558 7755 4240 2812 1168 9044 6580 6883 4768 121 1010 3551 4651 4829 4248 3300 7817 187 9377 832 8962 1266 5421 7251 7062 7424 2012 89 9125 4119 3070 611 7928 3647 6727 4543 6194 3854 2276 9840 5313 7641 6432 6805 7168 6357 9761 9462 1501 4207 7692 5262 1380 6247 9580 8300 5706 5407 9457 6131 8361 9658 1078 1221 5316 5141 4920 1280 5483 7501 3541 3173 5736 7926 2564 756 9494 8526 9120 2995 6411 6276 1337 7566 6956 3934 2768 1255 5819 9580 7444 6395 7087 6489 1041 7272 1273 8110 4748 4281 3172 8333 8533 8756 2369 7362 3901 8212 4362 693 47 1142 7886 2998 5794 9786 9095 7031 6093 2532 1669 4511 753 4372 8312 4589 6464 6427 1564 2840 7237 6014 4301 6402 1911 8663 5134 6339 3594 3041 7254 3376 761 8116 8563 1935 8076 2046 8481 1361 5113 2952 6969 482 4023 4258 1122 7727 413 7423 387 3800 3251 3804 7745 9508 4665 8099 2510 3743 76 2991 6337 8307 8326 8043 4121 2510 7940 3770 7786 866 5656 6552 6769 1318 4746 2605 5680 9809 3868 1992 4432 452 6762 6587 81 8900 2627 3343 7248 3868 842 7932 7899 4610 4904 2886 7470 2273 6641 1102 8838 2283 1716 3389 3724 9321 3822 2196 6836 8884 5034 5861 2293 1860 866 6245 7033 2543 9341 1996 6832 6477 4213 624 9302 8308 4649 1875 1943 3211 6910 115 7054 3146 178 3726 852 5753 9887 3543 2956 3721 744 3622 4544 4364 5335 3843 2913 2876 6903 9595 838 4424 3396 8793 6733 8218 353 5770 1464 2598 2504 2609 4939 3365 4915 4086 9240 9531 8140 7531 6196 5131 243 4021 6873 3699 5430 6149 4680 7791 5081 4239 5300 3232 381 9769 2135 8156 6183 6866 387 2178 4059 5768 1629 1987 3763 4953 1191 6394 30 169 2972 9034 4122 6144 8994 4958 3743 2982 2335 4738 9042 6145 1727 438 5997 8846 936 6709 2966 3163 6155 260 8100 1504 5139 1462 2107 2320 1489 8238 309 5650 4234 9912 982 136 1413 4259 2711 2921 3251 147 871 2154 4313 6249 777 4794 1159 5714 7625 5349 6855 3360 9626 180 4510 9492 9023 2573 1682 9214 1970 5863 5580 7169 1730 8403 9306 576 715 5524 6831 8034 4555 5016 3041 793 2681 6688 4652 6433 9674 1109 9843 9816 8954 2387 3877 1085 9770 2893 8157 4517 5276 7873 4344 7193 5701 2923 6243 348 1307 1897 5337 1133 2137 1275 2810 9071 4328 4893 3409 5274 3642 6664 8177 1263 659 6620 805 7664 5393 4796 1915 8836 3036 7992 4182 6026 8685 9970 4871 1438 4018 1647 3234 8619 9197 6924 6899 8749 3141 3873 4784 4441 9551 1864 6665 6822 7026 6855 4204 8426 6891 3385 5102 804 4410 7167 7059 8696 4247 5591 9068 2345 3600 192 830 3601 6102 5601 9904 5774 8189 5882 7325 859 2681 179 298 8106 8387 2108 6512 4384 6824 7187 2316 1339 5519 3778 8313 3452 1384 8019 1827 8238 382 7605 1745 4124 9556 8670 3047 4773 4835 6781 805 2665 3112 9849 9214 7036 6089 3398 9496 1982 8899 7972 9565 6273 1812 8999 198 3165 8660 9281 5332 1460 109 5783 6016 2737 4587 3691 7887 1132 3265 3016 9477 2442 7982 5535 7836 6896 11 1374 9369 1952 9938 2199 444 2857 8370 8465 6877 8454 7692 3785 1503 9348 9255 7459 5977 7889 8282 1634 4675 371 3726 2243 3162 7784 6178 3360 1042 7718 8100 7346 4655 1061 4964 9108 5010 4849 3588 1455 1914 5976 4778 1298 7860 6394 9609 2203 139 1524 8396 72 2674 8287 1109 7810 6374 1398 7504 2905 4341 5477 5974 4078 300 6664 9737 8820 8517 1407 3989 8663 8095 765 8009 7493 8170 9905 2792 5950 8067 7208 7669 3674 2103 6629 2271 9744 6465 6436 2330 2275 7817 8202 7729 2941 712 9636 6755 5815 5941 2866 657 6579 9869 7448 722 875 822 2799 9441 9694 2058 8672 5074 4930 9083 5260 2123 7272 1720 7687 2809 1058 3476 7368 1342 9180 7194 1307 5764 162 540 9420 2216 1974 5819 4722 3455 2780 8673 277 4470 251 7899 1981 7253 1066 6319 1730 9006 6650 9512 948 4342 8484 6124 8486 7593 6309 363 393 2531 3200 4020 4459 4811 6113 705 5403 5320 8174 9630 4248 5905 9010 4142 3847 7890 9563 5904 1383 7203 6118 6995 3549 7340 2697 574 1364 63 9811 2920 6023 2045 5603 40 2196 2290 915 6701 6208 2433 3010 6898 6705 1952 1231 2521 7328 7483 2974 8894 9595 9206 5053 986 1383 9185 7044 3448 2313 2587 7697 635 7144 2633 1624 8422 2588 5262 7912 1242 8593 7067 8362 2012 2044 2016 6037 6598 2027 1585 4350 3113 348 2799 6758 9457 4126 9946 7444 4287 2435 7380 9580 4919 6035 529 6834 2037 2315 2729 698 1015 3050 3732 8868 8901 6566 9643 8321 9241 3021 455 9916 6063 1518 2687 4231 1788 3673 2653 6312 2902 1489 8008 6431 5618 9691 3828 2181 7247 84 1506 8303 7614 8927 351 9658 9393 7454 3850 5268 741 7791 1109 1384 2016 4799 8615 5771 58 8491 9734 8386 3390 7190 5193 6467 7652 755 4136 1177 9018 5348 3142 3359 6128 3884 8333 64 9914 9709 2432 9506 9077 5519 551 6847 2469 9831 4616 2864 3401 3629 2785 5507 3289 9795 7210 8493 6660 8713 4776 5087 7877 901 6731 9427 4750 2929 4395 1986 1825 8405 6748 32 3456 8654 147 8907 7270 7428 931 8026 3435 8216 108 7372 7371 7772 6991 1422 3555 7879 9648 7957 7976 1550 9219 1219 1958 8432 9542 3021 7847 4569 7854 4911 2568 2282 5373 9185 5456 4508 6335 7392 364 7568 8136 8746 6583 8717 7997 7839 3381 3122 9582 9604 303 7858 3772 4607 1492 5468 235 8681 396 1615 6570 6776 4897 366 9887 8078 7950 1588 6238 2382 2373 7052 933 8048 4400 47 5563 4109 1331 1998 7988 9052 1862 840 3379 8433 2731 9253 7898 2337 9013 7390 9361 6629 4214 9626 7645 9210 6878 8822 6640 5904 4146 5547 9514 5402 360 7505 5536 5600 9341 9193 1576 1847 283 5085 4146 7265 9022 1193 2861 5148 5614 9949 2172 1017 4286 3153 1869 2425 5339 4103 5557 6406 328 3160 255 5491 3555 9042 7254 9574 4004 2990 5579 7276 7344 9644 9921 6576 1919 1863 3245 268 9352 3504 4675 2339 2062 4288 4148 2608 9137 7570 5324 9301 9463 6442 7133 6180 4910 8813 3506 8415 8532 1264 56 3337 5201 3277 7229 1054 7840 8248 8921 3125 6907 1720 2901 8263 9036 155 5494 7574 783 5942 7831 2293 141 278 3028 3306 175 4981 3756 2154 9668 4308 9409 1257 5389 5154 4030 9811 3274 663 8899 3576 1426 352 7258 5830 3619 4367 7403 4003 5240 3706 4124 5970 7311 2360 2355 6252 6524 1320 9164 1067 9103 2522 3603 9590 1973 3477 168 5680 5145 5993 9775 2577 9331 5503 4452 305 1379 6826 7666 6523 421 7286 8928 1204 9651 8850 5120 631 3752 2046 3486 1858 111 5211 3194 2143 1696 5667 3569 4525 9032 9218 9971 8530 1373 2697 7796 2127 516 7992 402 7240 2383 8997 4907 7521 335 405 4348 2540 8704 2067 719 2230 7283 859 4142 457 2746 6970 6819 1529 5117 9559 5099 4977 5856 3557 5014 1961 4361 8372 9094 3730 1740 1261 5315 4503 5039 2686 9153 2232 5446 1394 7811 9066 8652 2750 1631 161 7557 8949 9897 3801 592 1149 2720 9299 8659 2599 7972 856 2522 2614 9241 4297 4811 6378 1888 9122 6757 3888 5179 6914 8431 3585 6710 799 6513 3879 1616 3321 2676 340 9997 3533 3374 7910 9581 5191 3772 8382 6834 1700 6945 2930 4131 3831 1515 7090 4431 2227 7449 9875 8394 5012 3318 236 404 7574 8952 8241 730 8569 3992 9388 6609 2454 8854 1718 158 7283 2822 6013 1711 5976 9290 6885 9907 6853 6049 7529 9986 7106 1117 9868 5106 627 9999 1475 8499 7363 5959 3428 3205 4637 9779 8195 8162 9178 8441 7454 7152 16 895 5503 6300 2838 4886 1748 1449 2625 9469 6372 8953 2203 3695 7644 6437 9886 3544 710 8894 9617 5188 5979 8562 381 4065 4042 1248 9623 7456 1236 2452 4013 5457 9651 3778 9893 1746 9885 7995 2860 5875 1119 219 8453 106 7322 6649 6575 9299 546 5601 9353 3791 4681 7559 4057 3352 881 4429 1049 3533 5698 9961 6906 9649 3984 2478 8015 8721 3887 5125 7596 3192 358 3184 8906 9994 3191 6436 4369 2893 7600 9691 2770 3245 4665 7190 472 8757 4423 577 9177 3311 9749 8449 4919 6486 9542 2760 2594 4373 6369 1703 5629 9798 876 3214 7587 3513 2022 7505 5424 7820 1659 8734 3708 7269 4763 7520 874 5543 6742 5810 6436 126 5629 6900 5233 8952 6323 522 6329 7038 6199 7800 485 1620 3653 3589 6508 9617 9957 148 2317 6499 1910 6629 2763 553 1819 8927 7791 1439 5674 8652 6070 3969 7764 4510 2811 4099 3043 5693 7458 9645 7807 1674 2598 9750 7487 1066 6101 5203 219 6820 4451 3663 7335 8160 3215 5051 4071 2934 3367 2039 9769 3776 6812 3093 8546 7884 3728 3996 7026 8515 685 7534 660 3530 3513 5191 9389 8910 6258 7719 6045 5696 109 4090 3746 694 5610 9549 8181 7249 4429 1788 9458 7366 498 9149 2469 6192 6120 6706 7788 5201 1438 3046 5679 8395 8998 552 3885 8657 3014 3460 1376 2065 9706 8134 8093 1080 3241 2480 4074 3734 8217 222 5311 2823 3141 7186 5307 4987 9185 3427 2477 1219 9662 6842 4594 277 764 1105 9757 3326 7276 8205 8964 8452 2653 4908 6119 4203 2810 7079 4120 5391 8605 5478 1750 7877 8044 4493 8556 7764 3596 297 547 9631 1181 2145 9302 8967 2276 534 2013 7121 1910 7921 8337 307 3080 7962 1535 3666 5217 8214 4797 4168 8047 1956 2641 7670 2460 9889 5058 529 7855 7066 8986 473 5426 7251 4547 805 7302 3837 6538 2425 3419 6023 4779 8728 8311 4856 2672 447 9450 2558 8511 9879 9913 9472 4663 7081 1359 1842 9101 5840 6713 9223 2043 7187 6325 8787 1896 4216 7866 1002 312 4749 9915 6908 5898 703 7987 6045 5173 4550 3535 3860 1931 7381 5455 2070 1717 2496 7302 3866 3104 6539 1822 5444 6747 1544 1048 7751 6196 4581 7841 5553 5510 8921 8322 4708 3384 8614 8764 8378 8861 8799 2409 2862 7823 8473 8238 8079 5491 59 3019 5122 4250 8411 8986 9920 1357 3318 1602 1259 9034 5446 5148 3046 5488 2883 9844 1784 1835 4497 3456 2945 6470 6038 9190 3475 2351 4668 6874 2601 7827 8290 7826 8205 9774 9513 870 1986 2583 646 5999 3605 6099 9772 5135 431 5133 9411 6973 6883 6668 588 1849 5982 9285 4358 8527 4909 5116 4646 4057 2630 746 1681 8695 3862 8980 798 4674 276 339 6015 2174 8108 7115 7311 97 1359 4755 460 1977 187 5589 8112 2235 5142 6224 7566 9604 2443 1120 6389 919 2189 3927 699 4354 4216 7052 4155 2098 6600 4961 6210 4057 3234 9263 2609 4154 6444 7926 7026 1380 4160 4321 4599 7316 4054 5033 8525 7704 1282 3973 8178 3083 4519 2752 6017 1747 759 7882 470 9806 2509 4553 5206 8509 5229 1041 1115 3775 1113 3429 8463 3631 2719 3881 6626 4907 6083 8696 4890 7527 1142 6783 7758 8510 1615 5366 3524 1080 98 1975 7174 597 6083 8218 2721 398 914 8310 9016 659 462 5275 6556 7526 5976 7464 2743 4447 8407 9445 2880 268 5073 2564 2258 1132 1315 9507 3666 9181 7666 8083 6814 4583 8048 2463 4635 7998 9315 419 3238 2636 2464 797 2703 706 6336 1886 3157 7178 2241 8772 5335 9596 4907 7380 9103 4894 7314 3293 6788 9066 93 7432 8115 166 8492 1039 3914 5962 5042 4383 4569 6176 9962 9575 2705 1741 6955 9573 3440 5413 9727 1220 7167 8728 2836 7716 7293 4818 4478 6547 2974 1023 9802 4666 3940 1675 9794 9591 3446 5970 7289 1359 3724 1893 3946 279 949 8088 624 2060 2270 6869 8715 9050 2886 4177 3386 7293 9811 1978 2190 135 9489 5523 8049 9990 2472 5598 3361 2199 6132 9684 3389 5767 5797 8220 4750 5888 2146 4595 8648 5359 9769 9507 408 273 9779 1659 9102 7139 4565 5216 1623 4160 1285 1913 5067 8913 9345 2068 2519 880 6199 5038 1972 6999 9427 3559 3751 2083 939 4851 7582 1514 9196 8660 5082 7064 640 2335 4239 7377 5302 5864 696 2868 5400 3431 4439 1051 5912 1400 7959 3594 9910 2908 5853 650 2583 4233 7656 1641 8588 4132 3420 4331 8421 3186 4089 \n6969\n7369 9942 6014 2925 9824 451 9260 7537 9685 4754 7416 8291 809 9286 2477 2280 652 6912 8622 9203 7620 5868 5321 373 3819 6866 2664 853 4498 8837 4712 8566 7615 9318 3850 1078 4372 2149 1130 6582 1120 1384 4232 401 4962 6931 1973 1106 6956 2847 9084 3566 6686 7818 1914 9397 9047 6579 7253 1362 8183 4094 8559 9935 571 2663 6887 4496 1808 8147 4774 7030 5027 6219 7419 2541 500 5484 7688 8415 8005 4950 6490 2429 2106 747 3158 1745 9011 3274 3516 405 3109 4478 5592 6522 3538 3094 8513 5219 1319 772 3149 9596 7552 7650 1261 9901 8276 7304 2164 9630 4205 9399 382 3244 7298 4573 2903 3976 9879 4109 6292 7380 6366 793 3935 4845 995 5692 4689 5111 7034 6039 2043 7740 5414 3311 3850 6767 2210 1484 5196 5078 3857 316 2150 3562 590 1671 4753 7091 2317 8728 427 3897 227 1966 6093 3205 9786 1087 3771 965 3422 2696 3760 3209 3346 4433 563 221 1263 9735 8332 6821 3991 1347 2452 6893 8196 6600 927 1009 4998 9112 2124 5393 6083 9970 7572 5615 2653 1674 4233 801 2282 6986 3618 6335 3957 7196 6357 9324 7002 166 4367 8462 7907 4304 3073 2440 1904 4911 3499 2842 3754 9203 3599 3010 9091 1306 5239 647 6190 8712 9862 5375 1569 1974 3161 1557 4796 3492 992 7061 4092 9421 2551 487 9074 7525 8210 5908 1555 9026 4591 967 2596 9711 1907 6807 5409 4550 9446 8380 5191 9923 99 7971 5785 449 4450 4752 9205 1334 4259 527 3099 9360 8231 2093 1953 9729 5798 583 8852 9957 9521 692 6474 5480 3148 3843 6183 5439 8450 726 1313 8749 4707 3333 4208 4252 3609 5130 6517 9851 7358 3468 1929 7286 999 857 1323 7509 6092 89 5494 1597 9762 6376 9419 2216 7989 1550 2879 4969 7708 2120 6126 1700 3250 2509 3765 7086 5706 4438 1193 4579 6147 918 206 9631 655 1618 4259 3497 2511 3525 1923 8167 940 1945 4285 5384 653 7584 5685 5500 7344 8005 3010 727 3884 474 5026 7896 9589 9231 9767 3748 9052 4269 9543 8814 5734 1561 5042 4101 8705 1037 2508 447 7738 565 9267 2651 9208 9212 5076 5579 6322 1020 7540 8864 8284 5738 7283 9016 3142 5601 5154 7961 597 4958 8104 9594 3254 2299 3734 6560 7626 7817 8369 4080 4771 8113 8240 5621 6294 7817 500 3577 6754 9587 2260 8010 7565 5229 4537 9440 4457 7174 2664 4315 869 1510 4978 6793 5367 8305 102 232 9290 3721 7621 6888 7277 4356 5359 5635 7363 1239 417 8808 862 8784 8389 2630 3471 6175 6542 1072 6109 2631 6240 4732 8584 8737 3601 7930 9845 8139 3330 4791 4394 8171 5281 9028 6687 6817 8139 818 9888 5407 730 521 4518 8439 2586 8903 9734 9555 6031 3790 8777 4482 5358 4663 3780 3356 3223 4815 9277 9191 187 9671 6189 9369 6409 9530 7948 1303 1745 2663 1166 5045 5565 6625 8775 6853 1167 7499 4350 1013 6662 3635 3098 8834 4901 5549 4686 2052 3685 7431 4257 7547 8584 912 1671 7201 3356 6765 3471 2520 6042 7316 3221 4785 9121 4727 1100 57 5823 2731 4351 3266 5088 1691 6908 1967 2792 8637 6528 823 3298 5961 13 5194 3402 9987 8124 9436 2612 7742 7166 6719 9851 78 650 8481 3408 6289 7037 9238 6839 4728 5074 9706 4403 8882 9476 640 9521 8260 4911 5035 5757 7540 6587 3613 7547 2035 9950 9869 3970 9365 4220 1271 9845 3509 9804 2963 7151 1167 9314 7083 8164 7767 128 1892 1420 8096 6402 9520 3207 1241 1934 5962 2138 8487 8214 7676 1433 5443 9731 1352 2765 2628 3234 9955 6816 4784 2910 1290 1397 2386 7907 9526 8928 3851 9914 9538 278 7762 2544 9051 5791 721 154 6863 2523 8554 2977 2025 3961 6157 9752 6640 3080 1020 8245 5063 8257 2475 9491 4321 9725 5023 813 2840 6051 4546 8393 4729 21 7738 9472 2180 6936 3625 3429 8131 8811 3161 9696 3261 3588 1772 6600 8898 6863 610 1842 1746 4324 7727 3330 8207 4942 9175 5953 1482 835 2676 5401 1010 861 1178 299 2239 15 164 4182 9163 9971 3815 3763 7536 3721 7992 8663 6661 6483 8944 8208 971 5782 7615 4223 7588 6589 1696 9216 282 1154 8319 2134 928 8440 670 2769 7831 4532 5667 3522 6327 2307 2855 2177 1748 1315 6943 9851 6829 2820 2805 6190 1195 1071 7985 9585 3981 6665 3224 1175 4820 8995 9800 3555 5032 6607 2144 2056 367 7302 9944 2416 7430 5117 5563 8588 8130 2953 172 7859 6991 9652 5491 2992 1725 5246 8300 7097 5498 5041 7552 9328 2023 4984 3483 5038 6343 5300 9115 5080 8133 1384 9746 4359 1919 8701 217 6043 7951 3428 3062 9105 1764 1959 9755 5818 2977 292 3859 8367 9888 261 1819 4779 261 5272 5659 7265 3031 8647 3201 6795 3316 1366 8603 1139 3496 7661 493 270 4084 3996 7344 4845 5378 5252 8047 7698 1222 1865 110 8896 4507 1597 9999 6239 4156 7240 4719 8167 5972 1320 2043 1349 8035 8965 9965 2313 8723 8933 5893 5356 5034 7379 6234 9119 2161 6906 8810 1724 5425 5945 5395 8763 9777 902 2183 3892 1558 4282 7333 2042 2860 9326 1393 4304 2262 940 2617 9153 1201 1578 6496 1148 9893 3056 8887 3212 4566 902 9749 8868 2861 5272 9985 2264 9326 7518 4084 1179 3703 9207 4003 4674 989 493 32 7459 2592 2310 4101 8537 4705 9662 24 7972 5557 1754 4265 3796 7637 8669 5325 4116 790 6772 7728 6951 3440 6476 5163 8404 4401 6909 9998 6484 571 1120 2872 3027 2396 4071 9926 4576 2160 1025 941 8030 8015 1738 8238 1200 5274 3383 7800 5477 9381 4576 8595 6012 8446 8792 8068 1937 5021 9944 4750 8988 5177 9617 634 9369 7770 9113 2443 9177 635 9027 8580 2955 1410 2401 7181 5979 9522 4510 362 7031 692 4627 3870 9538 2425 9737 2056 6853 8931 3996 8192 9774 6709 881 2078 6193 5532 4310 6140 3811 341 6107 6046 4749 8265 9568 4159 5674 2395 7923 437 4547 380 5354 4377 5046 9189 4273 6484 5641 1039 2045 9234 6290 267 7052 308 1313 2018 5030 8507 8745 8822 9865 5938 2788 8314 6969 3213 2966 2467 732 3949 6880 7768 3999 9305 2405 1577 837 5192 1598 4580 1212 3741 3348 3510 1639 7914 3086 4075 163 1440 4811 3368 8225 5238 7129 9849 7530 3387 501 7027 7753 2315 5156 3371 1280 2338 8678 5592 3717 1881 6281 8683 3735 4559 8611 2109 3139 4818 630 4384 5586 445 5737 3856 3451 2687 8619 8677 3851 8639 530 9554 2104 6119 9844 2546 2062 3571 2266 5486 3964 3315 965 3862 2705 7657 6141 246 3456 7630 3197 5561 247 1884 585 1548 7306 6110 6884 288 8402 4841 9188 5953 3007 9168 1703 9934 7964 6512 8082 5269 3576 5570 3353 8420 7749 5689 1065 998 6557 551 1323 4707 3575 5379 8114 2925 5189 4782 3630 3684 2582 2340 5473 4473 6981 5338 604 2337 7427 1948 2527 5856 4769 6220 2295 9773 3234 7866 8748 2732 1893 4110 7268 6556 2675 9333 6137 961 9793 251 7421 7025 9976 7354 2919 3930 1316 8496 3549 8407 6212 7595 1259 4878 5513 8455 9266 9619 469 3632 1600 6826 9246 7023 5108 5067 9250 7533 4342 1259 2364 7945 538 761 1024 3526 9814 4974 8804 8699 2741 8425 4613 4976 3934 917 808 2507 7665 8041 4575 8276 82 1760 259 1067 5954 6577 5556 4480 5596 2198 2671 3824 5113 6007 9910 7703 8530 8933 6500 5794 3589 2165 9856 5997 407 8446 5376 8451 2929 7446 9604 3456 995 3475 141 6301 780 4463 6925 1576 674 3960 2895 1828 5256 9285 5232 8086 4927 9410 372 4420 7850 7452 434 7886 3431 6311 9893 8322 2601 4385 7304 1393 8676 2808 5537 3862 1706 7291 6925 3123 6217 9633 2274 7503 2616 118 3341 4697 7061 5776 4251 5223 3238 6539 3606 8311 7424 1918 7971 7470 4495 7091 4587 1304 1684 9235 5144 2053 6895 3414 5946 9566 8144 262 9846 5001 5299 66 5294 3643 6259 8622 6226 9530 5835 9098 4504 8601 4586 9678 301 6194 8076 4752 3686 1924 3566 6534 5356 8265 8791 2912 7716 9844 4430 1885 2658 6944 4127 9975 8551 4888 2564 6909 6694 198 8973 6567 787 5166 3536 5709 3364 172 9239 6819 46 4409 8509 9712 2833 7715 5740 5364 6237 3668 5831 7635 5493 3078 8264 8949 3850 6071 7271 5155 6164 1809 72 8703 147 3269 648 8189 2993 5428 5004 5998 9486 4303 7017 4046 700 6598 1931 4800 352 458 2378 2885 8777 8610 8132 5921 2026 2409 7297 475 5458 7271 8879 938 7974 1976 3729 7537 7856 7292 1672 9094 2092 2735 5186 2595 9940 720 9812 9132 1951 5804 3891 710 8634 6590 7501 5866 218 3282 8954 9767 9883 8640 8227 1791 8179 3497 1039 3908 886 9836 9486 2235 5072 2669 8936 6159 403 9235 3745 4288 7277 2974 9096 4783 5401 5322 3374 3399 6224 7513 4548 3509 378 2278 9722 502 3211 1074 6291 3537 8985 3949 4720 9626 4261 8506 1160 362 5415 5868 752 668 2911 3710 5973 1008 5309 2409 3224 3625 568 8481 6567 7977 2279 7055 2446 753 783 3761 9346 3848 6205 8394 7278 6795 9926 4199 3011 3953 3939 5676 3850 9197 1969 7855 4680 3934 4902 4193 5422 1315 3241 155 5138 931 5079 3991 3377 4899 1704 5080 9846 2138 7655 620 7096 2226 1472 1345 6 663 4294 3195 9645 2331 3170 9388 7522 7783 3275 2084 4534 4211 9772 2117 2122 5052 930 8328 4545 1868 1515 2842 2261 454 3774 365 5586 4459 9599 8530 3316 1530 3716 3317 4895 5476 2967 3795 7304 1235 1437 193 6730 978 9616 330 2758 6435 4694 6580 3205 6313 7113 5164 5007 4328 9119 9019 722 9497 5435 7163 2451 1478 443 9853 1335 6780 512 5767 6013 7609 4363 4742 1749 2371 2863 4141 4860 8406 6857 4269 7383 1446 125 654 3340 6645 1614 1814 5315 1050 6643 4952 5418 3878 4668 1292 1554 9856 3931 998 510 5955 8648 847 2832 6608 6183 6272 9522 726 6066 5160 9325 5977 8784 540 3469 9524 7075 9110 4750 800 9358 5766 3881 9054 424 6005 7069 394 7459 9171 9172 9073 369 1010 1082 9598 1751 5998 2617 5871 1363 6979 205 175 2105 5403 3355 8811 2693 790 2272 6079 8990 2820 8105 2975 8944 5941 713 5218 1428 8891 7000 4419 6558 9024 9211 1805 9319 8200 4671 1094 8514 7813 7652 929 3365 9630 610 5660 4389 1604 4433 6510 7058 2798 893 6248 6403 4121 7060 6689 6602 5227 180 7554 6835 4398 1302 5226 2490 621 3110 1409 1136 9181 8268 6789 4065 104 7292 2829 9495 934 6282 6693 7977 5405 8867 6416 256 1797 3782 169 9519 7129 3943 1011 3658 1449 8076 8373 7098 2859 5990 9970 2917 848 272 6404 5744 6079 3031 516 7745 7347 5226 7190 3612 7027 2282 336 6482 5405 1226 8996 9530 2540 5097 7604 1205 6117 6510 6347 6747 6972 2982 6167 998 5141 5846 8911 8193 7246 6330 4380 9877 961 8184 1832 8025 1788 4470 5227 4088 5291 9676 9107 1316 5174 3492 226 7824 8469 3924 1333 8378 770 9434 2777 3083 1124 9743 9466 5730 3977 1405 2579 8990 5921 5717 2981 4865 3864 692 253 4302 7392 6735 6538 781 1931 9479 4610 3503 7388 8005 4998 3107 1978 8315 6871 6613 9140 8696 6510 7420 8161 4634 7112 2133 4220 9136 3708 9860 6908 5833 4282 1563 4561 5499 8372 3051 8037 7278 7292 6063 1737 5819 9048 668 5773 601 7004 351 1777 5473 5927 4177 5592 7466 8708 9611 1814 1136 5615 9388 3245 5774 4494 9368 777 3613 3710 3840 2876 4772 9449 2194 267 4415 9405 7948 4840 2666 2823 1585 2556 624 3725 5896 8603 3601 8232 3953 7222 7219 1986 9849 6381 5785 2244 6756 2337 5744 6639 9770 1081 6959 3600 143 1300 5966 5562 7810 7584 3980 9508 9240 8268 5828 3927 7418 6486 5477 2224 8371 4894 5040 8746 5030 8807 7396 267 1318 8330 6879 5085 7569 1307 5374 2328 4688 2503 2196 9881 7235 5328 4067 111 5604 5170 2666 6603 5612 8766 4449 2569 8771 6413 82 6961 8994 8747 3455 1122 1707 2648 6555 7590 4407 1014 7338 8427 8994 1359 1952 6189 7684 5138 6914 3203 392 7194 7006 4435 5303 2187 4471 5540 8518 9188 9083 4282 9436 2202 5935 5861 6338 6001 2366 4497 6234 3952 3952 867 8533 3288 6798 6707 1828 5725 984 8851 7067 8749 3308 109 6585 748 5086 9765 8607 4327 8599 9706 4065 3766 9220 1934 7979 8700 9201 4130 5289 246 2109 8126 7797 1579 3707 2120 9235 8487 6448 1519 3716 1096 131 7829 1069 2973 3245 1120 8262 8058 2217 205 4632 3862 7791 6350 5000 6505 4335 9738 4115 1851 1736 6577 6490 7367 3675 2641 3702 8517 5103 2386 3050 1173 9196 2621 2420 4322 4705 8002 4848 9073 2964 8922 1934 231 8961 7588 9012 2938 1898 8548 8336 9521 8518 7280 331 4573 9453 4946 7072 7683 8771 7720 3813 118 9602 6753 5884 8917 4160 4829 8813 6383 2571 5609 4149 2644 5020 5729 2124 6063 2643 1586 2589 5767 6156 2613 1697 7934 3829 8266 8965 1277 1120 9082 5419 5537 1277 1624 716 4495 8904 6875 9377 5676 4447 2342 3168 235 2010 2970 6586 61 8805 1453 9938 4064 1558 5103 8075 5077 5174 9205 5402 3688 7975 8306 1511 7723 6673 1663 6889 3204 4918 3865 5140 1554 394 6205 9043 186 461 9396 9194 6374 3216 4185 7810 8752 1242 2474 3267 361 3468 5516 1514 970 7210 839 6861 2795 6689 1201 3088 5369 5646 3489 8683 7085 3521 4604 122 9912 4198 1550 4741 3453 7421 2715 9012 9289 6466 4304 5392 747 3017 531 8850 6877 5900 765 7117 8269 6508 9658 1402 1705 8871 945 1251 3895 8794 4821 1104 5552 9632 5046 4918 884 3944 7779 2659 2073 401 8762 3894 9339 7687 1877 2632 3727 5458 4073 3768 7997 3483 7137 720 5860 3686 9289 9856 9944 7688 5414 524 6396 7036 7738 2142 3599 3781 9514 7385 6571 4103 8488 1017 8142 5243 1338 6301 4829 7907 3946 3841 1912 9802 2936 3306 5382 3159 4978 6787 933 5594 5418 7218 3307 4847 472 4992 1477 1680 699 4140 4510 5949 4215 3084 3855 6954 5149 6136 6078 3960 7693 5877 2635 485 5769 7622 8993 6516 7118 1233 8775 65 3579 1305 5852 1184 3147 531 6222 4942 4632 6215 1369 5671 5010 946 3676 8863 8467 1077 932 6333 7020 9046 2656 8369 520 5280 9154 683 190 1377 5706 2351 9210 7543 2912 6879 9981 743 4612 1983 6810 8005 2835 9910 4228 2734 8547 977 3016 5774 3032 1853 8750 3117 8840 3591 6208 5679 5986 5496 1638 6489 4542 8974 1590 1625 9549 4131 5108 9397 9956 289 6441 9929 972 5050 4003 8056 1590 5740 8739 6807 4895 6931 8267 3392 8629 3782 736 5282 9968 8697 8919 7545 3563 628 9033 8091 706 2674 580 4284 1379 6913 1440 1646 7166 9099 6425 8720 8784 6938 8318 1360 5265 6004 6164 4433 2427 7981 9888 1104 5197 5540 2341 7171 8604 6010 604 4925 4389 3821 9373 634 9234 5366 2156 3192 167 9350 3970 5946 6628 4906 3697 8298 1039 6720 6103 4739 7185 3496 6621 4100 3180 2373 3034 3012 9472 1467 4758 6915 1910 2318 9809 1003 868 7946 5926 6199 3269 5255 9410 4496 3706 6577 8715 4752 2424 5330 9657 7066 8915 1255 6707 160 628 3640 7911 8598 7444 5067 5652 2388 7696 798 5089 9469 9633 566 9654 3712 285 1037 5856 6420 2458 3326 8697 4038 5066 6048 2646 870 440 1142 7642 1693 1609 8664 9512 15 1289 5547 4573 7097 994 7837 7521 3181 9957 9910 2426 3946 5782 8364 8073 4511 7546 7798 8609 6554 3307 939 3283 777 8583 9491 3188 4004 4257 9294 7006 3877 4911 4023 8915 9293 4946 2263 4182 5300 9726 2708 4989 8939 286 6733 4385 5261 4514 5029 7609 366 2638 2648 6900 5513 5415 5873 4703 7719 5631 3340 4221 1630 3713 6453 1714 8171 6324 5651 2537 7011 1529 3522 6406 3490 5214 7829 1056 2007 6856 9697 635 1601 3712 1919 7351 4982 4934 1222 8510 4166 7887 4042 5712 1897 3586 5599 273 7618 4196 5270 7561 3995 7062 508 6987 7789 9962 234 4723 8409 9049 8393 3640 9660 297 9319 1884 7996 2136 6326 733 9270 8386 7777 2961 9929 9125 4840 2431 6992 1520 510 7132 1317 1460 5931 9168 4358 1557 8113 4749 2733 6186 1320 3905 6343 6168 6594 2940 7111 1345 2155 379 2617 6185 7011 1122 2068 5015 8715 973 9163 1598 5257 1312 7760 9689 4176 597 8326 9785 8612 7067 412 3997 5970 6441 2156 8834 7785 7117 7685 1916 4600 4830 9574 6800 6028 5720 4577 1205 6937 9773 4475 7295 7868 9615 363 5839 7601 5076 1402 587 2773 1605 1275 7396 465 4361 8852 5400 3881 1321 3549 2040 6556 3664 8412 4438 9855 5930 3015 3213 3271 538 6328 2963 2407 9408 3020 9254 5205 3728 1579 6520 5908 198 6007 8566 8600 7146 8543 913 336 1105 4662 2881 5476 5834 3112 538 9867 298 3376 7437 9172 4902 9114 1892 8257 286 3308 5076 7843 4183 5445 9858 1466 6833 8603 9471 9336 1625 2695 556 7158 4014 7062 5277 7896 7728 9865 7795 8849 7267 285 3926 1988 6522 7397 4081 7915 5490 2115 945 2502 9509 4531 661 1129 8693 5496 6311 173 6194 6776 8217 6680 8428 2242 2507 5391 1465 3430 5117 544 2979 6649 494 6098 6936 3121 8304 5851 2408 6788 5469 5973 8627 55 2132 5430 6289 1965 2232 8122 5601 8028 9485 9033 479 8983 123 9005 7319 2975 7300 9498 1784 6216 529 221 1378 1106 3513 3111 5356 9865 8177 9871 2366 6706 4171 1223 1329 654 7692 6625 3433 1235 8807 6517 1452 9232 4655 5588 2467 617 74 8304 8178 9428 5744 7630 9191 7814 5584 7457 6424 5054 6677 5767 8739 4483 6783 5827 876 3271 7076 9863 5118 5474 5661 1253 7756 6849 3261 3571 2198 7219 4573 5091 4012 7098 7740 1946 5285 4359 1098 8396 8063 7447 9608 4782 8798 6683 4968 96 9604 1333 6127 4890 651 8632 6941 6310 3881 3465 6475 1715 3711 1155 7010 4500 4023 1652 9304 526 559 272 3312 3877 7208 1579 9980 843 5567 5373 9173 1078 2441 8994 5223 1004 5308 5710 7120 3052 464 5361 6370 7068 6688 8911 9688 322 3487 9596 1531 3362 6996 6801 6678 2551 1577 7106 1546 9267 61 6822 1556 1838 9381 4735 7329 4224 9071 1728 8855 301 8481 7990 6286 8200 7437 6301 8985 929 8314 3684 4854 8999 8246 7715 2011 5291 7181 4595 6127 1471 1120 9197 8166 7439 3613 866 7674 988 3329 1962 6749 994 685 2684 3182 9818 9093 2795 9964 2255 3299 2343 5716 6777 1738 2400 4778 8868 4946 8286 4712 295 3874 6225 4246 3863 2566 9492 5008 7983 5959 9650 8553 5279 2147 3012 5432 8591 1100 6461 3311 3252 9664 9947 8098 4864 9678 9097 226 9948 9329 536 212 8624 3576 172 9009 372 3703 1196 3983 3888 7760 8351 837 1883 8280 1272 5086 1617 3191 3204 6169 8252 4721 3620 3467 7552 8815 445 1810 5068 3900 8753 7022 6508 1467 2507 3398 9457 8017 697 7987 4241 7880 3142 6959 570 8333 8483 5248 5898 2292 2528 2793 1149 1319 8650 8736 9541 183 1536 6635 1108 496 930 908 574 9066 9696 2235 651 7472 46 194 2512 381 9778 6083 7518 8544 3265 8491 6141 9858 2565 4740 4103 1273 9882 3181 9136 993 5398 6854 8908 7234 8599 2646 7822 6715 625 1302 2919 4731 8663 5132 3586 663 151 6119 4907 1914 8604 880 3395 2003 4192 9930 6146 1515 8240 6352 5859 4710 8487 6216 2495 7995 8082 8863 3185 1099 1353 8340 3951 6340 569 3460 1413 9168 7423 429 7116 9069 9845 6535 1348 9515 4805 5172 1500 7465 5239 6675 564 2058 9249 8145 7144 4781 3889 2869 7468 4581 3441 1156 8329 419 1624 3405 28 8804 9726 6695 5017 8835 5091 6606 6342 3439 2842 3656 5566 9356 8884 9821 5130 5411 3691 6957 7799 8599 4936 2172 8045 3512 3399 6712 6560 8276 2137 5733 9429 7846 9021 3966 9573 31 3587 6604 9564 4751 6886 7492 3924 5213 1739 8187 1537 1290 620 3697 9044 3042 4373 6069 4356 4904 7273 258 8206 6148 2940 6670 910 6889 3401 9307 4571 5477 362 379 7390 9599 1504 2630 3941 7902 5183 534 2310 3166 9980 9627 5640 3156 8034 7403 1217 5654 2406 7508 8525 6777 4132 8984 2063 5071 3613 609 179 1078 5868 7502 4498 5556 5651 2084 5840 3746 6183 5101 7403 6737 4699 5712 4106 2819 9159 3811 316 5125 5209 4120 4345 3040 9132 8207 3824 2394 3804 8569 1282 9560 275 1814 7759 8605 2060 3998 3222 488 697 8294 4420 3282 2490 1077 3167 7755 9364 5232 6184 1562 882 1134 6162 2987 7265 3653 3709 8370 2659 2577 6366 1602 5199 1697 9232 8864 8544 4246 2541 9736 2189 3411 2368 4246 8758 7698 8168 3349 8982 4449 9583 4973 1442 3611 4622 9531 9835 1505 4439 339 9986 1350 7542 6433 5646 9386 9357 9215 9122 2802 6723 2752 6174 8104 3588 7660 1351 147 8725 1349 4775 2859 3391 4503 2737 6855 9028 8760 9819 4579 2563 6410 1472 8077 8092 4992 1376 7743 5785 7896 4583 130 5956 408 8706 9923 1650 418 4731 6882 1840 3379 9779 3396 3614 3903 937 8081 2252 8173 8916 626 8327 762 9764 9070 8793 157 4579 4131 2032 894 5889 3605 9640 6423 9392 8047 4533 1783 7301 2671 4473 8939 7937 1576 4939 4611 8770 9623 8971 7613 4850 3357 5727 7894 4577 2713 820 1872 6503 4911 68 7335 2635 5653 364 1931 7355 5093 2892 980 4700 5360 4046 5493 4099 1277 1301 648 8866 240 3869 6493 3848 3734 4429 1278 3819 292 2676 4478 8393 7177 7140 407 7398 5526 5025 7423 5509 6264 435 2579 6611 4347 8147 2548 419 6243 6349 6603 2393 5827 4553 6369 2743 4764 8231 2071 1954 118 6059 9854 3732 9472 8831 2767 3425 686 8829 6902 8903 1162 914 9073 5127 8597 133 4760 7999 6999 4512 4559 4408 4531 7670 1991 2161 5116 37 2663 2726 1856 4634 5244 9871 8155 4207 5399 305 9703 3351 2560 8091 2461 640 6787 2646 3322 6585 4323 8496 7938 4316 5220 6416 1647 5750 3116 909 2948 1345 7861 8363 8476 729 2423 8305 2079 7272 9441 5907 8185 702 2396 9468 5798 8165 3225 4960 1821 9828 3503 2726 748 7820 5781 3890 4644 5324 6659 3642 1216 9102 8158 3024 7867 3348 7746 7026 4215 7224 5554 9552 398 4672 5078 8298 1140 8485 2255 2006 5926 2215 7452 9735 2122 8059 7923 8628 2200 4352 9683 3677 121 1321 6637 809 1487 6513 4074 1388 5256 7872 3453 1310 8718 3420 8879 8626 9742 7249 108 8767 2928 4448 7027 9651 8372 8853 461 8396 3590 9564 4678 3059 4724 8888 406 8992 2449 6615 5550 26 8851 4625 7211 8948 451 4410 5480 2612 1743 6336 2678 957 9197 6453 1205 3233 5703 938 7680 8548 6164 4543 2774 4272 5549 8958 3620 569 4268 828 4131 4885 5272 9194 6899 9180 2388 730 7588 2415 4801 4187 588 3328 7751 4450 5512 3875 5159 5135 7753 5841 8745 1835 7468 1169 804 4133 2252 4066 2821 6650 8346 1337 8830 9400 231 4211 89 8850 8075 80 8773 1982 697 1704 8711 4825 1524 8445 9584 7448 5395 4396 9770 1412 2946 8070 6297 75 7815 2093 2872 3503 7481 4988 6423 7024 5028 2465 3883 5321 3702 2923 9091 864 1958 6213 7043 2552 8861 698 6068 1735 599 2445 4464 903 1985 2038 4163 4302 6567 9132 4766 7329 1689 312 9664 5263 922 1201 3667 8928 8410 4253 5007 4111 9910 2748 3596 7259 3471 7807 3645 1422 4512 8687 4234 9964 4572 2354 2934 8727 6944 4877 9454 8582 6840 7479 9520 5049 2160 9352 2359 4768 1219 1683 8270 3943 8599 7629 9283 8804 302 6375 7534 3756 6584 78 5375 2823 2747 5166 51 169 9952 9897 3682 4152 3508 2720 3163 5579 3087 5614 5219 6010 4860 7706 8319 641 4093 9619 3095 7693 7737 1070 7904 9564 3342 7453 2520 312 856 998 1636 2068 620 9743 7124 9086 2608 6252 5463 4067 7864 7014 1848 8244 8849 2703 9078 7923 7072 7516 4265 8601 9420 6624 2565 9750 8261 8326 7021 1878 1434 7365 9801 1645 3057 7084 6056 2612 4989 692 681 3225 7492 2724 3510 141 3460 961 269 7153 5163 5557 9463 4212 7872 9714 5907 1632 7190 8374 4764 5076 1047 2149 6652 3558 5036 1792 1749 6584 3659 1973 1435 2370 7663 8904 2077 9008 9135 3673 8482 2752 2374 3269 9613 1984 3033 4778 6727 1324 9528 4895 1536 2668 5484 4741 9253 239 9662 5132 396 646 5620 8010 931 5552 9446 1574 161 3731 1323 4412 8777 6355 3467 1875 8064 5991 5294 2426 288 4467 8263 113 3155 8057 2058 8575 2480 8229 4686 6029 6856 1481 7009 1133 4258 6497 7792 6020 7305 9624 741 9380 4252 7891 1761 6697 6032 8176 5379 8109 1208 9110 8950 3668 447 4267 9581 9428 6840 3668 3172 1841 1801 4496 1239 3950 6462 7515 2922 7996 9936 1458 5764 416 2365 9121 6416 4400 241 9477 6789 8579 5172 7382 1095 612 5542 7 9911 9300 967 8301 1038 7451 9105 7015 1952 3737 9740 3581 5060 8599 6576 9655 9366 3531 4905 9111 8074 8885 2832 3839 4962 644 4176 1763 5019 8874 6493 9256 278 4515 6612 6625 3854 577 8323 8025 1254 4860 2172 9300 2198 1729 7337 5 8785 4006 1636 3763 2058 4063 2668 7080 2343 3510 6069 4876 8873 4887 1773 7279 7404 8145 2065 847 1327 7877 5177 9435 9837 5035 1497 2199 4015 8221 3868 6476 7521 996 282 6091 5264 9152 1559 3022 2043 2501 6386 3112 731 3390 2689 5329 2558 9279 8028 5138 7230 3040 1407 8916 3420 8222 3475 72 8327 5608 9947 5885 4495 7170 6669 4218 7423 8004 9475 221 4214 1669 9909 2971 3077 1517 5185 8179 5882 1271 5327 3757 7384 6293 9543 8697 6638 7363 636 3642 104 5206 4281 9858 1277 5602 15 6066 185 5154 3990 6761 8000 2042 4709 9795 6977 3949 6737 4552 9025 838 8771 9410 6413 3816 8846 1616 1607 1938 1369 1840 5124 3379 9140 7809 7465 8756 3253 2305 5266 3916 7080 5862 492 1390 464 8752 7041 4993 2298 7255 9643 7033 3843 4960 4305 8486 725 9105 307 6901 2135 4170 6888 8006 3470 9050 5052 6492 5674 4365 9607 2982 8473 2089 8527 4749 4169 8981 4240 2565 1455 2080 3169 9196 6794 5370 9310 7859 6754 699 818 7096 3759 8350 1919 3563 1443 305 8577 7708 244 1416 5218 4263 1665 6921 3409 7168 944 7552 6210 7842 3555 3374 7099 1118 8515 6858 4088 9348 1058 1250 2762 4705 3888 456 7513 8019 4101 4009 5304 7473 8157 1760 6483 1762 5808 9190 6266 1115 6705 7638 3615 3795 4084 1795 3036 6412 8703 8159 6685 9709 4593 7265 9029 5344 7922 8207 3664 8713 4130 6427 8454 1217 3065 133 3807 5998 2991 9361 2816 5814 5755 9320 4506 2305 1109 7812 5972 1517 3417 842 2913 273 1649 2137 7520 7388 2052 1225 9198 7985 8236 3619 8448 4488 718 722 4638 7374 7544 1325 850 1624 9512 846 9169 8557 4635 9404 4033 8111 6404 2694 6142 924 5328 4070 1927 1325 4926 7260 889 535 8689 902 2327 6621 3105 6501 7363 4016 6542 5264 5901 1337 4946 6616 6400 4336 4226 4962 6034 5000 3197 6924 5278 155 3245 4277 2655 2409 5711 6664 9094 6831 8656 5196 5752 6734 6639 5869 7142 637 3847 7866 83 9869 5740 832 6524 7575 2135 9684 4048 1122 5076 5739 544 6982 4007 5564 7537 6709 4062 4322 6013 9552 5886 6184 2826 4448 9423 4761 139 9490 8788 9193 3107 5766 605 235 7126 1799 5192 9960 7604 1591 7646 8938 4068 9086 7886 3474 5178 9919 7908 419 2945 7192 5322 4951 1788 2142 2108 2260 718 1308 1328 2692 6905 5547 2141 1809 4417 9239 3597 8544 2569 7217 236 403 3018 3207 2967 6658 1462 1880 6730 4771 8085 5931 5422 5315 5709 5731 4843 3863 3777 8625 1635 5377 6967 8412 7487 957 2794 5426 5205 2018 1814 9395 2083 5529 5270 2934 5502 4178 5596 7406 816 1206 3786 9955 8507 8423 5356 7254 1020 6497 6924 8776 113 3508 1376 3541 5059 3228 2973 4752 7643 6621 8316 3726 2456 9407 9900 7044 5255 4457 4040 6261 281 9433 662 2799 463 621 1804 6936 5958 3951 7586 7344 4020 2053 397 46 1489 9274 3774 5658 1067 7547 996 5873 9279 5935 4014 1316 7519 1856 336 9744 9989 1388 227 4635 786 4924 521 8346 9531 3503 770 7788 658 6452 1415 7271 4050 2496 1376 6464 1944 1109 1550 3341 5052 3736 7562 4827 6789 7850 9654 3535 7025 191 8028 1799 3262 3361 8097 60 8376 8029 2906 3043 7930 3667 1703 9204 9504 2933 6198 2671 3837 6472 4946 4114 4615 8474 1159 8333 5804 9160 5616 7128 1899 6921 8227 4005 3772 5215 2630 6533 2869 140 4879 3595 6291 3546 9723 2740 3887 656 8081 3585 8389 8479 3080 7468 7571 4555 4688 8416 8620 2028 4877 1887 5114 6096 5925 6490 7394 1575 5729 8689 4007 5705 1557 8290 3011 6453 6612 6630 4270 4486 2618 5583 2290 9712 8094 1330 1285 2250 7341 465 1895 5136 8078 3193 9089 8136 4738 6528 8460 9655 9654 4879 9515 4012 1686 9973 3566 5792 3097 4926 3541 3148 1938 9000 8549 8817 6316 6172 6376 6208 2084 3851 3004 756 204 1514 9785 2324 5155 9894 9006 6093 5101 8992 7043 8684 2024 6769 8210 4169 8870 5985 4088 6529 3483 4178 4185 7537 7224 7891 4774 7183 3598 6111 9871 9859 6422 3541 8938 4092 9719 1407 508 5957 4679 1297 9902 9455 4176 9005 1929 5823 1943 6308 9007 291 3724 3753 4078 327 4538 4432 4614 9725 3125 1836 3258 7221 2877 6812 3384 908 9198 1498 2941 4270 368 2599 4383 5597 8540 7514 9960 6995 8362 8147 4870 8715 8850 2377 5193 5906 2500 2389 6437 3743 5394 7014 2308 3807 7736 1572 2936 2889 6309 3214 4345 5959 2396 9123 4951 4636 6107 5616 6958 5058 7018 9399 5730 5529 4193 3808 2848 4866 6352 974 510 8554 2751 5235 8504 1227 6607 664 2556 3670 4874 3688 5547 4644 304 9140 9244 8976 4920 5169 5538 2503 4060 9008 6259 3134 9941 4376 5916 1729 4387 4689 5181 8227 789 7783 5876 2475 7054 4897 3686 4842 4822 7488 8176 9159 1778 357 3872 9749 2769 6641 2530 7835 877 392 1205 7083 7465 1220 6970 6658 1532 4011 5527 6596 4425 857 3241 7700 4633 5741 7845 4364 9272 1794 4940 8044 6881 1459 4341 5399 1690 6905 9232 7458 9741 3863 4587 5395 6979 5274 9598 2597 2897 5972 189 6919 6006 6362 1304 963 710 2264 5913 9499 8794 3634 3546 4266 4491 9225 6738 3915 5176 2526 6869 5296 6239 3994 7596 2646 2339 8416 170 9178 8809 3022 5831 2688 1784 776 5471 2057 8841 7503 365 2523 2928 4653 887 4353 6984 1215 3397 4341 1363 2432 8144 5067 1439 3087 4267 5857 9646 1943 5829 6860 7356 9931 340 8828 8728 2762 1181 8943 8063 3476 7235 9369 7142 6940 5508 6617 2729 4565 5889 3236 5829 1933 4530 2266 9911 8108 5899 3719 2942 4738 2741 784 254 1527 8419 6786 3602 9840 3835 7437 6413 8272 1488 6385 5130 8267 7567 326 1828 2810 5350 4796 9731 5265 2270 6559 1296 6997 2423 1882 8996 5054 2451 907 9666 2461 4046 898 2997 1495 2516 8266 286 6314 9193 4527 1620 8477 175 2538 5294 4669 9635 1811 5546 1204 6212 146 69 4375 6669 9266 8251 8449 9057 4050 104 9916 6740 621 2971 6327 8851 4200 1072 7021 8725 8153 8855 104 93 3492 9498 6715 1969 8309 5334 7177 2784 8593 754 7223 9273 935 1234 8475 3049 9302 23 1911 9584 2938 4595 99 8296 312 1364 2361 9627 6352 2633 4421 3178 4271 510 4991 2968 5597 5304 5143 7070 3623 5677 3757 5905 7373 8528 9592 9233 3089 5295 1828 895 4623 79 6741 9902 1332 2305 5127 9735 6657 7235 1178 2697 3983 848 8390 2682 1941 7988 2004 7212 7617 6061 2208 9174 2255 7398 2335 7594 1597 2970 4082 1315 5377 2421 5794 1101 6680 1575 3312 2679 1120 5819 9703 9919 8167 3058 8932 5830 2928 3610 4778 1654 5361 1607 1663 4114 4614 8110 2676 8274 2101 9473 3678 991 9613 4572 2619 7967 478 7114 8123 342 4714 8099 7335 1918 6344 7349 9811 2824 9481 578 3255 4567 8867 6926 4257 5054 2255 2333 8915 2309 1902 1050 9081 1839 478 6756 2961 4316 3665 7415 3444 9965 4229 7551 9053 8478 73 3804 4733 9998 2575 6261 9034 4620 2872 9328 9641 685 8287 2039 3022 1392 9050 8367 2632 3968 7188 1104 2150 4587 5435 549 58 5130 5332 7907 6939 491 6462 4352 4484 7865 7443 1039 2079 9779 3539 1296 8995 3698 7101 3963 3980 6395 8892 4675 3593 6696 7307 1222 2700 4211 9682 2420 9589 3093 3907 9971 631 2618 4134 3830 4780 743 3863 8405 3631 4094 9841 694 741 8664 4310 7601 2752 5754 2452 1194 5035 7856 8340 7355 2994 3765 4635 3755 2980 5457 9350 5390 1447 2763 4506 4839 6994 8779 2443 4290 6913 7280 3595 7959 6262 7020 9272 7027 342 1571 5820 5457 6991 3321 9805 8316 1430 4933 5566 2567 8418 2114 252 9016 1861 6761 7729 6984 3130 7445 3807 3649 6422 214 21 7138 9838 9358 3735 2890 2702 263 2581 4200 3378 2107 4516 2037 6109 4566 9330 1287 1014 8670 7394 3324 2942 8983 7780 4150 4809 4182 3281 6391 6210 7582 3678 3223 1422 8970 1464 986 5444 8418 2670 2217 6604 2990 2384 4766 2001 4987 112 6990 7596 7455 3176 7663 4898 1772 1495 4424 8343 1329 9428 4870 9768 1348 2328 3877 9087 7453 3116 4391 7227 5170 2490 2885 9491 5743 7385 8481 8142 1830 4600 4931 6579 3134 6999 237 4808 5805 4210 8574 1208 7317 647 4385 8984 2552 2429 7823 1737 8196 3549 7695 7481 9012 3861 9441 2112 2016 7063 8008 4831 3881 8870 5419 1993 5418 5685 7823 6050 630 1161 9134 6712 5437 957 168 4553 989 1391 2482 6107 8955 6309 4299 1620 7850 5066 481 646 9548 2330 5903 4711 8750 2328 2732 1457 7814 481 5884 2541 9878 8239 5920 7465 3238 7537 8828 7292 7788 9325 1085 9127 3996 7229 3010 5927 4264 5839 3898 9507 2147 333 3791 8408 7789 7986 9406 5726 4204 761 328 7019 514 4230 6472 8964 543 1543 1820 3857 2367 7293 2611 8501 1377 8719 4356 5486 8682 9281 1873 2881 8119 7908 8125 6688 5057 9590 3443 8115 1580 9828 625 4681 660 456 1256 5994 8811 9665 7069 7372 3850 5912 3524 6137 7366 5310 2424 8358 7685 5399 1609 9024 7957 4327 8661 8546 1516 5259 893 5240 9272 1689 8054 8294 9673 4156 8725 4119 7893 4075 7437 8662 6650 4735 4204 5275 7929 1008 3196 5798 3437 6909 3559 9988 1165 8865 4080 4790 3623 3462 8749 5657 6271 3864 1041 4157 3981 9220 8079 3315 1145 3765 6664 5435 3172 692 2255 8845 2779 6860 7570 7414 3267 8995 2053 2293 5485 7185 233 3042 7247 9892 1785 3857 9260 202 755 41 7398 2855 4969 7610 3507 1300 5783 1004 7297 2346 3771 4614 4217 827 4716 8448 3336 2033 5412 724 4275 904 3557 4860 4970 7555 3902 5198 5759 4170 8691 4827 3073 7394 8520 6094 7791 9146 8301 8620 6592 755 3644 7604 6679 8460 3369 1808 6960 8143 6479 443 8859 7223 3538 3665 1608 9073 6863 4087 2224 9460 8746 9276 4292 538 6546 6389 6352 3756 4022 5938 2054 5098 3079 1597 1594 2221 6652 7023 1911 4884 2828 2782 5164 133 6587 7435 4570 8115 7876 6780 6890 8639 7077 8360 3854 9846 5029 1487 9653 293 4229 6356 375 3595 1868 8161 8588 3359 3601 8302 9610 4614 6219 5146 1152 6350 3358 2447 458 2985 3049 1441 557 7946 6560 1821 9719 7627 9560 604 8538 3025 3134 6030 9256 4067 1417 2160 4881 8356 1837 3352 954 9693 3124 7650 5408 7389 5116 5907 6768 8548 4331 5011 637 6886 2578 1715 1613 8973 6914 8475 3959 8052 9383 5886 5971 8136 6773 4299 4221 5739 8437 735 2483 339 2695 3565 2051 9776 5021 5953 2507 8283 5359 3480 6099 5973 7388 6638 9473 534 5597 5004 4660 2680 1550 3032 1769 8569 138 7738 5009 9507 7288 9608 2498 8728 7668 8951 1633 744 6361 2091 1069 9993 8915 859 9841 4916 3415 2613 3062 2667 4001 477 4466 5262 8829 2398 6609 1002 3108 412 778 3788 3067 1624 1293 7661 5633 4809 3848 5318 3501 5710 5514 6599 3943 2595 6324 1521 9082 7348 3453 2924 823 6812 6366 2820 8341 1938 7149 3952 2001 10 4867 7364 7523 1206 9055 6397 2795 4075 546 7594 2119 6356 7109 6935 4456 7005 5425 5999 847 4464 2756 9357 8310 2703 4130 1552 7602 4572 8583 2593 4507 5788 2469 870 7913 867 8506 9833 8599 8427 181 3300 2589 2038 5064 2229 9673 6931 3066 5576 6705 2348 4699 3551 2276 8572 2759 9262 7746 3347 192 3352 2089 3243 6380 2439 7551 9368 9914 4415 7464 8843 4905 1371 4363 2086 3316 2955 1133 4529 3603 4915 9780 5735 1269 629 9891 5877 4124 3860 3694 1976 4317 1379 3569 1991 2251 6934 5195 6598 2271 787 7594 6567 4394 8925 7664 6966 5506 5464 9266 2879 9186 2660 6444 1044 8187 2296 9622 1450 5222 5225 5260 4159 2160 783 5091 9194 1564 8666 4553 6367 854 7194 8749 6079 8296 5783 1038 7252 6713 4401 4268 8115 2008 1189 8812 8546 9640 446 8796 8467 7364 5682 1472 6557 1717 5385 7237 5534 7521 1865 9433 4905 3743 5899 7997 912 5727 9528 6747 7301 7864 6029 4824 1983 6110 1596 9242 5583 9693 4441 3137 1374 1570 445 4722 3532 3559 4517 5348 4998 442 2666 1924 3149 4535 3973 5212 6778 6828 6675 5131 7247 970 734 7665 7850 8424 6202 9770 7674 9793 8117 5644 6935 8166 3689 7528 4733 8294 209 5668 3979 4102 437 4733 3220 4350 4025 7700 5721 1861 849 5566 2946 4632 180 5457 743 3796 8737 482 4339 6769 6996 9291 8336 3611 6808 8966 6500 1143 4642 930 5044 6864 2793 6947 2560 3926 6956 5506 6420 4463 3059 5270 303 4529 7663 7377 9187 63 2579 8814 3538 2633 5366 6746 7307 2391 6758 8097 1179 9469 7294 7054 2652 2583 2187 3355 3557 3027 9606 4154 5892 3543 265 7801 7673 7436 6204 6845 1718 6889 5541 4439 252 8174 4335 8819 3794 1276 6519 3482 9296 8976 9903 2952 4375 943 632 1394 5029 3199 9394 4468 2204 4930 7778 5675 2355 3832 6022 4986 537 388 833 9827 1062 8052 203 7350 8417 4756 5517 5297 4438 7644 6858 9065 3619 5546 9084 6467 7426 7343 998 7104 2186 4940 8356 2527 3336 3306 3506 8958 4618 178 320 2890 1515 6258 5417 8658 1933 1598 3001 8959 4569 9647 2990 3532 2726 9142 2788 1477 3622 5263 5108 2335 6210 5146 7087 7694 9149 7589 7329 1842 8155 700 6931 3225 562 6621 6623 3222 983 6139 9742 6876 2139 3277 2445 8529 8019 5723 1608 4750 7049 2403 5876 5221 669 8070 8547 3236 9975 7264 7742 8523 2443 7651 6060 9453 8940 3366 294 8909 6340 698 7411 437 6219 1008 3803 1963 784 2587 2160 2483 9037 22 2814 5713 2956 9524 2629 4063 5771 1304 4693 4526 6307 445 5481 275 6764 2604 1009 2244 1469 916 3675 9993 5175 7675 6550 7710 9100 2680 490 259 9663 7199 9121 9828 5956 6581 1471 2844 3692 2846 7941 2480 4685 8761 52 9786 29 6808 1230 9160 9400 8817 1121 4041 997 4755 4532 7070 9297 3343 8343 6510 7042 1669 9472 752 3741 9416 8372 4806 7481 9316 6408 8306 4962 3690 1626 5876 8650 6325 5520 8534 5922 8277 9146 795 8981 9208 1324 8405 1249 7961 6079 6086 5133 8268 8336 4865 646 6120 4410 4069 6922 1134 6926 8959 5982 6606 9883 9890 8254 \n4842\n6511 4214 7819 9287 1245 556 3786 6643 4645 452 7928 1736 6690 4928 3348 9962 3727 6383 3703 7690 2847 3452 6778 173 7125 7441 2689 203 7998 4180 2064 7537 8175 5644 7172 8935 3413 9003 5506 5184 4799 1135 6805 4402 552 2713 5574 5908 2319 2670 867 5509 3133 161 9493 3959 2225 1204 4505 3754 4909 7527 8703 4768 8303 324 9630 9312 5862 7698 9129 1042 5116 7898 1366 1742 5055 5321 2330 8884 637 2038 5439 5150 8341 6347 2672 5010 1250 2441 1546 4589 8740 8960 184 8843 7055 4841 4990 7018 4626 1568 5218 5755 9485 6338 2735 3688 643 1347 4204 7136 6403 1507 1693 6999 5911 2254 9994 8626 9839 6012 5464 803 3454 5482 483 1059 1478 2425 9520 5973 9830 6089 8834 4311 4792 3947 8941 4695 9031 6408 4539 1827 4532 2312 8094 5312 9803 8856 490 8560 5978 4575 2917 9586 8091 5728 8602 8692 9732 7442 1314 6531 5680 146 4032 8201 784 8255 4007 1983 8956 1215 8444 4279 1589 7069 440 9207 5320 7451 8417 7272 4153 173 968 7402 6876 8932 6724 4831 7500 6694 714 2138 3761 948 6748 4406 3347 7276 1691 1403 2031 3970 4519 6001 1839 614 7787 7217 3824 3939 168 9572 3155 3037 8755 6720 8831 237 207 4401 2481 4019 8380 8832 9972 246 2678 6787 2824 8741 8511 5804 8914 9928 1487 5316 1130 8300 4194 9807 3836 4057 2173 2108 5876 4369 2403 8347 7046 7554 5149 7592 1534 4675 5641 3856 649 5010 2657 8174 8838 3121 9221 9784 6480 4184 8537 3642 3426 1360 3861 7197 3694 7607 4214 2322 894 324 9644 7382 9283 6599 6068 935 3125 6061 3948 5036 9949 6581 2337 424 924 420 6000 7061 8615 84 9452 1110 1861 348 3347 5451 3426 8654 6739 9191 5903 7230 3381 604 2487 931 8180 8266 358 3863 9498 8067 9187 5404 1963 2619 739 8076 8 2004 613 598 3619 7356 5605 1711 5142 5372 6299 2987 5973 1776 2333 6408 7983 6129 8133 4469 3126 7111 669 2165 4726 4752 7165 3679 394 4177 1848 3979 1182 7139 869 1599 2665 9477 8866 8822 5361 1832 8949 2749 5000 1700 703 5626 4737 4224 8750 7849 2851 8503 6230 5933 4701 6672 4833 9801 7775 4086 8215 3345 5858 1712 1685 7129 4985 1915 1523 2975 9426 5853 8192 6508 5125 6600 7627 3639 4839 916 8184 6844 2733 4339 5974 3052 5733 4340 9969 7978 5677 3544 6957 315 3123 8391 2630 7466 2686 3741 9853 42 2877 5710 9708 5115 3324 6993 7950 2014 4506 6742 5441 2305 7510 49 2847 4538 5246 9086 3835 8436 9211 5833 6938 3471 6592 1181 6532 3736 1797 4447 708 214 919 9050 2707 5780 6932 7711 4757 9604 2647 5607 780 7049 3004 1259 4505 3875 2922 4960 7334 8958 2741 9491 8752 487 9124 34 7760 513 6083 2323 224 9970 8627 941 6156 3087 2141 2628 5601 1551 5476 6650 2535 5968 4325 6498 2768 1297 3970 8321 2398 7373 3019 1801 3741 3432 7019 7550 8802 7951 306 1179 4677 1830 5791 4752 6199 6177 4231 3711 5403 5836 6274 1268 4552 7583 8753 550 9326 3926 5284 3904 89 8126 9526 1681 5377 8899 5756 6530 6552 5284 1593 9298 7546 1630 1530 8587 5862 3944 9300 5570 3388 2732 4852 7363 9762 4963 308 7521 5340 8870 6297 2991 1889 6880 7862 5248 2942 5387 3384 3637 6880 6687 610 1164 5335 3498 4851 9006 9807 7036 233 5002 8091 5477 1299 7182 6860 3999 2321 3816 9737 366 5254 5717 5573 5272 9231 8213 8011 1576 437 5140 8903 2496 7098 9102 1466 5467 2601 765 2398 8689 7364 3399 7139 3438 7902 4636 7540 7986 9812 2911 4895 1631 7130 6247 5684 698 7076 2844 3271 3354 4917 722 5332 5708 1514 9427 615 5764 1447 725 256 5737 143 1790 9606 1964 8422 9289 1901 6671 9090 5162 7306 1677 7570 6474 2009 6852 5770 9309 9202 162 5643 9247 4931 5512 6893 8880 2454 7593 6969 9791 3408 5766 4387 1137 3098 7556 2694 2966 8184 5100 1029 8731 8405 9973 9182 2873 3093 7961 2852 7982 5982 4274 7048 7643 745 3459 7197 4307 6150 3130 848 1925 2787 946 4397 7213 5090 7522 6649 5532 655 2018 7990 5529 1723 5839 9223 9734 939 5935 1502 8941 5016 5115 1050 6873 3600 5778 3496 9471 1541 7353 1714 7494 2789 9626 9990 9623 8838 1722 6764 8495 6217 4553 7398 2219 7310 6419 1495 1812 9860 4548 1535 3376 5937 2593 671 2278 7657 8463 8446 2184 4071 2269 4406 2255 2269 1503 6432 404 259 9845 4743 9537 6290 4469 6254 7511 7149 3462 752 8223 8286 4064 2842 4912 7601 1399 9930 8090 3347 492 6888 4926 6891 4306 1205 3115 2228 3401 4343 8315 1482 9711 8014 5846 6889 3322 4599 7548 5287 5674 7027 1991 8290 442 9193 7054 1100 3849 216 4215 6788 8463 3598 6060 1099 6651 1152 9569 8956 8440 4607 1909 8916 910 2201 8593 625 8843 9587 9455 233 595 6229 9373 3457 5396 5119 3221 6669 4541 2753 3046 1237 1955 4492 7573 5719 6902 8436 3641 1137 327 9637 7158 3157 494 8130 3886 8058 7089 1537 946 7266 9078 5643 2543 3886 2429 5129 4533 3773 9970 3169 75 3950 9894 1163 9947 225 3420 9473 7901 4151 535 3010 2144 9438 8415 9564 9836 8038 2589 8890 5021 3980 9474 1998 3283 5977 5281 2790 7467 8752 5236 65 7301 6406 4868 2402 8257 9407 6382 4629 6305 5460 7284 4669 9997 493 3254 9286 2078 4179 1549 854 3433 1750 1833 2123 7798 8787 7569 1201 6873 9526 1485 2704 9060 1272 5342 3655 8134 3098 35 5147 8614 7903 4777 9492 8449 8533 356 8170 3497 2757 1077 3655 2461 4024 6951 8260 1607 3536 398 7406 2719 4532 7933 1405 1362 1008 8278 7879 9388 5077 4477 5204 4744 7056 5857 6934 9789 4690 5729 8063 9406 3771 1235 1691 2128 3299 2373 2077 6235 8687 5563 1837 4491 3182 7375 4731 2015 9275 2280 4395 89 3244 1788 1002 7218 2216 386 6133 4552 5488 6075 4511 134 8465 1053 7628 7216 3608 9113 8182 575 7496 9371 7571 3493 3811 1459 1545 6145 1957 7076 7636 50 3185 3385 80 9772 6779 9928 4968 3939 1038 6050 1223 9582 9915 4269 1579 7299 9700 489 8718 2078 4637 9840 7339 6307 4537 347 4491 5889 1530 7103 3250 9134 3979 6420 1630 1400 9788 83 9156 4657 9345 33 1623 2390 7229 7843 4239 6827 9986 3794 7226 5951 3610 9135 2823 6522 7449 4415 3732 4090 2061 6871 4517 7989 420 3354 8922 7808 1264 2154 423 2697 5262 6419 1533 3278 8707 4791 3260 7811 7869 23 3102 4771 4080 4464 2159 8088 1896 9744 6656 7428 9484 7883 7375 6530 4810 5350 3322 6334 396 3400 5868 9107 3309 5242 696 6454 3666 9334 8818 4592 3310 6670 4650 6202 3051 6210 8304 4762 9005 7316 1546 4794 7492 33 2279 3731 903 2205 7930 322 6941 556 8787 3322 9033 9826 8092 2808 7374 7460 1589 8664 8988 2740 2044 6248 7418 7835 5997 9206 9992 2573 3470 9866 5100 3272 4071 3574 2745 528 7195 1604 3025 962 6097 5864 7482 7548 8477 4006 9541 5492 3960 514 5758 5677 7022 7123 6122 4963 5759 6137 8802 9644 793 2481 3699 9022 5421 4999 2007 4427 4266 4320 8664 6815 4104 124 8599 5845 2585 6965 5278 9722 3711 7797 7538 4493 1138 2968 3379 4541 6460 3209 8234 6859 1054 6096 8719 4037 4573 6330 2763 7523 8484 9234 8497 5467 1437 6171 9312 1091 8293 8157 2990 9292 8960 9171 2437 5216 8842 1859 9068 1675 1450 1922 834 1175 5668 5484 9706 1711 7063 8355 5016 1487 1339 3340 3039 8690 7777 4172 7038 6451 5115 1679 1366 8811 7554 3111 8562 3194 4420 6315 2897 6372 6637 7142 5365 3710 2405 3381 5064 4963 8345 314 4307 4707 3904 4189 6081 6814 3306 4841 5994 4623 9032 5320 8489 5235 1996 5111 8395 4331 7914 7278 3302 410 8350 1100 6387 4195 723 7280 7407 8039 8800 4466 4961 6940 4952 1841 2956 2783 3662 5062 3337 5282 2120 7562 4534 5950 9331 7762 7038 3430 9710 6540 111 5907 4580 1033 8905 2241 3838 6957 4716 2289 4868 3543 2503 2412 8026 3339 2174 6435 5208 3185 5328 4568 9370 4383 3645 7116 4384 7216 1987 8240 2603 7610 3821 7683 3835 4927 1120 5293 6387 1860 1843 2719 3611 7284 6320 6658 2592 3376 3363 2351 7494 7547 1493 6070 3622 5626 8005 8648 2756 917 9244 1255 6515 4924 401 9700 1180 3324 9742 9776 8273 2194 971 3107 880 9699 7547 229 2528 4058 6917 9539 4736 5531 2017 4618 6940 6151 9503 348 2413 3683 9802 8493 1744 2467 790 2631 8552 3804 3189 3112 368 4907 574 6939 549 6903 5444 8344 1073 6748 8496 4705 901 7490 713 8156 5241 1959 8042 2066 4551 9197 9673 6379 3130 3131 2909 2408 4757 1480 7565 5909 7960 5206 9640 6685 9484 5171 4227 9268 374 1142 2318 9950 1983 8091 9140 6783 3283 3832 3394 4868 255 7092 6725 6353 9115 1499 3547 6298 4427 7143 3948 9360 890 67 7787 1348 2663 3447 8692 951 8005 9911 3558 7086 4289 4495 586 8331 676 7318 8467 8509 8866 9857 243 9078 6661 6206 2277 6372 1528 5686 6960 7881 2961 2689 7374 1579 6986 2877 8151 5147 9301 8341 1147 4970 5734 3687 8212 5324 114 463 9969 4675 8762 8434 1866 1864 3405 2379 522 943 9390 1614 325 7927 558 5740 9527 2803 4407 3790 1967 8122 6050 1872 4392 8882 5069 3800 120 4622 6918 1969 8625 772 8228 28 1268 4443 6268 8331 6328 8737 7244 8714 3792 8649 7895 4250 1028 8407 1547 9544 4046 5210 4190 7952 3114 8397 632 2146 9631 5423 9673 8928 7634 976 3277 3774 5910 8802 7071 9179 4302 2986 5920 4919 8535 5537 440 5123 2836 1642 556 4151 7360 9800 3421 1252 5827 1263 2756 8257 45 1164 8055 3152 1137 5720 4841 8144 7894 6642 7692 7141 4703 5685 6073 3750 1603 2116 8665 7056 2773 2044 8682 8176 2181 4130 3018 8809 6097 9671 568 7437 4759 2111 3174 6860 377 6562 216 3811 1840 8892 1227 5800 9339 5964 2740 7005 1901 3480 8330 9659 3779 4687 1357 9382 4360 8301 7703 9737 7579 4099 8298 4468 8998 7335 4183 5894 2762 1947 8714 5099 159 2522 7806 6774 4634 1577 9160 2901 1208 9540 9375 8422 5032 3320 8889 6532 2033 111 7396 3730 8194 1657 4743 1529 5348 2750 621 6968 35 7273 773 854 2042 4820 4045 4582 3271 2668 6781 21 2856 7137 5469 9084 2362 7202 736 3524 7582 7746 8183 5559 7507 8027 272 3413 1210 6931 8699 7233 9249 7613 7928 1017 9779 9007 4639 799 5735 8243 2661 6514 1810 3064 3679 7836 6759 4350 6777 759 4808 6599 8201 7597 2112 3923 8575 2094 410 5760 1513 2038 2533 5992 3925 6475 2319 5381 3695 4924 4480 5715 7683 4777 6066 9884 1522 7056 2323 4702 4574 3117 3160 1213 5780 5619 3766 4827 2823 8027 1049 7495 3604 9975 6452 3786 601 8686 9691 7659 2175 71 5896 5573 3052 1140 4487 5832 9880 3756 6094 7768 4904 3670 5582 1110 3820 7053 7128 5578 9338 7111 3248 3318 525 9816 4436 1608 5208 9818 6431 5867 6533 1601 4468 2251 5451 4151 5199 5749 9841 9475 8615 1934 9528 6981 7437 2212 9570 6285 7898 3258 1405 1615 661 6000 5602 9091 3924 8266 6296 5030 4925 5127 7597 7318 7483 3458 1020 2956 8228 6856 9381 1050 4131 6874 9824 8809 7731 6720 33 8908 552 1660 6942 8005 2498 8931 1772 2227 5760 8385 7678 3667 163 9812 372 4459 1349 6163 287 1148 1214 1789 2243 299 2691 4329 3038 5778 5015 9097 172 6751 2462 5820 5255 592 4396 3811 2775 4945 2374 6267 1533 7683 5846 4528 2325 3108 6645 4543 5148 6573 9778 8384 7768 5045 2211 7981 2348 2224 7987 6944 9454 9124 6558 4397 3177 5604 4178 3741 4906 4895 9505 6570 6270 709 3745 3223 8988 9364 9391 76 8807 9127 260 5442 2181 9251 5302 4815 9212 9936 1508 6518 2699 2316 2417 7385 2016 1652 8295 3349 2761 130 7644 7694 7772 6842 29 8615 8034 3610 2457 7971 5426 6829 9763 3223 5272 2551 2806 5256 5784 5311 9160 9184 488 2630 9733 1246 57 3834 184 6342 1351 9195 2952 134 6908 3643 8476 6169 6672 9085 2420 7256 9652 1675 7232 5017 6148 1927 5461 545 6357 6127 7852 8980 884 863 1287 3363 5161 8827 338 7801 9964 7403 8 5557 3373 4497 7465 4803 7150 8811 2642 3525 70 2642 7252 7452 3787 2715 1759 6376 7016 9253 6370 3098 3711 8006 4753 9837 4476 5187 3182 6690 9430 3347 8841 1135 850 4560 108 779 7574 6530 5661 965 4888 1899 3257 2161 3529 8579 2032 9434 6479 841 2577 4763 7863 7543 7986 3787 8662 9041 5138 278 2823 3096 8025 1817 6544 6321 7517 9177 1113 5221 9833 9333 7063 4970 8018 1129 9043 5219 5738 6063 1549 1285 7953 1051 7853 6632 8226 8807 466 6739 7444 8530 974 8392 2174 3237 6075 5643 6930 6928 7459 1988 8920 7408 3816 12 1076 6013 1121 7157 4560 6765 8416 4273 596 8158 3153 6647 5195 6803 7402 156 3042 5975 2157 9107 8395 1343 7735 7341 5960 8426 9474 7527 9163 1056 2528 3609 4990 5021 8696 7116 4047 4825 7209 3659 5459 6445 9888 5365 1533 3556 1600 6050 3797 4177 3777 4923 651 3066 2863 4924 5125 1400 1875 9083 6282 4773 3319 4894 943 4003 7369 8479 6314 6993 5532 799 8062 3646 1597 3798 7884 7805 1846 1418 310 3939 6628 4098 2086 7205 5891 1571 145 6444 4009 3500 252 4667 5814 8520 7325 7297 3223 2838 6287 4369 565 571 242 8392 9115 1943 5407 5296 4375 9900 3416 8575 9464 8263 4185 1982 8516 8387 522 4186 2505 2309 2152 6865 6124 440 9432 7229 655 8222 1408 9689 1667 9109 5274 7828 3150 3013 7136 2272 8782 5679 5567 822 6437 6696 544 1507 2137 754 4216 3759 9744 1519 4748 6500 9845 5871 5536 6751 9075 9028 1283 8543 2784 2934 3933 1545 1209 7418 9708 2338 7254 2954 9289 9685 9377 639 1641 5323 5974 9065 1972 5071 8334 942 3620 6374 5626 2691 7202 3376 2429 1973 9356 9628 5979 248 2720 6661 9355 8558 3900 3930 8318 6665 1441 7315 9196 8456 6109 952 3134 5694 1763 8561 3361 4570 3598 6569 4706 5888 3177 3276 5830 6523 9088 6057 9135 9154 8532 6713 6941 3989 2016 8916 2490 6779 4374 6254 5542 7622 6198 1801 7830 79 6072 5919 8826 7546 4305 1236 9021 920 5626 1575 2221 7390 6424 5017 1354 9988 688 2874 5455 8603 766 1197 8885 1272 989 4525 8615 8975 5939 2280 9681 7678 8750 66 2319 8747 9383 1255 6540 2649 5557 7767 9868 1231 925 9244 4810 5251 5265 9520 5590 7507 4418 2865 1855 2978 9635 6740 4703 7822 2150 104 4858 301 2629 7748 5673 5077 9491 3694 938 9465 7591 1599 2984 457 3408 8638 3577 4233 6040 8627 3658 4326 9993 5991 195 4778 4676 1402 2907 4401 7171 8585 2467 5823 586 3854 6884 4374 2866 6547 4669 628 7864 7934 3670 6908 6528 7721 8431 9917 1128 3877 2781 2087 5142 6396 699 6669 8628 4245 5008 4027 7243 905 2109 2322 6703 1594 6322 6053 2632 9299 916 3341 4832 5116 6622 9393 9727 1794 9196 7316 1114 9403 2860 3950 6603 629 6892 8309 6316 3610 4999 8352 6239 248 7294 3023 276 7672 6732 8584 3747 4068 2555 6916 2522 7291 2796 940 1125 1906 4377 2310 1711 3209 6326 4621 8108 6410 979 3004 5742 8973 5672 7104 7876 8313 8856 9921 9483 6604 5779 1656 5646 1494 9072 1309 621 2817 7729 7492 892 3459 6225 301 38 3565 2581 1486 8386 311 2998 5449 5091 5585 5833 3023 9734 1670 760 6251 721 4607 5585 3686 2051 6007 953 6204 3373 3397 4371 8534 6966 8788 1722 7947 6661 5892 5524 847 9339 555 6326 8894 7504 4696 3866 6588 8926 2502 8299 9934 6302 3727 5905 4338 1742 5120 5609 6563 3468 7025 372 8635 8936 4508 1961 4270 7870 2733 1538 5866 3605 3060 3564 6378 2234 8759 2161 9147 1128 4745 7186 2448 266 1568 3955 8477 1315 6142 4880 908 1740 5840 9236 3574 8851 1475 9949 328 4336 186 3422 8115 6545 9567 8556 1745 770 554 8140 569 4268 9946 5182 115 4907 3833 9650 31 8779 8930 1834 5419 4703 6014 8559 3668 3960 7515 6549 6780 5233 9791 1966 8649 7816 5598 1163 8755 5639 9846 2212 9320 3615 6419 792 4361 6560 5126 2531 9961 350 7438 274 3185 761 4496 2503 8071 988 5698 6011 7272 3150 8174 9410 680 4386 3773 4948 4797 2032 474 8102 4748 6835 9483 3974 1166 262 7019 746 5777 703 106 8928 5795 6720 3841 5446 7042 5972 1740 6286 718 2349 1715 5741 5457 2151 2861 9940 5759 9791 9925 4387 5080 222 7212 2793 9059 5790 3357 2900 870 1857 8916 3169 1637 4325 490 6750 1101 7624 6710 9591 8664 8060 7607 8221 7269 7061 8401 830 3111 6011 4682 6035 6358 1557 7098 2431 5533 331 7191 4502 4332 7451 7887 9536 1290 8892 6097 3281 8776 4675 6124 3905 6208 7770 5585 1512 1596 8661 328 4971 8889 3393 5442 3367 215 4643 6008 7046 466 2804 5464 6297 7291 8043 3057 9877 9979 8347 1109 3413 2627 2810 7335 6589 7660 3353 7728 1127 2045 1339 2238 4931 7333 7114 9359 9956 7800 6901 5650 1619 1935 9440 2767 2321 4260 9708 3917 117 3858 130 6771 1680 6628 9083 4569 5861 8579 5241 7702 4465 5190 1482 360 1069 2251 2508 7359 4390 5208 6003 7204 33 5442 5888 2736 6770 8973 5443 1090 1840 5430 8170 6941 8457 346 4538 3471 3660 7935 365 7180 7514 5392 300 3710 3266 7203 8984 7962 7919 270 591 9374 6103 1914 9143 2710 8577 1558 4680 999 2700 8092 7334 6204 1248 8073 5963 3395 5396 3361 1061 1662 5729 4455 5312 1788 4692 2352 7864 4486 4345 3801 7871 9839 5699 5143 3226 7096 4205 5084 8547 1138 2040 4243 8415 5748 7670 3567 2885 9323 5896 3548 1337 5363 3014 8059 257 6544 6495 8961 7229 7311 8262 1534 3363 7331 1337 502 2111 2989 5763 7310 5138 7298 5325 6012 4901 4477 2068 3874 4306 5640 8247 7901 1386 3591 4571 8168 8550 3881 788 5298 1358 3345 5453 4225 5595 6958 7620 3881 3835 7957 3758 9689 1587 4695 7793 573 6944 3777 3682 262 2388 8141 6881 4572 6246 3689 259 2980 9572 2911 1668 2303 5783 356 7959 8877 4303 9350 8601 2449 4584 3463 4425 3449 2618 5699 6980 2479 1340 300 9841 4328 7558 9878 1792 956 8060 6171 4369 1784 6684 3994 8231 9649 9394 3965 2704 5817 8105 7895 7219 9857 6539 449 4069 6566 2088 3333 3357 9546 908 5883 6362 1013 2039 3775 7298 3928 9603 8088 8297 6752 209 1486 3910 4725 8849 8458 4666 8662 7869 867 7891 2293 837 2493 5299 8410 8124 5847 835 2504 6399 8069 5929 5203 4155 7749 9278 3027 5374 6204 3446 7043 3454 7718 5576 386 5430 1523 7955 6197 4463 2238 5033 4113 3371 9845 2603 9075 6654 5024 2209 9091 8714 7375 1156 582 9573 4166 6329 5503 3064 7561 2429 552 7305 2006 7292 7969 799 5871 2424 5545 2189 9321 5386 4257 3593 5804 3861 1033 7741 3241 5469 1814 4312 6219 3617 9788 2950 7227 8254 1055 1660 9849 8409 6966 136 1927 5470 6750 6496 7007 4125 3820 7319 2532 3415 774 1067 1460 570 9913 7128 7911 6436 2358 9965 3411 1320 5302 8758 3744 7345 2384 3055 7253 4639 7831 1562 2162 4391 9071 1282 2554 6587 1366 1697 6947 6094 8365 4367 7044 1194 3785 9813 6416 4751 8306 8403 1151 4204 1211 4142 6392 1979 7732 6643 7917 3603 8366 1642 8141 1773 6173 3284 6137 2755 3799 4738 1376 8139 6225 6433 6269 5860 6525 1092 8888 8946 4121 967 3709 1496 9275 8345 5362 6032 2865 3281 7222 4209 7902 2868 8482 7738 3169 1880 7591 1099 4179 9930 8505 2759 2866 8406 1907 9387 3322 7449 6317 7418 1560 3446 1204 513 5018 7437 4678 4741 7509 1459 188 7443 4459 8825 2884 1659 4703 2214 9343 4284 8147 4530 1057 2625 9560 2159 3617 9913 8944 886 8305 578 7612 675 8493 8514 7465 1472 4215 6704 5216 3898 294 5860 118 3458 7583 2161 4331 8720 2852 4051 2143 4126 2821 8678 6864 6214 9398 6258 3718 7676 4486 9433 9859 4296 3942 3665 2129 7165 6970 4647 5890 2487 7683 8151 2836 8407 9413 7979 3358 9938 570 4574 9881 6629 6408 5112 363 4146 3715 9743 7017 8372 3748 1648 9790 4071 7207 8181 2187 8238 7186 6134 6173 711 6092 3324 6532 4735 2312 7345 2461 5057 9516 5351 2366 8871 9462 8220 4646 6907 4647 5161 6041 9671 2040 1549 3914 7793 3846 1509 2418 9558 939 8949 8901 1320 6616 8952 1475 1183 8521 5554 2857 7601 6015 6926 3055 9934 5124 6543 2099 7223 1414 2528 8302 8965 129 291 4434 4794 8150 4526 6167 4716 3247 545 5256 422 4051 7542 3889 79 9770 9178 4673 2297 2446 9377 4345 2283 3283 4284 3049 2665 9994 9838 125 9285 4327 6130 3692 9424 3059 3430 8336 2965 749 5655 7491 5396 5217 1464 281 6948 9314 8300 4783 5022 7764 2301 1873 6661 4936 5794 7880 7641 3265 9252 5539 6990 3181 7796 5040 5583 5179 7527 890 2488 5616 9838 736 8058 3452 7270 6911 8077 3428 6266 2811 7994 3651 8842 8852 3916 4933 3879 1858 9054 8203 75 3675 3797 2052 2274 8317 7771 7146 2231 7495 604 1703 3361 7876 9828 1140 1530 3298 3936 7261 3925 1173 1499 9926 1048 5356 3108 1293 535 6763 3429 1149 9566 7057 1999 3113 7232 8622 400 3586 5779 1075 131 7995 5650 4151 8913 8624 9944 9969 8422 118 1384 556 211 2249 7044 5966 4401 9323 7612 3124 6869 1286 9501 7721 5718 8803 815 7017 6866 5242 4719 9262 6056 2549 9888 5422 6057 7974 4666 3536 3360 7453 5692 1106 7121 805 8047 6097 2908 5272 4634 2519 96 3341 1955 9442 2046 5270 5502 3698 8064 7977 666 507 8212 4411 8327 4987 5775 2183 3290 308 7837 8077 4143 1363 5449 905 371 4068 2592 4138 9946 6421 1915 4248 1892 3447 6259 5964 4698 9395 7090 663 5311 2933 3149 5930 2384 445 1381 4936 7931 3767 3644 5480 234 6983 2289 8515 9714 2417 7844 5678 4265 125 6511 7300 7928 7932 8595 9634 9710 9945 6292 4129 5045 5476 2819 4483 1715 3615 3064 5500 7172 2853 7831 3000 4830 1397 6552 6848 5698 4133 4797 3948 4015 2496 2451 7185 7807 1564 5349 5570 4313 5533 8128 1823 1618 6107 8308 9400 7109 2480 6016 4459 4834 7880 9862 9181 8498 2313 1374 9600 538 3746 8492 2367 4502 7613 9226 8138 3891 9939 9286 9226 5982 9856 2535 8799 438 2302 1642 226 8437 4331 2211 3621 4705 1713 4041 9135 5296 9608 8924 3857 1216 6101 6165 2707 1526 9925 5069 7666 9669 9538 4993 8288 1036 4317 3059 5752 1656 2321 7448 7058 6534 6086 2278 2278 7344 2292 2558 3131 5798 2022 6810 6333 430 1370 755 5849 2774 5164 7222 8990 9544 3187 8708 6277 9555 103 8780 4635 1854 4164 3908 1853 9814 1123 1590 8457 6855 4692 9894 7486 1236 8967 3649 2663 6479 2399 2940 8453 3239 3434 1222 3425 8154 8293 8385 3030 9981 7306 7929 4391 8995 6412 96 866 2632 887 3503 6845 5817 6317 2554 8335 5684 2861 2843 7781 8634 9872 3057 2107 2213 2852 5679 3069 5126 1250 405 9116 5285 7003 7340 4192 8711 5241 1613 3152 3119 4647 6056 6571 7583 1025 2626 4557 6697 5657 9998 9463 6326 9414 9967 9355 2140 5438 7039 3298 4362 5048 7378 6175 4592 5778 4485 8728 6156 1573 1024 5061 6791 2526 3244 6128 8104 3722 8107 1333 9245 9451 2400 5480 4554 4803 7766 9480 146 6214 9141 1102 3372 8294 2087 7038 9610 5490 1486 6796 7882 7623 8300 9893 442 3776 7995 8893 1025 97 953 4137 8497 7340 4374 9273 7317 6843 9490 7727 2152 6245 9552 5736 8048 882 7766 9787 5883 5315 9756 619 6261 2138 8598 6951 5228 1748 5075 8245 4109 5890 4442 2592 9146 7101 785 7548 7741 3702 6384 3284 4923 4812 374 2918 2574 5431 5671 2698 8246 3365 165 3774 9233 7899 6849 7012 3180 6487 4953 5896 7651 5441 3337 4826 1969 3728 7700 369 8746 4752 6872 5466 2954 7506 4359 360 2381 1567 3090 2281 7105 8590 2520 3656 3811 5585 4592 3058 298 3340 5173 7560 7066 6934 5371 6389 6512 326 5248 7624 2260 9951 3060 7537 3547 8996 6127 1989 283 2729 2459 7471 8097 2242 9517 3980 6285 7733 7698 3541 5317 7680 6273 6537 8206 290 37 5990 1136 6374 3995 9836 5342 9530 7396 6623 7699 5246 8076 1266 4821 2941 1082 5189 6036 7795 1941 7931 3319 9469 5201 7535 4435 6547 2917 5277 2981 9243 7590 1814 1553 2907 7206 7035 4083 8380 8653 71 6377 5491 3367 6863 3827 8517 8461 45 8285 5938 9733 616 4439 8521 9465 4041 2113 8237 7949 5274 371 8663 9132 8689 3276 9815 2270 3233 582 6031 9551 8929 9808 7031 5929 256 45 5603 2040 7677 4291 8688 7510 6874 9530 4956 7656 7370 8857 1893 6140 6698 7350 2202 5443 8108 4180 1552 4487 4546 1278 797 9841 2911 4465 3215 3450 289 3387 3294 8964 9276 4452 782 4730 5947 6647 74 7892 2899 5442 7597 4708 6650 143 9248 6193 7807 74 6311 5058 7801 1884 1971 9206 2380 3387 3356 7805 7367 7788 9164 5979 9653 5912 4202 2419 296 8109 3644 9633 6126 7702 1491 108 7680 5984 5256 7958 2340 4447 8637 3856 9233 1371 8743 7855 3832 5281 2956 2841 2526 789 6210 5419 5601 2950 5108 8710 2381 6497 5168 1553 6770 3901 1478 9534 6520 7468 3939 2930 3492 349 6894 7383 8444 6098 4304 2522 2926 7779 1761 1865 1218 1407 4101 1897 9719 6512 9011 3888 5788 3156 6626 5036 5358 9004 3222 250 5105 8774 4781 5070 8108 3788 4415 8841 2113 6545 1767 2319 437 1556 3481 1400 605 8559 7175 6039 502 5001 4749 1059 4075 4438 869 2184 6727 2995 161 593 6555 2667 8014 2322 2373 541 987 7078 6557 8116 6261 8749 5045 62 3362 9248 9378 1852 7700 4980 8242 3340 8663 8674 5072 47 4220 5769 3165 392 8985 6238 7741 2275 6361 8551 8210 5686 863 2416 3747 7625 2598 3215 6697 2091 6697 8793 8877 1243 1268 1115 6734 8750 8671 7032 8894 2779 1221 1054 6507 6557 3058 1288 2202 7987 4505 7255 9864 3857 5323 349 8385 9341 6394 2391 3521 8321 157 5240 5386 9958 3318 1285 1976 6265 1796 6904 7148 4043 1891 9720 7070 9498 7964 5315 6544 7168 7242 72 2408 231 7436 3651 3623 8404 2087 7472 5309 1232 1344 6007 8191 2966 8857 1037 742 9327 6169 3203 3391 177 4433 9827 9011 229 5693 292 2020 6221 224 5588 8744 9699 1732 5286 6048 5029 3117 400 6584 7783 8810 9543 7935 6526 4350 1074 7191 3317 1271 2357 9860 2374 5212 9115 553 335 314 495 1814 7763 472 6602 3280 7860 7267 5227 5480 937 5441 8783 5211 2232 157 7027 2929 6867 4941 9345 3424 1419 6046 2693 8201 9458 7519 1523 4652 323 2835 5858 5792 1799 4380 8992 7481 2325 2031 9452 4312 7646 486 1392 5738 9839 9422 5528 8803 4124 7916 9998 4069 4709 9389 1841 9977 3317 9829 4700 9246 7849 3001 1206 6908 2385 6995 2228 2873 1923 5178 7583 7585 7576 2225 2450 3940 1057 5498 3827 3033 9851 3699 4598 5422 2013 1071 5346 3910 5154 9165 9337 5867 4058 5728 7542 4038 7680 1852 229 5035 145 2669 8637 6371 7988 9301 2678 4543 4360 8486 5059 106 24 9759 7879 3717 6811 4057 5099 9273 \n276\n5589 5123 2139 625 8172 1644 9104 1843 9565 5454 5169 6123 6871 6156 9563 157 8151 3945 398 311 3502 8448 7305 7479 981 9858 9066 3972 7135 352 9826 4062 7318 9166 8694 3705 8412 3059 4536 8350 4070 9699 8946 3295 1798 9972 5687 7889 7883 1902 7094 7732 2660 2019 7309 5381 6178 6493 8415 1997 3169 7020 5821 7130 3377 8864 164 4417 7747 2936 7181 292 89 7538 5212 1423 6915 9239 995 4769 552 2623 3465 9167 9604 8647 3611 8829 3008 4650 6363 8984 3145 4973 8472 967 9722 340 4323 3456 9582 5256 7981 2026 8192 9004 1194 4798 1792 6814 4563 6559 8046 9265 6353 577 9527 7201 7402 7593 9010 7337 4242 2185 6942 2548 2157 5829 4951 7995 9848 2529 7777 5369 1724 7257 3192 7658 8260 9796 9942 2809 3744 3192 2747 9382 4227 1052 7356 1333 6742 5242 941 8286 5399 4586 787 4666 936 8973 5645 8816 3975 5582 6924 7911 4042 7509 2162 3001 4877 3215 5815 3456 1729 4042 54 7113 649 9667 3603 7058 5730 5181 3833 8837 9474 1981 7352 4359 3664 8659 588 9181 8416 7605 3556 8815 1106 1207 5893 10000 856 864 6292 4243 8573 628 4311 3374 3752 99 4003 461 9285 3857 9773 3538 416 4394 7718 4192 5191 2591 4289 1430 9849 5686 1629 6991 8821 9452 47 6582 3208 8332 64 8719 7076 7855 4860 1167 4622 6425 761 9068 2872 8861 516 1824 815 2397 4245 6120 1489 2431 8153 2542 7782 8642 707 4599 8219 3237 3998 9598 2060 6937 2686 1028 7913 3721 920 8391 2099 6422 \n539\n3284 629 8845 3810 4621 4502 7702 7579 2751 3281 7048 2952 7028 159 4927 3038 719 5151 2865 3501 6009 5827 7888 457 716 1739 7088 2128 8255 983 8312 8762 6004 2139 4985 7319 5455 7823 7025 8861 9466 2490 9345 1714 1822 8540 6223 721 4590 8775 3320 2334 6780 8019 5084 5984 5879 7434 1854 4039 4698 6209 6039 1924 6795 802 4201 9090 2394 2877 1930 6099 7926 6330 8361 1189 1189 7001 85 9292 9058 6714 4153 7262 7491 7597 4880 8347 1149 4890 5507 2827 6507 8098 6574 9261 3151 5013 4664 8596 9665 3352 1776 575 685 7255 802 4776 9625 7303 7500 1731 4552 8784 2787 7588 7732 7510 8595 5867 8552 3221 4734 5483 9781 2415 1632 6107 1261 4472 269 1735 9797 4878 7030 6905 3394 483 9825 176 7627 7985 8890 2807 8314 1390 3321 4957 7967 1031 2269 1657 5379 5691 1514 7980 4240 5220 5025 643 1498 9663 1911 2908 2375 5476 4321 6314 5509 9758 3894 4873 7601 5375 9321 4422 7096 8050 3712 5662 6572 85 5221 9081 8813 9170 9828 3870 8261 4440 3064 2484 2625 2098 3591 9808 9372 3888 1619 7797 1867 4130 6951 8532 2827 5448 5556 639 3872 4777 1951 4676 776 7767 3110 971 9739 2540 1863 9666 9364 9163 8965 4164 522 3269 3389 5357 805 4984 5358 6048 5668 3942 8638 495 1484 3411 7868 988 1068 5844 6296 1313 4053 3648 1611 6122 2663 5056 5251 5940 7429 1159 4952 6525 9186 2026 5122 1704 9197 1109 1275 2459 3967 6939 5937 5827 2821 9978 9207 9969 4535 1545 6002 5128 504 8663 1139 2869 1592 3711 7076 6677 8525 1559 1571 6338 1348 9123 5626 6307 7949 3209 9161 5446 8616 3061 6361 7805 4166 5941 1594 2894 927 3010 3456 8118 2266 9416 634 5898 3124 1406 6273 7928 5258 1828 463 1664 1133 7021 2016 3865 7928 1540 2524 3007 5697 9005 3163 4528 2738 1022 3571 9509 2140 802 672 8109 3010 2804 9596 3690 1384 3098 70 4604 9245 873 4810 2988 4048 3735 3712 2479 3788 2689 8495 9742 6628 6603 2263 8252 1497 1957 7852 9393 8982 276 7273 8753 7880 9960 5656 134 5334 8266 9431 8510 4454 8265 5829 9710 8952 3755 2721 2532 2412 6524 3705 711 7921 1890 3707 7484 4350 7551 943 3347 1493 5812 4719 5210 7550 5056 367 869 7221 7923 6414 332 2919 2806 1188 6568 6243 4949 3137 9322 3402 555 4793 2518 6471 7338 2390 7632 3312 3433 9301 972 9305 4830 9028 3623 6297 2607 2263 6123 7385 5375 3408 3790 3823 663 6872 6621 9254 2311 6422 185 158 7934 4726 5877 9058 8268 4937 8602 8296 2688 5905 615 4790 7070 4906 1824 1984 9138 8806 4738 7368 1117 1299 7850 8286 755 8619 2557 7510 246 508 5407 5959 4209 29 3919 5588 8649 2260 4876 6446 8722 6682 8963 3509 8169 3791 1583 9940 3146 4838 2125 5525 8952 2953 7152 9551 4717 8361 890 6348 2440 806 437 8696 4912 2644 9228 1370 1714 4600 8661 3375 9261 231 6800 7244 7088 6760 3219 7822 1242 2931 14 4258 6712 9084 \n72\n4385 7951 1082 9602 8881 3180 1678 4058 1889 4957 8984 6919 5769 8799 6337 4482 8038 6055 9644 1948 5789 8321 1657 1576 9873 4571 961 4429 9882 7707 4743 8468 5379 6874 8070 5143 3839 1744 1886 9740 430 7945 7391 3763 51 546 7511 2355 153 8599 3692 7534 9642 4479 8704 3469 3283 8238 2513 8913 8870 7468 6043 9982 7374 3844 3435 6032 8340 723 507 2341 \n5922\n8590 9494 3880 9852 7880 4434 2080 2724 6624 7681 9381 3037 4461 1247 7220 92 8431 9027 9528 7368 9793 6638 2142 131 535 996 9499 3523 2380 9845 8479 9152 8986 7797 7011 2269 1881 403 792 6162 1298 5827 8937 2083 2869 5208 9141 5461 2904 4888 3655 6006 9980 4943 9121 9256 456 8690 5435 619 5603 330 3442 7806 5497 3718 5576 7646 3910 6375 2795 9469 7279 9885 7348 4583 4486 2006 1331 9506 1402 824 1219 3951 6905 3468 1970 3497 1150 3083 643 8333 6811 9154 3768 1300 6164 5150 2385 4260 5229 9032 3631 4212 922 6709 620 4826 9692 7931 2950 2819 6187 4788 8928 7651 3410 1741 2153 4565 9753 3415 3471 2547 9566 1413 9497 5535 694 3260 9110 9272 8887 3710 1820 9918 8447 6796 7917 8765 5275 770 6414 474 8284 5442 41 1077 4941 3693 8578 1450 9760 1661 5737 9272 9262 5567 9157 2210 916 158 5800 6337 6126 2432 6532 3393 6652 2070 1851 241 1126 9778 5621 4795 4774 3900 2663 3258 5997 2884 3716 6466 1132 3889 3970 6355 3086 2266 6111 5622 8326 1140 4486 1496 8953 9534 1074 7611 5552 1611 1070 1773 1307 4060 3739 1348 6587 396 2797 7559 16 4557 5500 9801 6877 6912 1505 2519 8556 3908 412 8251 9912 4219 5650 2464 358 9408 7229 8440 692 5797 4832 5162 561 4405 4903 9640 1633 5385 4027 379 8489 1441 7626 3021 7818 6095 2031 6343 5533 1700 4995 5435 3721 101 4830 6550 3891 2528 1515 299 5467 6794 2942 9464 4509 1208 915 2405 5483 9893 3681 3910 6564 1509 6010 9289 6211 6055 8778 7805 6156 9960 4068 2448 2253 1654 6514 9223 5789 1707 1628 3870 7785 959 7253 6639 7878 7843 7923 4487 4568 4938 1361 9171 2789 2076 9957 6311 3181 2727 2105 8333 3087 3660 6060 1478 487 3399 5675 8337 4469 2689 8497 2851 1071 5150 8256 6185 6429 4172 1923 7021 5558 8973 8261 366 2176 4328 6386 3127 3487 4756 5202 9298 4592 5764 853 8080 8437 6808 8334 2662 5267 4694 4678 8886 3498 8194 3797 9971 9411 8476 8924 9476 6109 7608 6303 2316 1520 2309 139 7306 5093 8728 2324 1581 2061 1596 2344 9197 8998 5741 7551 4628 6503 4007 8429 699 6144 5395 3686 6244 7345 5551 3497 3512 5756 5170 2347 9610 4263 4869 6583 2975 2783 2106 5939 9396 2656 7364 7840 1835 5178 334 1592 6984 2159 7264 3165 6995 8235 3232 9796 1454 9241 9490 972 8813 4298 1379 3511 7577 7317 678 3187 4281 93 9737 551 4394 3820 2367 6040 9913 7080 393 8405 8041 5171 4186 9425 5820 2581 586 5871 2712 5199 1512 6235 1689 374 9374 643 6548 4157 1932 1035 4642 3863 5023 6100 7745 8065 1714 5763 9045 1949 1241 5804 2507 3598 7088 4322 7400 152 9388 206 2771 9414 146 3486 7186 9757 7045 7772 7166 5803 8611 9692 4322 8199 4384 9482 5655 7310 1635 2095 4896 6725 2055 7990 3725 1863 993 2124 2743 9404 4772 6647 9724 2070 8465 1119 371 1982 5283 6531 1536 7681 2099 4943 8748 1659 7245 8741 5383 8551 5940 8140 3615 5521 9479 6582 9502 555 2501 553 6409 6622 7905 4398 6951 5778 6649 3531 8651 1098 681 9368 5231 4469 3138 8607 2548 3491 1467 396 237 9905 7772 1001 4511 1582 5318 8732 125 2506 7076 4783 665 2118 5573 3162 1048 8387 2558 5396 8599 9952 5692 100 4908 3376 110 4657 6355 8608 8095 5370 5404 2104 3435 405 7352 3195 9389 4793 6257 9156 1598 5877 5506 7109 836 9965 7543 676 8522 9833 6726 7172 174 1544 2090 977 140 7276 5094 2651 8234 2204 9105 3156 5861 3990 5263 1646 1700 5594 1923 9645 3876 8070 4164 2773 3373 6203 3189 6761 5194 8573 2317 2932 4764 7732 8864 2283 2054 4487 484 4840 7377 7936 8807 6872 3732 2418 4552 2898 6520 3029 7343 537 8999 7419 8097 8231 6708 5830 1097 2078 5270 6839 2627 9847 7859 2357 2144 5033 2433 7073 1783 7576 4156 5818 2577 1330 6723 2562 9796 9906 8987 6455 5717 7543 6982 5183 2920 9529 4712 9978 3166 3014 3474 8062 3455 4612 8863 5661 8329 1476 5539 3455 3386 9484 4508 5901 8237 4103 7724 2639 4382 7937 5935 584 48 6315 3312 2414 7488 1579 4328 3241 9252 4160 8084 7729 3965 6086 2392 3994 8425 794 3387 5240 2575 1383 2399 4568 2381 4892 6142 3522 5799 1538 4279 740 1619 730 5469 3565 7564 1283 6100 4982 3540 3466 2625 9091 3081 7968 3275 8689 8526 3954 9696 8152 6682 794 3953 1114 2506 3211 7092 9111 30 4395 4041 513 3860 69 5669 7566 6874 3350 1885 6223 6361 2890 6732 2841 7239 3851 3321 4580 7755 5890 336 3822 8299 2509 794 1885 3974 6524 9175 8169 4463 3243 699 9376 4959 6480 429 2388 8609 9878 1773 7928 3837 1868 3810 1928 7064 276 1093 3587 5301 1483 9383 2418 8381 9461 6039 1615 7437 8285 6131 407 146 7047 73 9831 7451 6931 268 7143 9891 7283 2853 15 1204 5266 920 200 3929 4687 1710 7628 9607 8094 658 4387 7659 6895 8325 7066 3584 3553 1988 5516 5761 1738 8818 2021 332 6140 3304 5118 7691 3473 6865 9512 3217 8916 8367 2066 2661 908 1711 5518 7844 4668 8468 4332 6668 4677 3601 7568 9445 9356 6182 6595 9969 9933 9049 5560 8810 3403 2206 2096 2767 5436 2753 6131 1538 7541 1318 2229 398 3804 7186 799 9054 5849 1865 9827 2924 664 9482 4154 9166 4245 4095 1245 7272 6886 6349 1214 196 1929 3997 7523 7634 606 1396 5569 763 7054 702 7430 9683 1696 5450 2834 3615 9057 9635 6199 3846 8998 3699 2244 868 6149 7344 9807 4465 9707 9268 2012 9470 1660 4688 1704 5022 3400 3102 8161 6344 8243 1945 4954 1159 9228 455 2065 9585 7037 9578 5411 4579 9960 3914 9414 6248 2075 7472 7382 1183 9692 5165 3857 8717 5123 1491 1861 9397 2776 7609 3138 221 1669 6465 2586 561 9479 6851 7730 318 3825 5702 1599 6739 3706 9760 3907 104 8287 1037 6690 3228 5587 8329 2648 2710 715 8250 1509 7736 5359 4323 2970 2708 5240 203 7057 7746 3455 4894 5582 66 7104 6662 933 5787 2621 9324 3079 3728 3703 1659 5052 2704 8217 2171 8022 6007 7589 8392 1551 8542 4540 3812 3480 540 8706 343 5391 495 6670 1028 8313 7778 1776 7374 1081 232 7269 7550 1757 5837 2248 5041 223 9256 4862 666 4183 1271 501 6446 7557 776 2496 7920 9203 1615 4195 637 2722 5372 8867 2921 9295 2702 7453 131 2907 1336 100 2600 8792 836 352 2219 5435 4263 5498 2752 4222 2158 3645 2374 764 7367 6086 1137 2872 2423 2084 2869 4603 2450 9813 4937 5305 2962 4073 7901 8315 9847 8385 1224 6671 7854 2703 7506 1933 6509 1973 7287 8763 6943 1777 1703 7915 3296 2978 2883 8553 822 3388 3800 4841 9198 737 3238 3971 8300 2062 2915 2848 3475 9485 8915 3658 2267 6130 9986 7176 2004 9075 2849 4190 8419 6477 8723 5071 1719 8634 6275 8362 7782 5954 1612 9639 1502 7447 6993 1191 8107 4142 92 2409 9299 7075 7848 3028 3575 2337 84 1494 1166 6493 9428 8353 2198 5150 5788 180 4438 6505 8709 8439 6001 6286 9354 1210 8459 6354 9660 3794 6617 3096 1270 8979 749 5210 2912 3390 1416 6639 525 9379 4847 5103 4980 1741 6413 8206 387 8373 8237 6745 3789 8062 6418 1917 8972 7309 1481 8882 9184 7035 7329 8457 4116 2484 7892 7102 878 6228 6256 313 8802 3300 3786 827 179 2595 4550 615 8148 6586 3815 5478 6405 5577 5483 2288 9612 469 6823 5326 6217 9802 236 1752 1792 2940 1619 6752 4165 1138 1606 231 7274 3331 2227 9687 9137 1233 6867 5105 4444 1567 1256 3398 6173 6489 8910 2973 9779 7186 5426 454 7575 370 881 9787 1030 1745 2125 7073 9880 5349 9449 3086 6220 8073 4742 5045 190 1049 7151 1672 8430 218 99 9144 587 5882 9659 4528 4688 4914 3055 9097 9762 3648 399 2 3047 2733 153 9889 8119 1038 9341 6545 1111 3375 9397 1393 8459 8458 5813 1084 7413 9095 1544 4871 6314 9893 7298 5491 7137 1959 2490 8084 9689 8542 3644 2464 3050 9783 9455 5776 2597 1646 5725 8002 3697 7693 8809 3139 5600 1582 4639 2695 9031 3499 750 3904 8446 8814 2058 1588 605 838 8536 1940 6703 1715 9766 4036 6588 82 6907 6442 5340 2745 1365 9456 5453 3296 2720 3802 5711 2618 463 8748 549 6456 6900 8476 531 5070 715 9571 8949 2013 1537 2513 2345 7328 5353 5586 4784 8414 1243 7471 3882 2652 5722 9109 7284 4979 7078 8899 8112 8227 3337 5135 5666 9984 288 5005 4160 3616 5917 9697 6209 1644 9755 6780 4768 1079 6558 7727 909 9154 8952 7578 8048 4864 7017 635 6108 6767 2824 7411 4366 715 2124 137 1309 3726 8909 9037 4562 8383 2365 7405 3240 3861 2991 1527 7066 1778 3357 4440 2454 7024 3186 6975 8814 750 1841 7577 7187 2997 6883 1414 7000 5025 964 2613 3026 4275 8415 8134 2883 2258 1240 4542 2670 7978 9024 3128 4738 1141 8473 9603 6659 8898 4119 3807 3324 8341 8030 8030 7061 5987 2467 711 7778 8025 3158 8100 3739 4269 914 6651 5865 8927 4664 685 1910 3872 7622 3096 778 1968 4174 3390 3504 7173 6219 5448 9648 2991 4288 6070 3188 2019 3474 2049 5619 1100 1446 2495 8379 3255 7980 5124 7302 7575 9692 9683 1787 1334 6207 3556 8994 2682 9299 9484 3347 9533 2595 6582 4180 9076 547 6866 2951 7131 6847 9387 3042 6146 6511 6694 6202 4287 2853 6317 9274 9848 607 9877 6540 6901 4628 2422 5203 2059 8962 1925 4327 8748 3863 4989 383 2823 2348 5229 7537 5123 2008 6822 4278 6388 523 5237 7164 5240 3927 8229 6619 5935 7730 8207 381 5627 7902 2197 1910 9624 346 2104 1031 7598 4033 4752 1201 9832 4888 6773 6954 9836 6038 3927 5891 9782 3437 6345 239 6485 1231 5557 8360 6589 6418 8258 3252 516 9215 8453 7568 8208 9617 3797 6549 7833 3895 7359 8433 824 8040 569 1357 5574 8902 8036 1222 6027 151 5937 8720 5730 4708 9457 2168 3634 5024 6528 5606 3466 6415 3544 6870 9130 5086 5873 5299 1028 6398 2029 7571 7710 7071 8827 3867 3968 6797 6373 2608 5393 8341 5365 2582 3878 309 4742 7490 8006 4767 5083 2081 5282 7420 8243 3827 724 4556 6747 6129 6439 5921 3161 3425 2078 5509 9813 4181 827 7734 6398 137 9840 7002 8028 1623 8702 1799 1170 3296 8184 7049 5372 824 6879 1274 9085 2269 1480 6701 1586 9540 8232 9006 4379 6417 5929 5316 9125 6072 9439 196 5885 948 7833 1493 557 2924 3052 1047 6813 5132 8861 8474 9752 9487 4568 6383 3148 9635 5784 2913 2509 7522 1519 7946 5646 9631 1384 4694 1725 9165 3776 6672 4360 5239 3321 9440 3134 2504 9611 1146 7829 3583 8598 2485 2566 3079 4562 947 1449 5746 1058 909 5326 5658 1256 4708 3148 7456 416 7488 9732 3020 2710 6525 7436 1594 8272 4986 9149 8338 7651 7932 9626 8687 9372 3579 6612 4612 2745 8625 5477 5316 3467 41 8952 2206 7844 993 3162 4526 9505 7526 3601 8610 6775 4139 3651 9060 7954 8808 2640 1018 5163 3634 8707 2117 2698 7876 9615 4595 2433 210 4920 9489 9696 8188 1688 7586 6330 8323 4630 7698 9228 9667 4712 4722 5992 1212 4028 5329 2135 5828 1828 1965 2137 56 4610 169 924 7428 9689 9467 6892 4825 4065 2323 1664 7508 4876 4721 3773 2275 6703 2051 3005 2311 5302 4503 7960 3489 2012 5727 7039 406 3730 1370 9392 1574 4219 4031 4807 3117 1230 1151 2747 8530 2780 665 1473 9356 7299 4394 7335 6317 4431 3099 6448 8887 4176 7540 89 2422 5827 5477 4122 5678 1101 4139 6155 5146 9659 2057 5973 5111 4840 8325 3940 6923 3082 4296 1300 3313 4395 7852 9830 6209 8827 7525 2173 2755 9208 4044 4727 3872 4347 4885 2030 6522 762 703 8859 1189 7609 2804 5881 9126 1724 1813 7374 7003 1125 5391 7237 6401 3564 6057 793 1677 9675 4110 4962 6298 3116 9273 5061 6789 7858 1207 3594 9174 6171 2489 6166 5789 9242 6640 1921 3361 7021 2764 402 1865 37 4727 8741 4723 8591 4181 9838 7900 8342 2540 1627 8706 1285 7947 1636 3388 148 2200 1224 4913 7574 2110 9697 1708 6632 8104 1341 3424 182 4029 7826 70 6884 1124 8381 4702 3008 5271 2725 8856 9200 9097 9286 8455 2980 3997 9674 5925 9808 2383 8832 1479 771 3266 6818 4965 10000 7264 9781 3544 6848 2357 5809 7966 5642 5427 2980 9883 3204 4181 8191 6825 2727 1746 5651 9481 660 619 2240 4946 3217 4136 5063 2339 1679 8586 2206 1954 2532 7039 2171 4299 4663 2959 3841 7002 8509 6266 9079 9413 4119 1518 1294 7129 8146 9882 8813 3865 5581 6806 2277 2424 3298 9331 3536 6850 8826 3742 9130 2879 1924 3308 9597 5737 7871 7900 2819 2449 7329 7337 3813 5603 3092 4918 3656 3012 3268 8143 3941 3920 8409 4284 4808 6367 6247 9798 1956 572 114 3836 5445 1979 4294 4875 7172 4396 7097 7517 4237 3190 6543 1259 3376 5845 5113 5515 9858 2459 4386 3604 8508 5777 7772 1768 1158 9196 4295 3995 3952 4430 5098 3728 7500 1103 7823 2329 526 9596 2928 8396 4216 8643 7397 1546 74 7394 7220 7914 6902 5646 2284 4990 6867 7549 79 1449 8444 2318 9209 8713 2670 5265 2743 894 1574 2975 5386 1599 2188 6878 5369 5282 5925 7401 7218 7708 8652 6873 2207 5038 6779 1173 3858 9962 292 4091 2049 5877 9609 1373 4793 8992 2440 6218 5618 3188 9442 7280 9253 9465 7861 869 8881 2855 7820 6651 6068 7804 2604 7700 592 9640 2813 8066 4942 3345 7498 4888 3566 4805 5532 8284 1842 7409 7958 5740 9989 8644 8012 3819 6071 2670 5460 2699 213 4506 7747 2939 1472 6717 5491 2943 2199 7042 823 8930 2841 9531 8107 8278 1960 6737 2259 1659 8727 931 8567 1142 5600 5120 1840 6920 8819 7127 3541 8228 8068 6792 8596 3521 2831 973 110 7044 3417 7472 7358 84 8768 9870 8569 9219 2890 7737 6007 4963 6259 6885 657 9056 6380 3591 6342 9090 9354 5566 2097 5028 8820 3807 968 1301 5729 5156 8840 5095 296 9038 5034 3962 3363 5969 556 6878 6619 1237 915 3154 1596 3519 8567 4807 536 5818 8684 991 282 9421 6077 6099 2905 1270 5039 1012 6636 6733 6357 1924 3683 6541 260 8331 8905 3756 1609 3056 8622 3515 4798 4917 5433 8463 9515 9601 5088 7307 57 3671 7747 5444 4443 5380 8372 3104 4564 1303 7654 8960 7970 2458 5842 2421 2351 4039 2294 7807 7609 3345 3955 6992 2475 1306 292 4481 7388 5451 6970 5988 6993 9458 8119 1572 805 1571 3130 5183 1365 3944 620 6491 2296 2883 657 6994 4808 1275 5794 6033 7769 1920 6025 2726 5871 2917 7551 8500 3791 5554 2774 9089 7152 8902 815 6960 4791 1793 1278 198 8286 2362 3206 6954 8381 4279 2238 1468 2468 4615 8918 809 3955 3429 6970 8180 6179 3457 3122 4826 8537 8264 1678 4840 6800 2478 1229 5872 6116 5245 6176 3387 9783 3268 1919 2037 4917 8647 2309 7421 5936 5035 9434 9351 1798 1931 6963 9806 4378 547 817 4462 1633 7198 9614 6641 3626 4333 8042 2902 1135 1931 2981 1186 2929 2182 8491 4755 5186 4756 2983 725 2090 3152 2866 9642 8947 3883 608 1637 4251 7817 7487 2102 2163 6055 7078 6155 9924 9761 5408 2028 7226 8523 9686 5432 7068 5589 6645 8205 3803 4703 2637 6812 3879 5270 8746 1923 7951 6654 5289 4938 1345 6907 3770 2945 7358 266 9600 6953 3831 2261 1579 4045 6367 5315 3857 8397 9845 5198 6610 6299 2426 5489 6932 7887 1410 4702 2019 4667 3849 4377 4406 3053 7684 501 9031 8395 4673 1946 556 1536 9321 441 6943 5753 2629 9318 3549 1044 8982 7185 9205 7167 9790 1189 3302 5999 3729 9815 1388 1083 4368 695 2741 5240 6129 2057 2189 6535 1720 3522 3694 285 2531 602 8735 5933 3985 9208 9437 1595 5227 11 3350 6150 4223 355 4935 2067 7503 3473 2128 7862 1771 8 586 4492 1902 8452 9325 350 9696 414 7685 9092 5235 6922 623 7509 6084 6614 8864 8100 1885 4299 1656 7620 5602 1341 545 4161 2620 3669 3457 1132 3675 5572 796 281 7199 6993 9220 2164 3891 3430 1506 9859 408 8081 6860 7048 2899 7037 1188 9562 7605 5642 1301 8674 2730 3308 4049 63 3401 2581 5891 3239 3887 4398 2720 4013 4293 4538 295 5785 3736 6921 4365 8707 2643 1884 8681 650 4759 3714 110 4833 5804 5383 2326 3504 6243 3612 1192 8495 373 4261 3778 4853 319 3562 7029 1048 2205 6723 2770 5111 9951 3575 9683 6001 3616 6981 9797 1283 8434 6420 8432 7342 4626 7809 2032 6312 2459 7629 3357 5547 4164 7177 797 4543 5859 1682 2989 5745 4296 157 1350 5110 3402 6511 4840 3759 8278 200 9669 4943 2307 6415 2666 4423 4737 9173 9505 5545 5895 289 7496 5268 5000 130 80 2632 648 6490 9977 3012 3819 6770 7337 7083 6450 2614 1388 7134 3337 9521 9429 1477 6344 584 7982 6774 4617 4540 4894 4317 9470 6700 3572 1750 2461 7399 394 704 5243 1347 5706 1729 4379 9464 8175 1580 88 8089 5301 3921 8885 9980 527 4132 9542 1074 2358 8218 31 6727 9580 403 8448 8519 2510 8414 6828 9396 5435 9740 2400 5742 8308 8796 5438 3538 2959 89 4339 4628 7148 7087 4007 2744 1211 4607 9656 5288 2977 24 6442 9378 9095 9596 3062 8436 8769 4046 5188 6043 9339 6200 8226 1190 5708 977 1102 3872 6796 2754 8144 7463 3311 4640 2958 324 9399 1405 3143 9601 2911 753 446 8200 8989 5305 5268 1603 8911 6597 922 4599 7134 7508 2680 1561 1666 7821 4622 2660 7777 5560 6796 9291 9686 4717 4682 3535 4124 6855 7740 2843 8104 3761 8942 9659 7294 4879 832 5973 6125 2429 4366 8422 6537 5781 6454 7267 5716 5824 4314 314 4790 3252 9608 6244 3017 1190 5113 3560 2862 3748 9948 2331 8896 3020 6438 1775 1891 6410 2967 8026 1451 2343 1025 9077 7305 328 8727 3170 2891 3991 6591 5978 6627 4242 1576 4173 3570 7347 5097 2120 6700 8110 5825 6712 6713 5464 3371 485 7761 6459 6936 1734 950 8587 7587 5933 462 4204 2004 341 6355 6104 2798 1765 3833 6757 3732 9017 5739 6546 617 3938 1107 1849 5414 2114 9334 565 9626 9129 7724 9424 2252 4510 6955 4104 8810 6908 7620 6913 391 6109 7014 9461 9180 9459 2423 2293 658 6441 395 1691 8361 346 5858 2599 8724 2359 9063 8147 7298 5812 4232 3972 6752 8332 7945 82 3000 8616 4121 1799 5020 4562 6413 9586 4594 460 1209 4966 6682 4404 3138 425 5860 7107 2310 2668 1030 2092 9279 8423 2772 1363 7580 57 7089 7752 8324 6871 7580 8453 5719 5619 2271 8573 2707 379 7533 5979 9271 1988 4291 3864 8644 1272 1080 8964 1867 8138 1458 8546 5666 947 3623 3482 1223 8156 4489 681 5285 231 4387 7922 4657 5012 9384 5970 3202 5831 7568 9746 3568 1789 518 64 9822 339 2997 8923 8773 9934 2842 4146 5339 7715 1016 8556 2005 3886 1928 674 3579 5126 374 6949 135 8290 8478 4295 9259 9897 8522 8205 8277 2717 8305 835 1977 5164 426 4324 3251 8924 6920 6815 5026 8306 262 415 3663 8629 30 5483 2605 5565 6442 737 7698 6104 9226 9734 9569 7251 6726 8182 8775 2859 1922 3629 1462 6373 7283 385 2176 3326 8641 5747 9554 5044 7019 8473 4384 7399 6022 2638 1159 7988 2589 2167 8851 5604 9071 8058 3159 1457 3497 4830 52 6485 4927 1830 6497 1548 678 9942 8711 8313 8744 6412 8890 9419 4 6410 2098 7912 1998 7098 6143 2829 3855 4509 2941 5222 5652 4613 5283 4492 1681 7557 2946 1954 5156 7190 6800 302 278 8715 9384 8661 4026 5116 1738 2606 6577 5641 9753 2224 536 7496 4603 7904 2673 8637 2460 437 3667 1728 2682 6965 3592 9860 7353 69 4235 2506 4735 7100 7975 1420 9524 3185 3096 8727 7901 3774 8059 1284 2967 5727 5784 3556 2398 4056 6354 7312 8436 4575 2869 9449 214 9803 743 7558 9982 3748 7839 831 5077 2275 8983 9854 1085 5806 3624 1162 6203 2877 9026 8719 650 7524 2467 7886 2197 3766 2729 6312 8499 9810 532 5019 3493 5609 9469 8870 9304 2349 9833 381 4656 530 5642 3432 9407 5497 8953 43 4869 2857 2267 9822 903 270 5276 8677 4873 5205 949 42 1600 3742 4914 6206 4873 6530 3649 9369 5060 9767 3128 8158 8249 7174 3265 4841 3749 2379 9504 1830 5711 307 4293 2636 4888 8326 1195 1239 2392 3883 9500 6857 1236 4182 9715 2562 1050 8041 6740 8200 513 9989 5428 9313 1019 2948 6257 8938 7289 2253 2793 2406 4380 6253 6225 8283 9051 9339 6062 2514 13 1511 771 2040 9976 8083 8455 4044 7412 115 9121 9862 5153 1960 178 3248 1850 6226 8968 8187 6186 7511 804 7737 1570 2460 5570 7903 2912 7344 2865 791 3720 4181 7238 3480 182 7482 3376 519 3961 688 6216 670 8262 7229 9148 4937 7477 3436 7753 8669 3679 2404 8510 4996 9552 6364 8490 1503 4197 6452 6636 1214 4115 6268 8965 1442 8911 3047 7007 2425 6499 7831 767 6779 256 6911 5779 9443 410 4850 9825 9249 6789 2738 1206 1838 4887 9656 8454 5136 7085 454 633 3665 5532 3952 6241 4858 9843 957 249 140 8089 70 9014 1157 2182 5909 194 5005 8753 1446 4691 6433 5557 5767 3062 697 6532 7875 8766 9886 5829 4806 4090 8887 97 3547 9471 1403 3471 8849 3814 5473 2495 2925 7886 3047 2813 3829 8370 9776 7926 1990 1425 3196 8339 763 8949 2225 7434 7028 848 8443 1071 3701 7906 8286 4389 6830 8462 8876 2306 7447 7210 6071 1101 8792 5803 8119 8140 493 8368 8751 3905 8720 7148 3376 7990 9966 539 1676 4496 9705 3658 3853 3152 2162 8288 5135 9894 8047 4653 6497 6755 199 4271 4547 6099 5694 3950 9107 3030 1602 8665 7013 7181 4128 7352 8985 5829 240 6316 1832 6728 7551 9278 3609 1926 2185 2424 9071 7645 4668 7049 6596 5531 5484 9455 7869 6919 9365 6746 1961 8280 2703 7185 6883 2286 503 6277 8133 2098 4713 8802 4947 3406 2179 1280 1455 6189 200 1514 1177 8656 7954 6989 302 5096 2621 1933 963 7684 661 6515 109 6908 5688 3209 7192 813 9903 448 5126 5406 2362 3282 9748 6696 4233 4389 5840 3723 4977 5595 8211 4637 9772 555 6731 6015 1438 8555 2965 7091 2510 9999 1017 4024 4132 319 3214 631 2413 6255 5171 6538 4339 5383 4885 7306 2945 2266 6166 9835 2277 8754 1215 6994 7861 5408 9993 3733 8892 3702 1855 7750 5583 7075 8344 782 884 5656 4890 6525 9389 4730 1335 9896 4469 422 1663 9560 8669 2676 6661 5812 7226 1664 4146 4590 5647 7006 8354 1245 7186 9643 1054 6399 1058 7401 2781 2262 884 9735 9560 255 789 7008 4997 6640 4696 5 361 1889 6728 4426 8841 299 2846 4391 375 6259 9495 7655 4720 2958 2270 6928 9893 8344 4905 4898 924 1835 7416 8766 5027 3624 7957 6808 7057 5906 2046 1000 5794 3813 5169 4616 8255 6404 5930 9011 1390 4436 1197 3916 2591 6707 3911 2153 4876 2363 8226 9835 6733 7440 4622 1251 9617 6854 6605 3449 8048 9763 7972 44 3464 529 6003 3543 7235 1406 4084 6218 7227 6964 5708 9010 3671 6027 9144 3076 5750 86 278 5370 5650 5101 492 2392 3361 8812 4641 9199 789 3776 2358 7615 6321 9986 4702 9701 3946 2928 1784 4078 9867 9397 3519 1495 5350 7993 5110 2330 6760 3200 5663 7715 6652 8321 672 4106 5822 7348 1148 3364 699 6864 8269 5449 269 3314 8650 4023 5995 4377 8960 9875 4176 7511 6247 517 6751 6609 8288 7272 822 986 3828 8773 4906 3073 9157 9098 7055 7130 553 7360 9901 237 6194 860 3993 4508 9140 9852 247 4388 3818 8307 7299 3432 3325 3259 1218 158 2364 4177 1170 7476 8811 8910 1929 6702 2854 476 2364 5232 4329 4333 5204 7942 2786 9130 5940 1573 4177 8452 2278 5985 2921 8597 5286 3885 2431 8868 1067 3049 8981 7537 9819 2070 1549 2082 1667 7732 7915 2018 8971 6011 306 7269 7352 7805 2213 3153 2474 9040 6344 7866 3965 9239 6214 2646 1675 9045 466 1468 3410 2708 4104 8732 2616 5032 7172 706 9190 7047 7467 9961 6645 1588 6840 9119 8140 5 7017 2825 8138 5000 7103 8399 6115 459 1776 8001 6272 9194 9319 9195 3765 4436 8316 9605 7447 8287 6715 7324 7388 9143 6513 5508 4832 6758 4113 3653 342 9181 8892 4986 8548 4878 2345 8379 668 8157 7992 5175 7455 5968 5003 1691 7096 1167 7816 3309 3530 9758 5021 1261 1811 2310 6469 4969 8519 4395 9943 2186 914 9732 607 5085 8334 5796 488 1099 172 505 5051 8663 8720 3815 7359 664 3102 7608 5867 4950 8722 6370 940 7923 9759 6862 9429 2049 3186 5794 1427 2335 8921 9012 1164 3685 7703 3240 6784 5278 4760 6297 5082 5371 939 5645 4415 9295 8239 1745 3465 3169 5045 4310 8806 367 5216 9837 1854 5398 3348 5298 9651 7846 3505 625 1850 8824 564 6819 9264 4874 7112 2869 8119 5460 6823 8946 7534 7948 1527 9570 262 2029 142 7403 6208 2077 9550 337 248 9320 7605 9485 6332 4255 4113 7994 4661 2262 8862 6587 3371 2666 6238 8856 5710 50 5592 8321 1034 5347 7437 7935 2782 6151 9563 1474 9126 806 7877 4915 6555 1372 5396 1718 2229 7715 3805 5939 2681 8571 5245 5480 8 9510 3435 795 6882 7503 2244 6498 4779 3179 7933 3668 3101 9231 5418 5461 6718 761 3873 5651 3488 6134 7527 139 1862 7252 189 6917 7040 7187 6990 5711 6821 6309 9001 4632 5911 8326 4551 3584 7270 2407 6717 6320 981 3521 7324 857 9939 6539 6166 5003 568 3100 4698 7758 9037 3190 9860 8305 7890 3184 6226 4648 7226 4985 5272 5279 9971 2914 5614 1956 8769 7205 2088 1820 7453 8270 64 7748 7925 9527 8599 2083 8721 7974 2162 5419 3031 3217 1168 6191 3232 8302 3900 4322 5698 3354 7538 1494 3716 3165 7138 1077 449 6757 274 7932 4492 250 3994 536 8445 268 5376 8948 183 8072 1239 7019 639 4565 7873 6429 4471 6069 9041 7051 5858 4573 2996 6071 9850 3216 3491 9712 1609 1993 4522 3338 240 2200 6854 802 5014 693 7480 775 2682 3242 1634 838 3550 1351 9687 1002 3310 3947 3465 8730 8983 6390 4395 3954 4881 6341 4924 4730 3209 4955 2061 1874 8026 4255 5128 4995 2834 6892 4580 8998 8261 7577 3679 8274 9834 9884 5280 3839 1805 6117 1299 171 2095 5883 7331 3930 774 2239 1523 3172 6725 9311 2083 978 5326 1924 5032 2148 8499 848 1611 6954 217 987 4267 7174 4188 9962 3733 6514 1679 1768 2765 9018 8219 7079 2164 2347 4903 4629 3874 179 6404 7446 6496 7682 7434 5193 3552 4015 3877 4236 2486 9399 593 160 7553 1756 2880 3550 1404 3471 9171 5868 827 3157 7523 631 7361 6302 3906 8821 7794 6457 4231 2129 7199 6691 5615 3628 2705 937 335 7661 211 8363 5539 9972 3204 2238 7655 2395 9968 731 3944 5333 1002 2561 6999 8123 8753 5276 928 1685 7579 2219 6373 7668 6560 1813 1669 1904 4586 49 6256 3443 8801 4487 3862 3003 1962 26 6540 5586 9943 5637 118 2079 1384 4474 5854 5875 1863 6646 1634 2073 5064 2924 9497 394 1583 4200 8235 4488 2537 2436 6208 1618 5672 497 3134 6893 8797 2047 4652 8665 1785 20 6482 2542 640 7329 9064 7741 5749 6041 4454 5733 5268 8489 7053 1636 3430 9781 2838 6333 9527 3290 7400 8688 4980 939 9084 6636 690 5160 9248 6242 6137 8704 1843 8038 5174 3800 9919 1147 9344 4297 8405 3631 662 3589 3180 2170 2230 7147 6763 8224 5771 4880 9362 8198 1396 7075 3201 1550 5838 9510 6339 1847 315 3329 6047 1895 616 1439 8268 8466 3076 7203 910 9645 9620 3655 8845 7808 5079 7337 9091 5514 7047 523 2862 9349 8159 9925 4055 8458 4633 3033 1735 5579 1608 274 5213 6422 9296 7582 3099 9058 7559 5228 9884 9938 7093 5742 7186 5646 700 9395 2133 5694 8359 3032 3706 3843 9754 4933 992 7345 2272 1609 4641 7668 9501 9771 1248 7483 1991 9207 6229 7883 310 3545 2487 225 4516 7536 2030 4921 6913 6178 6890 2022 5033 5478 5356 5669 6269 1006 2640 2220 7998 3365 8741 1870 2877 4545 2106 7778 652 2117 6408 8135 2534 505 2622 2281 8461 7998 895 3585 666 2928 7891 812 9821 4791 9023 8290 4706 7789 9571 2511 9380 6220 8759 2200 1588 8065 9715 2228 3925 1666 6754 8780 6932 7910 3752 480 9873 6120 1708 1781 4810 2775 5072 6023 858 5072 407 72 7382 7065 8611 6534 2972 994 9840 9456 9048 4201 5667 9296 5928 5386 763 2834 2358 8935 2515 115 3492 9615 9055 9194 2831 4273 8885 814 7197 7893 7873 5256 2571 9900 1133 5110 5702 6725 3758 3116 8178 6600 131 2543 6674 9392 6257 2169 667 6240 7812 2386 309 2583 3306 5260 2251 9946 5197 5690 9064 3274 8082 9280 6273 8219 6604 3352 6040 7423 7235 7855 911 3145 4631 8652 4052 652 7 6953 4452 7397 8017 5462 2384 1202 8208 1011 9779 97 1230 4544 438 1613 855 2153 4538 3130 6107 5130 2930 7828 8380 2668 9732 72 1288 8750 1296 1469 7473 5547 8551 787 6988 5437 6794 385 5983 6908 1929 7356 6771 9307 7269 7202 1537 4578 1596 8537 7430 4878 6940 7727 5586 1741 3890 5005 4248 5510 1249 2140 2671 4599 7110 8760 4949 2893 8706 1685 5281 359 1792 3072 4854 5748 9750 7598 4268 5638 9274 1059 8722 3868 4086 4438 539 9509 3194 5911 108 4790 6414 6573 6517 6267 1443 6423 6665 3192 2498 2085 6468 3987 6666 8187 9928 5617 838 3021 8019 2813 2937 9646 2449 4664 5689 8018 6769 3341 6370 3357 4345 6728 8923 5846 3010 8248 2901 6247 8284 3671 5610 7794 2499 9516 1056 8460 1066 482 2771 4721 5833 7169 6079 449 6476 311 2640 9934 8363 9567 7474 3483 9805 1934 9784 7044 7803 3549 6672 2515 2568 8303 7090 5541 4546 305 5828 1483 9892 8846 3187 5265 3407 9569 8849 3688 555 4952 844 4493 1370 6030 9263 5420 3632 430 5052 7162 8808 2336 1116 6540 9217 2255 1031 9984 8052 2527 8395 934 2409 9019 6046 6185 2849 1530 3645 369 2295 7090 5787 4990 4653 9841 3122 3526 4479 3107 9933 5801 5378 4271 1997 128 9812 5398 4161 1581 9674 9016 733 827 8986 4495 9699 8180 2622 4225 9068 8692 2751 2761 7288 3567 8557 8809 8792 6830 8425 2127 1671 1184 2560 1607 5597 7792 1134 3974 3731 9265 5769 871 2449 5347 9368 6512 2734 5771 1875 1440 1234 5712 3070 6796 9556 3228 3511 5834 6885 2341 5171 1444 6997 3412 1149 2798 6578 6907 73 2989 8641 2726 9753 9346 101 7332 8066 9753 4485 619 1482 8299 7958 2576 7913 5623 2508 7678 3936 8079 2881 3440 8581 6453 9535 801 7922 7103 9901 7315 9608 8010 8373 7296 2834 848 4677 3285 3375 545 6229 9866 9078 2482 1659 6900 6584 9649 5847 2822 4652 2701 1037 913 1720 3118 7548 3852 1202 5466 5606 4955 6076 4088 5745 9057 8352 5230 7313 7375 6115 6638 2361 3376 4306 3794 4362 4921 8621 2535 2502 881 6059 2457 3574 1897 5985 8744 5410 9820 5432 4934 7835 5224 9384 2234 2020 9913 6823 1153 124 4742 3929 1649 3714 4529 7296 7754 4390 277 3705 9357 4739 5192 6470 5811 4 8007 8893 5972 8079 9592 8017 6589 2088 3972 5048 6846 3201 9831 5924 4198 2732 3522 8925 1116 8687 9372 6488 3892 5866 1035 5018 9654 6485 9113 838 5977 8320 4799 6212 7802 3723 5757 2115 2354 6529 3487 7262 6797 6356 1014 3808 3233 677 6331 7167 650 7229 5113 7484 2684 3003 9140 6808 9541 6140 2625 436 4064 1548 7502 4705 7731 3977 7459 6437 5985 6761 4706 7405 2695 6405 9323 3109 9768 5295 3382 2594 2831 8295 7702 3502 8959 8838 2086 1397 6925 7859 5691 8657 5619 6763 9715 4811 1915 5404 4402 770 7092 7627 5990 6048 6462 3323 1084 8235 4187 2087 1230 9091 6949 731 1465 1133 6012 6422 338 6322 4379 7256 4738 3385 7573 4537 9561 9754 3671 2601 4448 9670 3687 363 4939 9107 3200 6672 143 911 3938 9126 5756 1901 7069 5983 9854 639 1289 849 978 721 6078 4366 3946 2421 5596 1705 2545 5932 7225 5820 5215 3078 6551 9906 2216 9875 7554 3551 5153 3082 3605 9586 1820 5419 2060 5560 75 1266 6170 9517 2237 3966 4351 9607 1477 5899 9428 8353 3675 597 2031 1215 6810 8344 577 3799 9370 5638 1413 4295 8836 6819 7787 9543 5696 8779 5024 4009 9206 1942 8959 4840 2472 9895 4847 741 689 9433 7526 7225 24 6811 8842 9729 8670 936 3624 3795 9921 9299 2954 93 4564 8873 4968 6500 8523 3341 2462 6980 4696 2779 5064 505 1418 8467 8340 7687 4117 9807 7492 4402 2989 3809 8588 4269 2205 9669 2725 763 9535 2974 9972 6435 1971 8276 1624 390 521 4994 2807 3842 2529 3841 2594 5107 9724 8975 8239 8945 1569 4502 6418 7916 4115 9099 2141 2261 421 2052 344 4051 6300 6972 3340 2940 6439 1340 1809 4220 4401 5797 8797 3457 8193 8905 9514 6721 3568 3615 6516 4599 2898 6475 9601 6897 2552 124 3791 8288 14 7756 6762 1637 5445 8403 4739 6039 9986 3307 3954 2943 4608 4100 8008 3787 4365 5502 5278 7209 7603 968 6624 4017 6714 438 8414 7606 6153 727 6315 2488 5722 278 9585 5125 3692 6009 2843 6536 1258 1174 454 5012 4695 7564 1793 7821 3710 9196 5632 4326 1903 6595 710 3944 9838 651 49 5508 7680 4624 8880 8621 4303 9639 4901 9737 4898 3018 2720 8378 3003 4557 1133 6422 4007 8236 2987 8808 1763 7381 9011 6619 1406 7230 \n8539\n9934 5376 7335 2140 8486 6258 929 2467 9208 2389 5950 3400 7363 3957 1669 8615 6085 9136 5123 3749 9980 3181 723 954 5052 2103 5265 4278 9559 2201 706 6806 3326 1776 3726 8748 7805 5967 2891 9904 6524 2938 7017 4465 5586 8482 4546 9083 1690 6585 2840 1629 124 2003 8741 8888 4841 7949 9949 4268 5188 3280 4806 5077 4619 8218 2660 4414 2161 1581 4392 628 480 439 1574 5423 6901 8665 6165 1676 4289 2873 7204 5763 3756 5257 3605 2110 1112 1989 8713 4819 3681 8674 124 7961 9754 1480 6048 1303 2412 8162 7994 2885 4374 5600 2761 1515 7429 6659 1754 8101 6094 9829 3451 7764 3281 5071 7239 2175 772 5832 4966 9840 6084 5366 8118 3901 9953 5418 4115 213 3755 8552 6606 3521 7530 4322 8440 2534 2211 8959 1169 7748 3632 5026 1919 3923 1453 4874 8547 4534 4077 6620 9875 9691 6144 7150 957 5830 7996 9749 681 2066 292 4316 1493 2107 4572 5220 3655 8171 6950 6853 1799 9239 545 1801 6507 8219 254 7966 5691 9082 7789 1541 7191 9076 4931 5687 593 3319 710 1550 6525 9860 6057 220 6244 8789 5905 5115 9820 897 9161 3714 789 6723 9681 4123 8622 3827 9120 3150 4449 3918 3705 579 716 9644 1190 4155 2957 1795 8155 7511 7046 5752 9051 4989 5167 7774 6311 7015 8572 1971 1750 8559 3318 8358 6376 1644 525 7005 3742 5707 8235 5730 7141 2599 630 668 515 9815 4371 1620 6341 6945 1326 5153 9579 9706 9133 9173 7038 9631 2641 1189 634 2621 8604 8155 3218 2598 420 8154 1189 5203 2833 5086 1322 3694 7842 434 4763 4850 232 8377 3446 5573 7643 7331 166 3668 1042 9589 8452 6418 6124 7964 238 3485 4296 3002 1065 4738 5228 7808 2141 5347 8596 2545 6462 5436 7585 2794 8042 6241 9216 2959 2803 910 9165 3481 1649 6262 5734 2972 1461 2205 899 6963 123 3348 4240 6053 8484 9918 8972 9613 5722 7447 9983 3778 7778 3862 512 886 8919 1997 2690 7872 1539 8880 3136 7943 5259 1381 7991 8134 900 6616 2729 4867 3206 4423 7902 3463 9940 5463 6148 4170 2816 9403 5834 3047 6962 9093 6593 8586 23 7013 3420 6818 1111 7207 9668 1621 7846 9572 1574 4023 488 8510 3166 6342 4580 9691 8265 9546 3094 9225 8137 7496 9616 3200 6153 8143 1718 4515 5133 509 2231 5812 8604 3760 5958 7093 9722 795 4193 2316 8475 5255 4606 3828 2445 2158 4384 4071 1355 5319 9442 3715 4864 5176 2543 82 916 8993 8591 2305 2207 4201 896 1591 3961 2154 6041 1069 5322 4471 4383 6604 7565 8591 4275 1751 9820 1708 2901 320 5542 617 4226 8160 9635 4273 6540 7412 6504 1845 5526 1532 5919 6984 8698 4680 3604 4097 896 8102 4424 8966 8931 442 8986 7603 870 857 7007 4858 9379 1320 1682 4770 6132 6524 23 6843 7594 9205 9290 4473 8342 9883 6533 5521 9665 9783 2628 6900 1516 616 2037 6503 4803 8047 3511 8635 237 4480 5946 7437 6054 7544 5234 3811 9381 5644 7041 2935 8727 2080 6441 8840 4412 5146 649 5328 4885 1850 7571 7601 4809 8582 4652 2897 9991 7452 2726 8169 893 3933 7339 823 1973 6519 4400 4802 542 6962 10000 3832 4986 5538 8249 8125 3450 6629 4852 2547 3823 345 8395 6324 8200 3345 369 6185 9192 1248 5407 8683 8087 2180 6819 8978 4322 4490 6915 3700 2831 2509 8832 2396 8936 2535 3705 7938 2693 4050 4202 8176 9151 5868 6081 1303 3145 7739 8560 8552 5751 849 1796 2041 6889 60 6664 5101 5859 6273 702 9611 321 1630 2959 7760 8124 6290 8313 4089 6322 6807 362 8172 1812 4933 850 8740 6755 3035 9046 6108 4975 2288 302 3691 3365 9304 9574 2078 7963 385 3608 5622 9295 9117 1474 6090 1432 9701 549 110 3571 8969 9120 2454 3032 1327 8471 7739 1563 1270 1691 3934 3039 3084 3311 8585 3995 8040 2710 2083 2235 8693 467 5503 1364 2122 8425 9706 2064 7921 9809 9165 3874 5600 3933 1903 3673 8593 3959 6142 8681 7819 5295 2737 7593 3949 2985 951 1427 3795 9083 2501 3076 6888 8884 1301 8221 6868 5210 8993 2551 9452 9147 7351 6636 5729 3242 8663 7631 1797 9377 1840 3932 3003 5416 4111 4908 9884 1964 375 4473 1537 8446 3522 4252 8332 2794 5184 4607 191 237 9695 9352 7179 1807 3154 5173 8941 2328 8255 5725 965 6338 4270 404 9194 8083 5013 4445 9574 3179 7066 8204 3698 2711 848 1362 758 6189 9056 8609 4620 1112 7727 8120 7916 4208 226 8409 2973 7818 5361 4794 1667 1471 9293 5431 2679 5591 2750 3378 5253 7428 2656 867 5857 3210 4110 2211 9662 2142 8339 5506 1204 8473 7972 838 6652 9471 7691 2512 1095 9534 8649 8943 9938 8960 1691 7972 7467 9392 8565 7190 4893 1177 8069 9924 5139 2314 4017 1839 269 941 4703 2340 257 2378 1246 1440 4464 8376 3974 3168 5847 1925 726 4908 1197 6179 8637 6680 1966 8144 6134 7108 771 6875 5568 7430 6899 7805 4612 226 2071 6665 8235 6947 296 8611 3316 1323 1146 4617 3173 8984 9128 5851 1857 6833 9810 1765 6864 5490 9754 3741 9580 3490 2744 7149 2202 5637 3913 9427 2899 2053 7885 4498 9400 8118 1733 9336 1965 9794 6930 5387 8221 7866 4641 8608 769 1301 3974 5457 7123 6716 7533 5240 8901 5446 6925 1159 8448 7985 8828 768 6345 5816 8075 6257 7793 6430 1241 2581 2822 3667 426 7719 1154 3623 1758 9141 2473 769 7517 363 4839 2622 7252 6658 847 1263 8682 2700 8384 3467 694 7054 3416 3538 3903 8427 578 8987 5565 9187 5057 5010 3748 6799 1045 712 2109 4882 8128 9969 1181 200 4738 2296 6992 1432 1137 3635 4217 5093 7862 8933 6376 546 1525 1044 9696 3052 9073 8929 3864 8313 4103 7641 5465 9647 6142 8404 6408 2509 6445 708 8956 5196 8810 5758 6757 4951 6045 472 3652 6334 9335 1656 515 1111 7747 386 4005 6696 3361 8419 4615 3018 5566 4097 5569 8119 3165 6935 5474 5960 7806 7875 1700 8747 3295 4153 3750 4458 2024 7582 8313 3987 9851 2041 5495 3205 1672 9643 9997 7696 1843 8943 5438 2711 3636 2742 821 3028 7895 3316 1922 2136 965 7993 7479 6999 8201 338 9837 1715 3585 6418 9381 2184 7748 4823 9995 7662 9859 2215 7216 663 1229 1806 6908 331 7925 5983 5872 1990 9166 7727 2837 6595 856 5444 9845 6966 8072 1002 3123 1503 6169 9934 5152 552 9464 4030 7121 2968 943 1774 416 9138 6780 7836 4095 1173 1074 4291 4189 4310 6645 3906 8111 8744 9430 6369 6820 2730 751 4806 9572 4299 7432 3126 4404 6673 5797 6443 1944 8771 5075 9287 9355 1660 4492 8016 1430 4006 9838 5149 5351 6471 4425 5581 8613 7907 2931 4922 4972 5350 2924 4270 4381 5920 560 6238 4708 5625 1013 6247 9091 3212 9778 7149 2096 6266 9405 9474 7510 9886 1344 5750 1283 7675 5063 4482 2556 1229 9297 2619 6253 9583 4583 5256 8204 1073 7982 7719 1301 3100 7152 9175 444 8876 4289 5467 3956 9880 5472 886 8050 1948 2122 7274 9338 1762 8505 8764 778 1846 313 2563 4485 6048 7272 9580 4032 1820 5696 5579 8258 5445 8012 9113 1707 7318 7443 3376 1308 9610 4254 7456 4035 6925 2622 6470 722 2155 952 8416 8960 1494 6875 8204 7626 2652 3704 5753 5803 776 3496 5164 7768 9026 1037 7398 7709 5173 3978 1846 2745 707 5157 1251 4604 4345 9691 3191 5615 8352 7125 3745 2791 2020 8332 8526 4930 6307 7234 59 1616 1241 6688 4669 9361 3022 7119 1314 5297 5575 7441 1946 7176 8083 1587 3814 7564 2977 2284 4612 3066 3190 95 8108 5306 7415 1496 9561 8896 8774 9140 5773 5609 8490 301 3716 1290 1969 4354 8277 6802 9583 6229 3852 1067 7464 2698 9747 7772 4455 5233 1687 5896 8726 8813 9594 2275 8414 3772 6336 2295 4256 9477 6201 7715 3401 9170 4971 9534 1392 5139 9006 8703 5865 2542 8213 112 2984 6940 4205 3332 4195 5916 5409 8371 770 3801 8961 8007 9258 2252 4101 7696 4509 8787 9911 1463 7759 8507 3022 7709 8752 4535 9678 389 3625 7571 6351 941 9891 8863 501 7618 9435 3415 7204 9183 7333 1147 4239 7543 9129 4397 8509 949 710 8504 2888 6199 6655 8705 1120 4997 4150 3931 3608 509 8402 2080 4929 5041 6845 9366 4579 7717 7076 781 6139 3533 7558 1943 7705 4875 1603 4495 6418 3210 4332 4381 4983 7544 2709 3588 8490 7683 2714 7439 4116 345 734 9513 9707 9454 7738 4919 4243 8114 6150 8281 7056 819 2021 6417 6419 656 1764 5620 7550 8136 9975 9978 6696 9624 9148 4439 8909 1482 3081 9227 7663 5671 6054 1211 3081 7514 2885 1728 6551 7951 1519 3598 6658 6303 1144 1256 638 1314 5808 9309 3673 16 8882 3741 1513 2465 5370 7010 8202 3817 1476 2809 2664 9508 3895 7745 4553 6403 7912 9449 8315 7946 1593 7531 647 4736 3958 5754 2872 1815 2365 5311 4991 5361 4272 8688 9122 2617 8136 8430 9887 6713 2528 2014 9062 3034 7724 9007 5438 8326 697 6839 3792 2428 5100 6882 716 8441 760 4977 5536 437 8093 9929 3099 705 1088 6801 6486 4764 7738 2052 3833 3163 1578 2242 6729 1713 2160 6072 1233 1252 1066 40 7663 5002 8496 7449 9575 4817 6119 1292 4442 3546 892 7105 6585 4971 2716 6188 1262 4920 319 2736 5458 6057 8163 8170 32 9272 6970 3048 9481 8708 1019 6041 2346 1903 9111 3834 5985 292 6773 9359 4877 5720 6658 2955 4326 9384 1590 389 9214 8575 7136 7034 4164 2799 5909 9528 3987 9649 9905 5826 1109 9565 9481 3535 1978 1533 5396 1247 8953 3689 3810 862 7118 8439 827 6979 5811 6672 4361 5635 4112 1777 5391 1913 3449 3300 4557 3214 8713 2343 7554 8492 7061 6247 8152 3724 1231 3729 2044 6982 8812 8391 9516 2307 1446 5518 7190 3044 8138 146 6118 8389 9880 8119 7127 8728 8478 7057 4581 1319 8903 3536 4439 7731 7203 7671 5924 9935 7898 5344 5201 508 8034 169 4788 7820 9597 2647 8456 4799 8152 7094 7979 9749 277 7830 6908 2847 1614 7806 2734 816 1547 6048 4856 1934 1924 6285 2262 4792 635 2570 6462 943 2221 2757 7545 8955 9357 3436 4852 4475 644 7852 6685 9614 3939 7386 1026 397 5442 5877 2012 1074 5947 4768 9832 1470 7735 6214 709 9845 7728 667 4212 22 6287 8086 5652 4022 5577 855 2925 6387 7584 4504 1009 7925 6210 9820 7744 7929 7318 6446 2546 6297 6469 6709 317 6740 7109 5228 1559 7409 3065 9342 2184 8785 6871 4649 6132 2298 334 138 3501 2613 2779 714 5685 5708 8126 2041 1949 9294 931 5100 8021 6198 3803 7913 2431 2735 4939 2005 4441 8938 8002 999 9580 7039 2558 9267 1485 8111 236 5051 1598 7511 34 1023 9016 6236 3420 9752 3270 5558 900 7990 6732 4760 3979 2651 7104 445 197 8310 3705 1674 38 4457 5162 255 9623 5673 334 9647 1485 6059 6071 9956 8241 9814 812 4113 3205 8166 3515 7790 6930 885 3347 5771 4127 4447 3928 9657 9578 3734 3925 1701 1530 3772 6612 2342 8445 4084 3311 4537 8128 8010 8321 5269 1511 1761 4011 1821 4954 7191 182 9577 2125 6474 6332 2587 7348 9432 6657 490 4012 3911 1851 6237 5732 5650 801 5210 6840 8443 6648 2384 8696 2894 2062 8877 4713 7744 6230 1345 2181 2828 3431 4800 1789 8182 9855 4581 8274 5151 8365 2668 6647 6758 2398 3936 4525 5922 6069 247 1297 5199 5953 6912 4582 6640 5320 4673 5407 9387 8934 8421 2618 5282 9318 7772 3348 2009 5449 8927 3133 9712 6614 1648 7819 7694 9506 3211 7870 7516 8428 4075 9998 483 6963 3934 4473 7998 6202 4316 8567 6150 2310 8583 7657 437 2249 3736 139 8406 6295 5229 2046 6779 6919 8448 581 6670 4603 6247 7544 9967 8768 2217 2328 7898 4304 8139 881 4518 5112 3184 1841 2189 346 1632 4381 3857 2124 2511 6086 3967 6636 6608 3431 267 9401 8952 130 5923 5243 4364 9696 1961 9339 8643 7426 3905 5386 7480 9369 4557 337 5731 4676 9885 992 4582 2360 5143 3218 9212 1101 4696 6816 224 7854 3276 7506 1336 6569 788 2745 9328 8636 8013 2283 2465 6033 8578 5864 6966 8359 9205 5736 59 3485 9546 5396 7460 1216 4718 8765 4733 8649 7756 4318 4059 7399 7657 5754 7637 8378 4246 9177 1550 5044 3624 5162 6300 5411 7048 7027 8102 841 6785 3496 5835 6679 661 2028 7737 3689 4939 7817 7296 5573 5490 9581 2112 3540 6585 7183 6991 1731 5749 1150 3626 8732 2258 1569 5600 3838 4808 4798 1799 3678 5117 3711 2954 5037 537 6422 1531 3457 8869 87 5293 9432 3580 1091 4756 1932 5234 4342 4892 3929 883 475 3882 6569 500 7230 1182 8247 4122 7448 8181 652 7003 2793 7317 4216 7458 2674 4796 8477 4187 732 7268 2634 3768 1536 4276 6525 7117 233 5193 2641 3738 9748 4440 8505 2814 59 4044 4888 6042 6993 3635 854 789 5318 6400 4402 7675 2600 3016 1582 8644 5363 6481 1618 273 361 8528 4980 9590 8306 7072 1021 2830 786 9027 4068 4097 6530 4523 5313 4705 9865 3174 7905 661 7315 3933 4808 3130 2530 5948 290 1073 1967 1653 5964 4759 8699 3826 9350 5109 6210 9807 4655 7685 1984 8320 196 1793 3882 2240 8757 5328 4901 4451 6334 6645 6271 2064 1098 4218 9334 747 7897 976 4791 1511 1151 1064 7726 5309 3367 1115 9347 2893 6488 3214 2229 1097 3066 7985 7394 186 2367 4044 412 8399 4077 3670 5475 8096 9585 3999 1520 1404 4709 6760 4755 5286 9708 2279 3819 2056 929 7488 9491 8910 762 9493 9744 1294 7868 7972 5581 3076 7524 3894 5758 331 128 5273 3996 717 9449 3218 2083 3021 9121 5112 9695 3976 558 1321 1437 3928 4865 9278 5883 2516 7259 2402 6226 905 950 6430 2554 3747 5897 9417 1517 988 8497 2261 7294 5633 3222 3210 5640 3274 5066 7262 3481 6863 8777 4 2126 8335 9866 2075 2593 1037 7997 7582 7117 6353 9145 4782 2649 6295 3681 7998 9512 2770 7121 1755 9293 772 4499 4340 455 5607 8761 5753 4287 1188 8447 6789 2876 2968 320 7875 7727 4016 8180 3580 891 3783 6226 6767 4405 8555 5165 6721 3607 974 8989 6621 9004 4994 7896 7091 6059 3830 4492 432 584 6859 109 2821 3612 81 7509 8129 6564 8667 5412 6539 4665 2644 8984 1085 9875 449 3888 6255 3599 2315 6337 6030 964 6448 4670 6595 2252 4579 6026 6300 3921 6953 9306 4343 3414 177 4675 2299 5407 7673 7238 6698 7653 9387 8773 7929 2684 2793 9153 2694 3735 6512 4101 7936 1392 9118 6433 7370 9401 3895 2999 4134 124 4544 5702 3575 558 4834 3070 9349 4659 2300 5871 3854 3902 5216 7864 7457 4967 7548 2475 1235 4815 8473 5082 6010 9929 8270 161 6832 7406 382 1589 6190 7891 4951 4767 4925 2787 8340 242 1746 3373 7670 5835 431 6526 6936 8734 5905 4906 9827 9290 59 7773 490 1655 1979 9932 1909 9946 2670 9903 440 2510 625 4114 2738 9018 8919 9481 4217 4595 3200 5849 5127 3621 1466 1314 7599 5667 6843 7537 1658 9178 6523 4740 7224 8023 293 4509 9230 4466 5728 8479 2773 7861 9909 8009 4298 4453 1284 8646 6353 4457 2338 2649 3242 6603 7631 6917 5971 7708 5125 1420 5862 9939 9261 7451 1585 9462 6738 2284 6368 3065 9642 6125 8539 5863 6239 6102 3477 9770 9830 3074 8525 8248 5286 1379 596 1223 4431 563 6779 9351 2182 1878 5575 5378 1496 1287 3732 7572 8853 1826 451 2584 4904 3217 5286 5268 9991 7323 604 8137 8955 1086 2887 102 9794 3348 5002 7150 7759 8169 8795 6539 7097 2374 343 532 246 8753 991 382 9408 3822 966 2806 8738 4038 2703 1080 5300 9175 8275 2290 5019 8415 3985 4405 8612 7648 8170 4556 2503 4093 1697 2543 3106 6479 4816 7599 6344 9980 5590 6222 7875 7961 1360 5231 696 1989 2294 6115 2974 7455 9963 611 2051 315 3353 5896 630 1346 2839 9861 6823 3178 6325 5146 896 5038 7844 2163 8322 1103 695 5898 7650 6451 1757 6827 2858 9708 8979 2443 3448 7232 3124 5663 2137 6813 3117 1047 6898 6759 9852 1471 3612 8711 2355 8268 2876 3598 3167 2674 7914 8276 200 1395 7081 8110 5363 8539 6408 1190 3862 8082 4496 2763 319 9647 727 5684 7828 8807 8301 8935 8672 7237 4380 9771 3840 2627 4271 5484 8190 921 6561 6600 5824 9824 7896 8074 7219 8939 2788 9765 1828 5643 9768 6358 4128 5723 6481 5678 2763 3707 8997 3385 8230 7164 9759 2966 6994 9880 1494 2083 2713 9344 7286 7923 999 8770 1150 7751 218 9045 7909 1706 1951 8226 7737 3459 1269 4678 4614 5683 9081 3348 5198 599 7089 4882 6485 9209 4727 1631 3099 6358 17 65 9686 5781 9287 3176 5421 3302 8343 4088 6509 6547 5924 8161 5002 7533 1339 3164 7153 582 8242 3356 7682 9553 2051 6445 2900 3480 6239 199 1679 3242 4465 2525 1333 2695 6045 167 3601 8031 1025 4782 1988 7581 4451 3069 3125 6496 4993 9949 9273 7829 5540 8473 2464 9391 8311 3508 2252 6981 6525 916 6389 5353 5428 9030 6409 9125 5498 4590 2812 7509 9088 4133 1349 2238 6036 2822 9199 5119 1327 9468 6014 3788 5978 5373 4227 2744 5243 6580 5964 9967 9997 6933 6713 6963 1569 9919 3096 8721 3865 262 3849 6069 2967 3559 8119 5026 5967 4326 8267 8818 1828 9722 4956 3023 5082 2603 5625 9119 6584 2064 5354 9937 4646 496 10 2022 7562 6955 4138 7214 1619 573 9275 7400 1528 6068 7258 4596 4772 9123 3042 1545 7316 7095 8209 258 9750 5351 2841 1785 5276 9509 3290 5581 7300 814 4880 6156 7059 2287 8111 5691 8100 2478 7019 483 8451 9995 3770 9292 3590 1471 5717 5244 8315 2436 6034 1451 591 6303 9731 1177 3634 4352 2633 7646 2166 8643 3339 4361 5928 5145 3649 2191 2183 601 5954 2495 201 3611 1023 2476 4703 4935 2919 297 6166 4786 8427 3240 4306 499 2268 4904 9712 740 8467 4829 1619 1648 1312 7470 402 8149 4641 3604 2578 6118 2209 2633 3217 5856 5192 5014 5340 7336 7320 8006 3242 8690 9186 7782 5280 1673 9016 8457 1351 1212 5125 5498 3489 8876 4253 4954 6411 4745 3039 7350 5610 8161 9111 7208 3628 4054 4168 1615 8978 2936 127 4839 9832 4533 7839 3052 306 1738 4066 237 937 7459 8271 5421 4567 7370 8497 6288 1513 8113 7842 5438 8526 2482 280 6363 2405 1202 6524 886 8693 2610 744 5621 630 3104 6083 9930 4936 3449 6782 1771 641 4615 7456 9275 4536 4507 1917 8979 9431 6279 3223 9031 7595 6272 6821 7047 9671 4332 3428 3636 8495 4536 9040 48 2757 6541 4721 9411 2397 715 8611 8391 3818 2914 7554 7286 5742 1000 9872 4574 7653 9433 3977 6926 1465 8489 9004 5441 5261 4284 7235 3723 7367 2740 8368 5693 414 4367 4948 9090 3042 461 4095 7293 1280 6406 9424 6829 4165 8148 2435 4994 9910 5750 9601 8458 5897 4497 1018 6137 3183 417 3155 7099 8107 6249 4657 7090 1520 6855 8066 6919 2032 3029 1665 6887 7782 338 3313 292 3 7375 3282 4109 5822 1548 2375 2341 9953 651 9238 8698 6639 2467 5183 6628 8041 9597 2097 682 128 7083 6916 9950 6057 2766 6832 719 9063 8880 2756 6887 2081 7298 101 4979 7499 6071 1746 3706 3539 9532 6334 5024 1542 5333 7607 4189 3041 9640 3985 3983 4259 7042 8183 1961 7357 9136 7205 5824 2763 6225 4748 1084 6667 5529 1028 4189 2379 7616 7108 2829 6385 5244 3516 5850 9047 6076 4690 2371 4534 5563 620 140 862 3973 2154 8420 4165 5223 3173 2034 1912 8830 2230 9926 6758 4399 2387 4568 140 438 9513 4874 9264 4994 5697 1750 1161 9552 6147 4421 4722 2918 7184 7980 6200 4581 1824 4148 5888 3267 8418 9956 1804 7144 1148 484 9331 293 2214 5848 5665 9174 2743 4495 2298 3711 7322 2599 6973 8431 7124 6854 4481 3075 9946 940 2132 3053 5448 2244 3252 1373 8931 4609 1381 8240 2922 1673 6854 4513 179 4706 2703 4633 4255 7527 6391 8033 4784 7222 8231 8176 3860 5068 1448 1077 2780 9335 1339 8572 3728 4725 9412 8669 802 8991 5434 9596 2736 7652 9767 6008 768 7937 3435 9845 8706 8704 2426 4392 1004 8995 7314 2342 3552 2707 1270 8958 5818 6731 8991 4321 6678 2262 8681 3923 6884 2377 9940 7375 4192 5931 6923 1567 2647 5264 9366 6192 6898 7241 6001 293 5487 5591 4849 4740 9576 7633 2399 2293 1671 8679 4431 3532 3340 2943 5758 4746 1161 151 7182 2333 5169 5886 6607 8264 4624 991 3399 3229 7900 890 8287 9133 4047 2440 7673 8201 4927 8234 8207 9306 8726 9917 6551 1647 7790 3211 1081 1773 9559 6053 6412 36 7658 2724 2367 8194 9775 3472 5813 1647 4708 4639 2137 8514 669 123 3892 8145 2142 8142 7484 274 274 8742 5362 2396 3631 751 7210 5450 8342 6226 2535 4043 7530 9550 4579 7664 7247 5243 6397 8063 7451 8177 1881 5360 3370 1576 7419 6075 4774 7578 6767 7116 4463 9280 3911 9324 9067 3876 9720 9242 1727 6738 9632 3435 460 4745 6771 1151 618 9221 8441 2781 2772 9963 9750 9230 6643 9577 8819 8590 9073 4415 3580 7441 6471 6530 6726 6370 2740 3330 4760 6298 160 1573 6735 4477 6363 101 7948 6105 745 8540 7701 8811 8867 8776 2511 2330 4351 5785 4325 5206 1668 9169 8839 9113 8765 5758 8323 9518 7074 1061 7159 272 559 4519 8348 2969 1542 4162 7223 8223 563 8669 2890 5758 6720 3954 7006 8909 2599 8494 3346 1338 8610 796 4698 9471 2986 9238 5730 4846 8378 1772 5226 7155 879 2236 6906 2666 8385 9375 336 4548 937 4728 2741 4542 9519 4152 8239 4524 8516 3019 2218 7490 3951 3853 1362 4203 5574 4693 7546 8250 6567 2786 4727 1393 8038 1525 8154 9319 5304 9873 2145 390 3644 7485 5029 9419 8967 470 1711 2237 2692 6992 55 7449 9365 5616 9340 9936 630 4542 8933 8460 4440 7134 5650 115 6252 7179 4 8791 7732 6825 478 337 72 1192 2546 419 2478 5259 6518 6697 2806 659 5277 9222 912 5530 7829 3080 3198 2650 2128 9011 9311 9344 4099 2962 429 7648 2963 7988 6301 5564 9971 5888 2994 8139 2404 5256 1301 9628 3159 257 4772 3669 1625 691 6977 8492 6179 92 1830 4971 5740 6539 6820 5280 9709 5888 613 3545 4515 9273 3864 6167 9345 9018 3313 8253 4102 6095 6142 2279 7955 3521 9316 1837 833 3265 623 3141 7754 558 4221 9030 4734 1454 2333 2190 7120 1112 4522 3501 4129 6404 4041 9629 1706 2045 4237 4181 9750 899 5770 2503 4087 4684 2021 2269 6939 6535 106 4479 9166 5349 8023 8100 2698 937 3833 7530 5157 2436 3193 5740 4011 3382 40 78 9108 8342 8107 505 830 6886 1073 4456 2958 9005 8373 1729 8912 3229 9636 1687 8501 3045 9553 749 9567 2510 6660 5332 2159 8796 6886 8286 425 6768 5427 3671 670 7505 8335 9363 5553 4913 3287 6744 3187 5677 293 8050 671 9102 8464 3946 8199 9668 3500 8042 3623 8337 336 4947 9885 774 9198 9656 6083 1525 3338 1738 4264 8583 1060 1201 3748 2368 8548 3809 1696 1936 3805 1429 3162 8350 9252 1159 3735 6898 3831 9331 6340 3132 5037 6907 1736 9639 5218 7642 4677 9203 9012 8666 5463 6438 1629 4799 235 3007 6081 4740 6805 15 561 6896 373 8540 4462 7620 6689 7246 4918 2990 3565 4590 8156 198 2555 4274 822 30 2657 7650 9662 4333 7747 1194 1893 3294 2637 7651 2677 5810 2549 7591 1389 3118 8317 479 1107 6377 8712 1081 3381 9328 2164 3866 3435 9005 5740 5203 6647 9910 7461 3729 7993 6239 2147 1295 1932 8373 5563 2003 7713 3563 953 7781 5844 717 7330 3918 1808 6052 896 8770 876 4192 2600 1914 7716 673 7180 9573 6368 1487 7671 9313 861 965 9292 7796 1768 2044 5660 8712 405 1850 6304 361 5771 529 5553 8677 4026 8241 9973 9846 8472 6659 6184 5424 622 5115 5897 8464 5361 2312 903 9649 998 7177 459 7093 1783 7760 2383 239 2864 2655 4763 958 609 2281 2233 4372 1758 5004 1088 465 8112 7697 2577 6176 3734 1148 2205 1376 592 2061 6490 2647 5004 3730 3124 3609 5944 4752 9470 504 3334 2645 1074 8497 3742 3657 9830 5058 5537 9864 3959 3269 632 5193 2138 888 4840 7720 695 546 3178 488 2696 5608 9956 5302 8520 4864 584 1390 4879 2234 1700 1544 4746 3342 7254 5573 2384 5778 1810 2685 4278 949 6361 7504 1871 5514 8195 6213 2930 9845 5699 9020 3434 7705 2368 3579 9289 3638 5267 5329 8847 6671 6338 881 3455 5817 6318 7563 481 6364 8103 3046 1433 9501 5136 2131 2260 8398 4626 3700 1407 4554 7006 9371 7228 3113 5235 3869 769 16 9334 1227 7852 4408 8979 4922 7831 9548 2899 4262 2590 1140 2822 7550 9766 5089 6464 150 1660 6647 5143 3510 7978 57 1211 6701 6889 3902 4990 1897 2819 9540 6524 9527 372 8951 9448 6214 7635 6977 1253 1126 3137 2459 2822 3672 2338 4992 9362 3628 6570 2321 4301 8980 5614 1824 6682 4272 8988 3245 291 4004 4355 5550 3044 5404 6871 5955 4099 6722 4411 96 7549 1926 8743 7435 816 973 6778 4382 7313 4259 8598 4403 1007 8015 1706 4505 9316 394 2378 3436 1752 4645 7428 5540 6920 5856 8657 6128 5015 7483 6182 7752 6378 5770 2539 9839 5641 6291 7477 341 1353 1044 7033 7091 8971 3495 3746 7648 4245 9657 350 2977 2392 7452 6858 5899 7743 523 97 2415 8411 1767 6509 4090 3211 8360 3715 1125 7559 8770 5315 9974 7632 6595 7905 9173 8272 2495 1961 4677 5117 271 7336 4118 9912 4784 4865 6267 1819 2383 6535 5171 7146 8002 9707 4553 8792 7411 8447 6872 6453 7561 9984 3028 3088 7225 9777 4838 5528 6322 4632 2005 7844 7064 2913 9323 1773 4050 8653 9371 5238 9723 6799 5454 4384 3937 4192 1173 310 8375 2286 4382 2520 2830 3538 9689 2488 7806 3882 5063 465 6069 6479 8443 8993 2653 2173 8876 1453 4569 3689 6751 1954 4866 8473 6857 4794 9308 403 8535 2303 6474 9206 6361 7002 7317 6995 4239 6297 3682 7047 4448 9273 9138 1831 2224 1134 234 9930 2388 2362 3545 5545 631 6432 7248 9047 2243 9772 2142 3984 8159 3395 1493 4070 5437 4486 7753 5255 5626 9897 6654 9582 7482 9856 9694 2703 4660 4474 1396 4287 5675 1602 132 6275 7864 6514 5086 7851 7845 7469 7256 983 7149 4136 8451 3427 5352 1727 9582 7947 380 3666 3437 2128 5596 9198 9305 8074 4280 1852 9260 203 8870 3644 5408 626 6438 9665 7263 4447 1854 3464 8104 4426 6041 9248 227 6326 3420 590 5187 9072 7192 5996 8508 5601 6233 5073 3388 1508 3858 102 693 738 5221 2519 6926 5311 2266 3342 9191 6513 780 341 6262 9850 3844 7620 7737 8043 959 2836 5231 1257 2294 6253 4413 5455 4525 2720 6371 185 5784 2163 9194 2219 5935 3267 4950 7279 6017 9833 1579 2278 2193 408 6678 2450 10000 802 9059 5503 9181 3257 2781 4452 4553 9411 2816 4422 7926 4101 2568 730 4593 7482 9482 2956 2031 9311 3203 1765 1526 297 6998 5537 6075 8965 4800 2314 6492 5147 4312 1976 8844 6530 1600 3433 4025 1219 2735 9596 2112 8285 7549 7263 3669 6505 6280 5562 7240 8995 3892 4068 258 8125 2854 9763 490 2371 1611 7698 4142 2816 4147 3266 9370 5019 9229 8852 144 2900 7992 3753 525 4771 3280 8841 3129 2883 6235 4158 1230 19 9599 4372 6166 6126 3303 6907 1320 6697 6497 9384 4909 1414 5674 7431 6277 9195 5313 7067 7591 1637 6304 5575 5453 4971 6522 8301 8000 7130 2398 6223 6532 757 2180 4547 8469 8920 9322 6116 6592 9 6617 3896 6161 7877 9828 1950 2494 6935 1136 6434 133 5338 876 98 6553 4300 7344 8336 7407 7062 1616 3897 1690 4706 455 4381 3295 2593 4603 5057 9187 4939 8241 7691 859 7588 909 4599 9361 632 619 8432 2895 9698 7704 2419 6070 1571 7973 3941 2422 2554 3622 4413 8613 1508 1183 8181 3848 1413 788 7518 970 9094 2574 1409 1201 4363 4245 3623 5762 1900 4504 268 4877 8104 4647 6808 6047 5426 615 6710 230 3191 5664 4962 5785 7165 9110 3906 22 8310 6700 2336 6884 4546 2855 7401 7804 1932 7458 9804 7269 2098 5355 5072 2154 3873 4182 5219 7986 927 9078 9937 511 8597 454 4632 1829 6002 1571 1255 4089 3722 6092 4588 7621 1185 9524 2601 6167 8568 8983 7950 1645 8030 1177 4653 1304 1613 2858 6942 8377 465 1844 1109 1438 9338 1997 8897 6102 2924 3363 6646 1603 7088 5054 3415 87 2629 6943 662 2145 8149 2787 8925 7220 2604 2033 8676 254 5542 4892 1234 6493 9744 2491 3645 53 250 5373 7790 1687 7896 4881 6494 4405 9524 4695 7567 922 3370 6406 6765 4995 1690 876 7718 1443 3109 8851 7180 7626 629 6761 7159 3939 6335 9601 7742 5247 1888 7306 6782 1113 3558 9283 2471 5232 2963 6415 8834 3686 1035 9488 8462 4887 4693 4962 9014 6329 2621 2734 527 9312 9405 549 7715 4700 1585 4309 2001 1852 1804 9823 4055 8120 4128 8325 4655 7721 9115 7688 8411 734 6896 825 5187 977 5873 4313 6231 6882 3260 4650 8795 9860 9380 8065 6531 5364 470 5275 3577 3463 4128 789 2872 5591 8229 2206 4621 3615 90 4694 2622 8079 7360 445 8980 7332 4897 3623 9405 4243 7751 1621 813 9494 6449 9898 299 6395 8958 1462 7808 8517 2357 4366 7338 5830 2434 9976 3850 9600 7526 3136 3855 8034 6656 6805 6075 2073 1631 4008 1114 5201 5896 2871 1780 4495 7791 2223 1022 7744 1797 3601 2213 7561 8288 9929 9554 3150 6269 948 4833 2781 1359 468 6576 2485 6657 108 2102 5934 6891 8389 8463 5912 6243 5003 306 3453 8452 389 4484 8912 7737 4684 3488 1033 5643 1902 6993 9586 884 3894 1492 9576 5089 9581 9542 2629 2372 1240 6030 135 9655 7239 8671 1826 4433 991 1191 1795 8267 3126 6518 4047 4334 9925 7817 467 9072 6346 9398 3570 1399 5905 8983 1786 7489 4493 4044 28 8578 5606 2541 2956 5457 6483 8316 6145 9994 5071 2821 7429 2061 1115 3799 2917 4760 1734 6843 1981 4376 9028 6861 4137 6618 1683 2529 8017 5511 1120 6195 9513 2220 9009 298 6267 3203 6611 9577 2363 4499 6359 1561 5573 8137 489 4823 2719 9493 4917 6822 8158 8163 3177 8483 8935 1122 7237 4720 599 7032 8141 5882 109 7554 17 2890 2405 7791 791 7612 1790 2004 8014 941 6990 9004 3072 6182 6100 9564 277 4609 3251 1189 347 1683 7476 2388 1753 6967 4510 1191 4648 2292 7429 5120 9595 8953 700 2902 815 1959 7848 7039 4562 416 7475 6986 6767 4445 1266 2802 1666 2068 8012 4328 8395 7273 5623 1779 2920 6248 3645 8621 1755 8062 5925 2756 692 9230 8234 8654 8945 1529 228 7988 2202 2412 202 2343 5119 4655 1006 5647 1449 9386 2964 5347 2990 4220 7392 4160 3234 3019 5682 4557 4590 8972 9599 4321 4536 699 455 9834 6405 9485 1993 9771 666 787 481 318 220 2438 6238 4723 3373 8906 3250 1443 322 7294 7421 7411 809 5841 5521 4395 2339 2336 9452 5020 9597 8786 8979 5902 6496 4381 2938 7465 6899 153 1083 8896 8486 6388 9937 7769 8734 5959 8625 9398 7345 3741 902 824 418 3187 7028 8328 6304 9850 4181 7747 7850 6936 1803 6629 7844 7711 6852 5780 5976 2596 1068 1936 1280 6825 9256 2291 3036 8765 5700 6934 7324 3922 2196 9112 1667 5107 3626 5838 1239 9809 781 5423 115 8334 8708 2085 193 9508 7698 2861 5542 111 5616 4711 2089 9928 210 7109 1351 9226 6307 7690 7972 2596 7285 1882 1648 3868 4253 660 4425 3161 3800 7139 715 2686 936 4276 8246 6396 7882 3375 154 7518 4489 4488 9624 3116 1414 6109 6130 4988 9711 7134 3430 285 5900 6211 2861 8884 5771 1042 3862 6242 7489 2876 531 1873 999 2680 8312 3808 1933 716 2046 5580 7058 8151 6796 4218 7109 8140 4040 9769 3222 5769 1616 7999 3468 660 4482 2289 85 1511 8946 4358 2317 1911 8331 1397 5879 1201 2644 5299 3718 8407 8136 7761 7199 424 9292 7545 4377 3570 817 6583 9945 2438 7936 4012 8003 753 8153 919 982 3059 273 2750 9537 3957 7493 1793 1960 4032 3821 9630 7560 3446 7529 3929 7594 9841 659 2902 864 2303 5341 5724 1073 7204 1536 3819 9858 7749 2787 580 8855 2643 3304 8712 2672 5015 3512 3823 361 8826 2661 7573 6977 1095 1661 1102 5596 8484 9717 5941 960 7427 1359 6410 3471 3319 1520 163 5072 2578 8000 990 1785 316 481 5958 8134 5035 6098 5779 8740 7812 4805 9108 4894 9525 3092 3465 783 6507 3794 1054 5180 5149 5767 9693 3478 2157 8178 7768 7660 2219 4333 1333 8282 8098 9044 2745 4027 7992 8514 6135 4364 6856 8064 7113 132 6217 8179 4039 6792 4062 2085 5760 6072 367 6221 9655 675 6643 1762 3110 958 1087 9821 9205 2786 3858 8530 8202 6183 1884 3283 2676 3663 8778 7322 4279 6888 5444 9207 2677 7150 6708 8648 7730 6204 2260 6563 8087 8741 3225 1426 7866 3120 8175 573 4344 4498 125 870 5362 5960 2896 8821 2023 6340 5486 6635 3605 9726 8814 2730 9379 2311 2316 5131 1265 8129 2667 8586 9058 1846 7850 4844 1371 3070 7259 1912 5344 4838 4448 1803 9573 3317 2495 2027 5979 7512 6318 9750 7180 7609 4628 3325 2121 2159 8960 7907 9816 7917 3298 7682 9799 3224 2439 1774 7952 6316 4840 4540 6528 207 7844 8421 1331 2211 2653 1428 2753 7670 8257 8643 6049 1442 5935 4094 4448 408 919 1585 9071 8024 7962 7487 9686 3323 6226 7447 6674 1448 3276 3258 1376 3209 6668 2364 9823 4913 8118 966 8659 2447 3563 1596 4500 5011 65 1436 7147 9157 3159 5182 3235 5736 1694 7856 5793 8832 4283 1413 8217 7446 2813 372 320 9471 5314 9900 1309 427 3729 739 5648 4345 9862 5182 7588 3117 8254 1611 7173 4464 5988 3876 2489 1666 3149 360 1567 2924 9822 4777 794 6397 4361 7725 1881 6248 4361 8203 1379 2495 8228 4643 9220 5503 4009 7711 1842 2231 6097 4345 3933 6784 4621 5639 728 5214 70 3810 6212 1671 7500 5964 8682 8166 2233 5410 410 5232 5605 8702 3622 7077 3178 5142 2574 9508 8796 5540 9270 3176 5722 751 4308 5119 3030 9373 3101 351 3816 3365 965 935 8795 8725 9815 6025 6531 4108 7550 8231 1066 609 7857 9521 5703 3429 7274 3556 9578 9152 523 5305 1229 9112 6040 9569 5214 3156 5560 4740 1811 1643 6446 3334 1380 2527 7806 4349 3357 367 5951 5449 9390 8268 2323 1456 5383 7432 1540 5801 6425 8757 4996 3825 4213 7003 5866 6035 9141 8680 6776 6967 7093 1907 1910 342 6105 9361 1210 852 4867 7650 6772 6507 6169 7388 1289 1779 6439 6889 3367 160 6338 8188 8978 3808 7333 3071 4835 7 1776 6816 2357 71 6544 2967 7707 2230 1312 9991 4744 4225 5350 9542 1940 5803 5938 5552 7689 9444 2321 1755 9668 5082 6382 2653 4270 9241 465 5264 4345 9970 5281 6360 9638 6111 1067 3545 4245 8497 4381 2709 1632 5408 6881 8959 4378 2402 6083 1126 3493 3962 9228 2728 3075 2794 7862 5008 4545 4638 4859 3626 2357 8137 490 407 7162 4464 8113 178 9297 6800 6625 2173 3476 4916 5441 738 2611 3996 1107 9131 5853 1648 3809 9506 4899 3949 2229 3906 6910 601 6307 5016 6728 2091 359 7067 8961 4504 8615 255 363 8613 2401 9597 3545 9130 8815 4771 1997 3688 7849 9699 4908 8347 9251 9217 1128 8836 8768 5593 744 9102 5941 6787 7856 4257 6246 2500 857 399 503 5814 271 5735 7719 7016 7309 9888 8829 2779 29 6495 5351 6722 7254 9939 2654 3020 5115 9989 2309 4128 5344 9883 4647 7161 2791 6580 5318 8943 9218 642 3896 4845 7195 883 4116 7023 2519 8297 4995 396 7607 3779 7593 1506 725 1951 1877 9174 7377 3604 6751 84 296 4343 40 257 5465 9636 6112 7451 7210 1931 2301 9796 3733 6037 4091 1118 4362 9269 532 8435 535 9678 8410 6214 8957 600 6802 4415 4874 9510 6187 5496 7705 6943 7302 6562 8167 7668 9131 2801 4011 109 7928 5899 208 8045 9345 2908 4699 5871 9329 6734 3129 3285 1377 4906 3968 122 7151 5626 6276 5080 2332 5781 4423 3466 4423 4912 344 3605 1549 6024 5635 3674 9625 6594 1654 9797 3841 4591 9933 3700 7162 178 7998 52 1011 7288 5729 577 2300 4469 9916 4148 601 5252 784 7566 879 5452 2286 3691 2211 758 3691 4956 688 2119 8926 8047 815 9972 2079 7564 1142 779 5010 7890 4799 1784 6969 2350 5926 9245 3993 7190 4081 2815 9618 2193 4268 8788 6889 1417 7901 1743 4111 9590 8212 7218 9954 982 2472 4138 3149 5674 4561 8437 1405 2183 6437 6471 6922 4654 6814 8047 1232 5019 1339 3270 1883 7034 9194 5661 5668 5569 1067 239 8514 3970 9704 5315 7571 7921 7979 1569 7928 5016 815 9423 7759 5574 4666 1805 8530 2804 4396 9698 2433 7035 2211 8869 3552 2695 9101 4385 7890 2369 4733 9239 9832 7813 1193 7765 5464 583 8625 7129 1496 3786 7718 6707 5032 9829 5406 3785 9358 9456 5953 6677 2832 6692 8886 4448 964 2950 6958 5949 5500 5859 207 7446 8020 7334 7149 7319 4427 2233 9834 9001 7640 8548 9206 1060 4257 5512 7416 16 7260 6837 6881 2776 278 1742 4132 7257 4267 5148 7770 5325 2407 9230 5321 7684 3445 4915 1032 3268 3448 8692 9200 5921 3303 206 2498 8101 6133 4993 3772 6679 8370 4201 4434 1818 2350 2268 7723 5817 3698 3480 5136 3680 5560 2717 3095 3357 7737 6955 7288 5595 8344 708 1134 2744 2841 4245 5504 5705 1376 6295 8666 5042 9089 434 1903 2589 6390 6543 3682 9750 1018 3401 1625 1684 6869 4527 5714 7468 601 3385 3332 316 5199 1234 2258 3416 875 1479 6696 3471 8175 6841 9590 2859 8568 3649 9569 8278 5736 691 272 4470 6242 7350 7449 5504 4568 2891 6431 8468 7030 4760 4809 3738 9102 2260 3200 7528 7310 7301 5633 353 9999 9974 3189 3586 4937 5702 4657 467 8653 3777 522 8906 1766 1708 658 393 2525 6809 9671 3490 942 6420 6036 8779 5958 3151 7366 878 9150 6242 2984 6567 1550 129 9348 3196 6883 5598 1579 8853 7974 6147 680 3649 1543 5796 2464 9577 784 2402 7901 8193 4744 7992 7679 3350 1475 6239 6921 5254 1935 2231 732 5567 8114 6859 509 8262 5021 6131 27 2812 109 7286 8690 3353 5660 1543 2392 2288 2138 6140 2898 1779 8346 446 2971 7541 4090 4627 255 5870 8840 5886 5300 5753 7378 1352 6018 1775 2447 8937 2037 9879 5428 5214 7545 2342 5001 3648 9990 1007 9506 764 5835 1136 3462 7163 6547 5420 6059 5559 9041 8245 7290 2438 3952 648 9407 4659 1216 2894 5261 3951 2441 6685 856 7321 8637 4855 3131 1546 4562 6184 1455 2651 1889 8156 1518 5401 4367 4600 6991 9459 1829 8746 7447 8424 1366 7773 9669 8906 6430 655 4324 8143 4141 9623 2140 4208 9565 5505 1743 9673 1705 3191 2321 6339 8213 5738 7769 4202 2613 9274 9982 7843 7017 3964 2749 4288 7809 1468 410 2912 6184 2381 4297 711 6637 6338 3389 9934 9468 9645 9472 2830 4163 8522 9721 5599 42 7499 5852 4283 481 8872 8130 2753 8726 147 8693 1366 2269 7926 1877 3287 7605 4327 2711 8480 3381 1346 3891 2560 2509 9418 1771 1198 2529 6693 3406 6647 9160 7456 3219 6976 7621 6785 3547 1323 86 7994 7931 8386 2933 9040 3725 2566 2715 2666 4103 366 1503 3446 2224 6975 5603 9206 4600 5002 7853 5879 8667 7643 8274 9217 7525 9297 4670 6899 7134 336 9619 5955 1420 121 7072 172 8375 6505 3950 9976 5255 3707 6232 9369 231 9139 1739 3760 5740 8870 8961 5397 9723 3154 7026 9110 587 6108 9574 8487 1302 75 8521 8629 7034 2105 5563 1931 1024 4657 3480 3769 1593 7300 8245 2728 2946 5181 7662 8948 1269 1143 2541 5930 5075 2102 2431 4339 7357 9984 523 3513 3843 1986 5138 9451 1788 3570 2569 4530 9264 6480 801 8651 6116 7938 8867 9512 8196 3292 5148 1594 6449 5576 5697 8390 7665 7671 5128 5822 6654 4687 5244 9961 5881 6307 3741 108 2916 4015 4541 6147 9314 1003 1946 3048 1728 9308 9457 7159 5405 1382 6971 4164 5720 5217 786 7089 2988 9858 1303 5361 7916 2673 8808 6103 598 9614 1011 1653 216 1682 6866 1464 4056 8505 1698 8196 7963 1365 4436 459 801 494 3382 7491 2374 4357 1537 9678 3922 3487 2 4610 675 10 6007 6817 6519 6717 2337 9123 3682 8088 6678 7714 4175 9777 5265 3803 6772 7422 9700 3022 2174 4745 1025 9203 9279 1691 3971 6510 3288 3473 8798 5434 4238 1753 195 7314 8215 5370 1805 8541 1134 6873 4104 1415 3041 5203 997 6882 2035 1951 7707 9066 6036 1821 7725 9004 7043 6983 436 130 8071 5386 3978 9058 6889 2379 5874 5546 397 9182 7305 9970 7742 2975 5132 4640 9336 9965 5159 8141 9939 7356 3255 4731 3048 7062 1271 3414 6050 6915 8838 1165 6766 2017 8066 9496 7363 2256 8139 8031 2933 9564 9491 2118 9505 8550 3626 1607 504 1918 3419 5041 5637 7950 4279 2027 5764 1030 5982 6759 3825 1261 7171 7106 16 3071 4717 4389 8671 7907 5777 8513 1470 9561 8090 4425 5258 633 3261 7861 3168 4597 3612 4078 4623 2583 5946 3184 55 576 1746 1606 1429 8736 28 7596 3746 6901 5777 4943 2903 2839 477 3671 9559 3993 9982 8918 272 8161 197 4785 6116 1970 3123 4999 2397 5190 945 9812 6034 9172 1256 3614 5425 6068 5804 8443 5083 4659 9230 3474 6437 1069 935 6910 1070 3586 2834 3729 3855 4998 5419 5271 2521 8352 2739 2326 5554 4975 9724 6148 7318 2991 443 6575 8798 3697 3845 5236 4329 9505 544 6900 2268 3216 4708 1675 3099 4371 8498 6822 1581 8872 9615 3502 9571 8840 5662 2046 621 5026 328 3600 2899 7285 7997 4973 8989 3666 1257 9093 9049 6108 6064 5400 4693 2273 4261 6656 6193 6503 1746 1851 2854 8232 2774 6307 4085 4393 4746 5580 8329 4605 4209 1219 2383 9233 1587 797 4691 7793 5117 8624 219 4259 4448 8068 1002 3756 5914 470 5608 2845 9108 7374 2835 450 4819 5087 3960 1148 9168 7979 9323 8055 1940 8664 1129 2299 5951 4586 3546 5936 9913 9740 9294 6400 6702 3908 772 2486 9696 6301 2263 5731 8251 6353 2032 3389 5272 9681 7894 4095 3353 5875 3852 3086 7119 245 2929 2397 3092 4871 513 9737 2625 8999 7408 5044 8923 6096 256 9948 1566 7351 1414 2440 6527 3090 7707 7497 6865 3162 9673 1182 8661 4152 3223 5482 743 951 3403 9549 2417 7570 6898 6376 6474 6425 8192 5268 6251 192 9661 9861 8840 9575 7256 2937 9123 1234 4797 2367 1699 6777 1456 1596 9986 7934 9927 802 1589 8446 278 9500 4623 919 1039 5545 7291 6823 754 3105 7353 7854 2189 4851 3568 369 9800 2185 1205 6404 8507 3464 9074 1020 6049 7645 3101 7241 6720 8184 7480 7965 4471 4231 9554 6011 373 8829 7113 8097 210 4106 4193 1854 694 7817 3285 2692 7756 83 2452 1285 9083 4051 2787 439 4673 5055 2176 9144 6944 6281 8075 7644 9401 7988 3653 5354 1555 9476 1711 5377 3266 8340 5015 3913 884 7290 9418 7204 6001 8202 8653 8723 696 3438 4735 1021 9225 6317 8468 7324 6221 504 818 7750 9801 8002 9804 783 6382 7377 3198 5646 2449 5653 1088 3481 1906 3228 8474 8062 1577 1404 4315 3962 5086 5456 7941 6494 3771 746 271 9321 1335 5011 8451 2687 8761 8228 5178 6354 7503 2003 8102 3967 8961 9449 4615 708 3174 2272 5306 2707 7000 6383 5781 4630 2728 9910 1514 2752 4317 461 5324 7773 1701 7200 8753 7763 8637 6514 4288 7122 199 492 9948 1527 5506 6568 5819 9779 7604 9309 3706 4144 1582 5038 2512 8456 2628 3149 2720 6832 7425 4786 8076 3297 7824 7656 7576 8448 8207 371 4555 3198 1747 2907 1217 5012 3159 5212 8150 9767 9237 5693 3017 9010 7744 1147 3730 3011 206 9139 9753 827 1596 9411 633 9455 8869 3413 884 9656 8319 9698 2374 1193 602 1353 5512 1962 2900 5126 759 1706 7902 2503 8232 875 114 801 4011 7497 2787 8083 8421 3809 649 8047 8277 682 3160 7878 1509 2529 5238 6681 6184 1765 5260 3950 5043 7839 4730 4964 9175 4572 5782 7175 9600 1876 1292 9319 8807 7182 3360 5978 1045 5174 1976 871 8326 1728 5496 7727 2865 5430 7078 4432 757 823 5457 5770 3579 593 6586 1604 9708 4267 3589 2484 3930 845 9201 4218 5519 2320 5458 6238 2390 2602 7687 4350 9811 7885 9188 2007 8089 7563 1895 3154 8436 857 9508 2398 4051 6231 7562 2896 2264 3176 5859 6706 8052 5241 7869 1866 2827 5974 7443 4967 2509 7505 6759 1059 4253 8435 1314 6103 25 716 5273 2929 7167 5789 5285 4050 3457 8267 8310 5982 5653 5274 7943 5330 5978 3528 1706 7466 653 5565 2442 3488 3791 3738 2586 7268 3369 7053 1101 3093 4413 6724 8094 3889 9349 8209 6299 6749 1380 4133 3754 442 3897 5903 7329 8742 8035 4366 1063 9163 6555 4156 8813 3859 8914 2261 7017 5274 3982 4394 7271 3786 7321 7356 9394 4344 6111 8826 7829 1805 7122 8209 10 752 7079 5786 3024 8705 587 8241 4668 4764 8571 237 551 455 3068 5039 6483 1578 7249 5747 7910 8814 8906 674 3821 1498 1574 9746 1937 1355 6784 8709 7787 9168 7018 2884 780 8298 8103 2390 3569 8779 6922 6932 3787 7792 2943 6902 5958 268 5019 3757 830 8144 9329 6985 8210 8161 513 6366 7482 329 6536 4992 3186 5676 8827 8829 8584 708 9878 4431 1871 6201 6535 6849 1813 6082 6003 7731 4679 2079 1602 7120 6410 7967 763 3509 6201 6987 2486 1367 102 966 1864 1224 4624 1668 9269 1178 9022 2320 826 8328 4437 6163 5815 7676 5220 5299 3975 6923 6416 3141 6350 2012 4638 5620 6450 4318 1598 3897 8016 2375 5796 3857 417 1030 864 1222 6724 6477 7138 9875 9054 490 5202 4168 1159 3783 1463 2861 4499 1363 2878 2363 4176 2361 5334 8885 7538 3152 2714 6139 1952 8556 4894 275 3066 8432 7442 7875 1124 7272 5741 5998 5378 3457 6048 9780 6067 1825 33 3452 1929 5390 5432 2005 5297 8935 5197 9266 2443 2127 2812 6900 5730 4705 3546 543 2961 6539 6844 774 4752 2875 7869 8078 7528 9386 4397 1058 6712 4026 1304 5535 7738 7802 2750 1793 6881 7738 5706 1363 2903 5620 2015 335 1665 6258 3527 6568 8592 3832 4171 2478 8965 3752 1584 5013 8819 9804 8364 8902 5998 147 1434 501 5261 4702 7175 8124 9716 1847 6212 5456 1957 8980 276 3771 3868 6031 2521 7509 9543 507 7000 5074 8687 1186 1937 1881 3865 2121 3125 7492 4383 9559 4039 906 4894 1304 2129 60 1731 1097 4765 4290 1509 1934 6242 8326 7061 3133 477 9752 945 3705 7713 6 2643 8228 8327 9215 1970 3344 6114 5176 3357 9622 7463 9469 1892 4354 9394 4988 6844 2596 9609 4556 9446 2211 1133 8536 9341 9163 5023 3032 4193 9930 4538 561 3962 7972 9314 2321 9609 3573 8761 4397 5273 1232 4774 7838 4745 6795 8881 7339 9628 7777 6085 7222 4441 4558 8682 3862 4691 8009 6119 7486 4255 1882 8077 6523 9838 1896 6078 5931 5094 5781 4572 9727 3932 7495 4694 1092 3642 5084 7577 394 4432 4351 1863 8508 6152 7255 850 7705 8775 254 3097 6780 846 326 5263 7652 7956 4135 1722 7769 1774 3228 7853 157 2708 837 5202 2051 6490 2985 1663 6279 8513 1877 4840 6292 183 1470 6610 3184 647 8926 8659 9743 2864 222 739 4078 1985 9507 7111 7321 4622 898 1673 2905 2476 3434 7094 2789 6455 1735 7408 9361 3908 9936 7123 4067 4094 9782 3136 4809 4334 6578 7650 321 8318 4329 3918 2115 6094 286 3374 6772 1821 1008 7955 4952 9899 5804 3454 7437 8231 1272 6499 3925 6599 3165 9861 4452 7618 6384 7436 5980 5313 3715 4420 1604 2586 6474 3198 2795 9323 1291 6452 2557 4615 6825 987 4857 5516 6378 9904 2228 1509 7497 6942 4645 6717 3498 3444 2313 9235 7947 7381 7544 4451 4996 322 6764 399 7102 1256 9857 2899 7602 3678 304 5556 2505 3753 1275 8687 3152 880 5784 8583 7666 4911 3440 8947 1313 4504 6959 9821 1770 4312 2035 6535 8378 8564 1349 3844 8467 6767 6343 1566 9575 1112 870 6160 2510 4097 5269 8524 5425 8774 8911 7588 9800 8728 7547 4890 8775 3607 2031 1861 3080 3328 6734 2536 2752 1085 1125 5154 1809 5733 7917 4075 696 9217 253 9157 9218 8644 7428 1724 5239 2580 5879 8020 4139 216 1789 3805 8666 4020 1168 5970 2887 1363 6584 9298 4277 \n8125\n1805 1122 812 6528 8951 6527 4350 2720 565 1841 7464 9731 8172 6334 9328 5525 3712 8400 2023 1527 5505 3252 5631 2913 8403 6075 8623 9252 623 7786 3490 5775 9470 5718 7251 3156 1732 518 291 9459 9411 8159 1937 8515 4106 4247 1937 5238 3678 232 5307 3468 7332 4778 9108 7917 2338 7069 3359 528 5783 8977 7257 51 3129 1477 3163 9499 5337 3704 7865 1388 6205 881 7868 8661 1257 2494 5580 7209 585 941 9323 2806 2948 9747 5781 757 6034 6435 6670 5103 1924 7911 8738 3189 2068 3662 3663 5309 5295 1507 9263 9005 5505 2711 7251 7914 9932 7168 8359 8696 2942 3186 3061 3753 801 2434 3791 4439 5726 1120 6078 6024 501 3628 9783 6002 2922 1340 6237 1212 9433 5382 3716 8854 1008 5201 651 7261 1734 4121 7463 9337 4752 5981 9788 9905 97 2231 2710 4476 7439 1485 3757 9239 6004 1668 1396 2177 2525 7692 8563 1207 3304 4153 1088 8396 7642 4845 3292 9817 4590 2244 1275 9818 7500 123 7712 8108 6145 1977 397 1988 7884 9413 206 5138 7646 4118 9652 8913 6618 9344 6023 2126 417 4927 5723 3367 8588 6734 2094 4073 8606 1101 9835 2601 5844 9529 549 6150 4041 652 6816 9501 2481 5879 121 2276 8783 7087 7863 3444 8063 6636 2789 561 979 2730 2990 3405 4962 322 5966 6257 632 9534 8506 797 4435 4597 709 8333 1862 4723 837 9023 8026 9151 8708 1176 1541 3176 6145 5212 6374 7867 8781 3180 9692 3455 6039 496 8783 485 4576 4210 904 7620 9077 4087 3707 4579 7948 2301 1698 1671 5910 1465 1744 8943 5033 9977 7915 4990 7178 9214 1848 2662 5835 3270 4682 9338 5137 6008 2510 1028 4455 4168 1057 708 5304 2896 6374 7964 1512 5575 4529 2370 8364 6237 1451 3871 8138 1610 5101 3035 6511 1920 4461 5317 9781 8772 6982 7942 2375 7124 1273 4624 438 795 761 6488 6968 8541 2994 9829 7854 9241 8999 9049 3468 3989 5886 6605 7422 4050 3732 5797 2564 3334 8715 4556 1185 4911 9899 8193 2257 4523 4818 365 579 5458 8393 8462 4914 6692 6817 8815 6184 4197 845 185 1557 8985 4391 5402 1986 4124 4568 1837 3110 1184 4843 3610 6893 7862 9811 3074 3957 2631 3345 9841 6467 8298 9799 3248 9852 5635 958 7479 1340 9537 9820 9117 3166 4516 3987 2660 5818 6217 9132 1088 1831 896 6979 4871 5452 3313 1840 2352 4688 5269 5695 573 5455 3710 5906 413 7225 3972 4502 8968 7825 6659 9559 8279 4751 2539 8382 2870 7095 4311 9345 3546 4920 6599 9718 7290 8863 2175 5210 9530 1564 15 4856 1576 2344 7251 2442 1602 389 4454 4891 5058 5082 9362 84 5322 8244 9050 1025 1935 1036 2129 3519 7112 5203 7791 7357 2664 4235 3403 7334 1261 8194 1841 8261 8926 6468 8746 5648 8985 8696 4270 8163 7178 2982 4710 3460 8910 7851 8150 5705 8409 3246 6091 6607 281 5341 9604 9323 4453 4182 7082 5727 6238 3000 3381 5803 3251 5866 5155 4710 5023 877 7460 9915 3532 4587 5067 566 9452 6417 4702 4004 5994 2639 9787 3926 9773 2550 4575 9172 7672 8818 2692 1051 8709 1294 9696 5660 4278 5986 9664 8710 6530 3454 7500 3820 9794 6350 1499 480 4567 6785 4249 7022 8728 4735 3511 419 3455 562 2989 7576 4736 2223 7856 2093 3409 7397 8273 9115 3861 4359 6780 9359 3312 3584 500 4179 4286 2730 5057 3134 3945 4314 2351 9115 4071 3600 2601 32 262 3923 2628 5161 8147 7581 4083 8299 7288 7024 2645 9225 4731 6822 9340 3890 2838 3157 7754 5832 206 9394 7692 8439 6397 7073 2954 4577 7932 5764 2329 3509 5308 3763 7645 3013 5789 3823 6737 5169 1512 1471 4266 3127 4694 6222 661 3329 4682 2430 6653 547 2738 1025 7018 9559 9156 9414 7925 418 9433 2390 7169 840 596 3893 6739 3570 5227 3634 1147 7336 4851 599 2639 7955 9850 4645 9308 5171 3058 1466 8663 4596 3471 28 1743 7359 7685 3016 9420 1510 8298 1001 4653 3619 3183 9634 8003 9723 1666 7853 7407 2420 2350 5112 2314 5382 2915 5684 1787 6179 4034 416 4562 1704 5910 335 1677 3583 6880 4444 1524 7158 2838 5646 6622 6221 9390 4094 5601 8584 2245 3414 3940 3046 6500 3697 6436 2505 6697 3100 2884 8498 2312 5412 9896 3385 6994 8602 3824 9659 4440 2333 3446 9663 2196 4197 4784 4669 9849 2469 177 6839 9762 7930 1502 1370 2404 3362 3248 1153 3922 6293 9610 2089 1986 6715 8514 4956 3659 8685 4858 1847 8298 9090 5932 4836 9996 6649 3881 6257 5699 422 8754 9774 3887 3756 8299 6957 6768 3310 7879 7039 9775 6196 5679 7378 4058 9828 6697 1856 6111 710 8782 4555 8562 7307 1362 3736 1616 108 2377 6743 5410 1216 9756 8362 2276 1546 6536 292 3912 1020 9604 3383 8809 7963 852 3374 6777 2702 5580 3530 8084 7843 4475 3943 1062 4944 207 579 3050 3592 341 9261 7366 6146 4448 1875 8707 8546 8838 9306 2317 7473 3581 8210 984 4897 3246 1231 2518 7752 971 3001 3247 1116 1663 3018 503 242 8377 4313 876 7301 7948 3438 3477 5907 3813 8060 1229 1671 1930 1444 9372 58 8440 7259 8641 4393 9292 9552 2301 6471 4562 7024 9060 3653 8397 8872 6613 6630 3590 6197 435 2188 3206 13 1244 4347 5842 9643 3407 6860 5331 8977 2862 2805 4262 8671 5470 4996 2307 946 3815 4284 3480 1508 2115 6065 9433 3390 6000 5706 9466 5404 3675 2502 422 3714 5291 9046 8953 9976 7083 4786 4166 408 1621 9360 4818 7969 2846 6345 8907 1623 9262 4907 3412 896 3930 776 618 4198 5037 9957 7760 9582 1481 4116 5622 5914 7201 9367 4022 7800 6426 8818 9967 88 5772 2847 4542 8469 5768 2655 7328 3516 1624 4664 4131 5692 4130 176 456 746 9541 9572 5848 1914 9679 9733 2023 6973 2487 1028 1931 6915 5094 3501 5711 5970 4701 6793 8137 8427 4836 4069 8028 2485 2365 7091 3973 3371 1065 682 852 5165 7767 6610 5786 1527 4964 7955 5280 5428 9728 8915 4536 9811 2123 7690 7424 7998 834 743 560 9252 3048 9272 8588 9311 3997 3067 4810 5839 9177 2965 5300 2419 7339 9248 1046 7007 4146 9861 7837 7912 1691 7980 8896 5729 7870 4606 642 349 7449 2166 2255 3967 2074 3230 5991 2084 4843 6337 5230 6598 159 5753 1050 7066 4153 7564 3722 9633 8314 1886 2843 7578 2463 9777 8023 8092 9593 1230 1214 1003 1814 6507 9033 6538 3718 3475 6997 7169 7467 5029 5447 8200 9177 4933 2970 6998 602 8255 4338 4860 6321 4967 4557 5063 8526 904 3402 3714 2967 8917 5052 582 7577 8348 5145 4546 734 3582 9532 3195 1018 9684 8025 1204 2566 5037 2578 3419 9055 6708 6355 828 3555 2804 385 4177 8535 8283 8769 9213 1539 5362 9197 9769 1756 7106 5128 7800 7985 8752 2223 3771 4360 2113 4032 8533 357 116 9449 582 8258 8053 6977 1220 3758 9027 1100 3269 6949 9027 5343 8048 3944 7296 1195 4817 5841 5764 1832 7992 2619 628 791 1748 2584 3476 3702 3692 8259 9739 8758 9235 8707 3748 192 8809 5416 4001 6756 1349 5116 4174 3939 7588 8008 7348 3057 2626 3217 5747 3077 5139 8556 5524 1294 1937 6276 6182 8274 3464 617 1344 7624 4038 3704 3848 4309 8080 5584 4128 7991 2808 5614 1529 3695 9482 1804 536 9790 9445 2445 3252 924 9881 9846 4417 3481 7882 3252 6223 8151 7045 6095 2279 5763 1205 3182 3966 3968 1637 6406 5046 7192 879 6220 6571 7667 5059 8218 2988 1585 7686 1698 6366 6631 1144 4086 7798 5001 893 7984 7410 3166 4036 9709 5160 9164 4301 6966 4589 418 6082 8638 1902 5176 6219 4007 8792 4459 7317 2719 2352 1862 1034 5958 7762 7770 8737 1267 8608 8483 3090 3808 4991 8084 1767 8320 100 9077 9537 491 1475 9750 4439 3368 67 2549 766 2487 9205 9195 9793 1817 9804 4511 3582 5667 8035 6499 3627 6225 7722 7842 4014 2846 3697 6607 512 8138 2954 1038 5043 2373 6628 2865 1814 8809 7153 8790 992 7582 2556 8167 5090 6973 8521 8537 5148 5561 2325 9797 8748 3993 653 5398 9661 5797 4335 8353 2911 8681 6589 5739 5777 2977 3193 8165 2971 1145 6337 9871 8760 9185 1910 7398 9693 1604 847 2847 4403 9901 4338 568 1779 6340 6419 5893 6605 6791 9326 8710 5368 510 8323 8093 6204 1721 9735 7927 5147 9417 8481 8046 8425 1428 9503 3636 4371 5591 6690 5838 8086 3431 1692 1038 7262 1356 5801 1519 8405 5151 4116 8248 7140 7390 7208 3110 1980 421 4868 4075 2963 6615 4998 1998 2323 993 8178 2215 8386 4787 2783 9904 9817 2525 9626 3836 3899 1820 5469 305 7467 6266 7701 977 3708 1806 4506 4290 2784 2559 7760 7767 4038 9442 827 4595 5600 1780 220 4691 210 6210 7973 6673 1216 8497 809 5758 1421 3771 1763 112 7004 1486 4066 1911 9968 7824 6892 9188 4304 1785 1121 4067 6621 7270 3669 7203 2728 5809 4908 6227 6182 4529 8518 9235 9559 2466 1640 1114 5164 692 9381 5122 2580 5548 8642 7041 4552 9824 4119 5255 8579 4570 8326 327 2554 1292 3582 6080 9557 8394 2123 9043 9049 5234 8964 8350 5273 5716 8154 7493 3175 3548 5039 3161 3527 7005 2178 8921 4944 8085 8633 9761 3785 935 5862 4744 4460 7625 1375 3492 5187 1350 3494 4328 7023 2781 3389 3205 9937 7868 3709 3097 9624 5082 3549 971 8485 5225 6762 9964 6190 8834 6529 28 5829 1383 8573 6776 8657 1531 7226 6360 2489 3008 7149 2243 7023 3106 8401 5237 2356 5559 7367 9193 721 8611 9914 4629 1739 6083 1315 3669 1518 542 6372 1308 72 5478 1894 2425 3963 7612 7242 4958 6290 7827 1248 9188 5932 4120 6917 1586 8625 4997 5846 4671 1836 2119 278 6764 5880 6573 523 3515 319 1928 9090 6559 8882 788 4733 7869 6235 4272 5087 2365 853 176 900 7414 9938 9259 9002 6031 7485 618 932 9595 1678 9875 3315 1751 7695 2814 4794 5314 6027 3871 5274 3939 699 5251 2298 5029 4861 8850 2972 8775 6016 380 6378 5715 2506 8739 7562 6742 7470 2864 9353 2796 7547 8932 6294 5550 5734 2484 7695 6969 3322 663 6221 8770 6808 1486 2431 7531 2883 8092 7190 2880 9227 2087 4913 6183 5019 3620 9861 9689 1661 6748 8420 5816 3781 5871 9675 9139 7514 9066 5041 5437 8545 4499 16 4988 2578 1399 7314 1601 4908 2667 5199 7559 9563 2536 1554 2996 4641 9850 7250 1531 5247 8645 9834 7611 5091 6482 8141 8156 2394 9076 7197 5830 9276 6280 3644 1388 8336 9331 1573 5909 144 9848 1813 4722 3068 6594 6597 5245 434 8966 1375 7581 3100 4751 9112 3361 383 2521 8431 7003 122 29 6004 6442 58 5388 8307 723 7289 1066 9768 2163 738 7643 1647 8138 4332 9654 6102 9286 4495 2991 4298 6913 6781 6487 9648 8983 3615 8738 6389 9942 3144 6441 6258 711 8473 5701 1501 207 9608 112 9962 3543 4177 4548 6266 2923 5125 9988 3383 2665 2678 9071 8878 2631 8162 3837 3724 2791 7279 1901 6084 1276 578 9070 8154 1511 4550 9416 2763 9996 1935 7798 7694 9966 9545 2932 9207 7537 7609 9912 2287 3883 7286 2211 6113 6108 7619 559 8926 1219 6818 5695 3843 630 7929 5695 6871 3441 4399 4251 4607 1918 2833 6686 8340 3348 5717 9832 3058 1050 1017 6173 996 136 8404 5643 5120 6057 2924 781 3542 922 9800 7386 9103 530 485 9887 5278 4409 1890 7151 6666 8745 5887 2256 4072 8783 3385 3211 8729 3534 2074 2690 8043 3530 8762 8703 2286 3276 3981 8268 4329 3176 8556 843 8505 3317 8938 5458 9297 3178 136 2963 7168 7869 955 5559 4660 7843 1726 4994 8253 9625 8452 2721 8485 2658 9518 4173 4649 7953 9934 2701 2943 9152 9289 7548 7206 5308 7157 2095 44 1452 7350 9092 2906 2685 6216 2625 8279 6285 1789 4645 546 4864 2458 4945 3348 9027 4682 5034 1001 9034 3668 529 6948 5604 2558 8085 9654 62 2041 3585 1728 6496 6584 5046 5763 9840 4623 151 9912 6739 4542 9319 2032 5952 9725 8647 6889 2940 2503 6260 5920 180 3674 4396 7721 4019 4478 5036 2503 8506 687 7230 7328 2158 5078 4017 789 7146 4366 6695 8763 2720 294 1909 7408 671 9737 1577 6202 7462 6487 3568 5152 9058 2765 4163 3848 1913 2551 4408 5582 9136 6557 5599 4653 3693 8180 240 2892 1697 9867 3387 8792 2660 3480 8801 5473 6176 6146 1580 2010 298 4970 2260 4661 877 7262 7663 3097 4458 5759 9676 9584 8587 4165 5247 5011 6345 9357 4290 7523 2978 2822 1129 1022 7730 7867 9382 2203 199 4427 713 9362 7913 5709 8192 2714 6069 4549 2611 3318 4102 6324 2961 7524 8557 7148 1155 1848 1620 8065 1324 2776 3906 3986 9849 4689 1894 4121 1152 8289 5138 8139 2381 1222 951 3314 1390 2597 5772 7218 4351 7024 9314 9823 7776 9680 7878 5289 2003 8260 7016 5641 3381 9095 9951 6277 3436 9268 7340 6991 4355 195 3280 1329 1396 1922 9391 9520 7960 9641 2746 6646 3539 3822 8758 8718 3955 6544 2146 8950 1207 4960 7337 4048 9728 8362 1916 9050 2029 8549 2237 7963 7936 351 1151 6796 4328 978 5981 183 3480 394 1008 2734 1071 8566 5570 3369 2280 8975 1369 1349 2776 4243 9806 2828 2662 4546 1436 4197 7731 5919 178 4641 5424 6541 7451 9655 8569 2144 4902 7533 7309 8360 2594 1529 9929 2129 1297 3892 3506 6489 4304 8337 7018 6115 6645 1254 9987 3311 4775 1579 944 6269 1789 7874 5677 2385 6103 6483 2340 1571 9540 1308 9667 9048 100 3805 7370 305 5838 6046 3591 3558 7652 2181 9645 4922 6254 535 4688 1171 6120 5450 920 5887 8544 7369 6126 7147 5345 9909 5300 3763 7973 5285 6292 5615 6077 2772 8283 4847 2439 5641 7373 4983 8906 8627 5695 2960 1239 7908 4240 7931 4543 2019 4963 6970 6627 7044 3743 8540 6431 5692 7419 2547 2171 2982 1938 7690 9597 3726 3086 3615 1836 5484 8876 1375 9497 6987 1567 9141 2791 8643 2222 5008 6860 1816 4249 239 6936 8913 9913 6755 4017 8775 4915 1734 5370 9111 8605 3807 672 5211 1806 4452 9394 2712 499 3424 5100 5854 8963 6943 956 4304 522 9127 7494 9098 7216 4601 7073 5205 6010 3127 4289 5999 8423 6102 3710 132 6609 3090 4534 7371 7198 1676 4891 960 5483 8813 2057 9232 454 5500 1257 731 6923 7457 5076 8831 1721 4943 4339 542 8163 2343 399 586 3261 1738 3884 8817 7362 1883 7666 4283 1061 8746 4136 4785 8101 188 3378 4748 6401 2407 675 8748 1538 4914 5026 6920 2906 6842 5833 3958 1864 2748 9670 9304 3414 6464 6090 1745 4720 3590 6669 6572 6928 7219 715 4821 5827 4152 1785 9018 345 9435 156 5243 3232 6616 3449 7956 3455 5008 2526 3679 6059 938 8090 6445 5719 4360 5579 8201 4123 7180 4623 2305 8879 923 7135 13 9626 2442 1274 3857 3311 9597 4683 2837 6104 2369 8873 1390 9984 3759 3962 6327 8318 1121 8065 7782 4772 1552 4239 6228 5327 6175 7784 5787 3954 5986 1941 3971 3219 829 2503 2052 4643 3906 5349 2455 3845 4804 4626 3891 2770 2295 3051 7312 1099 1454 8225 2456 5378 3581 5491 790 4592 8377 2465 3184 9263 1737 1568 2371 328 4288 5072 7335 4470 2439 1231 8919 1851 4267 3697 9402 2114 3082 7311 8386 7760 3210 873 6256 1071 4631 6295 6658 6350 809 721 8339 2859 5202 8954 2607 510 560 9861 9726 6409 6599 5934 219 194 721 5460 1226 9426 7740 4638 2446 2641 5399 1035 7895 7768 9706 5018 8348 3406 1243 1728 6769 4074 8139 8682 6102 4926 9227 3866 95 4636 1206 7784 5451 4265 9339 6627 5679 3048 1242 8609 540 8413 7884 4370 3573 5076 7084 128 2475 9505 4590 3858 4468 4550 5377 1855 7890 9422 4420 5785 7669 2206 7164 4809 4070 8701 9752 3246 7220 8636 1082 1036 3544 1609 3222 6060 2318 2856 3976 6021 906 3243 6300 6758 2402 1560 7140 7740 7112 2496 2770 6909 1203 8880 7523 9820 20 6056 1714 2711 8832 9774 9887 3232 2454 9535 6877 4999 5429 2654 3634 4370 8836 2707 768 9426 2281 2521 5422 3638 1863 6458 5003 4117 5527 7378 7671 2820 4040 1506 6135 1613 5551 102 1745 1436 5317 9144 1030 2589 8069 5165 8526 8054 4680 684 7907 2765 7331 5267 7718 3533 7481 2333 403 733 9589 6062 3614 3382 7958 3683 5623 6543 6962 486 2147 291 3308 4346 8603 7896 3560 5717 8033 6458 3674 2672 3791 2629 3721 951 1933 541 9865 7600 7291 9892 1092 3825 2837 4451 9335 7520 6536 3711 5720 9244 7467 7012 7751 4547 7386 9968 8486 7916 3894 5445 7831 1083 219 7835 3426 290 1817 2027 3891 5173 1260 797 1625 841 3407 1739 4169 2119 5662 589 7661 9337 2153 3749 6464 368 4970 9488 6207 5746 8144 8269 6828 5319 8608 1276 4823 7419 6625 7657 4439 7644 210 9166 2484 9847 2285 9228 5083 6244 8001 3535 5040 1111 2165 8050 470 2290 5817 4205 5300 5526 8843 2950 2683 1690 4505 387 9120 5030 6144 5288 4786 9339 5245 7941 682 5279 9517 1767 5470 6018 8303 6084 6531 9564 4041 9202 6088 603 8613 4399 2555 5487 4151 8361 1351 4539 8187 5972 7894 3521 1728 4608 3017 608 9950 6589 5096 5790 3368 4575 6366 7723 9035 2381 2405 3342 1594 6996 4319 4181 4035 339 554 6772 2821 5831 9745 9880 9899 1500 717 3742 4801 2407 9340 5543 2286 5362 2170 5765 7318 4358 9097 6003 857 1282 4881 7186 6231 8292 935 8434 9207 3753 6296 8547 4568 1224 4587 3665 7052 3304 8781 7297 983 317 3918 6214 9129 9139 3402 9464 9493 2201 5038 4332 8948 3404 947 7618 1525 8436 9036 2597 8079 4485 5006 7942 722 6685 5175 7924 2960 2456 9831 3606 8252 5599 7551 8723 524 3412 5970 6983 7334 64 9284 2959 7852 7773 4898 9845 3256 9212 7459 8333 425 616 7600 2231 6378 6761 3326 7872 7689 5324 9337 2211 558 2534 655 9639 9399 3906 6949 4208 1347 4057 8804 6107 3462 979 7883 1743 6266 8913 8812 6894 9082 4315 6689 8974 5683 7214 6620 2338 2028 8786 2819 1297 8632 8412 45 7377 9024 3985 1723 4684 7044 6075 4317 7634 4442 6368 9284 4437 3404 1431 3950 8548 5677 5501 2338 5455 6308 9892 350 1075 9662 4883 9752 1958 4085 3046 9630 1361 6933 3772 6718 3542 8669 281 2799 1543 4323 2185 8510 7726 644 9156 5990 2865 5913 8358 5515 3721 7711 6955 1984 6436 1982 2682 8260 9117 9531 2614 2417 7591 4147 2590 3898 8260 8495 8527 179 4432 9466 77 420 3745 1157 7589 9189 4187 5369 3346 6572 2176 5998 6625 6455 3673 8155 8129 6202 90 3604 5656 8072 6201 5885 8635 8079 6923 7315 7315 4414 1457 3364 9763 5690 1952 8306 9613 5176 5315 8404 1483 4511 1660 7578 5904 8056 1499 1196 515 4577 4945 5056 2215 1100 9938 8399 2888 2422 7898 6914 5966 3389 7180 3411 6813 7756 841 568 5904 3706 1126 5831 1137 1004 7514 7542 5462 3117 940 9370 8635 2901 417 9270 721 5029 4909 9150 4359 9579 4547 200 4774 8064 7944 6543 1068 1701 171 8009 8228 4670 6737 3140 4904 6293 3615 3077 9612 5131 8493 6143 9779 2148 9595 8448 4058 1597 4458 5769 7885 3070 3805 6431 7070 7473 5207 7396 3598 8817 2197 4891 1904 106 4987 1465 4757 9707 2528 7400 663 1414 242 3152 5663 3582 7324 7799 9954 2977 6864 8769 8946 9111 1024 3481 5290 2935 6068 5071 9289 3300 3461 8811 396 3524 3515 9716 1774 7240 7217 369 643 5010 6176 192 7656 2882 5196 8850 8095 3510 1495 3479 7212 1479 5969 1155 6177 5062 2877 8607 247 7439 638 6084 1139 2105 447 9893 9644 5350 4380 4349 3771 1984 8888 1400 8114 5768 4203 6318 3304 5549 1361 3316 2184 1330 8940 9130 1754 5751 2726 324 7540 8159 845 6760 2557 5039 5862 9568 5357 6778 353 8744 2236 5767 5839 5044 4817 1464 4214 5664 9466 5765 7154 3963 7129 2092 5619 8796 6565 5669 7396 1993 3675 1945 6079 8143 4361 4782 360 7785 8407 2220 9800 5931 3249 236 2846 4168 7299 2914 3144 8899 8775 1609 2611 3058 752 4191 2504 6833 808 9992 3601 8985 8358 6910 4693 9465 6774 8142 1516 6326 1096 3599 6801 4884 3217 9446 828 5355 6243 8656 9841 9846 1236 2020 323 1273 9992 6441 7376 443 7884 921 4820 72 8996 4490 2207 5056 9518 8580 3694 3613 2892 4285 7315 4082 1268 9732 1551 6383 8172 9394 429 351 9782 9701 7679 982 1895 7272 4206 2135 206 8024 989 3355 1146 4634 1521 8735 7654 4866 7106 3436 4594 9920 4871 957 4016 4003 3867 1483 7880 5416 7411 201 8858 7382 9587 5163 9365 584 3621 3221 7386 8349 5250 9326 6747 6815 3954 5487 9870 6486 3148 6022 1045 8766 7618 9327 4505 5946 2420 9671 4198 6107 6642 37 4500 122 6962 5914 6855 7578 5707 6566 5198 1190 8840 1621 6697 5076 4136 4116 6709 6783 697 9379 4838 8742 5238 1662 9593 9963 6866 436 5898 6367 601 8952 428 9717 875 9848 289 8546 2325 6875 8257 6990 4457 4027 8248 9225 2425 7537 2180 1131 4193 4697 1498 721 2762 7993 9541 5930 3895 3471 6944 6879 3380 9243 9378 838 2153 7373 15 8587 9637 557 6238 3583 9735 7943 4819 1693 4268 9181 9030 216 6459 7990 6666 9757 7085 8162 3059 2766 5104 4310 1982 5945 4996 1532 8543 4898 7111 4927 1469 4382 7145 5532 9709 8916 4704 7957 7900 5006 6266 6464 7776 4040 5984 5875 4113 7176 4212 4097 741 719 5617 6741 4741 1740 1436 5976 471 8990 6031 8478 6456 1514 5181 1448 2643 2700 3092 4094 6849 9832 6233 4759 4151 1037 7239 6656 4049 2018 7911 9545 6796 3785 1448 4374 5075 8709 10000 5395 9377 4325 3301 9300 945 388 8314 3983 2695 6274 4619 7128 4637 9722 3884 4266 9117 9722 814 9476 1098 8850 8936 3570 194 7353 8350 5079 1512 3305 9709 3531 2350 6801 1221 7270 41 6978 3947 6666 324 408 9691 5108 7587 786 6595 7180 7596 510 4378 8333 9560 8832 1599 6839 1155 9673 775 8329 5458 5517 3595 4867 4201 8051 5381 1296 1576 551 3160 215 7043 8717 2043 8780 9111 7698 9891 8639 3144 2952 5265 5409 3324 547 9493 8714 4406 2841 4530 9526 7567 8425 6928 337 9482 5987 2318 2520 354 7243 3156 448 1852 9804 9847 4289 3623 5611 7186 6913 8221 8347 6868 9844 1950 9625 5034 6809 116 3932 9994 3086 7217 8404 6630 1255 3674 1045 1104 2560 957 6981 1869 4099 808 3396 1307 4922 5981 8298 7918 4591 7945 3674 7362 324 5530 6629 2213 627 6009 1203 9886 9658 8004 5105 8767 7242 7825 6739 6018 7609 661 7846 882 2012 4072 1530 3510 1292 9002 5483 9218 2428 8169 7074 2020 7667 9563 2751 7981 3249 8278 5743 4446 6971 4565 6551 6688 5224 805 2372 5887 3318 6780 6634 9344 9105 5745 3374 2935 9813 3528 4697 2960 53 5675 9524 4098 8253 6601 1327 2981 8745 2516 8765 6589 8040 6132 7572 1066 9126 3410 2507 8309 58 7297 2147 2782 5809 1528 4132 14 7354 9239 3211 2541 1024 7699 3238 4341 5133 8467 2530 3528 9824 9994 6376 243 219 564 3271 4677 5425 3568 6277 3724 4469 5836 7829 5514 3920 8804 3813 3787 1415 7203 3154 433 9093 9579 956 3558 8749 7217 4942 7516 9237 7540 1972 9199 8157 9507 801 7546 4430 133 524 5127 6303 6502 3820 2823 9796 5763 3250 4816 8678 4766 1814 6815 7563 6240 7981 8992 8633 5056 5931 8783 1 197 4840 3094 482 598 5398 1721 6394 786 1736 657 1851 9775 2719 5353 3633 7901 1272 4298 2566 9248 817 1582 3252 9604 8198 2268 3029 6051 5011 3975 7968 8926 5659 9212 567 816 6061 3063 4580 3959 4496 5759 741 4120 6189 2262 6078 2993 9440 7912 2909 1993 8972 1381 2451 5633 6414 5165 3935 1482 3565 4554 9561 2053 4902 9504 9799 5434 3402 6888 7649 1152 6412 1014 5394 9861 2063 4783 9042 3294 3960 4231 1261 8020 4706 6926 5834 5761 9436 1656 3186 3700 9930 4452 2682 6988 5062 4369 9701 9597 7098 8423 2278 1148 5262 39 3366 58 385 1398 1050 1828 9065 5465 4100 1827 5973 4474 5985 9148 7145 848 1672 274 4099 4852 2519 6065 4603 2109 9305 9321 3825 588 8368 4021 8920 6609 2769 539 1207 1560 1490 6067 5483 5415 2096 8374 616 9142 9415 8532 1706 9974 1473 3354 2279 5713 4116 9546 6873 6114 5111 5344 1064 3815 7072 9888 4408 8636 5640 4545 2392 7607 9104 4306 2160 4439 2069 8824 2155 4402 1046 9185 2865 7619 8970 1171 5937 1987 1791 6385 2630 9536 3389 1195 4744 1271 3840 4564 3679 6647 3838 5718 5707 1484 9421 173 9118 9957 9520 8398 2233 3539 4633 8309 1879 8258 280 8852 88 5242 9712 4750 492 2962 2724 7894 3270 6228 299 8896 211 8386 4639 2454 3503 6218 9144 5721 52 8965 7516 7028 9906 9700 8996 9825 4544 4602 487 5681 828 4958 255 5683 5965 3400 6574 3833 2922 8274 4521 7043 146 9724 1492 3307 3403 9597 128 5815 6504 3398 3417 1995 459 2222 8055 5887 3987 6892 4273 7817 8514 1252 9716 3001 5234 9532 7991 3173 7771 7027 6966 3423 9695 9085 1968 6002 9250 873 3480 4414 5894 758 3660 7728 7737 1316 7024 4453 5375 3821 901 8294 2787 1785 2889 7443 1035 6460 5194 5281 5057 2010 8033 9122 582 4106 9074 2437 4219 8711 58 780 11 7474 8564 1052 9077 8045 4697 5271 6224 644 3270 4318 1639 7033 7629 9908 1773 5993 5494 3733 7498 5730 1860 2986 4096 1139 3567 7484 7315 2114 7001 5162 7232 8687 6667 6951 3622 3265 2982 1446 6548 3803 9076 333 2106 5390 7028 3858 1585 3121 8104 3810 2598 7203 7438 8598 9754 857 8711 9603 8713 7961 5201 9872 3214 2978 3075 5360 7831 7921 1085 7974 746 2046 9644 3502 851 6542 3044 6143 1611 8057 8034 1744 4212 8652 8185 4275 8247 7218 9985 7634 9322 9378 697 652 7742 7073 7366 8178 479 5605 5731 3866 6482 2903 1076 6147 9162 3450 5005 882 696 809 4731 8628 4671 2179 9803 6116 753 2000 8980 9708 6419 1941 4578 4769 9483 4796 6317 7529 9618 2424 1476 6682 4544 109 2182 4117 9116 1134 166 5658 1465 6928 7279 6487 4300 3937 1411 1874 2346 8813 1681 8217 1958 4288 6910 1981 7911 6095 322 3652 5657 2022 9098 6924 7649 527 590 6940 9288 8882 5154 3655 4901 5989 8851 3264 570 9240 9032 973 4387 1444 4876 6775 2848 5358 7975 6610 7511 4985 1410 4106 8865 6104 71 630 5632 5807 596 815 9156 5068 7703 8806 8487 888 4789 4790 3164 4047 1295 2907 2106 6479 7552 8685 6979 2127 244 1382 6471 9944 6623 4377 543 6137 6828 3050 1044 1072 1663 5188 1242 970 5753 2849 1218 3693 6990 3577 7913 9401 1029 9140 5827 7160 382 9393 9182 7765 5429 6546 9194 8822 4643 521 4820 962 1773 5040 9363 6948 1062 5479 6986 6439 3664 1291 4057 6409 4378 9467 4130 828 3341 7456 6344 6646 4697 3448 1803 5837 3094 3913 3354 8128 5294 8264 480 760 6170 4966 2868 8288 6071 9162 3270 449 3728 9084 5865 2075 3262 599 5833 5073 1470 6024 452 1059 5617 6232 4961 25 2477 6802 3334 8168 2111 4410 4696 8651 6245 5166 6123 4996 2216 8985 2625 4614 7246 5295 8712 6386 1630 1771 7604 7759 8118 5702 395 8271 410 1717 6101 8239 9882 341 5437 2947 5688 9527 8234 435 9710 389 2410 3744 5216 8161 160 9725 7322 8296 438 4617 277 4548 3787 100 1239 2107 460 7389 4326 3671 5802 3130 438 3338 6957 5362 9886 256 2380 8723 8308 2266 6725 1631 708 5947 4841 222 8871 6063 4840 5239 4431 346 2978 9588 9667 2472 6237 7943 747 9747 2876 1470 9070 8357 5011 4124 6037 4894 8740 7908 93 7607 6928 5383 4232 3844 219 5781 170 9712 5334 5294 5596 8271 5213 9792 4439 1950 9387 6857 6575 9530 6908 5632 2264 7306 3199 9122 9767 1964 4518 5783 6351 6370 7826 2960 7736 4414 1837 9080 8808 3081 2767 7793 5164 8451 2559 6650 2707 7320 1408 1038 7959 5952 3897 1915 6392 2045 2674 1112 5997 8779 6344 2958 1449 8274 1458 179 3776 1509 2319 787 4844 5231 5595 9199 5256 2571 9563 1113 9192 3000 5561 8540 6913 6496 9 3759 8658 8698 4508 8831 186 1033 1656 9427 1273 4929 7844 3275 2658 5796 783 5050 3585 5859 6889 5622 4203 7936 8642 676 1889 3683 4192 2174 2750 6304 578 7654 9293 9110 4330 2721 6181 486 5354 77 6929 5734 6139 755 6508 2662 3381 1290 1476 6313 7434 1019 1071 5854 2284 6775 6126 8940 7295 1313 2209 9198 7696 6002 8060 5664 6169 7391 7290 4964 6378 1286 7206 8741 1570 4218 4135 366 5516 5099 771 7714 2910 9997 7768 7609 5678 5276 1706 6849 1624 5851 7862 1397 6005 6472 4585 4804 3899 7890 7384 8311 3136 833 1213 5588 4121 9502 4656 6350 7510 7932 5960 5639 4388 892 5406 9533 849 6795 6548 8831 5437 4802 6388 251 4845 3789 7925 392 807 2617 7501 960 401 4204 4932 3054 8373 3443 2836 5317 518 6416 921 3767 354 3255 2415 8123 9620 4848 1473 2666 6107 8054 1231 48 2797 8627 2488 5187 5032 2608 7895 4317 1525 4131 250 3699 3579 5481 2777 4499 3159 5366 8490 4383 978 1866 7022 9743 984 1143 5960 3162 4884 8289 8438 1211 8715 9996 4100 1989 3549 4256 9803 2286 8162 5031 1205 7755 7473 8008 9410 8598 7755 635 3408 8501 1746 1563 647 207 5572 4276 7107 2331 6245 219 7248 8848 3195 5814 5478 6221 772 105 499 1353 1905 3886 7733 9149 3959 8303 8075 725 5266 5955 1855 494 1541 3342 9714 1267 3400 9996 4364 6857 4251 2494 9721 9791 1107 3298 927 1901 7924 1892 5712 8586 3949 9689 5730 6275 9440 3081 1510 2737 9115 7915 7076 1616 3903 8278 932 4206 8334 1810 1940 7236 2732 360 8071 7848 565 4003 6292 2371 5377 313 2385 1391 7990 3998 4235 3591 5436 1637 2667 4479 2446 9024 5421 2905 9904 9829 3801 5814 4768 8827 6220 4487 4392 4496 1567 5430 8539 675 6892 5671 7727 6433 6075 1900 8921 3845 6823 3930 5616 7277 5302 932 5600 1469 1410 3372 9622 6759 9605 1573 1254 7090 6068 8998 2394 1677 172 3668 4098 1849 1875 311 5078 3222 8082 1946 8770 6541 8795 2499 1884 7723 2624 2259 6430 4135 4672 3769 1025 4880 7170 3914 7491 608 9438 820 3281 7270 6609 6643 7386 5891 2117 5355 9146 2879 2602 8173 851 9439 5244 9939 3363 6939 1648 1995 9298 7690 4358 7654 4025 4804 5549 7989 5329 8094 7154 7656 2027 3126 6918 9527 1932 7601 2477 428 9298 4636 3554 846 1167 9017 1717 2962 3180 8400 7546 8734 2378 9821 1116 7131 2327 5119 9546 7227 1121 5104 7822 4552 9895 6330 6728 1166 7653 9232 8940 5571 5542 8315 482 9732 9607 6934 4176 3622 3349 5005 8963 2970 2328 9366 7155 6515 6570 1688 5070 3597 6195 400 531 200 912 5885 2153 2061 7144 3639 7095 5930 7312 3823 8009 6954 3481 4534 770 3478 7938 136 7502 7737 9804 1069 4271 3497 8352 9076 2730 2635 1155 2674 4234 9145 9757 9041 610 8788 3235 3606 2134 274 2582 6236 5867 5663 6187 5176 8622 7835 4361 8055 3125 4079 4679 4541 9862 5750 4963 655 6879 1914 1404 8472 917 2973 4239 3222 4435 9464 9089 6034 5373 3540 2630 2790 391 671 8770 6015 6187 4281 9293 9678 5740 4054 781 7564 5507 5522 3642 3682 3353 9967 8760 7562 4542 5979 9918 6810 1999 2012 3433 9467 2916 7103 9286 7595 1522 693 3824 5116 9463 7744 3114 2593 745 4617 4312 7405 8542 3403 4701 420 8873 9690 8904 5616 9675 88 8903 1098 8744 5115 6448 5606 6188 3263 8994 8248 6840 5285 5238 6005 8102 8272 8583 7270 3603 4476 2594 7210 427 7455 4320 6637 7100 8300 514 7770 5341 2843 6566 9902 1362 8657 5216 5679 3369 8766 932 3394 6077 6982 5316 2573 1146 6952 8230 3142 8639 1214 2585 7718 2457 5692 2399 3547 5782 1883 6571 6521 8670 2093 8490 6406 2367 8045 2729 2709 1829 672 2574 2239 7083 76 2072 1480 7591 8601 8627 2717 6637 9767 3154 1203 4023 8865 1990 538 2491 216 5607 1209 9624 2345 4259 6260 6246 9512 7989 1692 8752 4782 3739 6086 7216 8168 3189 3637 2005 103 5509 719 8351 6577 1373 6513 1883 7976 6560 6889 6209 1845 8031 1221 8929 2369 8433 621 1667 4216 5000 2131 5538 8658 640 3174 8071 7665 2226 8341 5351 2603 9771 1662 7359 1954 9803 9499 9363 5726 9556 3632 294 5848 3811 5561 5107 6 1039 6711 6296 4313 662 5787 5628 7080 9533 2555 8260 3150 1953 1289 7633 8823 4935 4197 9945 4353 5118 7562 7841 8006 210 5169 1390 8853 5568 7853 4157 4409 5931 7771 1059 379 8814 7913 1313 8744 3140 178 7575 6015 5006 7762 9333 9668 4452 2205 4043 951 4672 3508 2395 2027 3147 9631 2411 2540 8330 5734 3211 2988 5762 7492 2268 3884 94 2494 355 2719 7867 6019 7531 523 8692 1317 3808 8053 439 2127 5479 6350 9034 9637 1465 2422 5481 4992 126 3975 4350 8158 3770 651 1019 5870 8663 6846 3749 3756 7347 9530 543 6277 2913 558 1312 5833 1545 5234 9060 1981 6607 1354 7352 1386 4166 3690 9203 3891 6226 8386 3118 1485 2733 7213 8923 2278 3580 7223 436 230 4586 5453 8930 2980 8085 6956 7192 5936 3844 6432 9866 807 4967 5661 8193 3873 7191 1842 145 3104 6324 5957 7037 8205 3666 960 3816 9185 8076 691 6753 7262 3445 6336 7876 9856 8203 8049 1592 3534 5030 3548 7189 6243 4919 1522 310 6888 867 3297 788 6057 3549 2239 4475 2047 9943 8307 2341 1824 1421 3075 1054 2441 8295 544 8963 5812 3643 3065 9475 596 8268 3448 8861 3259 7362 4364 2106 7977 6689 6205 5360 7591 8073 5670 2549 1254 6815 5873 1530 3712 1780 6774 6810 4957 5231 9645 9695 2585 2125 4143 9989 7533 6643 799 4518 7812 8632 6284 4754 7877 2409 6692 4657 6684 9968 2992 1013 5879 5885 7482 6157 6335 9779 5236 7470 6228 3999 329 8669 3648 9975 5881 6187 3270 1043 8987 9432 366 2022 9015 1395 240 9043 7613 1369 5233 5822 6074 4496 9531 6849 8993 5066 4353 2664 8259 3370 3526 8843 7852 8859 2941 8623 9891 6828 3336 7765 375 5782 3868 6331 9740 8718 5346 5420 6753 360 7497 2696 8066 6404 8042 3934 1058 7056 159 1234 6871 5755 9160 8207 9727 5307 8253 9404 82 9711 7613 4265 6580 9643 5722 1792 694 8597 6483 355 7366 9402 9385 5944 9822 275 1804 3977 8690 5738 9544 4973 2577 741 8966 1096 9240 8415 8451 6336 6105 5282 3173 2829 8449 3041 1625 63 518 880 6019 4045 4483 3461 8180 1390 9604 493 9061 876 6148 8283 7231 601 1726 227 489 9096 2815 5567 8621 3628 4898 9560 3326 9491 3144 4030 5607 7249 7378 122 7680 3422 4901 1318 952 9504 3470 9687 6974 9292 5253 7335 8812 8636 9584 421 6570 2265 5045 2382 4986 5768 17 1850 5164 6688 7142 5160 6933 1600 3093 7872 7155 2497 6475 1452 1622 370 2708 7132 134 4355 2689 1013 5375 5518 6502 448 2849 8499 1018 4496 4642 9560 9035 8568 7796 145 7956 3882 8959 8737 7627 3473 5341 9593 9114 5913 6999 8188 3159 5386 3320 3970 7059 5240 7486 5550 5657 3726 8836 4398 8828 7722 7237 9904 7976 3702 8902 1365 5013 8884 6740 6538 7351 2817 2136 4457 9482 1424 172 5068 8411 1155 9173 9496 1027 7447 9620 7542 7541 7661 9885 6128 3610 848 4245 187 5950 152 738 1287 1289 9546 2945 3613 5316 6466 9256 9479 6938 6253 5630 5975 606 1507 6223 5624 3976 5719 4665 4273 3240 4900 9343 3446 8859 8535 9025 6657 3008 6143 143 6792 3472 2318 1314 951 623 261 2524 600 4019 9937 2016 2183 5148 9176 1296 173 3511 7157 9144 1784 6740 8125 2717 3338 5076 4894 987 4553 7309 2880 4064 7455 2210 3788 4804 5405 6967 4051 8482 9805 6673 6896 502 2864 9854 3986 7173 6297 6081 6098 2095 3326 9003 4506 3547 8590 9363 6430 9218 5701 484 4538 4213 9875 3713 9180 8874 6629 9160 5694 9603 2864 8322 6569 2848 3361 3495 2282 3985 6280 8874 3993 4861 4011 3741 2611 3502 1194 358 8198 8208 6037 2332 5928 161 611 5084 3896 6874 1203 6554 9757 8423 2468 1278 7841 9978 988 4612 6918 6657 3066 8948 6647 7404 645 8947 5457 4933 9290 6718 9101 5782 8789 2670 8688 4584 415 8106 4862 395 3643 9068 8293 6041 7064 7558 1304 9511 1505 2908 515 6555 2267 3377 6201 8936 7352 9734 750 2300 2606 6473 4713 9728 7191 6091 3046 6907 1726 2152 8096 7445 444 1092 5570 3710 2068 3477 7095 658 5917 6513 9460 5491 9883 6897 1562 8821 1389 9674 2607 721 8875 9426 3127 2585 9894 8020 1482 3161 2159 3576 7676 1738 3840 2733 1585 2704 5134 1692 1272 2227 346 5719 7224 6833 2725 6627 1400 8373 7555 9864 8064 1109 9425 7665 8824 1458 2663 6488 4175 6053 5796 7723 7518 2988 1668 2476 6097 4959 4222 3559 4306 3007 1774 3549 5582 5162 2508 2938 1442 9604 446 1223 308 7586 9952 5389 3308 7344 6066 701 2235 3683 2490 7311 4684 6385 9328 7218 2050 2432 8344 9307 362 5508 6409 653 2484 2515 1538 457 8664 3124 1732 563 4830 6217 9559 8320 2583 4506 8679 4428 1488 7183 1836 5662 8724 8548 1156 2239 484 1712 6327 2476 3044 4282 4619 3428 9176 9004 153 7804 1902 5006 6425 1820 7409 2582 2449 9199 9764 5613 7320 6750 3773 9624 8173 4 6530 7915 7 2895 5241 7653 8235 7015 8541 1791 4638 4190 5427 8936 6154 3736 9309 9181 9328 6630 4973 4818 3781 1553 4481 183 9705 57 770 637 4818 3271 9645 2308 4131 6282 847 4138 8793 6017 9047 6401 7112 927 3439 3672 189 5750 9476 8070 6047 843 557 8410 846 5209 7013 7738 120 7165 3050 9112 3678 519 4503 7138 2752 1297 8058 2284 5096 3762 108 185 7899 4563 2670 9735 104 8891 9956 1898 3800 8299 150 5561 3753 1694 5587 8421 2257 3003 3334 4282 303 134 8453 7593 1774 3208 1648 7396 1644 524 8876 3640 3464 3152 6719 3229 6205 2567 7185 6010 8887 904 867 1189 7893 2306 4272 8678 9479 8025 6596 5641 4923 1059 560 2858 1974 4920 8829 8381 9013 3903 9650 4595 6062 1086 2499 9054 5773 2876 152 1603 432 6737 824 6168 8724 6491 4379 9005 7087 4996 8018 3740 5749 5613 9310 2082 7983 8347 3392 174 3073 2810 30 2829 5656 3018 1650 530 9001 4793 2003 6359 9801 2419 7088 1759 8579 3864 3690 6322 9084 1519 3812 429 548 2607 3238 9322 8326 5881 8666 5871 9312 6225 5323 5743 4830 5997 8873 7782 6487 9664 8700 9965 6655 7489 7972 8150 9288 7070 7865 7585 7517 2024 739 531 1811 8207 5904 9074 8014 6788 5932 3624 4063 5672 373 9905 1754 1563 6574 8184 2595 2662 5430 9942 9988 9802 2038 211 8237 6324 6810 5991 1677 15 2635 8906 2244 672 1618 8641 1985 610 9379 1084 6806 4010 4154 7482 1604 7152 8595 6543 1339 1845 2454 3868 8645 1151 4688 3399 7798 8469 1586 6679 3557 6798 5092 9700 3399 3895 5738 7939 1527 9851 4917 9136 5504 5598 76 9350 7387 929 721 5805 5172 2962 121 7722 136 8200 1061 7674 2620 6338 8044 6277 9692 5655 4195 263 3859 9139 4527 7948 9288 1474 6938 1028 9909 478 9124 5978 1383 1952 9552 9277 3841 6852 998 7588 8752 8257 3511 271 5875 9702 7223 7041 7328 4070 3297 1401 2438 8327 8168 4648 2205 6008 3053 3646 4780 9239 3421 9361 3878 7428 8422 326 7592 1913 220 6958 9870 3019 5261 3517 4567 3961 5617 3826 59 1020 5338 9234 6373 7419 4259 9719 5122 9081 1437 7659 2081 3037 763 6071 5928 8048 418 2581 5796 6463 7828 1988 3153 2457 2071 7595 4330 7538 1277 9204 107 5584 4959 7686 8600 2963 1543 8187 7412 2886 7577 2301 6411 775 6540 6505 4804 7007 663 7840 9419 6809 9817 8947 4693 1045 7967 6759 3090 1943 5864 6792 4473 7024 3035 3808 8410 7654 23 9534 7721 6256 6297 3140 3019 2786 7856 7876 7721 8407 4930 4837 8346 811 7813 5614 8553 2126 3302 9661 1726 948 6477 7994 9768 1628 4370 8191 6262 443 1171 8466 8403 3629 9425 1960 4206 3014 6329 6062 6248 9409 2908 4539 988 5491 4950 6150 4450 2588 3877 2080 8582 6078 5553 1424 5982 5829 3272 3087 1161 5681 5752 6942 4882 8470 9376 245 4973 8899 6488 7976 6040 7236 6620 6383 5370 1110 1579 4585 292 8149 1440 5457 6605 4926 6446 9334 7634 9501 2973 8927 6925 2333 188 2653 3671 7344 1456 9315 7612 7666 9044 3444 8114 5214 7263 9423 8706 893 726 5026 1911 6161 1125 9440 2502 517 7121 4205 9381 5700 3788 7409 1873 3101 4069 5064 3209 8563 6565 7411 9810 5313 3072 3292 1225 8031 3337 5307 3537 455 8032 6553 4277 4378 7038 4049 4998 760 4595 5549 5168 7943 1652 5512 2677 9135 2374 3833 2974 3045 7661 502 9939 1579 2363 3944 3000 9385 4903 1538 6470 7643 3065 3017 7108 3136 1646 5140 2894 6742 1861 4806 5296 4097 427 8902 9419 8158 7615 9606 233 8830 9529 8645 4613 6935 663 9449 5 3496 3110 9449 1051 4931 9544 9697 191 4384 8993 7150 8322 1454 4144 1119 1009 5224 4572 8619 2403 8245 393 6714 7 9845 4444 167 5867 7162 2335 3931 9718 2928 9978 6477 2911 9080 5786 5100 9391 8902 5223 924 1209 9927 7810 7572 8855 4412 9440 3257 5419 4714 2759 9880 4674 4488 8992 6546 3613 3040 2668 6340 6425 3176 4046 7954 3973 3135 154 3859 7645 324 8943 9827 9919 9161 9173 4739 3726 9326 8620 3444 913 50 7223 3746 4873 6508 3010 7156 8388 170 4425 251 2438 3946 5282 5288 1407 7117 4350 411 5986 5057 5411 6152 9883 1224 5145 5808 2446 5539 9435 7489 6026 8006 8139 3971 6243 4183 9888 4361 7712 2142 8726 8903 8938 2276 8865 9465 8368 9956 5537 4417 7719 9566 995 2353 7056 2762 8535 986 3740 4206 4177 4783 1565 438 9292 4170 1527 6546 4380 8545 9255 7942 7122 2106 3175 9701 2141 3462 2061 7304 4030 2325 8792 7554 1562 4977 4556 2136 9931 1638 298 7872 7888 7695 3753 3246 1666 9546 2797 1527 372 2749 1441 5781 9391 9768 8239 6864 5726 7776 9156 202 5262 5135 500 1649 4799 8699 6689 3947 8564 1046 3167 681 3949 7066 162 3079 601 5652 9095 1223 4080 4432 2892 2228 7815 9385 7996 3984 9832 921 2909 5829 7868 8996 7436 6174 2235 1414 5271 609 169 5572 3200 4427 9917 7183 625 8655 6984 1501 4823 5614 2295 7879 9918 7683 5490 3569 5555 7975 3415 5195 4690 1412 813 3884 9217 1443 5791 410 3243 1809 1198 6887 2466 2479 9924 8785 1785 7512 9683 2993 9905 1460 3663 1560 2291 900 1593 6003 5909 96 2111 458 4083 6774 8269 7600 3233 9 2948 6878 2095 8359 8348 9857 6774 2850 2300 5029 353 9594 7139 5337 4227 8890 5707 7827 3327 9641 9541 3031 9049 5247 8168 7933 7988 269 9552 6269 906 104 7996 4881 1159 6178 451 7955 2361 3562 6656 7632 5841 7174 1445 5536 3538 4643 3662 9194 486 6267 2690 8816 8231 1060 6884 1056 9944 211 5323 1580 3320 3980 547 4067 6455 1545 1341 2903 9793 5309 5142 3216 991 1909 9184 6478 745 6579 7014 885 9188 1206 9786 5335 8285 6611 9102 1554 8052 1819 6344 4294 8284 2934 5143 2790 3622 6526 2289 2348 7258 5910 6313 940 6951 7890 472 9803 5293 559 9882 5318 1423 6337 1535 971 265 8307 6196 4296 9039 6193 936 8384 9097 8989 1425 6082 489 5511 9217 4030 5027 5824 4966 7524 2560 196 9625 9858 7841 5655 307 3906 1009 9643 9368 8430 9675 8023 2930 578 3777 766 370 4911 3818 1762 4254 4439 9156 3333 2277 2353 3601 1579 5216 2038 3416 5214 9999 3871 9511 4986 6209 8771 2987 5656 5834 7857 6252 7863 8757 6316 4667 7547 4252 1083 4409 7763 3829 2588 6603 2930 6680 3895 4636 6610 2437 1286 977 2821 3936 7042 4538 9557 4296 5074 2766 1560 7744 4448 3102 6375 7880 7559 9015 9883 4054 2647 4405 1158 7452 2810 3798 4047 5570 6546 6351 9010 2286 4210 9771 8997 2227 6930 5357 6981 8221 2416 3262 7659 8286 3688 2136 4421 1623 8513 7542 4621 5227 6496 1692 8504 8451 7203 188 3709 9727 2432 2725 2176 470 6052 6353 3289 8135 4817 3737 6030 1182 4047 6207 2936 1831 4451 2250 4180 4707 9520 6961 3766 5711 219 5464 8251 6027 8327 6925 2346 2793 8483 780 5634 8315 981 841 3535 7275 6780 5111 7838 2103 8054 9271 7515 5898 2464 2325 8198 9809 6230 3599 2837 2927 2919 8055 9192 6814 329 5418 143 2099 5522 360 5946 746 3472 3802 5719 9359 5788 6087 2161 717 3150 6495 6159 755 8785 7962 7700 5144 1784 321 2012 2355 6792 1461 385 2764 1604 2740 4392 6266 4255 6921 2582 1547 4630 7435 7791 9295 5019 8120 6152 2122 4636 5411 4026 8649 3337 3467 8675 201 957 7806 2 4011 1586 8200 9717 9644 8372 691 2114 5531 9659 2390 1467 9370 9495 7739 4800 5979 6762 2825 6146 620 6119 4721 6515 8779 70 8688 8423 3797 924 4062 8314 4800 7869 7578 4519 8393 1803 1371 2061 7025 6566 9399 627 7985 9958 9332 6836 3366 6172 3451 1637 915 9594 9976 1839 5163 8382 2658 5089 2673 8663 9657 1873 3065 909 5452 8882 7502 8255 8641 4638 3959 6186 5632 9865 8099 9437 1775 69 9849 8593 156 3541 8975 3661 6343 1508 7673 7725 2985 604 3185 3930 1156 9883 2623 8575 5397 5274 6031 1024 4132 1680 3282 5975 5925 8721 9032 8588 1084 1097 7495 6629 6068 6714 8801 163 6562 4730 6921 2326 7758 5689 4913 1182 7526 8900 3971 4263 638 168 7557 6696 6793 2456 7281 2609 1925 455 1450 8510 3945 6863 5321 7270 5466 9047 7762 9665 8443 4971 7200 2116 170 6368 9717 8911 8093 7876 5291 950 5374 759 5535 6699 965 4516 2800 8713 1795 6191 8356 2480 7769 9583 4485 1229 1171 9836 5010 \n6647\n1279 960 3334 4765 1520 5350 5573 3635 8333 9821 9702 693 975 5429 2638 9285 9775 4481 6710 5947 2425 3023 1488 7568 5566 5205 267 7437 4700 4807 1889 4386 6313 2033 3683 7957 2638 2217 4211 2252 725 5053 6305 7431 6406 4480 8459 3393 2103 9376 8944 65 9137 5377 6043 7358 121 8167 7688 4099 3323 8187 6322 1473 7850 2845 4796 500 4297 4425 2652 9599 5671 4867 2947 7556 7949 3515 934 307 4283 5595 7483 1069 1061 2364 6819 509 8022 5336 4576 8885 5503 9994 1480 2451 5535 4292 2719 550 8854 4526 6744 1015 4260 1425 7452 8668 791 236 3112 4433 1795 2741 3843 6979 6756 552 9190 540 9996 4592 924 9695 6663 2930 6677 9994 715 8865 3636 2600 6599 9326 5234 7181 1189 4314 2638 1624 6416 7631 6109 3435 6269 1273 6020 5005 4341 3015 8237 9961 8399 5235 220 6975 2776 7962 5031 498 2797 5466 8833 6190 3942 5117 7405 2924 2068 8870 1756 5513 4177 6648 5821 6713 8580 2846 9797 9384 468 8358 7581 2267 9771 9609 3830 7540 236 1254 6717 6706 8213 9941 3794 4034 4920 5655 178 4246 9376 9082 8475 5329 852 9538 8977 8604 4734 5526 7318 4753 4319 9726 2524 6601 4537 8424 1527 2104 9340 3092 1556 9845 9544 3190 4488 6313 9886 5009 5984 9036 5448 3274 4635 90 3225 9523 763 3120 8361 4529 7399 2404 7553 255 746 4047 6038 3701 5122 9196 2740 2460 8693 4721 4161 6215 8838 7851 7482 1452 1056 3414 2914 6511 3990 1454 1910 5378 9691 8792 5391 4108 9199 4879 8624 4918 5376 2170 130 6687 5365 1897 4891 5944 7473 6722 2058 1814 1848 4877 3872 7818 7964 5868 3591 2918 8656 4401 4861 1441 372 3548 9006 5935 9428 3298 2969 6196 5977 215 552 276 977 1947 1655 4198 4906 4087 389 4756 9943 5445 9487 6653 1982 1888 6086 8916 68 3949 2849 9952 5125 9919 8695 9198 4292 7743 3747 1069 6622 252 3216 2120 6575 3843 8919 9005 8034 5708 7981 4822 792 6423 2603 8544 6295 3113 5753 7377 1301 3596 1867 4628 9805 7447 494 7143 4245 8137 2513 6318 6913 4741 7819 4268 9727 4395 8904 8559 7460 8943 134 1527 4913 19 5859 8857 6693 2828 5970 8657 3721 8845 9751 928 8061 1916 9768 32 4738 5809 5336 1847 2235 3526 9401 4401 1840 9325 4013 8110 2523 3599 6516 7218 10000 6384 6930 7432 3020 4101 3230 3083 7193 7851 3245 3799 2396 8110 2428 1887 3376 44 5138 6249 1348 3113 7359 1019 3035 138 7567 4813 573 4340 9596 9991 886 8318 8055 8836 9111 9838 5686 552 2791 7652 8328 7086 3338 9264 529 8059 3667 5501 4130 2542 8059 822 8761 350 5790 5744 7980 2310 3888 2866 1149 9478 8077 1737 7299 4972 5248 3003 9399 3368 7430 6961 2080 3090 3332 9476 6955 8835 5602 5850 4672 6877 8689 7715 1486 3371 2731 1147 3223 4883 3981 2609 8026 6448 6928 1679 7857 5959 6657 6602 8748 8281 8523 587 1701 2525 5624 6020 2247 3759 4626 3110 6151 8202 293 2472 5913 2702 3493 8490 1408 9144 9729 2144 9264 8648 8371 7923 8797 3316 3901 1489 4029 3162 2201 5252 1024 4483 6623 6689 4615 829 6554 1699 8776 3173 273 1746 6401 576 1259 8862 9912 3301 2476 7142 3004 8715 6528 7659 5806 2520 5084 5790 2824 4169 1950 1433 3891 8455 5580 7646 1472 5650 3784 8340 7987 2751 3818 7346 3399 4231 9916 4968 6222 3550 9582 2016 5225 9375 7269 7689 1942 9800 6048 1908 7644 7099 372 5377 1066 7072 2878 179 1058 5257 5529 2117 2707 3773 3542 8751 919 9254 4149 4263 4130 1146 5220 3753 1705 3065 2110 4278 4284 9957 7087 2241 2909 506 1386 3732 9813 5375 7975 4787 4853 5585 7327 8407 101 7680 6841 8806 8700 7382 6881 6725 9836 2355 5666 1944 868 3401 8366 7233 8822 3511 5883 3984 5013 9665 8106 5689 3252 7185 441 1065 9261 9938 7213 9121 5365 3042 4457 7964 9947 8827 9810 5006 3250 6429 8140 6940 693 8843 6059 7006 7000 6277 6360 9002 6828 6339 9825 333 2600 9433 4539 263 999 6414 7163 9618 333 1591 6672 4985 1938 5016 9498 6040 7304 5236 639 2700 1854 9759 7054 6304 1724 7769 9756 7257 6771 7616 3992 49 9964 9125 5275 7156 861 4306 8462 857 6355 8002 2399 5153 4484 2878 8771 7481 9111 2947 5285 7002 2941 8703 897 730 5929 2957 6409 5415 8415 7223 7779 4197 1705 6974 2735 6634 4547 6751 7274 9739 3920 3068 2280 9677 4644 3486 2657 4296 574 8463 1225 3912 7803 4943 216 2078 9791 5057 5408 4124 5057 6435 7583 5495 4555 3837 2788 174 587 7887 4810 3847 9687 2149 7181 2586 9409 1464 548 9195 1882 4458 6755 4204 3657 2705 7201 6713 7578 5610 9297 3701 1438 4871 3110 9718 9289 7919 8047 9771 792 6970 9945 9240 347 2926 363 877 9452 5429 951 2633 1675 7369 6855 9635 8089 7929 6473 6192 2909 7513 3977 1715 363 3859 762 9377 1782 79 2471 3001 8830 70 6421 4866 4715 6615 3881 9700 6230 5584 8330 4433 9780 3182 990 7482 5420 8035 2080 9661 1866 5591 7420 1711 3306 2208 9277 7731 9444 2391 8033 7391 534 3647 3964 6893 5312 9594 2668 1912 8656 2410 8503 764 8996 8434 4107 4678 7847 7984 271 2867 6503 167 917 9841 676 4169 2178 8875 3916 1509 5265 3282 9902 8588 2223 8589 4783 7789 6664 1085 393 2021 921 5098 2154 5021 4225 8687 2878 8233 9093 1107 2025 7722 6565 6960 5819 2061 5976 3034 1950 1661 4293 4245 7491 2521 4828 2014 201 9342 9867 2382 320 4597 9161 1246 5371 1812 7567 1068 6541 1770 2976 2863 7929 4455 603 1363 5563 8995 5509 2893 8964 4540 4660 1689 6527 2593 1897 3115 7177 1804 6504 5077 6852 9292 1123 3621 8390 7878 9777 9749 4230 9831 5724 140 9665 2743 9991 6662 8180 646 1569 3836 4260 2105 6125 1117 9547 2151 1675 5129 1751 1291 4999 5344 825 5765 87 5470 7190 9961 389 7902 6074 1155 3923 1993 7572 1789 9906 2775 9547 6458 5516 1620 782 7325 2909 9450 5848 3303 8249 3288 3227 8087 5691 3859 9122 9197 1568 8183 2945 8762 2228 1713 1343 6102 8021 8786 4966 7698 1313 1412 2048 2270 1636 3172 2355 4737 7525 646 8312 8052 5375 3663 1938 5374 5815 3214 8472 1772 9808 9245 7375 4347 7037 4830 3367 6887 2990 9918 5237 7189 6454 7125 3873 3056 1898 8654 2396 6828 1611 1336 7655 7890 3614 5733 7352 7580 1034 6473 3722 9184 3486 2163 1429 93 4586 9574 9275 146 1246 6759 1096 8430 852 8663 8981 4821 653 6537 9004 624 6622 5575 1335 12 1292 4502 6970 5468 2443 2752 3868 6125 4166 8062 6535 4420 9508 4297 7192 1761 4982 4154 9288 4057 7219 6951 2274 9602 4510 2605 3300 1944 8829 4175 736 9745 2432 4900 2250 9071 7280 4563 2770 945 809 9527 2923 9961 4278 3931 1872 7371 211 3239 3469 1990 5346 1902 3960 6650 5757 9457 5774 8943 8046 1060 7245 8523 517 3360 4708 2712 7335 3009 3389 8788 1273 1522 6898 8745 4434 2151 1303 5155 1720 4767 9131 5022 743 6743 6717 1640 8982 5353 1910 678 4760 4460 5539 9085 102 6885 47 8973 8556 5336 11 8763 8402 8401 8615 3630 7673 2493 2416 6905 9231 5045 9786 6106 2214 7080 523 8912 9195 3277 3178 8287 6643 7386 3757 6670 5958 2435 7401 4071 6966 4070 7083 4519 1844 2897 1025 8036 4899 4813 1574 370 1455 1529 5680 1036 2610 1992 99 8104 470 4111 6638 2228 5069 9880 7405 3419 8059 2656 2268 6391 2570 6461 5186 9809 2507 8704 2281 6706 4318 6377 3308 5578 6413 6678 6420 2426 9607 2980 3038 1375 7378 3804 666 175 5219 5117 4463 8399 1711 3617 4833 774 2536 6223 8607 6346 1259 536 9132 66 4188 2419 8937 4336 5504 4877 2317 8830 7705 9121 1501 5557 2774 9182 2936 9274 2324 597 7293 1682 5827 4426 1230 7153 3328 8137 5791 4017 7622 1973 6707 2806 1256 354 9530 4408 373 9885 1434 3550 1473 4462 7021 9962 4599 6782 3233 8704 4657 2118 4295 1930 5639 8255 9461 8605 3255 5366 8738 7377 7274 2813 6856 5369 8485 5586 4664 4422 3530 642 5654 5544 1659 3997 2400 8893 6480 2422 2423 1979 2712 3626 5113 8514 5173 366 3851 7578 9330 7586 9187 2883 128 4964 8970 2472 3475 8697 6444 154 8737 2497 6533 7738 9231 6445 7270 1250 7765 6017 2552 723 1112 6345 4881 7064 7474 8010 2368 9556 1722 8890 1771 7124 5062 5312 29 9271 8731 1988 7321 3851 8385 8179 8237 2217 5072 1366 2902 9408 8316 944 354 1026 303 4568 3524 9179 1154 5820 9050 7132 9496 7869 7587 4237 7927 403 7603 7790 9287 812 5202 550 4624 3635 3516 2665 4549 6550 579 5880 8344 150 2682 3958 4727 4192 6130 670 214 9082 9785 1287 4136 1444 627 4129 2049 6828 3789 4243 8661 7786 4462 9035 4724 6824 1922 3241 3243 7167 298 6166 77 547 7691 1851 4511 1287 6562 2169 4472 2330 8788 2901 9285 4295 6692 414 6595 6465 5002 7899 7247 9290 7255 243 3947 4055 4835 3918 3497 6913 4458 4721 3612 7594 1621 9947 338 9391 9679 2781 8615 3435 4828 3987 7878 9572 8380 4167 7387 3001 2259 8675 856 5068 6111 142 5131 1506 7817 2344 5456 4520 175 5655 3683 9260 6740 9838 3499 6706 7192 4347 2686 6139 9019 4639 7735 1195 1691 1889 6671 5247 854 5119 6744 4337 4411 9982 4706 5076 4394 1852 4054 7287 8717 4203 6836 2211 5519 2385 8389 1837 7545 3106 6479 4606 255 6274 4636 7609 7623 6525 288 8920 6049 192 6211 1584 2263 3175 8159 3620 8667 3340 6869 9546 350 6820 4196 1825 6470 4324 724 2500 2632 492 2227 8361 5552 5708 4863 6794 4308 2863 6080 364 317 8160 3673 8134 152 453 662 5045 3374 7935 3144 6119 235 9524 2825 6541 8355 2936 8375 4628 3205 3637 3441 1205 1529 3602 4179 248 4804 6428 1257 6082 7675 5060 2604 311 5584 609 1771 2718 899 794 6195 2258 2027 3250 2601 5751 9975 1741 7000 8902 8555 3038 2178 2534 266 1808 3869 7109 7107 8313 8079 8949 898 1472 1937 5690 3563 5397 5791 8805 71 9587 9089 6859 7647 8939 3837 6311 544 3506 800 2463 1549 7886 2002 50 2654 7823 6127 5905 2415 512 1993 1412 840 9969 6797 1196 3064 1660 3707 5713 4896 8246 3387 2738 9636 8769 6112 6047 9153 1914 6568 8563 6293 9797 1447 638 4841 8629 9048 7233 1241 3799 2710 2086 4382 6481 4434 5611 9739 1910 3964 5036 279 7613 5162 1887 3634 1815 1802 360 1498 1670 6944 7545 1109 6442 3744 3634 3895 2986 5289 6735 2156 1058 2081 3786 5042 7968 383 8164 9493 7374 2579 7643 4731 89 658 3028 4391 3957 3228 1609 1244 7993 6607 3235 7551 4467 4414 3432 220 3775 7060 8657 5527 8983 9590 3750 7717 8706 3953 2228 2093 1507 4077 3308 4148 4524 8981 6838 9522 2853 3067 3593 9406 2225 9658 6625 607 3349 8397 917 2784 4361 977 9578 8084 3021 1670 2106 6851 1018 3075 2744 4600 4831 1298 6593 1780 1171 8406 451 6318 8704 9146 5753 391 9831 1489 788 3168 7496 7216 4069 3699 49 2285 9657 2554 2825 9721 2894 7580 9893 1151 9140 7037 3030 8432 1013 1495 8510 8247 1791 1850 9627 8353 5909 3620 6249 5037 1561 7676 9751 4350 653 719 3090 8652 9822 8773 6605 6117 9917 480 4952 9168 5566 3309 5314 3241 8675 9175 73 2222 1802 348 1768 8905 4940 5184 2169 6875 822 6852 9527 8985 3615 4837 6631 2772 2974 8533 210 6385 7326 1423 8173 4775 124 3890 4591 8661 7688 8361 3413 2543 2236 399 2150 953 101 6019 6380 5490 2598 4566 4836 3999 3374 603 6309 388 632 7116 4815 8631 3839 2727 4002 1103 9809 6341 2347 9197 2699 7144 11 105 3790 2688 2288 7581 900 9124 5294 604 1229 1326 8328 62 3113 2522 5489 8124 7222 7360 4808 6289 2330 2816 9725 2065 1896 5514 5625 6192 270 8558 4836 9357 1390 3809 1197 5800 103 7961 2291 4416 1109 93 8009 5477 5148 376 8606 8141 4934 8843 1309 2210 5870 462 2427 4028 1175 4037 7207 6618 2799 2966 9943 4450 993 3058 6717 7615 439 9424 4742 769 4522 5590 6854 371 4836 4613 1335 7692 8190 4822 2051 8881 6435 2075 3507 5363 3225 3644 699 5665 2565 4450 7333 5370 9713 7050 3066 6206 7202 9577 4314 1631 365 3647 6554 4510 6801 6843 2499 6190 6464 3712 1295 8222 692 5429 4939 7088 2674 6604 7075 7843 4756 1178 9891 9311 3881 5560 875 4192 6277 869 1951 6752 3691 8160 7413 79 4906 8742 7841 8972 9449 6726 5951 6788 418 3242 2411 1702 7967 263 8383 9427 764 1586 4408 3680 2363 2033 1543 9168 1152 6913 262 7702 3975 405 8084 9904 6052 2052 4297 7851 2827 7816 8708 8783 8176 3214 2641 9863 39 2731 2231 5789 1708 6436 8666 5704 1942 3511 4969 90 2564 696 6341 8307 1695 9820 1836 1660 1484 7915 2 2146 7728 9301 3903 5781 4087 7690 2541 1518 5016 9343 8674 7243 9286 1822 6404 1101 4567 1568 4311 4177 4684 7730 2533 2788 8553 5595 2357 4750 8080 3401 2852 4877 990 9740 1775 2493 640 5835 7922 7943 7028 5304 1964 232 969 1616 3002 2075 9971 7424 893 6853 5214 3433 476 7750 2661 4953 842 6499 7971 4817 7585 9736 2323 6033 5577 3347 9385 411 8301 6233 7291 2992 3004 2200 7852 4218 6540 2058 4227 7780 2223 2734 1004 8987 5116 1782 2907 6367 2366 6434 8431 9499 3075 3805 5580 2584 1863 8941 8060 4641 7135 4726 7054 481 9603 2494 8454 8983 1666 9962 6508 1851 4620 8504 821 6032 253 7432 2755 4153 3971 2133 5545 7942 1839 4481 7132 6779 2281 1398 4881 3221 2621 9586 7375 2981 3792 3428 3678 7419 1246 7040 479 3524 4952 7855 1329 2835 9257 5035 5259 1769 3863 7131 186 8097 2376 9857 5620 3906 5236 741 2775 5272 6082 542 6670 7153 1529 2895 5972 4722 297 2602 7663 7470 2812 4890 2739 7226 5674 4548 7845 9288 2374 9255 4110 2831 8502 2525 7584 3413 4497 6310 7090 3201 9173 1050 5115 7613 5017 9880 7482 609 6501 9307 9236 778 3555 7962 4761 3396 3496 4848 1381 1799 3400 5715 360 9527 5710 2873 3387 5578 4751 464 3467 6210 7654 8884 5969 1686 8375 3883 8062 7363 1341 6581 5602 418 2575 4654 3049 4616 4498 937 6241 3146 6054 2275 3072 2200 5854 9255 4846 6152 9829 5646 8983 9735 8317 5648 8035 5658 6300 1678 9315 3841 5385 2962 591 252 6980 943 5285 1858 4556 6780 8826 1167 3464 3273 1520 6639 8158 7315 3806 5724 3592 4130 7461 9511 2209 9299 3502 3064 1530 7983 8815 6087 7743 9934 7197 5536 2310 740 7663 6277 3630 1644 8737 5520 695 1283 4538 6648 1505 8378 7660 5286 6310 8850 1182 2165 1191 4723 522 2472 1026 4698 6183 1746 6621 2765 6572 4745 457 3752 2284 6130 2960 7467 7477 7408 3323 8089 2870 8367 9656 189 2828 5959 7251 7165 7287 7169 2645 4624 3364 6887 4318 4944 4751 3759 6168 2923 7564 2936 4460 8989 8842 8421 1405 7959 2211 9231 641 3393 1011 9533 163 8724 2544 1997 1148 8007 1004 8910 5237 6127 3375 7791 5535 7484 5329 5402 3720 5632 9412 7891 2961 3684 6088 935 6124 7052 8348 8970 9544 1335 5750 2818 9803 2181 1940 7042 6728 3855 1088 7564 6354 9668 6411 2289 1448 174 7431 7170 9457 1644 3469 4241 6614 7834 4607 3613 1691 5296 8446 3701 56 455 4275 2622 9256 218 9078 1335 9177 7283 9541 1445 2533 2295 8898 5017 986 7592 3206 3100 6249 8570 9590 4250 2432 8798 7991 4051 6473 9593 5196 9442 9459 5474 2741 863 6942 8828 6228 4740 5737 2312 9317 5785 6230 7280 4485 4481 1568 8996 4139 5223 6990 8196 6249 4817 9505 9923 5092 1540 1620 16 963 9104 6361 4066 9123 4984 1490 3935 4796 9466 5673 7945 4590 7057 2676 360 1304 3283 9184 9931 6305 68 6777 1800 4289 3848 8882 1572 1311 7092 2509 9754 3694 2464 9267 6772 8072 3025 8046 7554 982 8292 8923 8648 4928 5344 1048 4794 9925 7497 6934 181 1323 504 3074 9675 1794 3671 3842 5522 1960 9351 3975 3419 8660 353 5957 4107 6920 913 5764 9864 3121 9428 8132 5047 4810 6103 4493 826 390 5504 764 9521 78 8893 4128 4263 1484 5850 4266 3857 6731 7662 8725 4080 7990 6103 3824 855 7087 4626 975 1136 281 9866 8298 5988 726 1494 6325 4621 6340 3893 1834 8673 1609 2076 1498 8624 4454 1569 6781 9971 5827 6735 6998 3273 96 103 8719 555 8063 10000 2432 8933 5930 9188 1761 5407 9754 3051 621 7206 9671 4943 2461 8266 1545 6088 3709 3510 5573 7605 367 1556 4899 3816 593 2443 5390 750 4840 4301 7686 701 2556 5871 957 4495 1944 455 5202 8870 2626 5538 4691 5194 9207 4543 653 2019 4548 5906 6520 5280 2726 2 1774 9432 7282 560 413 7674 55 7965 5915 5938 2097 1623 7190 5920 4766 5088 5165 2646 5605 5313 9737 8433 3852 6497 1048 850 3334 3308 5913 5293 3788 8879 733 8961 5074 9397 483 6997 9778 2922 1044 1752 9850 871 1155 4103 9603 8949 1995 4260 4145 5564 2902 8927 6814 775 3308 2351 5727 2581 5884 9240 6475 7909 987 7878 9274 3511 1390 9334 8486 8611 2961 7796 9575 7833 6541 1288 2005 3583 8963 1446 75 7772 3482 5423 1823 7347 9686 3976 5066 6243 9751 6161 5135 8417 2179 3216 1388 4840 2300 5527 4375 2127 4296 4263 1942 6901 6870 2062 4975 7530 9125 9655 521 6373 5238 2582 4767 4647 9328 7097 2384 4433 4706 408 1087 7997 3789 3866 170 2336 7426 9596 8042 1670 3750 2797 3258 9467 5813 7320 7707 5707 7481 8278 2653 3902 8434 1358 1177 1070 1425 8517 3035 9338 4399 5955 535 3672 5199 3032 4696 8181 8055 7527 7509 6397 4077 6496 333 4714 8385 2446 4117 1271 3290 6134 1047 2963 178 7440 1199 6764 1209 3874 3282 5194 423 9034 8204 8085 8773 2006 6017 7112 498 5861 3220 4752 2283 6533 1945 9099 4212 6656 1791 7122 7493 1066 5295 2364 5964 9423 6594 7331 5759 4027 5392 8146 5965 4950 108 3517 9206 6160 9357 3871 6517 9096 9336 7579 4506 7464 799 9657 936 3422 469 4687 6342 8498 8045 8631 5013 4237 1126 6463 7881 5793 7585 394 3458 6024 7444 2296 5291 9598 402 5255 4492 4862 8606 631 1195 1375 5364 8639 8218 8468 3497 1722 2317 3572 3824 9305 8205 880 8079 5093 4769 2369 4550 4649 1756 591 25 6182 7251 4892 6832 6961 5444 9310 8390 9182 4593 2480 3552 2369 7242 9620 2314 2776 312 2430 7284 2764 1239 4975 9652 22 3727 3281 1984 2763 4212 3627 7666 8302 3008 9316 6692 3027 3063 5980 833 1037 8850 90 6856 4673 2406 8143 3753 8899 2668 1941 7957 8706 5898 388 9211 3123 3687 4135 2532 1654 3746 9755 45 9656 4936 4092 2147 8007 6540 3749 7040 2591 20 4230 7773 365 492 6863 8798 2843 8727 9677 9565 4317 2603 3515 332 6514 7121 3837 8771 3973 5884 3152 1180 7019 9176 8975 179 3509 5779 502 423 8528 675 7554 883 501 1982 651 6560 8815 4075 4576 691 4666 350 9356 632 9336 3047 851 1384 8504 2252 3868 7470 3088 9344 4375 2249 7033 3706 381 1606 7906 2322 1416 3201 9820 6045 7647 8018 6229 8056 8595 2770 6182 1636 2054 6501 9440 1142 9557 985 3427 9636 6095 5346 194 1337 4333 9958 7993 3247 876 4281 2164 3840 809 1551 52 3683 4288 6280 3142 6877 5383 7857 7134 9809 4962 3317 9491 1364 1600 5472 855 9059 1111 2140 8511 9995 591 5632 205 4164 3756 1276 1968 6196 4993 4963 2252 9547 6050 2838 22 8560 6471 115 5855 8265 2977 2970 9584 3057 6908 6423 6250 1336 8154 7469 8268 4735 2410 9668 7445 6186 9672 9797 1743 1987 4196 8086 6182 996 4076 8603 3921 2266 551 213 4718 961 7252 9278 1184 9481 1756 710 2327 6684 9513 8518 6135 7315 9120 3113 7525 2843 5729 7314 5331 932 3838 7249 1730 9811 7386 655 7790 7435 3799 7821 3485 2949 9537 6819 8813 6733 6516 2948 3468 5668 5569 1930 3036 1413 4365 3177 1188 7458 7047 4449 5633 2353 6889 3287 6346 4619 1416 1632 2990 2431 767 270 9107 431 5696 8475 8739 2574 295 2685 2781 6470 329 7274 6316 2424 5236 3765 9241 6690 5425 8552 636 6368 2026 924 7173 257 3367 7801 6299 1671 9279 9400 5528 792 8314 1289 4656 715 825 1293 1238 2226 6057 8008 8728 9607 8578 9221 4927 1727 215 3498 3757 925 7420 8138 7614 8635 9370 6781 1915 3111 1092 291 8986 627 2354 9105 8991 8026 3479 4760 6031 7297 8399 4325 2075 4188 7616 4482 9866 304 9964 8726 2886 2806 2880 8549 5709 95 6186 1850 3488 6052 2867 472 525 561 2207 2114 8253 4550 8300 141 5756 8565 6456 8628 4871 6249 7136 9217 880 6519 7454 9345 6470 8668 5227 483 7715 9064 7161 2748 4264 3846 5706 8541 4351 379 8349 1021 6712 388 665 5462 5283 8830 2050 7028 2397 5366 4654 3877 1240 7153 236 2907 9699 3395 9922 2340 5478 6124 4248 3715 7854 7626 4360 6285 421 7422 2820 8230 1821 6046 9409 3120 4089 3957 4617 4864 5181 890 8857 9085 1353 9372 1741 4813 8160 9180 2852 2704 8318 9826 1508 118 7437 3807 7194 5139 5803 3949 3307 8237 2227 6092 9422 4678 6005 948 8488 2736 9323 733 1502 6446 9847 664 9408 5299 8931 3437 6432 8856 2639 3864 7505 3404 7718 9381 4438 1339 7396 2021 7692 1826 9863 3365 2607 4894 2597 4136 3046 1450 3267 3955 3757 9638 7942 8116 8960 4521 2612 9079 7000 605 5747 8694 3466 8653 7164 7659 9912 1381 5671 9951 7263 1298 7636 518 1459 4240 2136 4224 5918 8238 4944 2104 7915 4914 9635 1612 9771 8105 6389 7546 5888 981 252 1963 7795 5185 6303 6367 4129 7933 5323 8437 6121 9346 7628 6776 5235 1117 3027 8393 9178 3074 4596 7940 7563 788 4194 233 1676 959 2444 7572 1018 5610 7028 55 3254 2629 7966 9265 6923 6738 6037 8351 744 1344 7647 6522 1977 7462 4744 7165 9025 3881 2538 2813 3487 4323 4248 9195 3707 1998 1342 7709 7195 8784 1531 366 1559 7262 5873 433 3288 543 3336 5206 9747 7724 9492 2615 1435 9057 8730 8501 7606 7029 5337 1699 9676 5443 2490 6305 7319 6392 9556 5107 5297 4258 6148 4210 9342 6106 4105 3378 7218 7044 7246 695 1967 3236 3812 646 7625 2445 7862 5861 5479 6968 8841 6474 5424 4160 4985 6318 2929 6951 108 3685 7085 4112 9354 7570 5116 472 4868 1549 7873 7772 9140 9443 6739 3609 1233 6752 5320 9681 2948 7465 7337 3688 2869 6514 9702 6660 1947 5431 322 804 1328 6532 4667 5596 4788 2297 2649 8971 8561 468 4096 8963 3056 9507 9069 4905 4862 1131 6187 1309 4085 3993 3988 5499 7970 2131 1547 9103 8491 5597 1850 1465 3164 8811 9273 7317 4518 2471 6935 3955 7287 4506 8806 4100 8459 3126 1673 983 4372 7725 8613 505 6136 2260 6860 2259 5041 3005 2810 1767 3716 3793 9403 2320 1339 2092 7717 9518 3083 9456 1533 5846 8397 5256 4894 4976 4867 9753 4614 807 402 1428 3798 2312 1323 8986 4282 792 6890 5781 5840 9552 3841 8129 8333 4825 5142 6147 1202 1894 4896 3439 7812 555 6351 4594 8585 5719 5329 5981 8172 7805 5663 4255 3931 2617 4432 3714 2828 7379 7645 1825 9427 2716 8692 1345 221 6253 223 8971 1994 7363 9315 108 2483 7667 2743 5771 8444 7325 8961 3106 6644 203 7211 7464 1048 468 2930 4991 860 6790 8886 5609 3167 7280 2225 6134 8716 91 297 6720 1703 4176 5334 3763 1957 8885 5237 9784 3711 5066 4039 7998 9204 7590 6833 5182 1410 2963 4498 6814 5101 5181 1105 3280 9918 6842 9928 5124 7275 5660 4239 6006 2151 7555 3482 7025 4297 5312 8639 5998 8607 1547 3872 4405 9190 4966 2997 5445 6035 1610 1605 2792 8601 1858 6750 7920 454 5701 6244 9134 3664 5095 6450 6998 1515 277 4641 6973 1109 6921 2259 3466 9173 1581 1814 3956 3383 8112 1948 9150 5366 1437 7463 8206 9803 5680 6450 406 9004 1620 5862 6006 6447 1668 3295 5720 7679 7981 3329 8944 7746 8580 3738 975 4385 9803 5645 8122 1422 291 1600 8676 8295 9767 9763 1191 345 6040 4823 5792 1581 3017 3427 7918 308 662 4780 6263 8788 1797 4262 8778 3356 508 4810 4829 5023 1263 2359 647 6257 9609 4826 8566 6807 6937 1770 5709 2405 9902 1352 680 4395 4058 3526 673 4761 1960 446 5453 4845 2223 6608 2887 9573 568 8439 6580 5520 1407 9369 9666 1271 6886 5542 7750 6818 1687 3916 5111 858 9507 6714 3540 4115 8733 9176 5344 7809 2261 3070 5918 6773 2020 9380 1793 4914 9956 1887 4680 7259 3137 3390 1544 7809 4543 5374 5380 2303 2610 2157 8478 4110 7897 8841 6462 6621 5239 6386 2977 3263 8427 4816 6221 7314 9148 2908 5691 2786 1015 6008 4091 1105 4240 6403 6878 3119 4986 4771 4757 2518 5722 8192 4079 2392 7564 1934 6404 2827 2604 8563 9949 8127 8656 4251 9464 7337 9395 2281 1020 4132 3599 9974 2843 1250 4278 3964 8560 6945 5043 5188 4087 4011 798 728 3405 1496 7563 7802 5700 8819 9288 3479 3718 1518 1151 4100 5090 594 8765 8645 1428 679 2635 1311 8915 9752 8516 7177 9375 8225 826 8531 1509 603 1381 7659 7732 1945 1374 9601 5416 2944 9318 1962 3954 6853 2135 1141 2034 4899 229 2711 6015 8935 8516 5091 1256 1904 7811 1196 8723 4701 4702 2971 3132 4554 6823 4072 9668 9083 2400 3548 9400 2509 8297 9370 2455 8654 5306 1655 9237 4380 8474 3162 6544 4004 9292 653 7210 5135 6970 2601 2537 3855 1849 2727 7695 7072 2564 1076 9063 3293 6880 4106 835 1601 4757 7648 2680 585 1993 7316 6283 4734 5917 4480 8846 2776 6657 2580 6085 6933 5468 8872 1858 4651 582 288 232 8422 6644 8679 1772 1431 7426 4878 5477 8621 1012 6597 2350 8149 7992 1317 360 2637 3255 2462 9675 2383 832 3860 918 799 7283 1376 3054 3285 6791 8142 4688 6488 2639 305 7439 9451 7701 9866 7495 5574 2042 2355 4088 9217 3842 5937 696 865 6288 4083 1454 726 514 1424 4310 4258 8520 1286 4967 8929 2957 9405 9399 8449 4395 9817 3301 2512 2272 4627 5858 2141 1058 4900 1753 4491 8083 6551 4969 3596 8304 6578 4820 8848 2291 2689 591 6811 8543 1285 7335 4445 4561 1509 2524 6262 4608 692 2976 3778 457 318 5602 2145 7783 6835 8319 7567 7308 5008 9211 915 4931 7219 47 8093 7090 7900 8664 9741 7609 3457 7362 5069 3672 1538 1684 2424 147 179 1364 9598 2031 2376 918 4478 284 2082 9107 3542 6125 1698 3514 6739 5346 8846 8126 8301 4409 5967 9186 7616 3061 9140 843 8185 2156 1149 337 3493 2161 6239 6468 4309 1848 2230 3097 8392 955 6532 6895 9779 1202 8887 3706 4851 534 2149 2239 5724 2465 3970 2246 3868 3949 6017 3610 6469 1564 6394 5452 1589 5383 9835 9767 8553 3436 8005 4020 3047 6233 5306 6948 5196 1197 5738 1495 8526 9368 4886 9471 8672 9689 7725 4203 5191 5806 3875 9840 177 1116 6638 9047 8797 8799 4849 9097 9423 8634 224 8929 8234 8017 7633 4113 4279 8507 9399 4146 9479 4646 5597 6288 8883 3629 960 7410 3423 6366 9332 7841 3887 3152 591 8482 3821 237 6063 4051 281 5615 9474 3361 7390 7394 6932 6321 888 3920 9581 8373 8593 9194 4321 7619 8131 2290 8393 3354 1490 5962 4584 8698 1871 7166 7215 4120 5573 2144 9553 4851 4366 6863 1675 4723 8672 3701 4542 3805 4800 1575 2440 9161 3820 4096 1971 7449 6913 4730 4665 8913 2464 121 3278 3454 2598 7354 4133 3366 2829 9139 8612 3884 8722 1883 1972 4039 2912 2281 8102 7424 291 4028 5278 7942 8644 1840 446 2781 8277 6034 2501 7367 3693 8777 8197 4407 1748 4344 9629 2802 5586 1491 8764 9942 7362 9353 3897 1770 738 8187 8562 3530 4636 4623 6173 76 1457 8231 241 690 2133 2790 6615 3850 911 1807 9681 6931 1799 1525 6459 8413 7781 9179 2766 2687 5423 6355 7245 5470 9996 7952 5193 8898 8670 9079 238 9322 9861 1665 4917 5161 9275 5263 7208 4250 996 2090 6724 5236 4114 4605 731 5094 5600 3769 4484 418 1398 5779 7314 7849 1282 940 1058 5518 6506 2403 6990 5633 948 485 577 3122 9893 3019 2062 2217 1248 5235 1138 75 7979 4824 723 3468 9770 4268 4584 1975 1145 7095 4805 2812 2530 1063 4116 690 7690 7912 9320 1356 8931 9747 6140 4874 6559 9591 1850 1998 8129 2249 7716 6307 257 581 9337 3888 1312 6836 7164 3397 6442 155 6762 4091 8871 4560 89 7774 8586 7719 1309 3100 5131 7744 2607 3877 5105 7846 2260 1473 2763 989 3427 1099 785 9892 7321 5139 748 8574 7229 572 9261 6307 6940 9948 4510 8065 5395 7633 1707 590 7858 735 7164 255 8488 9617 5362 1489 8500 5634 549 6914 8968 2463 9664 3875 5300 8938 6149 1623 8598 7319 7446 8549 1947 1175 3778 1822 5589 5304 8336 7193 7447 9085 1985 5709 2575 6098 1051 5525 8768 606 5007 215 7839 2814 6088 1621 5004 602 1488 7061 9800 7495 3595 5457 7566 5890 8908 775 2369 3416 7071 8655 9572 1046 2016 2787 2739 9087 774 5311 308 6646 5766 5360 5719 2624 1105 8621 6946 2644 6830 6636 400 6628 8673 2846 488 6144 386 5913 8042 4579 1313 1040 211 3109 3462 4987 2707 6040 2887 2857 2046 5699 7724 7405 8186 6379 8819 8643 7654 6088 8238 9494 2738 8367 5418 9724 1554 4600 5374 349 387 1247 300 8497 5843 7528 5701 4074 6150 4903 4133 9146 1205 8763 207 3639 5779 2056 47 497 1441 5603 426 5133 1626 5502 515 5585 3251 6550 6242 453 4421 7458 1520 1838 1096 8393 9528 450 6604 4241 5341 3390 3891 2340 1861 4837 6697 2764 7899 6509 1359 7331 4705 7663 480 5957 8006 627 1735 5602 8812 6853 6193 6486 6776 1327 9620 4863 1251 7630 9779 2852 82 6905 1070 2405 5178 6292 7380 9063 7648 9176 1268 7568 3503 5124 1402 4622 538 4070 2487 2777 1773 4626 1006 4173 4863 6879 8440 6490 6949 1140 5508 8296 708 7667 4259 4005 893 8561 4741 577 5407 1319 4093 5668 6064 2400 7736 442 5409 124 2208 7722 9366 3293 74 2927 6180 8720 7227 9507 6162 3323 8121 8939 8439 6982 6776 4748 5141 808 8474 9394 397 4125 1366 5613 7954 5197 7275 2907 7906 6794 2069 8539 8739 5793 3147 1356 6631 5536 6976 5306 864 8566 8987 2597 869 7596 1228 6039 388 5711 1085 1202 2648 1639 4221 8868 6798 8328 2355 4006 1504 3491 8892 269 3724 5476 2140 5980 7258 6309 7696 2255 7671 4332 4846 7986 7957 6209 2371 4842 112 5263 117 265 793 5548 6228 1287 8157 1133 8192 3495 2625 7178 6724 6997 6954 1082 9548 4243 9555 5608 8470 5623 2414 501 9238 5072 9700 7703 9034 355 9725 9590 4760 9390 1329 223 5464 8154 6076 4614 3628 9875 9738 7299 5557 114 144 4925 4001 2015 2247 9890 7915 3909 1539 4710 5875 8241 9092 5346 991 8770 2851 7259 5875 5997 5685 6275 8300 7554 9421 5028 8298 7720 3699 9258 7253 4907 9335 2782 1038 9487 7196 4706 9673 3554 8091 1773 6436 2672 2669 2690 2960 6289 5217 7715 4524 9896 8899 8507 6729 8210 1597 3498 9556 1410 9030 7315 3217 7793 7879 2266 9711 6860 7807 1121 1242 7154 5493 5142 7381 2788 1275 9971 8890 4570 9674 2724 1733 5270 8376 7246 5872 1073 183 6183 3528 3692 4123 6284 3214 464 7622 8514 8291 6218 9313 649 3217 952 2714 4887 2835 6433 459 4204 8639 5508 7172 3845 2348 5509 7080 3479 6030 3815 5543 7633 6700 894 3987 5913 193 7358 2304 6000 2266 2478 3034 8786 8931 2426 869 9238 5603 3686 8295 7257 2778 647 4676 1609 6644 3396 248 8929 9448 1949 6844 7845 2095 1354 477 9140 2094 7389 5605 167 845 6835 1921 3771 861 2391 1000 1149 6129 4889 3977 8328 3394 1769 1181 4383 6648 9837 1992 6127 3133 6255 9887 7079 1636 9409 3235 7747 4657 1315 6009 2117 4446 1596 4734 9604 5623 11 4946 4000 8360 895 3633 9947 2111 3370 8374 4877 6688 7817 6120 6982 6368 9401 2361 3701 7746 7488 6269 4150 7982 4146 4877 8060 852 3008 5008 6189 135 4361 5470 683 8311 6518 1145 6537 1595 5907 4770 1810 660 2383 9706 7556 9112 9268 7140 7896 9863 1315 971 4936 5267 2161 5584 8667 5713 2195 8903 7916 134 4301 7054 5173 345 4570 7746 9213 7560 6523 2832 2046 682 4921 7765 3353 9137 244 8817 491 6324 9592 4957 6640 14 2249 8225 2331 2932 2318 3317 1319 7475 1660 541 8269 417 5281 2304 212 4400 5756 3991 5347 165 6754 5034 9619 7059 1745 3151 6280 4549 6766 7592 6086 3167 5239 8138 9296 61 4385 6063 9785 784 5075 1685 3408 8872 7999 6108 9499 2727 6863 7639 141 8841 6698 6370 124 3741 2422 5217 952 5351 5393 1916 1209 44 8179 4936 2289 5598 1473 8084 6951 1827 5771 4708 2209 8990 8643 3339 3686 9302 9132 8841 7051 9406 8955 9861 2556 4213 6692 1391 6308 6104 9099 2461 8296 9255 3957 7717 4488 2004 2062 3471 6571 498 46 2310 6647 7067 1595 2995 8038 5418 9000 633 4041 8085 9324 3689 8255 7616 6300 9970 6855 2790 3972 3561 9128 6290 4547 8587 5275 6887 2421 9517 9570 243 9045 1233 9594 2378 595 1393 8744 7556 6644 6836 3162 8866 8210 4526 5101 3422 9110 7903 5480 1065 5785 3557 9232 3752 2926 4788 6323 9307 6428 4312 4342 3317 1981 3841 1092 65 14 6825 669 5077 4859 1006 7992 1746 7117 3614 1172 3850 3139 7826 5775 4681 5910 155 6048 9699 20 9277 9159 2049 9414 1449 1296 7390 9126 5305 4345 6688 2103 4597 7860 8392 8856 9082 6651 7660 3190 9687 1980 9452 5385 3831 9258 8084 287 9227 5058 8924 5258 8782 9728 2577 8987 2061 1365 550 7706 8312 8572 3446 5763 9046 3632 730 6945 7924 8875 2987 6697 507 823 6880 8654 7848 2041 9869 7889 4525 5598 2144 6512 4259 6519 8227 1518 8951 7612 8106 418 8385 4960 1425 5219 780 5943 5683 7416 2861 5019 5119 7945 16 54 7288 5570 9250 7591 9832 2905 3272 7759 3520 7988 2136 354 6566 6553 7083 7143 1738 5936 9544 6597 8299 2588 5952 8760 8750 9090 3367 6655 783 80 8010 275 9895 4790 4219 6178 6478 9720 2886 7687 1720 8616 996 4799 6366 2364 7366 3462 8451 5542 7138 2923 9065 7188 7526 4927 9513 3779 4828 5617 3547 7814 4594 4146 6472 152 9891 9013 8704 4899 4431 9946 9400 9801 4543 9803 6375 4768 7187 1540 2499 748 7291 5746 1979 9241 7594 8630 8629 7035 5001 3209 6770 5563 3931 5479 7062 3980 6645 7827 5162 3547 3373 5057 4082 8616 7560 1893 9908 1546 171 8053 7731 2588 9113 4256 2076 9198 3466 4932 249 55 3791 3560 4866 1728 4000 3108 3767 2366 404 6366 6774 5988 7964 7668 6750 7919 8837 1781 1320 1766 6700 3555 7650 1483 1582 4695 6567 8222 5780 6944 111 3175 9278 799 2453 9398 4387 8314 5914 392 9952 5643 5809 5684 3267 5642 9453 4615 4036 4096 282 7065 4580 2263 5072 404 323 7454 9071 8955 7468 6935 4148 9905 84 7472 2523 2048 1373 238 2977 7810 9222 4738 7642 7177 1393 3050 5701 886 1713 1866 6289 653 8799 4213 1611 7014 805 5146 1989 4590 2872 295 6729 1909 8382 8335 2005 1942 4741 1674 5562 9877 9884 9709 5732 2632 17 9852 329 8820 7470 9609 906 8615 1952 2973 5072 5874 1699 8747 796 7925 2806 1505 8307 8036 976 9352 6685 3635 1416 9858 3780 4300 6473 6233 8860 5100 2034 4631 5807 1531 1627 8215 1085 503 4338 3387 4562 2526 8409 7230 9313 8346 3270 5088 9893 5059 9329 4567 5564 5846 223 7700 4425 6440 8070 8461 1208 8170 8848 4275 3013 5781 9884 7695 2967 8374 5424 889 8401 2894 2120 238 2459 6483 8816 4726 1590 2662 4629 426 5753 5210 4025 5039 8559 551 1792 4605 4922 8816 2743 1536 2112 2647 1104 4650 6015 7633 1531 4713 8510 9159 8866 6095 6066 7028 6737 831 3704 449 179 4604 4476 5734 6269 3541 7239 2751 6534 1414 7715 7898 6614 3156 4236 2190 1020 5592 4356 8551 9314 1937 2277 4905 1262 1146 3947 4716 338 2751 4797 6192 5057 2124 5091 1816 3133 597 918 2315 3463 5844 3039 2278 7885 301 2116 6592 1850 8578 1885 4688 3109 9486 4430 805 6795 1579 6107 9303 8648 6472 3454 94 2607 7330 4947 3936 9721 8175 9257 5437 542 3019 6166 2148 6690 1970 1471 2637 7560 7273 8289 5983 7213 1476 8435 8706 5760 2507 3084 4199 1918 2636 4443 1494 1992 7513 8853 6220 5798 6189 287 9012 8629 7119 7513 6623 3059 953 5160 947 428 5402 2753 6581 6236 416 3157 8801 2449 3789 9426 2231 2279 6530 7723 8179 1068 9148 3812 4622 9596 4390 7614 8833 2031 7651 522 3646 9566 3675 2777 1264 4262 7733 451 695 8702 3433 7468 9541 3824 3137 9479 930 4342 5743 5990 1905 4788 5742 3671 7956 7054 4197 3464 532 8965 7987 1543 4094 6349 4783 9187 1869 277 2870 5046 2820 76 2272 7385 3806 3368 3054 3381 7174 6687 4809 4850 6706 5391 4070 4366 492 6117 677 6180 4671 9111 3944 643 5629 6133 8549 9811 1054 4987 3052 2346 9744 5862 2311 4183 6742 3182 7339 4233 2446 6424 8539 4906 8789 5495 8054 343 9454 7642 7612 8801 7182 9504 4384 5856 3413 2790 9549 3941 9153 7689 9958 8085 2944 8084 3401 5024 633 1423 6830 5048 \n1552\n1050 3388 959 5202 2636 8586 6015 5326 8265 708 7388 521 5788 6214 2448 2529 2946 4744 3909 9898 7829 2633 5429 231 9610 6489 4688 7144 3865 6139 2015 367 1322 1560 8537 2097 7967 8501 1976 5084 7502 5149 4912 3262 131 9145 7743 2691 933 9984 5934 8320 8877 2019 5583 6890 161 3434 6874 196 8701 6065 9948 9225 5021 3579 1276 8260 594 188 3889 7786 5708 341 3018 7955 5810 1316 4456 7864 8589 8957 164 6093 662 3140 6496 4288 4829 9504 8539 3332 7174 8602 785 5285 7781 1770 4128 7123 9197 4198 5576 1552 7517 6675 7709 4900 3315 4038 3461 364 8144 3471 5834 9013 7029 7417 5344 3727 4437 1891 2879 151 3367 2183 4619 1576 7066 9403 1471 7724 4565 6323 7114 2401 2825 5227 9224 4021 2019 4095 4699 4870 1129 3586 2864 7109 24 2342 7291 1295 1210 8426 6225 4195 7817 3953 3839 8403 5544 6254 9131 6374 2482 419 7604 1502 2457 4521 7802 7833 380 2806 4007 394 7396 2496 7371 8924 7447 1708 7350 4115 2235 9482 2551 2584 3570 9606 381 2776 6451 9718 766 3544 1027 9774 2082 9005 2841 6368 997 5342 3801 572 6936 4063 7603 6528 1825 350 6646 8879 4480 2241 6705 995 321 2677 9255 998 6472 4851 6165 9314 1700 1071 6550 3751 6315 1201 7435 1289 9918 6071 403 3484 7312 9020 6558 5469 5759 8803 3881 1937 9443 3733 6387 2120 4678 5977 880 392 1968 2504 7383 6735 7107 7891 5775 7122 188 5892 5600 4506 2402 1061 8996 9297 2577 2492 5166 228 6826 4360 2906 7830 7374 9034 5059 8391 5954 65 1138 3251 9547 3803 9873 9628 7780 693 8748 4292 1661 2833 2846 1705 2270 343 9551 6106 1832 6954 3394 9944 8827 3122 8362 7192 8405 741 4433 8654 4247 7900 1310 965 3254 7857 7227 6203 2781 6178 1309 5078 5805 406 8410 4330 6773 5567 3125 4174 3419 206 5891 57 639 1202 4819 5372 4991 2496 7569 8474 1048 6185 244 6204 2348 9612 619 3249 2342 3884 4331 1172 1592 5385 8228 6047 5490 5655 4400 5814 5997 7075 842 8901 2326 728 6147 9325 9180 7540 3824 9007 9746 6077 8559 7347 1470 1302 7378 5343 7044 4151 6307 8226 1901 138 6449 484 1507 256 9047 9697 4717 7092 1774 8503 8106 3980 4213 7873 1971 2677 8357 7370 9298 738 9399 1206 2080 5096 5364 6061 1357 5882 1028 4606 7297 8654 5543 5116 7963 4903 4551 327 1395 7711 3027 4350 1366 3873 9339 3872 7941 8019 7686 9452 3912 5210 2770 8771 2630 6567 7914 1947 598 7406 4224 6657 4903 5955 936 4179 9774 9480 5799 3803 1452 1277 9448 8736 598 9268 1624 5122 5540 1648 4594 5150 2674 7543 4226 1548 3380 4615 1760 9078 7583 2256 3832 4421 1556 4724 1643 8283 4169 3368 4980 677 9434 2375 3384 1705 3870 2022 4735 1977 698 8621 3771 451 1599 625 4194 2823 5129 664 8197 4921 1172 7385 4837 8631 1770 3680 660 3174 2073 8284 3960 8242 5514 6906 5723 4463 3391 4827 7286 2408 9064 4814 5997 7212 3285 6920 7054 1183 7491 4380 2674 6090 9370 8030 2434 8176 1382 9801 6224 4742 3845 5433 8573 4845 1644 3359 9373 8440 8499 5802 90 1393 6881 7159 7597 9657 3894 883 9746 6376 9750 6604 1994 9393 4957 6450 6529 8006 3265 85 3122 4183 7753 547 2398 3981 5391 8803 4186 1811 2840 2536 648 3606 8308 2958 3072 1664 3217 7787 2844 715 3059 2324 3143 4305 6717 8429 6993 1050 3528 6608 5450 1688 7886 1501 3835 2835 7906 8689 7417 2425 3287 1798 2999 5453 9780 4577 1254 2991 637 6912 3324 6670 60 4948 6114 2445 5855 9537 8484 7462 3101 154 259 3829 5769 5183 9768 4497 9314 4551 5937 7996 314 8016 7317 8003 3721 8745 1751 5647 8828 1590 6846 4150 8305 2800 9062 6056 74 125 9480 442 4367 9533 4574 8326 7104 987 8312 4934 2342 3280 8241 9388 9572 5630 8480 3303 2187 8115 8910 2572 9294 287 4112 536 9673 3320 3023 8560 5953 7482 2660 5008 4609 9392 6130 7315 4482 9115 3027 3055 6593 6030 4730 1342 8584 2241 3429 3102 816 9669 2740 8635 9342 3874 8623 8177 1619 8180 8427 6816 327 745 1056 1180 5916 676 8610 4535 113 5871 5505 3339 7940 6191 7068 5846 3932 3141 2676 4250 4365 6561 3714 5434 9462 5213 4876 3544 1784 8030 3935 7907 3855 6893 9780 501 478 7188 7318 5451 2703 6482 9294 6613 4975 3638 10000 5277 9691 2440 1439 3949 1780 4919 6110 6669 1901 9816 7763 9422 8581 8561 9630 4107 7716 5983 8317 9847 1295 5723 3230 6395 3404 1832 558 578 8736 2293 1666 7825 9757 8421 2762 8586 3354 2772 4400 3853 1291 4457 5047 6629 5852 6425 2803 3870 6447 6060 4622 9850 9191 3018 8781 8458 669 8382 9932 8523 7773 650 9523 1234 3910 9608 795 7481 6027 2175 363 1478 5961 474 1120 1543 8565 7057 8559 4218 6209 5591 7404 92 7372 3883 9258 2136 75 6523 5891 2583 6451 2566 4110 9765 181 6242 7024 5908 3796 3099 8523 9870 1664 920 339 8211 1627 5857 2757 6487 5073 349 6569 8775 3101 2629 2523 902 6146 7966 8328 7527 9591 4820 5360 2379 1023 5024 1978 598 7962 1157 1155 8036 7096 7526 6996 60 1006 3897 3551 4862 7882 5484 7317 8952 5402 5522 7662 9995 8022 1534 3153 5228 6806 6091 6572 1956 310 673 4643 6363 8879 8599 1650 1289 2780 8622 483 564 6491 6224 8188 1920 9711 4267 4316 3325 9747 2897 6655 9788 2490 7723 431 8689 7287 7539 2591 7562 398 1100 1465 7505 9591 3948 7995 6210 7181 7993 8481 9268 9197 1169 5989 7663 791 8880 1568 8965 7134 9668 9907 2773 3541 4431 9755 6421 460 7274 6386 8914 13 5999 4816 6489 4151 8201 9768 882 479 6506 2823 3311 5285 8721 8246 9472 3937 1623 2778 4875 1569 9056 6923 4289 7157 6495 9900 6243 506 6351 8965 7768 4900 7312 2111 255 3760 964 4162 2292 3924 8340 7760 8537 19 3814 7214 4676 7876 7663 7454 2522 5491 209 6554 7716 7263 356 7600 750 1585 9431 3293 2956 1653 2708 2863 8313 4065 672 3961 4306 8718 3712 1151 1986 4184 3151 969 7965 7505 1362 7314 7451 7724 1844 3586 6447 5130 7607 5909 438 1786 2630 3091 9935 4322 8504 4178 551 7261 864 8498 5029 3947 7520 8926 683 9433 1648 8375 8114 6947 3423 6321 5949 2099 5900 344 1602 4635 4805 1473 3922 3043 6601 4269 9253 1126 9019 3890 5876 2074 2191 5470 350 3909 6456 6359 9679 6617 5844 8610 178 2118 1520 8812 7809 732 1425 7464 6866 3363 6690 7294 358 9187 6193 9890 6770 6444 4492 3561 8252 5536 6232 3929 9895 7673 6607 8181 4157 424 6091 3138 852 7890 9763 268 6489 9261 3790 2281 8748 3611 4565 753 7271 9543 9900 6630 4949 8115 7808 7680 4432 2883 4897 2800 310 5336 1476 3708 1842 668 1692 7270 9782 8885 5185 2401 6414 5423 6368 3166 5901 6958 970 7394 3289 9899 9370 2776 4902 7196 1807 8404 1183 1874 122 7584 9745 5593 3356 9178 53 8519 9011 9411 1835 3149 9259 293 2674 6442 5037 9080 9141 8969 6564 105 7635 9202 8783 9571 5939 8447 4978 5007 8492 9603 3865 4904 7999 2749 8036 6915 4972 3461 168 5539 9448 6461 2894 9070 890 2185 6531 9243 8665 627 648 7946 5745 4824 9447 7188 2359 4524 7549 2989 414 2542 3011 342 6939 2637 9339 5015 8317 9958 5779 3395 8799 2944 1705 6721 7608 5209 3247 1620 5861 6790 9877 8899 4168 1464 3518 5615 9354 4898 9100 1025 4242 4568 9438 2588 4954 2078 622 9268 9549 6520 1960 2240 3522 2761 1733 8883 6607 7522 2384 9399 1854 1873 8793 2558 3808 8350 9068 9732 5279 1083 2335 758 9712 7764 2089 4014 5746 4370 1165 1011 3598 6172 5141 6719 3706 9699 2676 3162 655 6011 1623 8626 6216 3620 3119 3112 5566 6397 205 4928 4130 1253 7609 7528 3742 4596 8986 5844 3936 6596 9984 8457 509 3980 2946 4299 6143 8539 1960 1454 6953 1646 292 3091 1299 868 7464 7078 1775 974 3472 1931 8327 8927 7373 9400 1076 3022 9084 5134 1294 3096 5631 9642 6831 9143 1983 3704 966 2478 197 8896 3089 137 5283 3776 9995 7349 8744 2816 5874 8063 8634 934 9344 2784 2089 4935 413 4114 3264 8167 1526 6100 7838 5300 9172 4014 7239 9594 3764 3939 425 3084 4114 866 1351 4950 1349 9912 1097 2693 3144 6703 4193 5096 2166 6478 7798 1740 6904 2076 8924 5182 8310 6790 4250 4068 366 2381 4245 1442 8849 3564 4170 1342 7878 5636 7079 3616 9604 9660 2071 5137 630 6046 4027 7145 7402 4255 60 9907 5518 4259 8265 1679 5624 4410 8677 8902 6974 1129 1099 4038 2597 9498 6638 3978 875 4516 87 8434 6354 6735 7320 8583 6429 4108 2000 \n2993\n1231 3364 7743 9414 2323 2441 9066 4186 1935 9799 8192 1222 7181 6672 9154 6728 8565 1191 6715 1651 7395 8564 3130 7618 8603 5654 6552 4813 7826 2248 1832 5662 6928 5137 8127 7476 9033 9851 7301 1337 6335 4801 3503 7069 7864 7307 22 3734 2664 6847 8300 5375 3587 256 3768 2610 3609 5731 6911 7154 5701 12 5170 985 8401 7624 1535 6204 7472 1096 1747 215 1811 3315 8564 2783 4402 7041 8427 4100 9676 1178 91 9833 6828 8807 310 108 8636 7663 6282 9489 1508 3230 2307 5985 6582 6471 813 8994 6223 633 6644 8176 6687 3466 6497 926 4251 121 6493 4756 3228 5643 8961 5428 2871 8343 5662 3831 2140 6470 8360 2943 3919 1155 8403 6153 7128 2572 7080 5227 9346 9235 1580 7326 4398 7164 4284 2009 1615 4480 4597 3450 3135 9512 1647 959 6297 3292 3846 5662 642 2341 3109 4487 2325 2050 2569 7252 586 7085 1022 3398 8882 7115 3797 5213 6600 7119 2397 210 6122 2371 3488 2194 7113 8877 6041 6636 8717 196 6474 5845 5698 1453 3514 4564 784 2557 950 6332 9780 5210 6597 6699 3971 6646 2920 7670 6545 3597 2316 4618 8414 4501 5189 2767 945 8875 332 912 8511 9956 6677 2545 265 9712 5737 4638 9886 8049 454 8682 4858 9875 150 6163 4733 676 589 9982 7884 2133 1112 6112 3130 1872 6261 6491 8539 6692 3415 2342 6845 3857 2922 71 2977 8201 304 4506 2152 8570 4799 4941 3188 6850 9412 7111 1232 373 5946 8001 5751 5566 9993 8020 8534 9151 7836 4214 5562 4645 4626 6327 3755 2800 1897 5225 9159 8177 8204 8330 9693 6327 4202 7577 7893 932 3788 1466 8416 4471 5495 4074 3627 1559 778 2620 929 3250 8581 9890 8021 6413 1492 2352 9178 5419 7226 5962 424 7891 2861 5930 327 6976 6633 3515 1389 9597 8883 2440 611 6787 1863 9060 8228 9372 2102 2341 2857 7846 6375 9595 9648 3405 6399 9039 6800 4615 4129 2171 7349 9009 5653 9723 5224 1773 7081 4941 4602 8935 4032 2916 889 5271 9564 8510 7496 1235 7050 3860 3413 2896 8492 3904 7757 2593 5654 6465 7011 4403 2084 9763 6990 9088 6743 3428 9469 9615 7814 1224 6067 6027 6660 4625 9934 5098 7003 9394 2793 1649 7906 5662 7789 225 2931 8418 1320 3697 3173 2053 40 4602 5158 9734 613 6814 3957 3860 3958 3727 7736 3379 7152 4524 5675 9138 1739 955 8693 6033 2912 9478 4556 7627 6339 3662 7034 6959 5959 7245 9835 6485 6162 1681 5162 9772 8817 7783 1314 6048 9016 1729 4345 299 1181 8494 8637 8361 8621 8470 4230 7538 3209 4396 2172 9818 2454 7378 3562 3081 875 2105 5484 1214 2570 9544 8224 845 5404 5646 947 3588 312 7707 4110 9880 1348 5446 2332 7696 9614 3471 4340 4188 9191 363 8514 3716 7992 2922 671 4906 9389 7972 140 1090 8062 6085 7428 5462 4551 1571 3013 6150 8964 3189 1303 6832 8050 8016 6422 8679 7985 2026 9304 2709 4031 6386 5708 1805 8638 236 3206 2972 4634 9431 487 5817 4368 6902 941 8421 1448 5942 6600 6754 7474 4244 9997 2833 5064 3353 5660 1536 1456 3047 7764 6581 7249 6659 1442 8888 2832 663 9649 3115 722 8467 9664 6860 2025 4658 168 2300 2560 2832 314 36 9074 2794 3126 4368 13 34 2745 2554 7635 8326 5937 9688 8472 7377 1501 5225 6668 9194 4189 4597 2439 9041 1370 4334 8699 6346 6311 3013 7679 5486 8520 2262 3838 1775 1242 2382 5613 3860 7335 8478 5255 6039 3943 6162 498 7515 8755 1465 5324 3176 8719 7620 9646 8154 3799 5897 3533 610 7656 922 2069 1142 7388 7905 925 5113 1900 3219 2161 8856 1529 2127 2964 9081 5854 8463 9656 3912 6388 7778 8621 6355 8493 5558 855 3947 3231 110 9983 3239 3165 4070 1708 6069 9422 6725 6030 5733 2461 2280 2313 9592 5420 6955 2397 8483 3337 1937 6975 4006 8884 5826 4252 9791 951 6980 119 7894 2948 7674 3506 3233 4073 3543 4466 3967 78 8233 7601 6340 1284 3096 149 8165 9568 4950 2910 9197 2308 6352 5803 2167 9704 281 490 9487 8414 2815 2869 9886 6749 3163 6990 123 7960 8998 8389 1167 1737 6289 7019 2161 477 4704 7505 6181 4240 1402 7083 1240 8720 6087 4297 7844 1710 1795 5883 5569 8744 7835 4681 897 7418 8002 6052 9997 6784 6360 2635 7941 8152 4954 4201 9275 796 1376 1477 6530 2320 307 7873 9575 8068 9406 8617 5877 3983 2396 2119 8948 4826 615 4189 2463 1859 5793 1337 6441 2952 7289 4193 5603 5137 9581 5921 6588 8053 8874 3444 1591 4051 2368 151 3593 5734 1450 1599 8335 4238 8693 3220 4469 9720 1022 5676 6410 8975 3313 3165 5235 6367 9305 7753 6052 8326 2068 1905 7822 9618 8853 7262 7404 5740 3853 4511 3350 3201 1043 5224 9391 3861 7040 9549 7986 2639 5448 2005 8493 8716 3502 3488 7808 7565 5024 96 6211 9772 3448 8552 3989 4417 5390 4852 476 1856 8240 4907 4751 1325 2034 316 8542 6910 9758 9252 5224 8121 5792 9486 8441 2726 1334 4238 2189 3791 9226 6427 3704 7984 391 3353 7542 1854 2866 7578 3407 4393 2316 2023 6410 1417 5530 7618 2029 3853 4623 9351 6962 4999 4935 1218 4752 1406 5316 9855 8511 4779 6733 3504 7067 7119 2979 6399 9458 8583 1543 5587 1137 4762 8438 8101 6214 7949 729 3130 4779 8625 4381 9346 5574 1209 8938 3651 2579 4795 8165 6992 3233 6825 4719 1687 5846 8365 1242 5508 7498 4873 5111 6064 175 394 1865 9575 7575 5539 7935 8008 6023 9467 7945 798 1131 9329 1378 8243 1077 4836 5409 538 2536 2309 3350 5117 9691 6548 9210 4418 975 7313 3247 1253 6031 3037 1279 7650 8665 9823 6850 1945 5226 8210 3222 8031 2168 7027 7714 1384 8424 9344 9987 5358 7022 6938 9545 1119 2771 5473 5956 1085 70 4145 6500 1179 3914 4357 640 9389 2908 4758 8537 7110 882 541 3346 8592 1906 5814 5732 1533 1864 542 8679 2203 3576 6525 4813 3265 8524 1320 3972 3722 3713 5166 7889 6813 2191 6600 6401 6964 6746 5027 7900 5486 1128 6354 9557 4661 8883 3174 3164 799 4149 6156 7733 745 3035 2630 736 1248 3708 4964 3538 797 5024 8818 3340 7294 1628 4480 7184 3651 9449 6021 1201 5280 6070 8612 661 3575 5726 9006 9329 8528 2791 604 7261 7343 3121 2806 2872 8389 9961 795 3090 6407 7099 7149 3269 3839 9833 7530 2302 9334 5565 1135 721 9754 6446 6648 9204 6340 7489 818 1342 9202 1756 1680 7182 8573 7130 9290 7579 8363 4194 7108 3114 7925 1503 4171 1963 2808 2043 6750 5518 3414 4172 3831 3497 7098 3449 3571 4382 102 662 9188 2954 4334 7847 9108 9540 9408 6901 6588 9947 9738 5574 4819 9143 2638 4128 6203 1846 7874 9132 5011 2647 7044 9994 6071 9678 4435 175 4788 2140 3805 6188 7970 4479 8274 1631 9969 4905 3169 6178 4992 3789 922 1463 9897 2547 7612 8514 4184 4077 8950 4472 2127 7147 3495 761 4225 8129 4611 8214 5204 2762 8139 2087 3839 6558 5541 8955 8310 4329 488 6939 6715 4590 4972 3228 8696 971 3278 715 6531 2551 9159 3118 3975 9137 8182 3316 922 3254 6878 5685 3950 9997 4608 8468 3191 1558 7214 9227 4620 4952 1377 9355 1543 9548 7485 7656 6301 6463 7803 366 1825 2554 7439 6071 657 7155 9985 4645 4766 7612 8224 5639 6439 9159 3691 9714 4551 3151 2796 6565 5337 946 7501 2391 7711 2368 7755 3628 1410 4683 5676 8012 8140 4849 1905 7264 9363 569 7729 6111 6059 68 2435 7688 5434 2185 7204 7554 2280 4953 8774 7907 5271 6474 472 9964 7498 9141 2211 9651 6573 383 8431 9028 2029 9081 8782 7760 2920 1163 3976 6065 5197 5082 2184 4035 4542 4231 4275 1558 8458 3687 2702 4215 6817 6267 127 9198 9225 2374 4010 5736 8625 1919 4940 1671 621 5674 421 2432 2122 3456 8712 6606 1124 7103 8306 530 4509 9331 3893 9700 8650 6531 6937 6395 9071 4994 7630 9967 1063 9822 6428 4916 6242 9072 4020 9038 8965 7040 3032 5851 1122 782 9368 1874 5399 8183 965 519 9135 7954 8171 9239 5244 4203 6718 497 7186 8515 1921 8175 2182 6821 9578 6495 5883 2503 1712 5669 5085 3722 363 62 1719 7143 5936 530 2997 611 3058 3774 2599 716 5408 7116 600 1210 630 5340 9728 2867 4807 4343 8132 8569 8431 3858 8598 6187 3081 304 1427 9409 6467 9306 1854 6859 5480 2770 9466 5698 4642 895 7304 9047 7514 9268 1392 433 5263 4787 7867 3758 4953 2434 6974 4603 9035 2706 6307 5122 4743 4241 1573 4785 6807 7516 7271 3674 527 1155 4447 9182 2720 7750 1542 9514 2181 8656 1282 4340 3369 7212 2665 104 105 5288 2096 7776 3112 72 66 3340 1993 4873 2374 4039 7784 9950 5794 5901 662 6387 4351 1203 9266 306 9132 9220 1232 5193 2999 4614 8673 9767 4541 5156 6652 1501 4939 6922 2305 5659 6783 9031 8410 6429 2342 4719 6548 1894 7149 7534 447 9070 8007 8305 5439 4818 9032 1931 4768 1741 6958 7278 3665 3069 1667 490 6749 1664 1143 6469 4804 6196 6536 4374 7157 1729 321 3001 5982 8633 1756 5824 4656 7851 8956 7232 5765 831 2174 7755 1493 4269 9936 3702 8188 9148 9047 8663 9688 2503 3231 3638 7148 2555 9487 4926 1963 1153 3234 8925 1410 4252 3264 6796 633 6770 6524 8540 2092 1245 2312 1153 1453 3388 4541 9970 1737 9149 6146 6720 5340 6964 2506 8945 1393 5849 8045 5393 9541 9429 7884 9163 8652 851 7198 9911 7223 574 4848 1490 7572 6827 5878 2884 7364 4317 4879 397 6292 2824 8930 7948 1961 8935 5387 1824 1888 6327 2713 7436 6932 2062 295 8347 5559 5512 15 7928 4888 906 5409 3478 4873 6176 8402 9556 7115 8112 4658 1216 5867 6006 1885 613 8720 1979 7086 481 1548 6752 1799 8209 3471 9054 710 5383 3186 5578 1749 2134 7808 9350 1697 6733 4317 8074 820 9080 5578 646 9659 1926 7583 9080 8732 8499 4336 618 2495 3517 5773 4473 9192 8435 8410 367 5777 6001 9657 5385 2952 5584 9046 2946 9149 2312 1866 4237 2144 376 41 5110 3710 6002 4748 7727 1557 3379 3932 4959 7167 7973 2752 5063 2059 9916 7482 8424 3139 9915 1153 1918 734 911 7512 5573 976 325 2424 6508 9087 6724 9879 4236 59 3005 8505 287 7326 6875 560 7129 6772 6147 4031 1111 1457 5602 3377 1268 7738 9531 205 928 9988 6898 71 626 1402 2251 5456 6938 500 3454 8821 2505 6027 5147 817 2528 410 8139 5568 1946 1996 6102 9299 292 3240 6038 5363 133 9079 7297 6837 3046 7920 1483 3177 1495 7496 1083 1519 7807 1074 9494 4066 8377 5970 4828 1328 5450 4148 5793 5123 1078 3470 4088 555 8290 9917 7065 7055 5657 1 2068 6946 6544 9621 3000 9987 5404 2754 6811 3310 9667 774 6961 5156 3119 543 5464 7776 1241 7930 8908 2495 3032 5552 3489 1061 9774 6014 4512 5671 4941 2091 3688 757 4366 7392 9658 1208 7312 7539 5076 2227 5839 6393 9552 9025 4236 8194 9378 9015 6397 5202 6189 768 9117 277 7122 7847 1378 2546 4044 7722 2206 9792 5582 2594 6236 9655 1403 3548 9287 8365 2542 224 3132 7049 6946 3477 6378 9805 9149 6787 1491 5303 7155 1098 3837 4542 8882 7371 5757 7328 867 8185 4467 7741 3544 8695 988 9181 2016 4738 1922 7235 4775 4791 9691 7579 2460 1431 9663 6044 2232 9427 4216 4578 5628 1342 1372 9533 4331 5919 3287 8949 6165 3956 1154 3299 8755 6314 1248 162 9157 4916 4446 4629 9235 7502 734 6142 8433 3839 5307 1976 2195 9472 649 2857 2742 2323 9089 5577 5546 9654 7774 4368 6990 8736 1747 2560 1264 1082 5680 7389 3549 1988 4636 227 8081 9197 2948 8536 267 7137 7069 6627 2179 3188 4759 9417 6601 777 1127 278 3595 5200 8698 7732 796 6466 1502 9914 2370 9204 1257 1759 4691 2233 7447 4667 6902 2740 4694 8947 1033 7874 7217 7350 4012 1318 9777 3014 5257 2664 1136 6830 8664 1526 4581 7168 4936 3085 2696 6444 5937 6463 1249 7735 5874 1808 9404 2837 3085 9971 5832 2790 769 6084 7734 5221 3665 875 1878 753 4247 4560 9026 9418 3011 2756 2060 2091 8545 3744 1096 5851 3381 9444 4819 2797 2996 6252 6037 3955 2863 7293 6057 8918 7862 4120 1668 805 6350 4248 2508 3919 1737 1623 2753 5790 3881 9981 6587 8375 7412 5405 4125 5403 517 5015 3554 5427 2652 6873 4963 5432 4992 2800 5263 4160 9062 723 664 5495 9724 6739 447 975 7354 357 1836 35 8342 2954 5233 8558 3329 6582 8716 6645 3366 7476 7247 2279 1387 5222 8149 507 9582 6250 4051 3809 8682 9408 8795 1664 9032 6014 6392 8446 3279 3296 9229 6925 7661 117 239 5966 4398 9686 3042 5654 3530 7481 6431 9391 6906 1748 120 3489 6002 4591 3177 6272 6440 4460 1151 2520 1627 9373 4004 4563 2194 5434 4446 4162 5993 7728 6283 5148 9335 3078 307 5560 6720 7385 1251 2972 8973 9299 8576 1406 3352 3953 8351 8622 1267 3921 1243 5699 4163 5239 6245 3340 6160 6797 7983 5583 2588 9747 8856 2864 4528 7638 5392 4855 5640 2479 1935 2256 4477 7675 9876 702 2963 1666 5496 946 3113 2136 3752 6593 8241 5421 3741 6609 6539 7873 5825 1401 8687 3780 8791 4557 2321 3741 8783 1535 4365 6483 625 5931 8713 5325 3394 8407 1477 6559 5592 3141 513 3902 6466 642 9007 3566 2393 6524 8933 9078 3107 7000 5574 4131 258 5397 8914 1406 3129 6085 138 5788 9368 2323 6936 985 7129 8261 9263 7328 9950 9998 2592 8256 9532 3179 2759 7133 4195 7139 1453 8401 5351 1179 8622 5000 3302 344 3183 2989 1926 8582 6798 8220 7304 8751 1581 7674 8347 1426 5648 4952 8442 4297 7684 6011 9980 5085 8049 1068 1080 1202 4413 7481 1309 8430 1093 8541 3488 8939 3179 5951 2421 7803 807 4212 6784 9399 9942 1350 8561 4718 1160 8536 4109 6826 2760 3618 1639 9298 1268 1354 9677 8560 9667 1494 8523 1996 8053 92 4262 2980 120 2960 2240 7882 6958 4053 8000 299 7706 6254 7248 4193 2011 8690 8507 1474 6708 8176 2676 4102 9574 7101 688 4204 7140 31 9948 5363 8532 8065 6594 8845 2159 4388 9488 9191 9266 6343 2943 4837 3746 9747 5730 6502 9288 5431 9214 7820 6647 1920 6006 7759 4396 707 1722 9427 7420 4116 6411 6795 5701 5043 2317 3751 6575 5319 1556 6280 8229 4274 8329 5208 683 444 3543 4976 9463 2722 984 9438 6809 8509 5702 5979 5957 7458 872 8051 9978 8986 8857 5972 7454 1063 2256 5163 6552 6134 7831 1185 3164 9620 8932 2560 7853 1852 4285 4605 7327 5307 8379 4704 7446 9484 301 5675 3355 8060 6213 635 2079 2245 2724 894 2863 23 5701 7252 5799 8676 5006 6464 2349 2766 4933 780 1849 9398 4603 805 1661 816 1969 8623 706 5484 9733 9161 7064 9790 3553 748 4940 8981 9663 9549 1129 314 2463 5337 1734 2883 8328 415 4319 6124 2994 6903 3267 785 3542 6391 4949 4837 8612 884 1262 5472 1787 6028 5207 8176 2962 6239 5170 6369 2032 5439 9610 2604 25 2827 1182 2223 5855 5575 4094 9712 3011 9942 9149 3263 7641 5554 1648 8140 6549 1571 9661 4906 7111 3417 6859 2017 1296 7864 8301 1910 327 4905 2909 2764 6584 7680 9868 6425 8472 519 3513 6953 9566 8878 4412 703 831 7851 8688 776 4059 7583 3862 3406 667 8266 9443 5566 6474 5444 8517 1020 3763 765 2465 9808 9986 9512 1074 9406 5601 7395 2212 8503 2472 3045 2568 4832 9892 7020 6018 4119 6131 3140 6687 4271 3471 6175 2849 7589 3325 7180 6920 7519 7090 9509 3861 6982 3716 7403 3555 8609 3357 6144 1114 3490 6753 2194 9823 3485 8668 9158 6771 9533 415 3728 4253 844 4689 5707 7317 3554 2393 8141 2663 5055 4705 4293 978 68 2984 1834 6177 5588 5571 7013 6502 3170 9899 327 9162 9135 3273 3111 1577 7579 7712 1718 989 8520 4186 2211 4125 2576 935 4661 8112 2643 1129 1009 1990 1553 2696 2261 917 6221 6967 8042 1873 7160 8552 5358 6162 9635 8377 5444 2729 6469 3155 486 7233 7821 7415 4611 232 1191 41 2494 6999 5934 6621 4564 7707 5962 6599 5898 7774 6520 1550 70 1037 3932 3642 777 505 5429 836 4699 5086 3736 8886 6625 3063 8787 2419 5105 2307 855 5032 682 3580 6224 1089 6883 5 8071 7582 2466 7578 3785 7657 6298 5389 5819 9463 660 8815 990 9840 8592 7310 7810 1697 3874 7694 6024 8131 3603 5373 1303 2204 7714 3151 4891 4705 3169 156 4326 6947 2395 9965 874 3440 1362 3323 3864 1502 3929 5626 3953 1453 4568 3007 7961 8245 5967 9506 4828 6190 7975 8184 8281 526 8233 1907 4956 2096 7838 5954 6085 3427 4720 544 7113 478 7737 4056 1764 7415 7946 8728 1547 2054 4754 7911 9367 799 3071 2883 9135 6523 3766 7990 818 9288 4319 7083 213 4363 7253 2648 8620 9582 2017 5870 2053 6310 8680 7763 3551 7701 4426 9817 4465 1292 9646 1016 1367 9556 9982 1866 5532 7128 1704 1818 3195 \n6316\n5734 6221 2943 6581 3067 6746 8293 6180 1598 2129 5124 9539 3386 7774 4133 323 7670 153 8794 9021 8764 5189 4675 5262 879 7105 8915 1152 709 4736 4691 3819 6763 8043 3452 7086 1041 2539 8733 1754 4495 3280 7560 2521 6578 2369 5937 3753 6485 189 1384 1294 2057 3686 5427 8374 1145 9196 3385 5455 1318 8304 5478 1165 5029 1382 6014 3872 9391 8400 7297 4617 2659 9136 4468 9164 2365 4134 4275 9576 3090 6822 6436 5956 2268 46 6289 3014 7079 5854 6567 2490 3534 721 6853 6571 6302 3908 1844 1535 1891 8592 9460 1669 3908 4005 66 1803 3036 5607 9125 9509 7892 9363 8170 9105 1142 1084 1466 135 9924 4220 7057 6798 2730 5019 3051 5878 6627 1226 6744 8565 9687 6398 8320 7729 6257 623 7413 3847 9629 3072 3046 6700 5768 6943 9596 8243 1088 5806 3222 4593 6072 2974 1647 693 5484 2198 5331 1667 1304 9501 6118 2457 5364 7278 4775 2353 9631 4486 844 2957 1690 9431 5109 4537 2000 8487 1212 8753 9725 4195 6020 1375 123 9029 8621 8883 3343 7248 971 8516 4510 3093 8318 5337 8862 2267 197 4227 5840 4374 9561 3546 4649 7105 3870 9592 8770 1875 5300 4660 5239 172 5740 2195 7080 4402 6760 6743 6806 7505 405 6732 8490 8885 3797 8593 2278 9592 176 2360 4763 6550 4893 3914 6960 6273 7305 2801 9953 8602 513 2285 9073 2108 3047 6579 2495 3966 3142 2170 3718 3359 8191 939 4819 6887 3533 5264 3810 1923 9305 5184 2846 5329 6044 3214 4418 1053 8574 3049 8081 6915 6353 4446 5576 3705 179 3124 1954 2796 9098 9895 7470 5501 5964 4961 7033 5710 3098 2007 2559 4049 2004 9171 8236 4339 4865 652 7749 1212 7744 5939 8392 8608 970 902 1922 8381 9953 7838 8392 9936 863 7720 4728 8644 3968 9078 8991 5388 389 2802 3806 8987 2320 2963 2840 5041 744 3496 3526 1647 9849 25 6213 7420 2124 4231 3622 668 5481 2927 4306 9342 6513 1587 36 381 2978 4945 6299 9934 8110 8465 9056 9887 7460 3226 6929 4666 6838 8772 7926 5423 5543 4354 2658 5020 2640 7960 4425 1144 389 4762 3248 5044 3221 5983 5824 9333 9971 9066 241 627 5367 4765 300 6769 3931 2248 8601 4488 3295 139 1839 8848 6518 2189 1256 7746 3644 6068 2869 7950 1499 5416 5965 5615 8904 8697 7343 5601 486 6255 4375 8339 46 6711 6070 137 1979 5961 2937 2431 7288 1679 7652 2436 2337 820 9538 7576 4489 459 5500 7778 2398 8991 7905 6649 4268 5398 9055 2799 2206 341 3060 7714 7146 9373 450 2420 4754 2787 7100 9744 7608 271 9252 5480 2647 3659 7987 7983 538 2634 3435 5823 838 632 1352 8844 821 5934 181 3807 2154 8193 2986 7940 4170 2868 9263 4748 2423 4187 314 1667 667 8524 16 9124 7507 2317 935 4970 2315 8992 4606 6657 7367 1033 9117 2043 2245 9923 255 7892 1970 6379 8041 7054 2636 9641 858 5150 6093 765 1625 2725 3053 4348 2659 635 965 8365 1701 1960 1966 3463 884 6159 3946 4087 3887 9151 2415 2507 3985 5304 4364 7241 3959 1077 1601 9817 7238 1733 3477 3404 6298 4803 310 7985 2642 1886 521 3590 3768 9097 5796 1429 1830 7893 9560 5185 5607 6104 7641 6419 7741 8973 7601 6767 7851 6075 7696 9793 7305 3837 5250 8396 8111 460 8066 4165 1252 8910 6579 5094 4881 9564 4338 396 256 1682 3336 1150 8436 7553 9141 4373 2567 6439 7562 4045 1407 9511 7763 5127 3710 9886 6680 5388 4755 6255 3696 2737 3087 2739 6663 2860 7384 902 3854 1409 9403 5867 3390 8 1374 8097 7780 6144 9135 4971 2534 6796 4450 4654 7175 1982 2972 583 3221 3697 2438 6406 5642 772 4723 8495 7190 2264 9478 5450 5920 9950 7886 7319 3522 6266 440 2943 5473 1381 7893 1998 7184 1448 3395 6740 3108 7321 7457 1836 3849 5455 8063 6940 3621 4961 5171 1881 6392 5671 6360 4645 5061 4982 366 4996 9628 7037 3072 5236 1889 8258 9379 6888 4104 930 8100 5057 5654 7014 8810 1472 3737 7297 3147 7426 7556 7194 814 88 3707 2588 7390 2243 6723 2823 9863 4660 8709 9332 7978 3593 2525 1870 4940 9254 5158 6016 3486 4556 6366 4024 7878 1900 30 5802 8390 4880 4421 4203 6621 9766 622 8228 7978 7086 2642 7368 3144 8429 2253 5082 3489 3964 67 6235 6168 5279 2296 9010 1217 2496 9151 1745 8805 5304 7160 4333 9170 3918 4125 7921 1614 1186 6874 5994 4413 8352 1421 1724 818 99 2639 2076 2471 4822 7395 4456 7370 4139 4599 5244 9430 9400 2337 1629 610 5606 8714 6322 4168 7886 5678 581 6048 9610 7512 2587 2801 4239 5317 6390 4252 6323 497 265 1873 5111 5762 2241 7821 8023 5722 8826 5748 7528 9046 6836 1548 3213 3646 5519 1842 3293 1378 312 8697 3011 5302 5552 2352 8809 1541 9381 7493 2107 1722 3941 1655 8082 2628 3005 4756 6148 9555 312 9961 7167 698 4019 8373 7240 1601 2507 7923 9672 8596 1490 3281 9980 126 1925 1023 7926 4110 1087 1786 4996 3114 3278 3948 3853 6181 9789 711 720 7493 623 8257 6822 4863 4049 6144 1915 5649 4179 2590 747 3472 4945 399 8737 5209 1235 6408 6200 2045 2275 3823 8556 637 317 761 9916 3826 451 7170 1556 4529 1759 5343 1682 5982 1961 6579 9581 5056 5758 1504 8784 893 8390 9346 2128 2115 7894 6420 3082 369 2265 7261 5253 5898 4818 5089 7432 2482 6191 3474 8412 380 2122 7422 3702 3688 9534 9465 4147 7790 5167 4972 1504 2669 296 6518 9514 4240 2365 9105 6780 8736 1774 8448 8239 6005 2398 2858 754 7810 224 7891 9622 1599 3713 1013 752 4936 5356 6731 8126 4183 5300 7889 6113 8969 9696 6287 5423 3318 5623 1961 203 5245 2621 825 888 902 1243 1917 9402 103 3309 5807 479 1361 6034 2468 5392 2113 7175 7532 7416 4615 321 7399 5929 32 7079 1975 593 1909 5974 138 7871 6835 5058 5805 4836 7787 2711 8491 2767 4220 5040 5758 9735 3772 6089 3122 5916 3755 8191 4579 8767 3242 6967 9785 4545 6342 821 5905 8416 5417 4569 4479 2491 8748 2805 6721 2650 8690 8355 4521 1841 90 5933 7557 1778 6396 1063 2798 4904 7114 9937 5024 121 7539 3323 234 2837 6186 8933 6374 1785 6197 5215 76 4634 8274 836 222 1233 8342 735 9514 1644 2895 7984 6994 2431 7433 8411 4403 7042 6714 1 3293 6076 4751 5794 346 1693 9305 3917 7326 5111 3654 3494 1728 7030 3222 8262 5691 3038 9194 8811 4708 546 145 9143 3013 2576 2834 8242 986 2843 877 4792 6255 1242 2121 4055 8474 2483 1467 1544 9541 3835 1051 7806 3242 3856 2469 6341 8409 4413 2042 9884 3259 5455 8641 316 8970 5766 5059 9843 4096 6368 7681 2597 6459 9006 9517 7327 1909 3805 7103 7927 1535 4127 5703 9254 4691 776 1807 6661 3196 3866 286 484 4377 9815 6503 5570 1396 1221 9860 4684 1171 7279 5014 3005 7431 5895 4164 6841 1206 509 3103 5755 3153 2061 8660 5134 8316 6345 6232 1063 835 3624 219 3705 2742 960 7717 6552 6592 1835 7199 8537 1316 2536 7030 3293 373 4437 8892 3834 952 4903 3209 9459 5977 3871 5316 8697 9474 5300 6773 4256 5007 5221 6160 1920 1443 7709 6639 3198 8232 6961 8813 940 3346 9922 1417 19 8329 1063 451 4482 1016 1144 8312 2652 5153 9872 3975 1339 5985 14 2 5413 9429 2137 2977 2138 6615 8521 5371 873 8985 3518 1741 3549 5563 33 8514 6358 5671 4793 8892 5044 4018 232 8558 586 4069 1523 3171 484 414 9801 1481 8960 2429 7029 6227 9774 591 1907 8866 7993 5561 7775 2875 7838 2825 246 3913 4725 8548 4539 8924 7933 2253 546 7330 4094 9786 5617 1520 1217 1020 3156 2778 2112 6433 8807 5257 7357 542 7762 9327 8592 5918 3246 6966 9882 4832 2491 2052 2160 8829 8065 9017 1420 2357 7440 6619 6794 5437 1744 8624 1701 3087 763 9460 2634 8296 2010 2187 4855 8040 1588 5704 8843 5810 1255 7750 300 8828 697 6269 5296 9105 6227 8405 7531 8064 3169 6872 8487 8590 1816 8521 5510 957 1946 3831 5327 6682 7304 4412 3689 3507 1583 9983 1802 4201 9004 7348 1727 6403 4617 722 7801 8251 7228 9677 9357 8716 4120 4592 3490 6155 7025 5623 6493 3625 1830 3616 1440 4340 9394 9596 9625 6429 9317 1375 796 5712 2495 9515 7109 7625 2009 6601 6858 6842 8775 2219 5680 902 6272 5371 1552 9846 3247 7586 5419 6448 462 2716 1211 4064 9079 7840 7928 2059 6676 2646 2804 787 6526 1204 973 2522 3757 8497 1779 1537 6572 6463 3485 5908 9729 15 4679 4653 3257 1550 8776 6788 4979 3522 2241 6978 9175 3352 4201 9395 2571 7575 1093 7770 6621 7641 2395 950 8114 3320 8584 6371 8232 9549 8120 5063 7594 825 8045 2720 377 4796 2119 4770 4716 7916 9100 5340 4090 1504 8396 1847 2901 584 6978 6934 9736 7008 1695 630 6741 7939 4445 5909 3529 3005 7105 4546 8739 2668 5175 8685 6282 3206 1402 5445 5380 2716 9782 3562 2088 1496 3348 3371 6272 6585 9856 9150 9214 2159 6458 4981 8213 97 2349 5282 6753 2188 4131 1136 3949 7537 6566 5374 4294 9603 6569 8620 1451 4527 6063 7305 6561 1920 4251 5127 5206 2220 1465 518 2124 6096 3316 282 7192 3776 1454 3910 7311 1311 8998 997 6660 5952 1004 2622 9295 7294 9020 2776 4031 6157 2934 7257 244 5474 3211 6234 730 5784 5946 993 7590 7057 6701 5088 3030 4032 1092 8638 618 1894 6818 765 7110 9220 9045 6332 3004 6345 1226 111 1935 3044 1412 6075 4982 8321 7204 100 3517 2845 2819 2973 3132 5347 5226 4175 1341 2898 1870 6453 6821 9342 2211 5160 5721 8963 4978 320 9560 3294 9967 7502 8460 1558 5572 9592 3647 8791 160 7664 8740 8851 1418 7993 6765 483 2722 1913 5861 8101 4756 925 421 368 2357 8784 5921 5778 749 4026 8330 7726 1485 9096 1318 7451 5220 8375 8386 9449 260 2622 6367 4902 7097 7196 4238 4685 6657 9506 4776 8502 7079 6534 4911 7448 599 1028 1551 8733 1175 3938 2777 8026 3660 3984 2084 7619 6575 2221 6325 8791 40 3605 331 7467 8501 7752 5584 673 1963 3635 49 6727 1502 4947 4347 7552 7894 187 8562 1065 3897 8695 9592 3597 6435 7623 9295 8710 6742 5195 5181 6747 6650 6049 4643 4598 186 8988 1703 318 8897 2397 4947 2443 5425 5191 9444 7674 5385 4905 4756 5155 499 3538 8494 8890 5053 1877 2869 4845 5696 172 2851 7675 2392 5306 6635 9644 7591 5117 6427 2763 3374 3797 5010 1185 7311 6892 7290 6411 2453 9284 8263 5000 4379 3640 2583 7074 1348 154 9595 4444 6070 7951 3876 8206 9585 5725 7479 8521 9212 3517 8273 8175 5961 8113 7838 9607 5543 1218 9270 8162 514 8935 8761 717 8614 7669 6612 8361 9718 2156 9628 2375 4138 5595 4792 1710 7857 7867 4966 8473 9355 1644 8300 4635 9130 2662 4433 8114 4804 8515 9922 2515 4461 3080 4098 2155 2284 3683 8597 3117 7690 9910 3797 6117 9340 5430 4026 9674 6593 613 5260 1308 2804 4876 1588 3536 2391 1864 9709 494 1151 6928 9866 7176 5202 852 9020 3011 1681 6958 8638 6694 5020 8202 2237 667 6063 400 398 4427 6599 3060 9143 1537 7779 3581 5460 1241 7465 8850 9131 7388 934 1506 2602 6515 5762 2845 774 3254 199 1135 2875 6360 5073 7245 3516 3656 4654 2879 7242 8740 3648 5717 1077 4920 1095 3226 5928 7743 3506 3370 7023 6145 1973 1485 3295 5652 8789 8971 7646 4478 7140 4615 5921 4903 3280 2919 4094 5534 4429 2851 7507 3274 5035 3207 4914 3738 2925 1699 8546 8431 7607 8862 8591 2439 4117 6119 2015 6103 8795 4217 6525 3129 4382 7288 7550 1864 1525 4756 7139 7472 8248 4818 552 1410 9669 4657 8124 2707 5809 7642 8531 2922 2881 6889 8984 4707 1623 5123 3862 6596 8675 7631 9461 1667 7341 4658 1898 5627 3645 3720 6019 72 2990 3613 7218 365 6455 1787 3887 6073 1943 6225 2825 5827 9266 1102 3446 2629 9074 149 765 2853 3456 7915 7283 2109 8605 6623 7405 5791 6599 5958 5928 120 6062 925 6752 1817 5904 7260 8139 124 4214 9847 3800 8620 2744 3617 5488 4495 3118 1763 1030 543 672 4107 7630 1755 5322 9067 9439 5892 8601 43 4274 373 4479 9022 2931 7697 8685 1108 5386 1880 1890 6315 4081 6923 8352 2662 4828 7403 9282 381 5440 7230 7696 5858 8672 7147 7528 2044 1280 4382 442 7085 9940 7108 1319 312 9012 7084 8432 7966 5330 4588 8648 9542 713 9967 8517 9942 9960 5195 9115 7371 8841 2407 6374 5919 4624 3592 6842 4047 2394 9795 6694 3021 512 7876 7991 1220 7134 3246 3508 2943 5098 6810 7385 2609 118 8651 2172 4485 5021 2746 8964 5557 9960 3726 261 9580 8323 4465 8100 300 1392 7483 1035 4311 7232 4913 249 3996 3253 7290 9926 7951 5915 4614 3321 5976 7676 4362 8284 6250 9854 558 4533 6362 9313 5392 3688 6408 7494 3700 9745 4068 4666 5333 6125 8311 9063 7034 5591 4051 6004 1027 9136 7247 6859 1818 2273 8080 1995 1184 2896 6773 7297 6836 8217 3346 332 9164 4746 1318 169 6952 6919 454 9598 7161 3682 7169 9411 8037 6823 6110 9068 7914 3032 2011 7869 9030 3932 5900 2231 6344 5817 1126 7577 5512 2330 2490 4220 9569 8549 4219 3145 2458 3352 7411 5218 4806 5967 4148 6756 3990 9544 4588 4951 1826 5359 1030 1692 2097 8723 5432 567 789 6867 8954 8914 8408 8204 487 1635 1332 4910 607 8628 2810 100 9547 725 9727 5494 1120 4812 8826 7727 7279 9077 6751 2606 2761 5852 1854 7045 2102 1798 7911 3570 1863 7312 135 1101 6100 5266 3395 1102 6752 568 1539 9023 1483 6609 4335 9944 6119 2021 5017 4183 5799 5335 9869 8028 263 2418 710 3393 8957 1594 1653 1946 2686 4673 690 9910 8045 8189 8812 2434 379 8648 1117 8440 3889 7681 7837 6195 2801 2350 8434 1994 1710 9219 2968 9084 5745 3707 1710 4912 9050 3663 6154 1280 3638 2729 7837 5361 9960 1388 9180 2834 5428 9952 1960 877 6377 3055 9325 8837 2645 6695 2941 2640 4945 4539 9774 7876 1766 6862 4147 7244 1825 4198 5661 7852 8584 7678 1855 1472 3362 5029 5878 7021 7540 9688 3873 9789 9340 3715 1363 1511 7494 1407 7144 5704 3885 361 9556 3800 3092 3387 7446 3920 4529 8935 6561 1198 6664 3642 2053 1451 3938 6565 2253 3385 4497 9731 6706 4034 8100 2654 337 740 4359 2842 62 1865 9215 6568 6723 8793 4521 5460 5707 1542 4802 8933 6098 6905 9008 5798 6260 4574 31 6419 4717 4513 6695 5027 4510 4525 9417 2163 4220 6866 4129 4821 2126 7614 6324 44 6701 512 4743 6979 2875 6317 9943 7263 4545 4732 4133 9212 7960 3459 4857 715 708 545 3009 7239 2308 2321 2131 3041 5446 9118 1971 2785 8964 1531 5432 9127 8081 4950 8898 886 9424 4190 9141 6866 8143 4162 7065 5691 2072 1080 2333 4181 6289 6617 7381 1847 2804 8975 8072 1761 3925 6232 4819 5955 2058 4060 4870 3336 6971 6225 9367 2836 318 409 5175 5772 228 8442 935 9933 3507 2506 9540 7886 9662 4721 9210 7492 1746 664 5052 7799 9811 7597 4037 4811 7754 1941 6258 5787 2990 6243 3531 3735 6707 7346 2651 2363 4840 5010 788 2963 4884 6905 2690 4251 9389 6972 8021 7692 3196 2214 9236 2115 9860 8656 8713 2772 3443 4913 6898 7566 9555 6413 9548 3265 3825 1007 3850 8353 594 2962 1611 6195 7455 242 57 4100 8357 8998 9406 5407 3757 7347 3053 2596 6309 8938 976 5628 1327 6187 6206 7981 9202 2474 6952 9097 6748 8985 2310 9016 4568 3034 7188 7825 8572 9863 6465 9614 3055 5066 9663 4708 5538 743 7488 9437 8477 8185 8919 5926 7135 6853 9564 7641 7191 1880 6505 3203 2186 1133 2711 4599 5982 4309 9352 9248 9937 1457 1610 350 3203 6668 6222 9623 9143 8312 4328 5717 9683 8262 424 3578 1729 9897 6795 8978 4901 1314 224 6762 1546 3587 4029 417 1622 6566 9307 1767 9068 4329 3643 2058 3851 3545 5207 6043 7164 3878 5389 7356 8077 1607 6037 8274 5222 2726 6053 5951 8294 9623 6753 7890 5106 7754 283 2624 4385 355 2611 6283 9836 9452 8704 1664 9594 1325 3723 7667 217 6509 1268 3762 6180 7207 4716 5865 5017 6902 5958 7993 970 2186 345 8100 2057 7612 62 9791 7820 5632 9715 5370 1074 4953 1527 40 8148 7415 7948 7870 6423 1297 998 6248 1051 1208 7710 9658 4416 895 6102 1280 167 5431 3538 2834 9288 4980 5993 6102 659 2400 8044 3250 5978 937 9464 7859 2964 9461 3619 5154 9926 8415 9708 3020 9466 9087 8472 5003 4029 5603 514 746 1640 7570 4785 3972 9284 9803 6664 9314 5127 9575 3465 1208 4747 8375 3040 5404 7652 4721 9253 8631 3328 8011 5231 4466 7201 7337 3060 3625 91 5131 5909 2804 3743 5781 6352 7258 8505 4544 7441 7394 8850 6866 4500 9998 6771 2805 2894 2852 8239 372 105 8890 4531 5151 8407 1546 3348 2387 492 65 9528 5245 3777 621 2662 664 8857 8037 7876 2233 1893 132 9291 6690 8870 8750 7311 8230 3163 4408 1550 6131 5650 2280 2340 7804 3316 4734 4527 4267 2008 8733 4981 8046 2042 2642 9950 642 737 6812 9357 4954 5200 8900 9284 5510 9450 6120 82 6596 7692 6779 5703 6248 6246 253 4144 5176 1671 7539 5932 2436 7454 7710 6476 6255 2272 7611 1976 308 8824 9918 6111 6343 8864 3340 7345 949 6680 6026 6734 2581 2707 3029 6664 9033 3394 6587 2867 9106 2284 1456 2064 7039 3525 7577 1224 499 9872 8926 3967 2224 4332 7813 8076 3402 6663 4643 5729 7177 5680 8409 6674 4477 5243 1832 7549 8628 9157 8515 4077 7879 8418 4425 1868 9139 5565 8893 7968 4937 5893 7387 7981 6234 9745 2203 1257 2527 4840 3844 1019 4335 869 8076 9973 7589 4625 8870 5689 8835 589 8399 9089 21 1873 7700 6102 5900 8117 816 9274 8646 4288 6283 7162 8470 8883 7932 4677 9823 984 4043 3680 1990 6492 9314 85 4624 3574 1560 9414 2352 7270 8424 8595 7031 6017 6781 4202 4280 5897 9275 8366 951 5081 6292 4537 4011 2475 6174 924 138 3075 8023 5194 3232 2107 2492 8688 9857 179 3718 2226 7660 7749 9154 2972 2748 9446 6329 487 753 5123 4028 6044 5903 6961 6014 3967 261 6545 372 9464 8500 114 7962 4020 4691 6098 1928 7976 6777 1493 1705 452 6695 1022 7627 3247 656 984 2995 6149 9167 7074 1218 4669 283 5788 511 5 1164 4180 4110 9801 8045 724 6181 1790 1011 4265 4993 3927 5727 7786 7943 8860 673 2010 6454 4054 7046 4408 8594 7549 1237 3909 4671 8936 4031 1094 1612 7871 8332 4568 4277 3857 3136 824 4071 5573 6517 6640 3479 4262 9828 4796 9699 754 8951 7182 9831 3105 3326 9633 4494 8490 9683 8380 3898 9586 6466 3651 7849 9307 5157 9098 3953 3972 3676 5975 9565 9793 9153 7448 8365 4297 1076 2687 1050 886 2007 494 6815 2101 9208 4810 4036 1449 2822 3819 1817 4063 5376 3738 4156 168 1587 2634 6645 2183 1379 8426 5659 9613 7177 2180 9369 909 8610 9969 5002 9649 932 1750 8523 4065 3893 3750 1252 5370 7057 3784 8131 8169 3419 4507 5307 9082 5261 3505 562 4588 8788 1260 7906 4371 6548 6424 4123 4632 5682 39 4527 1379 1917 1773 4425 5671 2207 2064 5912 414 1005 9191 1324 2407 8840 3049 2309 5368 6339 2807 8527 2425 6275 406 5810 8289 6892 1327 2171 2145 2267 750 8572 6318 6313 2132 2492 3621 2057 8205 132 4381 7824 5777 9064 9398 1817 8175 5553 1833 2431 3448 314 6371 1112 2180 8263 8925 7791 4427 5763 857 260 5476 4230 5539 5570 367 9667 779 6745 530 2285 3543 6783 9011 232 3101 3634 8618 2066 8171 8201 4252 3970 625 5690 1632 4327 1559 7252 1639 6896 1007 6484 236 6902 5286 8364 557 8896 743 4981 5749 2973 3096 7800 7310 1643 9159 2327 3348 8366 4397 2533 945 3413 1385 9975 1245 8896 6451 9791 4714 2837 2355 7860 5857 2250 9861 4109 845 3043 2553 5533 9447 581 6254 343 6441 6670 516 1199 1796 9190 9768 8081 2597 8595 9529 551 6821 643 2215 3376 4977 9602 3001 1218 986 5 1593 9689 6054 57 4182 4692 9362 739 4554 4460 9430 4415 671 8462 8415 6557 4143 9307 8312 6849 2861 5992 3803 2024 4772 5805 1327 3335 1548 4969 4223 7029 6431 587 572 5219 4597 119 6824 4194 2144 7413 3188 7287 1620 4384 9674 5859 5522 2365 5872 6986 4060 2662 8361 40 3466 2977 7844 8083 9245 3090 2268 6868 7865 144 8398 523 2259 6328 316 8150 4806 9731 9389 1072 8361 3759 5923 1868 1187 4117 8299 3298 1699 5833 118 1401 8141 8980 948 4013 6413 8790 2983 9983 5555 6649 2414 6654 5686 866 3937 4932 2944 5806 8614 3423 7062 588 4955 5136 6497 5971 4162 6305 2281 7099 3870 4511 2075 408 1520 3023 3153 1478 2580 273 7886 3844 9324 9404 7213 6511 308 8728 7223 46 2889 2011 2429 7358 8996 1153 1651 7856 5284 369 9618 5397 6490 7327 8939 5974 6852 6245 9255 4457 7529 3094 2502 293 216 3136 1096 5859 802 1838 8540 9331 7605 6611 766 4203 3985 5300 1613 9439 7293 872 1735 9303 3621 6727 5401 9202 7770 9435 5926 879 7893 8842 6915 602 3092 209 5810 4615 6683 5703 1612 6884 1926 507 4535 6783 8411 512 5158 1073 4006 3466 2087 1713 523 8869 1431 536 8798 2830 5502 3568 8143 8827 5116 7637 9555 4072 3471 473 9441 2863 4672 5546 5325 6904 790 7072 9812 612 2075 4953 1130 3311 3760 2057 7410 7228 3072 5948 9595 7267 3183 9458 1235 2502 9551 2177 1931 5428 8978 160 2894 4534 8564 8384 2879 1279 4596 3164 1932 7142 2345 7707 4640 5957 5602 1361 9868 4483 3308 8450 3755 2998 1368 1865 7005 6165 5760 6674 3442 4043 4563 6110 5915 3211 6418 9577 76 4618 9379 7982 1988 4954 4149 6517 939 6891 8503 9332 3189 4605 2803 7588 897 3139 3185 4118 9215 8362 3016 7350 9878 1896 4120 5987 7866 1095 3661 8877 5621 8102 9348 8469 675 7519 8687 955 605 3736 969 3603 6456 300 8222 9125 123 4911 2774 6790 9845 9598 5171 6469 1744 4713 7029 2817 7141 4073 7080 8421 2395 8928 4137 5378 4645 3019 6253 8413 9266 4316 990 8872 4084 9554 2972 1049 4159 2486 600 8901 7101 6734 4065 2131 7593 5382 6697 7614 3659 8104 4405 1400 5273 6803 3680 3641 9568 6101 9733 8235 3240 7935 4928 5892 3859 2169 4472 692 7129 9911 2605 6210 7636 1167 2954 8945 3174 2976 6870 6661 2468 5060 3852 9322 4456 5484 9987 8325 7649 3810 1557 7550 6571 1346 533 3690 3148 2446 3014 7876 139 9320 2904 5132 695 6091 2987 5456 421 341 9553 3367 2112 3388 2066 5465 2150 5977 7979 9761 4115 821 418 7678 8002 3644 6654 8211 54 7793 845 4670 3671 5074 6142 4279 6383 6299 9852 7717 1930 4891 5802 5395 3296 1968 4345 4072 5169 1450 2642 6794 898 5755 4315 2652 7751 1474 3697 9165 6088 9310 9903 81 6552 1761 7921 7215 8879 8436 4566 288 1486 8179 4086 5098 7660 6037 6721 5298 2636 9725 6211 5045 1974 4245 1983 4675 6002 9374 7028 7558 1284 4647 3670 4032 6684 5017 6543 6750 7450 1481 2099 7531 7297 4804 4093 447 5707 9079 3893 4693 6262 7885 196 2433 1074 7784 7991 8399 8387 1797 6955 7017 9280 1957 2978 4158 937 1555 6962 2805 867 9531 9248 5396 1232 6516 1907 2402 3583 3639 4928 3054 3265 5701 2576 5898 5548 9135 4369 3666 3217 7477 7422 1681 7595 5873 8814 5779 409 1787 9377 5323 2060 8507 1583 1516 1162 822 7207 7091 3921 7264 1205 3691 5451 1946 5354 6022 5283 8469 2971 1122 5039 6906 2807 7315 7850 1330 4887 4064 2626 5592 2577 9346 2162 7090 3020 3979 126 9707 703 7854 8762 5810 9172 4576 7918 5294 6712 2404 1633 6559 1663 9421 546 4685 1437 1135 8838 8741 9752 5358 6470 501 1198 8193 7174 9072 2026 9430 5572 4507 7454 8548 2344 9034 7579 3115 4938 9755 6493 9865 9269 4292 3851 9075 8540 1897 7803 2953 5307 8580 854 9639 7739 3470 3315 3385 6217 5346 2057 5379 1671 2143 1693 1737 2031 2880 5195 8560 585 7518 258 6745 6364 4785 7225 4955 9465 1084 4849 1878 735 618 7151 7024 5723 6525 3399 9759 9162 8386 9083 4876 2244 3230 7609 2219 6225 3087 9634 8419 3338 1593 5327 9821 7221 8435 7559 9353 2974 6264 9545 9714 9612 9662 5665 1169 6363 3851 9838 4644 3462 952 2888 1210 4954 4665 6244 2451 5499 4829 6247 6270 1632 1536 1355 1964 1680 4824 1642 4578 1899 7103 2712 2300 8801 5624 7786 7767 9180 4832 4999 9480 2308 5316 5928 6856 9728 5199 7456 4007 2002 7756 7872 9779 7522 6002 5693 2798 7234 2645 1294 8709 3529 3710 7415 5831 3654 1374 5995 257 3542 1082 358 905 2323 8918 524 8563 5587 3973 4047 2088 180 504 681 1757 6866 2755 47 2105 5273 5634 5494 1324 5245 589 4282 7391 6426 7502 750 8943 4333 6345 985 2009 3837 2979 3952 2199 199 5118 924 423 472 2209 5049 8707 8174 4122 8344 7225 1601 1062 5316 1069 8700 547 7540 527 684 5050 5732 7717 5014 661 1268 2096 7276 947 3727 6017 7024 544 7664 1218 4317 1564 1258 5278 1546 3817 8164 8844 1258 7103 5304 205 5717 9484 5579 7333 6882 6315 8363 8440 9731 2560 3434 5787 639 9370 9535 889 4733 4955 5203 7897 4625 803 9746 5025 7446 5205 9222 1962 358 4728 311 2710 5053 1012 9750 3898 1901 6458 9213 8336 3406 6735 7890 876 342 5522 3156 6818 7334 4230 528 8697 6703 4256 5294 9635 1773 5775 6163 7299 6314 8491 2501 2187 4943 3003 160 3488 8318 8337 4704 3057 9160 9415 3384 7374 244 8877 9836 146 9079 7601 4196 1377 5132 5356 1267 2569 2017 4432 165 1629 1761 52 2178 6117 9592 9828 7042 5829 1028 4530 790 7521 740 5994 9437 998 6786 6682 6447 9193 5322 1797 8660 8375 5709 2283 1658 360 1908 2927 395 5710 4434 628 4527 2912 9973 9474 3701 4008 2520 4165 7187 2110 7004 325 1822 9699 9046 7052 9883 4390 9497 4742 8725 5659 319 7168 8500 1227 2110 7028 3535 9916 4771 9237 7864 698 8427 6011 5144 7312 5732 4478 3341 3212 7135 2122 7927 310 2178 6216 896 4027 8080 2631 3575 406 4444 4927 7907 9642 2208 5927 4548 8978 477 2761 9524 8133 6511 2403 7653 7535 9307 302 7787 7195 6837 9851 3860 9250 3505 8820 5227 9220 1214 2237 154 1358 8391 1257 6426 6862 2550 4196 6108 8537 8358 3127 1680 121 8088 1987 9290 510 4387 1543 680 3578 1702 7132 5974 3596 3168 112 259 9752 7617 9227 9662 5118 6573 1023 4489 185 4561 8512 4828 4899 6285 6352 1062 4450 2865 8464 9089 2129 9916 455 1908 964 7948 5626 6589 1676 3861 3740 3614 3327 9534 9074 5454 607 9583 9525 7202 1596 2990 1444 1157 9315 2009 2255 8690 3820 5063 7562 4896 3498 9312 7658 164 8720 2506 8184 864 8131 8620 9983 7089 8808 80 1536 3996 3901 7892 1339 4668 8697 4162 1731 1324 3263 2340 1737 440 3026 4762 4921 2665 72 6914 7225 5751 2089 8114 2123 4858 954 125 1914 5406 420 9848 16 6637 415 5490 5995 2040 832 7801 4205 7010 4374 5754 8303 7482 3059 1124 1887 3548 730 7974 7361 6438 5036 749 5753 2869 2152 5256 7347 8013 9192 555 3172 2061 6949 5692 1246 1294 5725 5606 3124 979 9275 7330 6537 8960 4670 9380 7610 7710 788 2355 6336 2054 7925 3395 9157 8303 5592 7204 4406 6048 6526 7552 8589 5087 9111 2957 9860 9654 9266 7373 2839 2292 2104 6173 8402 2961 9835 1213 2355 5246 2893 8114 6980 2304 6264 6578 4923 7697 6582 2506 8461 5994 4118 2615 9997 6955 3891 1493 8813 5278 1209 2340 7660 3710 5677 7448 7272 4566 906 7038 5823 4538 9698 3267 1466 5785 8725 7363 6601 3965 3796 9324 302 5704 8459 8691 7589 8781 985 2129 4270 3834 6546 812 5741 8573 772 4536 9031 7167 7864 94 5786 481 9696 3131 579 5007 6996 4110 9359 5590 809 969 5682 2663 4745 3039 3218 8237 3224 1832 7569 1597 2433 6541 7724 7853 3686 238 6216 3759 6952 5547 2325 2650 3519 297 105 798 9271 3505 9371 5951 7158 470 4020 640 4117 1649 9107 8399 6335 8659 9454 6980 3909 2507 4413 3358 9906 5730 2810 3125 8819 2650 9646 8814 3546 1349 3116 4692 7298 1925 6924 1384 929 382 5636 3119 3474 8803 9783 47 426 9407 1803 8649 261 3959 1233 9400 9134 1056 8026 4898 5346 3318 7621 8970 6758 3324 3153 1525 3568 4513 2653 6769 2326 9897 4909 9136 5594 7766 1191 278 795 3383 5101 7774 6880 5921 5779 4934 64 1551 1323 9617 1540 403 5894 8962 4892 5932 3539 2870 7068 7149 5259 8611 4500 96 5778 1346 8001 9061 6523 108 4026 6042 8527 2968 3589 9929 4194 4984 6394 2560 5759 5984 2342 4813 3659 5987 6631 548 9947 2123 8038 6384 4883 4970 1014 4542 3520 2479 7901 8161 8843 7102 2986 1019 1293 5421 412 1142 5953 7732 9123 6213 3865 125 1506 2470 6321 3487 9754 406 9469 526 4769 4610 9180 8988 9909 1591 4844 2602 8209 1868 2957 722 6660 4407 7223 9770 5435 4045 5827 1867 3425 7274 8960 6902 2899 7918 1252 3662 2698 577 4261 5269 9826 7227 1545 989 8072 542 426 6838 2716 7981 1687 2339 2010 2243 7675 7846 1304 1554 8682 6381 6192 2329 9072 6508 9093 1002 9328 9230 5158 1772 384 7236 4291 7164 8411 3287 5363 9452 4069 8738 2978 8488 4542 9105 7537 9205 5710 569 6865 240 2436 216 7839 8897 5346 3088 1614 8173 4440 7346 9579 3527 8797 5184 4127 1990 9794 4366 4996 7207 9480 6229 8596 2667 1024 1515 9947 3862 3904 7006 4532 8608 2631 2402 3776 8256 3852 126 1435 168 2085 4710 2656 4292 2911 2442 7747 7189 9889 7602 5942 3835 9021 5427 2685 6985 5659 8662 7829 7275 3182 8815 5080 50 3949 5386 4634 1858 4594 643 3356 1016 2457 4555 7064 7284 4124 474 3959 8615 3706 5027 1774 4428 1772 9333 5011 1827 4804 9148 6714 7329 2128 4223 9377 5251 5266 4993 2267 9253 2501 4029 1950 1242 8770 3452 2371 6918 6792 1840 2072 4658 7111 7668 6194 5881 5674 5173 1501 7042 8484 7779 7543 1243 9423 7138 8898 9628 5026 5497 8561 9992 7499 3537 6649 396 9488 5468 9713 9939 7946 670 5902 5293 6236 2898 7908 9788 7591 8345 2290 7818 6467 6471 2192 2609 6487 9369 1960 5210 2323 6157 799 708 5643 7188 4401 448 9619 9520 2625 5374 209 20 4465 2947 7123 6050 3290 4024 4538 3556 5145 7007 7577 3465 2874 123 4593 3401 1254 3299 278 1832 1511 6313 490 9217 401 4140 2998 5889 8669 9967 8244 3086 7691 1991 5228 1541 9691 2207 7547 7443 1904 2353 3506 6157 4171 9733 6327 3255 4322 7037 993 4683 8855 1313 198 1102 8409 1068 5060 7255 3143 677 6844 8841 1318 7946 4334 2071 7258 4378 3250 8797 8649 6600 5996 3324 4211 1385 2907 3571 5461 1475 6953 7237 9176 8704 2741 3916 9938 6710 6352 5828 203 7933 6332 85 2812 679 4354 4062 3590 5630 9206 5913 6496 3275 4505 584 709 9847 4517 5065 5974 4310 2454 6730 4692 2838 8297 4995 2783 448 7042 8649 5578 6166 766 4333 9826 4815 9643 5938 9785 1440 7189 3445 7852 2958 8952 8717 5179 3968 9618 4945 9963 7430 249 9886 913 8699 948 9865 173 7663 7362 3521 3274 1458 3231 2454 200 201 9766 7235 2697 9362 8188 6253 6069 650 3110 5829 685 4338 7686 4454 7653 9440 7844 6162 1716 1487 6261 8272 2898 5661 3479 570 9715 5758 7276 827 1956 6475 3981 9074 248 3951 2531 8825 6712 3406 3966 6530 3389 479 1845 2026 9296 4324 4616 4619 2336 5146 3853 3438 911 7573 6154 184 9960 2126 5821 6468 703 8176 3704 1095 693 8257 7483 2044 7273 4584 6786 4457 9249 7705 7347 9009 7307 2266 1302 3344 6413 877 1184 5221 1640 6723 806 6725 9009 1396 2543 8856 3051 5512 2932 7282 2344 5086 675 2727 4707 8164 4125 4296 9066 2812 1982 2162 5541 5063 2636 8885 5273 6582 3429 8239 6923 1727 4892 8471 6771 6103 4121 2532 2502 5797 1359 1686 9625 4263 6643 6331 7955 7683 2074 4102 8587 2826 5126 8476 6811 3358 8291 261 9183 997 1123 2381 1701 2413 2425 2309 6082 863 3282 1344 9714 906 4171 9605 9759 8709 2699 8701 2677 7757 6159 6455 4357 7903 5237 6683 6856 2220 2976 1092 101 7740 632 1940 8891 5254 2409 427 5508 3055 6204 7567 7372 6613 4633 6660 8984 4965 5544 1202 1020 2727 1775 330 9046 4714 4738 2899 5236 6693 6303 4218 8087 4665 8233 687 9644 1819 7705 3934 8968 9167 5476 6554 3085 6341 7651 2001 1376 8595 120 9760 3911 220 3677 2015 9514 629 1861 6638 9926 9439 3656 8028 8815 1332 8929 1459 5856 6372 4802 3268 4137 549 3710 8355 6729 1274 2208 6404 3603 8301 5045 3003 8840 1522 5746 2131 644 8167 6903 6752 7602 9390 3412 7411 9403 8842 6484 2927 6231 3222 6000 2741 5681 6450 6236 7215 2334 6671 723 4216 6047 9258 2878 9483 5810 4989 9042 9576 3232 2330 8330 501 222 5289 2954 4917 2547 1466 8203 2722 5388 6066 8528 2292 298 12 6097 7794 3507 4836 5591 4903 1571 3582 2971 3972 6868 2819 2243 934 5391 3603 3369 4645 5919 5865 7337 9426 1010 8617 147 7272 2247 5646 656 5868 8920 1146 4836 4970 1551 7020 3248 5922 854 653 4299 3735 9630 511 145 1606 4428 2949 1392 5334 4508 3837 7353 6268 2107 7693 1465 1907 370 7743 4916 7939 316 8680 9309 2087 4438 7489 3121 9790 5338 4768 7700 5074 7134 1675 5167 2007 5846 9355 7295 8338 5904 3737 4321 752 183 1884 8635 6742 1983 6526 6089 848 9884 7623 537 7829 8287 3064 4904 3357 5177 9654 3510 7905 3730 2425 6851 727 2878 58 7194 3313 1657 9448 9436 3617 3320 6265 9120 4375 8514 6495 7752 9759 7436 1640 8041 1309 5927 5590 1336 4814 6685 2124 6065 657 7027 7620 9221 8847 3032 4668 5841 141 7735 6582 5506 2692 5181 9709 9261 9320 3603 8616 6542 2541 4064 2904 2920 8515 9379 4727 4940 8750 904 6072 6812 569 5163 8381 955 246 5827 1927 4450 5141 3821 4419 2331 6922 5407 816 983 9636 2107 4608 2434 5265 2742 5838 1675 4427 5177 513 955 9133 5462 3053 2001 1538 8650 2359 8228 3134 8809 7716 5474 9375 2505 1152 3813 382 7459 3602 2310 6245 806 3431 8936 3443 2855 4166 398 9608 6213 4681 1715 6167 9807 2954 4212 8728 6233 6393 619 868 1085 4534 4365 4679 5100 655 9894 9827 730 8327 2126 6038 5575 3118 6637 4943 4943 7591 6411 5654 8140 7550 7513 6513 3233 8165 4534 7288 5771 1191 9139 2721 5666 3389 5766 951 7606 9428 3459 9280 5905 9260 5826 9085 7393 1235 6655 676 4001 7263 2385 5353 6957 2405 5780 5107 8180 9830 993 6932 2074 5231 7476 4581 6217 9420 1112 2494 9533 9663 3764 1852 3131 458 9931 8191 4959 5534 8504 1543 5311 2067 2447 4290 3851 8167 7718 4446 7629 2230 9534 8873 3544 6860 1325 786 3214 5099 244 9165 5788 5114 7335 5549 8565 3642 859 8084 6342 7031 3387 488 3942 6170 6469 220 8907 4413 4973 1855 6895 6012 758 7962 4900 6511 9040 7014 2820 4634 5409 2765 4850 1092 4132 9052 1920 8745 8358 7141 1463 3953 5293 9163 3571 3137 4777 9833 5199 6889 6805 7095 709 7490 3819 2829 2756 9728 1538 3211 8698 2879 559 5880 5229 9257 3425 4980 62 6638 6777 5681 2694 8419 6562 2946 8784 8127 5800 7241 8693 584 1015 9203 2628 5730 184 7467 5290 5804 5476 4534 5431 \n6250\n6784 294 5193 5182 1988 4902 6907 7909 5425 9733 5933 1548 1207 2336 9924 3415 3214 49 1331 2065 7596 4794 5998 2898 8483 1910 3439 2375 7067 1212 6466 9144 8317 7638 9370 190 6115 4260 5270 4671 4823 5867 5035 2547 5365 9220 8257 9642 9627 3303 4469 362 1991 1707 364 8055 6659 2537 5865 1730 9576 7223 9292 9508 31 5752 575 7314 4432 8307 6836 8324 5907 3666 5814 9305 4035 8 3764 2893 4203 623 3762 9070 5557 6972 513 3955 1361 4294 4744 3247 7775 2261 4186 6782 6362 3814 2737 109 1128 3980 6302 8324 9788 8197 9086 625 214 6850 8368 9817 2527 9542 6356 280 4744 1244 77 8156 941 3366 908 1460 6717 5096 6320 3919 8653 736 4520 3318 2462 5330 9115 3117 358 3773 1775 548 5650 3417 111 5734 1883 2279 1257 7558 7934 9869 7774 4631 4878 366 6356 7781 1681 8876 2400 6118 2979 6791 619 6462 4317 1569 524 7282 7490 9505 4618 846 6947 4693 340 6789 674 2218 1030 9541 4118 6613 7786 3007 3451 7358 9087 4711 6851 7958 4836 3702 9796 9362 8184 7537 5082 1408 8352 8040 4037 9493 5126 2359 424 4447 1680 8112 2426 3353 9961 5212 2183 2686 4243 3919 2233 4502 327 303 4787 9043 5484 8195 46 9406 1695 288 4189 749 6495 4867 497 4267 9523 3904 5816 883 2866 933 4290 6001 2138 8473 61 778 9362 7072 2189 3789 9744 8977 5671 5293 4991 6317 7338 3291 9192 3810 2505 8662 6839 1115 7689 4458 6201 9631 7835 8346 9468 6933 2129 3088 3678 8902 7377 6826 6448 5767 7329 1105 1919 7620 5295 5603 8184 1657 1518 2823 9189 9085 1347 2449 3393 4689 9970 9587 1639 7422 5085 9782 3234 9860 3930 6636 99 9288 4712 2895 4274 2281 380 971 8627 2156 1989 8979 1970 1102 6248 6997 9489 6251 2446 4659 1494 3097 343 1334 445 7676 7790 2210 1323 8098 9675 431 6635 2584 8071 3 358 9529 4526 1843 7396 9338 6417 4292 9348 896 6385 6293 7276 1670 6633 3325 4290 9518 1200 1014 4914 161 6632 7483 3835 1902 8107 5158 6884 5109 4521 8041 5004 7944 6387 1018 3794 92 9223 5659 3075 9519 9406 8358 6738 1678 1076 9420 7711 4204 1093 6880 9381 700 1969 7092 9424 6140 2006 3214 6759 3302 1255 6706 8097 6964 2655 4272 1597 1318 799 1921 1562 3434 6648 8310 1162 9725 8998 2425 7739 1705 6926 4461 127 1008 4320 6608 1310 3575 3441 7600 8108 4570 2396 8307 6500 1767 9418 3729 2293 1541 1403 3256 8585 8750 3799 5206 4320 8279 8487 9575 8727 220 9467 3214 5438 5184 1805 2062 1689 4644 5645 8970 2947 3998 1302 6938 3482 8504 6537 9746 8987 2718 6066 685 5667 1172 4251 7275 5089 2973 7239 3895 4695 4151 4443 3301 8694 3491 8603 8554 746 8514 6309 2160 9630 3081 6461 1022 8862 1671 8981 669 4250 2535 5448 8238 5465 9062 6064 7899 8310 2952 5402 4941 2720 5056 3853 9157 1492 9290 1960 9209 7919 3057 5129 3127 5333 2717 2943 1019 7995 5789 1781 6529 6680 3151 6999 6120 593 5077 1934 7754 4027 5570 1935 2916 1107 4819 836 1626 7184 206 5823 9603 4056 4431 2687 5289 5485 5849 4435 3112 4710 7451 793 7014 4904 4815 8341 4252 3408 668 9487 8468 4433 3313 4601 2945 2824 9315 5796 3903 3112 5320 5540 5465 4453 2601 1150 9046 9560 6759 3891 9221 5514 6221 6921 2360 7115 2930 5830 1819 2389 5129 4684 1630 7805 551 2116 4455 9817 703 2424 2850 5380 1874 3908 3230 4735 4821 246 9326 8039 9990 3897 6393 9168 5968 1350 4414 7247 4832 5530 999 3974 496 2979 2314 5127 116 3948 4602 9424 3818 7085 6514 4304 723 6660 4999 3997 4508 1700 142 5461 5026 1322 3473 2245 476 1201 4528 8152 2350 452 2217 2640 5131 2042 3070 9320 4925 7220 3521 2570 5474 8422 4609 9213 5317 1080 4757 901 5310 7547 2368 5258 517 3075 6388 6618 6494 509 5260 1509 7516 2625 4337 2939 7886 6216 8651 3781 4293 3780 9544 7647 2721 9838 6610 5339 6479 4296 9697 8468 9477 5731 4433 4239 6233 9637 8541 9964 5416 655 5013 3218 6944 6625 6711 8314 2420 2143 1645 4668 3169 4292 8717 3340 7916 4727 7649 2395 3361 8173 9347 9778 8360 3136 7898 8410 8601 4830 3282 3510 3555 664 3919 8140 5641 8603 8066 1334 9487 2545 7832 2946 5586 8623 4900 7187 6731 7940 396 3450 8885 5287 987 686 7204 4955 3700 1451 567 4753 8271 8889 7090 9350 5844 7421 3541 7797 5982 1467 7342 1212 320 4470 5390 8892 3464 9606 1363 7693 787 8619 198 2766 7260 1890 8901 608 3035 6607 5249 3178 8812 1356 1389 1211 3304 9408 4212 8573 78 1960 6020 6649 9277 1423 3389 5512 9412 5682 3048 7287 5083 387 3617 8247 4102 5812 5714 3979 9348 9964 2035 855 3942 2391 180 340 3055 5294 4960 5142 8737 97 5778 5596 3351 626 3655 3248 6836 8982 423 926 29 8452 5653 9565 7846 8962 7055 5614 767 5171 815 8073 7755 740 8970 8725 6424 4790 7018 4979 9167 7245 7856 8161 1198 6639 2285 7015 3222 5468 3189 5905 6013 1419 1057 9200 9867 1017 6893 2350 3832 353 4847 8015 7577 3440 3338 9614 1471 5750 53 2926 9939 9265 4939 3143 7662 1700 8552 5516 3062 9386 1858 2859 8778 6421 9062 1997 1777 1375 695 4501 8593 8907 9020 172 5046 2742 9713 5803 468 1584 32 1218 8450 6434 8382 8921 1524 7279 9409 6170 1067 8462 1952 8346 5162 9002 8502 1017 4112 4606 4692 601 1898 6543 1194 4371 5658 4697 5745 9373 7035 7657 9044 8370 7117 9298 6821 8312 3538 2840 7848 9848 6460 5306 9323 7225 7613 3718 4576 801 2867 8016 2051 4098 2813 2058 350 2075 6740 8490 1522 9745 2514 9698 4211 7471 9904 8683 9593 3038 7542 5332 5385 696 1773 8528 3568 5591 1714 6247 4896 1366 2315 8836 210 186 2911 6442 6366 5265 4840 4592 3757 3913 1731 8796 786 5404 6422 8676 8035 9583 1349 5314 2632 2196 2069 361 5693 3438 9208 9016 7629 204 2026 8844 8240 3482 2229 9251 8914 8805 9023 4361 829 434 5205 3592 6849 6433 4143 2592 5897 3801 5406 6832 3753 628 4549 2580 9682 1700 7893 6297 4389 6953 3466 2616 6616 5067 5925 6145 2824 91 3133 7716 251 3109 2451 2630 9474 2657 4523 5900 9341 9685 9083 7726 1532 5923 7533 6018 9603 3513 3973 2837 4907 5302 9631 6441 2123 5600 2665 6236 950 1335 2194 3533 7033 6476 6123 65 1506 5840 2904 4085 2714 2243 5874 1597 6786 1930 9215 1947 9733 1265 3290 6853 6154 362 4079 4422 1456 4561 5735 5290 3767 748 8340 9073 3510 4762 1181 3265 2381 2365 7216 9999 3736 9199 5173 4724 3323 8662 3970 4888 2205 8336 7259 9034 2033 9738 2831 9034 3696 7840 2937 5036 1986 7095 2823 6050 1784 2092 206 6651 6359 1856 5452 2165 8188 7191 6045 1755 5978 6270 1794 3504 7656 623 9346 6807 354 4835 6290 6244 4401 6584 9925 6969 9552 6432 2863 9794 9202 9487 1141 9449 7051 8789 8607 8312 5351 1394 9546 974 3480 7506 5343 1702 4284 6847 9669 3867 971 2533 4459 449 1609 3906 1865 1890 8895 2855 3887 6123 2887 1250 6879 1040 9127 4930 9388 5030 8843 9120 1836 1860 6861 5035 506 9098 3511 5686 3419 1756 7437 9903 833 9509 3167 8236 5893 7177 5992 5112 1368 9308 5821 6250 5304 7812 3366 9640 5583 5089 1625 9814 6592 3197 8840 26 2633 4404 1071 7338 6863 7956 92 6009 2801 7733 6741 226 7251 3498 3670 1608 6163 7222 9618 9166 4557 7798 3732 2642 1838 5194 1348 8438 8392 5525 311 2453 1003 9014 889 6799 1924 9787 216 6516 4970 9269 8785 3025 4672 5377 6402 5171 2231 8059 5500 6037 3125 7963 5779 4653 3552 5627 9043 7780 2704 6434 6620 978 7457 9116 7962 8751 4536 6169 2175 6720 3811 6244 1283 2301 6909 4193 2885 2788 2219 6774 351 3077 6051 7720 5008 2746 4744 8594 5986 450 3886 998 4614 4199 1375 1047 6047 9385 2979 400 8937 643 9462 9603 6963 3190 3435 3067 9510 5396 8956 9659 8901 5288 6369 7474 5704 4663 9122 6119 2694 4151 8398 8619 5934 3528 2503 6019 2269 4419 610 8516 7284 2683 7991 6116 6128 704 7534 7076 4918 6862 5206 2072 5584 8906 7916 3589 5873 663 9312 7514 916 9132 8407 1105 1758 4764 1702 4621 8085 1657 6926 4735 4549 517 7464 5341 5698 2521 3844 4749 3644 7873 3244 8595 7432 5931 5797 5272 9181 5707 7307 7740 1370 8079 2116 6129 5458 2024 8962 6922 6767 5514 4075 7390 1793 8936 4347 5329 1051 585 1312 2718 9659 5887 3521 2858 5634 3456 5962 8216 9894 2190 1052 1284 1042 6678 3750 2713 8692 9526 8803 8142 1313 6283 593 1918 5256 2377 3524 6752 9937 233 1935 112 589 5842 3457 6425 1634 5506 5531 9863 8711 6780 6988 2563 2550 3862 3795 5908 4127 156 2882 6546 564 6749 1487 6336 2172 3168 8119 4935 470 9487 9868 6982 8886 4694 8143 4921 3117 1000 3826 181 4805 3842 5072 2302 4860 6437 8423 731 1804 2138 4735 1084 4519 904 4025 8867 8647 6546 2211 1453 1353 7556 4780 8934 657 8396 4532 8964 2822 5927 3817 9338 3661 6803 185 3475 7002 92 1053 5040 830 5089 460 7668 5369 7732 5336 5330 5201 8283 4567 4239 5131 4928 254 1327 1935 8233 3181 6469 6175 8863 2304 5285 3170 3315 813 4784 6695 5664 4640 8781 9323 6897 336 1236 7816 87 2952 1946 2557 1529 2959 37 9817 4795 2090 3761 310 546 8758 5386 7553 9831 2376 9051 732 5683 5166 6470 6569 2773 5778 2655 6102 7295 9175 1417 1811 8396 555 6449 8854 8558 6102 7054 6372 3774 4004 4980 7421 9575 5042 6747 5962 4671 5758 3639 9292 4646 698 2879 7646 1828 4518 4212 4137 7997 9268 237 8956 678 1638 3453 7128 4971 9200 9189 257 1000 6385 231 1830 9079 3895 9084 3911 8214 4371 4916 4829 8192 320 6705 1547 9114 6662 4385 5882 7301 5659 931 4867 3010 2653 3067 6603 1158 5410 9611 8388 7465 3369 1095 5947 8721 1675 1218 6081 1954 5656 5279 9395 3130 4385 4957 6250 1802 3738 3464 2340 1869 8568 8353 6830 4589 5285 1263 5744 1532 4340 5475 5680 1932 2204 1888 7054 617 8070 7766 2587 3972 7195 5489 5278 3109 7527 7980 7001 3673 4913 4198 7981 5218 4143 4636 6433 6860 6780 4628 4037 7445 4252 5457 6736 5056 6876 573 2918 5277 7661 5134 5956 5068 5094 9149 2 4471 6671 756 6136 7106 5476 7535 4071 1621 44 1893 3355 500 6519 1068 4627 3323 1170 7053 2166 2462 3948 1691 3537 4898 8229 4598 5027 864 4692 5156 9296 868 5660 8723 5818 2549 9851 8628 761 4541 1516 4393 8245 5810 3153 5457 1044 8739 6673 342 1053 6182 3713 9970 741 8546 2686 7817 9320 4272 64 35 5517 4589 725 8015 5338 298 1693 3789 391 7222 2654 7161 7402 1250 4660 3470 7967 3609 481 5516 3616 683 8197 6153 5343 3367 6023 8244 9576 8608 7855 443 5245 5217 3226 9166 4549 7333 4902 2710 4026 870 8365 4350 5663 822 3761 3956 4982 8705 27 5207 3794 9510 3540 8500 9968 6872 9987 1343 8880 9153 445 6872 5152 2804 4197 7709 1991 8735 8477 8180 307 3235 579 6114 8173 6298 6121 5294 9626 6560 3829 6211 5708 4312 2493 3966 463 8907 4543 3220 8826 9569 3129 7309 3437 6823 3392 7098 3536 3245 9712 1339 7672 6262 9344 3654 501 4262 7219 596 8968 471 7009 957 8778 5311 2990 9643 7194 6320 908 4914 1791 8156 3903 9538 6915 7586 2694 8582 9339 1378 4904 5188 421 1219 9108 8883 9797 7574 7825 4111 8635 5198 7724 9471 4393 5462 5192 5628 9863 9449 452 7445 575 6450 3826 7148 303 862 2237 7624 6063 4429 6491 3497 7798 888 4623 5115 5552 1499 6030 239 9104 2605 827 9850 4806 21 4995 7255 2484 5551 1224 9062 4087 7413 5586 442 9337 7518 3793 3980 7011 1879 5327 9080 2694 8040 7766 2466 7979 459 8345 2811 7705 3751 9079 2249 9440 7758 4834 3956 2571 463 273 45 8492 8824 9363 8746 5378 457 6959 4420 9104 364 4013 5317 7911 3268 7661 3290 4303 9016 6368 1662 1707 309 7573 9447 840 4560 8755 611 7972 1117 6855 9455 2349 1149 1904 1510 1357 3199 1890 9500 5516 995 7012 4478 5769 6670 9396 630 3573 5978 4610 8728 2787 6570 8868 9231 7069 9553 5119 7042 5978 3515 1676 4633 2910 6896 6929 4595 5847 7466 8362 6871 2158 3829 7261 518 1096 4387 1397 1948 2712 8588 455 9783 2269 9080 7676 2315 9324 9920 9985 9002 6804 5865 8903 8020 6320 3635 9 336 3177 3716 1798 5861 2297 8553 7290 9960 6515 9288 5702 5575 675 4371 5850 4097 9250 1110 1035 8720 1922 4611 1536 1076 8708 3368 8504 9224 7693 2738 2001 1249 2501 3261 4477 3288 3309 859 1254 6908 400 1809 3769 4869 6353 4676 1797 3620 930 2303 6623 8982 7556 3283 2264 4573 1827 9784 944 5011 7432 5096 3016 3160 6069 4071 5588 3865 2001 368 2994 2269 6884 2892 1479 6741 2245 9736 3218 9510 3276 7285 1810 3323 1409 5457 2002 7103 315 8512 5132 5650 4906 636 3205 8335 7375 4701 3739 5734 6063 9514 9191 4278 6566 1156 4250 8911 285 1339 6790 4242 7734 7947 579 7535 2208 5384 604 4352 2705 4429 1053 6303 2521 1984 2372 1539 9495 3656 7284 2070 1499 3807 3836 8665 1458 3008 6909 5074 9646 8996 3918 4151 9644 6074 3776 6309 19 1601 6156 5790 9547 1982 5901 8069 8447 7328 5531 3551 1575 4723 5044 765 2209 5593 918 7081 2325 3740 2525 8042 3935 7840 6402 7188 6774 3616 6983 6087 3317 9213 1798 1601 8721 7978 3003 3384 5539 6197 8515 7368 3223 5671 5983 8233 8368 1543 5271 7281 5231 3235 4783 810 1779 1797 7305 3647 2372 3319 2215 349 9124 3977 3680 1548 2112 6871 4068 6756 2040 4088 6399 5583 3243 8292 6121 5296 8362 947 955 8106 4246 3287 4685 4656 6585 9822 4293 9809 7008 859 5580 5412 6378 652 4612 5759 9893 8782 9636 9613 588 1272 7022 132 8140 855 815 1517 9578 4621 3206 1333 9272 5368 2740 4451 660 3125 7661 4961 3124 1771 3073 7686 6259 9436 586 9290 3518 8164 7694 4191 9582 8438 7881 8890 4943 1413 5797 6375 2019 3863 5058 8694 3658 5068 7245 7058 7265 5388 4580 27 7350 3189 8814 3887 2928 2917 253 9911 8804 2552 8045 1771 6008 8391 8892 6117 4935 625 3117 4390 1334 5838 2474 4345 5521 5248 2485 6254 3830 5923 2783 1674 6103 391 8872 6034 7535 6882 7508 5566 3076 7024 3099 9894 3019 6051 8771 7337 1877 1739 2332 2845 2365 5226 7743 2741 6993 8135 6681 638 1829 302 5474 477 7857 8463 2425 9574 3879 7440 1610 2300 2323 2613 4549 6800 9819 8195 3265 6154 3973 7263 3174 3354 1591 7240 6773 6574 6466 5123 9344 7554 6977 3327 5130 2553 7833 9032 9383 7244 7211 1982 1206 3161 6259 7732 1685 2630 43 150 6301 2479 1213 9034 3766 1295 1781 2498 3794 6137 8834 4666 6551 7041 2905 3562 5744 7530 118 7310 748 387 1591 2768 9531 6419 6540 795 1757 2012 291 2025 33 122 3731 4160 4315 9668 7460 9326 5520 578 9820 5317 5657 5139 9390 5210 1004 3339 6042 1098 2746 2933 303 6468 6100 8785 8390 5210 2770 7335 8673 6694 2932 226 2057 2769 2633 4514 9831 1936 8811 3187 6607 6578 9656 5839 2964 6782 9746 7318 2653 3229 3118 2281 5047 6032 7163 549 3670 3573 8699 3417 296 5218 2316 9896 5099 9874 6283 5576 6305 6848 3945 7245 9343 2529 2366 602 8716 7979 4043 1631 140 7280 3973 9292 588 8191 3591 5832 1464 5362 3220 2489 2560 268 8072 1093 1190 4976 9023 1932 6294 5900 9837 4932 7310 2700 8306 5927 6546 2356 9327 5514 4132 4473 1726 5342 5390 1000 1178 881 2138 5090 6915 6902 831 63 1275 2854 6374 9671 8312 6172 6037 5798 7863 2302 1626 9930 6967 1176 8898 5350 8307 320 5409 2999 3910 2622 2712 78 7204 2765 3916 5467 7131 76 6930 4256 7569 7051 5931 3635 6176 3184 1393 2541 3766 5267 7107 6967 7326 186 2512 221 2883 7749 3898 885 3998 7934 7845 1269 2256 6303 4471 8125 5525 8870 4318 4823 5291 8738 7208 9169 3739 8810 1030 5707 7668 1016 1628 447 8586 1467 4066 9021 4098 6758 4993 3335 7997 1708 9285 1106 4769 677 3559 3141 8987 2685 7217 1671 9319 52 2126 526 9224 1099 6558 9033 400 7074 4113 1468 5078 3461 4020 8898 5842 6182 1220 4171 5016 2816 652 3190 3325 7208 4343 7618 2772 7157 8224 3771 4523 2025 8814 104 4203 3655 8939 7705 6856 1700 5838 8172 8492 525 1797 10 1538 5140 3653 1572 5139 7107 7913 758 3765 4581 9103 862 1718 4369 8808 140 1685 8930 5450 987 3003 345 4662 9733 1565 7682 2450 4722 4448 3431 4405 8366 9355 5765 3364 5335 8732 3578 8135 8316 8171 5337 202 2082 3638 5710 8441 5091 9677 8965 2833 4480 7429 6295 1438 2583 8490 8796 3285 993 1845 9050 2285 9371 7627 4915 3235 7004 5234 5788 2256 2243 3774 160 147 1542 1820 4340 157 7738 1468 5525 1933 8548 8615 9116 7682 5480 415 1464 9660 4428 5018 9369 6935 1164 7016 1344 7024 1761 5979 8933 3937 6213 3452 2412 2437 7088 4315 8695 5911 8609 1286 4787 5639 5046 9192 1407 5206 1343 2007 3484 4473 3130 1442 1106 6137 4030 4593 1048 1786 1031 9476 9266 3298 1978 8623 2841 7385 8871 5611 9914 2660 8876 628 8739 2077 2484 7077 7821 1821 7519 4456 5794 2716 3619 2830 7641 9209 5002 8598 2095 8105 1857 8718 9534 9315 611 4226 7009 2041 2737 9356 745 468 4045 7832 7750 6329 7932 8513 7084 7010 6387 1630 7024 2124 4071 5769 1230 4127 8 9840 9477 8780 3845 7475 4215 7184 3619 3888 1155 2881 2881 5138 96 2943 2993 1465 5963 2327 4463 2100 9036 7769 5624 3486 6176 4260 3285 4692 7284 7276 5841 3262 5134 6974 3054 818 3268 6922 4379 7774 2380 7891 7399 9442 1694 5001 2905 2064 5258 6969 4676 9294 6934 9251 5275 7262 5582 8128 5141 5234 492 4748 2682 103 1903 5914 9051 205 5080 3698 5638 9400 3672 7056 6313 5144 9580 250 821 2895 5227 3553 3904 5962 4356 9225 2298 7645 5264 8143 8624 20 9985 3774 9601 6054 8067 2692 5406 8323 4908 4368 3540 4329 3266 9821 4622 4249 1027 7213 6245 1064 8061 5935 6945 6683 4755 1091 8799 5006 9236 500 7007 927 4596 3310 3400 1956 5006 9091 4571 2167 1588 5854 8709 5080 8004 1224 8464 6255 278 7633 4300 85 7623 5614 5904 9153 6968 3819 7259 5888 4559 4376 821 9082 4839 5833 5646 6687 9881 3440 6685 8160 7913 6516 14 7372 6259 6832 2082 9917 2511 8428 4297 1675 1454 5544 6082 1311 487 8203 671 5184 3607 4748 8948 4931 1896 8216 638 9898 5402 7864 7851 1337 7611 5449 6926 2726 6426 1808 5838 4370 4998 1489 9824 1086 8627 9990 4190 8025 5711 7695 3060 3812 8630 5827 5486 9040 6717 3647 9265 1648 6532 3821 5980 1439 6596 7219 1207 9349 8900 3061 5174 5410 1999 2589 5790 9827 5445 96 6146 5260 7909 9206 5374 8398 3747 8923 7339 7312 4289 970 2196 6550 5203 2144 3739 1299 1367 9285 7907 2936 8169 6745 3428 4240 5878 9534 9692 9597 7606 175 8214 7370 3968 6436 3438 204 9298 9684 985 9707 3258 8788 1925 847 739 3474 6840 4378 3163 7218 8443 5028 1831 6148 9526 8641 9743 7960 4273 9671 9440 1864 8231 3061 7728 8579 1444 5025 9911 1757 1712 8169 7900 4547 7375 7911 4328 3292 4670 603 1918 4623 5209 8895 2914 6278 6546 7114 578 2276 7991 4103 1123 7659 644 7779 3646 7615 3168 7820 483 5190 3734 1049 9925 3119 1198 2305 2357 2375 3857 3213 9470 681 7587 4561 2023 2508 5521 6476 8498 9499 4710 2481 7473 7933 2624 4613 7487 6235 4237 4488 9770 7295 3386 4256 6022 169 6198 7691 6856 2371 619 3160 9189 5611 1214 812 2798 1053 1615 5567 9935 9351 523 8381 8083 936 7011 8082 6168 212 7785 9836 8070 2391 2438 5795 8493 6537 2424 8528 9871 6460 5594 1366 1017 4593 1816 2220 9227 5677 5223 2056 2116 5148 8684 5732 9521 9437 775 6002 705 8529 7711 3236 7696 783 1762 203 9608 9001 3324 1778 3481 6838 2878 2173 6140 1431 9640 7506 6941 4459 2176 9782 3591 5150 5717 4277 4125 6721 8478 133 4162 419 9527 1226 6293 688 5693 5480 5719 6995 6630 3563 9856 1697 9240 5013 7393 7875 74 1870 8905 9972 6277 2830 7919 6167 7955 7299 1005 1351 7696 2772 9036 3334 4287 3730 6057 6698 6515 1161 1472 9227 3241 7691 7668 9310 6350 1140 3129 1911 6754 9537 7179 3676 621 3306 8482 312 1382 9562 1040 3158 2762 3038 7888 5989 2211 9717 3427 3814 10 4645 2230 4425 5341 4743 4823 1104 5040 1712 1664 1473 5866 603 4247 9393 1576 3161 2995 3087 3604 7253 1346 1490 4533 4347 4591 8860 9794 5381 1010 7565 9219 928 8798 1228 6984 3941 3422 7614 358 841 3269 9615 1541 9612 2387 3178 678 2329 1494 7978 6157 5051 9085 5323 8583 7469 8101 9789 8909 8665 789 3336 3773 3443 6596 1218 7247 6677 2963 1795 784 1959 1538 1508 3250 4620 4854 4387 1737 722 5945 15 6830 9599 2294 762 3799 2474 2091 7802 2303 2942 4971 5478 3247 9500 4897 7186 6797 2606 178 9424 1441 9243 9903 8157 7788 2926 4874 611 5018 2109 5572 8750 1071 5066 4284 8783 8885 8043 4335 3283 1037 4729 9528 6618 6442 5684 7260 8767 6111 7011 7888 5264 7970 6459 4510 4017 5123 3255 5826 2 3577 6413 4200 2122 7955 7088 3339 9896 1530 2575 8411 4467 4483 5529 902 9017 9877 5365 4623 4269 8857 2368 4961 6313 9756 2047 6974 4655 1410 6215 3671 3518 1751 6617 9391 432 3176 1974 3414 3063 7732 1076 9538 80 2862 6010 6535 4405 7812 9477 7700 8540 2251 797 5955 9291 4057 5243 4942 5984 8311 8777 7741 1560 901 3624 207 1899 6543 2361 114 4076 6686 5456 8358 24 457 1852 5638 4764 6612 422 919 9651 1099 2226 237 4556 2027 7134 6432 6593 3510 220 9635 3384 2870 7661 1658 1258 4051 9697 7715 6185 4201 9589 6854 8331 6363 9678 4468 2999 6878 3795 1610 4818 1606 900 1254 4321 5899 2714 5866 4781 2638 1859 5487 5364 445 4728 4457 5967 3310 3699 7222 1815 7090 3981 825 8650 3692 6147 3998 508 9895 8269 9362 7475 2150 1049 1102 1597 4137 6186 8426 2233 2819 5319 7223 984 2677 6021 4263 8182 2852 4736 8605 4426 7827 2520 1930 486 6947 4269 3108 4627 4693 1163 3568 1228 9327 7779 3624 4746 4614 3404 8266 7913 2315 7071 5849 9030 595 9805 5183 7071 531 2747 8979 3207 5659 8819 3156 3508 4152 7500 5436 9467 4582 8434 8225 4451 1927 2940 9096 4013 5376 9080 4269 9289 1598 7940 9031 7220 1934 8192 4309 6463 8702 4171 7640 8932 9398 8867 9133 4833 5208 6655 7447 513 7400 7634 6889 5388 1338 739 3090 1585 1723 1980 7238 2908 642 1995 7234 586 9985 7755 7503 2966 6089 1612 1308 3118 1141 3980 1620 2097 6412 3066 7137 1618 1129 182 7169 3221 5433 5743 8735 6776 9771 5782 1747 2433 921 681 7991 5033 2692 14 4725 1582 8584 4747 8462 5998 2138 7549 4970 7439 3888 6592 1169 2635 6530 9724 3871 586 6817 2011 2678 2201 6546 9283 1501 6996 7135 2839 8880 8401 4213 3279 6180 4422 3527 943 4404 3412 7696 1897 3587 558 7675 5088 2551 8384 8521 6854 6055 1212 1341 6658 2610 1677 1197 967 538 3460 5051 7870 5836 2564 1530 9160 2502 7526 2419 1330 4514 1518 260 5337 1376 5724 3571 3776 6279 2184 8038 5448 6576 8709 2368 2799 726 5817 774 5366 2667 1023 9360 2965 1715 4975 1163 2595 371 831 5247 3272 157 3045 8158 9084 7389 2477 7637 7859 8491 2410 8094 470 8574 4372 1001 4399 2841 7291 7343 4679 4523 7757 7644 561 4350 5594 4047 224 6918 4166 114 7225 5587 7311 7980 336 2888 8418 7390 9910 6949 1397 9470 1691 223 4020 1022 9776 2983 5178 7349 7525 4065 8344 2179 6503 9649 1820 8241 7679 3708 4306 3053 7189 3632 3300 8426 52 1824 7328 9730 2630 3081 6906 6054 3780 9937 4685 1484 5169 8280 5283 685 458 3369 6268 9919 2932 3643 5793 6030 2906 8925 9382 702 5494 4422 114 1891 1073 305 1925 5292 1449 5087 8197 3155 2409 5461 2312 6938 1415 6098 2418 5723 1862 8930 9866 454 2644 2863 1896 1723 1024 4211 4846 2880 4872 4696 4208 5679 802 7914 5492 2949 766 5194 4800 8547 933 9934 8584 311 144 8462 7265 9292 9045 7195 2809 1139 4635 8557 2452 4569 3728 7266 2602 1763 4999 181 6323 3286 2910 6654 2227 5598 4242 8269 3638 3997 4696 4569 837 1962 4536 6799 5888 4448 2883 8010 7095 3543 7016 3828 3577 6468 7606 7367 344 7634 3235 5727 2067 7720 6223 2482 2313 4842 3069 8194 1871 4855 7808 3569 2011 5275 2879 4898 2263 3170 3908 2584 4751 4428 4520 4326 969 5916 4834 9022 156 4047 2368 3434 1500 8443 4967 6726 950 2379 5485 9579 6692 3245 9686 381 3184 7826 1905 7517 3280 1923 9600 3424 3083 5425 4558 8580 151 8136 9832 2922 9227 7764 7521 7590 4600 2866 5947 7185 5285 6079 7233 5552 9116 4174 5673 6079 5935 2342 9923 1039 9559 1916 6903 8056 8584 6367 5016 3637 1930 9170 8156 468 6881 9380 5411 180 1950 9742 3975 5377 4388 9547 1314 77 6926 9679 4537 1651 5918 1034 9464 1804 8771 8561 7738 3595 5074 9894 2060 4656 5183 7114 9867 8998 9970 4900 5349 1017 1660 5251 9907 2326 9823 1171 7139 3366 7085 523 6436 8238 7049 8623 1702 2168 3480 591 4496 4632 533 2201 1344 7504 9773 8408 8821 8179 5224 6945 6448 1835 9504 2991 3650 1958 2539 9594 8757 5777 6978 9456 4800 7580 7956 6835 6176 4919 5866 1372 8757 4257 2490 4441 1717 8805 9534 7170 7615 7023 7289 176 9588 8234 2954 8085 9982 4591 7272 8495 23 148 4889 7571 1391 5705 280 8737 2863 4796 3167 4953 7595 8576 525 1069 2621 7352 1399 232 4461 9679 9306 7123 5280 1869 683 5139 7331 7624 2304 8529 3983 5504 5545 9270 7309 3730 9817 8576 3895 3867 3095 8771 8395 644 6740 8517 1359 3881 5797 8168 8282 7461 3894 1054 8466 5729 949 2296 3619 2376 3656 1541 6699 2638 6383 169 846 1865 6975 681 2385 5908 2627 5220 2248 5241 1067 8993 8768 7428 7661 8167 5246 3018 6392 8492 6569 6948 9148 9595 6372 8794 9725 396 4007 5352 9463 18 1932 977 1585 7978 8929 286 1559 3399 2339 4582 5306 9122 1996 1175 4516 6330 1759 1219 6335 5870 7914 8673 957 8664 419 658 4753 5307 8315 214 9775 3019 3055 7830 4281 8355 860 4471 4078 8781 3539 5334 4233 1200 7134 1108 3739 8909 6712 6482 1703 9043 5833 1119 6674 6820 5105 2346 9280 9149 7924 6491 4056 456 4261 7004 5633 6655 9827 9003 8214 3618 2714 6171 9036 4065 9689 4379 8219 4698 4245 7574 4940 613 5156 3041 7348 6983 8385 7765 9882 5336 2685 1754 7058 3262 9390 7542 6575 8532 9112 8492 4990 9377 7408 1187 5504 3945 6233 1188 1625 1980 7345 5929 6226 125 2673 468 7623 8424 5570 4602 9437 5282 6553 5585 9669 92 6990 2457 5778 3478 729 566 7437 2120 3001 6427 6047 6252 8531 3054 545 1765 9183 8951 2199 4784 8259 6092 8642 6115 9383 9236 9160 6758 7564 1492 6798 6746 3321 702 398 6632 2832 3254 2182 2674 9752 6088 4690 1057 4228 8701 46 3315 5648 7491 6909 6353 4066 3776 4289 677 7093 147 6729 4184 9892 5630 6942 9370 5616 657 8885 2803 1851 8671 4823 2825 1772 1887 9581 1583 7201 2373 1203 590 660 9542 3280 9961 6032 2650 2143 8609 4652 8491 8277 7577 272 5443 844 9285 4452 1458 8635 232 4787 2309 7787 9727 5335 2906 8740 6869 2445 8516 77 7511 3388 1797 664 6256 2106 8877 177 3753 9926 7473 5441 6152 9491 5677 3967 9629 3079 5028 5978 3320 2176 8164 5578 4217 6197 393 1645 8127 8722 6939 5448 8383 5913 1241 6285 2819 2171 7981 479 3711 9601 7161 8179 3417 328 8027 7504 9927 5330 9698 6940 4206 9136 7822 1854 5054 5266 4817 580 3897 2511 1979 7595 3070 2018 3724 40 4990 3791 2436 631 1450 3278 1027 7527 5421 9368 947 1833 7637 5016 9350 5311 3520 3 6820 6918 660 902 9535 3000 935 3391 40 6267 2070 7291 1475 6019 8722 9643 7436 4642 4792 6989 5822 1046 8629 234 2420 338 3854 6741 6490 4227 973 2021 741 7981 6284 811 7069 3492 2711 2375 9031 5017 6369 6279 3811 2852 2781 4677 1086 1701 7036 2588 1674 8571 3332 3479 5351 2172 1771 6993 1481 1081 8230 1784 2856 1366 3423 7337 9889 5347 7771 4156 9421 7771 9341 9930 4735 614 8787 5549 9248 3593 4428 2490 4037 2476 7932 6749 6390 997 2816 8164 5050 4133 8637 5413 7042 5340 3087 7201 1953 8026 7637 4015 8388 6104 6317 2209 4109 9321 2508 6421 3346 4096 8692 3764 1012 2063 9813 1565 3700 246 8012 8227 6467 5935 9211 1748 7939 2154 2958 1543 5606 9800 7281 7733 9052 5275 8088 7031 2769 2160 5822 2454 6105 4361 3585 3342 2130 5600 8111 1222 3007 1206 941 5237 5478 4145 4132 8568 5390 466 2822 8578 3339 2082 6029 938 3605 9318 4366 2359 3036 1874 407 4017 7052 9571 523 9067 6395 6866 4637 579 9501 6606 8286 6415 1960 9345 6350 869 9296 8010 5024 2418 5306 4595 5284 5093 5367 8711 9152 2707 6359 4267 656 7656 7653 2025 4117 1340 4848 9129 8447 9327 5612 5254 3662 6627 3008 9136 3394 220 7878 6921 2094 1744 1675 5931 2678 9094 7078 2351 152 5827 8799 5267 4745 3446 1476 9153 8958 2201 968 3665 3444 5333 8343 460 5273 7992 3841 1036 6289 5670 6413 6664 283 7339 6963 3770 8636 1547 2003 2545 5381 5737 3516 561 5413 2338 2996 3102 1950 7601 9545 6999 2325 6720 2356 9434 2380 4425 3626 6443 689 9851 3776 3140 1595 9620 1521 4184 4597 1203 5419 6887 8935 7160 3993 1040 5499 6423 7306 4873 3540 5209 5405 2105 3256 6415 6102 7116 5975 2031 9776 7832 2168 7579 5958 2169 1977 7914 5136 1056 6201 9502 9900 4013 4106 572 3174 2139 3586 3792 5751 9701 5829 6778 1109 6071 3704 1623 3604 8521 4940 9671 5466 3416 3148 1521 8920 7294 7722 9337 2637 1746 8378 7327 6806 4861 3870 8166 364 2890 743 9724 5550 9759 6372 7744 8072 7018 6624 1312 4252 995 2490 3745 7802 2293 9315 8948 1899 705 807 2140 2998 9317 8114 7376 8758 8584 5376 2458 8768 55 8105 7595 2267 7130 2499 4819 246 606 4849 2695 6112 5850 4466 6680 3902 5426 3369 4425 5153 3435 751 5663 4995 5127 9277 7528 1874 7106 355 3882 6995 5716 2799 8196 3679 8416 7098 4575 1538 4933 1902 3550 8566 6091 91 4675 4931 2032 9526 1698 6737 1060 924 6694 3353 3692 7274 9158 6456 8354 648 5998 6636 2319 4190 5654 8360 440 8024 4780 7189 9019 4694 4749 190 8517 4034 211 8210 6063 7405 2872 6995 9815 2177 3705 791 7841 9486 707 8521 6241 1941 2821 1119 8925 7358 2743 9462 7417 4909 5256 389 1361 9149 836 9055 3263 9143 2637 404 8131 739 6829 485 1109 4364 8125 4732 793 8237 1282 9291 9290 2526 2497 4896 6237 5277 605 3623 1820 1931 742 9820 1725 8332 2876 4345 6337 8024 4089 3076 1914 6162 8723 7727 2760 1380 4188 2034 1677 897 4124 9679 6795 1395 9284 5713 2329 2300 406 888 9149 4169 7743 1362 8182 3749 2796 8803 9035 8343 5705 3126 5956 660 3275 7415 344 1652 8947 3941 2531 6002 5826 5800 3735 4501 9506 9026 1333 3384 1865 6793 545 795 863 6802 8003 5603 7038 6970 6976 5327 4878 7766 9806 1912 1690 725 7209 5619 6682 376 8653 8941 5134 5470 8966 4417 7347 6678 197 9737 169 5500 1432 7386 1034 1 7226 596 2479 9222 7782 3952 5034 3790 8490 7982 849 9450 502 1618 3574 6786 5003 1003 6524 9527 7889 8991 8122 2424 8786 6686 6835 9598 6318 5778 7476 2802 6070 2353 1516 775 5588 4899 3787 8488 2747 470 952 9897 438 1892 7187 4415 5560 260 6565 1942 2162 5700 5387 7567 4398 1781 9500 4502 532 104 1478 404 5757 3580 2870 4042 1714 1575 7512 2781 7107 6185 1909 8656 464 280 2551 980 5311 9762 5734 4549 2814 2463 8183 3172 9728 8248 9907 9638 8947 8467 8366 511 8654 7946 1000 6943 6716 9079 4119 28 1337 3028 527 9114 7058 2729 2874 9480 2598 8759 1183 60 4007 207 2394 529 106 3776 2196 3456 7183 3276 4164 5367 8333 4778 9831 9196 4015 1260 2092 5537 1987 449 9941 1239 6870 1411 5644 9863 2248 7175 3519 6507 1681 5708 3563 192 7348 4476 4399 1656 9736 7548 555 8694 1477 3133 5062 566 8387 5907 9623 1818 663 800 3650 1731 701 9046 5614 1535 5802 6896 606 1953 1919 4589 6521 8926 6912 6852 5137 1479 892 1217 6798 6401 9688 5816 3736 9454 8726 999 5313 4906 4021 6733 733 8887 8021 9472 1648 2156 8826 9906 7740 3264 1307 4235 7157 5047 3771 9720 1476 9845 9635 2461 7784 3536 17 1375 6798 2859 8990 6102 385 1527 3727 945 582 1371 1755 2494 837 9974 6977 5299 754 8305 6013 4720 2730 4123 8983 5053 836 7719 7203 8570 3724 6699 467 7210 9039 4919 410 7615 1952 7530 7657 9142 9943 8935 4989 7512 2834 8241 2681 269 3143 2129 9574 5565 7525 8401 4253 9450 9271 3257 804 7766 1876 5426 2679 9737 8341 9349 2958 3078 5935 4537 8120 2066 8385 1562 1221 644 7517 9305 1524 9190 4360 7181 7818 9200 3591 9008 5045 5583 4852 5661 7883 4025 4753 4149 2280 2886 4463 5724 2464 5394 3445 2776 5741 3791 9972 2353 2916 5997 8013 4641 9041 4562 1350 4703 4055 2906 2058 5396 9490 17 8032 3322 1713 9064 6858 5566 3018 3218 8155 1554 6118 3226 8591 7585 9623 7393 5672 9256 8674 8336 1035 3439 7465 4779 243 8606 5214 3137 4032 9374 4795 4815 9215 6835 205 846 615 8892 8077 2721 590 9661 3155 9296 4555 5486 2443 4297 3341 5153 6596 1020 8620 4219 2752 1921 3966 6516 8432 9632 1659 2660 5160 2996 37 2790 6653 8290 8205 1652 4583 6848 7545 1636 8846 677 213 3238 8835 7674 7325 8492 9328 1247 2045 3482 5271 2820 7584 3032 9163 5936 8118 7785 976 1044 6955 5725 3535 8163 3049 3258 8168 5751 18 1678 2105 1761 8540 2099 2868 5123 8227 6104 5344 6249 8337 9190 243 3949 4756 1523 9274 7256 4395 1274 5274 5642 9416 4449 143 541 2892 7510 7358 4941 9170 730 250 9498 2199 4773 8760 1880 1655 3656 2916 2607 3242 2001 2409 8453 6102 5205 3054 4540 782 4260 55 4732 70 5720 2291 8607 2756 4802 3362 722 6399 4246 2588 2430 3276 595 6730 3676 8220 9456 2938 2144 105 2078 8364 5833 7552 7007 9427 8989 9301 9557 7167 2147 6243 660 1374 1636 2601 2544 9048 21 8699 8522 4277 6876 5042 9408 8742 8135 8943 1200 5268 9506 9714 237 7051 3871 7074 9005 4887 2082 7778 1399 5774 8301 8253 3592 6697 3910 1203 6030 9319 6994 655 4752 8481 8378 1052 7505 8809 2692 1918 \n8318\n4388 1482 1453 6459 7039 5474 4055 8723 7988 2585 4088 8570 2671 2542 6127 4899 9803 1399 245 8232 2486 3075 8516 5516 583 4279 5984 2901 3449 8994 2394 2687 7313 3328 2294 1081 6221 5565 9172 8640 1888 4538 9629 5949 9020 7525 4460 4269 4101 4398 1381 2356 2090 9539 7852 9016 8263 536 6076 7865 3908 404 6863 7016 5785 190 5764 8426 919 261 169 9927 410 6086 7337 1886 2723 7621 1243 3235 1013 2886 1028 3692 1547 4721 6985 4425 8842 5549 8667 3609 8135 528 9645 5392 7028 6877 4134 5223 7920 4994 2984 1446 6921 2367 431 304 3076 9344 2303 5745 1336 4951 1839 1369 4173 7631 7009 7101 6473 8922 560 5350 4370 792 8511 7962 9487 5399 7435 7541 4894 2026 2140 5666 5690 6900 7103 9291 9486 833 250 5230 5144 6606 88 2242 8643 6869 8417 4767 3133 9732 8704 1060 581 5369 961 7903 7929 3043 9522 4160 4593 6198 6234 4735 3668 3194 3518 9121 4860 9236 7737 7681 2741 6007 2694 68 625 2661 2453 3930 9883 7176 1569 5254 9793 284 7318 3415 2195 3190 725 4268 6749 8672 7159 6858 9914 6127 7995 1605 1438 3508 372 6119 9197 222 5513 1076 2674 8585 6715 1945 5043 8842 1856 8010 5739 5520 3772 1997 6855 9760 2841 9015 755 795 4906 6148 1217 6669 4731 6213 5913 4042 770 7680 8403 2542 9149 6727 8498 7126 1832 6734 3521 4970 3730 4346 5923 8381 269 2205 3583 3182 4765 9360 5845 2006 1794 9307 9346 3975 5025 353 4252 4729 5745 6004 6918 4588 734 2035 6047 8670 7562 2341 4017 310 8571 3260 3800 9056 9126 4356 8299 9449 4780 3955 3287 4488 2300 6892 6009 4271 7450 9001 5841 5751 5639 5042 6634 5311 4474 9933 5132 7032 4802 9071 3801 964 5947 5110 8845 2147 8321 2715 8664 2243 9957 7081 3082 9309 5625 6319 8631 4018 436 2663 4677 5554 3551 1752 6443 3157 34 19 4719 6824 7199 6494 236 9800 4837 2705 8391 224 1470 8550 5639 693 7247 5862 6025 2408 3672 8091 3296 9983 2221 1481 1109 1231 1758 9156 5573 1481 966 476 1862 5261 275 7600 1427 1286 5073 9430 3189 8555 7375 7105 4353 1302 7155 79 3423 7336 7056 8644 4280 7358 1389 4670 9868 3489 2327 7040 6705 522 1811 4064 5804 263 1691 1781 8169 9273 7023 4997 3370 5157 6275 432 9249 8922 5727 4748 6360 167 4138 7830 9421 4696 4153 8976 8567 2903 5196 8237 669 6469 2739 4918 5689 8219 1292 7349 7780 2821 2542 1873 3123 429 6480 2824 877 5604 6728 7477 9812 6209 9683 2187 8532 511 1107 2475 6127 623 7898 6282 1489 8328 921 2262 7514 3446 1200 9920 1727 7350 8293 4061 870 4409 3977 9848 6068 880 2701 4930 2704 1954 1705 1882 9731 988 8519 81 6207 6536 4263 5671 7364 840 8919 9438 9845 9079 710 8490 1859 4330 4331 610 4944 9387 7220 1712 1144 7212 4467 8403 2522 4023 9300 409 4611 1890 4909 9113 1814 9963 4222 2455 484 9840 3468 3878 7652 9722 307 959 4238 7893 8881 345 7191 1240 5542 4249 6158 4484 38 7995 2637 6466 5377 2278 9721 1664 9970 8934 4569 6095 2366 8665 2038 8223 3018 7761 9982 9453 9218 1334 6452 1524 5211 4487 9564 649 9881 9328 4440 9953 4163 2367 2713 1218 8550 6824 5071 3530 4008 7844 8569 6590 3966 9031 4889 8535 9197 9775 1957 5563 5487 6073 8562 8821 3886 365 8021 6173 355 7305 3860 5472 4690 4130 8544 454 9830 8183 902 1734 6018 1978 8003 616 3362 106 5934 7846 9416 6960 8501 6861 2908 8086 3129 9732 6505 1269 9296 3396 1674 8369 3134 1010 8945 3306 9766 2706 7569 9528 6124 7705 407 1304 7767 6558 5415 1059 4152 5953 8497 1343 7137 2780 4704 3666 3793 9448 2751 8974 8462 6810 2180 5381 6145 8840 439 9975 3143 8070 7057 2931 2436 3368 1740 8548 7474 883 8092 8224 6847 7400 218 4958 3603 3775 8273 388 9090 8015 2862 1050 9690 1039 6027 9184 3743 2817 9415 4676 4390 2854 81 3922 3186 3271 4711 2202 8489 9363 1398 8114 563 9051 8800 2888 1121 3287 1811 2349 7658 8899 7776 8124 4724 824 6693 4996 9648 2181 9275 6238 1104 4577 2998 6439 6055 5121 2208 2844 5465 451 1126 2579 8019 6336 9684 2073 9213 4936 8671 8174 997 9441 1073 8983 9689 1696 55 9218 722 7623 5724 268 7967 4663 4543 160 5382 6037 9953 2471 4711 4159 1754 2012 5674 5351 4029 3354 1288 4845 9053 7468 7593 7806 7699 2778 233 7531 3782 5057 1333 5751 7069 6960 4477 7858 598 3299 3052 5175 7340 102 8362 5744 9323 1533 4079 7024 373 8510 4124 6388 8708 3367 9821 816 6055 3466 691 7510 7540 5253 2883 5211 8902 9181 3077 46 1707 1251 7965 1733 5368 4698 6469 6939 6872 4061 8995 4498 4434 6495 1722 1420 3425 2639 5627 7078 1826 2523 5663 6466 121 9950 7717 9104 7338 1562 7079 5626 1087 3298 738 5922 9598 1788 2399 2952 5840 7893 4765 8398 5983 215 3515 2511 5818 4935 8789 9413 6079 6520 6123 9278 6779 1138 9015 4222 495 1808 3041 3529 1701 7707 3834 2629 64 8926 4268 4135 7031 4246 197 3509 8168 9283 6157 510 9509 1477 3480 8648 3185 8419 9095 8438 9975 4271 9351 2988 613 7315 5282 3335 7852 8544 2336 8064 9126 5874 2766 6762 1581 3765 4295 233 1327 1247 3919 2925 7120 73 4649 9615 7837 2930 7746 9011 687 8447 8025 895 9944 1877 7845 4912 1788 9790 771 7158 2725 4222 3541 6508 293 2883 8149 2454 4615 4182 6064 9488 9386 1301 5018 1031 561 5298 7953 5873 2071 7864 1935 5270 6654 5881 4795 6321 8974 81 6490 8781 8391 4395 8634 6990 4342 5338 629 9136 1351 3432 3319 7075 844 1122 8540 7722 7780 5391 8680 7294 1374 9995 886 6335 6209 2292 4781 7500 7487 7685 8909 2018 7801 1728 5892 7484 1823 2962 4652 2931 3467 4726 3313 2546 216 427 4830 2028 9690 574 4606 1963 1722 7299 642 1241 4324 8600 5972 7749 1225 4414 6355 2665 7486 4226 2847 7511 6578 1765 5591 3376 657 8742 4637 3915 2542 4095 4004 8245 4556 3243 9489 2569 6856 6240 4665 9192 4062 7216 6124 518 1615 749 4112 6105 5683 8885 3806 5745 5285 6052 3737 1823 8037 5037 3391 2826 851 8330 6590 120 8943 8403 8515 7055 9660 1115 957 2962 7337 6691 2233 9182 633 7652 9554 5037 3795 9934 7558 90 3563 2842 606 6693 6340 7475 8177 3240 2661 9593 2672 8309 7812 3687 7964 972 78 4083 8140 7270 2783 5758 1685 2907 2065 8908 9729 657 5875 6625 8325 5345 523 3685 4564 5600 6808 399 1659 7704 3136 5193 8827 2819 336 1087 5331 334 7482 1406 1297 2010 8288 5110 2689 3420 2139 8906 5422 4352 3426 6906 3900 6209 2950 5862 3967 8041 7915 4801 9947 8662 8381 8298 5555 9390 4346 9133 2527 7100 1531 5161 766 992 8371 7000 4956 2475 4621 3570 9417 1812 3426 7295 2531 9185 5802 7929 9751 7702 4873 3836 6506 1915 4855 578 2501 8270 4571 8234 304 6954 2211 3347 6083 2887 2803 4273 8542 1586 7806 1750 8978 4158 3938 3935 6575 173 9141 7276 6225 300 101 2857 52 3376 8858 7410 5149 4925 4198 2176 8783 1469 9694 4290 8916 9164 1899 7748 4912 608 9078 2193 6507 4435 4907 5093 8961 7068 5142 3661 2748 319 1850 8985 6374 4850 1561 1080 8187 320 212 4935 5472 7218 5783 7971 2611 5124 5286 1560 3903 6986 3961 276 3377 2978 7672 384 33 3285 5800 4302 1201 235 1314 1920 9285 5389 8149 226 2160 4171 7125 2451 353 7419 5948 7200 6334 5 5649 401 5085 9893 5497 8458 4857 4598 3503 2920 8500 7186 6063 704 1716 1962 4697 9583 8122 6201 6538 5622 7363 4209 7823 6776 8365 1933 8069 711 4906 5129 6891 1356 8116 3557 2412 4682 5957 4845 8134 8918 8470 7711 7238 6106 5478 7222 153 3718 2492 2018 8638 3680 4904 3198 4265 6216 5091 1145 9201 4937 8591 6108 1637 7080 5915 150 1528 2630 2417 1739 628 2681 9156 9315 7584 4370 7580 2895 4343 3895 2120 1580 544 9277 5281 6445 4068 4420 4334 9274 3337 1188 8451 6892 2025 711 6147 9174 1671 7153 8714 3204 6078 8463 2097 7944 8151 5665 8099 5860 73 482 7904 9148 9756 3409 1002 3188 5075 3129 3706 4243 2016 9569 3139 9517 8964 8658 3382 2553 7615 477 893 5749 6470 8498 6720 1787 3647 3380 8231 2487 4514 795 7275 1314 609 7105 8520 3800 2621 2258 7298 9199 1158 5925 8532 8712 3271 5278 6295 9648 1792 2282 7230 9997 6703 6261 853 7927 6540 780 5377 4004 9893 1543 2084 8851 501 5225 2819 621 8996 4277 8040 8488 4560 2373 8311 8619 5715 5549 7096 6330 5988 4854 7137 5365 7761 6686 3081 3980 4791 1010 7734 6342 4895 872 5860 4082 3685 8666 8672 8380 8904 3648 9382 3824 2326 555 9787 5109 3618 5601 5214 9204 8997 3368 4315 1806 1833 1172 1796 3402 3651 7594 6760 9993 898 6109 2871 4254 9377 8145 3365 9997 1000 9524 6002 9037 5384 7326 4431 2145 9113 2220 3372 7705 4054 9900 4195 3288 1129 5275 9948 8372 5541 662 9071 8599 2344 8251 3044 8984 7371 8451 8193 2929 4181 6546 5551 7625 3543 6926 9310 7818 8283 4487 3919 1952 7509 2915 9221 7258 9987 5030 8875 7536 9941 4550 2002 5817 4070 8905 4825 4161 1429 4928 674 8633 1106 8505 5050 8799 8724 9680 6853 3234 1501 5379 9336 7647 9474 8063 1464 1631 102 6872 3300 504 7018 838 7447 5186 1431 1387 1632 4014 106 3728 8236 6646 5068 2408 1154 1255 5929 1544 1354 2815 4216 5216 8170 2429 7484 5288 122 4639 2927 317 9955 3225 3319 8569 2108 7773 6140 1232 1648 6213 5926 5828 5441 4897 300 8408 5924 1853 4649 9872 5107 1246 1568 272 4672 5476 1390 4239 6003 3000 3218 3607 1951 4782 6964 3406 1227 1676 208 5823 5901 349 5324 4223 7031 7937 8037 5254 1736 1625 7028 2360 8694 5099 7200 8382 4810 6995 2836 6994 1364 6231 5772 1866 2565 85 2164 1816 3127 225 7440 1496 4928 4316 8669 2507 4139 1645 3335 9838 6452 3472 438 6857 5107 7049 3514 7215 2988 590 2143 3550 1683 7343 8764 9076 9519 7396 1308 4097 7832 9625 9959 964 5347 4212 7447 2905 3035 9660 1985 2324 2223 2983 2826 6475 3368 7746 1102 7888 6807 6915 3070 7689 3735 9766 1882 4047 7911 1886 6084 3536 724 4548 1221 6184 8838 6887 849 1380 8066 9666 5033 7985 591 5859 6366 688 8429 137 2757 2818 6992 4653 8823 5785 3053 1646 3302 8236 957 9031 6559 8496 7781 4120 3124 1502 3523 4481 4799 3342 1924 3431 2706 6699 2935 8471 2908 1152 5406 7451 6545 3885 3548 1848 9038 9026 4911 2488 8385 8362 1342 9376 8026 1539 6404 2491 4906 1094 7787 563 2920 6749 3776 1084 4113 5346 9641 1706 3837 3043 737 1558 2011 2539 3725 9330 7042 2879 5387 7781 4035 5432 4044 969 3917 4382 5104 150 8440 9322 6580 3587 1254 397 335 1575 9903 7447 3608 3210 1748 6597 6278 1781 9944 2757 9698 2964 3964 5632 7723 4646 4800 4628 3997 2439 2941 7448 7834 7589 1303 1174 236 2804 6136 8282 469 2922 5384 4718 8761 1625 3551 9387 3615 6223 6560 8602 9198 5750 2020 6740 6799 8525 5063 6388 65 2130 1838 6165 2373 7917 373 8836 2764 5004 3778 9313 9448 8102 1131 8666 9055 2875 9131 9159 3658 5915 2868 1865 7601 5236 1187 1697 5966 7207 271 498 3490 4129 5747 8985 1694 8804 8161 4620 851 5499 8802 6624 4181 5134 8022 7298 4564 207 9890 694 6917 6125 3426 496 3010 2240 9815 4605 6458 5963 6196 9546 9315 2701 1909 6385 5772 4230 3013 8506 4924 8809 2676 7951 2196 4038 1816 1318 1111 3024 736 8822 6370 2477 8493 8919 5182 6114 2510 7288 5347 8183 9884 5127 5273 9739 9154 6398 6351 6682 6220 8421 4454 2014 6556 1264 5406 6513 5921 9995 7133 8131 2901 2713 5630 9335 8434 7441 6691 6344 5350 6525 8191 5127 5940 8833 4454 5788 1054 8566 6245 9154 2215 4497 1718 1066 2352 5925 3346 3752 9957 2314 7411 6107 9518 9495 6206 1868 5904 8429 5443 1168 7239 1826 25 6223 7012 7040 5636 5765 7827 8380 5835 1747 5823 6488 7692 5146 4841 6809 420 1593 7830 8168 6792 7141 3367 2466 3615 2133 9524 7458 9555 1347 867 9565 1427 3433 5026 6808 8848 9433 9017 3722 3531 8358 8640 8091 8935 7450 4192 8838 4309 1929 9866 4908 3286 8633 7744 7142 9777 8658 7368 4259 1615 1313 4071 8554 4768 8673 6074 7559 7671 2763 4418 6357 9778 6330 3509 9615 9211 866 2995 7503 4327 4182 3605 3366 5018 9099 2973 6769 1955 6499 5920 1269 2788 6860 750 658 8120 1924 3617 2623 6423 624 7017 8374 6973 1602 6135 4998 3359 5172 1330 804 8622 2904 9272 2 4249 1026 6015 8352 6175 4214 798 2371 3550 7126 7277 5998 2149 5139 7507 7 1089 1088 1290 4778 1151 1030 2991 342 52 5759 4849 59 3526 3848 9537 7785 5122 249 762 366 7724 4656 3544 4326 8481 6303 5739 7952 2652 2921 3472 2994 7406 8299 2696 7576 5054 3737 3936 4807 9134 6924 9823 188 7213 8111 4638 8825 3803 8544 4577 8617 3461 1693 8314 5865 8709 3626 3125 889 4048 9292 1306 4916 9716 4691 7014 6946 51 9398 10 6198 1936 3713 5295 3177 1248 5822 3928 3324 2796 7004 6751 7880 8921 7900 2629 3385 128 8848 5354 5959 2812 8048 7485 6917 2751 8814 2968 5899 1459 5239 4238 695 7946 9543 5657 7578 7689 6773 3525 8593 364 4063 2837 1049 2870 5715 5893 4696 7775 9082 349 4464 2928 3114 8691 5425 4612 8377 7875 8368 5891 9379 1462 7867 4008 9239 3318 9848 518 8496 4761 2805 2313 880 7217 7036 3870 2279 1159 2581 3691 6140 3733 4867 7785 7271 6656 8460 4992 2324 8045 6236 3064 1917 6552 1699 6661 8899 3206 8746 9880 6990 9452 9613 1369 9846 5396 6420 1197 3675 5931 3653 9940 2745 1529 8658 1387 1334 4308 1656 3183 2806 4311 5581 4656 6706 6933 9171 1108 606 6697 5262 8877 8996 1996 5390 2519 8978 163 7919 4650 41 1231 5414 2090 5083 2189 307 6601 1933 7362 10000 8611 976 7900 6979 3212 4113 2313 5919 6861 1590 3445 6897 5540 1680 3070 5042 820 2328 7065 4597 3099 2102 6132 5809 9707 8953 6508 2031 2798 6233 6964 4523 7303 4850 3207 7174 4382 1794 154 3236 9164 9997 9727 6123 1646 4690 5196 2078 6944 5821 2659 8880 93 7683 3256 6106 8047 4852 9292 5148 5076 2552 8447 9619 75 5323 8724 849 8202 7031 8166 5568 2705 4581 6292 129 2308 6997 940 4091 7825 9868 6447 5052 410 1033 8781 7156 4804 1970 3027 3820 5784 8232 8243 1359 5206 4601 4666 8456 1014 7635 4538 8515 7984 1328 7356 5798 580 7392 8495 6046 7619 4915 9311 6234 8087 2014 2848 9214 2383 7254 3309 4942 2052 1518 1486 5329 930 6784 3545 6142 599 6767 7546 4336 5722 7091 4262 578 6556 5367 6926 6958 6444 1486 6528 892 4856 6256 4349 4832 7460 8416 5919 7743 5140 1164 6847 722 8295 7789 4808 9469 9912 3716 7670 8609 5546 6404 257 5905 9944 6525 2630 6190 4415 2441 1944 5177 5066 5808 4244 689 2266 959 1129 659 63 215 2630 9490 1321 4404 6813 4887 1000 4213 1487 7159 9958 3521 3840 2659 710 5847 761 1754 6636 8927 1283 8234 1418 5817 1743 4500 6366 4730 7669 7094 6068 7177 7987 6546 9783 6282 9572 7673 5800 7407 1739 5056 8095 9635 6246 4332 9971 2322 3048 7432 3021 6930 1214 7684 4782 3995 8286 4889 6418 9742 42 8855 3964 2672 1688 7785 4947 4913 7675 1457 8447 664 7810 4213 8886 7254 2019 5981 9492 6275 2813 9490 1111 1873 3151 2393 3324 1352 7471 3496 6024 6758 1472 1734 608 6209 3972 610 5000 265 965 186 1370 394 4590 1077 9415 9238 5821 2230 5000 6061 2312 2888 8505 4001 3035 6672 5779 3917 4564 9812 5000 6338 1050 6390 9319 9817 3526 4350 2237 7978 6060 5775 4193 1863 7374 5889 6063 2215 1512 3457 5584 1284 9006 8850 1926 176 605 3856 4750 2511 5102 9295 6075 4677 7786 2941 1933 9303 1523 5232 4237 5772 4800 3097 7329 3745 7189 4214 6574 725 4247 5456 7187 8587 9695 5114 8039 9986 8469 6054 3926 7228 5179 6454 2570 5447 3291 454 9316 9978 7645 8268 5396 9288 4683 4531 1297 5755 6745 4140 4953 8012 3402 4129 3308 8035 8027 6510 3108 939 5592 6437 1634 7057 919 7231 3854 6253 9690 1750 4262 5370 9996 4378 6943 8656 6971 1664 8820 2444 2055 9721 9924 6445 6019 4089 6518 7850 6834 4820 2240 8694 9442 4458 4712 4136 6633 3866 4796 2951 7065 2082 4016 8141 2371 9939 613 7361 6439 3479 2433 1742 5076 4432 4387 8698 2595 5648 1072 5169 3980 67 8076 9659 1814 860 4757 1057 7838 1240 860 9210 6183 1949 3280 3070 5699 8445 7001 1242 4045 6476 3803 3920 9656 6524 5890 4956 596 6622 8092 2242 7049 1867 9314 7534 6425 6921 743 2762 4117 313 6893 1407 1370 9055 7864 2226 4764 9899 342 2510 3435 9044 8279 7348 7360 1767 407 6486 2394 3805 7097 850 2861 1023 8083 9714 6612 1680 3626 8877 5407 7984 8077 692 1905 4194 2281 7419 5917 724 8902 434 3029 990 6027 5344 1463 5463 7730 9924 4311 7019 5817 1284 9779 8461 6161 3874 4995 1806 1951 2699 5227 9676 7847 5993 6501 9210 6620 9659 1281 9514 2029 1109 8320 2043 3396 8903 5025 4772 6301 1728 1587 7082 9869 3970 8220 9676 8613 8840 4770 744 1911 2397 4104 5762 8774 733 3640 2681 6930 5331 8642 4635 920 2888 7900 9593 1268 8552 3222 3357 3360 8804 8061 6001 475 6245 5064 3946 2906 3141 5398 5207 4664 5586 5472 7332 2636 9369 8994 5498 5829 253 5333 7599 9933 5196 6006 3616 116 2630 1510 386 9819 4130 131 3232 563 3192 3071 5360 2996 1260 956 1304 7342 4869 1818 6032 9886 6984 4826 5084 4339 8925 2213 6838 6094 5365 1704 8078 3674 7311 9343 5180 1833 3192 6908 3868 4173 4707 5208 9122 7324 5992 6348 2014 2640 9013 3360 1076 5385 8908 3023 2533 5079 4347 4393 1682 1449 8517 377 4822 4614 937 368 4484 5231 4217 9767 5684 3829 4775 7968 6450 2786 5450 7296 2612 2389 8165 454 7935 5022 4011 3431 5596 9007 6196 1974 2079 6270 8246 7534 9673 121 4513 5819 9013 3833 3547 6923 2691 23 2240 2422 6034 8479 6146 4564 2000 7939 4363 2544 9319 9430 7620 5883 9369 4275 7797 6741 8687 173 757 867 6675 7888 941 7749 2436 6062 9928 9509 9083 5018 5525 3045 6393 5465 406 8743 7557 1939 8480 3180 147 4696 173 3019 4183 6364 3450 9097 2660 511 8619 6801 5164 4373 9766 3922 9876 9066 1735 840 6087 9223 5133 6622 5689 9164 8516 7769 9925 9525 9268 6963 1829 366 8141 5436 5563 4337 8469 6466 6533 1832 5638 9921 9629 2942 5746 2257 9898 1639 2346 7893 672 9084 6035 422 3904 3508 5504 5676 2257 9658 8810 5114 2855 5412 8667 4751 8317 3916 4221 7054 7248 3554 229 8356 1581 8086 9336 3894 6084 7411 2648 8990 4343 2909 7957 3078 1190 2256 5167 1294 5342 672 6875 1663 8247 4912 2755 6247 7522 6889 2346 1012 6466 3850 2272 1611 9011 2951 486 9827 2098 6034 7349 4829 2685 8432 7900 5666 8127 7620 5305 3397 456 744 8700 3457 4999 625 46 9946 64 8834 8291 4881 8340 6339 2505 7944 6735 8365 2169 1461 2948 3491 6564 9536 2917 3093 5213 2194 2773 391 5876 4971 7129 8387 1200 3226 6710 5342 726 4076 5632 3748 1645 1179 2430 7023 6252 9769 3661 460 6599 6736 564 4061 6111 898 2507 2836 4474 7774 4631 4853 3189 8199 1883 2479 7619 76 854 7443 2696 6548 8474 304 2954 2609 6995 2835 4854 9307 8951 6188 4135 3870 4181 4280 2813 2755 9025 6059 1014 8025 8968 2865 1106 4826 7259 8605 2145 6895 9807 8753 6210 1894 8550 8105 1027 396 4597 4632 8645 7305 4028 3824 9882 6696 5050 5538 4768 5572 8987 7447 7939 7049 350 4591 3975 3916 9230 5574 4579 4885 1121 9649 4152 6684 4920 6211 1815 6625 1771 4797 3557 6220 9016 3228 9560 1511 1875 4 8161 2307 4114 2976 6443 4904 9201 5038 921 2511 9936 9495 5591 6423 5384 5381 2200 9359 5694 6058 7636 2164 9944 4898 2541 5907 5465 5873 3593 9050 6890 4285 6896 7947 5066 159 757 2031 3764 9824 8116 1680 9865 4443 6054 439 5986 1168 5935 2005 42 8953 7166 4348 4346 4488 9258 3684 6571 7608 5892 2944 9315 995 1566 7973 5144 279 1212 6915 7439 6700 9253 1681 8918 7297 6611 2082 1427 3887 7012 1524 5945 1807 1951 4347 9950 7510 2353 9439 2430 8277 9311 8064 3461 637 6075 5869 5403 9809 2704 7301 3394 8959 3738 5293 4568 7091 9024 7419 6293 5239 5631 8327 8743 1621 1866 5178 1828 7069 6631 7892 5931 4711 4227 8231 3649 3439 7383 2180 709 7256 739 5606 3788 5901 4764 2330 6292 2575 812 3431 9599 74 2296 4671 1530 3432 8590 8380 8667 6037 3276 4368 8197 7393 5810 6527 8592 3136 3789 1342 5853 7857 9183 4595 6786 9765 6735 158 5067 8712 2960 2495 6947 9516 6846 3111 5715 1422 8184 7079 6713 9605 1769 754 1546 5844 5399 802 1812 5592 2740 1685 350 8754 7736 4762 1466 289 7095 4486 8839 5045 8667 8393 8448 8308 6997 9907 8293 53 6024 9156 6801 5195 4882 1919 2411 1743 1503 133 1341 714 3454 2542 3711 3241 710 4141 8030 4082 9175 7138 8417 9971 9949 498 8129 8830 1584 6400 5312 8711 8740 5987 5082 3615 1445 6673 2648 4023 4347 3867 3028 2383 4622 233 520 9652 9558 4358 7941 1126 2762 7540 849 6432 1871 9577 4004 2642 1135 5961 8157 3231 971 6357 664 8740 1078 4336 3099 7460 4585 1404 7961 540 1235 5158 2374 1291 3664 8777 806 6968 7836 8027 7885 3222 2359 7267 6402 7329 7229 1123 262 5958 5439 9899 5561 1078 8075 5417 4873 2361 2277 2296 5093 5261 7844 4261 5634 9283 1791 1677 8506 1061 1322 932 7960 7573 4496 2853 7469 3866 9896 2608 6739 2556 3739 9524 4247 2930 1559 1048 2605 6876 4481 5850 7025 1586 633 1417 7422 9757 117 7726 3070 7914 4503 9358 5499 4821 9363 9928 3158 7509 4753 2147 5690 8693 1007 885 3540 4229 1844 8625 4810 9251 8166 8553 8637 5663 2400 652 8488 3019 7837 6946 260 4741 8985 2923 6673 372 7612 9026 8980 9169 4961 9811 2721 6886 6488 3601 7742 9915 6373 5150 8471 9041 719 3211 5277 637 9367 2982 691 2921 805 8095 9109 9985 7491 544 9716 8356 5197 8104 481 7786 5905 5739 7205 1833 8912 4296 4223 7847 9341 8323 4038 6203 9660 3752 7467 3281 5381 67 7869 5561 6743 7578 4306 7657 8891 7121 4233 295 9374 636 4918 1930 1341 4724 9775 1553 4800 5653 7190 2580 4223 3521 5126 8389 1239 4240 9372 6458 269 387 474 9586 710 7893 472 6870 7187 9683 9809 9135 455 2237 6989 7789 1357 2543 5824 5608 4549 2727 2301 403 8244 9680 8080 4868 2517 7187 124 88 3039 6292 5289 717 8250 522 6395 6959 2959 1891 2926 7341 1866 660 2895 6726 791 9006 9965 2299 6016 7571 7724 4475 3246 5814 1319 6253 5839 3486 6166 6124 2052 1982 4455 7911 9894 4334 324 4967 7210 5534 5834 5071 1393 4990 2403 7283 5238 2340 2650 2196 8618 4843 6689 6634 9889 5562 8261 7123 4818 1837 2708 3403 8395 9695 250 8809 679 58 7299 7234 5984 7923 8168 5752 8786 6522 9487 5548 6385 4932 8807 8382 7609 1591 1058 3583 6144 1725 2994 9544 2816 232 4414 9889 2369 5794 5118 5507 9913 8476 594 257 162 737 2125 7621 9086 7980 18 7088 8653 5533 8536 8650 2701 4952 36 7381 6338 606 5833 5422 595 5203 9320 2381 4616 1652 4702 4348 9687 828 3481 8479 2992 8921 4941 3024 4266 8431 8828 7671 8786 4687 8893 8306 5829 5903 3928 2712 2655 4506 6656 2933 2494 9451 2763 7756 10 5704 9054 7267 8448 8491 4943 6898 7142 618 8862 1997 5300 621 8243 7981 4242 4967 8515 7887 542 4108 4320 4591 841 3162 6685 1981 1014 276 3854 8911 6433 1898 4854 42 4326 1293 1034 3624 3269 4250 4129 5556 345 6577 1089 118 6124 4262 7438 4324 6515 8082 1287 8159 8018 2495 1730 7430 844 8726 1063 4183 2089 537 576 8429 7404 1754 3805 2824 6998 4708 2646 2525 7865 9748 9462 9596 9782 2982 7900 8999 1776 4333 5104 4158 3963 976 5266 3487 1327 40 8553 1601 9758 5959 7723 986 8753 4788 693 4467 3116 8179 8026 5201 7770 3664 2000 5214 3103 3199 7862 9382 6221 9878 7956 9342 2498 866 9266 9978 1365 9548 8482 504 1233 7162 6492 9649 3656 301 2870 3948 6691 7477 7410 1514 5141 6496 5145 784 413 190 5516 7606 268 6983 1537 1691 3960 8669 7595 4748 1060 5440 4171 830 901 3934 8940 9338 8721 7847 6083 1555 3462 603 150 2553 2083 7056 2296 2024 2190 993 2100 4714 7111 8190 7230 3378 2500 5960 9188 7643 1735 5399 9906 3887 8412 6006 8939 2201 8783 8758 5894 157 6956 9994 8262 791 600 5188 7318 5806 2621 9245 1461 3828 6374 9180 2846 3837 6259 5517 3138 8013 6733 8647 2003 4466 2194 6638 2425 2095 8543 2062 5301 3406 6764 6532 4721 7216 7512 549 7739 1413 4821 7932 3430 1246 75 5866 9519 7230 8179 7009 4140 6832 5848 6104 6786 3969 1014 316 5126 7545 6732 281 293 6451 8567 697 764 244 5999 6999 2701 428 4704 5924 221 9422 5969 994 8251 2961 9919 8539 145 4507 2847 1897 391 261 7655 1304 8975 2814 1465 3630 9735 4755 1928 6897 1655 8759 7985 7150 6602 3574 8125 6054 9729 4851 6586 3801 7118 8832 6546 2169 5207 9745 5633 9641 5067 3312 7848 551 5290 4442 2259 7199 160 1225 2978 6161 5651 1691 2801 6404 7658 1406 716 2014 825 6967 9826 6351 7563 5004 5020 9106 9432 809 1183 9042 2909 7996 8266 8323 7078 5594 8314 2362 6783 5902 2913 4209 581 3998 2433 5707 6158 7275 115 5572 9174 945 8964 3431 6505 2841 9667 6245 8999 7384 7041 4691 9053 4903 1853 1262 6467 615 1320 5061 2933 4226 4888 258 7246 8228 5502 3795 2036 7655 176 5592 4326 3326 2894 5610 5161 8407 4342 6435 3807 57 8953 4688 5683 3105 617 9038 7106 4571 9932 7309 5394 3220 9751 2147 9287 977 6077 4540 5080 3952 5537 1988 217 4206 7947 4664 5552 746 9560 3064 8326 267 658 6679 4893 465 5565 2890 8482 1636 6091 2442 30 5206 5058 1543 3945 9095 845 9212 6301 8796 7323 1136 6964 2916 3149 3183 1556 7270 914 7765 3116 7353 1665 6180 9622 8169 7229 1598 2624 6453 5891 7496 6424 3943 8647 807 3223 1193 9835 9045 622 5582 629 5435 8907 1969 1710 2115 7504 4965 3960 4299 2137 724 5950 6472 7184 2846 8625 9183 2423 9191 197 839 9282 9440 8241 9912 8310 7855 9953 8690 9864 189 8934 5691 8561 4471 4116 6201 5091 4479 7884 756 9938 6382 3946 6497 9301 9636 1144 769 7879 7292 3754 8297 9052 4617 5251 8083 6317 6404 3582 3556 7264 2215 4174 2547 9874 3786 337 6666 8459 4612 6115 2125 4246 7051 1950 5135 7090 2640 3668 758 1696 8508 7528 5360 845 2087 7800 1681 7708 2477 9951 9403 8524 6620 5870 822 8130 6552 6633 6261 8550 4837 7585 9043 1626 9097 7625 5163 5516 6437 6971 1732 8358 6701 2569 8823 2938 8777 2803 8414 3765 7398 920 8347 8594 5246 3816 9364 2864 4968 8663 2714 4413 21 7215 4931 6339 2263 2478 9083 303 229 7725 2104 689 1851 7018 1021 9424 4479 4111 7720 8799 4479 5496 3058 5367 6921 6534 5923 3448 8163 4481 2210 8678 509 8547 736 8123 2213 3259 374 7090 3043 3895 7936 2822 1008 9444 2578 4154 3129 4596 7246 2520 7601 1202 3101 346 7514 2039 3616 6235 3398 7895 3374 1493 3985 4091 2390 8938 2142 2787 3317 2718 1580 252 3661 6782 8170 9847 5182 9793 4217 5307 9831 2800 6333 7983 3808 1792 9760 3284 287 5613 9277 6200 9553 9864 7854 9994 1981 2805 1928 2976 6413 7052 2424 3622 1028 8542 7681 190 9575 1059 3708 3694 1575 633 4726 9969 6233 6246 5436 5629 3719 5327 3059 8342 7325 5859 2946 6382 8528 9717 2837 6994 7990 3998 4743 6395 1428 570 1751 5950 5899 7905 8558 8806 6866 7266 6262 8527 5885 627 3229 4893 4338 6126 857 8563 3788 4694 5310 9007 2458 3330 4615 6144 9082 9000 9612 6470 1345 4681 3075 153 3141 897 9267 3376 3559 826 5750 4662 3835 2102 9097 7277 3164 1995 2966 2405 334 9092 6747 4147 4451 5291 1200 5796 9682 3061 4617 9283 4741 2482 5745 9298 7365 9382 3964 622 7988 1762 1910 6378 4021 2765 5297 2302 6847 3600 5594 3305 458 3290 203 8409 3228 3093 7527 8307 9707 5458 6172 992 2690 3112 5821 1307 9512 2062 2200 8253 619 7093 8946 2787 8259 333 228 9977 6929 4576 7340 9879 7939 5182 6991 1689 1463 6175 7026 1040 3223 893 1715 9645 5165 5725 7883 4585 3971 9043 9991 2143 2446 317 5523 878 6646 8188 7171 337 6259 5003 7927 2693 9180 8800 5547 4100 1158 3330 8885 1243 9734 8149 1159 2230 2875 6431 3526 8970 5323 9972 4481 6475 8163 2667 8954 375 1815 6188 434 4008 5871 3413 9063 3181 1356 2358 173 4256 4062 7672 335 7517 3365 178 2448 1895 6758 5517 3538 140 8149 3998 4318 9495 1004 3861 6715 7154 5220 3366 3112 7242 7615 228 7054 8178 7055 6671 4456 6070 6139 270 690 1395 8654 5263 9620 5229 7426 1548 4745 498 1371 7195 550 7812 1474 519 1382 1482 592 3413 3302 2912 1037 8879 4122 180 815 4250 1700 1853 1388 9804 5878 8106 4952 8923 8221 7140 4142 5816 9885 2314 762 414 4434 1909 8874 9854 3906 6707 2532 9089 5805 320 2601 1134 7304 7579 491 7209 5870 4090 8267 3099 3135 2399 9893 8804 4124 3071 3361 6716 3079 447 9168 7648 2822 8609 3179 8384 171 8084 8213 7479 1296 2511 1133 1112 7350 9174 7812 5124 7316 1446 7761 9973 4679 6637 5355 703 5643 6277 7650 5646 96 2364 5720 7369 8527 8177 8389 3319 4384 7353 1359 8400 5537 9756 2749 3795 5992 6683 68 5970 3828 9096 6693 6905 3615 7044 5806 4821 7852 2385 8264 5394 9866 9625 9528 9144 5413 9825 9721 9366 7276 7384 9075 5646 1184 1781 308 1206 8771 9037 4435 941 8696 7386 2226 7617 7374 5719 42 6239 8906 9353 254 2546 422 1539 9736 7899 118 8296 3874 3731 4335 3660 131 9774 4727 1550 7219 6052 8017 7319 4607 1457 9995 1730 1584 5127 8331 1583 1533 5140 4422 9945 2085 7490 4556 3813 8401 7151 2996 1511 217 9901 791 2228 1073 314 3456 4534 2995 1646 7920 1547 3804 2132 1288 3839 5608 6233 4506 1550 2673 9618 4187 2492 7597 7158 8289 7012 5023 9973 5769 8179 7485 4379 2204 214 1593 4568 7524 9209 9157 3926 9928 6530 5977 467 7557 2801 1926 10000 3668 8814 8166 2990 6744 6056 2391 8632 6645 7603 8487 634 2428 9860 2508 1876 8996 6405 655 4260 3707 7210 6542 9153 4468 7272 9770 9821 107 6217 9184 6589 5970 9522 2359 3037 1900 4859 678 9663 1565 7163 4555 6991 8206 1613 4078 3406 7563 3685 5440 8960 8677 2576 9110 3190 8998 555 907 3320 1327 5556 522 6445 2844 2405 5707 2460 8937 5241 3741 4319 3613 1503 5864 221 9097 9205 7227 1810 8998 9824 7999 9882 6286 8120 2326 2388 7919 9458 8128 961 1572 2427 4563 2584 3874 5315 1880 9760 807 9083 2232 1006 5160 623 8975 3072 5368 9919 2024 5617 2768 6033 5104 8724 9113 2171 3632 1071 7141 7312 6961 7087 2975 3072 8888 5436 8866 321 6543 8438 9395 5501 6660 3721 2341 9494 3729 9576 835 1379 4147 277 4175 1467 1356 8891 3944 139 5901 7931 7904 8059 2925 1974 5973 427 8334 4303 1528 7078 7375 1257 3263 5488 3678 2642 5710 2663 2773 4265 6005 5926 5728 5704 886 9729 378 9926 3186 7242 342 2560 5694 7665 9768 6587 9959 9766 6244 8693 8450 6094 8287 5599 5273 8763 9330 9004 651 617 5241 9585 6998 6650 3320 990 5370 1898 9610 910 5217 3455 2080 9502 2078 7125 4832 9696 4383 518 5874 5512 2270 2464 1900 8644 6658 8138 39 7774 9152 3730 5046 7691 1221 1215 2784 7950 7994 4417 3435 7 1075 6757 5363 7725 2741 3371 2337 5568 1765 6984 7018 4426 8630 2977 2867 6855 1903 5083 5974 4969 3494 8958 4720 3603 6211 8966 8134 1515 859 4927 7587 8406 4643 1526 3443 3690 6829 2616 7544 5123 923 5041 7852 103 2860 7956 6377 5783 8819 6761 1373 7397 8932 773 2490 2780 4778 5379 6497 5673 6407 2734 8321 1967 9869 8984 3206 4140 2669 5072 4344 1008 6102 156 1685 5437 2804 8663 2337 3401 7672 6807 589 3033 6947 2678 7614 5329 7087 3923 7627 6317 2139 2234 2520 9305 8741 1770 7289 8944 6681 4829 4514 5214 8958 4990 8577 684 637 599 1431 7505 5496 8062 1755 2879 8943 8177 7511 1644 4854 4271 4339 9353 3483 3474 38 9893 8903 2874 832 1 3287 6594 2250 3219 9593 4243 1601 2908 3971 3789 179 982 1992 1160 6574 6928 6768 8033 1689 1647 9482 7871 6257 2226 4428 6971 4771 2383 4681 714 589 1258 8981 1315 9760 4597 7697 2609 9928 414 6949 3467 2043 5116 5247 8749 1176 5624 5154 4246 8268 380 4229 7004 9865 6123 1513 6544 9899 293 6130 3940 3988 4901 8176 2237 3616 4028 651 7279 4805 792 5797 1829 8483 7573 6878 7594 9064 4374 690 5412 1983 5929 6347 5178 1131 1108 9717 8059 3674 3929 1729 3578 8814 319 4924 5780 5188 2608 3381 5618 1837 6399 2970 7734 1339 476 8164 2473 4328 1425 7122 9672 5315 7784 9336 1295 8228 3037 5649 1858 58 9662 4903 6997 3333 1234 9009 4980 1411 1185 2915 925 5987 1050 3228 2170 9404 6635 2381 2848 2010 9890 1683 5451 3447 919 2897 7812 8204 7228 7903 1383 3746 585 2391 2531 6367 9348 7237 7318 8815 8368 9452 4576 6082 3088 6956 2736 1576 6312 147 1488 9140 6471 9363 7113 9131 6210 912 5809 3413 9784 8237 3599 4146 9966 909 478 6758 4978 1601 2598 1581 3348 6824 7298 2925 1737 3513 2330 5090 7180 4831 4840 4202 2581 4503 2131 817 2608 9485 5477 5562 1445 8015 9677 6976 1408 4563 9094 4376 1761 7762 8844 6214 1544 3387 8980 2892 6660 9986 7361 9424 4518 2450 7406 5443 4848 7421 3058 9260 5952 1832 617 4364 6720 3658 9558 7969 1373 3286 3884 2525 9600 3066 7765 4124 1637 8083 7628 5741 6367 3851 4404 8271 3740 9485 6356 5793 7050 993 2384 4313 728 9984 3993 7128 2378 4899 6969 1211 2561 8392 4807 9145 7576 5551 1368 1985 6531 9371 4479 9079 2196 744 2856 8398 5842 2134 9829 4453 8648 3470 3970 666 4347 4172 5718 1400 1873 1323 4744 8684 942 5461 5392 1539 5176 5291 2722 9924 7688 4426 113 2901 8172 627 8930 7189 7164 1608 3374 1262 5683 9194 2375 2298 5083 5606 9110 7273 8418 6006 9774 3565 8111 7421 3161 9327 2529 2981 1863 8367 1971 9032 295 6049 4101 5991 8610 7929 9684 164 9009 6112 1957 4380 5394 1980 244 2572 7547 7590 9237 9019 4214 9880 4175 3646 56 4021 4856 6445 7458 541 1250 3384 3507 425 4115 2208 6068 5916 8395 2765 4441 993 5188 5796 4979 4594 8044 781 2427 3813 866 3166 2551 3732 5693 5361 4638 8613 7622 1566 4230 7565 8505 326 3002 1868 3082 613 4124 7262 5127 3805 80 706 2162 4534 6754 7279 9948 3599 9297 8016 9891 3191 2474 1227 2199 536 3919 7671 8752 2573 6713 4866 3632 8698 997 4926 5843 901 9587 1344 8041 8753 6485 3542 7404 374 8440 1459 5949 205 1193 3757 4460 4234 9352 126 1875 206 8535 8889 7033 4680 9576 8285 5880 3244 3389 9948 9024 8174 5678 2301 4093 4834 6159 2722 1819 878 2665 2317 5074 706 341 3413 6566 3910 7773 4018 4505 7078 7737 5170 5455 3057 5372 4470 6025 2728 5506 7448 9866 8064 7815 8953 5959 5455 4074 8845 5044 1820 7588 5362 9553 4627 3617 9265 9924 4733 975 5559 5951 730 8175 1662 6926 9472 1575 3426 2842 3137 2589 3539 6346 2400 2326 3195 6981 3859 7124 3226 3658 2258 3236 5303 9742 2965 9925 5776 7499 4315 4508 9559 2503 6348 74 6499 9366 8623 7243 5184 9951 6146 2876 4675 7683 9923 59 77 5542 4271 5313 1653 665 6801 5733 9879 2853 270 3284 1947 8754 432 3354 808 6194 7995 8705 1300 8817 2096 681 8991 550 4251 1966 6221 8261 7138 8748 6406 1185 4483 1946 647 352 3133 1683 4986 484 1469 9461 5432 4416 3498 4182 2726 4681 1746 3696 1541 1552 8040 169 5003 5353 2931 3193 3122 1842 6681 2200 1500 7727 6447 9913 9291 8712 9737 2850 6622 2444 2482 3407 2710 3963 9882 9233 7086 400 7170 3247 7050 4546 4966 3489 4573 8991 1203 1864 5212 5661 4563 2214 2913 3385 8542 479 2862 5653 5742 3993 5523 3818 8757 8878 5230 1165 6506 5000 1471 8030 2483 9935 795 4396 5027 205 434 4656 9136 7133 6768 9275 3655 9613 6365 4198 9738 9401 6775 1051 5087 631 6131 8478 639 2110 8684 9355 8619 595 6205 8020 1568 4779 7569 1439 677 2050 7388 1588 5216 4136 4867 6313 8811 6101 3415 8200 5799 5123 8970 2659 9198 57 6786 2923 1513 5299 9405 1154 5708 6152 9671 2701 675 1791 4699 5563 6810 558 187 1313 1401 8242 8537 7403 4083 6902 7267 9312 6023 2114 3966 5181 560 8100 7001 5537 6225 3252 7745 6964 71 3864 6739 6133 1077 8621 9738 642 9625 8912 982 7740 4603 6656 5141 6854 3805 5949 4220 37 1186 9691 6809 1546 1309 516 1817 3847 4092 2199 3907 172 726 208 1635 9911 2164 9337 8872 5046 2056 5157 2965 3620 4664 2216 5219 4165 3544 4698 4785 6172 5153 3411 9880 9242 9991 915 8985 6228 9876 942 13 6161 7209 4858 9438 5910 4262 2348 2840 53 3255 5811 781 793 1828 2957 6428 7199 5728 7360 5779 4308 7223 7332 7700 7387 298 5501 9272 9624 204 4534 6310 5094 6370 6647 5217 6666 7477 6851 2147 4059 8389 3396 5966 6937 1104 6018 7021 6 7084 787 5487 2889 7668 1941 8495 4962 3032 1840 6321 8191 6568 3788 6572 449 941 5703 7783 3733 6981 3463 1027 8693 3020 7681 3252 7612 4393 8072 2693 1209 7993 2982 3493 9822 8508 9352 5211 2966 250 7396 4241 4803 2166 3203 6489 107 9962 8080 6184 5152 7313 210 6090 3426 8596 9664 7030 4114 2028 4838 6463 6786 4019 6777 3660 1346 2966 2223 1801 7415 6090 4661 2733 7839 8448 321 272 9177 6639 9775 375 7788 3058 6359 5406 2685 4601 2756 8487 7914 8611 137 6702 3577 9587 3578 5272 298 7289 8243 8233 1301 9759 2398 9570 6910 2929 9957 8925 9018 7199 5095 1481 3594 1808 5491 1881 4752 382 5109 1855 2831 3921 9184 6316 2956 5707 7065 5614 9697 2880 5023 1943 587 7705 1012 5058 5684 6378 1629 3479 6146 5759 6909 6398 6020 4483 7010 1178 4033 8918 3893 3276 3670 8368 4399 4641 1250 8983 7349 9393 4795 8997 4715 5795 9548 2190 5379 4441 2508 8367 4291 1692 263 8163 3680 7319 1955 9752 4687 5354 2969 2890 9486 559 4819 7834 2535 8712 2658 6068 5952 2795 8840 9962 8723 9572 7885 7798 7941 1427 9647 1269 4768 4941 883 5396 6883 4371 4288 3699 7847 355 6614 61 1877 9400 419 7197 9286 1582 4555 9216 2900 3247 8623 5862 7870 1225 5599 9775 8028 9008 9080 5990 1667 307 5924 8562 8455 7353 3250 6855 4169 3309 8835 3139 8833 322 3568 8295 1059 3545 981 2970 3757 7578 2206 1354 7664 1014 4446 6256 6961 2932 5139 7997 1562 9041 7637 3111 5387 4740 1270 4230 7404 3625 2833 7539 5973 8735 2834 7163 2976 9770 954 9762 4407 8796 8248 9780 2977 1315 4352 4356 1742 3798 4490 4388 7760 9920 6791 8077 7068 776 7675 6554 8614 791 2809 6887 6939 5563 5532 7959 5530 9952 6254 9345 9067 5995 5842 4999 1630 3452 9423 7654 2522 6984 7332 535 9983 9021 7356 5869 3312 2227 7032 1690 7880 8253 8199 6190 7478 6283 6138 6590 7821 4705 4008 2626 9655 3268 8195 1813 1135 1504 4994 9831 8722 1386 562 5349 5314 7328 9166 7174 9165 7411 6800 7386 3900 2540 590 1796 8200 4356 363 8530 4836 9129 8801 1073 4588 9441 46 5859 1920 3018 483 823 9116 8648 9093 7773 2969 6077 4808 5863 963 1086 1070 3214 9675 1049 5979 2935 3736 4914 8436 7747 9642 1954 5284 5633 952 6767 5383 878 961 2903 2326 4167 6945 6813 5772 1244 1057 2315 3432 9745 8392 9039 7134 4784 1960 1568 4944 4897 8777 9166 2826 1804 3917 3005 6832 9715 580 3437 9276 2045 9516 4338 8152 917 6441 5978 6364 1849 7901 2327 4698 456 538 444 554 9236 1883 1226 5818 1540 1723 4440 6157 6780 4269 3781 879 5284 259 9483 9032 7869 1577 8809 4850 9730 5735 5781 5035 5584 7738 5997 7557 6180 1684 5862 884 5261 5918 7988 2002 7182 566 9061 7700 6246 5836 8504 4967 2349 9893 2636 5525 3113 3245 4416 334 2307 7217 7492 4866 8004 1702 2565 8141 9031 1801 3022 2737 7668 3929 5472 9686 3416 9156 932 697 5281 7667 5208 7231 7371 2279 6456 3397 7228 8140 3322 242 8434 1539 9215 8 7249 1955 8259 8004 5700 49 5349 9943 6946 9397 4112 3152 2314 1208 8394 3650 1141 8383 4716 8002 5959 1768 849 6801 3896 5434 220 850 9102 6453 3628 8990 4443 9696 7042 6135 4566 1399 1601 4069 52 1256 1009 7706 5407 9841 8010 961 1543 9063 9289 3058 5012 3239 1593 9418 6277 801 1337 1755 6675 3558 7788 7329 7290 4955 4358 7604 1058 8323 7921 7065 7590 1828 2934 7546 7971 4294 3551 151 1295 1 5205 2338 9432 3893 5139 9359 4740 5265 5068 616 8079 2647 3906 3790 9283 2181 8234 4868 8882 9165 8869 4920 591 8345 9448 5798 7829 3943 1539 286 6379 3814 5477 2227 3470 9113 5600 9605 1374 4190 5211 8717 8776 782 1671 2018 7221 2206 3836 2346 795 3570 615 8045 4940 5810 1334 6130 2101 8216 7311 7968 6084 4059 8458 4954 5982 1670 3280 7169 4641 7251 3201 1241 6874 7333 814 4315 9466 8342 2234 9481 6499 888 1983 5559 5280 7604 8418 629 6610 7650 8701 3552 3634 9852 8677 9031 9189 9720 5983 912 4585 8767 2624 7067 7369 8271 7133 3671 1790 7235 4275 8365 1476 8345 6193 1219 2110 4506 7866 2686 3288 7201 2777 4115 5825 3838 8433 8020 3044 5101 5552 6608 1323 916 8410 1407 3614 5394 1062 2513 6726 6729 9117 3961 2238 1744 16 3364 3706 5288 2789 3940 8761 619 5006 2881 9843 1358 7591 9304 2597 7200 1032 1451 5475 3197 512 8349 8639 4790 5089 7782 3920 9066 6624 1856 5246 3152 4940 4942 7013 8629 6618 8436 5261 5098 4986 980 4636 7461 4145 4358 6998 4533 2908 7929 6881 2253 8460 5626 3308 7610 3733 5938 274 2871 3954 3187 5656 5757 9335 8500 3009 6622 377 4744 8797 8921 5878 3241 4020 9403 979 9695 9873 8152 6466 56 8057 8336 8246 6930 435 3130 643 753 7645 6303 5488 6142 418 9426 9108 482 5921 5341 9748 5152 7878 8089 5409 5039 9981 1609 9889 4720 2000 2739 8999 5564 6109 957 3827 5957 1198 207 6636 8935 2435 7151 2044 9348 9957 5976 9642 3269 2887 1013 3932 1947 8529 3575 8815 8069 291 3243 5373 2507 233 9733 5361 9142 2456 3458 4420 6652 166 4899 6732 2531 2683 4597 2143 9791 6165 6976 7730 4365 8558 7868 3961 4054 8715 1921 4331 3466 7540 708 9387 3019 1158 1401 9147 3673 2124 6982 708 7544 1983 8605 2169 7570 9032 4726 4206 3980 1070 9062 6031 5462 3233 620 1983 5520 3339 4476 4892 7954 3947 439 5059 9779 3660 8805 8941 3975 6801 9053 2814 2850 5567 4003 3136 9707 2267 40 8053 4403 3939 8506 1854 4414 4510 3445 6667 1902 7353 7692 1172 8180 6704 3120 2941 5734 4844 9037 8920 7103 7235 1633 2057 3718 8571 8256 6499 2498 2292 5452 9622 1411 2314 7636 7286 2200 6268 8700 4111 8444 6655 5542 3528 9770 1279 3419 8205 1636 3342 4699 6841 259 8009 4075 4971 5564 9877 8817 5196 2873 1494 2819 9616 3882 4411 7686 3269 6287 8534 2283 6931 2059 7983 1794 3772 6946 741 3272 6526 5670 5145 3285 8947 9065 436 2105 1427 5285 35 3647 870 4671 1550 5260 3224 868 8911 4802 7828 758 4815 9937 8369 4061 8602 5116 6508 7478 8794 1165 3960 181 6054 2941 7407 1845 3052 5069 4160 5916 123 9222 9824 9132 2595 7198 9286 4802 6808 5550 3355 5644 174 8351 9435 7222 6157 2509 2008 7537 3297 9661 8736 4787 338 3843 8157 4604 7105 8810 7017 4149 2973 9121 9303 9816 5073 6102 1395 1899 2320 7989 4977 8953 4180 5388 7126 3481 6531 5319 5847 5766 5215 6900 7293 7135 8494 1005 6757 506 7180 5482 1283 482 1164 7957 4371 9275 9787 2868 1167 795 5829 9299 541 5537 4285 5733 2307 2768 3882 3111 9980 6688 4227 5028 4097 3698 1583 5095 2671 5842 52 8628 861 566 8813 3675 4857 4777 9101 2312 1785 7921 1132 3165 1763 3641 5705 7365 5808 5859 8429 5450 7497 9468 8737 4743 8987 2935 90 4895 8934 4629 4382 2655 8823 8332 9150 9665 2272 947 5967 3143 5081 9994 1796 3162 5508 1106 116 9753 2988 3224 4631 1853 2392 7902 7815 9520 2486 8525 2720 9275 8977 5641 4319 2903 2913 3116 6482 9508 9033 2335 3457 7255 5066 6057 2280 6158 6921 9423 1427 2047 6498 4851 2336 5416 9219 8063 3521 8193 4773 3965 8026 6431 865 3980 9830 9221 7665 5069 9381 5612 2756 1114 8102 6545 8184 8637 9608 5748 2038 3695 1902 5313 4100 3381 2153 8553 6733 5726 4009 4272 4721 3744 3219 222 9748 2317 8517 7906 1122 400 3271 9277 1575 3425 8636 8001 9854 4093 750 9931 7848 4581 7984 7660 9001 4314 7062 9727 8404 9190 6025 8494 7826 3550 3424 4988 662 7126 2658 2283 7945 4731 8866 5218 166 8346 9929 6706 9172 1075 8012 3276 6515 228 6825 38 7384 8389 4777 7516 2333 7824 1 9073 9287 6734 2882 2008 8913 9014 6064 6709 4775 2317 4111 7738 4311 291 2803 5923 3795 6947 1825 4989 2029 3988 3674 8461 2290 6604 5439 9058 4831 652 7246 3266 442 9665 4352 5653 605 6433 4461 6060 8026 5401 6070 8895 4717 2293 5941 2162 6108 3900 2363 3511 3640 3138 9632 7217 7185 9218 7947 4189 945 7033 5293 8943 9492 8552 8779 5747 3396 4262 7576 7661 638 3638 5202 7137 5831 9062 2073 9171 917 5162 1337 1294 4746 3681 1297 7711 2422 7715 4627 5709 5900 8476 7106 9495 6967 141 2038 3961 6472 6390 1465 161 1231 574 338 1517 5663 4013 8547 4406 7747 1192 1869 2685 3079 1257 4681 4530 7754 6860 182 6869 7391 5294 6133 4874 8672 5467 1532 3210 7685 5326 236 3875 6883 6948 1222 3186 5657 8621 2098 3617 \n2602\n2114 9806 407 5780 4751 9937 2105 4522 5206 3676 6804 9469 4604 6907 9820 4011 3335 3668 5724 4095 8898 3893 7383 2209 992 2224 5558 2368 3999 9961 7964 6655 3798 9318 6879 7534 8280 329 8217 1881 6841 368 2936 9958 8079 6088 9535 8277 178 2377 8331 7095 8509 4537 6592 3766 6468 5518 4420 8189 5052 9620 5067 8858 5998 6940 2978 4760 7352 3914 7506 5566 3254 6875 9322 522 4329 3264 3343 6010 9835 3783 39 2389 9960 4883 7617 7294 102 9050 5168 4677 8082 5354 3452 2920 2439 9561 7356 8642 5932 6494 931 3765 2429 4561 5998 3686 9874 4507 4726 4379 8338 6547 5380 1322 1558 6848 142 1974 9914 2855 3902 9175 5781 5867 1476 7288 4926 6069 3968 528 3224 8759 9493 5513 3229 3984 2614 3622 256 6714 443 2774 75 7855 9689 3715 1140 6029 7403 2243 8529 9173 8854 220 1290 3936 5059 6238 3611 7253 9906 3940 6833 3145 9482 2485 9881 7161 6358 8780 3831 946 4050 8719 7728 9047 383 5810 2359 5074 1234 3180 2563 731 9201 5755 1762 683 8729 7317 8058 9377 9022 5129 6512 1407 1576 8824 1098 8185 2841 4588 385 1832 596 658 1962 5679 5002 9506 4197 3652 5428 397 8766 923 3424 4352 1390 564 6906 7066 4723 7188 654 1690 5309 2736 1172 5455 8570 81 3322 5940 4430 3993 9511 1205 7262 2734 2564 6723 8761 1407 1263 9625 9842 2299 9099 2354 1628 575 6997 8572 2540 9547 1333 9642 4000 7419 807 2921 2277 2292 2921 8634 4059 936 3959 4932 4059 9150 5265 3855 4812 3303 4469 4407 1704 144 9362 6919 2309 3214 9099 9720 4753 5654 4254 3251 4087 3269 1290 645 8139 3519 7925 6788 6799 8584 7941 2663 3331 6461 6716 3954 6284 6891 746 5274 2145 6130 6144 2201 8680 2980 1151 6838 4672 2045 3581 2517 6450 6075 8634 8528 1476 8558 6384 2778 8672 1746 7241 8690 4534 4258 3920 8289 5137 894 8993 9120 1930 8011 7811 1459 3563 1238 7414 1199 4324 1721 5532 8248 4419 4710 8619 4248 7752 7762 3810 8344 2478 9274 9246 3456 3039 3762 3399 6785 8940 6875 9904 9400 3218 2219 2722 9815 4204 890 5135 5014 7946 8306 8619 3264 486 5751 125 7918 8294 3118 6709 4787 5841 4768 724 5201 2877 850 8550 3528 3555 7015 2057 6227 8611 3293 7258 8615 6339 9411 9530 6480 3099 836 8052 6926 6119 9014 1641 1206 6469 5297 5838 7899 6743 8681 9376 5848 9288 9431 3877 925 7022 3981 3893 8986 8892 7054 7434 6400 8562 2362 8340 6873 7152 1218 4886 7212 8368 9981 305 2868 7839 3869 4017 379 2530 1372 6659 1092 7444 7674 6986 421 3801 3802 4964 5280 480 7984 5530 4678 6306 1349 3072 2211 7500 7275 1622 1260 3961 435 5542 2567 3190 5149 9837 3169 2164 9506 7275 8526 3927 3750 5556 8823 5080 3985 2528 4715 9001 858 8194 6364 7404 7725 9888 8422 2189 3823 4493 3414 6670 1381 9643 8022 1064 1857 2081 4823 3391 4591 587 177 8358 362 3180 3036 6651 4160 7339 9436 2751 8982 3653 1495 6376 7279 7418 4325 89 4852 7844 9547 1129 2335 7982 2437 4351 4159 6041 922 7468 6607 1386 8405 8690 8596 1565 6902 9550 3227 5280 1764 5163 8508 4671 8283 1629 7953 7396 905 4238 4129 681 1581 9630 4155 6113 6553 9531 6781 5866 7109 6129 5863 6145 5633 7605 2978 7540 680 1082 7975 1314 7615 8928 208 8493 2723 6972 3733 7512 705 5499 7559 2528 6942 4204 2139 2932 2877 5573 5628 3546 1507 1521 2494 1431 7041 5904 438 915 1825 3494 16 6694 7377 7824 3168 5646 234 3837 1965 4966 2546 202 2266 7867 9141 9744 2345 2650 1717 3584 5982 7592 5589 8800 2282 9540 1711 3497 4481 1617 9028 9116 9012 7898 493 4407 2600 5839 7025 7792 4490 8454 9239 4383 8295 3022 2194 8057 4141 4603 9307 5934 7404 9545 9639 8184 771 8566 9399 3435 5066 3985 6709 7537 979 674 5120 8263 9281 8095 3181 3166 325 3083 4018 9323 3869 752 9676 7829 9356 2905 1030 9748 8317 5662 8752 3690 6195 4801 8756 376 8958 1499 9577 962 9154 2885 4250 171 1754 6388 5428 1310 6497 865 7710 6961 6178 4789 1742 3288 3757 7187 4393 6473 9305 4299 9591 2021 8848 9108 2972 8934 6935 6766 3150 3588 7942 2028 6101 6818 2003 5260 6221 2636 5181 5131 68 9906 6492 881 9523 1070 2042 6322 1367 1186 8212 733 6335 4971 4349 4033 3197 1399 8787 8658 6721 5970 3744 235 599 6276 7562 1432 9490 3306 9453 6673 3274 5912 6319 2431 4850 7540 842 8165 5826 7057 7316 2346 7795 1801 4920 7378 7557 1724 2759 4972 3508 4846 9264 4093 5621 4260 8155 6666 9898 9103 3009 8916 6138 3600 7401 8331 4615 4378 6153 1214 7276 124 3074 4965 619 1503 6215 1197 282 8443 8865 1856 9483 9871 1349 1388 6832 8409 3094 7865 8826 237 5655 7808 1354 6674 90 3188 2248 636 1717 7868 1402 4340 8628 7302 3139 4553 3060 5055 9747 8052 9129 2653 4725 6591 8138 9089 7030 5341 4073 3782 6268 8328 7284 7308 2658 484 747 5157 336 6917 3072 8884 5928 8533 356 6981 3251 13 2955 6910 3366 9709 7884 2583 3901 4281 5934 4130 3018 3006 8167 7796 9133 9999 9834 3501 3897 1374 1831 3830 7794 5815 1958 9781 7913 684 6670 5523 7607 7264 3538 7859 5717 9817 668 2691 5838 4407 7311 9685 129 4547 7902 5888 2066 310 1863 8541 2223 994 9376 7797 2727 5088 8231 8207 2462 9468 7823 2052 7496 7677 2846 8264 7959 5789 273 3580 4476 5673 1432 1408 3976 5219 9896 6760 676 343 6440 3875 1889 7496 1512 7378 2768 7524 4972 3754 2063 2071 1435 3205 1842 8172 9148 1591 3325 2825 1813 9948 8953 2052 3498 5731 1842 5748 580 9245 2033 3705 5242 7913 2360 485 5890 1377 751 5446 7951 1454 2378 3151 4299 2669 7552 6762 8105 8998 4602 7747 7683 5080 7697 4870 1467 1174 8733 5368 913 9845 8618 2020 5513 4272 8114 8971 9125 4066 6068 3653 9597 7854 6587 4499 6398 3296 4035 9016 7362 2286 2359 6244 184 3540 4971 1831 7410 4345 8457 5644 2437 7618 2790 1460 514 8100 2853 1439 4711 1993 5038 9619 5477 5352 5109 9179 7947 3816 4293 1037 9976 6034 6953 9051 6209 5564 6957 3419 2643 5487 7895 6932 4847 2834 6013 201 2897 1676 3202 148 6976 9398 8057 5051 3563 3940 2122 4845 9651 3057 2631 7610 941 6322 6674 3989 789 5462 8318 7119 2386 4589 2073 1599 8309 4718 5898 4087 3388 4619 3750 739 1578 6718 1381 9894 6804 9313 6841 5909 5530 4003 9193 3103 9135 2087 50 5499 5282 257 5344 5113 9586 9011 9760 4794 2938 6305 8707 7570 8598 6246 3215 940 7 4125 650 591 9225 602 8576 5291 6373 2462 2582 1332 4948 6736 210 3428 2416 9181 7583 1365 4332 7232 7761 8179 6382 6667 7127 8107 8145 4498 3402 4739 9868 529 1474 7041 7066 4900 695 9918 9167 6875 4139 9884 9045 1406 5816 6150 7800 5609 1375 4406 8658 5581 4740 4609 6446 4616 4408 180 5996 5669 6141 3180 4642 3304 1386 4110 8446 3870 1878 2723 5244 4965 5446 5425 9699 2815 2639 2065 5150 9442 8034 5281 8214 1232 8382 1221 2177 6245 5128 3477 6345 9245 7443 7302 7297 8106 198 2864 7373 8734 2240 6205 3372 5 8221 3163 8859 6564 3484 139 426 8265 1877 3666 1976 2432 9985 6259 9903 7351 9850 287 2951 3072 39 1632 5388 2613 1199 3991 4114 6062 9718 8518 2188 3081 8656 3133 4108 1250 8825 6963 2285 6285 4905 2909 6652 4894 3479 9955 7964 6612 944 6805 5012 3434 6050 921 2461 6262 8588 8822 3072 5347 9528 1037 8936 5594 901 4338 3913 3833 4788 4025 7720 7122 716 217 7423 3789 9891 447 4405 6396 1107 7855 9026 1977 761 9749 7348 2411 2842 3050 3698 9047 9153 1509 9273 2607 9015 2737 7632 8884 6787 9681 1256 9373 2188 7589 3596 440 7614 415 8245 4356 3517 7276 2021 6402 5657 2554 9540 2133 2549 6640 5904 506 4773 8764 4940 7943 8733 3689 9902 7613 3290 9692 8806 3037 644 2741 3108 8626 103 566 2301 9160 1379 6254 8477 4969 5025 6085 2955 5283 4345 5953 2217 378 2571 8643 7332 9752 1287 7056 9042 1059 1080 6382 3936 4993 79 6801 5149 2864 4238 3550 9802 8294 9784 4056 9984 2385 2926 790 4345 330 6686 7135 4733 4810 3715 1180 9410 6964 6475 9476 450 1457 1492 8591 4633 750 6022 4849 2842 4898 5744 803 5632 7453 2438 4573 4227 3479 414 8669 6923 5270 600 7021 1571 9217 9826 2999 1352 6879 3514 8506 719 9731 4274 4044 5824 1454 732 2552 4789 5304 4416 4501 558 8928 6135 9973 7406 668 7881 9318 2413 7027 3347 2792 7547 4166 5636 270 3787 9504 5074 3692 5310 629 8099 7354 4458 5833 2920 1720 2104 4677 7957 3021 6977 5440 8960 6314 6991 693 3493 4635 3224 8411 4864 2339 6517 9105 2939 1336 9862 1414 4842 1407 433 9694 2040 8154 9453 8856 144 6885 1217 3603 5136 7268 5027 9886 1598 7603 5069 8981 3599 671 5746 5591 2508 6464 3653 2473 8638 433 9858 6000 906 6965 9543 9487 720 4534 4241 1835 6715 298 6751 6320 3773 5497 8461 8266 4059 6283 2013 4875 6141 5681 1660 1252 1219 6212 5844 7038 7003 7333 6236 6180 3905 5977 8061 4116 2873 2161 3214 2209 2855 885 873 408 5223 1244 811 2166 6091 6851 4724 5653 3963 1390 7108 1252 2402 2127 3348 8214 9694 6214 6771 55 3771 6418 3531 2037 7073 6005 1149 9561 7849 6004 2900 2974 4088 1323 4939 9288 1325 4456 6119 1628 6790 9295 6430 4345 6482 9570 1065 2098 8428 118 4374 1738 3172 5625 2628 7940 8579 548 6685 201 4229 9235 9057 1848 3228 7528 5073 622 7779 8610 9089 4607 9364 9741 8338 5465 9617 4520 350 1136 9121 5334 4060 6208 6522 6264 2947 7795 7871 3712 2970 1641 5172 8964 6142 778 9557 563 5178 7668 9019 3624 3306 7628 9461 4712 5436 6137 4286 8574 7123 3585 1781 1938 6644 5620 9361 6494 147 9572 3225 2897 7470 6411 2462 3633 3769 7419 8255 6730 610 3576 4631 2943 3578 741 9222 6957 968 8418 9354 3162 3764 1176 8660 6607 5288 6257 3621 1988 6685 7606 3533 60 9527 6444 4033 143 2478 1500 1477 6896 2220 2210 1437 2478 7845 4448 4411 3156 6803 6795 1253 2240 6192 1324 9749 2531 8801 5437 9034 50 7971 2679 7616 4318 8059 3363 2597 6285 8217 4678 3367 8255 4879 1718 1838 6279 8199 1989 9356 9296 5618 1626 545 6020 9776 7074 3665 4955 286 8650 8308 392 66 2676 3120 3713 5251 1299 6524 1251 3957 8621 4364 9417 3792 7703 4195 2561 4486 3427 7924 4728 69 5106 5532 6885 9742 3170 6703 7790 6408 7926 4016 2025 7917 1918 1662 5077 9975 212 8191 642 7838 9513 420 4646 3649 3930 607 8155 3806 4135 6950 4599 7428 3544 7900 5448 83 6081 9639 1517 162 6041 8282 848 3317 6254 3252 8849 8034 5975 3937 3095 3368 3930 4424 5415 7257 1434 8014 5414 447 2947 9252 5061 8552 2708 8869 2809 3371 6779 3209 2541 5540 384 3205 9465 8009 4084 3865 2690 1036 3455 3125 484 979 1538 8679 1376 5467 8400 6461 1966 1308 7239 5962 6385 1838 2072 7847 7378 8334 9163 2525 3381 646 5220 302 3251 6808 7562 4749 8380 5756 3342 6729 5551 9563 5419 964 8185 1130 3609 3330 833 9883 3595 6837 5500 3071 2148 4860 7510 7966 7499 1002 6502 1484 1088 9696 6900 1332 4068 3501 4150 6311 8980 1522 6138 8498 779 4564 2659 865 6093 9173 3796 6618 6384 9097 4488 849 3967 2737 5189 355 907 335 149 8023 1791 6750 8730 8572 1079 9784 3364 1864 3579 7050 660 4585 3198 5691 3491 2530 9161 1240 2895 1773 926 7265 5344 8527 4555 4900 2488 6816 4213 4421 9708 7892 3953 8847 1315 4039 3952 3727 8945 1105 427 5645 9057 5588 4516 2943 5159 7490 2152 8849 6557 8252 1667 2401 7494 2017 4105 8460 2358 6060 4429 1178 7347 3787 4483 3413 8634 7050 7770 348 1270 9442 3354 551 707 6957 8464 9388 3366 4075 7546 428 4156 4204 3952 2893 1724 8804 7502 5009 4882 8825 2070 9275 2492 5589 6099 7008 6159 72 4238 1844 2709 1905 8605 4326 14 1893 8017 9678 5360 4390 3552 8042 1101 2660 9388 5372 5665 4383 5305 7046 7387 246 6876 822 9275 3586 4161 3842 7845 8041 7865 4870 8133 8718 1152 3420 9311 9485 4044 6257 8070 4906 9611 9449 9130 7749 6032 6264 4625 4937 2180 8913 9839 143 8332 8392 155 7954 8203 1326 7024 5717 5533 5747 2147 3245 2402 4163 2129 9177 1852 4011 7351 1797 554 8866 7876 8512 5707 5562 4649 3351 5467 9776 6160 8831 1225 933 1667 4251 8731 8441 7024 4300 8372 547 2810 5168 6407 2013 5943 7323 2078 7898 6208 8686 6143 9212 4660 3412 5981 3167 5223 4766 7337 407 6997 355 7789 3158 6511 5631 783 7942 1881 8908 2702 262 7882 2307 4914 895 710 4847 6663 9721 2275 2960 9570 6818 4045 6354 3160 8740 7648 1650 6468 2400 3257 3644 7953 4799 5009 4299 5171 1728 4205 7310 266 9428 108 5067 1882 3307 2271 8849 1949 2262 3967 3710 1597 6366 7992 2148 2924 8393 1747 184 796 8 7382 682 5875 5624 3356 3457 8817 2590 4936 8414 4005 1876 9221 206 9439 7498 2389 5107 5785 1682 198 5903 2986 7152 9633 3763 1625 6637 5866 4032 398 4874 5751 8239 4015 512 3740 3310 605 8154 3090 207 6163 2431 4408 4150 3224 1770 5180 1768 191 8697 9707 6131 9467 9200 8787 3434 2078 4554 1800 6703 4370 299 4321 7931 5102 8645 6040 8662 9084 66 9236 6929 6693 3892 8957 3047 5458 4801 8224 7087 8801 6852 2434 6115 1083 9138 1158 1704 7944 8922 5060 4946 1836 5891 1161 9556 1700 4286 8640 3518 198 919 4847 8520 9574 5562 320 2056 8321 322 9530 732 1935 5762 2781 2603 6547 6297 8839 4613 2271 3576 3644 2204 4073 7256 7653 7031 2828 5334 3088 3393 290 4049 3980 5654 3183 1904 2724 7917 5060 4300 3155 3731 9907 2596 2810 8424 4541 2582 4858 2745 1011 5660 4230 9496 7900 8322 6703 9340 3597 4107 4028 8269 9266 1708 543 9096 8774 3660 9377 601 7142 9848 8633 86 8108 5001 944 8690 7773 2340 4383 3426 7334 8821 3295 5579 1805 5000 5425 481 9437 3257 9832 2051 1025 7888 1869 4906 5511 8016 358 4164 3867 8978 7806 2315 973 9498 2122 9011 4236 9350 5158 3630 4744 4957 3887 2993 1248 1128 6778 6497 2368 8578 8421 8106 3776 3451 9364 5509 4419 1480 8036 468 3675 1194 3545 1527 4753 3428 8174 7503 5160 6726 7524 9087 5566 3963 2752 5357 9408 3715 3867 701 6627 7599 8405 8820 \n1946\n8684 7727 6402 9136 6726 2854 9572 7988 5242 9156 1248 8369 1957 949 593 5400 2000 3532 673 7560 9750 6831 1256 753 6266 6279 8471 8894 8739 4657 263 6676 6365 427 480 4370 1687 3330 7907 5290 7377 7780 9061 494 4855 9264 2561 1286 9965 7913 5587 3262 2029 7157 3504 1222 8756 1225 7339 9803 4712 1900 6809 2660 2241 5017 2177 8393 3358 4524 5787 7600 1573 7904 5193 5172 8173 5063 1750 2546 7288 6794 9259 8264 3854 4339 9200 7673 5278 5985 2632 3540 2184 7129 55 1458 6450 7216 7008 9380 2441 8138 6117 2117 6398 2794 9981 4561 137 9642 6868 6083 7601 3039 6152 6229 8698 3734 7191 3337 1064 2173 2487 5704 9044 198 2398 2661 4320 1980 2409 7753 6566 755 8341 1441 9318 3167 304 5332 7577 6070 5223 2993 9787 2414 9264 5974 110 8367 6403 7540 6730 8720 6163 5873 1040 7192 5117 3695 740 1525 6002 8597 4181 2814 8915 975 6713 368 2485 1252 620 1587 7767 43 2315 5704 3922 2423 4207 3697 6668 8834 9976 2369 6378 8659 6832 9260 5789 7067 3270 466 5533 4562 8912 5212 4075 1618 775 316 836 9152 291 535 9150 1084 8251 1663 8718 2396 4487 6516 8499 7558 3479 5023 2215 3272 1804 8412 8234 3281 3464 2742 7642 3981 6293 6540 1157 4712 6360 3997 8012 4019 4101 2657 1879 8637 8739 9968 8806 6892 4490 372 563 8983 6318 127 3590 544 1280 1632 1516 4230 18 9339 9482 3131 1572 6145 6176 5050 7157 360 8627 2106 8601 1266 2533 1735 611 863 5491 6015 7993 10 1969 6731 8069 6940 5571 1669 7521 2308 1346 5156 7811 3905 3072 9016 8008 6874 5133 7084 5474 50 8165 3514 9866 1206 1592 2984 4615 6685 8535 5656 6406 3151 7523 4101 1756 5624 7635 1591 9787 6138 9009 7423 7235 9216 2177 2578 5391 3423 4435 640 1366 5316 9985 1857 7682 633 2806 4609 9808 7216 5808 2842 7971 4746 9936 3044 8950 4515 6552 9929 5540 2820 5315 5039 2776 1429 1537 1055 1518 4539 988 17 1606 4306 189 4652 5109 6456 4107 254 5033 5532 2438 6573 9397 9073 7338 4362 2357 2479 1722 4823 5254 8441 7961 2513 1619 6994 7210 7098 9229 3560 7193 2056 1671 2452 4151 1678 6823 7546 9468 8446 8937 2361 3964 9236 7820 1685 343 3334 706 9355 4770 2907 526 130 1610 5552 8071 3858 6017 352 9258 9741 8144 1864 5043 8633 6943 4018 6350 1277 9824 7385 8386 792 2458 2352 6694 7118 198 5596 8056 8069 5980 5760 1634 1261 9869 3810 4890 2286 2306 8830 6892 3138 4161 6465 2967 7321 1851 3423 7141 394 8209 2494 7615 4569 1057 2889 1445 820 6123 3294 7313 4075 2357 8852 2438 8939 8342 3143 533 9294 1171 4022 4151 1261 3266 7016 5019 5441 453 1023 1834 8414 2374 9819 7366 3723 6184 5147 9273 3765 1069 4205 6154 8937 4007 825 846 9745 9796 1389 3129 9322 7055 8830 3607 1525 2891 8947 2144 757 3920 3057 6033 4155 6008 1625 684 8384 6630 458 3189 7789 324 8219 2230 9437 5479 9368 886 9695 9907 7686 5611 893 2495 1829 3658 1184 6471 3413 4472 17 7304 457 1809 312 213 788 7054 3816 6175 1113 4381 5862 2199 6147 246 1804 553 5133 1172 645 1089 8620 4177 702 2948 8335 5897 1111 5458 5072 390 7522 728 7899 3249 8159 4730 5424 5189 6563 7461 4834 3521 7587 9725 3593 5630 7839 6253 8681 2047 8830 7604 8600 5714 5579 1537 4755 5906 3143 8704 2614 7258 1038 354 3654 9870 6651 7966 9068 6655 5097 8774 5406 2843 2231 2930 4545 7866 8243 4205 9245 1103 3720 684 5949 5734 178 1684 9767 8108 7900 5603 7205 770 3920 8271 5509 4814 7462 8800 5243 3907 1030 478 130 8282 7153 6330 7311 3354 4337 9868 1164 7499 2821 8736 3382 3923 1908 9839 7170 4789 3178 7308 6538 7869 2149 5889 2627 7501 1510 2488 3992 6235 3008 8480 129 1399 6919 2222 8510 7625 3347 3706 8860 2685 4967 558 5934 2959 8871 3058 2598 671 9027 4743 1416 5187 8257 8509 4600 4902 9834 6251 3939 805 7772 8653 5754 7940 4094 3491 3844 5930 543 7740 8358 1584 3300 6192 6845 1196 1542 2495 396 8679 4562 114 6911 9836 7612 8623 4115 4088 6083 2203 3007 62 3720 1117 7571 5157 80 9766 9842 4669 6387 4896 9165 3503 8633 2701 2888 552 3372 6860 5081 8707 2675 6460 5124 9122 6585 8945 8508 1352 7125 3516 9288 1446 8736 9169 4716 7512 8800 6817 9467 9677 2362 9413 3933 5261 2172 4312 8635 7856 8339 5198 6829 879 2778 4358 8526 5080 1485 4783 5794 9254 9689 4264 295 2059 4478 1805 5119 1677 9249 9104 4735 5122 6290 7288 6038 5288 7568 196 7964 2267 3072 3535 2764 28 6126 3419 5813 5953 2505 4386 9591 2728 7975 2660 9089 9310 2927 8593 4008 5803 5063 86 9642 5937 2000 5881 3848 4948 7201 3601 970 1722 7342 7810 8299 4034 956 9306 1815 1272 939 8102 660 4902 3105 9460 6712 9222 7971 3162 1497 2100 7155 2660 1767 1450 6045 2217 8665 2489 6094 4988 6001 9290 5974 9802 6063 5018 3463 4408 7721 5139 9549 1314 7779 9206 3281 1997 6611 7769 5824 6876 6694 7018 2928 1204 6305 9141 11 1266 7841 7455 4744 7479 619 9222 8577 3819 5175 3378 3207 4310 5519 7824 2267 250 244 694 4685 4719 1367 8723 3222 853 4078 5044 3583 7382 4726 6749 2059 13 2779 5223 8235 7708 7337 7057 3999 5661 2274 4722 8502 4564 5614 432 9062 9934 7050 9507 3137 6438 8682 6283 4032 1167 1501 5771 6148 6223 100 2103 8469 1504 8323 2446 499 7924 5237 914 3145 996 9065 813 4516 3513 6000 2644 9827 6583 4394 169 4812 6385 4426 4152 8898 947 5738 3842 859 1386 2448 1072 5333 1756 5483 2831 1536 5755 5958 3538 9924 7057 6108 5414 9995 6495 1402 6897 2061 6158 9941 4904 5424 8160 9062 1253 6986 9081 2255 9122 1304 8629 3365 2189 9971 6372 6039 3266 5798 5556 3388 7073 911 707 2141 4559 6591 7960 7839 8235 6126 4169 8612 9661 6304 4938 3395 7144 3943 9956 9797 6937 1795 177 6063 1576 1412 9950 7500 1135 290 4695 9762 4088 9841 2097 7184 4930 7605 2227 1203 2685 6192 3324 7660 154 4526 9316 7309 6153 2421 3732 8197 168 4879 4989 4066 9131 3218 9234 5886 1550 3755 556 2320 8636 5695 5332 1632 6922 5766 4762 9075 4568 4277 6088 7516 4565 5225 9398 9220 7968 2688 9598 7848 5822 1215 1690 2980 7851 7043 5401 195 2630 1724 1827 9165 4742 1270 2658 1800 6217 2009 6483 6704 4686 3017 90 339 1631 2872 3891 653 7939 9169 7978 2183 1169 6497 9062 1433 118 2350 4995 676 7084 4734 4921 8942 3479 9175 7746 7829 4497 1632 6122 6467 482 6828 4755 9137 7364 2642 77 8603 9984 8021 9171 7075 2652 5492 3071 9667 1408 5683 9755 2554 6038 952 12 206 6566 3251 9169 5595 3034 964 9939 4789 6116 6069 1621 4714 1909 7132 8804 3711 9705 1892 2602 6451 9189 748 983 3854 4033 8354 1517 2600 463 3132 4637 4215 3099 3465 9384 1791 5516 7516 7877 6876 4524 9987 501 7203 8721 8734 5478 9505 1310 308 7400 9514 6149 1291 8798 4186 2450 6773 583 4200 3892 3986 496 3249 1088 6592 2361 1302 9120 891 4172 7937 7385 7324 3674 2840 2191 3150 2657 979 8565 7127 292 6114 7407 9517 4774 3084 5010 1088 8051 8495 6427 6837 3847 4959 9917 5025 1331 2516 7522 6327 9615 7545 9169 1153 7180 6273 1674 6062 535 7821 1830 6267 5596 8325 1754 1800 665 2511 1852 6108 6619 4492 4941 3915 2238 8491 2984 3801 6773 6757 8624 5069 5914 8893 1858 7075 2070 130 5444 7008 2119 1518 9630 9430 6527 7222 6223 9541 5916 242 2135 141 600 313 8785 9419 2050 2734 7809 8426 9349 7171 3311 4919 3315 894 8532 3175 554 9349 3096 966 789 9715 3580 3342 1018 449 4180 9078 7986 4459 2739 7387 3027 6533 2053 900 5708 5657 4812 8649 7340 3218 4590 7796 227 1221 8637 3087 1179 8739 5134 328 3692 3837 520 9452 5593 3125 1034 3685 9541 6159 8778 204 7758 2947 8869 2035 7375 9219 7409 1991 1147 8970 4227 8024 5418 2399 8623 8441 9194 2133 5032 885 4787 4258 2132 1445 8186 9516 5341 3479 9278 6504 8854 2933 6587 2448 2168 2607 98 2399 488 2922 3070 7903 2123 3789 834 4360 8482 612 8440 1982 8214 4329 1314 2189 5713 9766 5921 7811 966 6425 8174 2657 1069 4462 249 4423 6721 5645 8960 8011 7604 719 1323 6662 7730 209 2827 3464 3283 8637 140 7687 4101 4544 5861 7366 1063 9681 5194 9469 7875 3042 8099 355 251 6459 9841 6858 502 613 2858 2264 4759 3526 532 8702 1791 7187 3862 2448 69 7027 7623 3809 5022 8969 4733 240 8759 2969 6510 7949 3386 7897 1077 9393 4703 2169 4955 1697 8890 7750 5246 9937 1803 2767 9517 3193 3811 596 4584 5555 3778 6246 7958 6424 8861 3905 1226 5107 5677 4084 9692 1409 6211 9529 7755 9638 4407 9385 5585 4633 7117 7370 9560 4633 11 9152 2466 4115 1814 6831 4471 7091 1696 5570 1999 5972 7192 1198 6874 1388 7304 1366 5628 3098 4486 3527 508 4547 1974 1951 795 4832 2504 1937 3400 1226 4428 9343 3027 1235 3619 1429 7471 1494 194 2282 5197 6965 7860 8335 2716 861 3820 9731 8411 107 7105 8312 6533 6410 1499 6211 2756 3022 9565 5431 9645 2228 2061 5948 5944 8705 9243 4262 5132 3592 9253 2579 4099 7402 2953 8801 8488 4715 2934 7777 4889 2977 3245 9430 7567 7569 1823 9036 6185 7498 7369 556 2789 1709 8070 9572 4163 5859 430 3811 9746 1427 3487 1915 5058 2118 7940 6452 3496 5707 1429 524 2440 7972 1117 1763 1023 2713 8954 1278 3462 8672 9907 5965 21 82 8935 2103 3801 7918 3857 6742 4151 6423 6759 5018 7458 7200 4531 3182 6193 8075 9474 1581 2357 4574 3611 6535 3345 8011 5313 5166 2200 2539 5077 3504 6195 7097 7025 3269 6070 1779 2905 6569 7823 6939 6349 2719 3078 476 502 7325 5581 1289 395 5186 8109 5635 9487 8078 9472 2080 2147 3087 849 8913 9335 8552 3173 8407 3643 84 5475 1963 9779 7697 1882 2058 2252 744 6640 1801 9589 1564 1034 7229 9302 2445 9589 1743 8661 4754 8923 2789 4363 9333 7371 8363 6469 8752 3581 681 9710 498 1875 7983 5314 4139 4812 4636 6641 3967 2717 7798 4833 8264 3870 6589 3033 9992 1441 7107 4026 8317 9195 8206 2815 3158 214 372 5025 4040 4880 5792 3181 6152 6625 2459 1578 2271 7921 3191 9426 7655 8487 2360 5888 437 368 3514 3595 9398 8522 7266 1742 4762 3859 9481 663 363 3766 7354 4394 2679 9062 8199 5964 5362 1939 7856 9274 6456 1923 2503 7176 9138 5197 8793 4676 1933 8663 5370 6894 7674 9494 2278 5977 5434 8824 5132 5417 2307 3465 8006 445 8056 156 9280 953 5069 811 2138 4338 2413 8659 8573 5905 5365 6590 9555 8837 1292 609 580 6507 3754 460 3067 9691 2218 5739 3412 9102 5036 \n2807\n6820 7844 9746 5615 9652 5618 2072 7515 4397 8079 1048 4350 2800 4155 5617 499 4859 3012 1414 126 2720 8730 7067 3275 8858 8475 1535 5275 4979 8118 140 8413 4767 5768 7758 4912 4959 3474 5761 5315 7544 4363 1536 8503 7015 9949 8227 2501 324 9799 861 5736 4101 5494 7828 3980 8124 4044 7456 9613 4623 6184 1773 700 4313 2163 6100 4220 4849 30 402 8504 7609 5858 6696 4726 5148 8025 9040 4668 6939 3254 6280 6936 1615 8097 2365 6933 1002 1683 2074 575 3514 2886 9124 924 5455 9501 8790 5128 1284 82 6260 6506 9708 2445 1829 6177 5070 6127 4333 7216 1318 717 6573 8184 5083 1861 6068 8233 671 1847 8647 6055 6231 7837 4728 3992 3004 5069 7274 3165 8757 8848 5800 4759 6797 1554 5937 3516 1495 9601 3883 9792 2916 858 7296 9233 379 5490 8413 5610 9538 3370 282 5940 1994 2228 3406 4021 2423 4769 6445 4630 3974 1120 174 3337 756 3105 7629 3509 3129 8275 5058 8501 5806 948 9069 5155 8551 2715 2814 1595 3130 4790 347 1569 9918 211 3914 5064 5275 1815 4533 6488 9612 9613 4300 8249 9298 184 47 1313 801 3165 4388 9869 2765 1128 5069 6374 9425 3125 8539 5970 5068 4475 4878 6363 6545 9823 9602 1802 3245 7735 9503 6350 6883 1364 8828 5058 1489 7610 3343 9166 2878 3431 8193 8138 5716 1104 3469 6697 791 7817 7702 2926 2700 148 7476 8603 2632 5557 31 4653 5433 2695 5630 1982 9696 551 9353 8794 1014 1399 9156 8947 5384 5136 8866 9641 7501 1591 2907 9562 6329 9147 2696 6366 4961 7667 7754 3755 7044 6428 2831 1755 4911 5688 3379 935 4622 9449 4978 1477 5915 3702 5038 4594 4349 9092 3816 6264 1528 7020 9633 8836 7315 3004 6783 7018 7519 4966 8424 4248 7141 9804 8316 7085 1319 6941 4076 1483 7122 8862 3535 859 808 2157 7849 3555 3010 5063 1495 4760 5111 78 6938 473 5846 3344 8036 6898 8869 9318 2647 6211 4120 4031 5967 7923 3526 5730 164 6458 1966 2376 1518 6200 224 2206 3374 9823 9550 130 6150 6532 8847 7973 7488 9049 6570 5309 4224 5324 2510 7105 8624 8211 709 5463 3521 732 2744 2918 2334 3197 8897 9148 9151 3358 9569 9853 3165 6026 9279 5185 423 3159 8360 7312 5579 2875 9735 5477 951 958 3302 9839 4716 9754 9255 8385 9315 2042 4982 1191 9997 2502 4113 234 1825 5339 7504 6915 4173 4481 712 5609 6698 8503 4750 3821 5233 5654 1037 7781 6442 6878 7997 989 6190 6575 9053 8184 7620 6133 7674 8144 7711 281 3861 594 1679 7871 3138 4717 1060 1481 1651 4502 1091 7755 4680 6258 5367 4057 1028 4762 214 9401 3098 4788 3865 5532 7307 4164 4428 4685 3455 4997 8311 8494 2181 1266 1620 7829 1850 6821 2789 6783 7620 8283 4659 9528 4479 7809 1452 5942 4718 3794 136 8362 8310 702 6063 7975 9254 5163 6741 180 649 8898 797 5025 8532 591 6308 1246 1580 1885 5297 1549 975 239 4202 6191 7847 4737 9431 7840 2100 6424 1537 836 926 9429 4396 8954 6158 5691 6778 6932 4898 6485 5918 4927 1281 9466 987 8033 9925 5658 8726 4394 8321 6609 7354 3525 5551 8750 3827 1358 5229 5339 450 8499 5084 8035 3932 4208 1778 4564 7359 6469 8421 8507 84 168 6883 7771 7787 1732 2141 2994 2132 2094 2436 547 6792 1260 818 6652 1914 5793 7511 5025 8323 2333 4028 7571 367 7336 5896 9418 2647 1929 5844 842 761 3769 2639 6483 5931 7296 1752 4450 2128 9205 4932 8936 7219 6747 8896 1194 1168 4234 622 8121 6349 2803 6810 6467 1950 1453 1871 2776 4621 501 4778 4467 100 9084 1728 2097 2987 1734 3222 1465 9389 7052 7730 976 6448 182 3085 1631 8840 8793 7005 7059 8106 505 4663 2147 4835 6114 3933 7053 9513 1071 9327 3381 9696 5989 1813 1359 1054 2462 848 4820 3536 884 4496 2157 5666 2894 4217 5862 3133 733 5349 4992 6366 4088 5156 7964 6764 510 2150 1077 6627 3719 8027 9674 3619 2668 1308 1699 8834 2044 4532 2317 9753 5435 4823 6400 5091 6227 8270 6582 9105 3959 8711 7354 3028 6516 4300 8740 241 184 4792 2286 3495 1998 5261 6960 839 6648 159 2175 7365 329 9404 8309 6365 6986 3626 8307 3206 4269 3148 8204 8791 6396 3928 2192 20 1360 9985 6547 5216 9786 7502 3417 2450 3787 719 8562 686 4159 9559 1416 531 4992 6686 4683 4428 3570 3850 2580 6320 4774 5569 3897 6135 3398 7711 4580 5717 4753 4414 5135 8040 3304 776 8980 425 6680 5387 7142 4483 8265 2149 3761 2510 4477 7781 3305 3522 6434 5064 2938 4231 909 1159 190 9930 4167 5719 2662 3603 6532 606 547 2759 8857 9848 9218 9739 445 7393 4785 3371 9376 7565 4672 5706 8462 4818 4312 9401 2763 1769 1026 1309 1958 2042 2600 6750 2851 356 9868 8431 8007 5189 3711 5016 2556 3351 9717 1931 4997 6806 8942 2724 99 5805 6690 2887 2185 2276 8997 3775 7041 7591 6533 2509 7816 9873 4919 2935 9380 6075 504 5143 4471 6714 1463 7381 4219 9278 9278 2507 7048 2356 5074 9533 255 4634 8067 3026 6084 1029 4670 5227 7875 4401 6685 9782 9296 7342 950 2049 7394 7357 3632 9741 4023 7591 9939 8882 535 4525 2993 340 3585 2327 3568 6061 5219 2726 3292 5828 9846 9221 1015 9352 7000 7634 1351 5549 5264 3260 5414 7347 4640 9551 1577 1425 2126 1310 3285 6797 8013 206 7149 2953 9967 6179 398 3858 4243 3495 7720 1649 6388 8365 6575 5559 2692 9656 2448 2513 2220 3676 9300 1970 1088 2892 7272 7830 5493 5102 5872 2187 5653 2433 7146 6252 2400 7803 4153 7284 3621 2941 5907 7062 6887 3894 5090 3290 958 1972 9842 9988 8511 4578 9166 7798 8079 4394 2063 9491 860 3104 7326 8074 1737 6170 1088 1683 9492 4958 7106 1098 1941 1382 510 5879 9289 3699 9572 1640 8714 3907 6181 2516 9141 3318 3013 9655 4227 5358 8428 8755 4994 9981 3586 9475 1061 6615 7521 3803 7830 8138 1112 896 9668 9542 5805 9078 3948 267 5949 1164 1317 6669 4824 6455 8784 2760 2535 8722 6106 1404 5532 9790 2550 2956 4958 1450 535 9358 886 789 3895 3832 919 1035 6054 6338 8040 7491 8895 8629 305 5696 6894 6587 1641 4085 5126 7082 7258 6117 5868 341 5867 6847 569 2445 8196 2080 7154 2038 6537 5050 1424 5526 1265 837 8011 4207 7816 699 9064 5430 4370 6659 48 5309 8029 2048 5321 1717 5648 9060 8006 6457 7144 2496 3148 9583 6485 4163 6880 1730 7655 8244 9622 5352 4830 8892 2700 9099 905 2734 3175 708 7938 3234 495 6132 8258 6908 8129 7225 1609 5228 19 8513 3490 8617 1663 1050 7040 2253 5064 2725 8773 4999 5856 5529 1528 489 9718 6430 1063 2851 3171 7031 6977 7061 3409 4671 9435 8157 6137 1149 2922 9004 2724 2153 4710 248 8475 737 2230 2970 1378 2106 1746 9112 2975 5401 830 8004 2872 9884 8332 818 2121 3098 4183 436 8776 1933 7606 5787 5301 1992 6759 2898 5836 1990 1849 164 7501 8383 570 4823 2408 7122 6999 7666 6024 2565 7604 5985 5958 1515 790 4680 9906 9056 2489 5641 8725 6267 9352 2071 5565 4546 7974 9211 4024 9329 46 6469 1287 714 3721 945 6169 2916 9187 955 1752 6483 9320 5625 9852 2089 3057 111 7814 9798 3854 2895 1300 1424 8923 6197 1278 6577 6550 6307 7931 9993 9767 7649 2590 9536 2284 5955 9315 3898 2437 8771 6099 9726 1324 7414 1227 4693 5165 1439 8852 3842 5079 4757 6776 4365 3585 9065 8613 5478 6215 6647 5628 584 765 1572 9952 4672 9420 2562 5805 2137 8692 4882 7009 9101 209 3300 1531 1974 5941 1197 9097 1334 6841 2509 156 6420 4562 2658 98 8113 2959 489 3584 2131 5543 849 7173 643 7446 1263 6637 5623 8185 9503 8106 1173 7674 3711 7450 3074 4972 5837 2125 3403 3522 3998 4806 5966 6022 7328 5823 7057 2617 7421 457 6132 1634 5512 2387 8552 2487 2805 9991 6564 6893 4643 4317 3860 3652 5041 8698 7716 2332 1869 4425 9731 9331 8476 7655 8928 2607 314 2979 9718 5862 1069 704 6510 5426 6360 8483 6969 7708 3182 1962 9769 4485 4136 1980 4507 5559 7991 6116 4348 7764 4180 3377 8633 6825 2124 7125 59 8850 9864 817 6089 2432 1925 422 8520 4367 1001 8237 4854 8117 9871 615 7116 2356 361 3886 5685 3077 2584 5980 2030 1471 1469 1271 3765 9026 1675 847 8660 4017 6135 8423 7894 2092 4800 2510 3092 4458 1526 6910 8383 6621 7541 222 9737 4638 4280 4006 6200 5166 2354 7710 237 5138 6338 8466 4108 6890 636 9889 8640 9631 1537 9899 4702 8096 6847 7504 586 3803 844 8643 3667 336 8031 4031 2814 8404 1483 7228 1588 5673 9593 9371 7088 6491 1010 1619 271 3157 9171 3166 9034 1444 8725 1114 5028 297 8003 5462 3770 6603 4596 1569 132 2807 2 1862 9372 3548 1012 523 2956 6304 5579 7534 3816 7431 1879 1824 8879 8031 2216 2939 877 4293 6093 249 560 73 5543 7842 8218 357 456 2732 1276 5897 4304 5394 796 1795 802 7411 7773 7263 564 2828 4680 1015 3720 5605 2612 5688 9276 4248 3321 8855 3142 105 5699 1633 5230 1698 6666 7315 2654 7129 1019 2974 8206 6630 360 3861 9934 59 3015 8199 8529 703 4502 6629 8177 8908 8847 6891 263 9059 4741 8596 294 135 9165 5418 1878 1156 4325 3982 3600 8966 3701 3877 4302 3905 5707 1697 3951 2769 1266 6231 1768 508 111 2801 8714 7785 9312 8660 8935 1426 6970 5381 4125 2261 6249 729 2991 5117 9552 1424 7279 3185 6367 5158 9966 266 7334 1858 3784 6239 2811 9532 1583 1847 5477 115 3200 2214 8135 1210 7988 9242 1566 7145 3852 3072 1392 6627 8305 1377 1364 9 1069 8668 6396 699 6880 7314 106 3116 5730 6703 1680 9580 6630 8889 1473 8390 4515 3493 9994 4843 4913 1108 9437 8985 94 687 4074 4536 2824 7070 9233 9526 497 52 2746 1994 2921 6107 4819 2601 1084 4238 9817 173 3780 8855 1753 3583 3454 5775 4865 6789 4591 3232 6602 2887 8915 7526 6892 379 4158 6907 1236 17 8609 1630 8445 6277 2883 8732 582 7376 9860 9829 2809 5364 5273 499 29 9151 8815 5511 5407 1900 2859 4789 2699 6179 584 344 2973 2847 6335 9924 8742 116 6525 4703 5628 2230 6869 7646 3702 7782 9004 2970 1530 1070 7456 5454 1545 8227 1661 8913 2467 9993 1824 5778 8752 8484 9320 9780 1466 7251 9470 6160 515 1887 9226 5382 7784 8239 1079 9512 3975 3224 399 7796 9852 843 36 4096 3929 631 5489 5170 6037 2969 7853 2673 1629 8833 8110 2920 4069 2251 7719 7311 2452 6226 4250 3216 4566 2820 133 2505 9291 2135 3207 2156 8833 6504 6624 4235 5693 1123 6790 9918 141 7117 3701 6822 6587 1533 1926 141 7898 4509 9382 431 5847 9933 1213 9244 2599 5690 582 8578 4851 4892 1192 3774 8957 6492 3395 3052 3774 1479 4676 9889 2328 4156 6773 50 4453 3872 877 3049 1800 5833 7629 3578 6750 4034 2915 6134 5418 8300 1621 5221 7673 6738 7475 6111 1676 9084 9454 1394 1352 1047 8138 5905 3444 6953 4047 5577 8962 8126 8760 3506 4670 5454 4759 7736 3118 2606 9881 53 3357 5841 8690 4151 5145 5278 8219 3234 5721 1944 4077 503 7987 4728 2481 4562 6213 2372 3756 6818 5156 136 2733 3855 6031 6298 2980 9602 3958 751 2094 1646 1602 8803 6804 4088 7847 9509 200 4508 2796 4154 5124 3893 6757 2429 7358 4384 1645 9960 5417 6839 7056 7959 9957 3820 2173 9116 544 507 8389 9290 9542 8568 8646 4291 7748 5729 9868 1998 1608 9432 6342 305 726 8397 4158 1125 6859 4304 8394 9687 8650 483 933 808 4057 5284 3267 4586 1329 4098 8225 5564 9609 1997 6416 7816 483 9680 7608 2064 8122 8425 9088 4177 378 1580 8530 2696 8430 2007 6064 2024 4018 8400 3954 460 2050 4472 2409 79 8172 3336 7559 5109 1506 2461 653 1684 7113 9958 5453 941 8018 6045 8516 3700 7598 5486 7614 6515 1521 175 6282 5174 3862 5624 1430 9231 4116 9907 5176 3547 3266 9585 8394 8407 7492 4380 201 3238 1900 5433 9093 5710 7715 8125 5066 4046 6802 1606 1042 6001 8628 7734 5416 8252 2097 4789 3887 3653 7807 8253 2797 7845 6601 6778 456 3863 6734 8682 74 5199 3550 6683 5885 487 8806 6521 7427 2469 7100 6412 7160 136 195 5116 4738 9767 6803 3120 6332 7686 1193 6699 746 9949 6320 2757 635 6730 7322 9125 2767 6662 2114 7581 8093 3666 2306 8006 2410 3539 3466 6976 7919 3327 5241 8009 4840 3648 1495 7359 7384 6581 8996 339 6970 4549 2259 149 912 3803 4302 4674 7979 1694 3913 1388 4475 7578 7104 9426 4998 9123 6701 2175 8812 3032 8552 5788 291 1659 2556 7494 5101 3749 9459 6595 5850 4313 3090 7662 2617 3724 8280 885 1988 296 6785 1347 6610 9962 5784 6878 6245 7289 4673 4396 8378 9299 5745 9270 5006 5238 9839 343 3603 6054 8603 7048 7327 1550 1726 6522 1606 6887 9437 7341 820 3452 5821 5304 9891 277 8866 7182 103 9069 4208 9960 7987 4848 2542 5235 7613 8389 1223 185 4551 493 8021 1052 8934 2836 5021 5043 2353 3671 8575 8649 710 3841 2660 5999 4343 2507 5829 1593 274 530 1022 6472 895 2313 6789 2223 9627 2258 6423 3198 4658 3527 2543 7225 2230 4403 5224 3137 1212 7266 9798 2066 1220 7938 9032 5203 6734 433 4910 4185 3431 7384 6198 4919 4417 6701 9553 5008 8503 7856 9752 2637 4443 7141 3020 6917 2927 4557 3508 5113 1754 9203 9272 1335 3272 5109 2994 2737 3764 206 5400 7287 5304 5363 7466 3504 8642 72 4757 6216 2425 3616 2941 457 5191 3671 8271 3320 6126 9244 7048 4870 4737 2229 6662 7921 7342 2326 2423 3809 4777 2060 4669 146 3690 1782 8544 297 2604 5063 6111 7751 8172 9398 4885 533 627 1289 5426 3032 6806 4578 5291 9792 9937 7991 708 3150 9110 1672 6512 2211 71 4953 5058 4837 4355 4750 4223 2148 7540 9435 4243 6778 8047 8140 9317 6214 3235 5177 1147 5925 5843 6763 1704 8732 6739 5472 7507 8423 4938 2893 7329 6307 587 1494 6644 5554 8521 103 5498 5283 822 177 332 1689 1868 6753 4007 8093 3385 3185 4461 4447 2099 7432 8542 9597 7817 9445 7344 4193 2893 6346 1639 5685 7452 2622 3519 3273 6272 9949 5529 3712 8835 6529 3153 1201 8951 7799 7703 607 1944 3399 3230 2780 7114 3287 4825 3846 1760 6918 7741 9953 4003 2445 6047 6401 417 494 724 2619 8685 4028 9293 5245 1995 9747 6950 4756 1195 6560 4357 7201 8690 1322 874 860 9597 8428 1327 6416 7395 8358 8042 765 3793 6722 6042 8742 616 9125 6985 1573 9351 244 5240 6021 4245 9533 6135 204 6973 4494 1368 2646 2215 2774 9455 4909 4333 5627 4589 1527 7844 196 6862 3343 5965 6532 702 4613 9246 5809 2087 2945 9487 942 2972 7080 9157 5066 6342 8910 2377 414 5437 8496 580 3257 4465 652 888 7410 310 6413 3598 9913 2101 8479 7417 5639 8051 9275 3202 7381 6363 9495 3671 1044 7911 4814 2157 5883 4065 7546 3752 4100 5971 9842 8815 7484 9999 5737 6992 3625 2131 6696 1687 1729 2474 7233 4715 367 6581 4696 4492 7172 9086 7125 3470 9533 700 2014 2237 3841 2073 3557 7545 2546 715 4789 3312 7238 7324 3748 8038 5449 7462 5896 139 6587 6152 3068 195 6464 3668 3776 7262 2453 5137 9035 8689 8358 8163 5374 2500 7744 6505 5459 2811 7504 633 9967 3147 4629 8536 9054 4770 2377 8182 8794 9175 1502 4336 6328 930 7243 449 4654 419 8916 1484 6542 6702 8070 1455 6722 438 8762 3621 7264 8627 7899 8652 5549 8677 5525 2912 1404 8394 2554 5887 3460 114 8832 7085 4953 7631 5210 4961 3830 1393 2453 9004 582 6173 1031 8746 9518 3195 3316 3996 7837 3392 5414 476 8166 5551 1544 6580 6302 6800 6495 2713 315 6141 7864 5706 \n7575\n7265 5776 6150 4988 6423 4734 5071 5730 1866 4771 9362 366 4596 155 6394 3009 3837 9306 584 4200 2211 5618 9723 3320 1198 9999 2652 7578 1806 441 2492 9615 9775 7983 5230 6206 7654 5600 426 3723 5374 5912 8536 9698 6367 5674 2122 6356 1954 9920 4513 6348 847 2987 4084 6987 7275 9293 2218 7963 823 5114 4567 1860 3553 6388 6379 2397 5926 1204 9184 7759 3054 6541 4320 4199 2304 2182 17 7470 5262 6626 1952 5673 6548 768 1991 2876 6904 8769 6456 5850 700 7939 8425 3599 6152 1785 1436 9592 2258 9592 6910 9217 5656 3377 4260 9719 1618 8708 2000 2449 8726 7416 7247 6681 6546 8722 6884 236 8729 5617 7141 5643 834 7828 7736 5986 8226 410 20 6069 8256 8301 1210 5409 7742 5605 3322 5507 4942 5780 4765 8612 8395 8050 8572 971 4874 4555 4631 4340 8974 171 4969 8529 3738 1605 7207 2582 1761 1231 5034 3788 49 5632 1889 5053 6121 6804 6775 1179 58 6705 2852 1878 8705 4923 6709 8286 3214 3526 4257 9823 5497 7497 7842 9048 7121 4000 1405 6883 4442 7639 8837 1093 7151 232 7952 5099 5532 4657 7176 2682 1043 3289 8068 9670 2266 4440 2600 1185 7658 649 2577 3977 6771 2445 6681 84 3569 4402 9333 4939 5088 1263 4489 4669 2012 3266 2726 947 752 2218 7848 5281 9175 4833 6905 4806 8962 1072 147 6329 229 1616 751 5986 196 6997 4659 3321 9396 2555 8867 1060 7579 3520 2900 4307 1494 8299 7479 1101 7509 6154 5619 6890 7660 7045 462 9867 4572 1139 1501 3168 9510 8205 9406 579 4477 8376 5434 6850 8981 5291 7660 7950 6092 3979 8883 951 4702 6577 1340 4854 360 411 3436 9824 9291 1832 764 7543 6784 2951 9977 2163 1823 6185 4240 5306 1917 156 4360 8978 3600 9421 6756 8663 8694 5038 4211 8476 6614 5827 8906 2105 6924 3703 4963 5957 1645 7480 5012 8358 9107 4420 8273 2043 7125 2247 1366 4329 511 7665 545 859 4434 8283 7947 9775 9467 8012 6069 4334 3767 1755 8137 4410 9555 2044 4314 4100 587 3060 8222 3700 9100 783 8223 4346 3411 8946 2585 6671 2387 2029 6462 30 4606 2469 4658 4551 2686 9613 7575 8413 6592 6904 688 1836 6427 547 3481 2276 1313 5579 7167 9679 253 6307 9671 4392 2551 5353 217 5931 1322 8384 1187 1838 6245 5096 1023 9270 4762 7017 289 6167 1261 3026 9648 8345 6216 9769 5918 1747 5072 5064 9842 3150 1666 8445 4065 8159 1649 2534 3864 5185 9438 6932 3760 9138 9789 681 6553 1130 341 8595 311 344 4908 3518 4684 4633 316 8638 7666 9509 3776 5891 946 604 1025 2576 2323 3445 3361 3885 5667 7022 1349 7569 7310 9048 4667 5875 8619 4593 4744 3624 2848 9487 1937 233 6994 8824 7191 5983 9262 4847 6520 3028 3056 5685 1153 2841 2263 3610 9800 9673 4984 5053 1750 9297 4759 6481 2844 772 705 6285 9702 4772 9706 2383 6979 4807 3772 4217 5060 6557 5649 709 7165 2824 5843 6805 7477 3185 2671 6180 642 9032 5822 8698 9192 9948 1981 9195 7156 9463 5184 4842 4034 69 1340 2463 1505 2243 4352 5492 5501 7234 8562 7860 7412 7634 1406 4583 4363 6209 2933 6524 1745 3122 603 4762 6879 4754 3045 4194 5079 8391 8360 2668 4844 1588 547 9427 1650 2260 2692 1 688 3341 5866 6402 7930 4001 2342 9610 384 4392 7758 3118 607 6389 5449 545 7024 1767 9086 9010 121 8325 3052 4242 8052 3979 3449 229 9179 411 2786 9667 3878 4463 7235 8692 8037 8927 9288 7589 5466 5117 7549 5074 4375 2993 8161 3990 1467 3886 1274 4415 3947 2124 6031 339 3230 437 2800 9224 3962 6682 3210 3548 2976 5800 8069 7305 4111 5675 5476 3090 124 3189 430 1604 8558 9987 1022 4030 1861 8007 3180 6550 4303 454 361 6827 2040 9974 1717 1590 147 2180 8894 7591 714 7497 6070 1723 3598 8667 1938 1854 6484 8828 4953 3875 8899 4471 4382 1276 1266 2667 8772 8648 9100 5732 9679 4551 6243 7049 2504 5627 9870 2845 6184 174 4189 1696 3608 8638 8111 4706 9054 6738 7295 2849 5603 1492 5455 9165 237 7202 7932 6583 8874 8996 2373 3509 4910 1725 1249 1430 3267 8044 623 3010 7202 4730 9033 5727 9882 9386 8266 2965 4440 8748 4549 7712 1136 2079 3131 8686 3254 4478 9580 1340 6948 8325 9827 3230 7331 5302 1785 6440 1676 9462 7971 4694 6806 3440 5835 1891 8662 3570 2410 6920 6326 863 802 1278 1828 2039 7997 8129 6990 8091 3332 1887 1066 3679 3362 5794 9959 3123 2723 6259 2842 281 6569 8133 2278 326 2523 1441 815 1432 4628 8277 3209 5101 5299 6433 8847 7296 8453 2307 529 3856 4610 8723 1792 8825 4150 1504 6028 3272 2623 7200 5788 9975 6465 6968 9620 648 7681 3178 1126 3262 4736 1149 816 9665 6588 2836 2533 2471 7015 2699 1747 7165 2428 3637 4593 6809 3308 4091 8436 8682 9245 6450 3047 9612 7325 5021 419 8873 1040 6628 1897 676 7109 5550 9689 8607 5589 1341 2481 5155 3328 8784 7359 7883 1739 1440 3542 1023 8828 8981 9132 2029 7353 5490 481 3307 4829 2835 8835 6606 661 300 1976 6812 9337 6628 169 6515 6842 8007 841 4156 6663 2727 3808 3127 4104 2034 1145 349 2757 3042 131 9378 640 2320 2697 482 3095 6315 4765 7784 4058 3481 958 8923 2827 6269 7440 7297 8127 917 9986 1561 6229 4720 5103 7865 9060 3493 5305 1020 1605 2265 9349 5923 1791 2310 5929 4787 2480 3776 6187 4742 2181 7353 2998 7116 8402 6397 315 5477 7789 5870 1773 1030 7573 8706 5647 766 2896 5059 3009 1574 3530 6548 5998 8753 6639 2161 3849 8182 7947 5830 2081 526 711 1071 3223 6983 2970 7723 4527 7227 213 7569 174 1773 7164 8139 4242 9224 1197 857 1699 8348 5860 8293 6049 1405 1351 4696 9657 7897 8969 1683 1511 7545 8194 3254 5617 9132 482 297 9207 8830 3032 3288 4580 7877 6897 5656 4564 3347 631 7650 3633 993 4079 4958 5482 510 2935 3766 7668 8213 5086 5151 365 7170 6956 7310 759 5315 4561 9931 7678 7716 9414 2838 9475 3137 152 5971 277 7423 6957 6911 8393 6060 5744 333 3828 8366 1158 4814 8906 3856 9513 4411 4817 4312 5110 8606 2812 8057 1046 7465 8747 9935 2334 6397 9113 4792 4812 4800 2125 2621 6410 1295 8496 1299 4753 6381 1217 8954 3568 2513 2673 6789 1641 9843 9400 62 1946 7457 2926 789 7973 6337 8104 9626 3898 5071 1126 3598 893 9762 752 752 4628 1829 2585 925 1659 8203 6325 3584 8033 4972 6759 9724 1246 9936 2540 1017 5530 6155 7287 7408 2219 4997 5426 7773 7547 9447 7305 1942 999 1323 4027 4473 6066 4983 6830 4564 2030 8478 506 1961 7576 3757 9935 7739 3548 6910 1456 1923 4344 492 4451 3182 4493 7894 8303 5404 6977 1888 4802 9927 8404 1391 7240 8852 831 857 6466 2103 1805 6678 4651 5193 4354 7030 5576 5464 240 818 5470 8659 567 30 291 6413 9584 7854 7208 5446 9842 5251 4207 5477 9650 1533 5889 2515 8844 8360 820 3094 9496 7069 5737 25 310 4316 4285 2790 4935 5471 9842 5962 9564 6362 9704 6979 1116 1817 6111 355 2203 588 7764 5147 7482 9264 6168 4292 4818 8824 2936 2602 3504 8859 5554 2979 6218 1369 3878 9135 7011 7048 5399 4949 638 369 4531 667 3162 8614 5201 4573 8039 7444 3291 4142 2805 362 4684 5374 77 9841 6911 2572 1620 9790 4698 6734 1660 5332 8255 3605 6197 6811 7401 535 2077 3221 8532 8788 8184 620 2029 2232 7444 7129 8855 7662 8596 6602 1532 7914 3542 9441 9466 4449 8044 698 1392 6107 1827 9404 8284 3017 9689 4401 2073 6249 9958 4028 3075 7129 1264 4335 5491 5406 9621 8389 7480 4680 4793 341 7198 1185 6740 9140 645 1395 3162 1768 8470 848 6356 3494 2897 7716 8935 2434 3928 612 3697 8571 8658 3151 1338 4153 4002 8249 286 4021 4005 4373 6758 4249 2554 4513 4315 9246 4642 2692 4500 452 2772 5563 8466 5709 4588 2436 7904 8305 8157 7631 5387 4676 6967 2749 6211 6885 2873 8883 9580 5007 8691 7604 9796 1447 8943 3580 2274 2711 642 2041 8647 1058 7564 9660 9619 4048 2520 506 21 4350 6809 6529 9930 4150 1554 4663 7444 9856 4101 5963 8665 8315 9969 1179 6981 9230 8264 645 2917 3414 4549 3857 9329 7337 4837 8637 3393 6745 4477 7190 9387 3028 5987 9047 7273 359 2782 6785 3234 731 7352 9434 9532 3155 6583 1694 6110 8886 9534 8468 6693 8850 7485 1366 2428 8386 3580 315 3970 5232 1401 8504 2398 7172 5876 9931 3213 5828 2787 3544 8040 6432 5250 3931 2363 6354 7855 6883 8532 1461 1732 9326 1646 3635 5107 9266 458 3052 2470 9690 2740 2163 8938 6608 828 6742 9361 6379 5358 762 1116 9711 2658 9923 6757 8123 8955 3973 4447 5692 6664 4747 2946 6896 2917 2922 6434 4483 2510 1286 4539 10 7994 8401 3174 9029 3791 5394 4034 2309 2845 5395 32 9775 3394 2583 9776 1050 8866 6986 6794 9612 3091 7480 3658 5148 5998 6207 4861 3537 5160 999 3319 3319 9075 9713 8906 3965 4106 9038 3011 4384 2424 6806 3496 2452 7201 6809 2015 2052 6657 5241 6539 6994 8907 1721 8755 4931 5806 5603 7922 6876 8557 656 5582 769 2965 6097 987 1953 1758 5117 6449 3110 9682 5536 1169 3526 2789 9337 1649 1608 5734 822 5458 2427 8266 530 10000 3107 6285 8441 5890 8269 6777 5422 2647 9602 4232 54 807 9213 9152 9800 7605 8031 9893 4004 839 6934 6562 7140 9899 7856 3371 540 6366 9814 1362 4959 1555 4301 7338 1544 1099 5037 3503 7264 5130 6378 5181 8542 2387 4708 4428 7089 4622 8053 8769 2085 324 1144 6662 2039 6690 8386 4527 9403 3094 9137 6669 9805 4171 112 1061 4350 8784 5202 6890 2516 7683 6403 9603 5523 8966 5502 1414 1693 7420 6778 6481 2393 5009 6515 2759 2051 4662 3226 3220 981 2902 9500 4800 5319 5290 2171 5992 7009 3888 6867 8455 142 9544 3379 1345 8036 5147 8938 8490 6601 5229 2286 5220 5717 9354 8022 7654 2988 232 2760 9287 2542 2692 8266 8684 2156 9171 501 7698 4067 6848 7486 1375 1392 248 9037 6594 2583 6722 9260 584 4251 4273 9965 1313 213 7612 53 7933 7455 9526 6192 4725 9779 4680 2050 4415 2855 75 8525 6729 9310 9002 6330 7995 6885 1551 8238 4513 7717 2870 4856 6859 7652 754 9707 9158 1131 9902 6856 8365 8643 9278 5618 3221 2967 1592 7276 1452 8023 7063 8132 2829 2744 8139 1851 7148 3660 5671 1771 6780 933 8352 6629 4980 7078 9728 7336 8768 2787 9325 9218 1894 1919 3207 9483 3079 1827 6682 4089 9542 2380 9356 9307 300 4273 1353 3544 402 3100 3811 3445 7554 4735 3563 1400 1445 2013 8492 631 1759 7755 8013 8491 3343 5049 9943 3291 712 8744 1268 6343 141 6543 9957 4172 7034 9212 2053 290 3691 9814 8397 4890 8375 897 2292 9200 6912 5692 4007 8403 4954 3309 283 8244 2107 8386 3937 502 1738 766 7255 6250 546 4325 6632 3758 3051 3746 3008 4285 4861 251 5795 1839 3753 7578 8535 3443 2119 1839 1074 150 8635 7662 2356 3976 8982 871 3892 5696 980 669 7984 9094 3572 6045 6657 1886 9824 8284 2529 1746 2922 9656 6961 2922 5869 8933 198 3411 7112 1107 5614 53 2646 2011 4630 6624 1994 2619 487 7657 4292 6251 4316 6706 1478 6557 5287 6414 6929 2138 4969 8460 6759 9354 385 8850 7062 5947 7087 7692 3467 9317 9838 802 8129 2244 2886 9291 6415 5664 4554 8206 4067 395 3508 7511 4528 1611 8906 497 8797 4541 8604 3435 9875 517 7984 3318 5501 7334 9312 3809 6144 9171 2040 1863 2217 6611 9088 9653 343 9532 3237 1663 2137 1697 7134 5985 1811 1494 8854 6923 6827 5301 4939 9154 6419 8485 5346 3983 6964 4414 9532 9810 8469 9849 8172 9597 5695 5079 3445 4101 2869 7578 872 6692 1311 5429 272 723 4446 1986 9120 8030 6414 6655 1149 3160 1031 835 8853 2831 7599 1686 2662 8892 9085 4052 8508 9082 4305 7476 5692 9444 8568 8056 1739 470 4008 6063 3280 2479 6735 9967 4375 1002 3097 4250 1913 5419 1194 5396 3063 1504 8173 1362 6123 4345 7422 5950 7146 3472 1627 839 2644 9664 1135 6102 24 7676 3296 8847 8194 3045 9243 8428 3788 1645 9125 4629 2866 8011 1709 1547 2863 8935 5314 7938 9975 4272 5346 5458 5551 7842 3271 6629 8840 6284 1057 7393 4169 7871 4542 610 1790 7819 1609 1044 9498 6808 3766 159 7139 9354 5595 4330 3578 2337 5406 9949 1989 1342 2719 5696 9476 2426 4548 422 751 564 2166 51 4409 1293 1503 4349 7333 7524 3601 3081 8578 4307 8115 6207 9387 6426 8553 653 4347 3544 1515 5790 4973 6551 4928 7819 7839 3321 9053 8451 9424 5432 8154 3957 9190 62 1658 3804 9368 8246 1245 7586 2847 9019 4334 3619 4302 1116 1553 635 849 5912 7963 6484 5654 8306 8970 6095 6436 7254 4224 9791 8169 2234 473 8388 9720 2197 8206 825 8832 5354 390 112 9651 7825 4566 7280 9770 7715 9173 3201 2856 6621 1113 4014 8757 6666 4725 1982 9558 8834 2393 5914 498 4494 9738 6576 9063 4286 5669 8011 4780 2864 7258 7284 3088 7771 3612 8337 5259 9189 7820 2140 7018 1605 6370 1808 2359 6048 6378 4356 9249 9574 537 6141 8749 6708 9950 2390 601 939 4592 6861 9419 2613 3399 3293 3857 2776 6397 9505 5914 6071 9159 7 8893 7717 1319 6420 9854 1747 4043 3927 4181 6559 3315 2248 8630 8473 2788 3768 9537 4561 3543 5943 6629 8053 9661 2533 833 5454 9443 7314 7521 9881 7981 4722 2076 756 4299 5873 1212 2128 9633 382 1107 8767 1734 5490 585 9755 2540 2200 3691 2232 128 3522 3746 7290 7989 8249 4961 4790 6167 7609 6018 7600 4421 1065 952 4313 5282 9014 2232 4716 6304 1000 6246 4557 3202 1195 2773 8748 3616 2420 5122 6388 6234 2829 3150 1995 4987 2968 2997 6718 8244 9879 4030 8404 5358 9395 5535 1694 4107 4016 6518 1972 9835 5590 2370 8004 7684 6842 4027 9061 838 9762 159 3471 9150 5846 2230 2841 6916 585 7151 3403 6998 8188 6136 8439 1176 6713 3036 4873 1331 7585 4834 682 327 8007 1292 4841 4864 1048 3690 673 7132 1126 5189 5089 4364 1147 8133 9895 5395 5354 4541 858 6636 4606 8827 7943 7831 4275 1855 7412 5379 9541 2647 7957 2910 785 3105 2268 7550 8567 4518 9778 2200 9141 5339 9747 8740 7499 702 5266 6140 4123 3585 794 7465 9797 1448 3774 7706 9416 9659 6014 2303 9299 6064 9635 4101 6572 7520 2870 4343 9394 2386 9254 3696 681 3153 5638 5736 5387 1033 8999 9721 1942 8293 936 2073 4479 8836 9476 9229 4588 2385 9076 4011 7371 9466 276 9496 421 1139 6738 8321 7538 2995 9132 8012 5891 6293 3492 2061 2684 9025 2733 6533 8897 1542 2605 7338 4602 6643 3264 7116 3578 3878 9471 8107 2647 632 8970 6931 8360 6128 6305 4019 4075 9150 5842 2784 1079 7104 4540 270 3814 3007 861 5129 1531 6344 5785 3149 3457 3629 6736 8825 9771 7644 2147 6995 1171 3920 1737 6311 8666 2367 1174 6853 650 7609 7300 9563 4657 3720 8415 5992 8859 2886 6398 577 611 907 5792 8640 18 5751 3389 1251 6156 1429 458 9214 9614 5356 8201 5528 1243 7658 5242 7134 332 8471 5183 7454 3218 5706 9052 9120 635 9715 8868 4633 9833 1279 6221 5366 3642 9518 54 6116 2953 2097 1405 129 5330 9645 8575 6065 1918 5662 3521 7696 1946 1488 6063 2451 5108 1163 5711 4584 8708 9520 1672 7341 6609 1767 1770 9296 2562 1049 8306 3076 1118 9627 9796 98 5576 8653 4424 3770 749 2576 9635 9993 4104 3949 711 800 1931 3273 8129 574 9235 3767 2306 9740 2337 5885 7876 8319 249 9604 9756 6129 4331 9603 3414 8848 4355 1453 1317 843 8635 2098 6454 8377 2347 836 797 6348 7899 4921 5566 2387 6850 4156 2923 2267 8590 5340 8200 4082 8045 4960 5570 9812 5924 9836 1323 4327 7353 7531 7942 8545 1348 6673 7909 9835 4916 9786 6940 3853 5959 7231 5711 4141 2886 7412 6985 541 4156 5094 3327 8547 4988 7212 569 9049 502 8639 4728 8808 510 1864 8753 4574 783 6804 511 2945 3709 3542 1133 8984 1899 1586 8340 6005 5976 2822 9910 3358 734 8781 1682 2446 8416 9866 1922 5142 9926 2252 5234 3153 6734 8566 2481 7551 6537 9821 1857 2693 6227 5921 9345 5312 4131 8452 9465 7097 6419 5138 7240 3425 5681 2234 3555 6965 707 1246 2153 5396 8670 9399 7634 4582 7058 7197 1190 1517 7209 5395 2890 9294 213 2677 1144 8041 1291 6848 2991 503 1032 9960 983 3584 4910 1242 9697 8726 5074 1091 1165 9559 71 8964 2243 7711 2477 2867 8778 8206 6907 4143 7195 2182 9152 4907 7534 8048 7633 5544 5668 5797 1806 2239 6373 5021 5570 7034 4028 8502 8360 5196 6415 3913 1316 9713 2457 218 8605 1265 7366 5870 5015 2873 6018 5287 5365 246 4372 8778 4421 1771 3386 2330 6236 7043 9766 7378 6798 4891 2860 6696 4784 6659 3886 7445 9489 6338 6789 3041 9189 2750 7551 3729 8337 776 8233 4788 8004 1123 393 9841 8665 9863 8955 8157 1877 127 1976 7255 9320 5990 2988 7843 5073 4161 2780 3529 1969 8319 5418 3616 9284 6605 6145 8598 4033 875 1777 3568 7908 5521 4039 4263 7143 5225 2078 3545 469 466 8399 4243 152 9923 3695 8348 6355 3452 6682 9775 6142 134 1796 1800 9367 4868 7111 9047 8646 3957 9191 465 7164 7279 5224 7270 6430 4215 7318 2855 9215 3051 2444 2037 1338 8182 5931 7543 7538 7816 1355 9350 6474 9617 2053 6487 3446 1533 3873 7749 5962 8730 5819 6828 328 1721 8554 1540 307 9689 4387 1990 3769 3776 8225 8205 864 4778 6400 5220 9260 3852 6517 1052 9628 7006 9583 748 4334 9677 8323 4146 7838 2304 4475 8549 7918 6408 7753 5404 4559 279 7318 3713 8678 2142 8807 4947 9504 9016 5769 7396 2461 243 5422 8001 6961 1344 3296 9247 4938 397 4775 5967 2689 2297 5310 2248 2663 3267 5247 911 3590 7543 3313 959 7568 7184 8402 8727 9394 5647 6173 7257 804 1127 5849 6713 976 8999 1074 9961 5057 1447 9654 8003 3149 7848 3502 703 4951 3318 9838 3836 3713 1747 5454 1579 2903 8796 632 4348 4026 1066 3927 887 2657 5762 3261 2067 1426 3954 2980 9101 8587 8754 573 1037 3087 3734 7549 8678 5423 2019 6411 9486 2119 8762 4408 9687 7502 7178 1944 9396 5563 1501 9835 2778 8649 4697 470 697 1270 963 4912 4638 5567 7640 429 9406 839 8718 4692 7748 3642 127 4565 4586 9159 3773 9521 5508 4135 3445 7950 6336 1648 9538 5068 8145 8764 8169 7536 6849 4494 2065 7569 3973 3539 5329 4756 7768 4532 5279 1784 439 9542 15 1466 9450 2932 2045 9678 9356 2714 5212 4612 9348 247 3645 6589 3973 4734 5573 1412 5538 9818 4270 3842 4337 3976 1633 6203 7103 144 1418 9574 2338 3910 4033 3173 7892 8947 2483 355 3387 6321 8446 6820 8786 1206 1925 6024 4883 9377 2743 7171 6622 4434 4158 9135 4422 4315 8079 3345 1054 1182 383 6420 9358 4563 2023 2303 7366 7844 2698 193 668 202 1755 661 912 4737 6687 7866 8174 4742 1535 5797 8296 6221 3831 5821 1147 1109 8835 3851 7483 7247 3543 6252 125 1993 461 2519 648 5621 7637 6661 6851 414 8755 1246 997 5938 2116 3198 6495 3500 1037 4974 5559 4108 974 6075 1382 997 208 3153 7908 6974 9199 2187 5543 5271 3029 6640 1024 7596 4127 3701 7303 5626 866 2198 1229 4278 5385 9606 9024 1277 1268 2479 8067 2595 9715 8678 6726 1864 2362 2512 6003 2312 1154 8866 4377 6026 968 8343 8167 7130 5763 6065 3732 9700 7145 2151 6876 3492 712 5813 4526 652 746 4756 4330 5418 7365 7554 1373 5883 2398 407 8397 4324 6878 5117 8217 1029 7748 7128 864 8875 2375 8623 863 4127 3567 8527 6759 2166 4406 5760 6276 4233 8923 9359 6306 5155 805 729 9414 1822 4860 8812 906 6502 6251 7154 5566 4775 9705 6900 4001 9145 2565 2105 6161 7339 5936 4308 3249 216 1195 6414 7826 5004 7015 2823 7431 5594 9852 8050 754 8332 8847 4913 640 9918 7775 1218 6854 5172 2714 5868 9963 676 9717 5433 3843 683 3106 1653 4943 219 8359 262 1037 3536 734 9853 9567 635 7074 6322 3948 906 5334 7844 3898 9025 1190 1419 6389 392 8057 584 3116 873 1337 7582 154 8384 137 1095 7216 2428 1049 1553 5312 6490 6415 5580 8021 4633 2555 70 9605 3050 9501 238 5651 1212 4531 7120 4154 9815 8920 4563 6494 7692 2408 9521 6519 4598 5406 3977 2609 8325 96 346 9747 857 7690 3290 5982 2688 3083 8034 7900 5107 4140 8283 1258 6587 1265 9157 4198 5397 843 3905 461 5107 2789 896 7459 862 8855 3435 2783 9031 4582 5055 3397 9034 9046 5916 2244 7674 1469 532 1374 3645 3069 8016 7973 88 9878 5848 6280 9662 6272 4413 4846 9724 8748 5272 863 8595 3382 1519 9064 1089 4142 3170 681 5561 7827 9706 5928 9935 1411 7614 2349 4761 2969 1429 4625 2854 2940 1318 9577 4481 4832 7280 2342 4818 9195 1000 7667 7357 3831 8881 5548 3131 8989 9994 7077 8309 2558 993 3298 5298 7782 6578 8692 1511 8843 7534 6883 3089 1856 6196 907 9022 7173 4513 1758 5529 8050 4720 8537 6885 6604 7720 7135 7589 7827 4184 1545 7297 3085 9001 6751 6504 5600 4760 3966 3426 9233 9807 568 376 927 5788 9532 5714 3619 2752 968 2890 7762 8254 3030 7515 8510 1363 4536 797 4700 2479 7587 3817 1085 3000 156 6355 3650 1773 7085 2644 8585 5172 7477 6636 306 1041 7879 6868 6191 5423 4791 9018 7703 1209 7365 4085 4631 9962 732 7393 3236 5734 8766 8230 3705 4169 1889 4420 1417 8775 2759 5796 9775 1192 8595 3876 6950 6654 281 6680 9028 982 1408 260 2615 2426 9101 728 307 1368 3953 732 3113 9145 5928 4130 2223 5444 2597 1714 7363 8783 555 4349 6558 1617 8050 4880 926 3592 6865 5586 9556 3023 6929 1429 2201 6753 2652 4935 9441 3955 627 9232 4255 6676 8757 309 8112 6384 3827 4886 5278 9817 1171 5525 9030 9678 3710 7096 8618 4346 3578 6334 9171 3518 3715 2297 7143 5581 3853 263 7096 4536 2141 4492 3861 3004 6446 1856 3374 3130 3006 4866 3694 2541 9989 6721 446 1140 897 841 4706 4825 2816 697 8248 4163 6020 2233 7415 8456 7847 8636 3057 122 2269 5055 2125 5250 1898 6275 2914 5807 3691 3690 44 759 9292 8044 6360 4579 6171 8130 3592 1422 6051 1038 4241 5589 6029 1935 8683 1572 6925 634 4665 6690 7709 6705 6787 4490 7724 8345 8338 9099 2867 7096 2827 5211 6661 8324 9025 2552 9454 1651 259 2384 9545 8170 1781 3570 5881 7993 8269 9797 8038 8361 7631 3544 9500 9581 5066 9274 1066 8909 9331 1529 2656 2007 3404 1956 3443 5999 1292 2587 3928 787 609 8637 5364 4938 5977 4592 9477 3878 6612 5826 1949 7110 9291 9694 8940 5819 951 5514 3856 3164 7868 7625 2333 2646 1530 3146 8333 6906 744 2467 6108 8410 455 8201 8052 6148 7807 5191 3330 3782 3504 8940 7195 7168 7765 2236 7764 8062 9148 61 3226 7895 3309 5825 160 3265 6773 2383 2854 5844 3682 1547 4721 4854 4860 5641 2172 97 2884 6770 6191 4246 9902 940 9409 8354 1276 2781 8712 7917 2005 8845 3869 4422 4305 2318 908 9334 5730 8885 1971 7223 7467 1741 6506 185 7350 5838 9846 3852 5333 3645 7397 5311 4222 4959 8967 2245 2974 146 1132 3779 7096 3312 8924 5719 1019 2956 1277 2307 2136 2503 4552 1795 6129 347 7205 6013 4630 6537 7716 9241 4903 7510 6730 1464 1639 3399 1642 9716 5277 9712 1368 3046 8669 826 4258 5046 1829 6344 6316 811 5347 7690 3385 8877 7927 6498 166 2697 7872 9015 3562 2119 4481 877 1349 9646 6343 6318 7790 4652 8081 3487 5331 3875 6152 2580 2942 1465 8533 3423 5086 1591 4890 7214 9974 2451 7202 3990 8947 9430 2404 5305 4426 5837 7788 4167 421 7451 6631 3438 270 525 3216 5567 7852 5523 913 547 8818 9786 4315 7876 5014 8417 3460 8516 8662 5051 6396 6515 9403 3966 4177 8188 852 1427 5090 6420 8236 8371 7197 2999 3 916 5604 7033 8679 8847 3230 9898 965 1859 2291 4545 9211 1047 985 307 1574 9699 9464 1896 7754 3018 4881 1034 3222 3307 8333 3978 3101 2692 6416 2027 1501 4231 3152 5757 5194 9363 9370 8769 3425 115 8301 6886 2573 7300 93 5232 8892 1817 42 9040 6273 4235 707 7460 1402 8348 9704 726 8294 9634 1745 1337 683 1831 236 7436 465 9921 8830 3752 6311 5512 4722 1159 2202 8134 5444 1522 2187 5765 6595 3163 4123 3952 6034 8338 6419 5166 4372 7709 8934 9748 3587 8613 2674 2633 2044 8655 690 8565 2578 3840 4160 8479 1712 6148 9224 2107 2795 6190 6142 5949 1221 8193 9177 9448 9682 5473 5381 4159 9979 9633 3510 6736 5641 1072 1297 3411 8038 4462 5357 2208 7782 3542 9621 4634 9628 6482 7872 1010 4722 1031 6434 6404 2352 7209 2050 123 7672 4384 4919 6578 6290 8533 2653 4851 897 7438 7175 5712 6013 5288 8656 8603 9511 5149 1227 7193 162 3215 4957 8635 2065 8336 4817 7615 9954 5002 9329 4645 6418 8073 6768 2123 4181 7675 6434 9194 3410 6419 3264 4480 10 16 9045 3957 584 7530 4564 5759 7720 3715 1420 4751 2553 7437 9074 4644 9424 8232 5448 9259 5127 760 7297 3487 281 6310 1696 8439 8487 8755 8203 5391 1960 5060 8605 217 3110 7559 8218 8902 724 9765 9890 4023 1177 7940 5007 9310 1771 9541 4007 9363 5377 5381 9894 6929 6682 459 6089 438 1073 8785 6462 487 5166 8981 5178 1110 884 8516 6907 6208 3891 1167 1977 4897 9381 1033 8466 9503 3909 1038 8565 5311 6615 3007 7687 3487 797 6607 8405 9418 1434 3606 9358 7331 6599 8881 4685 9705 8503 8930 8323 2484 8516 3071 9903 3819 5785 4243 2562 690 2078 2212 3455 558 6285 8613 4332 6810 69 8368 4762 451 9768 6176 6583 711 3596 7692 2510 8775 1496 8385 9921 857 4071 4092 4000 9737 7171 669 1320 6387 9303 6951 6404 7054 1766 7083 5511 7801 4061 9383 1680 5754 7064 4167 2656 329 6875 5531 4168 4113 6545 4515 2593 6019 6469 9907 77 4997 9013 7353 5861 1998 3303 1261 5993 5276 7170 8460 8988 4200 1452 5292 5474 8845 1577 1266 9894 7605 8891 8222 8107 6666 3144 445 7376 7849 8958 4451 6676 5779 934 4906 7686 5614 6169 1118 2451 8701 8564 4848 3786 7756 703 8497 2336 1382 8547 6061 6009 6644 7876 1732 2607 4032 8008 3273 1926 2872 8855 1563 6637 5542 2573 3511 7163 4564 8280 7510 9917 2546 5377 1916 3518 1294 4909 5608 3745 4425 7985 7032 13 6277 4561 7707 316 1105 4411 4050 6025 1482 5657 4812 4158 8732 8380 7652 2085 6470 9389 1816 4062 5396 8382 8693 2450 2658 7705 1706 3735 4483 9275 8243 3184 5427 3385 4915 6606 7304 1131 829 5429 9882 8306 2607 1032 4591 4580 1456 8916 735 3729 85 4133 7296 1714 4126 6475 5621 615 3683 188 1150 6388 3398 3224 9890 2834 7332 7578 3520 6092 4204 6171 6005 3319 1017 2859 4680 3124 6739 3508 4273 6440 1059 1650 8562 7688 4539 4217 7634 3414 1180 9833 4546 4840 8404 930 1343 1431 6909 4860 7340 2783 842 531 1479 842 1370 7729 3325 3828 6486 6566 6896 3698 6708 8661 4798 9605 9446 6836 7822 4466 9539 9253 4901 6338 2530 3832 2580 4808 5041 827 9312 7377 6907 9210 3259 9449 4042 7807 4364 2928 6265 5746 8498 6500 9189 1040 9824 2476 9374 1053 8029 8404 2671 926 413 4419 1944 4450 1228 7578 8772 6154 4261 7758 8251 6776 3580 4613 220 2124 2097 7933 4821 4890 8377 7253 4331 7641 8527 8311 7465 6153 368 2428 1788 3240 3955 7849 5108 5422 5571 1743 6812 8056 5785 6506 5189 193 2978 7473 8564 4265 4949 7251 3786 3707 3846 6639 9895 394 1650 8191 3219 1840 3139 1283 8050 647 8241 2379 659 5427 4497 4105 9183 6697 9917 3078 3169 1851 5396 7527 5513 8148 8987 3622 6301 3589 5753 5945 6259 9456 5428 2458 9173 3819 4094 5068 9516 2445 9876 636 7035 2198 99 813 1107 9722 6989 4704 8660 7968 2873 2472 4865 3916 1597 2685 3208 5433 1118 7608 728 7324 4160 3723 2403 5848 2168 9766 1752 1056 6480 5196 8007 1247 1214 354 5150 5261 6762 287 8808 3438 451 7936 8110 1454 3741 1135 3426 6873 6912 6894 659 9341 6589 1876 1851 7845 1946 927 9830 80 7019 4170 860 3457 5961 1926 2286 1774 1602 1698 2639 124 4306 4426 8323 3051 9971 3889 1408 3601 2879 5047 6180 9227 9692 1402 4626 2566 4082 8878 4114 2007 8471 8998 4781 2633 4160 8854 4582 6051 4704 768 7597 1374 2956 678 9549 9681 3301 9804 8411 4235 6805 4486 3501 803 3559 2923 2912 7422 6050 6290 2254 4989 9579 3795 429 6057 1767 8346 4000 8119 5780 6640 7540 3908 4733 3730 62 6294 6725 4578 6062 656 7671 6661 5189 7206 4947 4272 6194 3115 1449 369 47 3626 6321 7806 3756 7682 9881 3759 4818 1212 3539 1100 9429 6141 9368 7355 9399 8141 8148 4047 9060 9221 5836 2946 5194 8605 9700 5859 9052 2023 9185 5999 8755 581 1690 8736 6147 5981 3898 601 1528 5489 8418 1490 1017 298 7163 8781 4688 8870 3010 2595 5870 6858 6701 5325 4197 7244 4032 6969 7818 8576 6903 2135 2087 2485 8649 5340 4387 3228 9473 3161 5765 9005 7715 1196 1436 3968 6326 5433 6038 7034 1791 6967 4760 6609 4793 6714 5627 164 1208 7873 7814 6797 255 1646 1078 3346 573 4071 9645 2079 5113 835 7808 6323 7396 4324 3913 4287 4770 7502 9766 948 1300 7534 6880 5538 3434 2994 9614 7686 6787 5512 2599 3989 88 2047 709 9135 6802 720 8277 8433 8249 3424 8956 3269 7157 3493 9494 9553 6847 2575 2107 6569 3187 1700 3945 3829 9589 2821 963 4956 1388 7919 7204 4100 4318 4637 2051 5977 2586 7416 6629 8167 5160 5757 4927 2305 419 9289 9818 6241 1141 9023 4178 6877 9385 124 2283 7099 2764 3521 303 1479 5653 6748 2661 5670 7995 9965 8910 497 454 1529 54 174 5657 9969 399 9871 3041 7074 642 1747 1058 1965 6190 1087 8017 1595 3286 842 8478 490 5642 8334 6350 1936 1616 2120 2881 6502 5393 9797 6448 6891 3567 453 4055 8464 3242 5207 4070 8136 1079 4717 121 7290 1936 4685 3942 7228 5797 359 1817 6199 8748 7842 4768 8630 5383 9466 7772 5731 690 123 5185 532 3817 7265 8759 4460 9879 9672 1965 546 9480 2931 9514 9749 6422 5451 5344 3723 7914 2947 636 3861 1227 1798 8068 1146 7839 1050 5777 614 5130 3461 6319 3713 8663 7720 9496 6282 5945 2298 5109 6722 4987 4162 9720 6824 7841 4912 123 1441 7083 8703 5003 954 7313 3766 8275 468 7647 1300 3684 2804 5071 4297 5833 1888 9555 3051 4159 4987 9947 8320 4524 413 8239 2918 5479 2085 4633 1173 2483 2058 8385 6341 396 5470 8773 1032 8073 6457 2953 3446 3407 8077 5106 4232 3990 5209 6097 7869 4038 6836 6233 1294 6780 3604 4715 1551 2437 6058 1757 5936 4549 9083 438 7681 6490 2662 4410 9627 8002 9207 8123 6531 1604 6095 6735 250 9574 7226 5893 2411 8979 9047 1467 6952 6036 9791 8529 2058 3682 6685 1184 2365 5141 9467 5624 6018 9157 4106 2886 8719 442 2684 3659 2975 1322 8295 8502 7422 8134 70 1113 3522 6347 6742 6610 4190 8632 8133 6852 9591 9077 1039 4410 9556 2423 942 2711 4564 6687 8814 352 1429 4830 2934 27 5152 3411 5601 6640 3098 9311 6504 9599 6856 5099 3711 4708 424 6201 265 9535 7586 2560 8226 3938 7179 5599 8149 6518 3336 7718 1930 4464 8914 8061 7032 5111 8222 7725 3830 2313 6234 5200 545 6309 9319 492 9758 5160 5986 774 3928 8407 9939 176 2104 8497 799 19 6335 2210 8808 2788 8951 5148 3350 9347 9430 6323 7637 3899 2199 5581 173 9936 8143 125 8629 2624 1877 8048 6782 3048 5598 1952 5574 1540 7683 694 1827 5526 946 5198 3346 9765 4319 847 8921 4732 5226 86 4370 81 8350 1506 3199 7689 1361 7343 142 9399 8901 6672 2492 3248 609 4969 72 1063 9002 5283 2478 2349 5197 5820 9715 6662 6681 236 9058 267 8518 294 1803 3777 1705 5933 716 5147 8885 4860 5397 728 5225 700 8113 4574 2798 7804 6488 1974 3985 9625 4011 9933 5882 2496 1025 8829 4131 7945 9574 2650 6989 2365 8454 5983 7669 7859 5498 1531 5903 2451 1633 6594 5529 8557 1782 266 6368 918 8533 8040 1447 5231 8949 2148 2215 3605 1748 5714 1021 3135 4754 3844 6152 2794 6481 3986 9222 7429 7792 1654 1791 2434 6946 271 8396 4884 8338 7431 8348 7726 2286 8457 4345 6821 3675 7842 6297 1396 8331 8607 7694 5117 7504 9372 7787 5661 3061 6889 92 1450 478 7979 2594 5060 4352 2245 8268 8738 2874 2447 2926 1950 185 6268 7693 9512 6133 1837 231 9335 3863 9623 9157 5352 23 930 180 1656 2036 9005 3198 7794 3713 6061 4023 135 4902 5373 1920 6060 6524 7272 1973 2012 9105 122 8768 8118 6827 9174 502 9731 3093 9592 8614 3008 1384 7491 254 5610 1089 8051 1403 9486 8702 7360 3251 7265 7206 703 8095 6675 1565 2019 4367 8063 9109 9635 8117 9867 8871 6191 8477 4608 6910 4096 7533 3326 3663 9932 9754 4039 3616 9731 6537 9942 1168 3873 4225 4098 8801 2064 9154 6407 4697 6259 9140 9351 9545 3397 6801 2657 1335 6020 6113 801 5133 6645 6325 5659 9835 1890 5829 6308 7587 6945 9977 9568 8073 4163 118 5286 4547 3514 1837 8617 7556 1608 8826 834 6343 5415 2854 2224 9277 7551 1472 2531 7719 1622 8260 3045 2847 7207 8479 1722 7036 8192 4107 5994 7258 4578 6041 1621 6262 5064 1620 5969 6845 21 1742 3974 7197 4782 994 9177 9197 9032 5095 3 9257 9805 3422 8961 9393 6754 5005 7087 3554 5291 5932 669 5238 8275 4295 6904 4604 2900 6008 8207 6352 4375 3179 3197 306 7454 9450 7534 2978 6201 687 7963 6203 8868 6192 1695 7496 8732 6176 5791 1265 5851 1346 5380 4845 3955 1933 4844 7397 1763 6369 5498 9146 8060 5158 3640 1036 7422 2024 2601 4445 8966 1795 4405 8661 6414 7618 1142 688 2338 866 3381 9530 3030 5137 9059 5517 527 6027 2773 9481 433 4725 4561 279 1398 2312 7017 8929 4131 8684 2985 3014 75 1984 4501 5938 8178 5613 5548 4634 3521 4650 1267 6908 1206 8784 4237 7449 8718 6085 4077 1070 9029 584 9173 7395 6565 7257 6667 4046 6836 9638 6452 6716 835 1875 5343 6321 430 4013 9517 5235 392 5692 2024 8033 3754 1954 2616 393 5350 195 6144 293 1227 4779 7738 6140 1514 8319 1528 3346 1185 7119 917 6461 7233 5738 5393 703 923 1360 6837 5506 8707 3886 4160 85 4999 7182 9659 9258 7905 6214 6573 123 5333 9067 7304 8005 669 857 7586 2015 8811 1574 6891 2579 1115 6412 1880 7699 8669 779 9955 2137 9456 6282 4684 6278 7040 3187 4466 8840 9289 5307 8885 6032 6094 1733 3783 8676 4793 7462 5113 5366 2086 2314 2746 7964 7998 7851 5867 835 5492 1271 1267 827 8742 1642 1105 4136 4595 8868 4012 4559 5352 2422 3469 8478 7954 6703 5901 6600 3003 249 7977 7115 9922 65 6873 4162 8132 5971 3111 9528 1641 1314 514 7132 7759 650 7933 800 3407 2434 4395 9040 8923 8192 542 6202 533 6729 7613 8874 6028 5289 4765 2059 5213 5589 6352 1510 1340 1508 9504 828 821 7141 2990 4062 1015 8251 2975 5253 9945 9640 1102 8496 96 9838 5181 4329 9410 1744 6345 8751 4141 2061 7781 5792 6798 5929 9753 3020 3131 4522 9678 8498 2413 4716 8795 3586 3754 9029 4442 440 5692 1917 3229 2675 62 5507 7506 2683 2910 4416 8666 4599 4982 3026 3796 6495 2160 4997 6534 4535 5002 5067 4678 9182 7367 3252 7468 2642 5243 1429 3565 8219 5226 5445 9382 4060 9608 9577 6527 9698 5081 4681 2464 9753 1421 2034 7520 5131 8108 4894 2717 4699 9419 129 770 2716 208 578 8429 8479 8609 5047 5316 4792 6387 4223 6764 3062 9547 6975 8807 9524 4129 2679 5349 8200 9573 5891 6591 7556 4336 8117 8951 9973 1300 2252 9603 4380 9438 6832 9658 3070 7410 8194 2435 2858 6130 7088 5499 9148 6329 3063 4306 3906 1106 6160 4564 6751 1753 328 7786 8812 8821 1246 5331 2964 6287 7116 3838 3793 8156 4621 1002 6293 5880 8856 4607 8663 2652 5745 5945 346 6778 8913 3274 7289 8895 8148 7376 7760 1854 3944 2395 9225 1136 5583 6063 6290 7209 8697 7081 7499 5019 2562 7171 8890 6588 8617 9095 1081 8520 9282 3210 2454 5093 8916 5861 8731 8270 5501 1375 630 5691 5173 6840 8900 1917 9080 8741 3352 8611 9311 4269 8658 9653 6548 648 7109 2676 2519 9429 5491 2576 4407 4106 7387 4009 584 2942 5920 8987 347 3487 2076 3617 6154 8811 1415 9750 4668 1984 9636 1852 3401 604 4280 1822 1670 9341 337 5462 596 105 6386 3468 8930 4366 3827 5202 9789 3653 1571 5302 5772 7345 9666 1956 378 708 4355 7194 5776 2406 1841 8167 6674 4537 251 4907 8764 4869 2888 4031 4599 1482 2109 6982 1424 2729 7869 7642 9592 5925 6442 9515 6051 3030 1012 8741 8620 3656 863 7022 8660 2141 5546 7190 1622 443 8635 9333 5091 1526 959 1876 7432 4818 1840 9008 4400 9327 8207 9247 387 2667 3310 3848 9680 5703 3068 2232 3577 826 1966 1199 1220 1122 2645 5881 9976 7817 4188 2244 617 5779 2876 2189 3020 3065 3466 9918 6238 6289 3793 1589 997 2349 7100 96 5155 812 1858 75 633 641 812 4798 9862 5929 5545 1984 6705 5693 4682 3722 6638 1931 2890 9060 1834 3630 7258 2702 3785 5125 5129 6080 3919 5360 4445 522 9882 2101 9340 8963 3673 3973 7855 7297 5821 7946 5262 8406 6118 6690 2617 1179 1381 8026 9750 1451 1925 5036 905 5670 4581 7403 9381 6824 9729 7382 2439 1504 743 9974 1556 319 587 3061 2958 8891 6783 5483 3061 5038 1864 1079 5167 7766 1240 1627 690 1403 5714 3672 5449 9945 6002 887 7301 7684 2057 8664 444 3051 6511 7023 7470 2426 7264 3935 8333 2480 7678 2069 8089 2243 3824 5006 112 3088 3647 8910 1103 807 7763 4488 2137 3120 5876 7521 8977 1899 3166 2718 4785 1404 1300 7373 7364 1197 9083 9098 6663 774 8636 6706 2144 4018 4362 5553 6778 4255 3038 9029 9949 1387 3911 462 3728 828 8754 2685 6677 3312 7775 8141 9297 2294 3092 2749 1047 7068 9509 8568 5904 3343 5887 103 705 3174 416 1195 6981 9553 8463 8398 3643 8539 8188 5078 1958 2032 8076 7915 6537 2410 1330 4368 9446 2575 5630 5229 3888 427 1992 5197 9248 790 741 2020 1030 2021 9528 199 4696 9980 270 8144 9038 2843 5046 8753 4377 7188 7272 3759 8140 7217 6003 8831 891 7974 3093 788 7371 4094 9034 9314 4911 7197 786 4944 7972 2954 2506 6370 6487 798 6144 784 318 8271 8498 8585 9576 8198 7831 2116 2418 7144 1718 6683 9254 1212 6480 6435 980 6831 9784 6844 7131 8750 7720 3100 9585 9932 8030 3582 9568 86 3771 1939 5508 3367 3569 5231 4151 9665 8886 2561 1949 6803 7832 9488 327 8471 3378 5834 6196 6011 699 5180 9095 7579 6039 2721 6101 1701 5124 3790 3122 8713 8821 6120 596 8538 1185 9771 1880 1904 3330 1202 9751 6109 6585 4858 3879 1428 2541 8602 628 1264 9488 4544 3800 9417 3511 1364 1120 3418 1886 814 9648 6643 3167 6079 7876 8256 7616 8647 7964 1414 4320 9697 9385 4351 2290 8888 9283 5995 7586 8012 8831 7159 6329 7869 1040 6543 5586 7801 9280 1609 4090 7290 6446 4718 8842 258 8923 2491 1837 8095 1812 3368 917 3051 2488 1591 1432 1466 6715 1702 9283 3441 2099 1766 6709 3722 7910 2113 6262 5693 9335 8891 7050 9969 7267 1302 5329 1514 1977 6390 4773 2331 2381 2664 6546 1268 4705 4043 1609 9340 7128 2219 8203 5435 2305 9543 4341 7446 189 5324 1335 289 8490 1187 8479 19 2978 9661 924 9996 3083 1318 6019 7466 8528 9407 6716 761 4759 6459 3780 4261 9204 320 6527 9022 8640 8921 6445 7617 1570 6284 9977 2316 9857 9035 5811 2307 7842 7732 6453 4204 6698 8236 19 2979 2954 2515 4201 7266 2603 1541 1381 8978 9911 9762 9271 4612 8901 8991 6496 337 9755 6672 9211 3009 6178 6158 4354 2862 8370 4452 857 6208 6908 482 8658 8030 1081 1104 8068 8898 5373 635 4300 839 6620 8118 4057 5591 5551 4672 6883 57 9408 4852 9194 89 309 6973 3504 3224 4299 6916 6957 2086 2643 2486 2163 6980 83 3899 8370 2570 4003 100 7320 8264 7076 3070 4117 8725 3005 2508 403 3541 9804 1382 4766 9485 2565 8016 8550 7102 5143 3352 3965 4899 5053 1988 7707 2643 4712 4368 6022 8903 2098 1740 2038 2384 5829 3962 406 4084 9182 9012 9653 5074 3566 240 8281 3565 3055 7561 3276 6764 6194 7942 9097 7174 2885 9323 6894 3919 8247 5992 1490 8800 7010 7746 1939 3884 7679 3128 9237 1899 4007 301 5472 8478 942 3396 1422 7670 381 250 1286 7733 782 7773 4270 4779 6848 9342 6581 3881 5207 817 1904 2178 3781 9981 9052 7180 7651 4660 7773 8792 4435 6661 2144 2650 7105 3688 8776 544 9114 8819 5420 2342 4720 2431 5914 4759 5243 8055 7075 5538 105 6896 3898 8440 1999 408 7920 9740 9752 3655 4552 7232 4124 2290 7908 6090 3619 2585 4869 3785 2963 7707 2752 6928 3427 165 3234 3073 9209 5127 5399 5765 7997 7392 9509 5636 4634 3472 7775 3082 2839 1912 5636 1171 4504 5101 990 2478 2695 6590 7570 1187 777 5369 379 417 8368 7980 9946 7374 5788 9806 1501 9900 1072 9614 3152 6087 56 3137 4376 8281 1052 675 7406 7987 2209 8902 8531 8240 9973 1144 2341 6630 481 5904 2363 3664 1127 8867 5634 5030 5627 7122 8694 2559 9543 4973 1793 661 4864 1274 8765 2484 6396 4045 9571 5742 3793 541 691 8728 3523 1945 7419 5548 959 7945 4679 6751 6555 3597 4617 1466 7651 6607 4905 4913 2798 7308 1010 7241 1097 3665 1506 71 7176 8298 325 7843 1576 1298 6856 2779 1351 5649 4427 4986 4716 655 4467 6729 5749 8020 520 1663 5722 8213 2775 8064 8692 4117 168 427 2889 243 6103 7801 4840 4455 6153 3258 7948 7986 5750 447 4751 5775 3540 3075 5166 6597 4396 8065 6570 6148 7671 808 9606 3133 5205 5783 3701 7799 9146 3156 5424 2415 8362 9022 8584 7582 4834 3256 9031 2720 6872 9993 589 6232 3101 5557 4527 5598 8200 1035 2549 7415 4281 260 166 9661 4770 9838 3239 328 127 3547 3679 7780 4062 6788 3769 4944 4748 6179 7325 2338 398 4511 2911 5413 3252 537 6957 885 9776 9386 6123 7102 938 6115 7099 9209 1298 283 6657 9872 4547 590 9278 2643 3826 8157 6796 6548 3285 8911 2898 3210 9773 \n2704\n5043 6704 3368 2869 9459 213 8040 700 4219 4260 6314 175 8966 5388 7165 3192 3826 8997 7474 9379 6800 6918 7552 4113 8407 5976 6905 5244 4696 6601 5246 9939 2571 1245 3411 9061 3686 9935 5963 9607 1461 1021 6265 7458 9946 6581 3771 75 2613 5854 2593 367 6353 6806 7539 9832 4679 9827 196 6620 1987 7461 8178 2299 8047 5462 8512 3536 8096 8628 3569 1629 4515 4649 8473 1182 103 3784 3980 9699 9473 8554 5427 7953 2635 8135 4437 3223 8729 270 4274 1685 4064 7003 1497 6260 7408 2274 1391 8672 1635 5698 8527 8416 5432 1342 1169 2772 9814 9315 2465 162 3743 2877 2601 8478 9632 3987 6120 7821 1375 5125 6158 6193 460 2511 9205 6167 8459 4860 2263 9759 5147 476 2292 4872 9016 7208 1048 8878 3634 5792 9233 3939 7190 3292 3404 9168 3914 5062 6278 8371 9065 4481 443 4555 6784 2796 4585 2067 9491 2594 1912 4504 8446 4859 9517 2438 8750 39 2918 1995 4066 8305 6015 7197 2299 2562 3850 6940 9782 6423 5955 9201 5596 6672 4758 3555 1017 5064 8507 6619 5331 712 6151 8306 118 9031 6946 6925 2928 4960 8425 4285 8030 8160 2232 8928 1164 303 393 5339 5428 6636 4644 8194 379 8540 1924 9932 2412 8534 1393 5897 3098 4688 6813 8415 1209 2155 3946 5474 8252 4574 5546 1987 2099 9520 9008 2842 5281 7061 8465 8239 9799 9853 415 8668 4002 6122 6806 4131 6254 978 4362 6623 1110 1999 8351 5259 3189 9570 5574 5135 4505 7582 2713 8469 3203 7284 4816 9109 7969 3482 7614 5959 8020 7002 3125 1170 241 1043 1008 3942 7992 291 7917 3144 9199 6034 2400 2976 6849 9267 8522 63 7940 5654 353 3451 984 6337 4117 8668 6676 2703 4934 3004 9858 753 7564 7514 8954 2475 628 249 3271 1572 7115 3212 9015 9017 2151 2475 9047 2756 2510 7043 8598 1396 5098 8485 9233 4858 6696 225 7054 6678 7928 4248 237 3732 4100 9106 5629 674 8747 516 7757 1026 6981 5534 5170 9926 8655 4030 5567 5082 1586 1163 6308 3772 6160 2278 4316 5480 7934 7459 1815 874 198 1179 5322 7612 5317 1254 5880 8689 9750 8033 4095 8499 1357 5927 5868 6660 6113 9160 6744 9571 355 3442 7826 7511 9700 1557 3871 9894 3097 6891 8887 340 2475 9642 4693 8376 1181 8911 748 2323 630 4278 626 5753 5592 6347 5332 3173 5829 1266 407 6861 1154 601 4331 4240 9262 1789 205 5526 3313 2222 1064 8559 8207 5140 5966 5942 7199 8527 5028 9818 7421 9598 3853 5588 3215 6543 2379 2380 9034 1436 8435 6756 548 8062 634 2906 278 9872 8334 9054 357 8533 280 8534 8360 5369 9496 4541 927 1778 9670 8144 5695 8703 6528 9332 5400 5683 5536 3335 6559 8228 5537 1425 8823 51 8704 1809 391 322 5206 2088 9220 132 4671 7638 1145 7703 5596 9216 1482 8019 4624 8312 997 1975 5050 9069 2706 1670 3341 8487 8841 2530 8399 229 6027 5208 5660 621 2878 4335 6114 5639 9538 1531 6710 2452 8348 8314 5159 6423 9861 7843 1456 7353 93 1097 8061 9535 8892 6963 4082 8160 3742 1368 1902 3829 8265 9982 3081 632 6930 2787 7557 4157 9977 4359 1118 5873 2159 8271 7680 8693 672 861 7934 76 8181 1361 6591 4532 7210 3146 7136 1327 3018 4767 1024 8813 2311 8389 4441 3174 4417 2092 7941 2492 3715 4209 9752 9985 8551 4861 916 6392 6306 207 5784 4969 8428 2228 8152 6037 7212 8099 653 808 1904 3603 3099 6943 1869 2124 6105 4563 6480 5104 7495 9489 1119 6312 5570 3984 9886 5072 2160 957 6092 336 5015 7199 684 760 1015 9637 5922 1957 6289 546 9867 2132 54 2109 8473 6633 4452 4543 1783 2143 6092 1383 8771 3353 6286 5560 2927 7933 4919 5989 7333 9594 361 3810 4710 5508 815 1426 258 2248 2071 7328 3684 7309 7657 663 9884 6327 7157 135 7240 6905 701 7143 5543 2621 9243 6880 2889 4514 2441 9588 5940 9272 3893 9318 1212 149 3405 1470 6636 4692 7878 2542 3679 9893 9802 2400 4279 2790 273 3972 3384 7333 1895 6169 6293 7119 5547 924 7378 7186 7779 8431 5554 9344 2146 5173 799 1621 7588 6151 942 8046 1923 4651 6881 3814 8840 3940 299 5345 9875 4929 15 9894 936 7024 551 2187 1388 4098 9481 3737 6833 1911 9886 3203 8905 4782 4039 1005 2595 8065 6842 7143 1546 9202 2125 1685 9531 1156 803 6843 6513 4098 8046 4888 2098 9275 710 9087 5883 9542 4807 5261 4494 9139 7605 3102 6656 3234 2492 3872 8281 8836 9234 121 2338 9461 5622 5648 9563 9545 1723 438 7192 5980 6369 1368 8118 6923 115 9734 7631 1487 626 8223 3364 3041 7145 6322 3884 1155 9545 5971 2450 8490 5336 8448 713 3976 8080 1671 667 6064 9232 8967 2699 3033 9276 7043 976 9131 3986 1384 7714 2451 9389 1641 2211 3586 3348 8947 8560 7422 6919 9503 9562 1576 5568 9636 4375 2317 8984 9697 8891 3181 3629 4486 3437 7125 3700 1098 35 8978 7381 9542 5457 4105 9933 7202 4802 7773 9370 429 2759 5547 761 6630 644 2850 1695 8782 5471 7093 7932 3207 319 9683 1049 1685 8188 7723 109 9861 7730 2407 842 5897 1590 4827 7022 1370 4639 6091 231 6864 5302 4880 9005 1413 7491 8766 5265 4998 6309 2253 3570 3941 8609 1017 4475 846 2776 6607 1113 1846 9255 4485 4158 4129 2165 6907 9528 1031 2870 250 2822 3933 4621 6553 3725 7075 4971 4055 2639 7866 6696 5990 4749 6562 8401 6527 90 9882 8799 4465 5982 3477 1095 7569 7267 2303 564 956 6043 5906 3139 7731 7199 6763 953 304 9067 472 3595 6515 3571 3438 3514 8010 7583 721 9230 7221 9188 4564 5276 9749 9014 1285 3413 364 5809 9952 7535 7580 1411 8525 9948 6453 6689 5531 6064 752 2633 9025 8714 5329 467 518 4646 154 647 6263 4547 5712 3534 4178 3081 9818 7917 9906 2648 7388 6247 992 7999 4977 413 1880 6492 4232 9869 8052 2535 5643 8565 8766 5914 5058 4148 75 9102 6476 2900 9788 7885 8969 7074 5659 2342 4512 8789 3845 7031 6432 8643 7728 6008 9210 7113 6682 1833 1817 3757 8744 7733 3694 6888 7577 5392 6415 2160 3460 2063 8379 7197 2549 4125 9846 8572 1690 728 9398 9967 4025 252 9209 4120 8057 5486 6499 920 1284 9816 4420 7211 5598 468 8199 2964 2017 5426 8666 5379 2289 1180 2224 750 7060 3943 7677 2674 2469 3118 7159 5766 287 2624 6660 276 494 1875 2331 9541 7090 7722 7487 3014 5094 664 4616 3135 7872 6963 8217 5200 9230 5397 5847 4758 5500 3908 1082 3420 9200 610 9465 2570 5566 6649 1878 2155 6097 8042 9450 1107 6619 7781 3913 9491 8992 1030 9918 3442 5502 8569 9653 8777 5442 3249 4303 3887 5505 2051 9710 2205 517 1031 562 5820 3869 3891 7517 2050 2087 1037 5282 2378 4063 5476 437 1815 1555 4735 8341 8678 2626 6583 7058 378 152 2210 1275 9334 6655 7014 4515 7157 1081 2577 4261 1880 3938 8508 6075 3195 7999 4057 64 9937 2856 8306 2270 1218 2487 9893 3177 8230 5161 6281 1345 544 7209 6119 2699 910 4144 4782 9645 5431 7110 1931 5290 5060 7329 6116 7385 2277 4255 4435 5400 9168 6381 6025 9381 3672 8443 7244 3752 3760 8897 2174 4976 5818 7664 7839 1658 5400 102 7010 6174 512 8830 5585 9993 2423 525 3066 184 7370 9708 120 3714 1576 4934 4944 2393 600 4896 4613 5799 2718 6380 9489 2167 3449 2904 9365 3745 146 4069 3633 5448 7727 6193 3057 8004 2756 1926 1104 5880 7830 1327 7603 6849 3611 9509 8366 658 9618 3595 7398 5744 3301 8212 9159 1405 5531 2124 1255 7181 8640 6284 2098 7802 1559 6353 4160 3890 9283 8015 5147 1958 9578 8866 6193 2291 3874 8599 6373 9637 7723 9719 3124 9288 8596 5987 3990 3832 7111 5050 9955 7441 7960 2934 8717 4248 9628 5907 3563 2044 2301 7840 5783 9634 358 6912 5531 5814 2548 1942 9465 8839 2500 281 8585 1565 8498 1080 9124 7165 4478 9775 7556 3822 3949 3950 5840 2106 6976 2586 6714 9615 4181 5543 2134 5070 6325 4354 5834 2361 1738 8781 3849 6966 4648 5449 5731 6661 1008 9741 2753 88 7953 7437 3631 1289 7150 1652 9648 8262 3247 3983 1733 6535 7187 3214 4067 2667 6378 3033 8862 8711 8390 8450 1290 6895 8018 5436 7900 2318 7170 2696 6572 2467 9286 9055 8704 5935 5225 6343 5830 8347 2479 7178 7238 1417 5780 6120 6614 6422 1155 4253 7915 3060 1210 4113 850 9131 7231 3352 6509 2310 7919 9378 4575 942 2465 725 6412 6943 8156 5876 1091 1086 8301 1734 6702 4774 2497 2146 8370 3800 7338 7180 5715 6170 8075 9539 7673 7836 6634 3941 3892 7259 3078 2133 5772 6823 9874 1833 9445 3966 3469 2095 7018 130 8787 7291 4361 8116 5120 2132 1277 7299 7424 5363 4408 9132 9364 738 9455 4659 1186 6126 7398 8463 1098 7185 3378 8760 6005 57 5169 9098 3417 5590 3792 3721 2096 8719 3486 3505 6921 7950 8667 4825 6067 5932 567 8966 5424 3909 7293 9410 5109 388 8396 727 6227 1806 3747 1560 8705 1061 8009 4401 6941 2933 4227 12 6273 3663 822 91 6802 3751 8740 9628 3792 1596 4216 960 5278 4418 7396 947 1472 8318 8921 7811 3861 9845 8217 2509 6753 7242 3516 4566 5576 4653 9350 773 4565 7165 7427 4609 8751 2252 991 815 5277 4775 2997 5080 1827 9514 790 2274 4836 6534 6510 7059 3010 5311 3501 9594 4155 5702 1751 2766 322 4258 5051 3775 8231 6944 1489 5120 3096 6854 8421 6073 5168 9403 3650 3756 8075 4485 6405 8790 6038 5887 8869 4622 1984 804 4107 3101 7866 3976 3008 7700 279 2014 3890 3368 7946 687 8771 3069 4171 3286 8227 1019 1509 9474 3878 3155 3050 9294 9532 9631 2392 6419 6981 2178 7646 8717 3149 7173 1710 5111 1304 556 7830 6991 8790 1842 3594 7108 9022 7307 514 7496 2581 8983 7970 3775 1695 8391 8758 5926 2158 2432 7101 5614 3723 8661 3823 2083 8978 1657 3379 2282 2010 4706 2305 2565 4132 7109 2273 2895 9011 8850 4276 5921 752 8675 5624 2648 6074 9873 6938 9661 3945 4121 6134 4873 1419 8461 4411 6653 6358 8877 3771 4148 4573 1339 5689 7116 9571 2420 1793 524 5448 3676 8180 1631 1991 5097 8154 5164 4111 681 7366 5255 5958 205 1658 9488 798 3670 1664 3398 6362 8704 3831 784 4887 3439 8864 2534 8761 3407 427 6129 6151 8043 8134 4923 1144 8030 2726 7632 7358 2622 7718 9478 4680 309 839 5429 7194 2162 4525 8320 7813 6675 1918 6123 5780 6895 8927 7082 1449 2761 8642 8585 750 9737 7545 7823 9650 5370 8564 3152 1562 7657 4172 5726 3959 1484 1223 542 9656 9777 598 1363 4401 5142 5181 9609 7621 825 966 4155 4850 4946 2800 7298 777 90 920 4150 2132 8243 9248 4412 377 1693 916 3579 8555 2412 9508 8217 9789 3028 5422 9717 7761 2447 4488 2768 8215 6972 5431 5151 2254 8320 6692 6581 8862 8092 7432 4564 2303 8130 9461 6554 1926 8359 8143 1354 5016 7781 7684 2783 7890 8652 5496 1643 7252 3712 5458 6817 6206 6018 4581 3192 6277 8621 8634 4771 1023 920 3526 9794 5090 2547 1379 9265 5467 4353 4424 3151 4121 4936 232 2855 8422 9787 6826 3853 5520 7857 5363 669 3090 5576 372 8271 5892 7246 4663 5713 6698 9992 3076 28 3521 7728 7520 3284 107 4320 6983 5947 1435 4935 7677 8062 1278 6645 9571 5707 372 680 6659 3278 2868 7226 6846 9128 9841 2444 3564 7827 5573 5707 5997 4064 9162 7447 4492 5597 5551 8141 9127 6998 3907 4144 9985 8472 9965 5865 7043 5038 2097 1880 212 5213 5677 5832 6915 3931 8884 6548 2399 1054 8362 9196 473 2327 1799 1485 1665 6584 9765 2244 5255 2320 2491 423 8969 3338 4694 2220 662 4155 7612 9581 2327 4470 5254 6498 379 7437 7731 1718 444 4308 7976 3531 9142 6773 2072 9438 7593 8150 7779 6215 9283 1386 8698 6845 1869 2672 2590 664 128 8247 8456 1459 1966 21 9917 8095 4034 5161 9361 1647 9659 881 1863 3643 6251 7389 1693 249 6685 7423 7143 3797 866 4653 8676 5436 5151 6013 3 1824 7284 308 9404 9396 6487 1438 1352 9950 1524 236 6996 2391 2150 1338 512 4923 88 9944 8835 2291 822 8164 384 6745 731 2268 9788 9829 5388 888 5846 4128 7964 3532 5411 221 1899 7101 89 9976 2665 7118 1501 2881 4599 7950 7281 6631 4789 5752 7496 5732 5337 2464 304 1295 2873 3010 873 2117 7092 2396 2464 5171 1462 430 7076 3360 3412 8412 7912 2917 7794 828 8523 1309 6799 1203 2988 9094 1864 2010 6886 3617 2994 5775 26 1105 7127 3750 5596 4017 7211 4923 7963 4367 4460 1090 6656 3188 9926 4877 207 6147 7360 7540 4039 4032 6765 6014 7462 2400 5369 6101 3517 9539 9256 367 8400 8417 2303 1966 5537 241 7845 5615 5933 5504 897 5433 952 2599 2522 355 7627 1927 7241 5282 4942 3270 7333 2956 3752 4752 675 6161 5036 4265 3514 8127 8091 1756 6902 5690 2745 720 3250 5704 3818 151 3598 7552 1777 4578 5131 354 3378 6037 6327 2953 901 1094 3301 7703 6095 2578 3542 1950 1715 320 3360 9745 9008 8264 8498 8779 6152 6495 9434 7949 754 3463 8894 8616 6929 4598 2097 1598 553 6242 9815 7388 5339 6021 5919 2195 2761 7140 1063 8285 8890 5252 9274 917 4205 8961 4262 1931 7473 5706 3676 1838 5012 6725 9607 5272 9396 1214 2049 3685 109 2716 6349 5444 643 6750 493 8833 2318 4358 2146 7662 5300 3281 4591 520 4697 185 663 7041 846 9241 377 4577 7061 9479 63 7818 3890 4937 4429 5726 8817 596 9891 9537 2480 2139 5966 3015 5281 9169 6767 1178 3865 2762 113 7264 3441 7245 1372 4749 5708 9203 9570 8571 4573 6831 5165 7413 5815 5783 5481 9672 9072 3487 7591 4322 1647 4905 8559 1082 9317 4685 9688 9817 4437 6634 503 6434 4025 8676 3935 3354 8426 3982 6515 4276 3261 9764 9242 6122 3469 7215 6937 6860 8174 4494 7389 4895 1626 4555 3555 6243 1526 5715 9494 1724 3033 301 6273 1851 9890 6183 448 569 8193 212 8692 6408 3354 6944 832 7800 8809 1963 585 5939 1162 9167 6063 61 890 5787 629 7862 3647 3046 9610 3626 7630 9130 1337 6422 7801 4258 8067 9915 4206 7915 3207 9538 8327 9701 6062 2313 1614 1351 9464 3070 8518 7752 2840 6468 7149 5675 3170 5383 9469 269 5162 7793 2343 7160 7561 9481 2198 8195 6251 1249 4261 8411 41 8649 3148 6829 4458 8512 5108 4792 1914 4867 9846 1985 9780 8182 9186 7297 1837 4949 879 22 8990 9186 1221 1615 7591 4703 7970 2507 8403 4267 3729 8003 131 4957 904 9387 5413 725 2015 9018 260 5575 1473 5196 1772 8296 8280 1043 8976 6853 6349 9438 5802 6995 6222 3023 191 3003 9667 4548 5932 2891 4310 7402 6894 8251 6538 992 2455 2519 2810 6292 2895 7166 4404 7067 3010 4887 62 8363 3000 9693 7823 9957 9952 5657 3155 7661 8838 9955 217 3238 5020 5286 2239 6724 5903 3368 8633 9565 1006 8865 186 6436 8497 3149 5459 1886 2422 8722 790 1826 210 2755 8600 8688 2046 7446 5850 761 1538 3237 7748 9028 8889 3814 7757 9517 6026 4177 5644 2329 4983 3210 9605 4501 4206 8927 9239 6517 5800 3710 9049 1577 1460 8665 3695 4975 1257 1664 9766 9225 8277 6980 \n4958\n7200 6807 9614 906 1428 3648 3291 5646 7765 3270 521 8318 197 8321 5077 1420 328 6995 4527 9014 5593 1658 2352 4813 2858 4256 5280 6356 485 1761 4785 1045 256 1290 4159 1814 8306 7805 5627 2256 591 4851 1687 5418 5280 1696 4469 3656 6235 6583 1342 5815 7966 8969 1418 1407 3078 3158 4920 8387 4529 6738 6523 7859 7970 5970 3148 5908 3812 2873 5745 9719 1349 631 7691 3788 4511 3688 4517 5827 8286 1711 1940 2186 6595 7040 4384 6383 5150 2094 4541 5720 553 5995 8175 7361 7175 8381 8604 6984 2566 3253 9835 1609 2125 1878 5417 3970 10 8513 3330 5227 2192 2225 9467 6697 1833 9016 7516 5576 1556 9560 8412 1977 5065 4072 7655 8756 2297 1210 302 2040 6846 4223 8687 988 424 6092 1094 6829 6335 1121 280 3769 2684 5486 1246 7936 5585 349 2215 1029 2880 8774 6377 4304 7181 5943 3902 2243 5153 2774 5189 8544 6215 8138 8666 5728 3984 3418 6500 793 4531 8615 4273 1566 237 7644 4740 6262 9475 4142 8300 173 7468 6107 9845 2482 7762 6112 8655 1836 8686 7035 1335 7006 1833 7075 2284 5810 3469 5377 8252 2330 7234 27 352 2112 9266 7436 5932 9796 7520 1306 5834 2352 248 7190 1145 838 2983 241 5578 1037 2361 275 6203 7400 8175 7665 5473 6826 9169 9630 1780 55 9913 6885 1724 7338 8201 6811 9048 222 2214 2206 4202 5082 83 71 2281 6295 4987 7990 6308 5381 1300 7351 1048 5615 2396 2509 1099 7242 2210 469 9472 6137 9015 9442 736 3412 191 7952 8183 9256 5267 7225 3432 2554 5860 1999 3839 8422 8646 8183 4197 3712 9443 1837 9515 4616 939 1320 2619 7092 3167 5566 868 157 2103 3475 3613 577 2972 4810 8302 3132 7684 6086 3772 1138 9762 3775 8299 4001 6409 8823 127 2234 8019 9820 788 5103 2958 7880 7579 2351 4061 7410 8758 9295 3905 5124 2061 5693 3656 8430 1737 2586 9593 9792 1447 3219 9808 4142 5699 3154 3399 671 2256 89 9917 8115 9279 4616 5905 7491 5350 2147 8482 6917 9717 4395 2726 1347 4887 9529 8313 1723 4495 3076 9382 9964 29 456 5710 3363 2425 3798 6314 2305 3202 9544 6529 6642 4615 5073 1211 282 4512 8573 6234 2345 9233 3478 7344 5441 8383 3979 5372 6814 3554 4936 7310 489 9378 9575 5306 2293 1047 109 9562 888 2000 2535 9110 6479 5538 8072 1928 8095 7758 7015 812 9863 4958 5970 5571 6964 5078 6495 7654 7313 6637 2737 360 1177 2798 8414 1752 7688 6929 8931 9765 7045 1498 5381 2668 9725 3943 3989 4184 353 3258 788 1903 1418 4427 3064 2963 7765 893 5658 7319 5218 2438 4454 9839 6828 8544 8801 5015 8923 4147 346 1233 7595 7981 1629 1846 3783 4406 4698 518 5490 8002 3991 9263 2106 8634 2234 8457 4707 6195 1196 5200 528 1091 4916 810 4903 5144 1378 9455 573 6329 8919 2461 1635 4854 3652 1286 9352 2379 6543 5604 762 4388 1915 3888 633 5351 5966 5827 7386 4880 7211 623 7206 870 2112 137 3263 4905 6259 1266 8646 2553 1088 7685 6606 8453 908 7913 8844 4118 7611 4588 2859 8747 1574 2802 9425 7371 2335 943 3266 899 1775 4169 2796 1404 1006 3583 4141 8829 5802 8493 8604 9034 1328 6775 454 1715 4606 4482 7628 3120 1933 871 1721 6001 2628 1699 762 5328 7572 2718 4795 4444 373 8109 8881 8452 5342 1915 89 660 3247 8314 1232 3670 8985 8162 6212 9829 5564 410 4084 2275 2778 9863 6554 2219 6778 71 9287 1517 7898 1081 7336 4165 8078 2889 4539 2243 2125 8182 1525 3032 758 4530 6340 7709 9845 6184 5978 9304 738 6005 633 6169 1969 5284 3182 7926 6622 1419 3543 1954 5498 1746 4135 6834 304 8285 3091 2085 4046 6946 3227 2137 8253 6978 9489 9999 6501 7529 5647 5516 4553 8801 9159 5701 1161 9948 2497 3980 491 6598 9953 2149 7821 8320 9955 524 1389 5276 2616 3867 3450 2868 5397 1962 1503 4255 2269 4914 8104 3420 3849 5468 524 5562 8362 6578 8673 4344 4811 7994 1123 4833 6114 3845 9355 6886 5135 1368 1140 2674 168 8484 8664 1063 4091 7219 1590 1909 4513 6434 680 205 2989 777 2824 5068 2869 5004 6807 8987 7911 5525 7612 4693 5889 6662 1092 4136 9455 3251 5519 9254 2621 3507 79 1288 8470 6684 9619 9406 7244 3370 5582 9271 735 4564 6233 7237 7878 2341 8693 2943 8520 960 583 4272 6554 3947 5855 3249 3465 9159 7362 3233 1431 5711 8480 6519 3968 687 6565 6546 4207 8361 5163 8340 2476 9980 7006 4248 1820 2292 1560 9018 9819 8000 1894 2921 5704 1052 9775 1736 3097 4775 7876 1929 2078 6141 5393 420 9676 7337 2185 7540 1821 232 3452 3153 7794 6660 3600 7640 8142 3761 7657 3115 7672 3829 241 1765 8541 4788 1466 7146 9294 7714 2598 1819 2470 2852 9979 2929 2671 8531 6345 3644 3373 2944 3137 4236 6162 4780 7607 536 8962 5986 8236 8704 8332 9184 6664 6247 6639 1378 2000 9419 3453 1684 9698 6928 1185 5227 3563 4946 4934 9341 687 4056 218 409 2870 8107 3691 5080 6004 2662 8943 2718 5768 2859 8470 4081 9492 4374 7661 5216 8084 9428 824 860 2841 2848 5891 1455 7605 6487 3349 1451 5106 2395 301 737 7506 276 5550 2183 6491 3058 9048 8448 4018 8632 3027 6618 8896 8126 7973 9161 6254 7736 924 1469 309 5680 56 8359 1132 665 3162 4940 8019 5771 8628 4447 104 4474 242 2918 5840 7557 8975 850 4927 1175 3775 2611 727 2309 2114 3227 3769 5509 8735 6033 5554 591 6021 4984 9298 2691 7591 6932 6008 7414 347 9644 6752 4941 3522 7830 2766 4406 3873 5583 1638 7974 5635 1155 1693 2008 5685 9926 2282 3896 6358 1575 6594 721 1434 1614 2714 6668 9237 5691 9766 249 4092 5234 7631 3731 1207 8324 8028 4207 7396 4622 8921 8350 5396 5258 6800 8930 302 1106 7004 8737 8985 9378 6772 1044 3966 5572 4359 2817 9193 9490 4926 2682 1181 3568 4011 287 6831 362 204 772 9274 9623 9847 5065 1911 6019 7167 4873 8016 1124 4213 4330 5435 1810 1235 9256 4450 1236 8977 6906 2756 3070 7194 8264 8162 6771 8600 5563 6911 1571 6931 5439 88 270 9372 755 6684 5846 4773 5272 6318 8938 2234 4441 5900 9986 4499 7495 6003 8073 2093 9158 4232 8102 5708 1427 558 5774 291 9069 212 8430 257 2206 1881 8380 9544 2257 8846 8828 6443 9175 6493 7344 9265 1859 7523 2903 4853 6379 6637 2515 3143 8447 5656 7656 9423 8557 6235 5318 780 8878 9159 4832 5340 6472 4611 3218 5997 438 5631 3539 5136 5187 6685 963 1020 2685 8498 1519 2105 1308 321 7474 1445 6611 7542 283 4990 1069 2940 2526 9388 5691 4497 9624 1080 8206 8398 1254 9633 1542 7120 575 7451 1826 477 6811 2916 239 2715 9577 8509 1025 4349 4475 7131 2195 4651 9546 2996 7452 9391 199 8590 8711 7720 7368 3685 3101 6791 3480 5761 9930 1377 6110 6580 7390 7291 4938 763 7958 9527 7080 4057 6357 4373 5184 6787 4897 4280 4402 1845 3571 4600 3762 5388 7098 9136 8562 9450 9628 8268 2022 9006 8822 9129 87 7616 2927 3478 5042 4598 1502 6065 4813 2429 1384 1680 2108 261 1087 9858 5298 7598 1316 8314 860 6144 3139 3983 133 4971 8489 7658 3643 1035 3886 2154 7790 8802 6178 9908 8376 9291 824 6613 4526 2814 6696 3745 3119 6199 6536 7211 5065 489 9526 3323 5156 5512 5417 6295 1200 5756 8963 3083 9097 6960 7661 1584 7594 2387 4987 3286 8164 1885 3751 2141 4217 508 6220 971 8540 6294 8841 5387 315 2099 8476 6102 119 2774 1927 9698 4856 3478 9375 5042 451 6501 578 3610 9317 8220 7230 7977 7755 4461 9439 1501 8910 1216 4993 1642 7243 9845 1489 2828 3594 2247 64 9136 850 2083 7498 9138 2666 2523 600 9535 784 1204 9805 9435 2426 2462 9732 8308 7213 4363 4734 4867 4015 7983 3128 4425 8127 2064 360 6560 7429 3084 9786 5550 4922 2789 5747 3683 8553 7260 8953 7119 5054 8368 8931 601 2436 6885 771 1422 9998 4400 9594 9064 8777 8400 5297 4462 7597 6943 9851 2805 2762 1013 6865 6749 1596 3121 6980 8401 602 3123 9969 1280 2052 9563 1231 9570 6611 729 4331 3044 1930 6075 1648 6383 4814 1934 9094 8287 8325 5238 4756 2623 8899 7524 9561 2243 3688 691 5691 5866 5278 4902 1546 5954 6740 447 2305 8392 1584 3421 5281 5318 8537 1142 1129 1488 2325 3950 1139 1068 6987 7202 6582 2566 5950 625 8891 4329 120 743 1744 8295 1906 8849 3920 501 6091 6948 6317 8502 3471 5900 6155 5995 6111 9788 2070 1761 5729 9099 3411 9705 6164 1106 2432 230 8869 5424 8884 6495 1985 5173 6430 4442 5585 7758 1810 7189 9648 972 4332 3645 1128 8355 3693 8840 1825 8053 7394 8104 5933 5076 93 3877 1105 7342 4800 1202 5304 8734 8164 8937 1601 5074 3715 5146 171 403 377 8787 8379 7058 3414 2875 3313 8939 8659 5895 3057 7626 7191 8234 7905 9820 6651 6497 5936 3970 9907 9753 7996 5567 3913 3901 7309 415 3972 4047 4140 4830 762 6388 4470 1549 7774 6842 6642 969 337 3431 395 8854 6689 9732 8444 610 3093 9572 5629 6666 9848 346 4976 9899 1477 3957 3928 1470 2418 4413 1065 7719 5084 8951 2 8664 4716 9753 6252 256 4543 4276 6714 9928 153 3429 2716 3312 6520 815 3546 6130 8586 242 1845 7361 9355 1543 4645 1074 3505 9752 3865 7571 6707 3468 9085 1733 3305 9812 3634 1278 5501 4359 9879 5523 5356 286 2350 2913 8320 5775 1066 8823 6764 9618 6133 5945 2968 990 8702 8032 5573 4273 3797 4288 3566 4270 364 1170 6548 912 3137 157 4917 2948 2796 9717 7130 5881 4973 76 9210 3035 3028 820 5756 8148 3300 6526 5524 3179 4743 9256 4202 2458 4563 2426 8915 3530 4588 275 3746 2162 2410 9161 9288 336 2466 4718 1524 1440 7016 3230 6624 8115 9637 5747 1422 4174 6345 6824 8986 7264 5902 8343 6166 6356 3058 7279 8204 8023 6478 9867 2563 4739 3725 209 8916 7979 5502 2835 4555 6372 3488 5575 7267 784 4873 1532 7224 4429 3425 8120 8218 6674 6403 9113 3293 2898 4832 9832 2798 2169 2935 7929 6233 9686 44 8514 9863 6526 7059 4938 6517 9668 8427 3447 8375 3305 2831 8016 9561 4433 861 9619 8557 4441 6776 8804 654 5054 4837 9315 3076 973 6073 187 1568 2636 9374 6373 7279 2424 795 428 6279 2129 7837 2785 3045 39 5323 4321 1085 5004 3127 5471 6736 1775 7597 8494 2724 5547 9858 9636 2862 116 6171 6894 6084 3718 9460 6797 3065 859 6392 7797 9363 5813 4344 2941 5143 2194 4614 8732 6692 378 1529 5644 6470 9940 5426 1066 2660 6853 1469 7539 5221 5202 3141 3630 7120 197 7455 9160 5136 8630 1627 5913 3726 8363 3930 3273 6524 9527 9803 1539 9615 2449 1801 8493 1050 2174 1419 675 8886 4142 9741 6688 9175 8452 3556 5857 9007 6775 6860 9188 2488 4336 6560 8016 1209 4900 5961 8139 5890 4421 6045 2307 5222 9578 8046 4068 2971 338 6346 811 2296 8628 2536 3481 9304 8666 2630 2682 5464 5288 4273 4342 4263 2606 1777 8365 169 9870 6284 8260 3703 2288 9806 963 486 6381 2635 1923 870 8633 1572 3601 1039 565 2874 3417 8336 2151 2783 8885 2408 3963 6721 5042 3447 2560 9697 4341 7995 3809 8337 1794 7821 8383 4160 6892 9854 6789 7866 3500 9408 8272 3926 8640 4348 1794 617 1752 3841 8543 8879 5810 4796 3823 8002 4775 3198 3007 2678 5604 2416 4126 7120 5719 8990 1726 9179 7797 5298 6503 3502 6529 6766 8074 585 8647 5402 5377 6699 5125 5395 8902 622 8408 2311 7475 309 3351 9750 5379 7071 4728 4255 8616 4853 6620 2206 7847 4594 9634 3687 9793 6107 5395 4807 4704 8645 6670 9649 1104 8823 8690 2782 439 1235 6556 7758 4571 1406 4078 9716 792 4134 4377 5940 2804 1983 5606 9375 8403 9581 8794 9521 8486 4583 8734 323 1996 4619 4565 4899 6117 4330 9329 8499 9876 8253 2041 7397 9046 6740 2709 4628 9034 1577 3761 883 1678 6714 957 9854 8280 8769 3087 81 8793 449 9170 5840 739 3196 8551 815 9878 3044 4024 5962 8995 1152 7428 9804 2251 9114 7558 5351 2926 8090 6360 5189 846 2441 8825 7398 1484 257 5785 9369 3972 2055 9685 3988 2119 7048 1791 8378 6372 9315 461 6808 7474 5116 4776 8360 7173 5571 9154 7727 9445 9734 3118 5257 7674 7501 1360 2339 6464 8765 9797 1337 7143 8042 8744 8153 716 3719 7093 3002 5521 5943 3098 5572 8019 1680 1007 9403 1564 8111 7670 448 4578 3138 1804 5746 7868 3803 2863 755 2095 5352 1529 7511 2399 8515 7984 5494 3762 7071 2963 390 125 2752 6729 3744 4361 6746 2995 7163 3904 6526 4009 6249 5008 1322 9499 3905 5619 9207 6960 5441 8268 6849 1048 8430 8769 6414 5304 276 6753 4148 7417 1298 9140 2996 4587 5442 434 9068 6408 3982 9009 3411 2512 8324 2898 9912 6306 347 4671 5122 3302 4996 1376 3364 2944 376 374 578 4396 7711 9423 9392 229 2000 5123 7155 6064 4847 6197 6584 2512 319 5203 248 8468 1485 6808 7167 3834 8039 184 9225 3369 5112 9489 5138 6663 3497 9152 9427 5851 971 4024 9643 8802 4259 8030 8464 4493 1644 9955 3488 1179 6870 5675 2982 890 1752 646 5154 1116 549 4368 3087 1869 2145 5544 6805 9933 1949 8106 7948 8521 6434 3149 1651 808 1790 6319 3030 3180 3705 221 4722 9555 6570 587 671 9776 7311 6697 9410 8628 7231 9188 224 834 2880 8118 2952 1182 6262 7734 5151 1058 3831 6134 3292 8484 2697 1229 1486 7669 3078 8177 9882 7794 7119 2704 2905 5266 866 5358 1375 3230 601 5916 7736 5949 6337 5152 1632 488 8529 3638 8697 5129 9867 4737 2553 8834 1384 9737 117 4445 4359 8224 8944 1473 3470 2407 570 6519 518 4134 1427 6286 4669 5666 9591 2788 8587 2050 9419 1221 5344 549 5795 5644 7536 2485 3674 8765 2080 6401 3982 7493 4505 805 6433 6414 7473 8808 3664 7445 295 6829 9961 8690 1294 6334 3000 9880 1797 8618 9624 2843 4380 6884 6835 7313 9418 2210 2265 263 1945 541 5965 2035 44 2219 2678 7598 1281 2274 462 6697 2665 9518 8851 6110 1117 127 5404 2561 97 2177 4810 4012 4898 6360 5145 5985 9856 1816 4234 487 6027 3426 3309 9751 8377 3954 2247 6687 2058 5899 2574 9763 7311 1964 6829 1776 2101 7929 2513 2254 8527 3688 5820 8119 6048 3601 1383 1306 7619 2372 5469 3840 3367 98 8040 635 3973 7734 8555 4911 7075 5663 7230 6427 7449 3636 8415 3382 8260 332 8440 7475 8546 8920 8131 8461 563 5258 7 8906 2925 9379 8486 1803 3800 5855 6325 7167 5375 3880 201 5670 6623 9053 956 7359 6957 6986 2183 8875 8090 6425 4907 143 1293 6001 3243 4362 394 40 3968 2693 3335 7556 8035 1743 641 3868 3387 4814 5342 5747 2640 5947 3829 5986 6567 8858 2011 950 6670 2793 2407 1631 1981 2001 4420 5809 8006 7526 2995 1351 3793 275 9656 3803 4528 8783 5385 1651 5507 6899 1020 6383 5109 8081 4649 8915 7026 198 6103 1271 8935 7216 4527 127 5380 9916 8083 2574 8383 7662 6408 2065 4803 4400 4642 9441 9119 9786 2245 4547 2636 5890 5020 6402 3626 9599 3691 2058 6970 4227 4031 2660 8521 8897 9746 1138 3588 6898 8252 3979 399 3313 3078 154 5269 864 2965 1449 8557 62 3011 2967 8960 6445 6234 4619 7121 4391 7612 2166 5995 8893 475 8310 2057 7634 6423 3543 4311 491 5561 3743 1410 9051 1733 2873 8477 9359 994 8011 4492 9201 1878 3197 4199 6501 4339 399 5099 9234 3080 5350 5444 7076 2895 4189 9148 7045 1804 4643 7864 2832 9234 1095 7739 7846 8510 6733 7678 9265 2582 3293 8487 3135 7184 1667 4408 3107 8308 6413 9556 5361 5482 3176 4900 9808 1093 6061 1828 4727 600 4427 8048 1907 5669 7692 5912 6856 6 5497 4881 193 666 7744 7273 8264 3059 2284 9040 3828 8862 9598 3204 8747 3378 4951 7589 4166 2345 6295 9735 4008 8261 5343 908 1453 6641 8241 3318 8879 1171 4644 5845 5381 5147 7121 4929 3585 7623 3615 1038 3869 596 4752 2133 1422 601 1634 2169 3898 5825 5697 8604 3082 5927 6336 4500 9325 395 3181 6924 4102 2983 9397 2991 7059 5343 6262 4127 9569 7679 5421 2557 7024 3127 6756 8551 3278 287 4682 7308 4639 7972 7604 8545 3959 3615 1888 9718 636 7049 431 1051 2362 13 8609 4480 3480 2748 3707 6459 1282 9342 5535 5859 1182 913 1995 4882 2084 510 3048 331 6349 3788 3294 1006 8818 9017 8279 9704 5194 2509 3301 3591 9749 2153 4873 5577 5260 8479 6837 6316 3630 8453 9105 998 3279 8511 4380 5309 8672 3976 3556 3682 6207 1758 4399 2133 1442 6159 9465 6006 9953 6836 7608 508 2696 7629 2999 6083 9192 6120 5915 1727 3454 7695 8473 4435 4173 402 7157 698 6993 4475 7579 9714 3025 4792 2045 2127 3935 9372 5447 5889 2281 5629 6655 6144 4267 5180 180 3242 228 7661 4304 4230 541 9570 5945 5710 2823 8468 8271 6124 8 5496 9109 9344 9018 9341 8837 4331 2461 3872 1297 9683 1795 2674 8782 421 129 8372 9855 6424 3096 8347 9561 5028 9942 2132 6627 8666 7799 1545 7424 7699 3911 2509 5952 3599 5414 5750 5275 3505 925 2999 7866 3962 1182 587 2432 6331 1155 3569 7973 1164 9311 2326 1851 1690 831 5871 1582 5567 8066 4696 8403 3510 7980 2709 9855 8085 8461 2662 832 8144 8662 716 1237 3761 724 8238 397 8285 8149 3944 9948 2860 4490 8601 3912 7487 2381 2399 8465 6704 1252 8692 3970 2107 3275 7183 5670 3915 9041 8985 9835 4458 1126 2570 386 5211 1614 6418 6789 167 6320 6539 2562 6057 354 7028 2015 1645 2115 9981 2477 2980 7753 765 3603 1296 7184 5240 6363 4634 3757 5061 2665 4011 7056 7797 1292 1157 1279 6628 7895 7417 7586 7296 3826 9898 4151 716 515 4933 4886 2569 75 419 7747 6404 728 2081 503 4948 7321 8388 5784 3293 5473 1881 5326 4314 1967 3278 1975 8341 6386 6849 3412 3545 4299 1074 9108 1081 3504 1924 2369 8430 3419 81 8992 3008 9547 951 8213 6022 5795 3780 5822 8494 1671 8481 5890 6895 6232 5951 1613 5833 5122 3668 1048 4457 4279 8862 9154 3496 8490 7196 8565 7900 3205 4588 8476 5421 2387 2607 4855 1416 6501 5799 448 1065 867 2841 4937 242 8283 6178 897 8825 2475 455 1511 7173 7667 3290 1734 6734 1310 5395 9482 2409 2771 4924 536 7651 3094 3903 9615 1544 7667 7792 9984 4046 5438 9663 4830 7685 579 1022 372 5926 4365 3972 1906 2496 8461 189 7968 5189 216 4729 2068 2998 728 3625 7993 2151 1253 9537 2932 9048 8851 4465 2484 7610 5214 343 6636 1184 9618 6011 27 8752 9011 6328 1378 1945 4956 2663 9819 7468 784 529 7145 7295 8522 3305 283 2265 734 7061 2857 2016 8602 8129 2244 2754 3754 375 66 8354 8230 1025 4602 633 4417 9178 5345 5041 9345 4274 4021 4895 4499 5558 6371 9539 5543 7793 7586 7335 3395 4455 6015 5720 7667 9914 6892 1663 1266 1812 9137 9782 3833 4484 850 3719 666 7560 3537 8317 1763 7006 2312 4025 5492 3163 5300 8303 7596 2615 9942 5605 4813 2747 1846 1846 5294 2635 5117 8886 1938 6979 4390 209 407 1714 2428 7097 7797 2171 7900 6105 1873 9156 3553 2991 7661 270 9289 7124 4129 2308 5085 8705 1432 9160 9224 8696 654 6523 9666 4849 9493 9542 6948 8579 1154 4441 9480 380 9770 383 128 2663 4792 4914 1292 8545 7746 9308 7120 2645 3321 6387 5116 5137 2179 3498 2360 5756 9239 102 3265 7911 6680 497 9027 5855 7924 1692 8761 8097 2230 8395 1426 3097 6749 4014 9557 4369 3576 6677 7743 2863 6537 8209 141 4970 7845 269 2488 5756 8608 6790 5327 785 4112 9638 7385 428 7661 2669 1943 3552 6716 5155 68 3280 9274 5491 4851 3274 7296 2872 5413 3926 4696 5020 8368 8287 9624 6198 6112 9576 8183 5465 595 9043 7700 4802 559 4056 4146 287 1450 960 6988 6557 7905 3524 1741 7429 2659 4110 3491 2829 3091 9834 7489 6506 4808 8270 7089 5942 713 6115 9785 5028 5369 5450 5265 5168 9227 5894 5285 3181 9384 9293 870 2461 7082 1769 3495 545 8154 6410 7091 5863 3097 9963 8173 316 5981 1584 343 1552 4762 4489 2507 4080 7924 8933 5527 3981 526 5600 3667 9824 6353 7969 822 5083 8708 6886 8595 1233 6570 8358 7023 8845 1893 6521 9039 3655 5506 7269 9016 977 9290 3195 8236 890 7731 9099 2402 9476 7943 8998 5946 5649 2525 2444 380 7715 8249 5061 8492 1489 1713 2062 494 7208 4630 7343 9511 1626 1259 3869 9445 9620 537 2064 8398 3380 6360 5981 504 2638 4945 1415 5971 5554 2224 2899 9571 908 3447 9416 7700 2845 7255 7143 2690 7149 4120 8022 1295 1776 6074 1277 4118 8158 9155 6413 9874 3985 2527 3643 4553 6726 3118 4652 419 6817 6542 5424 2448 8946 8817 921 6520 1698 1292 3038 3431 1600 4401 7000 7761 1804 9709 6851 8810 5004 4786 6022 6217 3491 1468 6658 3564 4713 5881 8194 4266 6157 2180 8342 6653 8242 4789 4080 1591 2181 2416 4602 8204 5397 9960 1362 3737 9896 3568 1022 8032 2231 9577 3698 1730 110 1394 366 2352 6541 6495 7217 1612 5200 2787 1889 5089 1718 3362 3018 2718 7317 5822 2137 9903 1835 4071 4797 4948 6681 3333 5493 8546 9755 3190 380 3218 2880 9899 9046 2185 8278 9846 3662 8430 126 7946 4341 5784 2390 714 7190 3210 3496 2952 7216 7252 6997 7987 2374 8679 3284 6509 2691 313 2760 4526 60 1115 1408 7105 6148 3155 9403 9291 3690 8435 8997 1108 2990 2410 1106 9641 5148 8933 6774 8726 2865 9390 4438 5818 9819 1975 6756 434 2666 2655 2135 6008 1824 5197 7205 9829 9348 6692 3870 9477 1781 1374 2817 7219 1129 7205 5104 2876 6848 6232 7131 6572 3985 9724 5422 6136 4507 3964 7068 8794 7968 5401 9401 2016 7474 5995 6570 2764 3052 9300 7714 1643 9830 2149 5119 381 5091 9498 9034 2752 4924 8463 9689 8833 5272 4632 5391 4849 6553 3017 9873 7535 7468 6754 5093 3667 1720 4114 7364 6475 6784 2685 965 1074 5762 2581 4737 1639 1579 3240 6651 5396 9306 1908 2790 4938 2121 5632 5266 4929 6039 8805 2501 326 1569 3162 1234 2909 1646 7134 1123 3894 6754 7639 7300 4877 885 963 6437 7777 1978 4658 9600 1242 9197 4914 7892 9378 830 245 797 7169 3476 7122 485 9861 9837 7603 5050 3862 8169 716 3183 5690 1340 5227 3029 1783 8553 5854 4470 2883 4905 493 1562 5800 3132 4977 59 9866 8014 8661 1119 7988 4079 494 7363 2415 2739 3660 8073 182 5900 1885 8601 3217 5917 8071 7685 2545 8341 7175 8729 6343 5869 5116 2527 9324 1318 176 627 2275 7168 9959 9224 9900 7453 9499 3635 1694 7434 262 4925 1311 9912 4052 6159 6544 4968 1870 5618 4264 4147 6182 1559 3299 9988 6670 2316 2519 4355 4760 7271 4324 9437 7726 8010 4741 2753 890 8187 5881 3155 1668 3287 732 2886 1538 7948 944 1019 581 9225 5078 5736 2123 8955 1112 6741 3976 3018 8369 2004 9913 1088 5741 7795 3763 9638 1101 1837 172 3533 6986 255 6787 9282 816 7970 9367 2489 4083 9886 231 4897 4125 432 5130 4618 6554 587 8775 6397 7225 1712 6463 2442 1238 8176 9940 7866 9088 1007 4061 4577 4461 9161 3598 9602 4283 6418 7105 6888 4366 8451 1496 1025 3096 4602 718 1206 6418 9396 4723 6926 2508 3238 5643 3590 2533 5771 5393 8177 7176 5243 5055 5595 4809 874 3968 7461 8153 2138 8693 5090 8918 8699 9601 4616 9702 7830 4505 1075 6477 6787 4025 8712 9200 9701 2629 4351 6813 6848 554 8882 6473 6403 4710 8746 4613 1183 240 6098 8144 9028 350 7449 1486 1266 5240 7215 5863 9557 8669 2791 9026 9652 7478 3942 6490 1752 1472 2158 1721 9976 5900 8688 593 5926 9635 4507 4762 5249 5142 7931 4552 6924 4187 6832 2333 9843 9532 5134 9519 1908 7534 9897 4195 7159 5065 8727 8094 2960 4072 2253 590 1446 6416 9741 1912 5157 1132 2914 4986 7324 6632 1675 9226 3807 4504 6259 6997 6517 40 292 6999 4787 4055 4090 8451 8798 5702 2761 8913 6330 9545 857 3060 9075 2725 7412 7101 9411 9962 7811 9628 5648 2244 691 3099 4591 3429 4651 6662 1858 7660 9376 8738 8348 9838 4722 6876 2727 7346 4230 9996 49 8257 7801 5837 4954 3586 4583 9303 4669 4479 9184 7615 7898 7288 231 6664 8862 1292 2602 5742 3265 998 2862 6448 5783 7399 1278 9955 7401 8044 7492 968 168 5361 7588 2941 8658 1214 2917 9267 7322 3200 8666 1948 2343 2096 8490 8687 5617 4338 2766 3128 6159 5082 9697 8680 2662 4534 6462 5812 1794 6194 8827 7397 9292 40 8098 8996 4505 8738 2649 9725 6571 528 7519 536 3912 7497 8966 1842 6958 4118 4136 9459 8559 2157 1270 8120 9748 3959 1502 6464 1023 1611 1577 3735 2161 7448 2676 567 3635 288 4503 4299 8738 6224 6981 1895 6654 6004 1085 1970 2422 4739 7715 3670 8387 8360 3618 7903 5839 7082 8215 2755 6814 3807 8284 9251 3388 7030 2646 4277 9670 1466 3805 3084 8623 2361 7689 8525 8507 4114 463 6094 1353 5405 535 5445 2255 9626 5356 1632 7137 1170 765 2778 264 208 1785 3745 7609 5365 2910 8776 5264 6446 1100 9876 4823 6905 4584 5833 9053 9416 8711 5479 6543 2277 2236 3976 1145 2152 3454 1983 1140 9208 3702 6193 8932 7424 4687 7595 5312 8994 7498 1572 6709 6126 5923 8252 236 7993 1675 4607 9650 3666 8852 3357 2263 20 9419 6965 9123 8651 8956 574 8672 9624 1225 2837 3459 3240 4631 5520 5458 454 86 6926 9909 8672 7 6411 7365 4518 9086 1193 3099 1853 2830 241 1552 7441 5186 9809 1168 3034 9878 62 2993 9386 4069 3256 1634 6880 9243 8444 6693 2186 5837 4158 1717 7260 4981 6770 3214 458 8284 7993 2458 7798 4797 1565 6982 3740 2679 3315 6667 8685 901 7094 4256 7210 6882 1789 3871 8429 3536 7777 8997 7266 537 9836 8770 8624 4638 7181 2216 4777 4485 6904 2942 9125 8376 8914 5489 8830 845 49 6232 1270 7756 6060 5917 1979 5684 8504 9133 5069 6273 4061 4047 1251 3462 6545 9604 2453 5288 6115 8592 6277 7246 3184 615 34 4382 1028 6295 4958 4734 7833 5673 7373 4703 2521 4689 4276 2559 5050 4989 5583 8191 7501 7662 65 6412 5266 4902 5548 6991 8829 9640 352 1184 1498 7178 3456 3011 3948 1713 5164 1270 3490 3381 2314 9435 2087 6911 2889 5037 8241 5666 8214 7783 1706 279 4167 3475 9336 5951 3988 7091 5161 9919 8729 5042 864 3445 2031 5819 5857 7415 109 33 2788 5135 268 7141 8486 7133 3526 2326 2838 5003 6443 1411 8106 5270 1664 8187 2785 297 5328 1091 3089 2560 536 7435 5491 5999 7782 7911 6888 5927 7324 772 7346 9974 5397 2163 2172 1367 1603 5707 5487 6744 4173 3713 1311 2343 7066 4401 7018 722 1396 9785 760 5964 5251 9842 3211 2287 313 654 4965 9079 5796 4755 8949 4887 315 8719 3998 8025 9503 9716 1787 2881 4480 8920 7998 7617 7315 8787 9417 2416 5096 8805 5685 5214 2283 4321 8316 8532 5934 3261 4025 5864 2692 9602 8909 5760 2421 5256 65 2341 9822 8996 8429 1580 4066 6937 2352 542 7179 420 1829 9124 755 5413 9249 2453 6381 7863 5417 1432 7171 2613 1704 8202 262 323 4190 4469 5846 1446 5161 7047 8354 1309 3183 2517 4146 5665 3811 3763 5838 2513 1353 6357 8904 9487 7042 1454 9611 1846 7205 2281 8119 6269 4650 5285 2035 1827 174 4862 8253 8371 8058 7096 9012 1341 3061 6169 9614 3590 180 8455 3560 8315 9161 4020 115 4434 2912 8967 2750 7888 2946 87 9874 5152 8706 9658 457 5547 3291 1593 9632 8354 1507 5939 467 7035 2197 2049 4103 5520 9973 7771 5492 6418 8078 9871 7725 6994 5492 1743 7878 9015 4550 6731 6035 3958 1331 4453 2010 8840 2086 970 5007 5408 6542 5921 1062 980 1484 2958 2167 3791 9721 775 958 5813 6781 7953 6760 6765 1307 3066 2495 \n5665\n3531 8548 2232 7201 3203 2854 1533 4017 6735 2235 8761 3165 4268 6076 1292 4430 2948 8598 2339 7481 486 3760 1331 7049 7246 6056 8369 6776 7481 110 2942 4065 4100 6321 877 3270 2619 8931 4491 8117 9163 8827 7569 3209 6507 8054 3145 9366 783 2757 9124 6720 8705 1258 7841 9202 8765 998 7218 6009 2573 552 7534 1129 4815 5135 829 6503 1383 6174 1497 4920 9997 8415 9073 8034 4839 5745 4227 1914 5872 8636 2048 9866 7330 234 6579 3726 6 8316 8811 6679 7763 8196 9070 8201 7608 6014 7631 1006 4627 8811 8695 4192 916 6423 5015 1904 4344 612 2473 8087 7551 6631 9238 7302 8783 4162 4725 5570 8160 2547 1182 2084 3550 982 8940 350 4802 7095 7888 2083 2461 1841 9895 7458 609 100 3636 3255 8315 6629 3654 292 7016 3466 4433 8362 3795 5928 704 1685 5610 347 9658 4813 3831 7228 733 6789 5466 8541 1892 9763 437 895 4333 416 42 3254 9386 2622 1318 4905 3806 4071 1839 1631 3652 3729 7037 2898 6197 1338 3629 8524 5814 5263 3614 1480 7776 6635 5070 6050 5937 3822 6724 9320 767 9271 9214 3397 3201 5426 5088 8121 3281 8159 1607 885 9504 5427 4802 909 9766 8426 3014 120 529 5665 7711 8269 9818 120 6405 3270 1931 5745 8779 6253 4990 5541 2973 3258 1870 5637 6446 9060 9955 2114 7657 5302 9037 2464 8993 5854 670 7567 5244 3764 5159 9323 6078 6103 142 8253 4642 4056 2391 5256 3450 3002 7862 8301 8996 9973 2510 9338 5666 8305 8807 6886 3910 6659 9569 9502 9658 9076 2345 7599 8183 6435 3074 8907 2147 9600 8456 6952 3596 9977 4896 105 2905 5521 4618 4521 8961 9577 4359 6406 8341 822 4306 35 3156 5189 5066 9183 2099 7728 7832 9704 2302 3243 1878 8903 6066 1077 1048 7281 6116 5963 5845 4620 1262 3383 1902 9340 1440 6143 7323 5092 3876 2594 6866 4796 2667 1013 2209 2518 2173 7571 3504 7249 2138 338 4314 5555 9340 4044 5005 75 4286 6716 2028 763 7175 1403 1745 5994 9820 2998 1224 845 6701 9718 7530 2969 13 4369 7748 7282 7588 9299 1506 9011 9155 9268 1844 676 8651 3413 8552 6132 4595 8735 7063 6788 7183 3697 658 5617 5040 5932 92 7889 6500 1408 842 228 9117 6860 5894 9811 8175 4869 2440 7214 4449 8734 3291 8501 574 3184 3994 2867 3320 6046 2531 7671 7000 1601 9461 4780 8563 3601 8159 3215 6375 7842 2938 2100 395 5076 2834 4052 7898 6296 7081 9542 446 6390 3576 400 7205 9435 1730 8038 9381 1758 6822 1499 663 2823 2314 1132 3886 896 3285 3265 7202 9456 8601 6700 6526 8809 7462 1838 5853 8488 458 8442 4564 3881 902 9032 9048 3571 6295 1979 2244 17 3097 5300 4890 5559 2421 6731 4801 2399 8867 387 2461 7768 3654 2281 8089 4764 5281 6141 817 3807 5903 9503 5888 6894 4734 9615 7766 6419 4591 1120 555 1541 9908 6767 660 7938 531 5795 8877 3355 584 8827 3988 4683 1334 1260 3412 929 6888 515 363 1638 7124 6578 709 10000 3911 1608 4668 8312 2542 301 5756 5584 2041 4982 6387 9108 2446 5456 8662 4585 9258 8078 963 3171 408 7864 9426 9326 5214 3075 4867 6893 5939 2645 4118 1695 1904 1820 1188 9805 4242 6439 8223 4790 9485 2897 9512 440 6247 30 6087 2183 3584 5379 2263 4947 2035 2211 46 1606 1807 1849 6241 7993 1447 3307 814 5784 3696 5853 3414 2330 5055 8626 692 186 2879 7298 9451 4940 853 8980 8019 305 9634 7390 5387 6620 9440 6586 8745 7931 2750 7152 5065 9023 1886 5054 7220 8207 7258 6687 2780 4649 8246 1308 5916 4263 1413 917 1960 5018 1641 2947 2254 1329 8954 3084 7916 362 3207 1220 1279 2164 9043 4209 3430 2042 2252 482 9698 7338 6703 1073 4635 2187 6446 9322 5237 26 2431 4278 8811 1856 8079 891 3189 5209 4945 3964 9607 1013 3553 505 6527 4128 9295 191 3220 2682 9882 3248 6362 1169 345 4735 1500 3883 6995 37 2749 5657 2513 6379 9415 5345 812 5403 1878 8512 4249 4333 3417 5309 5150 3465 5319 6894 9639 7148 7844 5812 3163 3869 2821 8582 1115 3894 6996 2179 2248 7619 506 6651 1949 4599 5671 5409 6024 3075 9369 7756 1291 9299 1718 2287 587 5857 7207 6709 740 4045 2818 3511 5236 6381 3768 7553 3871 9025 249 8043 9598 2347 1473 6240 7291 8875 330 4433 8405 1857 2147 5077 748 1580 3367 3985 3622 6124 5424 9474 4163 477 2918 8052 6693 642 6460 6792 6182 9577 2595 5046 5008 6571 710 9233 320 2401 5430 1590 1185 8444 1448 4806 8071 9584 7408 4819 2370 7699 1485 6327 7088 902 1992 8519 9653 1530 5645 2652 8795 9023 215 8452 7621 1094 5848 3779 288 2969 3997 3675 5438 7083 8671 1470 7919 8694 5930 6712 3633 1301 8152 1903 8981 9918 1025 4578 601 6015 5273 8818 9147 4748 7318 3476 9866 2964 4730 2599 6073 3438 8411 380 2728 8435 7979 1669 4375 5299 7831 2887 277 4829 7101 3510 4311 9153 9597 5318 4272 7312 4042 1986 638 8653 8500 8493 9550 6685 2722 5270 4760 4390 8164 6265 6050 3219 6705 5375 520 2008 6934 9998 394 2329 7796 1002 4909 496 9124 6433 2231 2788 7592 9653 3020 927 5838 4699 8691 4686 5212 8725 8329 6929 7454 8974 4068 4856 610 1599 3012 6744 2782 1366 1524 8103 7706 406 5993 409 3747 3020 227 2826 6935 6526 9697 1341 5514 6014 5146 7941 7992 2337 4906 5630 5833 6984 8662 3359 841 1269 6290 1671 5389 5980 8733 1578 2511 5271 6586 9230 6614 4559 5660 1901 9611 4005 6822 996 6975 3111 4445 721 2687 2492 2529 5606 166 6844 7464 8829 3273 8974 4284 8974 2493 252 1624 5548 2813 9522 1272 120 8711 9665 7246 2476 4233 3181 4980 2407 5263 6212 361 378 4918 4064 1884 6142 7374 4828 2286 6149 8491 3942 2588 8894 3417 1197 8112 3511 2269 3789 7931 3527 8420 5556 2556 548 9044 3162 6245 583 2211 3752 1201 3739 665 3431 3366 7420 6482 201 7182 1089 683 5891 1257 9113 7555 8807 7163 6715 9179 1006 4539 8651 7838 9933 3784 9236 7085 9142 6870 860 5138 3902 2176 9957 2664 5584 9137 2225 9305 7323 6382 3570 4241 1187 5510 3362 3602 5469 9419 7027 2346 4554 7480 8755 735 102 5188 8684 4116 5926 5170 2352 7351 2012 2784 7422 1654 311 5587 385 4403 7715 7982 315 7353 1366 5440 9517 1702 3987 2027 4838 4217 2380 775 2516 6360 2882 5912 5817 1501 7998 7201 743 3801 6713 8357 3797 4389 4414 9595 1344 5552 9345 3074 8060 9670 1398 8022 1066 8440 6384 5913 1134 3398 7351 9582 617 6882 4847 8171 1795 9035 5042 6540 1216 1220 7417 1514 6147 2420 5359 5969 8610 2205 9498 393 7642 5185 5078 3520 2982 4228 3697 1230 2519 5549 9091 8455 6263 3806 7455 983 8552 892 8022 5168 446 3459 8686 5897 9737 2928 1130 919 7430 1278 3137 7318 9786 7339 1111 6641 2501 7605 2467 7695 1509 9991 751 5149 527 595 3333 9464 9774 4630 9453 7882 4436 6033 4104 2238 8324 899 2953 4484 8669 8584 9770 3721 8963 3987 173 8347 8206 973 1632 7774 5044 9232 336 8186 7194 3713 5100 8158 663 7159 7425 8000 6315 703 4921 6208 7384 5431 5504 7350 2935 4121 8034 3799 6884 9653 5827 532 2799 5897 499 2977 8101 9971 6262 929 6178 8769 2989 9263 2627 398 5614 8651 3623 8358 9794 7232 58 6261 1469 7340 6574 8015 5647 6917 9304 138 8063 3318 6038 391 4945 2562 9425 2084 8423 8805 7290 8722 4859 4585 1847 8372 7883 818 3109 3454 4983 7456 4088 6985 3324 2524 9711 7277 5268 287 6575 2691 2495 5647 1346 8729 8186 2142 7965 1618 3769 5204 6918 6636 7462 3529 6103 6514 2354 1744 4491 262 4218 8264 5998 9108 2642 624 6431 4698 303 5413 5950 1554 1345 9878 4720 2130 2591 3938 8623 3676 3110 6262 6903 2294 3095 9461 8392 8834 601 3495 1940 6009 1501 1560 2659 9879 9956 4305 2913 4733 4184 1583 7706 6933 1608 2632 8900 5215 5589 2893 9316 8805 4469 5056 1593 3015 7413 1647 8993 3123 2098 6927 4439 4200 2601 436 7283 6037 1272 4096 874 4652 442 7680 6903 1214 4913 1315 9765 1575 7164 3336 9248 1634 5117 2597 2877 9293 4823 6319 4721 500 4060 3150 9321 4562 8143 2898 8499 6048 9382 2590 3887 2157 1320 7394 5222 4206 8232 6677 4197 3569 8177 5139 7850 9747 9457 5949 4468 7889 231 5563 9405 2818 3347 349 3159 5519 6053 2229 4975 1020 6239 6560 325 7112 3104 2862 3673 8667 7515 1721 554 3535 1570 2578 1219 9353 3440 5161 9052 6450 3928 5220 9364 7843 2426 3548 9766 2385 1821 6523 1351 5493 4629 5181 9937 1964 1572 4918 3478 4042 3091 9671 8676 8105 6582 634 6674 9286 1479 7839 6141 9755 9842 7807 1643 2084 9439 9370 6175 5759 2913 9659 4595 9850 2470 3760 1727 8631 8759 723 8224 94 3230 6472 4955 6480 6520 3483 8115 6987 1246 5509 3547 6060 2345 293 3748 1010 8728 9013 253 4402 91 1078 9358 5021 1128 1311 4529 3580 202 9351 7914 2377 4887 342 3886 9701 7408 6363 8810 6192 2545 7246 3405 6124 5015 595 299 7767 278 3132 7935 8348 8561 7816 4976 4667 7921 3657 7622 7252 489 6060 6966 735 5645 4378 2690 3469 5087 4564 1974 6111 5357 734 4861 7148 3537 7995 762 516 3290 7770 9968 7458 2537 4638 9760 9950 8436 7192 6528 6590 5336 7777 5749 902 8154 505 9017 9697 6634 7090 3551 9005 4829 9319 5639 3427 2780 122 7007 247 8753 5413 1174 4215 6047 3931 6719 368 4297 8422 793 7496 282 12 3181 4351 4577 5754 7695 4090 5322 3120 4896 6547 7317 9344 251 8996 3113 7614 8267 3228 7074 6298 6091 5666 1142 9859 9441 5985 2809 7287 6586 9692 5904 2397 7250 1964 6198 7415 7468 8328 4816 5202 4579 3445 9619 5948 2541 9666 9275 3851 5890 1082 1927 5904 3583 4757 3144 8281 3846 6180 7365 6357 5393 9008 5004 4683 6288 8530 2511 5252 6590 5944 7930 9409 8329 7104 4869 3935 2280 6753 6575 5469 8989 581 4632 2529 8747 3416 7575 1745 7464 4091 6580 1656 6287 7071 7557 4259 9736 3872 2031 5909 3981 2549 2748 730 5393 2633 1017 2381 942 7492 3285 4898 1148 5428 3009 8023 4052 5028 3575 7242 1461 4257 9382 488 1254 1728 9524 31 3266 8186 4081 2169 2619 9542 774 7599 7450 223 1490 6237 8688 3047 2523 2360 9044 923 1518 7765 6588 7121 9237 8282 2045 6692 2295 542 6972 6904 1352 1378 5139 1316 2516 7754 7560 612 5430 4719 7405 3964 3396 1088 7757 9240 1190 7513 7227 2208 771 3946 80 4917 12 8566 7455 3923 2055 6003 6621 302 9377 5464 5677 1116 5024 2118 5324 8215 3487 172 1641 2633 7336 5888 7139 7722 1591 6360 7281 9160 3252 8562 2784 3729 2012 9302 5744 2201 2302 9085 3574 3899 6974 8224 9852 1712 6786 4135 2641 3567 2315 829 3255 1469 2994 5137 902 4880 2116 5617 6050 3312 5521 2015 764 3941 9008 8434 485 6747 9821 2039 5300 5471 5765 5335 5647 3831 2264 6043 6645 3027 9719 3012 5486 9613 9106 6673 4117 5873 9914 1631 9778 7486 1174 1775 9520 470 735 3346 8429 11 5180 5059 8176 5104 2769 8733 2654 7530 1005 7357 9788 147 6016 5906 4843 6018 800 8898 192 425 6494 7012 52 325 1717 430 8054 770 3962 5340 4873 5187 3700 5442 1547 2177 7639 6576 5222 7884 225 9710 9246 9892 6274 3800 8106 5541 8551 8732 5004 355 3150 4029 5952 8700 2292 1871 8630 6076 2015 695 3627 410 6947 9555 5646 7783 6755 3147 2546 6785 6052 6887 2700 7832 9593 7457 8614 2877 1241 2870 3156 9266 6135 3943 5710 3951 6492 5974 5808 8699 536 2373 8736 3136 464 5387 7125 4638 320 3637 2351 1965 7400 5983 7183 3050 2670 6171 7807 3004 3474 7179 2746 4678 1293 6696 496 477 1189 2439 3523 1405 1918 2634 5476 9403 7606 3576 532 9032 3310 593 407 2358 9676 7662 1603 4270 8919 9340 6965 6214 927 2673 8019 9618 4618 9162 2673 3681 5602 1442 2169 5595 6710 2610 5528 421 1499 7472 6532 7058 2472 8015 896 781 6501 542 2765 1125 1942 9621 2188 5560 2543 1098 3672 3922 8046 987 3772 4170 3185 4164 8885 8325 1924 8901 146 9625 2024 7317 5558 3360 2167 3905 5411 6169 7949 531 1966 5782 5974 8970 3891 4571 2627 837 8609 367 366 2712 8074 4663 6015 2323 3944 4935 5131 8993 6497 4985 4097 5807 8186 1733 2945 813 6753 5791 60 9041 8838 8272 9425 544 9556 7995 8812 5335 6538 5319 2331 6191 152 6882 977 3476 1375 9873 6858 2003 3223 1685 2790 8942 8303 763 8133 6474 1523 6751 9876 6053 1780 2355 6222 5950 9991 8713 8540 857 2762 1293 1503 5522 4877 8978 1351 2388 9552 7361 2024 4233 9742 9405 1345 6153 3469 8807 864 4321 850 5325 6664 9042 235 3418 2749 7915 5554 4330 3558 5668 1033 9062 4510 5419 1718 8054 3201 7752 4216 5833 7377 1108 8163 1037 1111 5960 4374 4039 5145 5199 4443 7713 9224 8107 2311 8922 9071 5237 5376 4893 9165 7488 279 7927 7102 4854 9049 51 7399 1310 6144 314 4457 5415 4100 3598 8787 4185 6732 7138 7887 7909 2735 1155 9146 8453 5410 5171 8415 8042 5898 79 6188 7743 7691 762 8853 4054 4311 5283 7091 2395 4158 3519 1592 5345 3273 8967 5748 6222 4334 7159 6044 4968 910 3451 9649 346 5129 6250 947 6542 7488 1083 7099 9820 2797 9729 161 3450 952 710 3713 3934 5605 5448 8488 5620 386 3943 3100 6860 8073 2637 8679 4426 4857 7421 7182 5390 7208 5193 634 8999 5907 806 822 9937 5973 6715 5435 5565 8724 3523 4685 2963 186 4893 3583 8102 8617 5383 8166 5675 3353 1443 4694 9322 3017 6904 9602 968 2596 3405 5688 7517 1254 9796 5408 3775 3695 1491 3804 7210 1460 1777 839 7873 4777 8381 8033 5094 9360 8653 1688 4898 3204 4183 8427 4792 9257 4854 3503 2313 674 7044 2649 7255 182 3346 2032 783 716 8387 5530 18 8830 403 9370 2940 5800 3911 3023 4138 3157 4681 6239 3251 6404 2190 3857 6821 1663 7573 2423 3432 924 3056 8439 3364 2217 4053 4504 6964 7207 3561 2568 2427 5403 9071 5855 295 4952 61 8211 9572 4747 2957 9091 5139 2307 8111 9369 4002 829 9954 3945 8369 6973 1444 374 9918 1508 132 9599 6840 510 5189 9173 4225 5841 7276 4627 4862 9169 6038 4212 9162 21 1682 6529 9916 2971 3632 3708 6341 8955 592 9143 4070 4517 73 1460 271 5350 8168 6919 5282 7527 1692 3320 8240 7720 7240 1045 108 8048 868 9477 9292 3121 6879 6026 1843 6231 7443 5975 6222 3343 1048 5689 9585 6795 9649 3076 1210 1922 1690 9864 5668 5772 4412 6653 8251 1042 7646 7033 7158 8176 6903 3531 8055 4014 5440 9064 3196 4278 4698 9176 3789 3875 3643 1045 4529 7692 6615 2634 7130 3711 738 865 6214 7113 7790 5804 3251 3547 4541 2952 1109 79 7690 3950 3058 594 1291 5711 7106 5879 1926 87 2194 2963 2983 7463 3947 8562 8271 7912 4686 9581 2701 1690 9023 3723 8863 924 5503 907 9925 2121 9973 2962 3264 696 9918 4194 3482 9060 4760 117 690 41 2029 6599 9376 902 7569 3810 1599 421 4123 1547 453 7206 9827 6637 7333 492 7698 4649 6176 8472 1134 2137 7256 1030 8340 6991 520 5332 6683 5617 7084 6344 642 1005 9132 7400 3902 9542 6461 2390 7442 6124 3233 2877 8248 9822 2411 7732 8467 8037 8681 2072 5755 5391 9731 4604 7200 5310 1861 7613 1894 6456 2539 8590 2079 100 2023 4107 8017 1289 6408 8000 6345 1528 7427 275 119 5147 4179 5571 1736 1584 9059 4698 7049 10 802 1851 9225 5537 1112 2163 9005 5164 3520 7794 8720 1779 8134 3427 4355 8088 615 6331 9254 5566 1118 9831 7993 4157 331 1088 3602 3993 3369 5679 3837 3461 9872 8752 806 9160 7529 6762 9889 2152 8327 2700 8889 9054 4020 4981 8520 3182 952 3500 8517 4935 6562 2217 9355 3339 8350 7646 3684 142 7085 3337 8577 9825 9302 2278 3112 74 3145 5314 2266 9142 134 3194 4656 9533 7792 4428 206 810 3704 5499 3332 5107 9833 481 8089 9531 1967 3794 2556 7989 6874 4816 7774 3701 8208 1785 1037 2351 2666 1163 115 5939 6845 3614 3740 5402 8637 9446 2223 8614 8608 5692 4208 3457 2697 4294 2879 4181 1381 2570 362 3243 4884 7723 8009 1832 2654 2878 1864 8203 7521 3684 5266 6332 6547 7417 6170 986 9077 4571 1118 9611 2500 8254 230 2493 5588 1243 674 8093 7479 5225 5188 5793 4923 1754 3650 7055 3709 1542 855 9539 2001 6742 5039 7896 5243 6247 1560 607 5745 5702 8579 7172 8362 6448 3058 779 1261 6613 1311 935 1485 5919 8858 8696 3101 9680 5850 1984 759 4666 7787 4499 8427 8621 1128 2213 9074 6605 4422 8468 6511 1491 5347 2276 5839 4839 8275 5047 6184 8942 6112 2019 9576 278 8864 8099 3818 7651 8503 3559 2691 4972 7818 3021 502 7107 8060 4889 955 847 4678 2930 8161 1998 3548 7739 1523 8499 4153 9800 9500 4829 3165 8825 7379 1508 1875 4128 2848 4431 789 3015 8729 3550 6678 4204 942 1119 3841 3387 4513 4939 3779 3110 6462 4202 2996 5834 777 3254 4109 2371 3976 7782 2004 8175 1260 3807 8306 2735 5753 2542 8783 5629 9620 9891 9407 6345 13 5291 4117 790 1746 6709 1888 4482 6181 8036 1066 4389 3348 734 8933 3464 2092 7256 4822 4069 2813 6119 8264 860 9384 1924 7433 4236 8590 9073 5561 57 4110 3077 9714 8084 678 9077 3782 2290 8353 501 9962 9759 2914 491 1326 4948 9172 9059 3373 6686 4026 7055 65 4869 8915 8557 8228 4993 8188 4473 7943 7883 1379 2798 5196 467 1769 3187 5727 9508 585 4524 6164 8243 7373 5383 7647 8941 4865 5730 4676 6307 5435 674 7468 9739 8161 232 7119 5616 8453 8981 7696 1877 9858 5183 9113 223 6817 5197 6721 4901 8647 9146 3352 1507 2933 1199 9313 9546 1067 2790 2711 928 3901 9029 8566 5548 2669 3656 52 3009 928 8524 9266 7411 4851 6759 1756 6836 1078 5419 8479 6751 627 9957 7724 1249 8134 4160 5070 7315 226 7164 2384 7550 8933 275 6772 4499 7769 2655 1351 2618 6573 470 9811 8982 4411 957 84 6558 834 1295 2603 7562 6842 4428 3196 558 7553 2065 8995 8128 3936 4118 1490 6002 2812 5194 1646 782 7167 7389 7710 3500 1521 4768 2699 5147 1181 7320 4098 7101 5382 8011 5571 1672 5426 62 6285 8672 8891 2805 1681 6189 6545 9454 5547 6672 950 1092 8529 2715 1540 9439 7343 322 6638 299 8855 6836 354 8645 4954 4067 6791 5994 4694 2888 9933 6514 2689 1492 4436 203 6620 1164 869 4398 2763 6782 9476 8006 9940 7831 8291 3081 7504 5950 6594 9804 881 8368 6960 5969 4833 4598 3758 8920 2061 9672 6776 5370 9629 2566 9071 4599 3740 8220 350 2347 34 4764 1008 5234 3929 9517 3243 8379 5919 7715 5671 3904 6992 5223 368 9116 1295 1924 9255 7444 1670 1410 6939 228 7629 3256 4978 8021 7771 2438 5 9735 7287 9083 3855 2680 9699 8102 9405 7513 4129 5392 8352 3017 4870 8135 4577 1343 3090 6998 1001 9998 9396 1694 4952 4680 5852 7668 134 8726 6463 6078 8263 6544 7404 6336 3071 7067 8527 3378 9249 1931 3208 7593 1817 2855 1264 3010 7872 4656 7558 5677 7957 9111 1042 2004 4310 940 9640 5939 2264 903 9793 9668 1686 7457 6824 2111 6495 924 7981 8271 4357 2241 9044 8421 1942 2961 593 9809 182 5855 4291 2874 5609 8490 7138 2904 4199 9687 9066 5066 3767 9969 9123 388 573 6948 2131 1770 7961 4008 6121 7079 1281 8250 8050 6327 1937 6982 2407 3861 2483 1783 1173 8015 9410 9462 5996 1467 776 3142 2124 806 5115 7791 9821 2010 6582 179 6376 3803 2221 6374 2208 6033 7771 2076 7288 1601 3917 4358 4980 8241 1755 2146 3112 3471 7433 1501 381 9069 6789 8634 4866 7510 2462 9092 9050 8501 3631 1301 3465 2403 4745 4891 3647 9984 4363 6506 7198 4355 541 4501 4295 8197 1777 3599 4367 3323 4389 8495 6968 753 322 2207 9325 5057 6391 1759 4668 1221 828 3844 8873 971 4572 2957 4455 1366 8926 3597 1186 9300 8839 6645 8710 465 5981 7210 4318 4296 1582 6740 4831 252 5009 8491 2809 6248 8341 5120 2470 7188 947 6251 4375 5281 1434 1865 3743 5393 6683 5737 5565 1965 6825 8181 3206 6964 5445 6259 664 9133 4684 3489 5926 8871 1728 6792 8800 5451 6671 4805 3553 5266 6974 9075 1918 2964 3863 6970 8064 9740 4526 806 2026 5527 2852 2422 5192 8559 1298 5082 8686 7115 993 9749 1262 6908 4729 6750 6267 3047 9390 2065 5317 9184 9959 7727 6813 3110 7522 9145 31 1730 7336 9948 845 7739 9999 2718 4863 567 7655 8821 4129 4743 7709 9607 6324 1860 3365 734 3761 982 871 2857 9079 3114 5419 1476 1071 9745 9355 752 65 8360 6375 827 7072 2151 1465 1291 4673 6626 7794 1164 4587 1677 7388 7553 5998 3963 7449 9429 4968 908 1744 523 2674 4491 1014 8597 883 6670 2112 9425 5177 6595 3830 1572 905 2230 258 7608 9846 359 4975 8052 4789 7540 3901 578 726 8399 3839 9892 6285 6067 7174 1951 1085 4067 7643 4573 7953 1446 3213 8045 9536 7314 880 7500 966 6402 9315 1958 8179 210 1981 666 123 8826 827 9470 8477 4444 2648 3932 8376 310 4388 847 4118 1270 9017 8467 2729 4492 9005 8665 6091 4449 6120 110 4401 1293 4476 6557 7920 3341 5385 356 6705 6203 7773 7213 4006 1457 5611 8693 5102 8198 1757 9594 5809 3945 2276 3339 9386 8371 4285 8125 115 5214 3890 1163 204 9301 3194 8278 7735 3419 5112 1256 1950 2560 5563 6502 2328 3529 6528 5840 6928 4348 2521 5511 2140 1805 5876 9800 3909 9866 6536 4748 3228 1465 8538 7409 3142 843 4169 22 3549 4792 1125 8284 7610 9069 6091 4966 8450 8579 2552 8558 130 4979 5768 9542 9251 8466 9571 8179 5127 4285 4577 1628 9190 5934 4774 9167 5401 4267 5436 3870 4053 1509 9306 5226 1852 3610 8804 9361 1626 6 5765 6231 5080 7467 374 6666 1850 8816 1696 527 1668 7007 2137 8967 8633 5057 7490 4867 4573 3750 8776 7863 6994 6602 7734 6829 7950 8998 6823 2239 4718 1804 6106 4574 5981 5672 2159 579 7873 6215 7797 8820 1849 7080 6434 7885 5287 5574 2672 1824 7231 4732 3650 5691 356 3427 1216 7286 6955 1475 9096 4041 5751 4017 8694 3580 8189 6544 3969 5141 8257 7170 4176 9961 6263 2748 413 1247 5521 3112 216 431 5567 4638 3490 1654 5460 5750 6344 2561 6157 7284 4693 1695 2856 7366 9440 6362 1628 5595 5119 3712 728 2485 6002 2297 3053 7858 7099 3807 3095 2710 177 5306 1931 306 1068 6494 7379 7168 9101 3724 9442 3623 3211 9124 8683 6568 5120 4391 2919 637 3537 2727 8144 6960 4169 9963 8765 320 2318 2261 7129 9319 5772 1495 9138 2387 2830 37 6233 125 7325 2765 4046 1436 2830 3888 7063 3085 5908 352 743 2285 4305 8775 3749 4044 2218 7267 7049 2741 7105 655 8870 7884 1500 5272 6903 1350 6075 8846 5913 4646 7839 8934 5449 269 3692 4227 670 8987 7825 385 9131 1310 7867 9392 4978 7567 9845 3919 5778 7054 4863 8099 2231 7491 4196 7027 2174 7402 5922 9085 1803 9335 1029 1103 4601 5428 4820 1010 5019 7465 4312 4783 5553 9494 1994 4550 1628 1233 5984 7771 8194 9849 3149 7544 2201 4063 2536 213 5572 7896 368 7159 8553 9882 6605 4227 4119 7521 1625 6228 2410 4489 1766 5605 4325 9787 9751 7389 3448 2232 1488 6359 8084 6520 591 8589 2558 343 5323 8735 4038 4909 2466 7984 3497 2020 5943 7811 1293 6906 1228 9069 8708 1634 7054 2920 8751 1137 3105 5477 8114 8143 4011 3704 426 2890 1488 5585 4974 9698 5334 8079 5583 4205 3799 2482 7461 7185 9093 7096 812 3580 7862 9392 1906 1769 5762 1380 5724 2568 7877 5334 7171 2440 5758 7840 6778 5547 9363 8378 7826 6925 938 3975 5535 3469 1472 1796 5136 1990 994 1485 9714 3164 1175 4638 7888 5522 2869 1206 3346 8446 9443 1074 7608 1452 3811 8108 3096 9091 7022 6019 9386 2587 7237 4578 3436 6962 7956 2199 3049 8776 4101 8243 1553 5949 573 9051 1139 3596 6038 5065 1340 9243 9822 2158 2446 5890 444 6740 2941 4554 919 7452 4264 985 7531 6987 2084 5956 3847 4665 4336 5875 443 3950 6942 4366 4715 9583 8669 6007 2741 4609 8479 2837 1273 7266 523 1260 1286 2246 4980 6215 1107 308 5915 2162 4725 5042 3510 5295 7599 5016 2498 8139 7565 7059 5063 8755 156 7318 6447 2693 3609 6324 5388 7882 1561 4665 2924 5684 1642 3 6507 1347 212 5594 9360 5896 8598 3794 1381 4973 5624 5455 7261 3112 1767 7102 3664 8745 6505 2833 4113 3351 2832 2368 7754 1041 2686 8114 6769 7482 2763 4385 3598 8179 7562 4493 612 5439 7614 9724 9638 4224 570 7077 3725 8905 3208 5894 1812 2561 6853 564 223 2615 5992 6364 5045 69 5030 3514 8411 286 6993 1857 3769 6266 5820 6854 9678 4733 3151 9478 2420 5389 8320 4622 7020 4710 6819 5057 3992 6113 6734 1792 4937 5705 8869 5826 4354 2563 4935 5905 7583 1528 4153 4158 7840 9789 6372 7745 8781 5425 2205 267 3611 7188 184 1088 2993 9510 3082 1305 5886 8983 4773 3073 6806 5745 6807 5835 3792 5488 9272 896 530 9861 5807 7517 3063 9430 241 6803 3062 4646 5104 8811 5604 2399 6207 2495 2457 9005 33 8560 7518 5367 9864 8829 7921 5296 4684 5093 9421 3009 9502 3314 9570 260 4559 800 6555 9389 3623 9067 1114 5880 4624 6947 9559 3834 3277 3465 2931 8081 1471 9424 897 4371 1485 9250 8666 9888 5121 9415 5697 9667 5269 4523 3218 4875 5160 984 8888 6848 7518 2437 9057 8221 7134 7101 3594 6951 5612 6291 399 589 558 4036 2842 334 161 2989 9924 383 7632 14 549 1163 9070 4968 6376 3147 4478 4496 8704 123 4550 3158 8047 9120 5966 9401 7093 9987 8207 1914 5948 9053 4119 5815 5578 6515 6680 3969 4741 4740 1527 6656 5673 8582 9826 917 6592 9607 7251 5426 3775 7231 1249 172 1713 1280 180 3441 4543 4882 6768 4452 7611 40 3484 6240 5287 914 7216 9557 8796 5378 9831 718 2509 8644 9879 9618 747 4516 779 6071 1983 8395 7160 6126 2124 3291 3846 1963 3189 3578 7734 5292 2178 9282 9349 5845 7732 9922 4374 9840 3191 2198 6871 6204 1618 6123 3549 930 9958 937 9336 8729 8331 6287 2753 7591 4400 68 695 919 3635 2571 3593 6546 4011 1078 8226 462 6277 3529 6024 4467 6778 3860 6700 3242 2047 1331 6251 8399 7719 1126 5529 6547 892 5255 4043 1524 8178 8351 2070 432 2739 836 194 7466 4027 7928 3246 5772 5834 7190 9367 7013 3433 5870 6599 357 1199 8711 3844 6548 3377 5988 1647 370 9102 4857 4186 7935 929 6807 8631 2632 9181 7101 517 304 9605 5192 1270 7803 2835 5384 8231 7707 5730 13 8339 7043 237 8035 3654 3774 6875 5650 7172 7507 8443 3519 717 272 4316 8220 8130 7624 466 6751 4260 7728 1432 6622 3093 7786 7419 1697 5252 3096 8875 9822 7617 7740 995 1063 5936 1541 1915 6846 9250 8924 7656 6613 7643 7357 8280 8912 4358 5466 1816 4100 5002 6474 1607 2796 7576 7900 4540 3546 8890 7412 7371 491 8763 1728 3581 3956 6520 7668 6376 2590 4518 6342 261 4184 1413 2642 9037 837 8407 2494 2271 8197 2043 9807 1081 2690 2282 4151 7760 6010 4470 2491 2203 7230 3731 5384 6701 6118 4298 6430 5336 8732 1177 9800 5067 6477 7935 5506 7561 3380 6285 9195 3344 4554 5533 3689 2509 2619 1812 3963 3576 7734 1525 1458 9557 8498 5521 8387 86 5175 2528 9718 3286 1744 7862 7856 7942 6797 1599 9189 9853 5723 5082 5174 7770 9447 673 9005 1600 8365 624 6989 9714 6546 4937 877 4784 3987 4194 5670 5246 5167 6220 7383 7624 5153 7782 7511 2210 6104 3638 538 9974 3339 4145 1387 6999 8806 5777 8644 6332 7691 7461 661 1854 3449 7375 8184 9802 6509 183 5591 640 9734 5355 8230 4815 5266 316 4144 316 4337 8940 2922 3938 8286 8364 1433 621 4936 36 9710 4016 3223 9692 4565 4151 2823 2443 1877 6617 1627 5790 1100 116 3277 9124 3164 5965 787 4461 518 6966 1224 2726 7086 4455 5515 4888 9017 1525 2277 7605 2376 2956 3349 6064 4764 4843 6463 786 1842 6880 3411 6913 9445 980 7263 3747 2511 8595 7838 2375 436 1288 9754 2368 4033 2758 5532 1541 6401 4547 4433 6512 8209 4019 5175 3289 6801 7505 4318 7128 1220 6451 6888 1575 8506 5556 7991 184 1786 7104 5387 5777 8477 4921 9147 5838 2518 3052 9595 4620 7495 2515 4021 9839 6239 5409 2090 5371 126 6050 5803 709 4536 5896 6346 29 4869 1080 5653 1224 5923 5643 127 1128 9101 2816 2942 9969 5331 9629 9526 1930 1962 7761 2624 5314 1052 5229 9068 9083 9836 4390 949 9484 1247 178 2613 9680 2915 1131 172 4779 4026 5041 5829 6685 9909 3518 1096 8950 9075 885 8820 822 7218 6343 1506 3087 8694 2434 6988 5999 4690 7198 5206 6307 2744 1395 7366 6553 9700 465 9224 6368 3826 5079 8768 9000 9377 9492 9524 757 7369 3338 5276 7910 3406 9660 6329 3564 4995 2320 2501 151 9985 1668 3505 648 6731 5319 5916 5336 4991 974 8612 358 3021 3168 3614 9531 862 8549 3457 8375 6817 7228 4224 3896 5511 6542 2727 1953 6280 1856 4270 201 2231 2381 9185 9766 3784 8169 602 4323 1169 9754 1492 8880 6589 8496 6129 9667 9438 7295 2277 7562 2127 4555 3343 3000 3643 6439 2709 419 2926 7470 223 6457 6846 4125 9873 5778 4585 1984 9632 5024 3520 6637 7923 9094 8898 5898 9574 8486 7661 4062 6815 2693 7803 9248 2021 1361 9898 7024 8450 8293 5754 9636 3562 2781 2291 5679 638 5305 8588 3414 1916 5628 1900 760 5049 7795 4041 3559 7217 7003 5067 9965 4419 6735 8578 4273 3221 7966 1574 7064 6336 7978 3983 836 3508 1234 3735 4146 8598 6468 383 615 4449 5209 6606 2171 1653 7712 3914 185 4392 4851 870 6863 9532 4738 8702 9383 4293 7967 1780 1276 9215 804 8826 2847 7935 8071 731 6322 60 9164 937 7457 4062 4080 2698 3677 6402 4254 4048 3336 61 6343 7436 7623 8992 5851 6526 9187 4950 7797 1905 6340 9167 1413 2700 2479 336 8732 4989 3793 6939 13 1667 9526 2956 3846 6859 5670 9862 8134 7226 5266 548 6506 8205 8192 4863 6645 4659 7799 8334 1566 3881 6078 8700 5573 7430 7929 9939 1225 9246 3855 5747 4751 8233 3194 4929 2399 233 7100 6032 3605 2600 829 509 2954 3869 3318 2622 4769 3722 377 5369 5023 2193 3221 6895 5564 7319 2163 9532 4234 5133 4715 1807 7612 3513 1320 6912 4457 1423 1214 6164 286 963 3418 6776 7617 8653 3798 8908 4311 5976 7705 3180 759 6948 9207 5976 8501 8366 9438 6071 551 8628 6485 7139 3583 1519 6892 76 7881 3208 78 7499 6928 2350 9726 9620 8871 7820 8931 8634 6876 4258 4662 5532 4980 2552 5111 4306 7978 4917 1015 811 554 2279 9498 1733 7720 964 1681 1599 3708 6720 7857 4418 3800 683 3552 1260 665 8461 8509 1356 9493 9564 1308 4270 4213 7362 7901 9891 1166 7601 9571 522 8140 3023 792 9210 5205 3983 3574 2478 6405 8548 350 7533 1458 2885 3754 2354 71 1069 6140 9359 261 9329 4903 5970 7133 4907 529 7377 8298 8094 4207 3324 3146 5892 2041 3554 7981 6841 3472 6037 623 4301 2731 3984 991 2030 6433 9341 8440 7656 8791 6946 2672 5722 659 5730 8755 9229 6504 879 6375 4693 6101 7436 2347 8120 7199 9207 4784 245 7976 8916 6472 6254 850 7209 9269 7496 1257 952 4196 3218 6563 8968 2685 5040 6265 4232 6574 6901 9890 5603 6745 206 8520 6104 8876 5983 362 1446 4926 3208 7427 7209 442 5658 3824 1283 3720 5074 7548 1721 4466 7643 1941 9517 9466 206 3043 2612 7944 7797 5418 9763 6120 4380 6982 1912 2889 \n3165\n9982 833 3785 1951 7058 589 7174 6805 4017 3933 2367 8950 8122 1295 2736 3741 8448 6427 3969 9828 4796 3108 5576 8463 982 7092 6636 5577 4731 5492 5641 2323 356 7894 4412 3065 2751 4461 3450 6191 7838 4168 2868 3968 9245 635 6279 531 2713 612 6456 2811 784 9725 1124 9447 7420 710 9038 2424 4970 7890 3072 5827 7101 5006 1409 6634 8648 3274 8425 8358 7035 4793 6676 8861 9537 5765 375 7633 3851 4098 4219 119 3576 3416 5333 9884 78 2172 7335 1711 776 9249 3126 8544 5502 8647 3402 89 1747 8814 5310 5392 4039 3931 7635 575 1261 8325 2351 885 8922 3385 4951 3691 8121 4539 6602 7835 2986 9149 9461 2010 3019 6221 8503 3003 8750 4960 2151 5859 614 4052 8860 5568 8304 9073 6008 7214 5706 6834 9460 8397 1936 7190 9258 8002 2877 9436 8845 6736 1453 7278 4171 9139 1827 9211 3271 9747 3538 8844 8770 8766 6763 8728 4991 8111 9816 9771 8821 8733 9120 2505 3446 8875 2753 3128 4886 8548 1937 3725 5778 7603 8107 4825 8813 2194 6988 7392 8590 8174 3867 4496 8121 1097 2823 3705 9968 4504 8741 9729 9195 5210 2296 2618 9134 3133 9915 2680 6241 9087 2814 4084 8810 6261 131 1976 9010 6082 2475 9520 6907 6206 4009 8863 3032 1712 2852 714 5538 7645 3480 8701 3228 6301 4412 6892 2845 7429 3748 8076 5150 6213 3134 9131 8049 230 3616 5299 1201 1330 9860 3275 6618 4703 912 2778 8002 9338 4848 2222 9018 8940 9134 2328 2492 7509 8804 5727 9663 4630 3494 551 5128 8790 9684 7115 1463 2583 926 4590 6679 3903 8073 5807 3732 1066 6259 5250 6250 5436 2262 8932 8002 7024 4108 6835 5516 9249 8919 8398 1593 2849 1552 6764 6240 1215 9823 8059 4508 3350 5164 4956 9349 127 243 3161 8711 1552 2256 5125 9910 8737 6676 7782 2797 7661 3849 9643 8014 4744 3655 8303 2819 3876 9600 3197 5373 8663 6536 3164 639 4079 6306 5633 4503 6066 5919 5070 9487 5283 6005 3631 3783 8094 247 6759 9010 2329 4250 1846 1869 3181 728 3970 9488 8892 6526 767 293 8781 8622 5252 6098 7207 5870 2293 1557 3555 6686 5698 8128 4805 9088 9396 6028 3031 4252 8484 5843 5843 9096 6225 8992 8667 9731 3271 887 4327 7225 9397 6867 3811 572 6755 6719 2538 2202 886 3582 5190 3963 2879 2153 1087 7370 4916 9018 1032 869 7736 9432 597 6330 5311 4267 704 4225 8759 3916 657 9445 4669 7222 6653 3121 2548 7867 1847 1674 8378 7104 3545 7465 9051 554 368 4922 6186 7301 4750 8739 8802 7979 7030 476 9632 9116 9837 5822 2659 6667 408 4603 8336 9216 1904 7163 1468 5016 9560 2865 6752 2282 7807 8233 2480 2865 5113 6521 646 6456 8565 1788 756 9932 8633 7137 7148 923 926 2082 9634 179 8102 6616 972 3102 6632 3978 1927 8249 1974 1390 437 5054 6262 4669 2885 5547 106 4471 8208 7353 9568 4016 6430 3672 6813 2626 4527 9829 2136 2284 7441 5849 8726 2503 5540 6196 9070 2001 2794 9749 6143 919 3509 1063 5864 5282 5590 1274 3860 4713 1393 2627 9364 6502 5585 6718 5270 6254 2618 777 8646 541 9951 2903 8505 6308 2667 5902 5753 2398 4838 7250 9907 4819 4412 2953 7960 7200 9782 9540 6514 3150 4129 495 3731 2496 4911 5058 7961 5572 9012 6600 2699 110 7656 1097 6489 7697 6598 3786 1750 3831 1814 2750 7439 5767 6205 1559 502 6898 1329 3456 3775 8845 2704 8403 7724 2410 4595 9400 9761 2421 3306 6620 3592 4173 3353 6084 7492 8438 237 5424 1246 6607 7445 7332 371 3381 9033 1388 1305 1366 295 2798 7621 8199 516 1071 3819 3656 6963 3865 1352 1401 8170 2616 663 8325 3075 2627 2409 7611 3786 3386 7556 1852 1624 3755 7558 8849 7553 8292 4260 7779 1341 5245 4852 2723 6368 6288 4886 505 4933 2493 8659 5038 7252 2816 7624 8640 2860 8587 1119 5253 1816 2062 8247 9532 4865 7477 3268 1389 3144 3598 7554 1773 9879 7681 8204 9952 48 4265 9852 5691 7485 1198 2215 9257 9525 3478 9888 3303 8532 9177 6432 989 7694 5792 6129 9273 8546 524 5046 5424 8370 8447 1858 3197 5585 9532 8877 7686 9896 8222 903 6921 9395 2466 6462 2456 1524 208 237 1340 8815 9995 1946 2739 6290 1191 8128 4039 2424 6730 2747 7012 998 1287 6501 140 5024 2819 3067 3324 7102 3569 889 159 2502 5224 9976 1933 5398 6593 9514 9280 1708 4923 8574 4753 6301 5003 2368 532 9842 7750 1687 3921 3311 3410 2777 9068 9416 6641 4652 1273 6245 2341 9218 6356 3478 3187 1264 6149 4046 237 7610 3506 9660 437 5776 8762 1699 4550 3899 1532 6333 7560 2078 8666 6182 7459 2843 1796 607 8535 4440 8311 2668 6293 9179 8917 4759 4980 3550 512 6208 2290 9993 5322 3516 3197 9185 4898 526 3177 6583 5492 8313 476 8804 7241 1307 1028 5325 5065 5036 8508 9265 310 983 683 4839 6633 8659 6221 7643 1633 4158 6393 9656 3189 3796 4795 1710 483 7704 6093 3185 8687 2293 6391 2092 3558 6526 4957 9372 7593 1594 5176 6313 9775 4684 1498 5381 4226 5512 9522 5902 1678 2516 6282 5568 9796 8321 4421 8223 4454 1743 193 3395 669 271 3543 7577 3992 5955 8354 2272 9491 9709 8741 8139 6123 1031 1319 9731 9079 2771 9156 7276 1193 3899 7464 8239 7011 7035 7295 6928 3709 1006 8353 2595 6439 2199 1289 8208 2890 8108 5988 1685 4387 8731 9660 5050 8975 9136 1120 4107 5343 4069 1251 9304 9275 5579 1881 4339 9192 1459 1917 4461 3428 9551 8328 7806 9612 7666 7191 8852 8268 3347 7267 8231 3671 6196 7281 3297 7194 1527 4500 7922 3675 45 5919 3819 6735 5221 9104 7212 8635 7740 1041 7052 9156 3866 5381 6000 6399 7262 5856 7685 9076 1188 8057 2422 9231 793 5601 2844 3315 8648 5774 5494 7698 6844 6005 5526 4240 8753 4339 1133 6034 8339 4297 1001 9816 5453 5568 7609 5172 6001 1004 4165 2370 6629 7469 7182 9868 5350 1672 9314 2410 1561 6739 526 2348 8130 7558 1026 492 2661 1180 3270 4532 1674 5819 3503 7025 6570 4771 1231 786 1500 7489 6267 8202 7465 213 4872 3799 4346 3426 8103 1194 3156 3534 6518 7785 2685 6937 5408 527 3697 8442 4249 415 7266 6495 9874 1201 1218 7705 383 1367 4422 5605 1897 7338 2384 2554 3797 7453 9318 7838 1191 596 279 7569 2020 1765 7834 7636 8145 8160 2405 9522 2249 7712 4479 6853 4620 5415 1972 5368 5015 6095 3847 3260 664 1159 8173 5672 7896 3338 6381 1858 349 6182 1503 8790 5772 3653 2171 8821 5835 9174 173 7484 2302 816 5550 5922 6590 6045 3701 7494 9567 7614 1677 1703 945 8072 3418 6085 8269 8604 8440 3026 5848 2378 3807 665 5612 2916 1185 5701 4498 6849 8210 368 3854 6763 9230 247 5367 626 5958 486 8426 2517 5406 3260 4216 168 3886 4240 4868 90 7466 5581 3143 7887 3229 948 1753 41 8255 5730 4706 9087 5731 9657 5132 2247 7394 2797 394 6227 7940 5880 9091 2185 800 9773 3359 6780 1721 550 2467 6880 5598 2327 648 4765 3433 8799 6868 9025 6502 728 612 8788 6552 9983 7063 6977 5707 8617 9509 8271 9072 7029 6247 3073 4548 5563 7917 6902 1068 5003 5543 7694 925 5232 8293 9328 4739 5864 9953 665 9020 6946 1228 8201 7704 8829 3298 4832 1329 5069 1172 2684 4621 8420 4432 1451 9920 8598 4094 4599 3337 4149 436 9630 593 4045 199 8890 4621 544 8454 6469 476 8082 5461 1293 1522 4821 3891 9470 7146 6297 3228 4631 2100 9228 7638 1175 1987 9696 5386 4102 6841 8901 9386 809 8310 3376 1734 9196 9574 1510 2973 1646 294 1287 9275 1202 4118 7767 9421 4318 1274 3435 7668 5740 3340 2517 1415 952 4892 1127 6349 1831 1002 1042 4761 4902 4492 9838 590 7362 7548 2218 4853 3825 1495 5106 2968 5834 1160 6870 975 5797 6206 1498 9000 9828 4815 4789 3966 6864 5405 8597 6700 3997 9280 6924 4016 9805 1441 9165 1745 2430 3453 857 4897 9206 9121 6251 5011 6501 7764 9764 4191 7505 8565 8011 4855 2704 709 6069 3826 9928 1990 2682 8972 1051 6868 7828 453 1394 5658 2831 2492 8195 5411 2039 5797 5432 963 2438 1156 9372 6745 3849 6179 7787 6091 3788 2675 706 8186 6958 4036 1225 3033 7560 5857 2364 7161 3157 8468 3870 5091 7440 2043 2302 2514 4970 725 4217 6400 9874 4752 7614 3581 9890 4507 4729 6788 9157 4118 230 2038 6173 2630 8573 1329 3231 3157 57 401 4639 660 5708 2120 8442 8407 6485 6339 1117 6639 5581 5133 6331 7520 4012 136 813 3335 965 1185 6986 4453 1666 5369 5852 1544 5985 2838 9112 2672 3362 2464 2823 1810 2309 5338 2182 9772 547 4435 3148 7139 7831 4022 495 5546 5403 4983 1108 8662 2701 3594 5406 7373 2502 9059 1442 8393 3629 1721 5140 1079 2469 5339 5118 796 2864 7880 8399 8353 9221 2939 4043 4696 6679 8949 7751 3638 8637 7547 9533 4339 1400 1545 3504 3452 380 7427 761 476 4341 2254 7817 3508 154 7704 313 8354 8953 1993 2002 5981 2930 1257 9921 4507 899 4911 1609 9465 4261 2057 6927 5564 8364 9103 434 6768 1451 5512 346 7260 9501 7013 7045 2068 4863 9351 1497 4264 3550 382 4540 8728 5339 9474 5398 6898 6153 5616 3902 3181 5010 6341 4294 4835 9864 143 4367 1071 9345 5524 2990 2767 5407 6581 6991 7776 804 3769 5981 8082 2950 3351 4483 1971 3974 2305 38 8785 1227 6702 3179 952 5970 4126 5687 6821 1613 2016 9331 2720 8873 4959 8286 9571 5099 2642 8622 2191 7186 7250 506 9111 6584 609 1907 7760 2594 3723 5730 5111 4635 2182 5320 2604 3356 8373 9370 5306 3598 3866 7932 3906 5894 4545 3548 2405 2244 567 428 671 672 3059 8596 8359 8621 9953 2840 9114 8547 2479 4648 2195 7217 8171 1849 3083 7134 4295 7782 7393 7628 9199 944 1742 2283 8388 1926 5821 8359 1836 3751 3477 1965 4045 970 8553 2963 337 28 3494 5764 8717 5867 8131 3167 8349 1922 6321 6997 5083 1463 2065 337 855 6950 7672 2205 4563 5213 4238 3639 4969 3028 2894 2532 5242 3334 3680 7901 3307 7066 7449 3186 3889 671 8296 5907 3749 4425 3820 6971 6402 1616 5961 7142 8174 4779 4391 868 7654 682 4849 7255 3993 6365 3433 9822 4556 8658 5489 3046 9461 6858 714 6230 151 3036 1856 8165 1234 6684 9304 4462 5040 9879 7651 3570 4355 6651 8871 5975 2556 8022 6724 5947 8326 7847 1319 9302 3855 6337 6677 2868 9189 5898 9734 3153 4880 6831 5109 5525 8410 2143 1534 7138 711 955 8188 9420 7983 8673 998 7023 6301 2898 378 5326 6868 5426 7480 3664 7450 3458 1820 1399 5361 7745 7906 6734 2311 3145 2074 150 3562 6457 2313 902 9472 4204 1422 9969 6778 2969 2000 8416 8447 2384 8844 8087 4779 4466 6854 4084 4319 5900 5332 5406 5547 813 137 4294 4129 8428 6390 5148 3041 3831 8309 7627 232 6393 8954 1553 189 1420 3054 1239 9268 3704 6497 6023 8705 5731 1184 1003 6633 4390 3882 2789 5035 9749 1520 9385 2161 1651 3915 5806 5536 5368 7623 8707 8668 9892 4657 4320 3793 1293 8755 5528 9170 1287 6100 6779 2892 6129 6258 8794 1810 499 3426 7316 760 2860 305 7343 599 8018 3151 8623 8343 29 5743 1564 7834 274 3007 6477 8417 1324 5829 4352 8473 4840 5564 4510 1029 7581 2990 6533 3990 7013 8019 355 198 475 3657 1788 1041 7871 1533 2677 237 6349 5237 3935 408 2916 6437 3077 5074 2011 1093 3351 7614 6017 6998 9329 9526 3040 2291 8417 5510 8105 8941 842 793 9519 4121 6578 4972 1987 7085 2314 2831 878 1245 9856 1965 1627 2091 309 8526 604 4205 7619 5105 7970 9279 1639 7596 2325 3955 8240 6559 3214 3903 5733 7289 5467 7787 6102 4857 709 7326 436 2254 1334 7651 9080 8773 271 9261 710 6886 3554 3389 1326 3734 9826 9283 3188 2951 4606 2831 3246 6409 442 3797 1652 2382 5096 1273 8916 6785 7115 5593 2576 898 6895 5611 2361 6405 656 4185 6373 143 6753 9047 1225 3535 7630 3086 5590 8750 7526 1147 9513 7486 585 2187 5185 7138 8968 626 1043 9360 6220 4831 2109 6132 828 3519 761 9435 1354 2747 7856 5611 2589 6517 6462 7148 5861 2741 585 4113 425 1788 9944 9870 9904 4308 9124 6765 4664 8104 3117 7702 5149 1229 3098 648 4934 4110 4158 8726 4533 5863 5388 4115 1341 5101 3960 6141 5555 3637 4017 6035 446 1726 7044 3602 1044 4615 9920 6735 8717 8939 7347 7255 1925 2418 1240 7078 4231 8342 3072 1656 7808 880 8035 4862 458 5217 496 5714 6728 1431 9804 3026 9494 3592 5657 179 5853 6047 8043 689 6949 9314 6447 5220 5362 7460 9740 1953 5584 4830 7107 3221 1382 5140 86 5631 6590 3436 522 5122 2563 2431 3362 158 7840 9859 6423 9022 6261 8924 5833 5243 9268 3073 7038 4567 4223 3590 2471 4761 485 6036 9806 4817 3844 9098 7653 3470 6843 4468 7842 2250 4755 7845 9456 3968 1051 4872 5802 9290 4908 8485 7505 8614 9799 5377 8999 7123 221 8081 2352 2667 7826 5769 6814 7304 5215 4615 716 5859 8772 2826 5975 6437 7848 9497 2514 6623 9556 3596 9866 461 8424 5785 6592 5243 6017 8113 2252 640 5309 9305 2293 1735 6837 7058 3222 5819 8591 6871 7160 2265 8215 4411 4673 3023 2441 2834 3456 5162 9553 5525 9166 8691 8413 5099 7927 895 1035 1015 6676 3316 5425 3255 7640 5203 4132 6244 5432 3595 4239 4861 845 1453 4095 8500 5131 2988 1613 8199 8527 1599 4924 4109 3354 3459 483 7439 9661 6607 5185 8883 6699 7494 3479 3890 7039 9097 6915 29 238 608 6500 2554 1328 4632 4994 3497 9037 5916 1710 2025 1693 7464 4123 6384 7960 2112 5072 6160 3868 1976 5170 4259 4497 9871 4964 2002 3963 4380 6217 2262 6619 6688 449 9830 5754 9788 9354 9189 861 350 9821 8549 2727 6848 5900 2583 8027 5052 7122 6043 7707 2466 7081 2902 8909 5576 3244 823 1848 5674 6968 5795 286 283 2107 4757 8201 6593 5739 6802 8357 3149 5200 2658 4693 7500 1976 3153 719 4277 5263 1425 1981 2427 2532 7402 2532 456 176 9326 1987 8582 6176 8376 7296 9241 6268 6915 4289 6580 5999 7142 9593 2757 7722 1877 5294 5131 3155 3586 7525 3268 1179 1710 1502 9320 9534 4738 3353 8980 1556 8742 9513 2720 6400 1274 1938 1921 3084 1178 2446 85 3394 7716 6094 3099 3454 2810 6363 6132 339 1173 9888 3391 6906 6600 4427 4929 2161 2610 5434 9958 3564 582 6569 3199 8724 9680 7540 6335 2554 5219 5747 565 1839 2791 4486 2902 6396 5432 4825 3987 1624 8021 9431 1218 9178 7522 3295 4086 854 318 1356 9737 7805 257 4917 792 4274 6827 9410 1416 84 5157 4268 6157 7544 8079 7560 6286 2899 5868 9499 9840 4292 4779 6730 2989 8590 4174 780 7189 3503 2826 9726 7846 2816 4388 4779 8459 1943 4776 8295 5937 3876 4317 6692 6526 6732 3292 2384 7489 3563 7439 7268 3279 8743 97 5613 6134 5161 2122 1926 7752 9857 1762 4928 8388 2343 8986 870 464 841 5170 6264 7611 439 894 3588 3949 3041 7471 3592 3974 9996 9004 4635 4642 5496 8988 850 1918 2032 6768 8188 7456 7732 3195 8544 8268 1152 8492 5689 6561 8421 2405 8667 2209 8624 7495 6559 3617 3226 4706 635 1175 5672 9343 696 4646 4296 2430 8748 6046 3524 8337 1765 649 6149 1123 836 2852 953 4464 8626 6210 2329 7002 3374 1640 568 9975 8079 8527 2138 8997 6885 8136 8733 6144 6357 6042 4031 8885 4798 2345 5695 9895 2053 1492 21 1635 4979 4952 1492 5018 654 2207 4977 988 1491 8179 8135 849 5387 9099 1678 4946 3910 4456 1588 9063 3873 2792 7383 1195 9251 8380 1184 6222 8332 1607 7626 2845 2663 5358 7620 9194 7711 1249 3396 1089 8193 4816 830 2341 5907 4034 2728 6871 390 366 9743 3045 8799 5636 4382 6922 257 4858 3938 6674 6606 8548 8126 7982 1358 9546 4609 9976 4127 6930 4496 253 9135 8853 6932 4540 1993 7417 1712 6758 1362 2619 1058 9415 7346 5034 4698 6954 4528 5469 9086 2390 245 1419 3924 4933 8073 5050 9048 5083 7122 1449 2344 1121 491 6900 7184 9831 3108 5345 5148 1586 1882 6970 1822 8775 9629 3844 3135 695 6501 488 6633 203 8369 6636 7183 7461 4375 3986 47 199 2244 6950 1682 7786 5209 8459 5547 1942 1243 3930 3481 234 8657 6725 3758 6952 9810 5607 1478 2820 3977 6440 9375 1870 3202 8296 6948 3310 6023 1223 1891 7424 8988 4466 1098 9498 8651 9966 8024 7919 5555 1081 7091 8746 3092 3383 4562 9918 9730 453 7223 7776 2359 4660 7098 3687 4127 1284 872 9722 2009 4899 1773 7091 3361 1302 5182 2683 6873 1267 8329 2652 6319 3324 2746 5645 3605 6504 9147 2242 5218 9178 7003 7598 5136 7795 4985 1548 64 6596 9833 7650 7904 219 9746 6854 8925 8878 9185 7165 5760 7990 9 8918 988 762 2198 9794 9777 7791 6251 9653 2367 2697 6889 952 4309 5638 5701 9968 3668 2609 1598 865 2726 8986 4759 7542 8172 2900 6294 9271 2426 8175 4605 9970 9712 9725 7517 8401 3528 1827 6865 2005 7268 1854 2543 7183 6763 1681 1886 312 3596 3580 5415 4191 9207 4206 1799 8203 7629 9335 8092 2404 2504 6633 2098 7878 3071 7568 594 8275 888 512 8654 9697 8572 890 7166 2886 3055 2178 6227 1282 8226 7418 8150 4114 6119 4603 3570 2458 9338 1429 9505 3614 3992 7283 3750 155 6053 1927 5804 4544 8563 5625 9935 5278 7091 7077 4877 9667 7939 3383 2558 2403 543 5874 6229 9268 7781 8285 8091 6246 9260 9543 4874 6343 4250 5015 2426 1581 9214 7342 3849 1287 688 8475 5453 8377 1042 1604 3704 6154 1645 4532 5285 5233 2159 5059 2395 7178 8782 8454 4488 5844 6884 3414 4541 3014 7856 6374 7858 5038 1785 782 4842 6125 6097 3077 9453 6516 3479 9923 2488 9788 1542 6618 8754 4823 3815 \n6721\n2134 6458 3523 3744 1410 2403 151 9991 9330 6372 2535 7769 4497 9556 3644 1874 6861 8941 8628 2372 7738 8501 3619 4052 2592 2497 6808 7003 451 1553 9583 7026 1430 7573 8500 6160 6672 335 3889 1562 8656 2663 1846 9349 8110 3175 2643 2394 5744 3726 4207 2464 1453 3924 7267 6431 1177 9832 7950 9104 6370 281 9771 5573 6289 7863 1149 8359 3394 165 1356 5302 1764 7112 5624 9161 5204 8361 499 6763 147 5087 4590 5030 2955 6336 8891 4781 5671 7650 8923 3385 2170 6204 9139 4622 887 3933 3430 934 6461 139 2912 9124 8718 2156 2269 106 4989 4006 3179 9701 778 2320 8345 7409 8898 1929 3690 1933 7556 3046 9795 8379 5340 6505 5906 2379 1473 1667 6786 7316 4676 6555 2915 8684 7323 7720 2791 6541 2699 6894 1085 9873 6347 6560 430 8999 4179 5714 7908 5449 2949 9847 9397 3357 2780 5088 1358 6338 8029 3005 6124 3051 749 296 4976 161 3592 5334 7599 3722 4143 5317 8581 1389 1477 4370 1950 9573 7388 4569 8608 2244 8563 7898 4951 4752 2896 1500 1374 5998 9616 8193 3303 5911 6698 7599 5421 1430 8859 3123 7153 2477 7846 2549 4560 8019 420 8249 367 2993 6397 8758 4120 9538 5487 1626 7276 3185 9531 855 6325 4202 4584 682 2860 2934 5262 1733 4950 3894 6583 522 543 5901 9943 2368 8131 3507 3406 208 5133 1053 9535 9931 5610 1352 1979 9443 3100 8747 4183 7041 711 3827 138 1418 5486 8056 2955 2342 9719 8017 5090 9253 7551 6159 5969 4924 2831 797 8922 7419 6358 834 2615 6940 1209 9506 9483 415 4144 8945 1433 3889 3744 8388 838 5671 8413 4283 1511 9031 3985 2166 1209 3602 9682 3062 4562 2993 5164 5671 164 1593 5219 8949 1643 8642 4068 80 6408 1037 1511 1416 5109 6064 355 5904 5438 9363 4785 2756 6972 7714 1140 6220 9886 2347 455 4330 4670 4159 3734 1077 9835 5601 7247 4707 1883 4552 2445 583 1652 2540 4579 7408 7258 6058 9326 1497 2502 5225 5323 4529 6756 992 8783 3240 5104 1971 8898 6386 891 7836 4355 4222 815 597 8531 5782 3843 8753 2794 8647 7395 7548 1770 1890 619 558 2785 9053 612 6808 9275 5110 4115 3859 6521 1662 1892 8053 9745 1657 8566 819 2403 7893 7783 1399 1470 8167 4752 4131 5044 3874 3383 6493 3414 1791 2806 8935 2691 7556 4745 9537 5823 3275 4427 7435 7042 8266 1339 9187 9905 1543 6299 873 4484 9952 3426 1598 698 8188 7542 7205 9496 512 6237 2934 5149 2368 5746 1537 8191 5876 3776 2379 6910 6905 2644 4215 7450 5893 5847 4002 8032 8653 7257 2350 8451 8632 1073 1491 749 620 7208 2446 1345 61 9153 8856 1312 3940 8411 5840 2367 5842 790 9314 6379 5335 9517 5566 8449 1682 5342 6767 9438 9639 1161 4808 3030 7824 6272 6371 969 5269 9778 9771 1166 2990 171 9776 3161 9003 680 2367 8193 4381 608 7047 3824 3417 7178 3817 9119 825 8155 1227 3971 2565 8232 3117 4167 3946 2103 6296 4880 2385 6088 9400 1238 9048 4897 6886 2728 5836 6987 3496 3057 1299 7385 3917 7521 7786 4977 2393 992 66 2717 8203 9485 7624 4368 6676 4188 8505 7888 6054 3877 5563 5390 6791 3838 9999 1460 6858 9338 3056 1889 1344 5629 2052 1248 5723 7455 8425 115 4726 9583 9126 208 798 8887 6495 6696 938 9089 9378 7538 6711 3724 4227 1480 3368 4692 910 207 8099 7927 7829 54 2009 5625 7152 5155 3739 6386 8171 4101 7596 6353 1430 2069 2263 5604 7418 8288 5267 5010 9207 4090 7460 3837 4300 1833 8192 7445 6107 6425 6928 8165 2469 4155 3831 7149 9610 8146 416 7813 7693 3662 4716 5516 4769 3658 4515 3772 8347 1113 4726 6195 1079 5235 6102 5306 8457 7631 6655 1544 1208 2003 1297 1304 8803 3076 1058 6464 4457 9719 9889 7316 2306 5901 9905 3963 9761 4745 3052 171 5284 8644 2432 5689 5783 8257 7521 5521 7180 6335 9870 2249 3976 2690 4376 9098 1416 8243 8513 7347 4508 3561 9162 4066 5049 7154 2937 8268 1919 4601 7357 4259 8737 3096 7615 8209 7087 8585 9502 8325 2027 6061 6884 8863 8144 898 874 593 8101 2473 1796 4041 6112 7467 6603 1430 4515 9190 8401 1835 3610 7989 264 6483 822 7957 2206 9275 2618 9877 4420 8020 3884 6308 3562 8379 7423 1019 8835 7873 7968 3392 1583 3173 275 7423 9814 5843 6822 360 5899 7696 1868 1088 3711 6970 9707 9449 8754 7874 6145 8158 1525 27 2898 8836 9622 1504 8555 7765 1188 3146 860 5048 4949 2898 843 7316 223 5907 8239 1184 6636 3798 7585 6505 9190 2602 6532 6769 6350 7635 6092 7041 4772 6798 2283 8329 662 9234 6901 2670 5855 2655 5923 3662 2207 8343 4429 3705 5577 4727 5506 6919 3331 7660 6310 1471 2212 9168 17 2557 6695 7202 9137 9275 1089 129 1196 4704 5896 2911 9478 4303 571 5177 9125 3598 2711 2135 6277 4326 5959 3647 9982 2440 7210 7882 1307 6938 3307 492 3113 5705 7082 6231 8395 8639 6272 1388 3841 7553 6099 6839 8364 1021 9908 5630 260 8226 9672 7186 1509 2085 6674 9090 8896 129 691 9165 8827 5593 920 8905 2222 1227 6256 4482 944 3374 189 6963 6083 3899 1832 9966 5550 8934 7181 6540 1186 956 2509 3489 2999 3578 5965 7553 7688 2215 4844 4472 5416 3467 5687 9059 967 555 4756 3605 285 5082 1401 7392 8787 4613 8088 591 8357 5167 5295 8226 4512 5638 3232 5512 6009 8780 2452 4399 2280 9024 6665 9074 3681 9304 5387 9170 8268 5724 2934 2031 9183 6835 8875 9677 4283 8923 2599 1719 1255 5305 493 3001 8839 8564 5637 1426 4157 6778 8432 7461 3880 5307 7031 1245 2612 7120 326 2284 2953 8401 2637 7777 2477 9940 5904 4412 5096 5697 9837 9237 6889 7140 8145 2193 3894 1837 7448 3259 107 3980 3225 5501 6659 4535 2957 8847 7094 3256 5306 3367 4951 68 8319 6406 789 6524 1805 3519 8490 8165 8381 113 8477 9634 396 7699 5384 5898 4078 9078 2100 6222 1822 1721 9927 742 331 3996 4104 606 8173 932 6964 282 4796 8652 1505 3676 5277 4692 1813 8265 7415 581 8333 926 711 9774 8860 1218 996 5619 9232 1558 5225 2479 1149 8647 4413 9114 978 6669 2521 8796 4338 5956 3417 704 3209 278 8578 8199 7832 9566 3317 2776 8867 4152 4009 6422 2360 8998 5113 4283 6301 3790 853 4389 9809 3968 8097 508 5409 9376 799 852 39 7768 8053 1467 879 1086 5561 4028 5855 4567 4576 831 3679 1686 5685 8253 6696 2186 339 7483 2482 3370 1124 7817 5655 6037 6458 3523 6664 5910 1672 4398 7502 8799 355 2243 8502 4087 7552 1871 2298 739 2764 7551 4270 2670 149 2484 1538 5465 5476 6946 4993 2942 3852 5842 9853 172 5395 1673 3851 3881 9183 8345 2861 459 9539 838 7653 2634 2053 909 2185 740 4661 5435 734 9985 3 5556 4405 8240 1599 8083 5280 2035 8683 5011 8331 6564 9403 7426 5215 6085 6374 8211 8887 5697 8589 2194 6375 8980 1891 402 4762 7682 4503 8983 9523 6360 6412 1664 5930 5753 954 6547 9160 2875 4172 5537 5848 5600 7459 6481 555 9974 8184 9371 4248 547 8416 8139 9604 5460 727 2179 702 489 7925 8712 5332 2001 1745 172 8034 8694 5367 9848 1333 1983 5955 4498 1838 1035 4577 9302 2426 2792 4023 1452 1635 1424 5483 7912 7076 2250 9787 402 3656 6077 7088 6364 4586 4935 4788 7830 5374 8967 4444 6229 9766 4716 574 2792 6321 5205 1947 3293 5600 5409 9234 8568 8874 1433 824 8307 3720 2076 3497 8525 1249 4469 9692 9133 5746 9715 4143 6367 6032 1489 9325 5173 185 3501 8391 4462 6635 6694 3456 8042 3644 9089 3290 740 7177 7414 4541 4845 9882 4411 4869 2784 1870 5561 3467 2947 8647 1795 215 6269 2696 7898 2487 7782 5065 2658 5545 7200 7544 3466 6860 9452 901 386 5979 1895 2794 9936 9715 4956 1238 4822 8556 7693 7279 3128 7668 3388 572 813 3305 2799 706 8439 4611 7229 8804 1167 7832 1688 5784 2796 5189 1456 8685 3761 7439 5988 397 796 7575 9596 3782 8274 1084 1875 6436 5313 4323 7171 7413 6026 9886 2578 6167 2422 2126 4997 5368 9040 6743 1182 4251 939 6905 5044 8582 4255 9283 6076 3488 5865 8863 7848 2787 5172 4706 8035 2403 7837 2752 728 9988 8866 5269 9149 8152 9585 2739 9348 3020 992 325 1073 3759 5973 8332 9341 9089 4343 8200 7681 2750 3397 4434 8074 1672 9281 302 1836 2875 2197 1519 7446 7653 9136 5716 1669 1837 3126 3326 3315 2085 6501 4477 595 9857 2582 6203 8348 3022 9506 7706 2412 9629 3981 1565 4643 4026 5611 2010 9127 5294 6627 1541 7525 5739 7533 3949 7296 617 5068 9760 8108 4897 2742 7549 6547 8053 3455 1097 3136 27 8076 7199 7032 3105 647 4612 9641 2755 6455 4683 4050 7375 5512 9037 8037 2299 5308 8234 3697 5639 6723 1233 3723 5315 9433 362 9243 9801 1102 3732 5242 1049 3230 7205 5408 1317 1943 8419 2665 8194 4325 5745 8129 5973 5095 8010 1955 7420 6230 5779 7004 6855 3979 9273 6136 8646 8157 6787 5814 2617 203 9148 4154 6231 8509 8560 9959 9756 7710 3281 1774 3445 6608 4904 9866 9362 6422 1758 5433 4407 6000 3409 458 7673 93 2997 9347 3076 1316 9557 959 861 189 1464 377 4389 8129 4390 5918 8367 5385 4520 9808 2584 7531 950 8970 3784 612 805 44 1769 8833 144 3114 8122 5153 1792 8703 1978 2776 5043 572 7674 715 7453 440 3584 4659 6593 582 6124 5569 7599 7043 5897 2623 836 6978 2756 5676 3324 2230 3210 4161 4809 7077 780 2849 7925 994 4390 7907 3834 5900 9278 6988 8180 5865 5302 4149 7581 6477 9051 3450 4915 737 2126 9734 2652 7114 3805 7170 810 9979 6556 7117 6986 6174 8948 9018 4573 2054 4159 2663 3713 3483 5407 4322 8410 278 1655 1554 4131 5662 9736 7973 1730 9631 9502 9895 2151 6081 4184 8791 1546 8785 3167 2740 5348 1590 407 6459 2580 3217 2223 9233 15 5198 4948 5696 7783 796 7969 3710 6467 6391 9842 3914 402 8606 3104 1374 7347 2150 6914 7631 9102 1427 3012 6566 9762 8075 3804 5289 7344 8227 6343 5039 2619 8633 7554 2758 4954 1206 4136 2424 2325 5491 5202 3903 9367 7537 3759 8329 7302 7390 6704 946 8864 9989 1004 876 1358 7538 444 6126 5527 660 2138 2257 1545 8265 5221 5939 9452 2675 5919 4361 6926 4747 4376 4804 8370 6073 2806 5737 6957 6834 5561 680 1103 7974 1941 15 4325 1208 7973 4669 9119 2467 6245 1347 9734 1633 7561 9216 3771 6007 9571 2212 2697 7946 2496 4138 1936 192 600 2072 1735 1175 2599 6444 7065 4599 51 9783 6995 5651 2453 113 1329 399 8821 8926 900 7676 5639 9158 2759 7889 5372 792 161 8947 8533 5848 9577 5642 6235 6438 1080 6092 2712 2539 4801 1793 1849 1252 4560 6402 5424 8756 9016 9444 1841 2901 8049 2133 9520 7331 3882 5346 9108 4866 6023 8488 5663 8903 1693 4829 5765 9038 2059 1851 9453 3994 3988 305 8810 8052 8323 4788 524 4608 9008 9577 7545 6256 307 3313 6016 2206 9783 3188 1865 4753 750 2488 587 5564 1627 5965 4868 3440 2427 7527 3481 1082 2719 3878 8450 4270 8500 1237 954 1974 5396 3435 4808 5786 7813 706 2517 462 4715 1927 5363 3318 9257 5401 4999 2021 359 1564 3759 33 9656 2750 7525 8537 6700 4373 5234 6353 2808 41 2488 8602 2054 707 1987 1516 9700 7155 1012 817 7800 3280 5121 8360 7034 299 5296 6965 855 3072 4282 5775 9240 4991 9399 7956 5081 5965 5333 8197 1201 8285 4214 4930 3845 9777 2910 6777 373 7880 1221 9768 2732 3587 5603 7677 2394 6349 4581 343 9832 8996 7510 9559 8491 4686 4221 701 8097 3510 3364 4095 3078 7620 8645 8527 4698 8894 8370 5188 2514 7543 7719 1963 7752 3422 2643 7836 2969 9144 3741 3526 8539 2881 2728 9533 7127 4037 5641 2293 7972 8842 6590 9486 6952 9091 330 2650 310 6443 7113 2145 4065 5889 1637 2016 1181 1590 850 878 1060 5202 2732 1268 8870 1263 2092 3576 9478 5693 1541 7514 4828 4081 8965 3542 9754 1333 2853 2430 2096 4284 9243 9112 9245 6703 7649 8375 7428 4763 149 1887 9644 2129 7190 1300 5268 1141 8849 9031 1696 7912 5594 9855 2694 5432 1755 4838 8915 137 9946 6991 63 2703 8744 9125 4588 176 5031 8115 2991 4213 6231 7785 5073 8705 361 1653 3500 1884 1059 7693 4461 1202 243 535 9730 3734 4960 1526 1531 5391 4857 2290 9796 573 2829 963 9310 8268 2620 8426 7991 4408 375 6753 4716 8694 2958 6948 8085 4422 8427 5614 5175 2223 8517 8526 8513 1253 412 1730 6606 8342 1737 4036 7671 3522 9389 2894 9780 1834 5141 2230 5459 419 3961 6570 2234 5259 4671 7249 7195 7881 2611 2538 2129 7106 6893 488 7273 6200 7990 5254 9711 1763 3698 4801 9145 3898 2983 1988 8081 4366 4341 7862 4045 1 3845 6137 7859 9821 5498 6033 4998 1828 5277 7372 8834 7350 9972 3243 3905 9112 3959 3094 4025 7815 3983 2278 1033 1900 6894 2763 2429 7154 168 8984 7023 6818 1714 1229 9922 3452 5281 5818 6801 3929 7373 6420 4295 4300 4881 4892 328 2659 9716 8474 168 2990 3192 8007 8603 4321 9706 3141 2394 1252 9807 8527 4205 5408 2963 1494 1542 1643 8151 1295 7655 5997 6484 4190 6890 1680 3942 3633 7078 7734 3008 9143 4002 4289 6085 8732 1596 5454 9815 2602 988 6101 6422 8598 4507 1864 8259 7542 2276 3379 6707 324 4569 2269 2641 7671 3548 6494 9339 3453 5892 6740 6096 8027 1585 7256 3742 39 5221 149 7817 2494 2195 9379 8003 6630 9218 7480 8994 3459 1989 8526 2800 6358 7465 6819 8075 1182 4270 7125 8527 5264 6242 8884 4601 6415 9198 1457 2005 7457 990 1090 6384 9209 124 222 3309 3024 3097 5137 8557 8996 5593 3425 8288 8435 4455 2158 9489 7312 3834 3644 5488 7546 5200 1523 6451 832 6420 952 3352 7682 894 2 9062 560 5813 912 1786 3225 7987 7511 6074 3754 4955 905 781 9267 2161 6196 8262 4685 5906 1051 3326 6756 4868 9237 4173 8455 2183 8750 8735 4496 9047 2563 8385 5334 9469 9005 653 7088 7579 7309 6465 7243 3273 5543 8223 6108 7519 1918 9575 6704 5781 4556 5568 8715 8232 8537 8728 4063 6151 6395 2580 7763 9705 4598 2657 5931 8029 608 640 952 2675 3787 1281 9825 3819 2013 9264 8014 2040 9850 9710 1994 2630 3586 1801 3682 8535 6723 2293 922 4030 2105 4684 2497 1176 4 9517 8265 4948 1318 9339 5089 965 9597 1312 8300 1778 2196 6292 1369 1383 1329 7715 4622 422 5274 6396 6265 6702 4294 6293 7079 812 1763 6283 4231 6338 355 3217 8154 9495 4476 8163 1595 8549 9188 8474 7937 8045 3070 3740 5846 3999 2274 4560 504 458 8717 5314 6991 3293 7333 7942 6132 8373 4421 7557 2077 1222 2605 4904 3602 4248 5950 715 8737 1407 6912 2301 1718 1214 5684 5964 8198 4714 1372 2051 3488 6116 8893 1993 3069 1082 1700 3086 6418 2717 9271 877 9307 7215 2847 7059 4162 8976 3818 2938 1892 6926 6933 1983 348 9668 7028 1678 3406 4492 2886 5218 6626 3581 434 9165 4351 284 1940 9553 2832 2387 4133 6965 2212 3916 2940 3968 2565 4705 16 4199 8312 3746 8165 684 9906 6596 8027 3437 5943 6421 5683 7184 8509 5610 4297 3851 7490 9400 1520 5275 9055 6051 5977 3044 1940 1840 6785 45 701 4390 9310 9365 4402 8427 6094 1427 8474 791 3967 7029 4500 1423 5416 2291 6611 7985 6219 1584 7552 3505 7676 5457 7326 9472 8547 2211 7253 3110 2444 4212 8967 2017 3793 9236 144 5680 7425 8604 5651 7130 4799 5172 2376 2743 8578 8071 1251 4126 1407 609 2816 8579 5081 9619 2238 2457 3878 7087 1998 8249 9304 5000 292 5135 116 9798 5398 9 2445 7138 3512 1329 3120 3516 9588 5540 4067 1062 4395 9054 2458 4506 6533 6201 944 584 8313 1343 5746 4383 6438 1981 8087 9525 7614 2801 4437 7844 4288 5712 6797 1305 7258 9237 2449 3253 2981 4498 9082 8255 9320 95 2118 9918 9024 4034 6768 754 3708 9306 5898 1976 2188 8343 8153 310 4860 1343 244 819 6162 973 7930 6536 9968 647 5444 3043 86 6658 3274 825 5133 3124 5907 3680 6161 2175 8443 4542 7762 3911 4704 1584 1392 9243 454 4683 2050 887 9887 5362 475 257 606 8486 330 3775 8814 1944 139 1116 8289 1269 6316 4299 5502 376 4803 6902 2640 6683 3369 6852 8496 9068 4772 7752 8836 4043 2425 4816 8919 8057 2507 1087 727 7760 8470 3865 1467 2754 2624 621 9937 7689 838 3795 3147 2704 2941 9798 2536 2226 8038 1442 6329 3401 5341 4493 2677 1323 2554 4373 692 8459 6267 1824 3629 497 1793 3288 6191 1150 2029 4472 3249 9697 6312 8767 4891 2226 723 7435 7602 7028 2113 9655 7102 4035 608 7975 3523 5031 6668 792 1650 8579 4552 7173 3149 899 2859 1848 8607 9479 731 140 9619 7596 7518 3110 7364 6182 7224 7335 6239 8579 1583 3037 1826 364 2323 9017 3239 9799 3012 812 9463 8133 411 4034 208 9157 4085 5010 2970 7173 1591 5022 4213 7456 4073 5568 4866 1473 7336 1496 9882 1318 4815 2610 901 7238 9095 3099 7092 8036 6639 4209 3218 1860 6039 4316 1083 5867 2161 3497 4171 7643 4039 5284 8348 4979 9228 7077 4441 8762 6180 5432 5840 5078 5934 8940 7934 4240 1037 3012 2347 1752 3001 6283 6723 9806 7481 4745 8724 8583 2460 4701 801 9389 806 6441 2259 4892 6117 1092 4174 7885 556 136 31 8989 2350 5152 9696 1876 8533 944 5421 60 9712 5611 6917 4842 3395 2454 5798 2842 5872 5487 6050 4424 592 6779 4627 4011 5443 5931 5859 2731 777 505 684 3629 4149 5044 1170 5359 1485 9099 6077 8191 310 9851 7567 5502 4996 7071 2284 8290 7849 4754 753 7527 239 6595 3465 9636 2204 7958 200 4592 61 2617 2259 5816 4197 9038 2132 8258 4151 4056 8309 7787 5114 5817 1935 3169 2355 6267 5347 5910 6814 8918 7002 5321 7771 1191 4598 944 5536 2738 1114 6464 8127 8489 2447 1250 7258 9907 3208 2353 1827 859 2206 8902 1478 362 98 1855 1843 8862 518 2621 2084 4374 1224 8883 4590 3744 9301 3816 9394 3372 4773 1529 2874 5177 6921 810 9303 3775 1146 5421 2659 5718 7475 9243 6419 9135 6801 7981 9959 6481 2354 9004 4055 1347 450 6637 6773 6963 1500 3677 8427 2652 3568 9682 6447 4596 1177 4146 6995 7309 1086 2428 6044 1856 4267 3316 7832 4991 5147 4989 6845 9805 9970 8280 512 9573 861 9575 1874 1184 5916 1622 4517 4610 3429 5068 2166 863 2849 4006 7874 5934 5535 4610 691 100 3679 375 7249 9286 543 8679 1909 6187 4999 6522 7069 249 740 4737 9229 6989 9586 4877 5189 1841 4520 7165 8250 3278 8525 273 4572 147 9162 8363 8879 8829 3262 7726 7758 4374 1818 7268 8778 8484 9345 1564 8949 1210 253 3885 5073 3614 242 1110 6640 6997 8926 8437 1452 4958 5441 5262 7552 823 1252 373 7309 1010 8346 4340 2144 364 8778 4632 7601 4056 1999 2693 9683 1959 4567 2406 9739 2718 8901 651 4995 7398 8804 5644 4547 4927 1902 7637 8490 8571 6674 691 4637 2586 8085 27 7051 5192 5884 4731 2944 517 1363 7166 7813 998 938 2935 738 9218 755 6816 7750 6684 8085 4888 804 5177 7372 222 4779 142 3511 7244 8031 8351 5066 8405 8386 6604 2608 9072 2694 1735 754 5864 6516 9705 759 7250 2434 547 7222 5997 7197 3164 96 4670 4542 7072 7543 9658 7534 5243 3251 9307 1900 5298 2012 605 4211 318 9289 8109 1963 4694 9836 9411 1057 8941 7674 8013 4348 3973 1198 8554 4396 443 2421 6366 1882 3840 6887 9337 3579 3068 1321 222 5707 4492 8014 3142 6433 4091 5943 8781 2836 7449 298 7977 8876 1492 3360 5746 9341 6216 3350 8079 7748 449 6081 5921 1819 3131 4559 4698 3288 6768 3586 2623 6703 8976 6871 2258 583 3339 1559 354 1448 3891 745 6179 1334 2546 9164 566 596 7841 8337 1136 8048 1180 7540 5828 3643 2498 5164 6535 9719 593 4699 2196 1304 2465 6060 3947 3058 2529 9050 2544 5125 1804 8190 496 2192 4452 4988 4507 4574 8403 5103 7999 6344 2639 9205 3487 1024 638 2966 5480 6247 35 4356 7470 9075 4227 3992 1259 6556 8852 8014 8478 705 7079 44 469 7613 1041 3533 732 8593 817 9970 2666 7026 9655 3519 1902 1405 6218 8890 4940 6209 9292 8813 9449 9603 7364 614 4986 8203 9212 2196 4328 5466 8281 1496 7665 7217 5682 7537 7826 3791 5082 14 8065 2337 2895 21 261 3227 4721 6415 3904 6241 9707 3778 2661 8193 6284 4559 3856 3147 2641 7243 8272 5478 6689 9119 9106 4663 2895 4697 1612 4648 9197 6641 8229 6485 3246 1546 850 7359 1233 826 8025 4588 4504 7539 8912 8528 6597 9735 7018 5546 8735 722 1061 7400 9323 8047 8688 3990 4079 8775 7778 9462 548 3748 4934 6025 5566 1231 166 3673 1786 5353 7134 9962 8081 5463 336 9828 1764 9313 9752 224 5774 4774 1379 2034 2313 5199 6857 3368 4431 5742 582 2084 4315 4719 8183 7231 8639 4630 9162 509 638 8713 8801 9655 5205 8667 7948 9064 9760 8531 8961 3409 7528 127 1973 4551 1176 6562 7354 1184 7751 8049 8231 2601 8594 9971 939 786 7033 6582 6970 4011 8271 2472 4291 6413 2810 2861 7010 581 4929 1124 287 400 4969 1734 4114 2194 2641 7622 1892 9819 1638 1822 5058 4839 9148 4038 903 9541 8902 7563 4437 7801 7976 1543 9467 5240 3485 3246 8964 2187 3356 1510 4560 7969 9130 8752 6594 7784 6315 9075 8664 7028 223 7713 2967 8856 4077 3180 6726 3756 4976 9107 2522 7568 7566 5195 6128 9685 5921 3630 832 560 9690 5170 9893 7463 7020 4410 8111 1188 5033 4348 3042 1280 1718 3197 1419 4737 3731 5388 1048 4685 9326 201 8290 7301 6400 6165 6045 7937 383 1037 4171 7773 5901 8822 6097 2807 1051 2132 2434 1495 8123 4464 5741 7631 6420 4141 9861 819 6460 7281 6716 9382 812 2844 9036 9483 3951 1802 6025 3447 4317 6776 5953 5186 2544 2528 5409 9335 941 3967 8910 9605 9895 5646 8271 7040 5275 4251 8298 3093 6548 7046 8511 1535 8410 727 1482 5518 9222 1074 6733 4906 1502 8859 1304 174 7204 8407 6079 4383 9561 7149 6764 6506 9321 5991 1366 4945 6461 2335 4504 3058 6564 3823 3736 8921 1000 3603 2223 2142 4234 5600 725 2429 9216 3528 822 4334 7698 2066 4795 9570 8118 2445 9845 981 4439 1579 2124 4416 4121 856 7664 6379 3482 2750 1214 3415 6641 689 1623 2425 6657 4534 8880 8690 3269 8680 1889 5454 1175 6308 7084 3647 5896 2844 4724 7376 3229 9172 4605 6260 8318 7067 9294 3930 7839 4423 3737 5539 7636 5743 7534 8 6935 1075 4433 9967 9649 248 8675 1376 4447 8052 4632 7616 6256 113 9129 6235 1779 9973 3382 5729 5928 3215 7988 8949 8591 815 5082 8508 862 5626 3962 1770 1137 8971 8260 9953 2947 3364 6458 8202 8480 5472 9643 4218 6880 5552 3598 5467 8589 9523 2937 268 1740 6100 3769 6850 1180 6830 4237 944 3249 7142 3983 4574 6983 5985 230 8047 3474 464 4602 9926 5461 6414 430 6683 9849 3076 5098 9985 8245 5430 3721 2410 8609 7021 633 666 8117 6238 2914 8142 8363 4411 7417 8431 3482 8826 8363 4899 152 2737 6178 2809 2735 6638 5651 9778 7122 9092 979 6176 7838 8235 7274 1930 2141 4338 8273 8401 5238 5171 7602 9554 3095 1437 7735 554 3343 6951 9600 6748 4574 6384 2681 4448 8760 2899 4733 4207 57 9783 8800 3261 1520 30 2085 4824 447 4651 5489 7571 3069 5938 5383 2189 3844 554 7874 5196 7479 6686 3791 6490 5195 9786 1591 2762 795 4488 6600 9071 5602 9109 1667 5642 5827 8 7068 9920 5865 3602 7975 9526 9690 4353 4880 1000 2295 9110 9744 8220 9848 9229 2427 4158 9701 3436 1329 6235 6748 5622 771 7171 5819 8752 2685 1955 4864 833 9878 5077 547 2948 9607 4309 9736 8126 9471 9775 5730 4051 9724 9476 4904 5213 4691 6437 1092 2718 8254 5102 6584 2470 1310 4038 8090 814 7320 3262 8822 1331 2687 2393 8380 3706 9577 7713 3969 789 8102 5989 1649 1042 1750 7524 4069 3059 3322 9209 7227 8197 9756 8912 7097 2472 3021 6845 283 2941 1604 4304 7068 724 3723 9094 318 4312 2696 4204 4055 220 9180 8199 5656 3863 2648 520 3663 582 5419 1320 4880 7651 2209 5353 5191 958 7283 2593 766 4262 8589 9537 1840 9337 7946 6808 604 6340 8829 7281 8957 1959 221 1739 5895 8877 5228 5749 735 8685 4069 6886 6581 9914 8724 8203 1517 7680 8959 2886 304 8885 3969 3029 124 8476 5750 4226 7977 5099 4456 1115 2089 7418 3271 5987 8758 6138 7836 6310 2873 7454 2187 1042 3459 2874 5999 6367 6879 3680 2104 1838 1450 8957 5531 8103 6578 5879 1141 9598 4213 3716 3941 5723 1137 4265 6129 788 9930 7377 1712 6634 3134 8421 1631 3803 365 380 5283 1060 424 3385 3342 6399 967 1387 999 2468 1755 7851 3710 8268 6914 5200 9945 3516 4632 4823 9268 9764 4095 9611 4227 1241 7292 3711 514 2274 1798 160 8903 962 2621 4442 8474 9352 2304 1139 2256 1833 6629 4658 8345 9858 6241 6826 988 3445 8941 8753 1287 1016 7224 1948 841 5084 529 8402 7164 9297 7574 8168 6648 4622 9811 7747 3771 2521 3258 929 4411 2467 2112 4920 5898 3668 761 6981 6655 5877 5298 2154 6510 5653 3419 4573 7338 3607 1531 1503 2420 1892 8621 8822 8485 5758 8308 3679 7022 5666 4708 9089 2410 6471 5197 1144 6533 497 2351 4855 8688 660 2470 4361 4761 6156 4466 3133 9617 1675 6230 4036 8588 3216 9828 7716 1664 1108 9965 9408 9985 1039 8688 6163 1827 6679 646 9124 5566 1231 2667 8854 897 8023 841 2401 1942 3950 1894 7473 758 4437 6627 9217 5426 5776 744 6310 8419 8043 1926 6625 8199 9453 2064 3972 8794 7725 5067 7782 5995 6524 6728 8625 4716 8646 1465 8720 516 9541 3500 7755 877 1490 3693 1165 1952 5705 4214 5121 5872 2413 2647 4910 3102 7683 3509 7810 3870 6916 9845 5622 1022 879 8148 5368 1700 1553 4123 91 665 4543 4437 2781 713 7532 5787 3467 8702 8812 3445 8155 9896 6044 9762 2650 4669 4903 9170 5286 3545 4492 669 6022 2776 7421 7741 8065 9694 5624 6726 9083 2732 8258 3055 2649 2240 3163 3876 1399 213 538 5650 9394 2473 9477 3509 779 9348 8798 1242 2948 9736 6989 7736 9696 9312 3016 7781 6271 9764 4105 7999 580 1087 6223 9453 6693 1741 6968 4616 3491 9641 8772 2797 5767 1750 8737 7580 2781 2918 23 4888 6057 5122 9505 1777 7973 4307 5479 3129 9626 7900 9786 9631 5560 7301 7845 8120 5605 8434 6210 3632 1916 4925 458 5129 3222 3554 5134 718 7761 8099 5050 7318 3568 3085 6081 1663 2903 4187 9857 5028 9462 6350 3369 6885 3245 3870 4832 803 3871 4833 3304 4332 4607 1355 8108 4928 154 669 9754 5113 3750 6735 2900 5560 5901 9184 4724 8501 9951 3921 416 2856 9421 6524 5141 4867 5438 4971 3903 7557 6320 3373 6467 9793 3787 7992 6228 3276 6834 6885 4105 5096 1821 5501 694 9316 4901 8517 22 3403 4631 5836 5313 4910 363 9634 8554 2300 4996 8431 9379 9088 2725 3707 5628 5813 1891 1298 1460 427 8969 7370 2103 5910 7764 1273 531 3389 2251 842 2778 6247 1067 9366 5414 6637 1817 9617 1451 7258 1230 6841 6884 1500 5807 93 1822 7900 5782 670 2747 2700 7784 5000 9680 1710 9652 8413 4352 2161 7724 6405 1483 2957 515 2397 9550 9976 9359 7285 9522 9672 9553 8073 9348 8499 1934 3495 6725 5049 4273 3410 5263 1319 5562 6367 7277 9944 5088 5062 7831 4483 9296 7350 7061 546 6930 4404 5835 3971 9904 3862 4276 3586 8592 8192 1689 7735 3732 7225 4173 3791 8741 3046 6433 4747 9256 7454 739 848 1050 4526 8477 1676 4974 3294 1144 4181 5587 7822 314 3589 7151 2210 6923 4815 4264 2863 8367 8670 1136 9171 830 9689 7290 3702 9261 5761 7308 1967 3547 1669 896 2700 8112 8552 2827 6157 6060 6854 8208 8884 2263 7659 1714 561 4985 9482 834 9142 8434 6112 6713 2724 7716 4230 3666 1851 6158 8269 2912 7820 7377 2728 3615 5361 6651 110 3630 1687 4593 2365 1396 1716 6211 1422 9 8918 9773 8249 6109 1964 8093 4638 7125 8604 4140 7948 8770 5643 4219 1371 5489 1818 8538 7914 530 8105 421 9230 103 6216 2550 3003 9607 9075 5923 8628 7290 6189 5720 7177 102 3577 624 8385 8983 3127 8982 7898 3856 9025 3211 4818 7474 6898 9756 2425 9237 1703 5353 7077 3357 4214 8189 8543 6359 1922 8191 640 7816 6954 4418 2162 5155 8989 3878 6516 3588 8976 2143 8546 4924 7472 5459 2404 9493 6474 9381 4109 1436 3710 4627 3494 7045 1154 4435 1269 7585 6820 9243 9550 8438 1146 9756 7930 8885 8753 4540 2010 1772 5877 5325 7097 5646 4300 5740 2830 6750 999 8790 1528 610 741 184 797 5850 6512 9773 4566 5438 2487 2963 8488 3468 4638 2222 1070 2841 1083 4129 9003 3642 6868 2750 1982 3742 3045 1824 4331 5934 4765 5280 6198 3435 3120 2201 7206 7279 2960 7419 7923 939 4298 3200 1794 9703 7344 9047 770 7698 9699 1364 2704 5265 5562 1646 8749 5096 2744 1612 2650 7366 8694 3921 4535 5317 1582 6814 9506 3388 1053 2217 7647 2972 9229 1441 4397 690 1395 8290 1324 5050 7882 681 977 7823 3825 1520 9154 2171 5461 6742 9115 9757 5948 5937 918 805 126 751 5735 3801 7034 2490 2094 4261 8530 6305 4182 8973 4768 6034 9513 9721 5703 832 1609 3199 7304 5655 8858 6900 8041 8800 1312 149 1765 1509 5273 5993 8131 6352 2228 5719 1844 8450 6382 4577 7189 3890 8434 7678 6076 2380 6772 1645 7857 4950 5515 849 1608 9402 795 7484 9244 4070 7113 7744 1106 9034 1439 23 4411 8791 8201 6241 8159 9462 4910 4730 6572 2320 6517 3241 4366 9600 8011 9114 1291 767 6561 1039 9384 2236 3067 6667 5088 8755 3370 264 2188 4181 1205 870 7609 2430 6635 8433 3804 6391 8311 857 8370 9998 4857 4798 2832 5484 9152 2918 5389 776 8742 3542 501 8255 3897 6985 9218 4692 5019 3902 2122 880 6366 9979 5627 2842 332 2862 9089 8475 5528 867 7311 752 2289 8599 729 3129 6401 6913 8452 6300 4984 9370 3574 2092 8807 8662 6735 3034 1693 1238 6259 3333 1934 406 4966 6223 6707 6498 2490 6842 2281 7323 2161 8486 7124 39 7137 408 1308 8917 352 8670 4387 5216 301 6134 7167 3376 6961 5443 4100 9813 945 7500 9609 7509 9931 4782 3440 4749 9736 9656 4319 818 6068 5145 6848 4433 4729 2047 742 1647 4112 4643 9733 7548 6956 6616 2961 4495 1305 7542 3432 2246 2851 7361 6945 8009 3425 3729 3615 3398 7965 8498 7544 5692 8911 2282 8551 9644 5868 6046 3191 1934 5709 5710 7940 9623 1025 1725 7664 5313 797 6013 3372 1871 9914 1048 3690 1678 7650 477 9371 9086 2145 7738 9449 6449 3387 302 4359 3967 9064 6352 6824 5185 9596 189 6695 2649 6612 4183 9925 3749 7208 4001 3764 1492 6743 625 6905 426 9494 7695 2169 2771 252 1777 4387 3143 6304 541 4567 6531 8503 3548 5887 2989 8846 4619 2977 2848 5841 446 3373 8430 8801 8961 3037 842 5386 828 7721 1668 7486 2979 7022 6638 3929 5467 5741 7883 8224 5934 8474 3481 1873 6447 4117 4042 3939 3845 1740 4542 2157 3648 1455 846 1120 5875 5502 6164 6967 6568 1319 5433 6287 8320 7110 6903 4521 9122 6727 8867 3428 9988 7027 7826 6809 5319 8799 2804 4295 7189 1159 773 21 159 9026 6671 8460 1897 7302 7278 7851 9226 8955 881 2178 123 2362 8968 1696 3100 3417 7918 6599 8768 9076 229 1599 1498 378 1524 8662 9451 7958 6756 4888 7142 2011 9282 5193 1717 6855 114 1293 221 852 8613 2294 4411 4871 2102 3240 5903 5921 3240 2912 4476 453 2084 1676 3335 7258 7620 551 6344 7276 5845 1538 2302 2521 3054 1108 1391 4694 1567 2074 94 487 1839 5640 890 9542 8124 6848 7253 331 6778 6502 9829 4522 9922 2555 8592 7742 2667 9754 1882 6358 324 8631 4488 4340 6789 5229 253 8827 1260 8051 5817 4064 6719 7699 363 7963 6093 2519 8226 2099 6174 7247 3620 3428 7866 2755 4437 7208 30 5216 7162 2925 8660 6210 5913 2464 7456 4582 433 1 9251 1222 5583 5677 8944 2583 7562 7067 4339 2509 4623 2623 7780 5071 8705 7018 7686 931 6247 9322 7307 2751 2808 9923 2022 6568 3673 6542 6987 112 4937 8597 4831 1967 2780 6742 3730 9283 6227 8311 9447 5827 8420 4152 7869 9154 2791 3542 8319 8607 1531 9263 4172 6532 6157 8770 4487 7306 2796 6644 9964 6162 4010 1150 5797 1804 9312 3468 140 3059 9769 4296 1166 7835 5429 377 8654 2816 7604 1233 9554 3416 314 5895 9660 2850 2914 4883 1226 1375 8788 6496 2893 4519 5757 4161 4189 2540 1949 7158 3210 8344 4351 8750 5527 5160 7428 1505 2114 1007 1084 5537 1646 335 5952 5921 7103 8402 426 9386 5974 7452 4767 6405 632 5547 8890 3348 4232 1108 9078 811 3494 9373 859 7456 3722 2988 8979 1793 2362 1615 2484 2653 4908 1606 3401 7951 583 6355 3888 9398 1155 4435 3711 9238 5758 3706 2220 8929 7470 8074 6777 4351 3422 5140 8578 4498 1083 5845 9227 4723 9026 275 9285 5454 8926 8528 8935 1880 5010 7005 6757 8136 9191 1209 6376 5541 1861 8322 4065 369 5794 4045 3280 7996 8619 9034 1854 7274 1239 2790 6590 5048 3316 6137 9486 3353 4045 8530 5167 1329 6582 7032 896 1209 4427 996 6723 2855 1874 8834 5315 6997 6586 6200 1993 1347 8765 9108 1081 594 1527 33 8413 7986 5729 8080 8040 4305 3717 4174 3403 4547 4905 8704 2803 1991 9728 7534 5558 6571 5524 3798 8180 4191 8906 7457 9236 9617 4177 3468 6880 6263 151 8701 1458 2661 7031 4374 5191 1366 480 280 5462 2114 2558 3324 5387 3390 5502 1284 2346 5459 5016 5097 1759 2494 4708 9912 5003 932 8876 8371 7067 7997 1419 9263 7010 7765 7198 6054 3902 7305 774 1770 6561 5403 4289 4921 9469 8427 3393 5088 1563 1678 2441 5340 4978 9243 6837 9562 520 1371 3964 8098 9360 6102 1722 4485 1302 5363 6994 3009 361 1301 1985 5533 7593 1833 2394 6630 4500 7655 883 1396 856 8116 293 1251 8668 5887 7276 8017 2051 1283 9397 6016 9239 7894 9421 4124 606 8294 217 3768 5160 2213 1768 6567 4976 2596 792 335 9722 7115 9856 6752 4085 6536 9091 7244 5121 7428 3784 7510 8870 5409 4472 7846 5081 3106 8540 8421 1243 8352 459 3059 7732 3596 8994 8580 6948 858 8085 8265 4743 107 4939 4605 9241 7803 8701 3925 3004 5473 182 3363 7815 356 1803 3161 9436 1444 9630 6050 5822 7740 2307 451 2187 4683 8308 205 5111 3900 7646 9126 6062 3570 7056 6679 8208 6180 1585 2144 8176 1767 7913 3700 1805 1597 4073 5366 119 3189 5040 9743 7165 2000 7330 4079 1967 9329 2613 8363 3365 8069 1454 5328 451 4009 1974 7688 8471 1805 1971 1796 4918 5311 821 6370 9306 4417 8181 3923 9941 7156 364 7425 6539 5265 9981 1509 6117 7160 945 2974 1965 742 9423 9237 3446 5763 6005 4624 8619 7852 5448 4445 2569 433 9726 318 9946 2860 9621 7054 6047 2416 1957 3025 2947 8017 6108 9040 1007 4318 7843 1649 4925 6665 1055 9266 1240 3194 3411 3031 475 7182 6260 443 3993 6524 5123 185 6503 4968 9478 9121 4547 7370 8297 5462 2144 5415 1629 8358 3767 7476 1340 3651 6891 3401 1080 578 5885 7322 2882 9656 8644 2677 6840 3508 7303 3318 4739 4249 9309 1830 4231 390 4266 3446 1213 7038 8929 4874 2141 2790 5430 9217 9051 8816 5823 6123 3790 2730 2403 9691 2303 5434 917 8553 9147 2206 1834 2885 2991 9164 9214 6371 6033 7113 5085 824 571 8365 2648 988 9420 6648 4054 8403 6715 7368 2617 9121 9932 389 5386 1076 5239 9712 1587 3155 4337 7134 6138 1437 1026 8565 7356 5141 811 8251 9595 3040 5471 9721 7284 6203 212 2724 5176 803 8529 6381 168 6640 6766 3509 1028 8362 7637 1406 5085 4032 267 9107 7777 8589 4582 3448 3019 7726 4952 8805 4770 3786 5267 1082 1872 9390 6420 3847 4805 4023 837 4077 9582 8857 2597 4870 2860 6749 8482 4773 8720 8782 1311 7673 8090 6280 4587 1160 7753 2787 1600 5684 7511 952 7739 5122 9746 2819 5484 3976 3620 5339 2419 3439 6248 6035 9363 9280 9283 6951 1756 4363 1552 5220 5286 2255 7732 9580 3495 9112 2269 8620 4145 6877 8058 1976 9587 3186 3629 8373 4747 9651 2796 1397 6053 4940 8035 8946 2209 1286 3487 9702 6438 8689 6617 756 2700 3447 2574 542 7543 6173 9429 4867 3691 2669 7550 3558 3169 2841 9430 3355 4653 83 4944 43 4394 3905 8352 2437 9567 8147 8148 4127 7182 4958 5142 1922 9401 1104 3510 2689 1603 39 9192 212 1286 1790 3274 1771 1360 7345 8056 9396 2236 7279 6780 9272 6675 5818 7696 4637 4542 9343 7022 5260 3490 7180 778 1649 3553 5884 8130 1397 5680 6635 5721 8227 6552 6921 7646 6069 5819 6057 7695 7544 2981 4685 2688 7108 5237 765 7212 3825 1289 7355 8873 8190 3915 4680 372 2080 3845 7394 3095 2602 3308 3790 7006 7226 3886 6837 9080 9815 1313 6609 6407 4986 9767 2850 2154 2562 5556 7173 4167 3389 9571 9832 1788 734 1002 5522 6712 9996 8052 1695 1113 4259 9855 7690 4574 5865 2674 9554 9135 9876 8436 9729 9360 205 9951 5458 7466 8932 8772 39 2139 1082 7988 5663 8135 7522 9902 2862 3324 4857 1469 9511 4181 3627 2119 6007 484 7152 9222 6577 3039 3415 3627 8545 1065 4077 9714 9172 8366 8586 1100 9114 5256 8239 5514 5473 6635 3768 9868 3797 263 1134 4861 5979 132 3672 8992 9832 8146 903 7508 2947 5312 8599 4560 121 192 290 7066 9098 7660 4340 8540 1436 6874 784 8530 9749 1546 6660 5150 5190 8430 9866 3976 2452 955 9425 2399 6597 3470 5979 1236 916 4158 \n9329\n4119 2463 8866 6272 7921 71 3782 8884 67 9685 7020 2205 4609 1683 3471 6741 739 3769 62 7369 5010 2866 9751 932 9881 3223 583 9134 9269 7663 9188 1759 6750 3698 4567 9646 710 5642 513 615 6075 7757 169 5508 9000 3948 6554 2757 6551 4319 3662 5505 6796 3463 3945 5440 4827 2374 3862 1248 8784 9880 8722 744 1808 8448 2576 3554 620 9093 832 4729 4562 7079 3864 6868 5358 3976 9297 2223 2585 4098 4337 3968 4 8690 803 748 6789 1490 7947 9590 325 9379 6318 4725 4800 8670 1838 3775 2387 8410 1697 8208 6981 6898 2221 3405 3782 9707 6487 815 3686 8321 3435 4828 1066 7353 7703 2234 9532 5958 4614 2579 3322 6222 1229 6858 3284 9219 8326 8645 8146 8904 258 3984 9730 582 365 5263 8313 5442 7264 8920 7859 2379 261 6456 347 5649 5397 276 4915 2686 9993 1036 9489 7731 752 2785 7161 5470 4662 1958 4019 4073 8674 3999 898 4151 217 9121 5646 5335 1909 9856 8141 6512 8744 2896 55 1679 5666 1234 8025 6401 9740 4188 2943 8568 7662 4459 3961 2084 4769 5507 2833 2684 1556 6055 4095 2914 2142 5047 4502 2064 5874 1988 755 3607 8202 1806 1013 880 8552 7322 9360 2144 5749 4576 2944 8333 7808 7746 5304 9812 3379 4392 876 2072 1689 8682 7153 961 1050 5059 6128 9004 6606 8093 793 615 3067 3319 8307 8258 2568 8913 4343 8220 8186 8503 5146 5223 8998 1076 7204 3601 8344 8409 8662 2475 9476 6233 2397 8427 1807 1250 5504 2360 1063 4223 4012 5504 7920 2076 2340 9828 1898 9297 8195 3082 1308 4268 6294 7573 1389 5357 5006 3498 893 820 3313 1771 2717 3448 136 6015 7068 539 4163 6483 348 257 2706 2762 1229 4952 17 8026 4293 344 3275 2035 3707 3231 3133 2360 7171 1321 6935 7714 8084 662 3613 7021 737 6283 6297 6570 3275 3544 2567 4730 2364 8941 2304 5829 5854 5619 5574 9936 2352 8569 5735 5704 2625 5928 332 7678 2177 5824 911 7503 5306 764 6358 3867 3204 5370 4797 4838 1702 4167 2837 2102 1830 5416 1430 7484 7478 8471 1694 8751 558 5962 6806 4342 9495 819 4521 1547 5054 44 4139 9557 9301 7836 4758 578 157 7538 8614 6729 201 9820 1658 4429 9554 1006 4536 1873 38 2320 9452 3837 5179 3208 4378 662 343 1486 7898 4917 7857 2636 9299 1292 2429 254 4737 4670 4646 7081 5315 8483 7570 5834 8436 1793 7396 341 4650 4047 7995 6413 7189 2431 7986 1491 2718 8978 6291 262 4048 3053 1945 4434 3234 3970 7520 3569 4308 442 8541 5976 8650 9646 3168 5982 7583 8255 9094 3784 8242 9277 6212 5601 6760 341 9451 6477 9508 2432 9841 5010 1861 4137 8920 1453 4247 4895 3734 7604 270 6583 8830 1910 6465 250 8609 8058 9493 1908 4113 4602 9326 716 5954 7368 1839 6014 8216 7883 96 3002 4902 7539 4680 1767 7327 1783 7444 988 3119 5371 2737 3198 5154 4385 1877 8339 5374 8998 3096 5188 4292 3036 2875 2071 8774 9781 9078 1512 5158 7651 1712 2227 622 2656 8641 1829 9549 1941 7569 9930 6957 4689 7678 4504 8456 7893 9143 2650 8952 5918 4376 3896 9739 2649 971 3646 9013 1593 6354 7360 8752 9511 9314 6506 4170 7056 6379 3492 4817 3048 864 6700 7049 5296 5117 1977 909 3540 8136 7383 7009 2385 4110 8517 8537 2281 2485 8302 5106 4054 3585 1533 3758 8274 6573 4529 7574 1553 7281 9609 2823 3707 7515 109 286 6734 1963 9238 7172 1068 4248 2898 5824 6777 1014 2321 4029 3811 9836 5378 3054 2567 6883 453 4739 2459 1514 8937 9784 105 9938 6492 3969 3663 1624 6036 1572 1788 6845 7004 9308 8185 1083 424 810 8302 8906 3168 6186 241 7492 1978 4663 8465 4236 3208 3980 5884 1748 3423 6132 1829 7895 142 1077 7107 6280 1531 808 2195 1540 7343 5789 2339 2747 198 5035 9454 6553 1090 5404 4892 9444 7282 8783 2238 2763 4070 7199 4081 874 1990 4390 2131 7190 7096 9667 9230 3892 7256 8547 8166 4594 7485 3308 2332 1261 9858 978 215 5466 8326 9470 3218 7171 9035 2267 4439 3475 8017 7062 5929 1662 3485 386 3757 5334 1972 8983 651 4165 4526 7407 4890 5579 1291 8644 6613 313 329 3902 7959 4783 7015 3201 3290 7879 482 8060 183 5372 1957 2822 7784 10 2673 2651 4512 7048 9368 390 5732 7697 7990 5437 4495 1123 2757 4589 8228 6241 4368 5608 8913 1623 9756 2956 1623 752 2079 8013 431 2758 8107 972 5641 1296 1509 7507 6711 8682 7593 1223 1753 1004 6830 3936 5864 2447 4822 7065 8561 4150 8128 1833 4451 8210 881 6500 2680 8716 8282 7926 6176 3608 3594 5690 6882 821 5799 8211 5934 3665 4951 7031 5425 9949 1688 4375 7025 6654 3219 1811 2594 5023 6031 54 986 2069 4927 6394 8594 6859 2717 8128 7932 6162 1674 8315 2336 9256 4111 6799 8864 717 9041 9741 6212 3857 9604 6120 3123 274 9912 3772 5181 4405 9580 3360 7779 9519 8563 5555 1088 4339 6180 1910 2410 919 9392 5757 6244 5678 598 3902 7236 8744 8608 6472 8428 5760 6110 2344 3787 13 8325 5748 4780 2445 4880 9346 8975 1595 4124 7393 4366 7252 6695 3884 5043 5527 1362 3368 4433 5364 2349 232 6836 2581 5282 8587 4718 6810 8935 5860 2600 6195 7372 5951 5272 6813 6156 6595 5186 5228 8321 3919 8599 1437 1457 8179 4393 2661 587 1970 4607 7098 8396 8781 7876 9595 9312 2660 4635 4652 7537 9031 3293 2993 6977 2336 3056 7776 3775 9923 9627 7312 7600 1936 805 9860 6250 401 8106 6115 7721 1752 4665 4107 3503 5534 37 5843 4582 5174 1829 4447 1923 9687 884 6695 8858 6847 3882 6319 8269 258 4880 2275 6188 4296 6965 6631 1907 9822 8243 5485 3850 3093 5660 7884 6413 6023 2036 8984 1081 5653 673 2191 4299 5214 1617 9536 9895 932 6488 6987 5254 5133 3967 473 3901 1674 8907 8280 4541 5049 5112 3684 8888 6066 5463 318 9475 8938 5579 2627 3098 7512 5439 1255 6443 8728 1654 9058 5152 6529 6055 3128 7981 1864 7810 8902 119 5329 9619 6295 1383 8476 3703 7822 5117 3867 5188 7220 1914 191 6587 4557 8471 7989 4889 8405 4071 1289 8011 1518 3209 715 7721 485 4378 6609 834 1310 2558 5253 229 9314 9371 9078 8993 2533 7100 1167 7469 8447 6339 7506 8671 4774 8797 3015 4367 7211 2879 8516 1261 8275 1557 8660 3102 9608 6348 6402 3648 1491 5550 279 2395 2487 7490 8373 8649 8958 9383 2027 7471 6070 3580 1221 8039 7891 479 3170 2541 7862 352 871 9860 1112 8894 9006 1557 3939 7371 4056 7843 6217 8785 5553 7807 1509 5629 4433 3155 3527 5279 9319 967 8634 8926 4421 5492 8438 2557 9555 5103 6974 9469 5412 2915 7831 4793 9221 1175 3791 952 6450 8601 9903 4966 2142 382 810 3788 1513 2813 3911 2676 9751 4835 5401 8335 6908 5272 8403 4042 1620 8986 5396 5985 2889 5949 197 7225 4037 4962 5671 5514 7973 6047 8567 5844 6435 6572 4185 1170 5598 5614 3233 1020 3744 6876 6674 6470 7983 8114 9610 4243 6256 672 8340 2025 9773 6178 4412 9010 9572 3824 876 1841 7563 9392 6795 7777 4873 1847 9133 568 7599 7461 4329 8791 2263 43 5827 7689 7283 5398 6387 2289 6085 9474 6225 7710 2023 9101 9624 6320 5050 1960 966 8506 1233 9801 4982 7456 3499 1826 7660 6712 6195 5154 3174 8471 7855 8274 6638 5697 1953 2304 9876 5318 5819 7061 8392 4282 9974 2545 9453 236 9723 8853 4348 9388 3502 9363 5350 3530 3509 1217 9286 2803 9909 5120 5932 6363 6762 9397 6437 7511 2157 123 2944 5234 9999 4132 7986 3690 1520 6625 3902 8373 4273 7766 4486 9295 7638 6231 7369 1499 7378 5958 2229 7854 1176 5252 9259 9889 4081 1950 4970 4618 897 9095 4828 133 6799 128 9264 1743 5478 8303 9121 4828 4171 1683 3013 2608 4381 9411 6617 151 1642 5684 8137 2514 7088 6129 5077 9106 2072 3508 7107 7177 3837 1043 7904 5759 9064 6274 5326 840 7173 6500 7225 8941 7678 7090 340 6091 5113 2354 1631 1677 3195 4168 5918 221 9981 651 4736 9417 3198 589 6391 3154 1486 8329 4083 2925 2858 8827 2675 1607 376 1092 7691 4325 3806 5240 56 6376 8357 3461 7682 6415 6716 1955 182 636 3148 9160 2071 5589 1053 8939 261 4974 3106 5373 2662 5805 2092 5934 5130 7855 4503 2041 1389 3149 1369 8283 640 8103 7940 8332 6430 6296 1708 5296 2740 7087 58 669 5255 4285 946 7591 9525 8059 6863 6756 8936 5501 3818 9327 3132 4979 7606 5875 424 4233 9126 2331 5646 2262 1459 4365 9813 3017 5426 8629 6476 6253 2892 621 4083 8763 5565 9267 2661 4747 3974 5584 1433 8549 5732 6507 3520 9483 7341 9187 6488 4741 3747 8289 2041 562 2516 9904 3044 160 5530 9437 3038 9965 3523 9258 5961 8847 4925 2643 3806 3635 832 4034 2840 1064 7169 3154 6825 1181 6306 4698 5099 5403 7432 5912 7395 1356 7239 2450 6151 8697 2555 3384 6332 7489 8659 4933 9655 7812 9274 9629 395 7099 7524 3167 8383 9863 4440 3407 3706 8702 9627 7714 7757 2229 7847 5062 2938 3359 6043 9203 4004 9262 9408 5847 1471 1138 1700 6929 6205 7617 4508 1876 6727 5173 4015 7331 7124 316 1254 2060 1436 3327 9118 5493 9120 6624 3322 281 3447 8156 7929 4835 1687 3796 4800 362 7499 518 4301 2076 179 7316 908 7642 7330 9550 4260 5425 1980 7218 4296 6839 5563 2793 3449 4283 1317 1497 5754 758 7438 1121 3482 9765 5155 4855 5225 2039 2649 1309 562 1662 1520 3830 7822 2415 3830 8194 755 9797 9956 5527 464 5968 9700 1231 285 8976 5585 1908 3247 4865 886 4680 3228 4991 7689 6494 5194 4201 7720 4429 8592 6356 3770 3309 6439 5836 4527 3097 4441 3884 8846 4284 3916 1753 1002 8864 3902 2165 5023 1700 1017 2250 8463 1475 3311 2883 279 3655 5319 4173 6961 452 409 5050 568 180 6492 9229 7410 7109 252 9392 2346 314 3202 8779 5596 6494 7339 2098 6312 7516 9735 1879 6229 9500 5654 8698 4551 6397 1677 6016 6347 4113 8170 3256 4161 5961 8454 8428 6423 9943 9378 1722 3795 9247 8613 2788 914 1715 2656 623 4711 8173 4699 4966 7373 237 563 3364 2186 4057 6907 2715 3379 8926 9768 5500 7183 9330 9786 6221 9924 6472 8135 7966 5100 305 9895 2438 3897 3669 6952 5442 3994 442 6601 144 587 4495 3169 8593 3682 5293 1942 4136 6335 2268 3105 410 4714 5521 3431 1927 378 3724 7891 1733 7502 3905 5517 1658 2687 9477 6893 5447 935 2272 2504 9177 6502 2161 64 1701 3737 6238 9152 3803 1948 1381 3738 1023 6303 3369 1254 391 1305 5440 7261 8237 6996 5942 7630 687 8504 8933 3060 4542 1762 5390 6193 1687 1664 2737 2309 5154 6949 3114 9433 7443 8169 2070 7900 6183 7609 9362 7106 7126 8716 143 9845 8073 2260 330 6175 6891 1948 1719 8919 2693 299 1934 2441 6614 1406 8259 1389 2748 1969 1518 2970 6327 9798 565 2069 4110 4458 1196 8399 2960 3032 6139 8896 1797 6828 2834 3549 5424 4053 767 3099 7173 5843 8552 6148 2052 5972 7102 330 91 965 7957 6210 6399 6101 9180 394 1312 9433 8458 9998 2697 9087 4298 787 9702 7110 6326 4578 7992 8985 3130 4380 3651 1005 4893 8205 8538 101 2220 8530 7049 5466 4956 1903 7881 5083 8547 3256 8766 6315 7204 2755 5093 1600 5965 2230 1987 465 2297 7816 2165 1839 4343 1929 6911 4435 4277 497 8867 1689 2531 2063 7344 4960 6031 8152 2612 3116 6758 3239 1063 2468 1367 1877 5176 8997 505 5271 5236 9042 6543 6463 6219 1272 1413 3997 9571 6 5209 4079 4326 535 5248 1805 3041 680 7330 3463 3505 9881 9953 5664 7284 5566 4303 5133 5509 2189 2236 9925 6017 7330 6233 2005 9640 13 4971 4351 9982 7085 5122 8204 5468 7047 5902 9289 933 8175 5791 4610 3634 2806 9725 9999 3831 2423 6658 1922 4983 2070 2661 1425 9023 7771 2828 2640 9545 174 2847 796 3963 7108 5497 550 8665 4591 1005 5946 8349 1022 9191 5897 8255 593 2094 7529 8018 4091 6027 8646 8287 6004 913 4589 9094 9150 2787 1449 5397 4208 4641 9321 430 9230 7974 3527 6590 4643 2859 9383 7422 8642 9995 8254 1882 2445 1418 7136 6089 6701 4890 3787 376 7007 6058 4684 27 8600 6592 7966 3280 260 8588 2448 2591 830 9776 489 6665 691 4211 288 4462 4601 983 426 5092 3869 2704 7808 2807 9174 9633 3311 3110 3839 5554 3619 5646 2640 9465 2817 4676 3131 4544 4714 1103 9957 8150 9973 3096 4129 8096 4364 954 8755 7232 9913 3668 381 566 1015 2483 4050 7341 8451 1712 8837 5266 6190 6927 8055 5181 6104 6665 2577 5367 1988 7430 5208 448 6381 5835 9509 6304 5060 7937 7657 9442 3077 5752 6467 8097 3169 6776 9774 3472 8484 8547 2792 9543 9016 7989 9731 3585 2154 6024 1143 3039 4084 3531 6880 7544 847 2970 4006 9272 6883 3323 3201 8934 7316 4591 5789 8350 3271 6318 6250 8654 9626 7941 514 8151 5503 7596 195 7784 8868 3641 5779 766 824 3045 2084 5616 6402 9926 238 8569 1352 9 5849 4744 8306 5388 1436 4038 8152 3999 8469 4116 8189 6484 8372 1299 123 1268 9351 2819 6302 3680 6955 2729 4913 2029 1231 2682 520 6945 6161 4047 8525 8343 1160 7105 390 4434 8786 6306 2380 8417 2781 518 2029 535 183 9223 3245 1815 8275 6750 2637 5171 9042 6302 3262 1937 4415 3388 2457 188 5045 8143 814 2180 3213 8158 8246 6955 741 5480 1912 3167 5487 3270 6496 312 1143 7795 2150 6986 1663 9417 7126 3701 9193 4 3469 9998 9297 6207 1923 5395 1761 454 6579 1451 4392 9273 6997 7894 6428 9332 2508 1618 4797 2009 4470 2340 2553 6138 4081 6662 9964 4818 1587 4667 7186 8310 9394 973 3117 4582 9576 2817 5902 9886 4048 4556 7421 7331 8385 1729 8122 115 8935 9682 7141 1023 7364 2522 3147 4498 7560 3211 1846 1973 6761 109 5637 5258 7761 8791 917 8193 1561 4368 8376 3746 6975 5193 5197 632 7427 8265 3017 880 567 8579 3466 6184 6371 9781 4192 7687 9474 7219 7737 3203 2201 1135 241 1960 1732 8729 4575 4712 84 8176 4564 5392 4260 5391 4386 725 7367 4598 9824 377 8765 2707 3919 7763 8967 5795 2549 843 5534 5347 581 3833 7091 9424 3606 7024 3828 498 8414 3113 125 1199 7839 4351 379 9101 7623 8335 6470 3724 5910 5888 3792 5077 6911 7877 2958 7290 4951 6437 6856 7579 5094 5021 148 5481 3965 9618 5752 7684 8833 7053 3529 2275 985 8345 948 7578 6780 1572 8645 6270 7457 1970 3943 6438 4745 6232 7274 8142 4144 3550 7135 5415 359 806 8702 4550 6107 6868 3180 1358 8984 2876 1650 5254 7874 3600 5191 3697 6713 5896 9636 4844 7675 9522 6181 110 7541 7467 3804 9680 8658 8534 7077 59 3145 1362 3561 7559 4767 280 2281 9442 5012 4554 751 407 9486 2693 2573 4071 7567 2208 5252 3875 2450 2969 9727 9953 788 1775 7358 5508 7407 5629 7687 4451 4432 2073 471 6741 4796 5395 7661 526 9998 5390 8880 4050 5890 6772 85 6182 9730 2815 3003 7162 1978 9949 6759 5402 2396 7969 8475 6530 515 4867 8293 8021 2729 1160 8717 5220 6932 757 1578 2757 8534 6723 5591 115 4828 9155 4134 7463 7143 1489 613 133 1458 4693 6873 6247 4140 8634 9310 8206 8990 2421 450 9491 6732 6948 383 5641 4344 3296 6422 6599 8960 311 4379 8771 8142 7739 2083 1280 7268 7705 3037 6295 7299 8196 7792 9423 431 5496 7077 9951 9063 4272 407 4217 9819 4633 7146 5701 2396 4921 8886 3462 1148 746 684 4101 7155 7550 9676 1250 9752 1618 8086 1170 6695 9495 5890 8629 5545 5944 6822 4766 2593 135 6668 884 796 6429 6148 8561 5597 7838 5362 9170 9292 3123 2109 5011 3284 7710 7488 3928 8648 1607 9682 8276 1907 6118 3244 4781 3596 9311 5855 2372 2470 9285 2156 8812 8326 3716 8307 7844 1763 4151 3669 220 2562 637 8720 2672 9169 5467 8984 3633 3052 5229 6000 7367 6021 2218 9897 6979 8757 8556 9389 5539 8650 8429 6558 1037 835 1705 2657 669 7941 6333 1069 9610 8260 3737 9597 7233 4103 7491 105 7163 8475 3375 7075 6199 5611 7721 2327 880 193 4591 8866 8404 2846 3909 680 5337 8636 884 5488 5624 384 8412 6023 127 1235 6221 2993 285 6499 8721 1951 5767 4479 8088 9866 8840 8083 5297 5557 7738 3436 9492 9324 6387 367 3683 7934 4815 8183 8454 5436 8965 5797 7838 2246 1167 9941 1540 6640 2422 3347 1511 7832 5157 2737 8530 3615 5618 7552 7961 5000 1970 9338 4906 5439 5729 1082 1668 9399 218 8978 9613 9545 5511 6693 2957 151 2161 3297 5793 5438 4958 8653 1981 9928 9443 5858 7998 8616 3538 3087 7424 6838 5221 1182 3232 1539 7410 6490 3380 4306 7204 1593 708 3608 3930 9537 7068 1640 275 2023 2841 4470 6718 3067 1825 5130 1102 8853 9091 7979 5216 1321 9326 3782 3591 5928 2403 3047 668 8207 3844 9420 9004 1425 2601 8005 5248 5282 8491 4723 4080 6799 3656 2221 6433 3100 5970 7335 3606 4387 1293 4001 915 8388 1483 6310 5785 1200 421 2041 8307 843 3191 5030 5091 9541 4514 2128 4448 1017 9886 2810 4584 7362 4282 9887 3497 9411 7239 9069 249 9069 5896 4628 7819 4599 6604 3574 8585 7056 953 2115 4635 4207 3637 9012 4878 9285 6368 6016 794 9216 1406 2425 7003 9595 8876 4701 5476 6571 1855 5889 8110 4271 9889 2467 4150 3483 7297 9365 1076 2794 588 8498 9691 4813 7179 8552 2024 4377 4037 5508 8390 7192 4637 9726 2347 5698 9553 3444 3134 3779 8827 8068 442 5085 8353 5897 1556 1576 1237 9034 9450 798 7787 2553 3607 8585 9864 303 3735 5887 8458 4790 7908 2641 8171 2035 6894 9686 743 6373 6974 2765 9965 7315 366 1255 5306 4099 6906 4623 6778 1579 954 4147 9159 2425 228 4722 4144 5442 3139 7990 4436 8625 1734 8188 4466 780 8024 3862 7835 922 4773 3698 563 38 610 1184 4338 3600 6326 437 5587 6397 4349 8934 2719 9264 706 1080 1123 1077 3217 6853 5003 4857 7407 6850 5713 7461 1973 6628 2923 1861 8818 2993 8469 4843 3700 7136 367 5244 2187 7690 8101 1725 1027 7546 3591 8169 4545 5760 9559 3437 8219 7938 8334 725 9782 1374 2518 6784 9379 5319 2475 4828 1356 9213 5122 7707 3215 5732 5603 4652 8596 1400 6367 8043 1003 9076 6926 2093 3223 5052 8682 7153 9561 4490 9367 2239 9059 8076 6840 7120 5195 8624 5418 5926 4663 1772 8665 9660 9348 3318 784 8302 8204 2240 3096 6691 9736 3203 7544 2628 309 8419 8972 1777 8493 3568 5192 8213 1368 5718 2433 633 8648 2718 3487 9531 2897 2604 3215 3498 2422 1850 1647 337 2709 4210 79 2687 2292 3191 1766 3005 5097 9001 2682 6995 9758 858 4925 4783 587 1373 4792 5361 1288 2536 1858 7308 5550 6309 7312 1960 5624 5631 4938 1563 755 2872 2764 3746 4510 9399 6358 3924 1600 3794 9189 8182 4774 650 6066 4418 4922 2248 5119 6468 6720 1698 1142 3047 5676 1597 2816 8265 5190 5944 1968 3194 965 4287 168 2846 6648 7402 4521 9829 6622 7083 8359 8025 2332 4900 4507 7597 8471 8418 5663 7787 2249 4232 5745 1511 4768 4687 3995 440 6953 5565 2630 671 359 5052 2354 1913 2803 4383 7608 1998 7831 2990 5812 6517 6327 292 1713 2602 5633 9031 4932 2143 4067 7033 8554 8936 2245 8194 2583 5580 6892 8728 7979 6549 2573 681 1888 7278 1927 6084 66 4070 6918 8379 3162 5785 5083 5234 2447 7061 2876 1239 68 5467 2669 9520 9926 4089 2360 5326 6065 911 3860 4533 2479 9470 917 3714 9642 2466 9210 5020 4945 1004 6273 7273 7811 5596 2713 9569 1874 551 8038 6056 7127 1496 1605 8940 3479 4288 6022 9964 5887 4137 1689 9951 9200 5733 9421 4683 4837 7392 9721 6047 2774 3060 929 2248 4378 2179 3247 7402 1562 6998 8119 1811 7680 3430 3072 5316 2234 903 6352 861 4713 6006 9101 7511 1041 9574 6117 5781 6173 2753 8240 973 7788 1704 1772 3562 649 4378 3007 3119 593 4570 2069 4560 8427 4533 9114 7643 5148 4756 2131 7939 5663 2097 3347 4755 6228 1398 8828 9172 3305 2401 4428 7274 9294 9552 6575 8396 5838 1812 7921 1463 6527 6185 8411 986 925 5424 2921 1550 182 1891 8929 5375 7301 7287 1814 5670 3237 4305 1011 4970 229 6634 9171 5975 6788 4626 8394 1177 856 226 8921 8691 6303 3254 8665 6157 8466 443 4642 1950 3177 1279 390 3112 5284 6639 1859 9425 5465 4987 798 239 6299 7294 5408 7720 7847 7437 1420 6149 795 748 2383 9599 614 8819 7882 2567 1423 8695 2861 8719 7348 8195 8317 3036 5182 5745 2996 6336 8158 6966 9477 3699 9078 4810 9796 4263 9164 3910 9458 3524 1097 2720 4622 4044 8355 4918 3501 7841 189 8884 7060 5499 6837 4770 3936 3584 4522 3677 1843 1422 1269 8573 9288 2222 5102 9814 4205 8968 628 9497 9951 3870 4641 7952 4803 9044 2454 3559 9477 7699 2602 5130 4695 4511 5351 2828 1471 5581 9298 2484 88 1038 8620 9035 3841 3392 7269 2429 171 5145 9551 3259 5390 6917 5094 3180 1584 7622 5408 7117 829 6207 9380 1381 9429 5659 2618 1333 6665 5630 7587 9744 7895 2636 7472 6240 6739 6004 9044 1254 862 7337 5222 9507 3742 1668 653 6186 9751 954 7732 5486 848 4833 8855 2698 6199 4759 6894 1314 4953 562 3697 4218 5419 8540 335 8743 7835 2293 8196 741 8288 166 4346 1011 9488 4103 575 1565 4411 3483 9841 7067 6104 5669 6712 7844 2552 8036 7238 6976 3802 7499 322 3624 391 5078 2809 3583 5979 2840 3074 5525 6365 8324 8891 8195 4871 3560 7670 4736 9003 8360 2663 2635 1127 9694 9890 5605 2416 9769 2664 1388 6590 5996 1429 3606 6163 8444 4675 5292 9368 445 765 4211 8827 6044 2768 7468 7796 8195 2985 2685 8397 3955 7636 2532 2121 2458 7248 630 6763 2257 2375 6379 5435 8752 9634 9996 3054 3276 978 7595 9954 3156 9786 6972 8444 6497 3671 521 8172 3653 9271 4882 4823 7293 3123 5895 7872 6585 5705 1934 753 5343 8614 8575 8556 2116 9733 2105 6616 6286 7947 6748 8922 9784 1655 9457 4554 3379 8748 4481 7110 678 2535 7330 9302 2862 8439 3568 2942 1624 4577 4775 4088 3734 1464 3245 551 5109 4473 5303 5197 4154 9177 6174 2863 1782 8424 4617 8649 113 464 9043 6152 4384 1367 5069 8350 4899 5392 8631 2477 1045 1916 2992 7154 6359 9790 4623 2271 1372 9525 3921 776 2182 8667 9307 2779 4923 9588 564 5434 2310 3243 5627 2240 5085 7782 6783 5271 6360 6000 2180 2894 6768 569 7933 7356 3338 5512 1973 8566 4903 6441 3671 5182 7609 1796 6245 4720 1515 4492 1873 7089 9155 9602 7773 3657 9471 3224 1434 8586 9435 5702 6359 4703 929 4555 5423 1044 6012 1030 9002 8262 5645 2498 3117 1728 9407 5025 7223 8510 2103 9517 1859 6554 5185 5012 1945 2868 8808 7107 9356 8833 3562 2670 1885 5316 3354 1745 3005 5145 3256 8892 7390 2526 7285 9361 6009 8957 1447 9544 6774 622 7910 1425 1371 3429 9798 6761 1200 1069 9172 5664 5643 2679 4484 6175 2119 6436 7246 5311 9122 9 5967 1512 7681 7600 53 6486 123 9357 389 9099 1371 9495 4866 8560 5684 5805 8179 1639 2496 1042 3066 7834 2042 6929 199 4946 9245 7454 740 6962 8583 1675 181 4851 4039 6360 146 1058 7189 7448 3675 8082 9297 5927 6407 4756 8155 9675 8550 6444 7043 7085 8845 9791 7788 4476 18 7106 935 7980 6409 3992 6223 5677 1800 6824 9202 90 200 4990 5965 6635 2720 7342 4749 5189 9983 8845 915 11 5246 1037 8200 5262 1384 9646 7637 8607 2984 272 8320 91 6061 7285 2600 8024 1338 8914 9388 7992 3211 3897 4381 7760 6019 2723 2198 5810 9770 6893 6126 7541 1612 6896 6763 8647 7786 9841 4883 5260 7877 235 3686 8134 454 2326 2413 1597 9252 4219 1008 8330 753 5353 1015 829 886 3656 2249 6587 1830 921 7718 218 6066 7831 1562 8839 4080 6344 5945 1256 1316 5620 6946 9184 21 2219 6475 3667 3212 9216 4205 4177 9282 8295 6813 9582 1185 8633 2615 2724 6335 4893 6616 6760 4190 6471 5507 1026 8716 8716 8178 7338 9803 4014 3961 7833 5516 9203 6734 2585 1757 750 8898 1174 2129 8290 6489 1583 4790 4462 2156 6595 1527 5347 3505 4639 970 3362 4327 388 9156 1463 8994 6817 1846 8349 7688 3093 2028 7566 2624 1754 3184 5099 3662 3905 4985 421 2788 1249 8349 8917 7712 1276 6847 7453 4067 5653 3267 3798 6816 4892 3737 1850 7975 6511 1872 7001 4760 6209 1995 7197 854 7117 1651 1805 7441 623 499 2895 199 5388 7649 9185 4816 7805 7973 1288 3400 217 2962 3880 4686 8944 3639 7214 5525 5836 177 1701 3313 8660 9993 9166 3634 7323 9420 5172 7568 6392 6115 6733 7694 4550 540 5833 2595 8769 174 8567 9113 1752 5445 3057 3459 4238 9490 8473 2327 8085 6916 1525 3051 3996 8940 1347 2159 884 6419 4731 3725 3692 6062 5414 4007 7964 9 127 880 3942 7004 8079 2906 9247 3060 3586 2849 274 236 1623 3549 2736 2292 3348 7470 8148 3919 7256 7436 7837 1596 6574 169 8729 6426 4218 7049 346 7095 5221 6819 28 672 5351 2971 417 4902 2541 5699 9142 3763 343 9474 857 4624 668 1273 2498 2435 3751 6184 218 1557 2889 8430 8999 1494 9274 1372 5794 8004 2986 4138 672 5450 2237 8666 3106 5256 9279 3154 4363 3093 7985 1622 9985 1380 5064 4027 2256 6783 1226 5510 1715 9382 1844 3376 9475 973 3167 2919 2668 1338 702 7656 7198 8427 5863 2334 8764 3016 3216 3249 6898 6953 1078 8277 8651 1054 340 9501 5968 1345 640 4981 7303 6476 1111 6699 387 9548 3252 6707 3991 6478 7567 6113 6743 7637 1690 2210 3877 5316 9649 5432 2660 1650 924 2809 4095 4642 1395 3519 4208 6396 9600 5159 5196 9750 5915 1117 6735 5044 8391 7995 9135 4920 8993 8790 3076 6529 5303 4317 3851 5594 5461 354 6197 3641 4131 5884 9439 4361 3219 5317 313 9727 7977 4428 3587 3464 4323 6105 3631 1 2794 9943 615 7185 8810 6880 3853 9897 2126 1160 1038 1189 4055 7063 3342 6786 5877 7511 2248 8220 9792 6592 5253 7807 7671 7891 4026 1302 9969 3179 1620 2889 2801 158 3302 2649 9577 5728 4156 5832 8548 7008 3534 4380 5627 5227 9360 157 2952 3193 6338 353 3374 9956 6290 7571 9303 2471 425 601 5747 5424 9584 2417 3076 3955 8718 642 5708 2634 4063 9246 3374 7478 5456 3122 4445 4963 6449 451 3166 605 2580 3229 7820 8569 9599 2323 5826 9483 7234 6446 1293 6359 6260 9740 6190 7223 31 5679 5133 118 6216 6193 1782 978 1739 7723 365 708 8299 7821 8103 2269 6880 8961 4712 9275 4565 5318 4594 9661 6731 1566 769 4473 2155 8458 5634 4319 9643 7693 9663 4343 8600 8608 7641 8907 7631 5410 7030 7095 1920 4326 7364 2254 3010 915 2729 5163 14 5210 9476 225 3908 3171 4323 2468 3079 8377 9412 9813 4370 6472 550 1792 6172 6651 7910 566 468 5045 2691 2355 492 9476 412 6466 2831 5786 4162 22 9935 551 9340 8951 7292 1129 1233 3487 8048 5196 5947 2613 524 371 7757 8366 1099 2639 1737 4785 7052 4276 5163 9288 6500 9044 5188 15 9046 3932 6349 9625 8515 7482 9616 4560 4083 5194 5380 6443 9929 9397 2377 4817 8641 5036 5328 1506 8824 5781 4030 3451 9148 7178 4650 7772 4113 4697 7008 1346 1703 8703 6022 6123 73 203 53 2612 5369 4098 4407 2838 6578 1474 3074 2509 8112 3577 2017 5569 4183 9358 1870 9846 2259 7714 7898 7477 1112 1418 5607 9254 7911 2248 8746 3203 4292 3694 849 588 6395 8075 9684 2221 8070 5838 2293 396 4453 1172 3578 5287 5232 4935 2186 9472 7285 4913 2542 1036 3021 4387 8419 5110 7605 2793 9647 6424 2757 1145 8762 1384 5585 4660 4027 5457 6718 8888 4550 9783 2922 7721 29 3200 8536 2706 7232 545 9422 4548 2754 652 8279 1201 2243 7205 8623 7184 7677 8558 1421 9389 3230 1264 7955 5168 6294 2179 4190 7588 7194 6990 9356 7470 8570 6642 1411 1433 2646 6196 7138 9707 9024 1469 9529 5864 7095 3511 9203 865 4710 2103 5575 9702 8351 2695 5392 163 771 7508 4818 4484 3275 8413 6407 3960 8045 4852 6080 1223 1850 6057 3728 885 1881 9549 3932 5533 3129 1583 9831 4357 6728 3779 5479 97 9236 6755 9843 5743 6621 3036 5394 9018 1034 2036 6249 312 2543 7871 4079 8442 4167 7604 4874 3000 3628 6272 1791 9340 6644 4878 5202 390 4481 179 6838 5304 9146 2218 9363 8762 4112 5540 2188 8601 5778 7291 6465 5861 9061 3981 2010 5007 4729 2865 5356 3635 516 8721 5946 9128 404 239 6489 6177 8697 1777 7404 9682 5718 5908 9465 1264 5780 3730 4266 374 2756 1444 2191 1927 7875 1983 5494 2435 9127 1731 9494 3302 9724 4298 7510 2290 1310 1262 6602 1564 2216 1525 2350 2308 2971 2388 5144 9101 2848 7125 2465 7004 1357 5145 4377 7624 7276 7909 2541 3491 3231 9579 1613 1452 6769 3236 4942 85 9443 3323 1962 2571 7785 5445 2351 1317 3382 9514 248 1230 6660 6716 6382 4884 210 6171 5294 1842 632 959 6715 357 4074 126 1637 7682 4945 9532 2457 228 8469 2478 9367 288 5086 1158 6905 4478 2610 5376 6314 1568 3509 2719 4658 8039 2435 1641 5965 5478 7773 7733 7331 6347 4492 1322 363 5913 2318 400 5061 2477 8587 9594 1916 6027 8465 2846 8470 9478 8642 3532 8756 2765 6538 2088 841 9045 7823 3360 9689 8295 3963 9431 5875 1708 4244 7768 1862 6372 4949 7636 4346 3648 3370 4039 7944 1802 1669 5676 7239 5524 4181 2219 5510 7334 4684 9819 4379 7299 1541 4743 6729 4663 4454 2256 3320 8585 4009 6142 3260 7628 3430 3171 1676 807 4365 4508 6072 9037 8152 3281 3719 6469 6418 3474 5677 9446 1763 656 5069 5888 3718 6600 7947 3598 5600 1748 6345 8250 1254 1986 8462 3468 3041 6765 8573 5473 3013 4791 423 1713 1541 5502 9380 7554 9540 2482 9510 7956 5541 1154 8955 584 61 2628 9703 6496 9859 2864 8740 3465 3129 1503 272 2821 8699 5189 5330 4042 8419 9444 894 7555 3481 7648 7399 2656 2633 260 1202 9694 8450 605 1093 5408 6750 3087 4667 8638 3681 4147 9495 6171 5804 1322 1741 9264 1098 3539 2465 9963 4350 5783 6619 2338 2547 7729 4455 9251 5139 6033 2209 8848 5009 9300 7936 4084 2197 1299 745 401 8628 4655 3606 8729 6032 3109 4023 2614 1999 2999 3981 6579 7179 6131 5962 2032 5996 9177 4740 4655 7591 7977 5707 7733 2700 4850 9011 8567 8933 9303 6410 7811 6308 5648 9552 5789 8520 5765 5945 234 1362 3377 9390 9238 1025 4641 9353 6375 9261 1394 2041 7559 4874 7470 8776 2308 4989 8417 3892 4442 943 5175 243 4375 4597 343 7615 2639 7007 3881 8429 7084 8119 9266 2499 2465 6394 7387 2805 5735 5348 5062 9761 9820 8180 7696 110 1024 7626 635 6584 2267 4835 5340 5851 6897 7035 4477 6637 1698 4149 5166 6399 9057 3195 1364 1691 3758 86 1003 1566 6192 2953 9929 1612 1052 2541 2548 668 1815 6665 1934 9491 9265 8901 585 3323 520 4115 2348 9190 4067 4387 8663 5670 4513 3061 6915 9560 6342 1086 5912 3671 5299 1490 3006 5496 1305 2591 5002 4906 6862 8250 3610 6441 6467 3856 7020 9173 1080 3518 8132 7540 5826 4798 5637 7296 2726 979 3530 3605 7628 4754 6760 7477 6084 7037 699 1877 6751 3956 8853 910 675 2775 1920 6317 2699 5369 9838 2653 3731 5844 5783 9510 2541 4901 4195 3603 6216 8506 4503 5589 6913 673 6676 8515 8927 3621 1258 6431 4569 2487 288 5392 7557 2525 4292 8669 581 1175 2978 530 4743 891 6474 6354 4131 3347 7395 6096 548 71 9631 4094 8124 4998 8876 7221 8757 4285 6141 4075 6086 6180 4101 7794 6766 6508 1185 6641 2020 9282 766 2303 2906 7963 5442 7194 9136 5516 4919 2536 4461 4692 7503 260 4051 5316 1135 8267 5192 1689 6891 6828 9091 8859 8550 5681 7737 1444 2802 3640 8387 7522 5328 9932 895 5306 8205 8926 150 8530 4013 1387 7662 8693 9609 3619 5942 1375 7857 2495 4787 7679 5918 6477 7236 9442 2310 2573 8888 8941 6336 1633 6656 695 946 1637 9943 6783 4517 7591 6450 3311 3480 2354 46 2283 7945 1913 4566 4763 1418 6695 625 7867 2309 410 8255 8573 908 3455 4812 8156 5156 7812 7138 5006 6709 104 9204 4693 4879 2280 275 7720 1949 1981 8995 7988 1629 1478 5653 7674 8441 3469 5085 1228 5856 409 2436 7334 299 4143 3225 9650 2404 7549 7354 2083 5233 9660 7234 3958 7615 9882 6857 9502 1605 4229 8517 4510 3637 2719 8674 3224 4255 6542 1773 2296 1860 6360 166 157 4334 7393 3262 2498 9590 4341 7475 9949 6398 4079 5018 9106 9127 3028 9216 5430 6683 7833 8706 2659 5146 6689 2054 6385 1318 740 7182 6367 5801 1662 9060 596 8837 3881 5390 4545 4672 5545 6820 6343 3136 9199 2803 4966 5687 4170 8031 5613 9358 5060 2453 8367 9400 5591 60 9040 511 7126 3568 9887 3781 1957 6358 3633 8289 3544 6262 9616 3970 9696 9014 5452 4846 3995 4682 8488 9678 8498 1114 1339 529 4108 5771 965 8438 5502 2911 2731 9934 4941 5983 6728 3631 5482 2986 6287 3731 1447 7949 7755 7666 4920 8667 3583 8038 6034 9842 8149 4068 2181 6968 6763 1472 831 262 4098 5437 6035 6949 5735 9405 9528 5869 5777 3440 543 6181 3524 956 423 406 8008 8013 4827 8019 5931 5538 5734 6056 5995 9263 8431 725 4892 3825 9200 4347 5950 8859 3065 760 9496 3146 1233 1069 3332 708 9800 9592 6832 3735 5829 231 1507 4700 9902 5924 6545 7124 8365 7756 910 597 1955 4343 3316 1339 8823 5974 9285 1033 4406 7021 3275 2014 4793 9336 9782 1491 492 8256 8737 5156 9161 6427 9045 8662 2660 3631 8483 758 6042 2247 4845 6756 6211 1968 9131 7956 5666 1067 2158 6748 8534 3435 5622 7749 6671 1605 2149 5598 7382 4874 3292 1154 5903 8 7528 9722 7619 3985 3624 2193 2172 9574 5500 8311 4321 2348 1522 2471 4573 709 3199 1045 2338 33 5109 8707 2642 5856 7519 5733 7355 3785 8108 3073 3894 9571 4530 6825 8397 5446 714 7483 5594 6180 248 4018 2315 7572 2522 4348 6937 7516 2158 9767 9071 5562 1832 3830 7370 7670 3406 6530 6778 6745 8433 2543 1599 9833 2557 7041 4870 8243 8357 9305 1406 4476 4953 2572 7925 6425 2001 8266 4642 3919 2813 749 6225 5736 2244 7500 6806 2423 4675 6647 2226 4836 8524 3325 2327 1316 445 1867 6053 1473 2282 8927 2998 7476 1025 6202 3131 4466 4428 291 189 6416 1652 8108 8467 5513 1037 6515 2315 1165 6606 1367 6321 1844 6983 1212 8674 7845 319 3692 2141 2578 8093 1427 2496 4266 682 4809 2436 6576 2649 2165 4 2516 9397 5550 2358 8877 8044 7385 1499 9487 5787 8658 8621 3987 7769 1081 2517 8663 5027 8348 5845 4514 7855 5308 4902 1721 9510 5095 9352 8407 2915 3460 2263 7632 5199 3776 111 4646 9160 4391 3353 7607 5547 9945 1856 6360 8077 2712 3349 7021 4449 8939 3282 3766 1198 6837 6882 3256 9723 2532 9410 1757 9027 8657 4836 9198 4562 1295 9585 9027 3007 2891 186 1053 4670 1529 4031 1985 3273 6418 4511 7501 2571 8126 4913 1955 1579 8931 2428 7192 2545 6882 6012 6357 2374 8700 6411 9789 7934 527 1270 4661 5571 7893 6705 2678 9781 1392 2098 2947 9014 5407 9464 337 9444 6946 9232 2249 1272 1149 6317 7505 9695 3225 7572 6339 4987 3594 9845 2834 1880 1678 8190 8983 87 1284 7221 5820 4207 8161 4643 2693 73 4899 2189 6376 8714 2955 2599 4097 9898 681 8870 1315 4659 9320 347 2589 6486 4213 9666 7151 2324 567 8240 3555 4683 5451 3775 8376 5029 5055 570 5376 2617 8144 8406 5115 7317 9949 333 7248 6480 8017 7880 8000 111 5198 2245 9669 8804 2430 6276 672 2243 2002 8565 6455 5222 3210 687 541 2035 8981 1475 2905 768 9128 145 7989 5448 6655 2284 3465 3555 9524 4699 1485 5085 4914 9938 2111 9823 9632 4082 623 5588 6333 2892 5616 985 3489 1887 8632 5898 3501 6776 3812 7672 3103 9719 223 349 8927 9168 7274 7412 3853 932 2793 7364 5491 7148 7671 7704 4819 4849 9767 9618 2489 6166 7303 8148 7798 8046 3973 989 7572 4832 6360 3266 1525 7221 893 5409 8951 7771 5777 482 8098 8277 2334 1007 3363 7165 2232 7302 2743 2131 8137 549 3553 6435 9102 3734 1863 4028 8833 9897 9325 9039 360 2791 4357 3517 6054 1445 73 3191 1527 1243 6461 5951 7073 9114 3234 9570 2490 1920 1643 8588 2964 6254 7595 598 8825 3148 1087 2758 517 6830 373 3902 5891 6965 3205 170 460 9127 8382 1079 199 2454 3393 733 2544 4797 1111 7976 7694 69 4432 4262 4841 6773 5832 2508 2370 9704 9834 264 6833 9291 4200 7551 9903 9332 4733 4445 8834 6715 103 3882 1835 5375 4424 4602 8857 1787 1717 5395 1064 9346 6578 3476 1675 7693 442 4780 41 1856 8271 7757 4071 26 8446 5493 4809 8812 4957 1547 6046 4602 1420 3107 2776 1642 2694 6523 4770 2110 6499 5003 6167 8180 8391 7278 2851 8344 1909 8774 7774 6525 3347 9732 2479 2954 6355 2046 5343 3052 4922 9562 8049 9998 7815 2569 2410 4914 1273 4721 9406 3140 804 9200 8825 6175 429 683 4027 6966 2096 4511 9472 2621 9151 4912 5373 2105 3415 1564 3119 3810 2391 2163 7695 4165 2612 1311 5992 6846 5012 9026 5820 7660 1626 9776 7470 9559 1411 205 5786 2563 2491 7894 3847 6927 2671 2098 481 3466 8319 1626 5488 321 7568 1108 7064 6393 7995 5501 4739 3042 7076 603 7259 7991 2517 9099 8364 6426 2268 4111 5681 3584 1102 9149 6426 5366 298 8295 5280 8162 6437 4758 8912 5179 488 7915 3941 3424 6428 9751 4809 65 944 1561 9364 2124 757 3921 4060 9160 6505 2782 9326 5242 5558 5909 54 7744 8105 7095 5512 7137 4051 7847 1976 8408 3092 2032 8714 8844 2345 4270 4813 2317 2190 7269 7827 7707 7362 9095 7503 8901 5561 221 2057 2650 3026 2056 9405 6983 9648 5216 6145 5725 502 6597 4987 6848 9203 1820 1224 2921 8854 7576 5567 5941 4579 9331 4647 4055 4978 762 7797 2905 3303 2278 4798 1504 9610 576 3539 6490 6160 2509 8220 5894 1554 152 2270 5757 2993 213 3496 7631 7750 9902 300 5641 7638 4753 2161 7399 2769 5472 700 2090 985 4271 1974 4321 1673 6961 1686 2239 4862 8694 5199 9716 4781 9015 7407 5051 7305 1661 9541 368 3085 7116 8011 4407 4465 8733 4694 7397 6100 1213 9473 9496 4763 6759 6621 8754 8251 104 5963 1720 5100 4486 275 2664 3187 1418 1822 5516 5818 5702 3699 4749 8080 2546 4912 562 7613 9728 4976 8330 1877 1777 6588 101 4481 1235 7035 9840 2265 2992 4630 5286 3314 6615 151 1654 3348 3804 4379 6370 6799 3193 9431 9268 1764 1781 9335 7428 704 256 7975 2640 3563 5536 941 3283 365 2818 4360 3137 8155 9373 1685 7712 9875 4398 8502 2477 9997 9372 6732 788 6326 7338 70 4919 7436 1342 3865 5736 7340 5808 514 1512 5256 1063 2534 2132 9218 6527 1891 9685 9526 2256 3611 6429 7830 4484 5730 3314 9869 6350 7782 7130 3356 2599 9775 3397 5342 1984 4279 1226 1359 3588 2806 7347 1491 1591 7344 1035 8341 2957 5952 7359 8434 2133 8434 1065 3380 1183 9442 4957 1474 990 2105 9380 5106 3718 3765 293 7948 7829 9453 9374 9475 6241 7798 2939 9224 3029 7870 3165 636 8154 9232 1702 3817 8942 8185 2132 2562 9453 6734 4878 2693 7686 6652 3117 503 9387 5863 9118 2328 3123 2849 4212 189 3995 8870 1393 4665 1 5629 587 7885 31 4241 8970 2404 2996 7026 6283 6784 7848 8195 5498 3697 5208 9804 4535 7514 4905 2754 1542 4288 7206 8320 1544 8243 4157 5483 6256 5554 4824 4001 4745 8893 1842 8896 22 6692 4436 819 8560 4158 371 7971 5395 1496 6032 8477 944 7858 7509 2349 1241 2716 6137 7152 4358 4363 6469 482 6702 357 5781 4875 4599 8091 6348 3381 557 6160 3235 4854 1932 3110 5518 4 1376 1061 5797 9515 7502 8864 7737 3933 6493 2773 1012 5044 353 3096 9998 453 865 4520 4034 2957 5497 5890 3725 3616 6258 3728 4026 6503 5238 3407 8439 2942 7380 38 9102 9733 4756 4945 8499 3842 9834 2842 4992 1601 6813 8025 3106 9587 6275 3707 6256 8628 5801 4104 1602 3412 1385 8131 9564 118 5154 3435 7445 5152 1910 7386 9430 8279 1639 3667 4155 8632 5076 7728 2175 7086 9109 7416 3675 2370 2570 981 5032 9583 4972 727 2527 2350 2001 98 6245 6216 9867 6684 639 9399 917 853 3560 2806 2762 8252 9327 4954 6240 3089 9105 5623 3966 9144 6329 2076 2263 600 9871 7092 7401 1316 8142 127 9876 4682 7457 2117 600 5606 5523 8667 736 6743 3556 7140 4305 3519 1486 7547 5130 4297 967 8025 3958 6666 5782 745 907 7922 3909 9161 8246 5258 8596 6910 7775 3159 5208 4712 3048 7049 1962 3087 6251 2682 2744 987 3648 8329 6089 6061 3584 235 3631 4823 9924 7907 1026 4169 8873 4209 1559 1985 5403 972 1105 8930 4945 3281 8860 4558 1364 1767 3820 3082 7687 2002 7037 3551 8067 3361 3452 9191 2913 3623 2163 1703 418 390 4713 4812 1743 1719 9046 6513 454 4486 8040 8028 2627 1053 1264 4885 2899 573 8599 6201 4154 3293 3175 410 808 5758 3549 3762 3273 4831 6887 815 9899 1266 4777 8215 8931 9754 199 6673 8340 242 1388 8428 5234 3732 1860 8284 3100 1260 2491 8117 2009 7018 1658 8701 288 4622 8706 3191 9901 7640 7309 8320 1153 2025 7446 1193 9366 7541 8178 9851 9524 796 7638 1947 1707 2944 1342 7465 9309 1147 5273 923 2616 4282 3308 7154 1447 5349 4274 9850 2950 1535 6201 1754 5674 5619 7318 9458 563 1132 5566 608 8874 1407 4829 8754 8581 3426 3580 5269 4561 805 9613 7109 8755 1135 1607 1443 7100 6882 851 1888 2382 118 6600 4683 3089 5031 8564 5426 4734 1803 6411 3232 2782 7280 6086 9320 6080 6392 6135 8605 5202 7838 1207 6711 9727 1288 7611 1286 897 914 3836 4236 5130 9537 1438 3677 5582 5903 3281 9098 7215 8 6014 953 319 2624 4428 7334 494 7074 1711 1944 2276 4651 7015 1430 2660 8457 9489 9523 4138 3218 6412 6078 6364 8321 6768 5557 5205 4075 1763 8298 1406 6438 4589 936 8890 4766 9884 7304 6302 59 8367 6599 6111 8147 6807 589 5779 7530 9224 4976 4079 1232 5895 9709 3244 9507 5777 24 3069 8719 1983 2292 3557 960 8253 9344 9628 4455 5286 3570 5084 6470 4523 5829 1628 9404 7157 3601 8221 5473 884 2190 8286 8111 1066 7849 2457 4343 6471 1294 2422 4487 2312 2898 7390 7250 5183 4649 2556 5422 8998 4423 9140 4510 240 853 9941 1408 5805 6342 8956 861 599 7603 124 2189 1839 2761 4108 7559 6482 6048 5458 575 6059 7511 5211 4110 620 488 7337 5024 4310 1561 2848 3853 1315 2007 7917 7878 356 3448 1937 4609 9235 5767 9976 1641 7824 2725 8883 4548 3117 7131 3433 1232 4461 4369 7240 9300 5901 6357 7422 1992 7077 784 7341 6414 4290 3322 3251 9981 5473 459 5710 8300 6924 6118 6248 525 5742 7600 9437 6408 2123 4909 3138 6855 3921 6328 4697 1424 3545 9272 9928 7382 3034 5411 6872 4417 289 4053 9869 4189 7586 9481 2864 5619 1654 3406 6971 374 4389 2200 8775 4552 7278 2462 8473 2584 8055 8848 7276 644 6558 8733 631 306 7086 1242 8240 4555 9786 5580 1142 9165 6545 6845 4410 1838 9534 5896 4188 1710 8496 3556 8439 5999 639 2844 2865 8375 9253 1078 9477 6446 7538 979 3611 4603 8548 5512 3592 2429 69 806 1153 312 8968 5402 7986 4895 8771 2246 9888 3755 8913 5794 5475 7704 8985 7634 3833 3548 3997 4645 4390 1716 5016 4775 5199 2388 9256 2800 6026 5285 1826 397 2552 801 3750 1567 5072 2101 9851 6148 659 5664 1927 7502 1952 2948 7360 9603 8514 9263 6115 9155 1719 8805 5140 4365 847 6052 7988 8115 4501 3293 433 9501 3045 2042 9552 8116 3274 2095 3992 6289 7770 2430 2843 1072 5042 153 5714 7609 972 4054 800 4441 5832 7300 187 9178 3956 8944 7006 4578 889 7576 147 6281 7950 6392 4595 7517 2869 7108 2122 3180 9735 8235 5427 7162 8827 8146 9508 9635 8298 1754 4030 3486 3341 7628 6492 111 8441 7572 8678 6310 4471 7211 6248 7092 5611 7812 725 3775 7192 7897 9949 7342 5794 6953 6789 1682 8121 9471 3817 3363 716 1956 5848 2480 1282 8980 1790 6020 1272 8090 650 4865 6635 4260 1828 1423 5585 419 9562 5872 4841 5415 4736 8566 2295 865 3078 4551 6146 6472 675 7450 8620 4674 4792 3794 1294 6880 377 3529 9399 3063 8918 1320 4970 6579 9680 2357 4560 9199 2952 965 5392 6962 6289 4576 3161 159 1360 605 5087 8295 4036 4239 4666 1449 5878 3709 8825 7446 7357 5263 5395 6455 5606 8532 3480 906 3560 1338 6649 5088 1149 7563 7397 2611 9834 8788 2123 3464 6782 5876 4938 8398 7962 7032 5370 1687 5557 2141 4991 7005 5565 7584 8357 2480 5046 6016 9630 8119 2274 1674 4663 6627 8814 9740 8767 1185 6120 1530 2305 7696 2501 2842 9831 9854 4113 4635 3041 2085 1716 6439 5676 8310 8533 2513 9887 4649 8483 9721 4881 3996 5795 2670 1389 401 154 5734 4813 2358 7028 7360 9940 1421 2594 1549 6262 1547 1400 3589 3031 5898 1878 5496 4702 4739 1647 7414 6858 4632 9239 3960 8885 8435 1352 648 7680 6568 1349 4863 9184 8130 7225 5042 8923 240 944 4087 4193 2118 9210 2312 5627 3414 5272 1160 2285 5280 3001 1840 1568 2382 9208 2240 6069 6315 6641 1447 2388 8567 849 7430 334 8761 5616 6472 5597 6811 1863 8116 6887 1267 6634 5753 4188 7697 6404 166 4321 8150 1080 3121 5067 7827 2076 7408 2343 4632 2660 5323 4523 9562 6979 4963 1425 6474 5651 5260 9457 7364 8883 9234 3135 8324 6521 1437 2018 4703 4300 7665 1665 2382 2135 1831 7007 8339 5613 6861 2620 522 1693 8671 2898 9065 145 206 701 2388 5172 2206 5646 6031 2865 8125 9932 4978 5719 7905 9876 3817 3960 8819 4065 181 3801 6605 5218 4346 1551 7820 2279 2414 8893 4943 619 3276 7219 6914 3781 7059 2406 4326 5775 3533 3544 527 9355 9538 3352 7551 8456 7435 999 5303 9112 4014 7584 9712 9870 9080 4607 5667 6471 6729 9494 8273 3756 3936 9375 4004 801 3280 4475 1105 2293 2779 3993 7775 9661 3562 3978 2079 6631 9288 5740 9443 740 1950 4490 3847 696 8384 5491 3723 499 8921 5902 6471 6016 8455 3404 3113 7735 3384 7011 5417 6377 6879 7739 2292 7274 1236 7683 9779 4045 9423 6645 139 4796 7319 8965 6481 1393 7616 8755 4780 8846 371 8298 3978 5292 3337 6175 4484 880 5881 6633 9657 3768 327 4689 2848 5088 5215 5849 1956 5483 4929 3899 3864 9769 8550 7399 9722 2745 3981 1509 4682 5887 9127 7302 1292 3830 7890 2674 330 6222 6359 6611 5878 7270 3026 8084 9875 7361 7324 9579 8470 3993 4481 9959 2248 7932 4490 4668 2297 7960 7603 2877 1861 4809 4775 9574 2378 4275 2024 5798 8605 8497 8957 9029 9949 9727 8380 1752 1429 8239 4833 6589 6659 2224 9699 6025 9557 85 5235 7532 3005 7962 4246 2879 5262 3173 4125 5161 6071 7308 8009 2828 9961 1180 8852 542 1210 9440 3823 3189 4912 1962 9239 730 7898 8345 4356 287 9430 4789 2402 7900 4083 3335 4555 9291 4399 8100 4480 7460 6910 309 6916 9698 9879 8467 1879 1000 1252 2950 483 4165 4522 2292 862 4029 2521 628 4255 9926 6107 7158 2975 8880 238 4444 1305 505 8262 7772 6655 7105 5109 8435 5347 5752 3554 1327 71 5905 5998 3559 7758 7156 8375 5774 1829 639 25 5541 7056 5062 7746 1978 8083 2188 6598 7240 7567 6200 6347 9545 7935 5803 1962 9346 2005 9606 6576 7776 272 6372 9092 1621 8896 5384 8890 9941 927 7339 5114 1082 3975 2098 5738 6799 7468 9885 5413 1312 4469 5608 4232 7135 2939 1452 2084 199 8293 5060 423 3498 5140 5482 2994 704 4517 9450 8078 1648 2890 4922 9744 6686 526 472 1537 6773 3818 4847 1006 9522 707 1945 3675 4723 2684 1891 8301 9837 498 4157 4708 8698 8518 2482 7053 2415 3900 843 5378 436 3353 3982 1447 3532 4610 7250 5189 5757 7052 6186 9695 8561 7309 8753 9555 3250 2949 5826 6242 4627 1307 8706 4803 5145 9575 9492 5694 3468 953 7069 9422 7387 8189 4010 5858 7470 6983 3317 458 1046 5692 4821 307 8692 1808 4112 9976 9372 6624 2052 679 7069 9353 216 9118 7406 6967 767 3446 3574 6113 5733 6436 5457 9830 4093 1253 2466 9609 6722 5614 976 1464 5460 9713 4993 7066 3472 5176 7870 3803 8540 7794 2482 4694 5692 6595 6699 1876 8746 5024 586 2593 6593 1786 6565 1727 2799 541 2565 6343 7978 6506 7727 5293 5461 365 7697 4273 6195 3470 3997 9732 6343 8130 8844 4552 262 6778 2346 7215 5267 216 779 4217 5031 5944 603 6813 2911 2215 4090 8533 6519 9447 9659 9702 7795 2835 5043 3000 1700 5801 9178 461 5662 8921 8395 310 2608 7213 9951 947 9241 4758 720 7774 1236 3126 8381 5131 983 4409 5815 2805 5534 933 8413 9871 6219 7369 3041 3095 2774 5300 4185 9015 2387 5638 9219 2616 4180 9838 9267 4883 6349 2646 9395 2602 1477 4176 1610 4311 3542 1272 6923 4298 8434 4189 4380 9676 4642 8805 3932 354 7512 11 3182 5654 2743 6215 7924 2768 960 2573 2990 7402 956 5472 8654 1036 767 2260 8053 8059 423 223 7720 8933 2169 5612 6988 7212 7785 5818 6262 5064 7263 5631 5644 5190 392 5080 9659 4152 6801 4641 3295 2764 7244 2962 8376 6989 4832 4092 385 4980 8305 3283 3249 3069 9960 7769 6097 5510 5877 1662 7956 7345 8222 8012 4475 9977 4401 7026 2674 7216 2478 4887 6287 6540 1929 5678 7764 6932 3313 3448 8034 7676 184 9071 6495 5768 2156 3765 2099 3837 4586 6637 869 1402 8079 2021 7979 2555 1818 2911 9646 6650 8384 5854 5149 2485 894 9941 3787 2133 8611 9572 224 3741 825 7428 1567 2076 3293 4741 116 5602 3400 3832 3361 1536 3241 611 1539 9912 2369 1581 9236 6993 2439 8034 9595 8631 8543 6555 3884 5817 7468 7008 2848 7629 1955 1701 6474 4605 9407 1281 4066 8995 970 8368 4878 3014 5377 7620 7118 212 2460 885 6581 2103 197 5238 252 2634 9558 345 466 3942 2058 8219 2981 6404 2263 9846 2351 7395 3846 6138 426 1146 643 2397 9079 2973 7500 2557 4948 8302 8711 6630 8738 3082 962 4706 8735 2441 8208 1152 6717 6698 5079 4854 9969 4531 8705 5029 9143 736 7090 9309 4551 6209 2679 1891 4254 6014 7739 3941 1595 938 8547 6286 2585 9550 6474 4060 9629 8968 1543 8668 2558 6490 7246 9466 8535 5858 3958 6379 3655 7582 6039 6747 7486 2406 582 7530 6894 9021 5780 7843 9662 3089 7831 8164 696 9068 6485 429 1920 3094 1322 9978 3555 2836 241 9966 2182 2561 1052 7512 5736 7246 5465 8865 1398 3577 7515 4674 8764 9386 6152 2722 771 8283 10000 4402 7077 8494 7811 389 1206 9786 5934 7803 2118 4803 2602 5317 5041 2366 893 3576 7554 2132 6601 4667 2644 7583 5992 1199 5643 1134 8374 8014 2508 1754 2390 4730 826 765 4241 4869 862 8462 8860 1207 9077 1978 5116 8353 3289 9551 3944 615 4853 4960 9798 6487 6423 983 7016 2499 8195 6639 8491 2772 9850 8292 1719 3031 7094 5760 1211 1772 7457 3214 5781 6229 7131 4382 751 9827 5625 202 5230 8158 9896 2977 8334 323 5085 9137 2130 9843 6116 7399 5677 6686 7089 2406 7816 341 201 5925 8547 4317 2590 6894 3094 2891 6151 8427 1285 6187 4334 6599 3181 7363 2930 6554 1059 5037 3073 9401 4025 7789 6017 5111 1025 4017 2574 8252 1417 2596 3043 4064 9886 4438 6694 9217 4890 4208 6889 5114 2798 5074 2598 5590 2391 6720 3641 8118 5173 7868 6281 815 8935 2702 254 206 5751 3326 2308 4674 5090 4811 4105 6617 9095 8744 5432 2144 3880 2787 5125 9085 9834 8545 5978 9704 6072 2384 6004 8885 9982 4804 3726 9960 4898 9719 6718 4074 9126 4580 6294 1329 4417 1911 1034 7142 5693 2628 5404 1759 638 9704 5819 6543 4738 610 7189 1253 6466 2451 6795 3049 731 5961 5884 5697 4951 5231 3564 156 3227 9184 9423 7100 3259 116 804 482 9018 9219 6962 2956 1225 162 9497 7131 2838 2702 1027 4441 9247 9492 1481 3571 9602 9311 5801 2780 6445 512 4995 3730 6808 9570 6550 6053 9120 7207 3541 5890 5484 1306 9301 3770 7848 295 652 3345 1614 8871 426 3777 9940 4942 7946 859 2204 7659 6539 1265 8547 1910 \n5014\n5959 108 5627 1521 8279 677 357 6404 4313 8521 8649 8116 7294 2729 2690 1379 4719 8007 2157 6270 5237 8732 4437 4873 8095 2983 8237 9561 6427 6889 7039 9347 9419 9244 5652 8748 6957 8802 4897 7374 5350 6517 3241 9414 1659 3186 9171 1002 137 2074 241 5063 2821 7342 671 3272 3240 2490 9346 8683 4650 9190 8431 2754 3730 9841 2986 6159 754 7380 7019 5999 1337 4600 3441 4233 4092 1594 2256 6403 3137 5778 4575 4185 4280 797 8523 7158 2239 1438 6723 7935 6653 582 5784 1276 2982 7937 3609 9437 4942 9066 2368 9415 8197 7074 842 1143 6792 5959 3077 5249 5764 1027 5019 1246 4249 4615 8528 1572 2683 8701 9099 3222 7402 8874 4976 8245 7489 5286 1491 4051 7914 6941 4456 9310 9560 8320 1260 2403 1231 809 3007 8380 7178 7604 5844 4133 3511 5987 4378 3970 5090 8323 8028 8825 9913 968 3434 9769 9527 8087 6363 9725 8890 5432 5405 1474 4722 2255 3072 9295 7031 5831 5912 6757 1940 2237 5317 2138 5911 8320 3884 5072 568 2528 8256 1105 5576 4289 8975 3205 6320 6563 2771 8124 8331 1240 8721 3165 9138 6622 576 9890 8284 6161 6947 5727 8683 6167 1746 5264 5050 2346 8859 1030 1956 7685 2808 9367 541 18 9965 3565 7062 681 155 3701 233 5278 5573 8969 8843 33 7362 4472 1019 9593 4034 5361 1487 9802 2214 5623 1166 1719 2262 690 2433 6689 8544 5145 4901 9821 3849 2059 8704 2506 7564 6291 5973 8908 3014 7308 7911 8423 5925 46 2061 270 8510 895 5656 3700 9436 563 7283 9270 8207 5209 9776 7118 3633 8178 563 3937 3275 14 6580 8012 8008 1782 1009 1216 8698 4302 7147 7562 6332 4346 7842 1639 1798 1197 5005 3692 3173 3115 6927 7233 8879 2842 6613 7046 661 2301 2332 2143 6624 9933 7975 5950 6450 7860 9029 1889 6429 7120 5281 150 2793 5938 6071 8192 6659 4923 1328 5082 3822 332 1718 2594 4160 1543 4177 8305 3869 5189 4345 6812 9529 1848 1467 4669 6022 2777 3823 4445 2350 5254 7563 8111 2943 7228 7724 9472 12 2696 7124 6496 8061 8476 9308 7236 3198 6180 2356 2375 4550 1699 6238 3718 5918 6782 2330 8090 6369 1842 5448 7471 4263 4140 5862 5281 6834 2974 5427 782 9784 2245 8581 2835 7129 2028 9255 5443 5284 4124 4846 8290 2110 5344 2093 6814 3863 2647 8604 9498 8662 9354 4496 1878 4399 9292 813 7496 4296 2805 9615 2208 8698 4043 4422 3243 3628 3869 9252 108 5067 1916 6706 9389 4735 6494 9093 2877 3168 9985 7949 4173 9580 3275 2575 1970 657 8829 9398 7763 9817 3782 1650 6502 3033 7140 3318 2296 4730 3225 8279 7522 3483 3862 4234 9922 152 5651 3708 2591 4460 159 234 8240 5767 6857 2583 7350 498 1537 6084 2298 1321 6274 3428 1930 424 5892 7943 8406 6981 4643 3377 6919 1320 7856 655 7990 9068 6267 3777 8923 1775 2967 5392 8542 7853 2718 8894 6294 7967 1551 2142 3967 3555 4911 7107 2516 2379 7677 1366 5036 405 6757 6467 2502 4355 510 3335 9926 2372 7284 1749 9821 3717 8110 3525 7977 2934 1019 1615 2278 4772 8944 4778 7666 3559 6551 2362 7881 819 2059 1583 3267 3831 567 1658 9288 4376 2979 1643 4357 943 5086 3364 9055 7197 7081 589 1339 1426 6657 7031 6897 2068 8754 6474 1102 5737 2618 6495 4685 5055 8536 6810 4394 4551 9099 8083 8272 7290 1552 7308 3060 853 9848 2488 6749 6722 8760 9146 8341 5521 1409 9477 3823 1358 7502 9394 2111 2898 2218 1111 8989 4656 3023 9970 506 1199 3291 4047 3484 2728 4317 7196 5784 2480 4931 2040 3046 6906 2804 593 4118 9121 6755 3675 8291 4008 5728 6855 5693 2709 7976 4882 8601 3349 3468 5124 2955 9813 519 5068 2199 4259 6019 5808 520 423 1825 2534 767 1828 145 5808 5423 6777 6859 8144 5155 6241 1882 9099 8314 5381 8094 8157 1719 5860 5895 9393 9256 3545 6821 7164 8892 8972 6090 2266 3887 7629 5609 2085 8677 3760 6042 8892 8261 2046 9740 9514 179 5841 1501 6974 4752 5296 1376 7798 8880 9374 4217 925 8859 1697 2645 3039 8776 730 2260 3516 3824 8766 7930 8794 6783 390 3568 8293 692 857 7481 4784 6038 5627 5335 4987 57 9215 9539 8034 7453 9136 4285 3376 2067 6289 1293 7641 8965 2195 4686 7779 4806 895 4642 7633 6782 9995 7575 2514 3827 9658 3848 6123 7204 2171 6675 2 9211 7884 7211 5781 9645 4550 2223 14 4144 94 5527 1178 9261 6622 9552 3604 3894 7335 9659 2214 7005 1375 9252 9452 586 2407 7336 6821 3835 5179 5014 532 6951 2562 6897 8102 332 4337 4585 9530 6016 7375 4670 5297 1686 4481 7599 9532 7988 8376 813 9707 4184 7750 1264 8993 1942 2733 9833 8067 8044 8141 1651 2957 2345 3614 3664 7066 4824 1007 8840 2214 4276 3920 6392 5410 9786 6526 2746 5166 6165 9550 9737 9348 2743 5872 260 7802 1976 8899 9781 3825 573 6342 6785 4593 673 8183 1642 7260 6910 3105 9232 8789 5096 9833 542 7397 3361 410 6445 4512 4964 8472 6342 9143 2247 5448 3328 6124 1000 6213 4811 5030 7484 9204 242 3757 3024 1034 3102 4755 4607 7545 3743 5436 4391 1036 3431 9531 709 6971 2292 3323 9196 3343 2130 1443 8077 5788 6706 2775 8838 7610 9542 318 6607 8176 7006 767 9431 6927 1957 7000 3860 8691 7291 4360 9008 8269 4729 298 3765 3292 6613 7545 5222 434 9301 9754 2723 7324 7269 2056 2409 1912 8207 3707 166 9003 7355 1160 2168 686 114 3341 326 6735 3696 4331 6014 1619 3572 7563 4300 1421 3959 6031 9112 4350 2827 1895 4532 6799 7120 5077 1397 8036 4479 4002 2994 2004 4762 6035 9209 57 8190 1110 7605 3527 3824 9601 3031 2314 2233 2074 9594 9007 8508 508 2221 6916 8124 6253 3492 3469 4923 3917 983 2100 637 9751 2284 261 9053 1670 9976 4864 7321 1023 4267 8335 5722 9722 5752 5246 4814 6386 975 7040 8596 753 2027 2871 1386 39 8350 8531 5844 5738 4765 3840 2202 7477 7089 7710 9858 1383 5339 7483 9218 9278 1584 9641 8201 5203 4035 1927 9909 7095 922 7336 1414 1656 7548 7612 4800 7724 1504 8906 8482 5540 6076 9572 7645 7010 4798 6020 4875 9848 7999 2645 9621 5393 9828 3551 6806 5336 9145 369 372 4504 6861 5159 7667 2758 8580 1006 8369 9810 2923 9328 8068 4073 318 1201 9894 4703 3199 4180 5178 3038 8284 9463 8915 5250 7430 5535 8875 6626 2319 6514 4532 3440 2845 604 774 165 315 2125 424 4561 3163 3736 469 9487 2425 9203 6672 1283 4286 7314 8370 7744 3387 8026 4298 601 7400 9885 317 6703 586 7176 3959 4665 6012 535 526 7163 1825 2781 2962 8656 6398 7815 4328 1904 2055 9717 3602 4636 2519 1803 2687 478 7085 7986 1608 4745 8591 4521 614 5281 9002 2370 5396 9195 4711 6417 2845 3633 9201 6922 1772 5332 5942 6256 5688 1419 4214 6394 6318 9334 9933 5677 4138 9307 7668 4745 6789 4230 1940 6381 1993 3041 7311 8242 3551 1362 8063 3019 3342 5357 39 4630 3001 5027 3108 1683 5189 571 296 9337 4918 3650 1652 4215 3397 1500 8421 7106 1813 2982 620 3169 9278 8107 6329 7264 4830 2999 809 1137 3210 7933 1564 5958 8872 1491 6641 4673 3822 3850 3573 732 1985 1119 4595 85 6382 1110 9633 6430 4552 2083 3288 4150 6648 1446 6978 2801 1254 309 3612 8753 7206 4754 8694 6627 5828 8593 8783 8176 7755 9905 2965 5218 8369 6892 2394 2863 5758 1813 8647 1243 771 8635 6939 1758 8519 606 8396 6188 6769 9125 1760 2560 9672 3861 6676 1957 9923 61 5819 2024 4178 921 7406 4627 5558 2285 4416 8500 4851 6333 4341 9365 820 7156 4201 760 1500 9048 8014 5243 6643 9720 5413 6607 9050 4069 7365 6253 6173 147 4827 6977 5553 3568 1508 3297 5122 9216 1978 6758 3139 4551 774 6269 1356 7349 1557 2380 499 3763 3641 3773 4067 4991 7586 511 5909 6387 341 6337 8621 5998 3858 4320 2371 2877 8595 284 8488 4296 6755 3861 5701 3589 5855 2583 1584 9000 8621 6282 3687 4904 3865 8082 365 1066 1977 6619 240 5918 2644 1274 8820 6110 8530 8779 3005 8938 4022 275 8702 3167 2399 8742 52 4132 9629 7646 4504 7510 5620 8642 4984 7970 1780 2020 6699 4796 6558 3062 9393 8573 9673 2779 2971 3120 6113 3984 3278 3370 1695 6373 4040 5094 1088 7344 2262 1400 5274 3947 4007 8591 2826 4042 5047 4070 950 4670 3656 3077 3035 5667 6795 1086 1954 1803 2311 1094 6338 6719 1076 2087 2517 6578 2510 9902 8034 3384 7633 9199 3719 2649 9029 9769 2300 2111 8764 9881 1836 8100 5028 2984 9173 2912 3732 4721 5910 9869 1610 783 7213 7158 7402 4557 4925 9160 3939 9118 5510 9979 8695 4282 2738 7788 6737 7550 4520 4349 7152 7281 266 7345 4381 8369 2990 7593 8870 5345 2819 3245 7396 7851 5102 946 9595 2088 8704 1589 2553 2508 4151 9080 3381 4770 6423 7964 8957 1877 2714 8819 6386 6224 6098 4735 2641 2194 5967 5361 6587 5207 420 9351 2423 8389 9317 694 7090 2704 235 2955 7721 1729 8054 1570 4879 1983 7418 2723 5337 6411 8278 1089 420 5419 6297 8215 7162 6409 8069 2523 6557 7238 9050 9397 8110 2318 5465 5985 2053 5809 9432 2157 9054 7540 9066 8113 4026 2102 618 1515 2021 1276 7942 2358 8408 5128 8979 6947 1868 7374 772 8728 2136 5566 1839 9959 1677 1673 6484 4685 2591 7808 4541 6014 4201 835 6700 402 937 3991 7965 6122 1627 1589 5751 4350 9884 186 5549 2911 7721 6262 9002 5820 7212 9908 6833 4759 1822 7826 298 3732 6316 1048 241 5121 5907 1385 9404 1424 1662 7230 8742 2628 8398 7695 6187 3920 8393 1830 7210 1738 3560 2819 3807 7167 6760 6091 3070 8309 6226 3512 2477 4356 4257 4586 7052 6445 4700 4633 3759 3374 6746 5603 3896 7484 1570 9316 3167 4959 4812 775 4130 6326 465 4241 5926 8311 3472 3666 8520 8594 5316 7459 2092 5994 7694 8559 4364 283 6487 8782 4060 3285 3087 928 1997 304 3818 829 907 8776 7504 9374 9811 1160 2231 8034 9277 5337 9171 9118 1708 1338 1645 5666 273 3362 7806 2739 3409 9449 4584 5086 9647 8513 2571 8700 8908 3560 9650 6033 8786 4041 9531 9655 3551 4511 7302 5671 7473 2533 3939 9143 3825 5664 2622 255 6072 8289 9672 9062 2353 1914 7352 4378 3904 410 3956 3549 2020 7556 1417 8108 1738 6146 5379 5393 9367 8719 5392 6123 996 3016 73 9020 3332 6684 2979 6299 5028 2927 947 5797 656 191 7376 9709 224 401 32 385 6453 1737 6678 8972 282 6419 5264 384 8130 1767 4396 6980 2072 221 1531 8807 3569 8605 5501 3471 9726 3346 3838 5042 2793 9463 4300 6385 4029 1236 5010 7402 2138 3046 8267 7480 9778 646 6965 9712 8399 6994 9748 7564 3216 3877 5681 133 8662 8577 8836 1198 6041 8924 9778 6388 9976 8196 6579 7634 5026 5546 8584 7078 5535 9107 1554 7876 3160 5918 2842 3246 629 8116 8235 7840 527 6388 2866 9016 4570 3783 6612 2205 7535 9978 6179 5903 8829 6493 6818 4914 6367 2192 9911 2706 3744 9835 7686 9610 801 4081 5957 3495 7612 3222 4636 2947 4829 3490 5063 985 8929 6196 4185 6242 1524 3020 7169 1339 7017 3302 5607 5399 4950 983 2877 5354 6650 219 853 8501 9704 9018 7223 7667 7231 2414 5033 4640 9963 2950 5760 8938 5224 7382 4625 4347 6640 1340 4948 5029 8747 3318 8943 1804 8047 1730 9259 8030 5685 1043 1651 3418 3202 2534 2685 9248 1376 2321 7911 4735 5424 2109 9717 1283 184 4082 2363 5303 7358 9448 6416 351 5853 8699 9379 9117 4350 7469 8561 7235 8950 1814 469 2695 6565 4810 6788 6494 5296 6806 6657 7290 7627 2951 3812 6111 6153 5246 3903 5576 5094 9908 5608 5060 8825 1331 9859 8901 498 2710 2453 2669 3037 778 2067 7207 9826 2402 5951 5890 35 7612 1149 6308 6402 9063 1720 517 2615 5238 4694 3670 2619 986 3162 4620 5629 4695 2929 9094 1277 475 7301 2429 9577 807 5459 8835 7307 2248 446 2868 6725 7928 4582 4130 8356 8600 8502 5466 736 8067 9830 3987 3196 1715 7191 2314 1481 3437 4563 1157 3940 3954 5938 5173 6214 9628 1316 4161 5295 5835 6125 4368 4736 6322 6335 533 4903 3600 9306 2126 4872 1656 8878 6001 4451 660 6064 9814 3569 1878 9782 9576 7882 7241 9329 7103 8070 3983 1768 9581 5234 4533 9659 5223 7773 6860 3416 9126 5990 9105 6142 997 8802 5007 5989 8962 4141 6700 2332 4258 9031 3689 2153 7622 686 3741 4188 177 8100 2664 8378 9434 7277 276 3414 5844 8694 9283 6923 3414 1975 3913 3925 1869 187 3273 9973 8483 4425 4732 1023 1793 330 7638 6170 8552 8066 1110 3288 535 4430 698 6703 3772 4469 3920 2239 6114 4774 2545 9656 6181 6842 3104 644 8255 9070 6760 6446 8689 5973 7206 3690 5135 7456 1251 953 5668 8901 4479 1129 8799 7292 714 1367 1581 4910 8526 7177 1767 9749 7664 2395 4742 8243 6784 9681 5936 2598 3244 2805 222 7139 589 340 9911 555 1986 7661 2791 1692 2427 6974 3403 2295 7343 3219 6665 2559 440 425 3901 7599 3653 1032 2951 8376 5105 6477 8513 9744 334 2668 9958 4744 7859 2476 6765 9329 1562 728 2672 8810 4786 490 7848 9910 7622 5940 668 7936 4255 3116 2117 3520 3948 336 2598 3224 245 705 8754 9732 8946 8462 4512 570 1373 6618 9398 7805 9101 6696 7585 6489 6165 2638 7829 3798 4729 5855 9407 2509 4103 8518 6187 3687 6820 3075 1138 4404 8356 4143 7514 755 2966 4092 7899 1668 1344 2076 5789 5675 6430 1905 8960 4360 255 6106 2667 1715 281 6170 5139 2984 5350 3957 3310 2360 9107 2428 7338 7308 2693 6010 4604 6306 1080 1574 2326 9890 2353 1318 6410 5372 8913 79 5862 2987 4721 1742 6493 4960 2 1727 9410 7667 7727 2751 8548 2930 9738 309 7855 4550 6802 5198 5228 6859 3579 7502 4501 4945 8783 62 3387 2426 674 4521 7275 2289 8434 123 7407 3834 1835 6927 3381 2104 327 3452 1840 5461 1343 5373 8362 4887 2880 9587 911 1203 1668 5667 9911 4725 3904 9778 9718 8001 1900 4730 4588 7746 285 1707 1691 7269 9099 9348 8381 4509 5880 8475 9257 3304 7800 3780 1893 3149 1046 960 8024 8029 293 3539 1767 8284 5708 8028 5968 3858 136 4707 7591 1281 993 4792 5643 2145 8541 7573 7364 6091 1818 3532 3956 6259 4864 4127 3549 9281 5098 2052 8423 6129 6939 6548 6682 2497 9422 5639 6137 5008 5518 4816 5402 9989 3006 6164 834 5817 8942 6496 5999 9441 6144 3407 6520 9203 2522 2264 7906 1284 3438 6925 2775 6098 8400 1344 4911 388 7967 9112 7595 5255 6768 4520 1237 7998 1309 8225 2387 5464 2952 9724 4964 2670 1516 6784 9351 7808 5587 9190 6331 6128 600 5721 9607 5511 1105 272 3785 6104 8459 971 1057 195 4879 8136 3659 5849 5159 3510 2299 2544 1131 7840 207 9146 2377 706 1439 6912 1583 1219 2375 7527 3278 420 3538 9291 7315 4309 7900 529 6937 4640 7886 6070 9177 1620 8379 5688 5854 1005 5536 7415 1885 4205 2845 1119 3993 5910 5488 6771 1538 7276 8859 9956 1776 4694 8220 4177 1801 4053 7743 8453 2518 8166 7 8744 4160 4849 6535 2282 676 4330 3415 8756 3737 5125 6581 3655 5477 9223 7648 7386 2374 2616 9230 2139 289 8720 9533 5704 5950 5582 3558 6712 1759 1064 2785 7169 6160 8409 6166 7780 3178 9541 8865 5360 3153 3853 9706 3192 1941 8631 7072 8477 3520 6455 1010 709 6539 6162 6703 4574 1635 2860 3375 4262 2130 8745 6996 8687 6079 6014 3414 4108 8443 4098 3234 9196 6586 3909 5792 1615 5930 6421 605 3817 5054 9724 1747 3312 4185 7648 1195 4297 3753 579 9637 1562 4191 1605 2285 4293 3419 3785 9441 5254 4470 8656 4328 7625 9803 263 6946 3690 17 9006 5143 123 9808 8783 2846 8082 4277 2465 6537 1143 8116 1485 5792 9342 1797 1360 2307 4180 2632 3096 2842 7709 2369 3028 4505 9972 2444 8887 5640 4411 6427 1217 4965 1201 1162 3599 9215 9079 3564 8785 1447 8002 2213 5244 2317 4092 5809 3450 7836 1965 3378 9012 3443 2484 3382 2499 6116 952 5799 1820 8213 9356 4298 6401 838 5942 5701 2684 9842 3004 2726 339 9822 1840 5918 5102 8493 9499 3745 9107 9779 7158 5786 9267 1171 1292 6727 4251 8410 6697 7824 3799 2700 5139 7045 1652 905 2565 8545 1673 8551 5599 9560 5534 5950 7328 5350 9820 1309 5886 4849 1807 5158 7725 5994 5760 4649 849 2577 3504 8954 9310 7454 3127 2458 4728 4184 9929 4723 1308 2024 9165 7879 9217 458 9314 3412 5292 7575 2154 5341 1783 2213 486 1367 5884 2624 458 5822 7504 4536 3824 5830 4972 2990 2408 2228 2161 3435 4677 5818 6635 6588 8845 3725 3134 2356 1112 2189 6912 8090 1616 3689 267 4834 5357 1555 141 5374 5042 189 1900 2086 5844 625 6543 7496 5287 8778 3270 1642 9161 5536 3353 1660 201 36 3757 4178 9435 4290 8018 5745 8915 3333 5935 5869 4805 6543 4431 7105 284 8018 3105 6390 2456 6700 7430 38 6397 6305 2835 4134 8411 6171 2117 3953 9128 7109 4111 8713 3214 1951 6870 6248 7248 1334 6183 5211 9178 9610 4375 5987 3362 1897 4497 5014 5950 391 8116 619 1005 2910 9444 3553 251 3115 7853 6318 1694 4253 5630 785 7989 3834 4286 634 9069 3279 7045 7261 1439 1366 8730 6854 5566 6283 7421 4138 5045 3354 7316 76 8776 8522 8033 3767 720 415 9826 8953 2826 7685 7170 3753 160 5411 707 5738 3780 5825 7133 8270 5434 6245 3025 4844 6656 46 4952 7529 821 137 7858 7849 6533 3738 3196 618 9247 3190 1335 1591 2303 196 7905 2204 3946 8350 1597 2856 4909 2253 4495 2331 9191 9228 2284 7524 1260 7007 4389 5767 1462 447 7477 4548 5444 4479 8790 9441 3299 5779 3400 8342 7567 3791 2131 6204 1132 9443 457 2999 6128 106 4429 1917 136 6295 3195 1620 7360 3587 8543 8266 7052 6227 6577 5668 7586 1314 3845 7616 4118 8688 1375 464 9252 8804 5189 4553 2687 8600 4999 583 8231 6100 434 8541 5613 4165 3511 3076 3253 84 1743 9136 4141 4100 9095 865 8450 9628 6158 1824 2548 5141 3124 1245 6801 1504 6400 4320 1880 8831 5629 9700 5060 9387 1119 7664 8311 9411 3528 8899 6384 1620 1625 2731 5869 5861 938 4365 3046 9276 3217 5272 8061 59 421 1823 8622 9766 638 3517 2261 1084 437 9935 8977 5288 1341 9083 4608 6050 9388 4675 6141 7948 1573 8849 8584 8725 3331 9406 8637 4678 9161 9094 8258 8212 2528 7650 5187 6129 559 2954 1757 4494 7774 67 5627 4508 594 913 803 6060 1436 5420 6511 4084 1497 6032 1170 3305 6300 4662 8521 8192 4189 4228 6299 5192 6929 2704 3397 832 8400 7705 629 3455 683 9013 4544 5984 1192 6185 9507 6146 9798 7304 9462 6035 841 9141 8646 2331 3949 9449 9928 8748 4321 3174 6372 1208 873 5409 7348 9685 6010 7231 9144 105 175 4821 3825 6787 6110 4293 9989 4878 3064 80 2298 138 745 9584 8385 3116 5222 8190 1986 631 1629 9498 1538 4071 5628 8453 3076 4937 7318 8234 6905 6880 6176 9403 8413 1333 6016 3053 4782 9455 3506 6176 3809 7796 4492 2321 6340 2477 7056 3740 8199 6022 2950 9885 7783 8979 9092 4425 3298 60 364 3785 9697 5917 4372 1530 891 841 7537 109 3117 1535 3291 2200 9465 2161 7393 3983 6067 5395 5251 1277 7993 8122 5716 1024 4375 9770 4616 1828 1343 8471 7277 2594 729 8880 1324 7043 8312 6699 4576 2726 7045 5447 725 7839 3571 7334 8434 1991 8580 9513 8143 7955 7229 167 502 8956 3200 1959 7808 4776 5678 896 4226 3973 7893 2647 5596 2768 6331 454 855 7918 8649 6158 3133 5235 6357 7854 89 1749 3813 8487 9770 1571 6476 240 4120 3867 679 3622 5528 5411 4088 1800 4547 3969 2815 61 6040 4608 9388 9508 8938 2059 8682 7259 8759 1803 4697 1256 7134 1360 8009 2580 9132 1334 1201 547 8608 4354 412 2053 2215 3353 426 2792 9413 8980 6134 6463 284 2171 7688 6669 7217 3757 8702 4507 649 8840 5632 3726 8327 9717 9966 3445 2846 6787 3135 1025 1333 9954 1154 8050 2538 3969 9835 4210 6641 8345 2928 5032 4300 3216 6967 6190 4777 1564 2426 4100 9067 6789 2683 1568 7975 2668 5911 4796 1013 7528 4625 1426 2538 7428 9559 1217 453 7413 6512 4428 6597 430 4270 933 2060 7062 9050 8791 3481 6050 6269 7974 5366 4643 2745 1044 9708 4316 9752 9603 4599 9239 3865 7630 625 713 7711 349 5105 9978 416 3644 4492 7621 4846 1836 3981 5431 7435 6627 1012 2674 4751 2958 2410 6883 3497 4035 2312 7232 3741 9985 9451 8951 8521 5646 5762 485 7800 2416 6234 9717 6425 3107 3683 2645 2470 9732 5591 2489 1199 4926 8767 486 1398 2300 9132 3414 6993 2431 2089 8838 559 3211 4166 5833 9854 981 5385 8007 6996 1074 1058 1305 6285 4218 7958 5692 1315 5351 868 7466 4107 4483 1020 7201 9965 5177 2130 7886 1918 9538 8457 6580 6228 5632 897 1137 5503 5039 5955 9035 2539 5715 7619 2563 2847 4527 6478 5283 2450 5183 3693 6747 5624 4965 1517 1808 3559 9481 6591 4530 4283 6188 6393 6184 5865 5604 7140 6906 9205 9261 7858 2788 5205 6183 719 2240 6552 3324 5983 2692 4532 3603 5124 3630 3914 9053 381 962 1830 1251 5011 8100 9883 7 8584 5857 9096 3719 6845 4401 1050 791 1947 7492 8723 9225 870 5206 1200 8449 9671 7727 7312 5260 7693 3425 9480 7547 2746 115 5901 108 7428 7651 9153 8987 614 7314 6278 5007 1572 3728 8184 7548 3522 7412 8993 4004 1827 8964 9052 6401 7391 515 2904 2320 6407 1070 5361 9864 5928 9055 5503 1442 6806 6394 2644 9062 7225 4042 268 9688 4009 8870 6141 2986 5494 8372 6173 9930 1959 8399 4896 8108 8374 5082 9913 921 1559 6304 6028 8592 7346 4449 2514 7199 6996 7381 9437 1333 9115 9232 8544 2710 7176 8967 3400 6206 9934 8142 725 8803 3042 6049 1980 9393 943 9885 4677 3826 5320 4769 5390 2695 6062 9480 904 3863 3573 5198 7461 225 5212 9457 7601 4348 4451 1204 380 1563 7334 439 5089 8789 5143 1190 4285 5266 8952 6101 4994 5157 8879 7373 5453 1631 853 681 1373 8877 6244 7672 8477 1419 2539 5853 3796 6457 1431 1350 8739 4642 5428 6091 6401 1589 8693 5206 522 884 5317 3366 6312 2633 9370 8802 5705 6980 9276 53 3110 4102 3707 6415 8913 163 1792 6603 1598 3516 2925 1788 1638 2507 4453 4955 8309 7980 1784 5911 6741 4222 9840 9515 6888 7863 9585 9000 9593 3997 2200 8755 4243 880 2461 6702 185 4129 666 7036 9438 5656 4561 9194 853 9336 4735 9763 6649 3284 7149 6277 1574 8660 2552 9346 1704 2721 4189 9806 7269 6396 2492 6912 9620 3290 8319 7078 4990 8329 808 1655 3128 4613 2350 5525 1772 2520 1832 87 6161 8392 7438 8021 8652 5631 9463 6909 9772 4572 4287 728 58 7097 3518 7534 1373 4464 7325 6395 37 3905 1699 3849 7742 2901 8448 5461 32 9281 2616 9313 5859 9367 6307 8299 2518 8801 4888 4765 6550 4234 6270 9076 8128 7295 5016 9409 5767 8837 3247 3368 6857 5119 4527 297 8450 3811 2879 2147 6043 8164 9044 9494 9233 2273 3283 5378 6130 3085 1700 7022 2471 4706 3076 9941 7691 897 8286 832 8350 7621 5972 342 480 2361 5038 2140 1489 5237 8681 5440 4907 2643 763 1014 3735 6548 1517 9099 1540 8246 2823 998 2742 9929 2087 2794 3093 7826 8437 2392 2366 7569 5705 9836 6690 5127 3673 3346 4263 8042 9345 5715 9860 9628 4578 7835 8253 2029 4002 2153 2796 1927 8983 7616 2067 2270 9566 8875 9425 8039 8946 2836 5250 1398 8918 8078 124 26 3108 4059 1481 4714 3427 420 4512 5853 5177 1103 170 3622 1333 9648 7654 7829 8076 1105 8660 2316 6633 8466 4111 1049 6641 1823 5141 6235 2471 214 1900 6904 6201 925 4890 5752 3157 6984 7021 8880 3040 405 5813 8539 6781 2920 5678 4312 1013 4548 2933 2024 3520 4241 8186 8321 4141 1380 6377 5257 268 8592 6091 4892 6161 5377 1321 3240 8076 2408 8724 2390 8793 1247 9451 9882 8791 1306 9989 6516 8577 6989 8683 1751 4849 9206 2835 9959 7127 8208 1784 7552 4474 1435 1093 888 175 486 7211 1559 7533 379 6902 4982 2074 422 156 9000 249 1277 198 5056 9150 4687 5827 4512 5714 3261 8614 9042 8277 2847 3574 5532 6611 3826 2461 4565 8684 4310 3848 6207 9154 2091 8230 8676 7498 433 1749 7874 6383 7931 4039 8353 4319 4574 1221 9610 6407 8344 9050 8467 1575 9996 2656 907 5158 2085 2638 2315 2823 2530 4996 4737 8737 9633 2759 421 5973 7381 4314 3716 2172 9313 727 2402 2742 2442 9186 9770 4685 5073 1653 6771 921 1706 4509 1253 2951 9454 5458 1310 9477 5458 8423 2497 5975 6829 2400 6875 6 3889 2239 898 627 9886 3081 725 4457 5 1904 7978 8037 9854 5836 9054 4067 547 280 3729 4095 6467 2712 3319 4093 9443 4121 5937 9999 6420 2137 830 8942 7827 8128 9123 2207 4665 2198 9734 1471 5457 6653 2239 7931 2838 441 4457 7513 5333 2204 1156 4636 9346 2537 8130 6391 1012 6665 4008 720 7055 104 6438 3513 4564 5557 3348 1908 953 3990 6613 8769 2306 4639 4291 6259 3642 3052 8248 6450 521 5617 7736 6296 98 6749 525 2227 8641 7555 1116 132 6684 7833 602 6321 6301 579 50 6586 3852 1009 8813 9885 9001 680 6772 1783 578 3856 373 4992 1840 7679 6358 6799 4400 5610 9585 3771 3188 3131 2504 4005 8781 7062 9151 3033 2206 6045 3955 5563 6597 7610 5334 6541 6747 9279 5450 2213 5975 8115 8103 3236 4909 3429 8608 507 4057 4754 4270 8091 3748 8139 5831 2414 8564 9808 5759 6383 1256 6929 720 671 1513 681 682 5664 820 4388 7049 8327 9444 1326 9948 2710 6588 4384 9909 5508 7012 9671 7358 4075 4234 2980 2983 8149 7607 9031 4921 3063 2449 8777 4371 8204 1516 6370 6074 9203 9355 9276 554 9245 9125 9747 6961 7905 4833 9180 5723 4207 2868 4808 749 5460 6938 2217 6413 3018 9219 513 5064 8600 6613 624 6260 3251 7464 9562 4001 3982 8609 5125 3530 8645 4338 8377 8000 312 1878 5193 4890 4653 3939 7508 4873 1279 1957 2891 9425 5952 3699 7530 693 5970 8602 4438 1334 416 9703 6928 2146 8697 5052 9326 6813 3595 1747 2162 3191 3502 3427 8910 1616 363 6494 2789 5844 8684 3055 5562 2145 1662 6626 7298 3316 9029 7627 2839 4974 2708 66 7333 4242 6405 8189 7073 5786 9008 1243 4241 4919 2637 6201 1188 8908 1369 7312 96 4342 4900 5513 527 345 140 8749 1482 4946 3881 6061 2691 1235 9049 9097 1840 4019 4378 2152 2663 9388 6463 9779 3046 5168 1776 610 6252 7433 7569 5584 7732 5905 2364 977 7573 3419 6640 5852 4133 3390 625 3165 7459 391 2192 1058 1811 2985 6755 9366 3343 8280 9941 356 302 4949 1009 10000 846 9422 6549 639 5322 6612 2778 5088 1257 6183 6420 7660 6310 5004 4088 7286 3002 7116 2429 3791 7289 294 8887 5583 4330 5841 5411 6286 847 5892 8975 4145 8347 6087 9005 5096 8821 9872 5072 4731 4923 7974 8370 5493 4400 7624 6907 5473 5878 2028 2626 8114 2252 2374 1060 4999 4467 1669 1737 761 2509 392 1539 9622 1914 933 7612 9999 8477 5116 6129 1225 5184 6301 5809 2723 4716 4369 1317 8306 5445 1659 8640 5039 8898 2748 411 1327 3538 8749 6590 8383 8325 8484 48 3192 1914 8066 8203 3933 8175 8586 5364 4707 7011 4904 4136 4363 3327 8014 591 4108 4851 5060 1417 9918 6080 4418 1309 1079 4067 6129 576 1860 9440 7716 5774 6374 3897 5920 620 4572 5557 3494 3047 379 7794 9040 5786 7305 4433 5274 1224 8354 7 6719 7042 4709 4999 3858 9387 3281 5795 2960 8983 1220 2201 8749 1812 9856 5867 9856 4856 8423 9145 7078 7552 6889 9121 1574 7806 3056 2620 2026 1001 9586 3136 1840 8461 4816 8208 6069 8283 5897 3271 1436 4897 5960 1070 1812 2303 2041 8894 9969 6983 1574 8949 1498 4702 5246 8521 5851 5494 7338 6276 2931 5979 4880 1535 709 973 8291 1461 1767 3548 2049 1698 199 1172 4699 6522 4600 5116 762 7995 1318 2098 836 2694 1192 7032 3532 8213 6195 2063 8028 4402 5520 961 6116 9072 4390 729 7658 3876 7536 5439 \n1249\n7429 5805 1118 461 6563 5958 8074 6131 574 7554 6228 9417 9189 8128 3198 2282 6155 6798 3871 3493 8687 2064 8480 4818 4345 8477 3164 2835 9833 7531 1538 9324 1405 7721 6706 6580 454 2819 2534 248 3096 3316 7529 3855 2717 4331 8810 8922 3637 1754 7412 7204 296 9384 3143 373 2432 7260 3260 6023 3555 4287 2404 2864 5910 5965 8336 5356 4347 178 841 7189 3727 7598 9772 7934 9683 8809 2204 6426 4039 9003 5498 3275 4653 8108 3799 6024 510 7059 5387 1063 206 1227 2942 4463 1278 619 6478 7561 1957 3885 8301 685 8524 5926 3321 7567 9743 302 4737 964 1336 1824 4562 5633 5901 1974 5312 1750 9724 2660 9340 1428 2960 5431 3842 5423 5749 6395 5303 3157 2508 7798 2468 321 1997 6165 1587 3278 6533 5778 1545 6569 1269 2567 6109 5154 1134 7445 4767 6802 4525 276 6508 3251 8150 9984 5816 2519 9479 7022 1651 4843 1491 4947 7616 7515 8675 984 7770 5337 3600 3220 5049 6984 2766 5474 9142 1364 8645 3015 8630 93 9165 6007 6257 1758 213 1646 8578 1684 4488 375 9274 1720 4031 8490 4470 7947 3477 6370 794 8588 6793 3137 382 7610 2619 4830 8656 605 6579 9800 9366 9167 8358 2453 4070 319 5403 739 3999 9091 1770 276 3270 1598 3164 9077 2420 2315 4410 6764 7625 6500 4517 3071 591 2358 1584 1853 1619 6423 3587 4344 7712 8774 1654 3630 6046 580 5928 1354 6790 6897 8058 1110 8749 8358 4745 3484 7210 4008 2531 5387 1911 2113 2271 8479 3521 5450 3168 2822 2872 2277 7811 3365 3753 6835 9666 6568 6069 459 2013 8813 669 366 9122 8914 7618 4141 9174 5287 631 1096 9643 517 6853 628 6851 5237 1277 7178 2774 1472 860 9124 4969 1467 4527 5874 7437 3265 4997 1578 8145 9436 4701 9852 5 6158 4191 152 1008 900 318 2833 8605 2489 1722 2989 547 3220 4990 4100 5516 8534 1722 6418 2661 3841 1551 1813 6358 396 6218 9429 6612 603 7644 8203 3673 4896 7605 2689 7878 3435 1689 6574 9890 6664 6158 6315 1238 6677 470 9511 6404 3148 8408 2642 3095 489 5515 3314 7748 6935 9302 3655 5963 7768 6114 1078 6955 1718 7036 131 553 7254 7066 5337 3434 3367 7453 3098 1265 8837 1930 3840 4548 1111 8562 6636 957 1631 7468 2797 9018 1475 7838 9628 5522 2581 2212 631 8026 8248 9478 2577 5162 1016 9452 5625 4652 566 691 2117 193 8479 3112 9711 1095 3456 6645 4655 9448 9571 5043 6461 7392 1330 69 8399 9944 4633 4802 2819 5707 1134 6354 7349 6076 337 4379 3178 9722 3791 3902 5243 8020 7786 4037 3846 2216 8335 9129 8045 5418 5065 5842 7574 8669 5076 9050 8023 548 5436 2075 2673 293 5949 9958 6957 358 7745 2795 628 898 3098 6856 905 1461 398 9855 2999 34 4025 168 6301 2047 7587 8525 4558 6112 1603 3872 6864 4308 9238 2925 8456 1806 6991 5932 5571 6619 2396 8019 6383 7183 4211 3220 1176 1343 2086 645 2020 7499 6169 6601 8499 2891 1911 8110 8545 7655 2716 9240 1657 7666 8133 4774 7615 9270 1497 6339 9595 8336 9329 97 7882 1895 8801 2274 663 6781 1842 7548 3185 5199 3103 7567 4039 6565 9041 8936 6321 3328 7886 9026 6486 8380 7136 1376 7527 3635 3165 250 2693 1964 231 5527 8622 3608 1969 4192 7722 3842 7701 6253 9375 8179 4694 8677 2149 7057 9743 319 5361 9193 6698 3149 8994 2053 1488 6827 5083 4142 714 541 2281 1871 2592 3178 6636 8290 4991 6452 2708 9251 737 5028 7389 7454 3770 3672 2158 9694 1198 6801 7722 3525 8449 7191 4407 2779 2889 40 7216 7085 7981 6024 5227 1242 1074 8214 780 259 8422 8711 86 7935 879 3650 2802 6066 3282 7394 5722 3199 6826 80 3764 3010 3960 2189 5381 9185 2777 8786 9588 951 8796 6680 9633 9144 2727 2702 2303 127 3809 6574 1455 311 7222 199 2700 8346 8570 14 6641 7103 5925 6383 7509 6802 3417 5961 3160 944 3994 3998 3131 7556 5884 1215 7668 8394 9935 3596 2725 8272 6128 8659 9603 1052 7324 7375 3788 9880 7139 8335 9979 8804 6945 212 7667 4042 3021 5015 9472 8255 1767 5231 3495 1893 5067 4553 3182 4756 9161 3301 1899 4578 9426 5053 5285 126 2635 6172 1474 287 5871 9724 7781 1337 2698 4622 2242 9873 7898 5748 1156 7891 3411 6560 477 7162 3860 6661 5959 2767 968 4756 7039 3896 2465 8861 4278 3635 3941 4924 2548 2391 453 5233 1782 2884 3600 9410 151 7763 5117 5371 5772 1866 9076 2782 2391 7664 285 8607 5313 7579 7465 9853 7178 1944 476 4973 2899 445 243 6028 6024 7822 6186 751 1805 4283 3663 3373 7964 2639 2306 6020 1338 7132 5501 408 1394 4756 776 4481 108 9786 6280 9359 9243 3172 8435 5462 369 6246 4361 5512 2873 568 5049 7948 9976 863 9623 5565 5100 295 2222 3546 3828 4472 4297 8900 9713 9436 9348 2438 9112 3377 7712 1692 3420 2408 5032 7891 5409 8210 7478 3 6093 7563 8315 7887 6816 5336 143 295 2164 5994 7889 352 7569 791 8668 1737 6037 3208 2571 7707 3110 3466 4018 5376 865 8295 7914 41 8298 4266 4515 659 3284 538 164 768 4634 9861 4384 8950 522 3766 1313 1450 6976 5296 1484 9269 9467 3740 67 1203 7272 778 4551 1597 8909 396 5779 7919 607 1236 2196 9421 4065 6815 6534 5181 4763 3156 2897 2780 5314 9089 2874 7992 9840 1245 1524 1659 4182 2894 1589 4783 3712 1743 5694 874 9786 1159 3407 6181 313 4183 2123 7687 7858 8447 6019 4348 4357 1516 11 6851 3401 4001 5801 5851 4679 7072 6951 6760 9554 1985 7178 1133 9447 4012 5490 7219 7645 246 252 5692 9856 7460 5179 7133 8471 703 6267 4589 4936 7518 1182 2928 6331 5997 693 5185 9981 4341 9756 3906 3674 5133 1932 1076 9823 4313 6785 9161 1538 3097 5076 1881 5242 5737 109 955 7903 8861 4276 8501 4374 3352 4706 4198 1816 5199 3216 1011 4350 4347 236 9984 3142 9704 7087 7505 272 8066 5475 4545 4789 9979 5981 64 9168 6508 9229 8798 6004 8130 994 276 6120 2830 8382 174 2761 1988 2055 5216 8081 7984 7 1890 4291 4307 6088 5683 3279 3354 2864 525 8307 2484 7174 3805 9344 7121 4610 4882 8811 2808 1935 9972 4090 9152 993 9329 1495 7632 3257 4375 8708 8581 5121 4165 816 962 9204 1897 6585 9543 2342 6863 4920 637 6893 168 1926 9438 6786 9558 5756 3563 4328 2386 7146 1175 3855 4911 4072 4376 6135 3888 2089 7914 4319 371 370 9207 152 9249 6525 9557 4973 8169 1994 8182 3329 974 5929 7449 2986 2941 1728 4447 8236 531 8385 5693 4453 2103 8797 2451 2257 6651 1870 3597 7121 5539 8756 5287 5235 9926 6322 192 128 2264 4105 8580 2290 1029 514 8497 7213 9158 8675 1570 7794 3723 8723 2489 1421 7908 3225 997 6424 7251 5721 1918 1497 7209 9691 7468 6419 6870 2065 6232 8259 501 8595 7082 2242 8435 3847 5394 271 6133 7152 1548 2520 3092 110 8115 9688 368 2340 8673 9378 5946 265 673 2045 3198 2686 6684 \n2404\n1865 9487 6760 3560 8864 1037 4914 5890 7281 1981 5724 3313 3102 904 7968 2363 6371 4338 9470 2516 5503 9391 886 2511 3941 8605 5249 7016 9209 9835 1973 1594 4508 4628 8506 5943 1606 910 7986 1640 5571 1622 1999 1318 3745 7873 5596 350 8805 2623 504 6705 4479 2476 2220 8094 7657 5066 415 2914 5188 8176 4087 4416 5038 7539 3740 4712 9611 1865 4934 8988 7799 6567 2792 8669 2220 6525 7078 8941 3037 6828 3493 7626 5102 8143 8498 9844 4734 1094 483 2095 1075 6737 4217 2078 965 5262 6618 5526 4125 7971 2 2374 9520 8972 3370 5355 8279 7983 8322 7247 6696 7457 3919 3094 1150 1740 4811 251 2112 5332 2749 2649 5971 768 4678 8052 3609 7170 7411 7697 8117 3601 3955 2065 1311 7571 9690 4975 8035 2477 4030 3127 4391 9792 8975 6227 6023 8371 7850 670 9940 4144 4877 9803 5777 2864 7111 5132 2858 3721 1805 4541 9988 531 5453 3061 4854 7516 2743 7368 1539 9184 5726 4 3079 2844 2833 8613 5266 6557 4438 7805 9975 2636 7826 5021 2012 8571 5176 8426 2449 2270 3409 4539 408 1401 9032 3217 5961 5264 9093 3244 4174 2243 5685 8046 3741 9292 7053 4897 1785 3762 5879 4181 2922 3631 4751 4822 8530 9807 7104 3039 8971 930 2274 4262 8901 4904 5973 6597 4999 1060 994 9053 5230 835 8945 3744 8112 7884 12 3357 3547 674 6136 5464 6408 7135 9639 4455 4457 2818 6406 6048 3399 1891 9280 6402 3414 668 8416 9684 9444 4785 5025 5799 7262 8980 9624 8757 6633 9707 1460 6776 8452 692 3069 8583 9122 2182 6518 4599 7460 604 3711 4701 6254 7273 4792 5789 5039 5644 3 441 9763 628 4815 3763 7161 8488 3521 9509 5423 3254 306 4690 9059 5589 5054 6214 7922 2395 8305 7377 3793 2650 7318 7491 5978 2174 9178 6511 5645 2857 8298 3045 7851 8961 3776 986 4265 9551 7327 5834 3326 9832 1110 24 7501 7033 418 761 1800 4886 8498 9819 8839 8880 4382 5171 2152 4071 1484 9580 7736 3758 8119 9618 1417 7920 4101 7149 7450 2929 1828 8249 6158 829 4258 8934 6337 7754 2530 9094 4836 3498 8898 903 2460 9273 4191 8187 4784 7368 8697 6754 2240 8682 6003 3984 4260 2113 5362 1988 5994 4112 9097 8292 3010 6836 8987 9353 797 949 5789 983 4191 4551 3750 2481 4447 2813 1440 6503 2372 9084 4722 9649 3107 4628 3653 5437 2944 6369 2936 7422 3359 3676 7598 1703 8489 4573 992 1271 8682 8531 4473 3570 7365 5832 6782 284 4197 154 8113 3381 519 4191 3107 3608 6881 7606 1085 4884 6046 7152 8735 8252 8033 880 5978 6640 1711 5292 7870 4624 3381 7951 6908 5346 3843 6145 5441 8891 4222 7877 3763 6113 2225 6742 967 8338 8905 7414 2770 2508 8206 613 1931 3826 7308 1629 2623 9097 3533 8456 4017 2259 8595 9487 288 896 6851 7705 9058 3820 3028 6967 4410 3836 8777 7254 3241 6282 1607 1815 895 3282 2866 6568 3942 7508 1090 4677 9904 2425 5261 5982 398 7242 2529 5161 2049 7357 3463 2736 8731 2942 4607 7765 2677 1677 8325 9639 1628 5542 2491 353 4012 4345 9491 8617 9507 9848 4517 7521 6855 9674 2229 1407 7229 77 4907 923 9916 1471 5406 7255 1340 347 1373 360 8805 2988 6298 6111 5803 480 7781 8106 3938 8518 1263 6862 6860 3950 8570 3428 80 3533 166 8324 3081 5818 8630 5540 6979 3078 837 1278 2738 359 8802 2710 1111 5046 4897 5264 5309 2599 8325 8255 7255 8022 9019 2868 822 6410 6395 7722 1403 4627 1432 2032 7338 1030 665 2838 9501 7690 2101 1611 5704 1588 5968 6709 1736 1712 2795 6870 7177 5986 7241 3530 3539 8874 1193 9868 2649 6809 7859 2678 7440 2737 4084 5554 4209 1236 3071 8858 2597 3703 6516 3030 9505 8548 6486 605 4434 1590 6433 265 7186 1155 680 8530 1345 3080 3643 5698 9609 756 6313 3630 8758 7118 4376 107 8876 2052 6680 5741 3647 9761 1364 7119 4519 137 9878 7835 7613 5909 5246 253 6816 371 798 3394 2455 9684 7763 2638 6955 4737 3768 877 5289 9731 7175 1919 7141 3294 6074 4813 5648 4697 6295 7735 1084 5891 6914 938 1082 8235 375 5008 6130 3882 9599 6511 899 4182 8214 6849 5443 822 5612 3143 2157 3728 42 7968 1359 6654 6748 7599 8050 2489 6814 7117 6202 3861 4297 2455 9575 4074 7641 4967 4457 3282 5774 8047 4999 2484 4072 7196 6169 8784 3642 1926 7540 6548 9798 5062 4424 7934 9246 998 6243 3964 7133 3146 8364 32 6312 7363 7126 9261 7092 3243 9282 7853 8745 6371 9771 2178 6741 2501 2897 1554 2050 2698 8069 8318 4213 3085 7697 8877 896 4738 5541 9930 460 9634 4924 7911 8821 1091 7354 7594 88 1625 6883 9487 7775 6068 8207 8809 9236 2811 7090 5967 6079 8802 7312 1039 9644 7332 2952 4944 9836 5187 7994 7946 5549 258 5355 5856 4670 2692 6981 9229 1954 1154 443 409 2363 835 2215 1051 359 5179 6765 5910 4355 2748 845 8173 7864 9841 9014 7935 1465 3263 8851 2364 7576 786 121 3920 8558 7133 9905 4928 2281 1036 7645 4154 2940 203 1980 5948 2999 9241 3314 5167 958 6297 491 7674 1870 8571 5588 4702 7142 8910 56 6498 2811 2414 5432 538 4280 9302 2067 2536 7760 2576 5493 9753 5940 8471 2546 3801 2937 1441 3368 7938 6040 6183 7192 6024 7095 1331 3365 4256 8393 8223 159 7635 1989 2111 7755 1144 9722 5160 7029 6298 6610 9457 1417 7546 6339 1435 5323 9533 4378 2967 9969 7591 6495 455 7266 3569 5218 2785 8065 2101 4309 202 9353 888 4493 5776 258 934 1801 5704 6177 194 2349 6668 1447 9469 6066 9432 5430 2434 7713 8984 6490 7779 7956 6306 5132 6465 4109 581 1983 5127 737 3600 1455 5822 310 2336 7184 4844 2016 517 5491 2424 4210 7462 8226 1718 8579 290 644 3693 8767 6878 3127 2992 8734 5276 1227 9710 7603 9837 5824 91 185 6175 6758 7402 4505 3160 1350 5262 4123 3693 2034 3632 8928 5908 5844 9234 604 2698 1411 1598 6805 9670 3257 794 4240 6671 2430 1646 5076 1794 8065 6365 5761 1535 1875 1017 5611 8098 8216 24 9545 9547 7824 2635 318 1370 6452 7874 5839 1604 2474 5993 8468 665 6956 619 1750 571 681 1760 5231 1667 2425 6171 5769 3154 43 4466 7430 1738 6281 5075 1428 3576 9799 2550 7612 6663 3457 9235 4478 8286 3666 3521 1188 9825 8555 2819 5924 5655 9694 1738 9183 2906 3828 796 5580 1857 2078 6789 159 8557 5633 8306 7845 6758 5138 5693 6290 4419 3759 4232 5264 5893 2431 8192 8831 8046 9755 5695 3859 9249 8440 5626 7279 8144 9219 3129 3089 438 6937 1407 5256 3272 3015 3439 9105 5864 7294 6269 433 2234 6492 9338 6953 2931 5613 2490 1404 4435 8758 3962 5967 4037 752 6757 9758 40 6817 5501 3007 5737 9961 6107 5244 4054 3461 1930 544 4352 2378 5620 2708 8650 9032 9954 1817 6450 6321 1790 2993 5802 1241 7416 2439 1088 9482 1330 1156 7734 4065 1046 9986 7563 7918 995 5938 2843 7291 8916 2932 3906 2559 1601 999 2334 5801 8479 5209 5482 5061 4541 5224 3508 7095 5753 6955 1111 3333 6756 4574 7062 7958 5336 3744 533 4699 4811 5984 7454 3828 5389 2470 8412 3824 7303 5922 243 832 2687 327 3261 7793 9481 8715 4773 5248 9279 808 6162 3789 1874 8663 2213 1452 7933 8478 1990 5588 6366 507 155 9884 9190 7936 2460 5138 6831 7150 9049 4258 3030 2921 6519 2529 8608 4660 3832 4303 8990 3607 1181 3982 3914 5531 3778 6829 7755 9151 2397 4860 8550 9585 7925 5691 5820 9819 3457 1603 2608 8932 2928 5734 608 7540 9183 8829 949 5386 7221 9368 9223 6589 537 7308 4857 8894 1248 5988 8561 4653 8270 1550 2376 6616 8997 9959 9518 5180 7499 8489 3667 6983 1283 225 6318 5223 1259 147 2848 1673 3346 4450 4328 107 9471 4462 7373 7231 551 8579 6510 8135 6603 4637 7068 6917 2704 7858 5738 5985 9971 6649 8203 4982 3552 2492 3980 1612 7187 9385 8313 1056 3134 1757 8558 8748 8718 8363 6057 5485 4852 9415 1241 6695 3600 230 5024 1976 105 1668 1860 5341 2358 7623 9223 7233 9189 244 9785 4278 3014 795 4434 7455 2404 6299 587 7357 2682 6186 373 2738 7745 2528 6340 8818 2869 202 8694 4845 4744 9286 4953 3733 6983 7273 3739 7929 1355 4574 5527 133 2376 1527 9909 5250 738 1627 7711 9982 8432 7194 1065 4063 3669 5468 4843 3390 7782 6033 5952 2873 5321 7523 3287 6119 1867 7338 1235 2275 1529 5031 2211 9216 2729 8838 4834 5554 3509 381 4266 2148 7034 2502 6478 2610 820 5509 8659 9122 2597 7518 5524 7420 9176 4031 183 4932 4414 5021 7339 3201 8721 3335 5553 8722 5896 8525 2828 755 8916 3776 4133 1375 266 3946 8938 7756 9376 2275 3306 1430 9389 1952 6274 9943 9462 7107 1274 350 9614 5446 1608 6459 4943 9646 4168 963 8845 8643 4637 9986 4041 2409 5061 3131 1355 4092 5399 2040 5139 9813 2567 1447 5043 5015 7352 9531 8684 5128 28 6373 8289 8471 6453 787 8426 2084 6711 8289 8079 7695 432 8600 5587 7350 7839 2349 565 2142 546 7850 3913 4322 1409 333 5448 3895 5081 4829 3970 6262 161 3124 7548 3475 7607 3267 7249 8197 8340 6289 4495 3488 3408 9335 6918 6066 3700 9486 2279 3323 1540 8807 7671 6956 3629 4145 1206 6371 7920 1034 9859 3006 8616 6945 3349 5505 8480 4017 3360 6123 9811 4814 7653 6497 7258 9476 8264 1107 9879 3755 433 790 5731 4470 8396 3756 6594 351 9291 8945 7086 5571 345 3068 2008 7283 7979 4518 5317 839 8872 2339 2786 5939 5130 9479 2984 7834 6480 5902 7519 6197 1802 8534 2188 2494 1291 1617 5901 5130 1867 7039 734 2830 7685 811 807 7027 3513 6988 3610 6441 6730 7299 6185 7900 9678 7844 4548 1747 3878 2886 2664 5000 3949 3410 5664 7758 6201 9985 1993 427 3305 1813 8737 5801 6147 959 299 6617 2707 554 1847 4733 1956 8475 3652 799 2687 9412 918 7161 5562 5112 3421 7066 9493 4070 1711 1212 1829 5161 7808 3985 3872 6709 6010 9815 4670 4041 876 8642 7460 7844 8741 5858 2197 8393 2340 630 8048 5155 1002 5783 9699 1700 6413 975 6437 209 6926 1837 7958 598 187 8549 6930 6990 9224 8888 1227 9444 4728 7949 6118 5590 1658 1703 7887 4424 7895 1976 4533 6629 5918 6748 9409 4995 3712 443 1876 7171 6689 5255 1324 6513 1981 6356 5905 8707 8098 3080 4329 1534 2302 2965 1522 8233 2691 8798 1806 9791 2546 845 6202 2325 1475 9626 3308 8839 4980 286 9826 7253 2869 5653 7910 6276 627 3900 8268 2759 1268 9234 4571 4263 3135 8394 7932 7047 8039 4434 1978 7237 8083 1836 533 1626 3796 6223 5561 8122 8415 6015 4299 767 8295 2034 3699 3335 4759 2978 2019 5419 1974 7611 3755 8897 6094 7362 3414 9496 5354 8194 8203 5759 5654 789 338 688 1509 7246 4914 6893 3343 1501 8368 3987 6471 1150 7598 3616 1744 6014 2393 8494 6484 4336 4619 3102 4944 9865 2049 5313 2972 9588 6097 1259 4192 4430 4129 8501 9546 2264 1513 2009 6957 4887 9022 7334 5386 8005 7440 5234 257 1904 2559 789 3087 2141 9744 6694 1222 3917 7620 6017 255 2983 5440 573 4872 6595 6547 9195 1492 9796 4996 6680 6995 1716 2630 6547 5009 5213 6691 420 3431 7245 312 6525 5922 4662 4042 1682 9289 8335 3893 8920 2252 2943 7281 7667 697 2588 8544 8597 9611 6760 7069 2995 6094 9659 4450 7406 567 4401 2624 4810 1941 6116 389 7270 3884 8386 2640 4638 1257 7423 5844 2143 6983 4078 8988 3600 297 7582 3916 8051 8805 7027 7053 463 5862 581 6286 6674 4017 8402 3483 2696 6439 6495 8611 764 6998 7371 9693 9698 5500 7802 6534 3427 7219 5279 8130 3610 3587 4931 1187 7800 9985 750 4954 3766 5748 8516 2189 7835 952 2014 1655 547 7002 1430 481 4783 5027 6021 9933 6526 1041 7580 6676 6794 9754 97 2900 7517 7809 9210 1892 3023 3340 1435 4601 1146 3477 6052 9469 5793 111 6580 3931 3332 4496 2151 5532 6857 8317 6433 1229 3804 5280 8530 8139 1888 6930 9679 2807 6182 9288 727 7629 5372 1382 9873 8036 9619 3077 8865 1478 1915 4439 8939 1433 5580 7784 5213 4061 6796 7670 2948 788 3501 4097 2257 4095 2827 9713 774 5981 9243 3919 7814 9636 2078 5992 7052 7388 7610 8695 5428 7018 6665 5198 9731 8301 9021 8423 9758 2177 4903 6876 3395 4784 5756 3172 301 969 2132 8383 1040 5640 8859 7587 1289 9293 9671 5346 6007 6479 8544 7165 6808 9159 9968 1139 8552 3410 7593 9167 9161 4163 4953 1399 2777 534 2606 5433 2748 930 5863 736 4600 2522 7372 6045 3218 5552 314 1826 4191 5297 4149 7222 4407 3217 8609 211 3836 2091 8640 5166 9212 5142 580 8050 44 5773 9034 8143 4291 1953 1551 9159 4328 4297 8086 7653 2606 3918 3793 4466 3021 3761 4412 2931 946 3593 2948 7384 681 551 8854 8879 431 556 4475 5186 1130 168 9585 7678 5055 1165 1328 3308 135 2566 3345 6612 6908 8739 5907 6151 9289 7998 8378 7733 3355 1238 1560 689 5482 4079 5275 8648 3632 4076 7999 6385 2711 6668 1529 4410 2886 458 3120 4947 6634 735 7245 825 2163 3580 5419 5219 2411 7074 3631 3137 1428 5092 8290 3467 1556 9379 6232 9188 4172 7526 8962 2132 1898 6653 391 8600 9981 9407 3206 41 2966 1276 7539 3755 1604 2211 3045 7877 6703 4821 7877 8001 5321 6269 6305 282 2536 2644 3272 7724 8401 8774 1605 8273 2627 5300 9298 3202 2734 3821 2000 8769 6288 2870 3502 7772 \n6343\n6460 9844 3071 2617 3689 8078 8761 3051 2038 929 5970 1924 5305 3214 8632 6914 9754 8794 1735 812 2883 7676 4378 5044 2660 8773 2344 7557 1992 3975 826 9773 8741 9524 3667 1734 3185 113 44 963 1650 7848 6292 4126 5986 8959 1626 362 9172 8444 7058 1116 9364 9204 8261 9262 1423 1987 3570 1081 7149 9737 8040 6240 3180 2726 4905 1197 167 9089 6104 138 8873 5465 4917 3820 7844 7559 878 2259 2522 4578 4179 9279 7188 963 6687 3267 2733 4182 4534 697 6182 2821 3646 3613 1456 1972 8575 6227 7884 6450 7255 284 7238 2690 359 2690 314 7213 6609 846 4840 2301 1546 6901 1097 7482 8548 1081 8432 3786 6028 8453 5771 3153 5991 7719 7195 1250 1260 5254 6530 7256 7077 5646 8816 6914 2594 9642 8306 9413 5833 1415 7652 1133 1647 5349 9975 6119 1076 9668 2755 7380 5704 5251 8151 7546 2068 4570 1190 9106 4800 7818 5890 9044 583 7609 5294 99 4694 4688 3456 6328 4351 7885 3585 3804 1079 5214 8324 7108 4435 2517 9492 2581 3393 4204 2107 991 3298 9102 6658 8947 7393 8832 7170 8304 592 8019 6824 800 9892 592 5252 2913 2559 499 6366 7851 4234 4558 9849 4604 2063 5025 6956 6978 1309 231 1611 6155 5235 9173 862 2006 9006 987 2077 8304 4595 4283 9789 5983 3917 1794 3317 8425 4876 8554 9974 2478 2328 6992 2204 4080 8659 4346 2973 9809 4518 5363 3824 678 3935 5277 2250 9928 1380 5825 7119 8936 2629 7407 8657 4102 89 2582 5543 5054 7589 8265 1702 2129 9809 8442 3858 3776 2868 5781 1425 8996 8287 5350 6814 4100 1805 3835 5865 1153 8 6561 7680 1007 8091 7408 77 6654 3277 3671 4468 8904 2168 7341 3456 5469 5971 4492 4812 3628 8098 7532 5445 6242 2063 9975 4608 2497 881 8302 2310 9397 5409 3799 4025 5132 6843 864 5201 4812 9513 7443 8169 8960 4020 7881 6637 8487 2768 3180 9963 9849 4325 9033 8260 4244 2416 6797 7596 3181 232 2306 6885 8676 2373 733 4894 8093 4313 3238 4729 737 5833 3887 9673 4064 6799 5624 8493 5107 1944 8894 4248 5319 3682 8673 5555 4085 390 7651 6648 3555 5371 648 195 919 8469 2512 2130 4007 4928 2301 5845 6520 7361 5763 833 9067 257 7942 3583 2325 127 4920 77 9736 869 5305 7939 8982 7873 5692 3253 6278 5343 5194 5801 4972 7785 1727 9568 8027 8654 695 6446 1799 2345 9719 478 9615 2047 4909 732 8523 8305 1511 4375 5176 2734 7610 946 6929 2402 3641 6829 595 2355 3192 9351 9771 4174 3022 7404 4164 113 3922 3242 7597 9061 2260 8360 7368 6095 5321 8336 4750 1065 881 6785 2848 3435 7739 2080 6569 5830 9792 1802 9981 3957 7590 8665 7088 2838 4140 3729 7505 8642 8908 526 7603 1070 4842 8757 6860 4871 1669 3914 8867 5649 8873 4450 3677 4031 3271 6743 7412 7248 7863 579 5363 8825 8668 3098 8165 9101 8515 3961 7793 1790 3877 3360 4601 4070 4143 7077 9634 9399 4052 7501 7753 3775 1772 4656 1181 2022 9298 9933 3517 5600 1122 9903 9891 574 9504 9367 2857 6058 9576 7984 4065 2642 2131 1772 8120 1403 4095 1252 4441 7294 5634 3533 675 7178 9620 8208 721 4575 4905 2394 7146 2231 6221 9239 6707 7118 2319 882 475 5881 9913 6974 3716 4348 3941 10 3677 5734 5768 7108 546 7098 8874 8231 2559 8610 7706 7032 5075 5881 780 7928 7667 4343 3696 6980 4320 752 50 5968 130 6274 1111 3338 5019 9485 5819 7910 9717 6989 5610 5162 3642 9700 768 8702 9338 698 7740 6088 1630 1351 5000 5060 6164 8621 5296 8142 117 3726 1470 8033 2879 8355 8004 2403 1134 7096 7731 5722 9376 6108 6701 1006 582 1791 3671 5592 7584 7164 208 1174 553 3075 9240 8618 6525 3872 7131 1741 3953 8126 1045 2717 4203 7395 8775 3982 5434 3059 8626 4642 5469 9321 9234 1978 3173 5246 7276 246 5133 4916 65 7946 2399 8361 4452 8687 8184 104 8678 93 4319 5793 245 7060 6090 4317 3700 5005 8583 1694 866 9674 446 3312 6437 4643 4554 5288 9633 9786 5087 3626 5741 3155 9035 6576 617 8515 2241 8669 3075 3140 4402 4763 2649 8350 8063 5774 5210 4781 2459 1689 181 2720 8113 2493 8466 4956 4604 2229 117 1105 4901 9947 6760 995 5964 447 6853 9318 1101 130 2942 5695 6698 8697 4108 6456 7164 6559 5620 5745 9445 5039 3649 113 3817 9735 8101 8424 8407 8373 6418 7075 2163 2723 1553 1839 1652 4721 2768 6498 4179 7357 780 3015 9342 6031 5293 1693 263 2842 7311 4329 1371 2462 1416 8380 4346 4777 1414 4713 1791 6982 8080 1223 8898 2312 8878 3944 9890 7254 2702 8819 7138 1546 9061 6758 3963 2245 6396 2393 7096 5767 948 3373 1296 8639 9444 4795 3832 878 2518 2475 8051 9506 4356 839 2338 5967 5138 3413 5404 4501 5421 6311 8098 2336 6113 1077 9533 9302 8624 2222 5906 3603 6106 914 1583 7323 2942 4369 5452 3228 6704 2871 5009 318 4309 8786 6055 7174 7285 7173 7226 2416 8993 360 3695 6720 1364 9125 359 2378 7552 6839 8629 9785 6739 312 4502 2478 7980 5219 8523 7546 4054 164 3504 4687 9942 4783 4000 8290 5414 2275 7437 8252 3658 7852 4558 8305 921 704 9239 3826 2173 9099 5857 1509 1491 7025 1218 1487 3387 9087 7379 6027 8329 4795 7495 497 7780 779 554 3980 7192 5313 8758 8444 7837 9003 4161 331 5424 4074 8598 9808 7202 4268 6879 9877 2326 9993 2843 3057 6561 8624 1647 2695 9092 1356 3713 9443 5589 387 4160 4113 453 2692 6956 2999 5548 872 8114 9558 2471 7875 9404 4962 3042 5604 5789 3756 4836 3679 8213 4970 7232 5029 7874 4 7093 943 9859 206 8980 7405 623 1438 537 4794 8496 758 9703 2624 687 2237 550 8079 4188 8697 7142 4180 9882 7465 4020 1457 7322 9703 3641 1015 9831 9073 9863 1166 8305 438 8774 2049 315 1465 3435 3037 7181 9296 5159 4400 6573 8902 7879 7625 1080 874 8695 8970 9903 923 2912 5375 4486 9707 7361 4069 9368 3873 997 1439 4732 3832 3216 9273 8404 7619 7506 3847 163 6323 1750 1636 4814 1660 2821 4961 2109 6380 2457 6288 3641 5490 7085 7932 473 8384 2230 3956 7540 7246 4812 4650 8829 2735 5410 6660 9855 3187 7432 6937 2206 8576 790 8336 9659 1048 6140 4114 7987 5888 3581 3249 5206 5657 8272 9192 9939 3422 4360 5797 3770 6730 795 8798 1247 477 1898 3082 5090 1602 4377 579 976 6353 9597 1494 1702 7595 8309 6987 1674 5200 5759 8897 3552 4843 1024 405 9030 4905 8499 6425 6714 3102 7509 1393 6918 1650 48 1432 9818 2735 6316 4514 3051 228 9775 3822 337 9644 7367 7261 155 8495 8507 4567 7477 4709 3826 1548 7966 7432 1337 7441 1889 752 3938 2502 7766 7394 9847 9157 6299 5852 7846 5365 2392 7094 9966 6462 2182 6817 5123 9926 3108 7714 7706 242 2734 8589 2291 9595 6485 968 9580 2920 7877 3382 5379 2125 9366 5329 4486 3308 4786 1286 2388 8121 2272 1089 7662 7834 6450 1288 4701 9089 1344 5353 3896 1971 5372 7041 2963 2729 4175 2325 947 7934 4348 4995 3105 9952 1760 9618 4513 9515 2943 8310 7958 5308 9975 901 2711 4460 3967 93 8510 1943 9974 8028 6772 1936 8982 2406 964 690 2905 492 8658 4611 2461 4155 6116 8999 6282 307 9137 2655 8767 8027 710 3214 8700 1611 2329 6079 1394 8007 7390 3434 8825 1202 3141 8388 6050 1284 2734 1414 997 4082 6947 6860 816 3205 1226 6233 610 2753 8068 5034 490 4183 5281 175 3546 4488 3829 1330 3168 8626 3275 6032 5251 3661 1432 846 653 9104 8406 1627 376 7946 4408 5976 1715 7474 6539 6735 1016 5597 4860 7398 2081 8048 6600 4637 5401 8602 5270 1438 5787 6816 886 7520 9560 2759 969 8792 2501 718 3727 5501 2280 8067 4217 8545 2994 3516 6298 5495 4708 3119 4481 1722 3004 4089 1452 3330 2210 2775 4111 2439 4446 4010 210 2471 988 505 5844 9736 4321 3991 4161 8686 2022 6419 6699 1606 9089 6949 4717 8425 272 8120 806 4969 2859 2741 3826 1535 1095 1236 60 4554 2973 5698 5159 1150 8924 7344 3848 9005 5856 1593 4678 4026 1899 5126 9778 382 8946 129 9671 9248 9844 1322 2738 1998 7567 1361 7776 6026 694 9702 4060 1998 7465 8176 6634 2627 5054 474 940 4949 9693 6468 9129 7613 7417 7755 9591 1841 6379 3888 798 6466 3516 9451 3902 2002 9399 7727 6332 494 2061 4538 7125 9282 4345 6944 670 9936 3309 5155 85 4878 7000 3949 8773 2335 4278 7029 5259 2338 9236 7975 442 2793 8875 9544 85 6113 8574 4872 9293 2247 9379 3597 99 289 8476 6888 7836 2673 7419 1021 9418 4923 5146 9601 2895 1658 6632 8103 262 2605 1723 4797 5261 2092 47 7041 4406 5980 8411 8185 1602 5253 4676 8543 4134 9897 390 3839 6765 9740 8239 7027 8363 9720 286 9457 9735 1946 179 3525 182 4757 6426 7548 1341 997 6919 7025 7493 2980 2969 6152 3711 8342 2137 7369 9156 5972 5279 4471 5698 1276 9074 4504 9361 7613 1664 3133 7073 6101 452 6575 3600 9651 3016 3578 2561 9986 9777 4437 5697 1361 9569 1355 2811 7796 7799 7218 9787 6810 2121 1026 3644 6823 778 3612 4613 954 3558 3862 403 5990 7727 2475 9430 6585 5267 8757 9075 3686 7457 6749 2098 8672 9658 4207 1401 6519 7099 8491 8356 1649 2120 5993 7307 6519 9313 2325 5293 2068 5752 3448 1931 7743 3951 5594 1977 2580 5803 8571 3208 7270 8637 3987 9766 7419 6007 3014 7702 9995 8924 9639 9004 4314 2172 8544 6750 406 8295 7027 4359 6580 6416 9342 9365 2244 6907 6385 2126 888 8054 5434 9611 1057 1578 2719 4511 344 5851 5339 8295 1278 7771 5050 7565 624 4628 3236 5781 2725 6048 8701 8654 788 2883 5544 2190 3215 4398 1327 5780 4072 231 1287 8649 5185 7214 2383 673 3458 5909 9120 5713 7094 6875 8499 1135 4150 577 5439 6318 9344 9690 8702 2013 6483 5863 9834 736 8340 6803 564 1051 2706 4003 7596 4089 2321 3803 6240 7316 6804 6481 2954 2366 1883 8369 1751 2215 3434 3022 2536 1223 8950 8183 4328 7699 7971 6899 7623 9433 6254 9038 2142 2021 9632 7345 6691 8096 9083 6528 6996 5956 3860 6796 96 7305 774 3997 7320 3687 395 9719 8897 3125 9583 694 6300 8731 1219 3110 1843 4736 6424 6409 7328 7855 5473 3602 7306 902 9435 5716 2206 90 7054 3819 1437 8956 2270 5541 9002 688 4334 131 9541 4597 342 4580 7096 8587 6043 5087 7251 682 7186 5269 3122 6670 7630 1934 8533 8819 9730 3070 8069 1468 1589 1855 9522 7885 2034 3625 9676 7161 792 7153 9897 6622 6009 8243 22 7572 7897 6572 7322 1797 4696 3429 3750 467 5292 3132 3113 5103 185 6494 6083 3688 68 2997 7641 8339 8164 6228 1559 1890 9371 1768 4368 3249 1497 7566 9272 9201 9940 4920 3511 6763 7002 9015 9400 5242 9953 9055 6522 5179 955 9198 2212 520 6913 6226 9914 3442 1654 1369 5531 2135 1106 4170 4016 8973 9879 630 539 6411 8697 6278 315 972 8155 6290 2707 6362 6411 243 3103 5999 2546 4271 6250 1909 4366 7522 8993 3372 6281 2720 7270 7877 6938 4811 3195 7898 5073 1059 3119 4428 9046 9404 8625 8677 607 2717 2079 7520 4018 4436 3542 157 2934 6517 1546 8879 1227 5481 4225 2458 4206 4523 5068 5559 2365 4217 1632 2988 4501 2180 7576 5144 3454 8904 3326 2622 6882 4882 8515 5696 739 2372 437 2416 8182 6090 331 7909 8864 2835 747 5094 4520 7475 4483 1061 6911 5952 9324 516 8773 9410 498 2642 4120 3175 4969 7505 2790 858 3923 2918 8655 8131 8283 1621 8291 4151 4354 1386 5803 997 1269 4090 7526 4416 6148 3424 2749 6759 8287 5287 400 2623 8322 2643 5466 2752 7366 9417 8135 2699 8820 7511 3785 5669 8595 2544 2425 196 2064 422 1799 6728 7540 7729 1783 9429 4013 4212 7908 4280 7842 4541 9505 3128 8873 5892 2893 1344 9946 9379 9861 8243 6198 4357 564 8168 7610 1267 9382 9109 4550 7973 6354 8163 3623 4306 9752 9466 1624 631 6863 5163 1179 2612 2200 2479 7014 9336 9984 5388 6267 7020 4366 381 1683 3891 1544 9334 5868 4933 5932 2344 6758 426 7125 319 4158 7755 9972 302 3651 4644 6485 2355 8976 88 9131 1377 1065 5010 9527 3532 3347 9069 3420 6494 1692 4960 8618 2428 8401 8956 9468 193 4012 9443 7870 4778 2643 2151 290 7783 6870 3619 2050 5802 7391 1346 2266 1395 7387 3438 547 1001 9632 3045 4941 4207 7374 6207 3194 3332 2518 4750 834 6128 2100 3686 5496 258 597 3437 1902 5886 3865 1912 5890 7153 1736 3506 9846 8628 8602 2613 4796 8413 3550 9481 1815 9987 9901 4613 5786 8739 403 1003 1364 1734 6829 130 6604 608 8972 6020 7323 7809 1937 6275 2795 2623 3051 5694 3963 3296 9061 1283 3290 6584 5031 5519 1247 8890 9046 5117 3414 2929 1509 9734 9969 9317 842 3076 2542 4179 342 5350 5124 9268 4141 1524 6582 6953 5606 8336 7133 1513 3893 3527 1487 5045 6330 88 4377 7560 3820 8243 7644 9155 7734 7604 4367 8515 7820 154 3607 4460 6767 3996 2642 7981 8411 1913 8949 1531 2890 7652 1612 3519 2420 7680 7025 1320 3032 2896 4837 370 8793 8885 8487 3345 5799 5597 2488 9533 8303 5192 4334 456 830 1369 138 8383 1335 6354 4479 7938 5251 2804 7448 7905 9258 9573 9867 7572 8307 9890 9646 9659 2061 6591 3416 6230 464 262 3083 4446 148 739 4210 7916 2883 4847 3893 1518 5080 2263 8662 3371 4812 9440 4761 3536 4505 2669 2392 3478 7900 615 9171 9191 986 6620 898 4456 3273 4575 8601 6037 7082 174 3545 3201 1864 4968 6446 175 1116 5994 1282 4739 979 3879 949 4293 5902 9338 6631 4586 133 3161 6978 1234 8804 3594 6717 5676 8068 315 5862 1289 4867 2113 4991 1624 520 7395 555 5159 8669 6434 1006 4803 336 397 6863 562 9125 9636 943 3645 703 1949 189 4461 2863 2990 1265 2768 1161 5377 8581 2381 2124 8762 4157 4945 6513 9219 7548 675 835 2747 199 1051 1658 131 7663 6572 38 316 42 4936 1273 2469 2147 5928 531 2829 7877 5291 8425 7420 5570 3086 884 8074 5311 1309 7041 5496 9985 9483 2919 8318 7539 6322 26 7275 1927 8957 6926 8609 2103 3597 9063 9441 3016 4482 9080 3886 1972 4278 3404 3260 5557 496 761 7098 7877 4745 402 7994 9629 969 3540 4839 8249 4959 8025 6953 2481 9777 9823 7066 9877 382 2030 2352 9409 3249 563 6281 9327 7450 8409 8720 5169 6700 4616 8473 2399 1187 3249 9235 715 8673 9205 4341 5584 6713 5326 1912 315 8553 3624 5099 1221 3569 5603 9458 9772 3983 3909 6613 4791 9595 4610 4769 5133 3663 1044 2809 5316 2589 5818 8650 4895 4445 4955 2478 8233 6567 7369 5540 7833 3 5613 6747 9214 1081 7032 2342 3312 9358 5458 1389 2091 8809 1438 4169 7904 6960 3344 8242 5547 1670 5009 9029 5038 3409 9043 7047 4780 6710 5808 7314 8586 6106 7557 5784 1745 4028 2409 8367 7000 4279 9542 9645 4111 6456 3781 1679 568 4122 9138 7016 4627 3000 5008 7431 6777 3269 1135 9271 7993 194 2893 3771 1317 6715 2283 790 729 165 3536 2642 1363 9372 5149 617 4076 4661 2291 3179 7292 4514 3848 9742 2908 8865 5112 8108 7184 3216 9533 3631 9902 5151 1758 9789 2777 2957 8058 1022 6561 2040 5832 7582 7093 9848 1155 7858 3553 2856 6944 9979 1792 8359 8282 3128 6714 7427 7771 9122 5077 7888 4726 3592 8151 425 9918 7151 2566 8931 4160 9546 5187 7038 2421 3928 4924 1314 4843 8028 1489 9250 6046 9577 8685 1021 3032 7664 3357 5275 9531 7072 484 3434 5022 5191 3249 8863 3789 5764 2184 3559 4959 1288 5218 4801 6718 5374 1400 1421 3891 2246 3445 6965 3322 6921 4786 9116 5560 1490 8159 8869 9605 1219 8179 2183 7154 8912 4471 2838 748 2566 7530 2186 7772 4570 5417 9918 2296 5104 9941 5710 918 685 4545 7481 7511 9800 7663 8062 5729 113 7731 5291 7790 2080 9559 8519 1439 7437 7741 9199 2241 8480 7751 337 5060 6031 9701 1783 5084 6957 4728 7281 4300 4140 307 8935 6097 9332 940 8516 4475 6227 9019 3122 5769 7888 5224 7737 4394 2715 7464 7689 3089 8289 5188 4958 6486 4539 4608 2898 9886 335 7994 1897 803 4342 53 4581 8898 5679 7457 9478 5737 8789 9370 4988 687 4205 6739 5852 4543 3273 3544 1147 2020 7262 5335 8881 9800 858 342 285 815 1422 9001 4591 3824 4202 6900 8022 123 4689 123 3421 6405 8490 9456 2155 8112 7547 7781 1733 9942 1685 4043 7217 2245 7390 6658 1399 1743 8673 7443 1998 7904 4468 887 4262 867 2993 6629 6444 9889 1041 8434 3665 7775 258 3599 9267 4649 9677 3800 9063 8766 2478 1749 294 6941 9399 7970 3492 7480 1643 8948 5768 2791 308 6801 2188 253 1920 3972 4965 8552 332 9056 1641 2219 3833 4672 9760 9295 4550 5820 1310 8189 3451 8756 1935 2288 2201 2583 8087 8781 7026 8928 9200 7574 870 6137 8177 9276 2128 1115 4942 244 1916 3744 5582 3254 7785 1291 9257 7756 5565 3025 415 8986 2012 5001 7474 6101 6132 406 3295 2140 3352 5707 3306 4351 5709 102 1749 9446 5703 8019 5938 4429 4594 5588 8758 5383 8551 3568 9776 3614 843 3905 1799 7423 4598 2425 3798 1862 3477 1878 5888 1077 5673 2530 473 3323 225 6537 7609 3646 8877 4940 3917 5909 9281 7833 9458 8136 987 2251 3780 3317 6093 6397 4882 6983 3022 7131 8626 6386 8322 9271 3823 3332 5903 3224 6884 1238 7547 5130 9377 6344 1705 2240 1274 602 3033 5248 1766 2375 6041 4015 8501 4834 6948 4178 1294 3717 6194 1741 2841 1322 4518 7511 2252 7351 8780 1660 1715 6873 8780 5117 5393 4573 7032 7171 5474 5777 4138 955 4078 7172 1735 2855 1757 3827 3781 4737 7007 1087 9308 2453 3058 2500 8901 1854 8739 704 9561 3024 2386 7213 7349 5147 3622 5137 5228 8552 9407 6507 5601 4271 9612 1167 7133 968 4763 7255 5194 8860 2865 9237 5137 6195 6856 4339 2138 5602 5253 4069 3195 5892 1330 8873 2463 2925 450 6237 9004 3052 3082 9064 6965 9116 4724 9765 9996 2537 800 7638 399 2976 9840 3086 177 5368 3424 1977 1655 3662 1427 375 9699 9057 6717 2182 7874 9582 5196 7848 6815 3809 8851 3784 4442 8490 9884 7104 9463 2341 4181 2458 6708 2395 8902 7515 7945 1231 8433 3734 3018 7888 8861 4916 8517 8584 8447 6730 3935 7112 6604 58 7830 3883 769 9849 3944 2768 8973 6653 1167 6480 9741 6802 4399 8769 6817 9354 5675 4025 3337 2031 1740 7752 6849 1924 6500 4366 7034 3744 8350 6752 1968 1858 3969 4538 9636 2368 2315 5296 8062 5192 9279 4559 614 8324 1832 2901 8725 4188 2762 3218 4621 2383 9235 8607 7303 8183 4615 511 4470 7340 1513 1209 3045 3596 5580 8839 559 8685 7484 2418 5673 411 4411 1990 4347 8103 4662 2582 4858 6543 6455 6584 9412 152 3412 8396 4083 2367 6217 4981 8548 692 1685 1173 7196 6308 402 2652 8241 1303 2399 5388 7427 9115 944 4948 2180 5715 5698 373 9674 5502 4102 2026 727 5715 2444 3974 316 9667 4436 8313 5127 4158 6198 696 6169 3777 1167 5191 6469 6003 7702 2930 5317 9022 9351 8159 9612 7075 6611 5536 6604 8597 8618 6871 8352 2442 7336 3135 1987 1998 608 7866 3186 4475 7582 7346 1361 4622 262 9220 9511 8646 109 7541 4759 6071 1055 7455 8089 3030 8163 286 5866 4092 5905 142 6625 4372 6168 419 402 1418 1718 632 7256 1224 3288 8951 3855 1717 764 5105 6539 5164 1898 5107 6966 1280 4676 9382 1686 5193 8224 7638 9000 320 6701 8428 7069 2976 4695 9556 5038 7795 2315 171 9155 7925 1378 8316 6544 7945 3828 8333 5770 2987 4966 5111 2496 1311 6855 8969 9750 9036 8870 1459 307 5279 3252 3451 8150 5911 4767 3382 349 3825 1124 1028 2671 6036 3062 4167 810 2963 6758 1006 3130 6634 7454 5968 9693 4366 7017 843 6354 2097 2630 9399 9508 4180 4984 9276 2008 5651 6051 2299 999 3494 9249 8945 4682 4908 6395 8154 5134 2832 5089 6469 212 5611 6430 6452 6547 7604 9945 6245 6204 5387 4830 522 662 4510 4253 6951 6466 4357 8349 8201 6237 621 4789 2401 3145 9950 4196 2741 5275 3921 7466 3293 3908 7165 8546 6125 1252 3549 6926 4627 276 7669 2707 5234 1993 8395 5065 8159 3027 1670 6043 3289 4618 8963 5434 8538 8016 4178 183 8579 4572 3134 2676 7808 9473 6807 7354 1822 8936 3236 184 5649 6036 8451 4269 3203 1379 1924 5286 462 1831 879 6793 4563 3980 4768 8028 6585 5609 6255 5793 5289 6562 2904 3881 9823 3761 2976 6574 8464 9624 5565 2313 712 4425 2894 2236 4573 5084 3968 3552 4002 9467 7715 4070 2975 9536 3658 8567 8962 1655 8486 2054 1594 4700 7985 2105 7621 2583 5167 3726 3956 7185 6636 2282 7538 5107 2758 2079 6478 8526 1293 7473 7529 5869 8748 7612 4218 9447 4723 3844 4534 5565 6821 8031 323 8287 7721 4791 3947 3535 9588 2513 925 4522 5828 5593 7317 4509 158 8818 9222 3049 9557 502 6249 7131 7930 7431 1741 2564 4885 4721 5707 8417 6165 6157 9591 3732 5615 6311 9846 225 6304 4897 1871 4938 1238 9435 9465 3351 9035 3448 5567 9085 7533 8583 5206 4203 7504 9896 9043 2056 420 827 9680 3569 7207 9930 6989 9512 5249 7697 8268 4856 1304 4480 3632 5782 7947 5279 9160 4703 8605 9068 5616 8459 6898 511 627 9808 3725 5701 2452 2389 1030 9335 3060 4256 1874 534 6289 9307 892 1660 4889 5779 3689 4809 626 2493 5314 4763 7015 3728 6533 993 6734 1721 8092 4152 8141 2423 2083 5875 7917 2719 9643 6864 5716 5162 8743 1435 2878 3824 5981 4994 4246 7466 7333 2924 794 1785 2485 9617 8629 3230 1238 5764 948 8006 7860 1256 1725 6 8507 9129 6524 9823 5172 7384 2449 3870 5564 1909 8861 4007 5537 4774 466 6777 9244 9697 3773 2790 9690 9608 2371 6584 4884 3328 6106 6311 4232 6293 5995 2251 3734 6993 1970 4095 9320 3254 6831 2061 8325 9356 4803 6909 2433 9617 4724 4576 3362 1636 8642 8692 7755 6273 7471 5520 9895 1704 9030 6157 9509 7957 2738 6496 2169 8900 5608 162 8303 9399 8265 5545 9333 4277 8272 7312 9834 23 8179 3783 201 9794 1135 392 2232 7876 2776 9648 5375 7799 7241 458 3645 3094 6042 7126 2302 1603 9040 4952 1909 5199 5527 1356 6603 210 1417 4477 5258 9879 8061 8603 265 638 1446 3331 7150 2310 7728 6834 1764 1644 4875 6784 9832 3119 6213 4567 5293 5738 377 177 8865 1733 7102 3037 624 8563 96 8297 8634 3325 5318 3222 9714 8473 9122 4660 2139 7318 6133 2564 6719 1324 4855 7801 114 6124 4615 9584 2638 3268 1276 3319 1381 3359 54 5965 7463 430 7882 4887 1661 6555 1736 3839 307 6173 4729 3350 8244 5350 4826 2159 2651 3371 2073 7880 7647 6666 59 2718 5840 6141 5118 1100 7545 7750 7219 1895 2259 4672 9891 7059 273 4914 5870 7538 5091 5837 9373 4037 2305 3836 7600 4189 4756 5508 1062 261 1776 6347 6426 2845 3246 4632 2133 4470 5034 395 8731 6378 3689 2739 7258 4294 522 613 5420 6215 2843 4232 6034 8433 7774 3959 7898 2292 4549 4254 9237 6588 5170 528 8204 3690 6572 5105 6774 2679 3688 6754 3409 7784 3483 5117 6030 1879 3896 9128 6135 6695 9854 7902 562 1192 983 2761 3885 8366 7980 2925 14 8944 3753 3278 4370 5638 8421 1003 6696 7940 7978 7252 834 9710 1135 8814 3400 6084 9428 3422 2895 1068 7525 1453 2051 6882 1336 4310 9330 1437 4923 583 8363 1050 4804 481 1122 4992 7157 7842 6546 7301 6675 6225 5306 4590 4656 275 9849 3839 5236 5165 1674 2353 8320 7166 3977 1796 463 5229 5356 2203 3960 2306 1914 1739 6057 2325 9721 1132 5213 1853 2159 1527 5658 2707 3361 3104 2540 2732 4997 4349 9725 9284 7692 875 7049 4622 850 6762 2054 7637 5986 3700 3205 8431 6719 831 134 1652 7989 8488 1048 4762 3337 4656 6049 4165 6818 9175 5788 8487 4224 3016 8665 4752 5146 2041 9018 3922 9565 6156 5953 822 4011 3388 8496 2224 8178 6238 2219 6415 3499 4551 3608 4485 511 2385 7205 876 5091 8705 9642 7344 44 2248 6858 1804 6782 5446 7920 2022 9475 4060 3835 3280 410 8458 9918 2468 854 6741 8659 7971 7800 2537 9590 9838 8655 7575 2179 4693 870 8373 8489 6815 2639 8278 9563 306 2413 280 1726 5115 1853 379 9807 8783 4486 9800 1299 2571 7060 3622 2210 2486 9929 1463 6972 6064 54 5986 8995 3545 99 6032 423 497 3684 9853 1264 729 3757 4653 5079 8652 7243 4646 1229 6718 3281 5269 2672 3524 8636 3547 3861 4735 618 4798 1361 8260 2481 4776 5188 7120 3780 9555 4681 8010 956 9051 2475 6572 6072 1406 1339 2447 7385 1091 3210 3554 8021 5627 5683 8444 514 4372 1367 1293 8586 344 7430 7949 4328 6017 8109 7337 2624 4848 9212 2153 2505 1529 2771 7940 5244 1791 2208 4778 3886 6499 9487 6985 9371 3198 9190 4078 2372 2452 9024 3987 7502 5470 2043 1146 9224 7668 8695 2913 2040 1746 5030 7015 5873 7913 3636 9998 9695 4967 8330 5822 6727 4717 8774 599 4741 8108 3209 4995 9928 725 5347 6929 1710 3252 4972 3301 8480 2981 1683 8196 6666 962 6432 3712 4507 9406 8935 3311 8665 3396 1448 9199 8786 3562 5437 6611 9752 1957 9560 4618 448 3352 1490 8958 443 1117 5719 7677 4589 9724 1573 204 9824 9731 2809 4107 3344 2289 132 3153 2279 9768 6592 9842 3879 5968 6966 9949 5505 7324 5326 8133 8434 8233 796 6305 8123 6594 7633 4366 6961 9865 6648 4665 4397 6671 3254 9162 7213 7914 5052 3152 2123 3876 4382 6705 5636 1027 9058 850 124 1058 1511 7801 5862 6070 5591 4801 9274 9808 3726 9943 7682 8505 7010 3468 4156 9824 7761 5644 1336 1874 8090 1929 8389 2294 4162 5248 1166 7292 3476 9786 5684 5318 4422 2230 502 2212 3774 7086 4723 3463 4282 5753 7145 9322 6577 4696 8608 926 3832 6257 7732 5890 1573 2963 8406 2618 6511 5525 2787 7036 7437 2774 3372 3401 9867 7638 1732 9153 659 8043 7257 1921 1627 1398 8425 5606 845 945 6047 425 1644 658 3331 5776 258 369 8343 865 5132 3124 4711 3543 8861 3722 2520 706 4925 5490 1033 9320 3932 1327 7022 6462 4843 8169 1741 3912 6030 7682 2916 4344 5695 2804 7027 6102 9552 2844 8204 4442 8848 838 8256 6341 3376 5442 4162 464 5602 7509 2225 7348 7073 3950 3471 8312 563 7542 3250 5498 5665 450 8850 4812 9237 8253 6358 7189 439 7125 5271 5224 3195 1803 5945 8466 2629 192 2618 8586 2003 1219 3342 928 7806 6005 6025 1330 1550 2712 2791 2791 4428 8227 9204 7615 6980 431 5829 8917 7795 2618 980 415 2553 999 4265 3302 7120 9711 9959 1176 4614 7307 4718 9172 4980 8607 5554 4851 1388 8580 2830 9685 6141 6523 8422 8650 7938 3505 2683 505 5728 7180 6181 5690 9116 1414 6799 5521 3061 9185 6389 5384 5740 6059 7475 9008 7074 8019 696 8231 7082 1486 7322 6037 1718 6116 2204 7369 7089 9408 6830 3053 9191 9476 9380 6604 7223 704 5087 2840 5762 5459 5149 7519 2366 4547 2522 8873 3494 4137 4279 1338 4240 113 7166 4435 9984 2745 2233 8043 544 3463 1235 1751 8605 2118 4392 4937 437 9648 1120 6925 3458 3093 2238 2570 7435 4813 7119 1751 6705 7780 6834 3017 1363 1017 5917 5625 5207 9330 1966 1370 2223 7105 3304 790 1624 8815 5689 5948 8775 8975 2069 8727 1478 1484 908 3218 6947 3461 5915 3003 9305 6800 3742 1057 9804 6542 3897 9045 4983 478 8636 1040 1532 7159 2855 1537 5315 3494 9380 464 7264 1921 4329 6610 1789 4757 9073 3856 7393 6883 1263 5689 8080 7955 1281 8304 9184 1164 1813 6776 6860 4635 7290 1298 2645 1801 5935 570 7766 5665 5578 8698 8454 6540 819 1903 6334 6386 4051 1535 9668 9814 2070 5903 6467 3555 5963 9272 5464 3881 3796 7360 9826 4290 9841 1792 4889 462 5994 7452 6693 3141 4599 5325 3163 7397 6520 817 7468 5267 7677 1438 9616 3173 2027 5270 7684 1978 2779 9498 5404 486 1094 8763 8410 1903 4766 46 8135 534 7243 5607 6726 833 6250 1157 3646 7213 1899 1724 6463 6939 8038 8218 1612 6805 9676 8851 3494 1034 6664 5021 5370 7186 563 9421 3724 8684 7477 1718 2346 3920 3110 4106 5875 4350 6946 623 6839 5989 2700 7293 8871 9259 6666 5866 5218 5665 3233 2823 3961 3495 1947 8304 3636 6669 3287 8166 2213 3363 2959 4196 7941 7726 179 5304 4212 9538 7587 7890 6150 1523 9744 7158 1799 8243 9806 8309 4077 8437 1068 1651 2986 2906 7201 7661 6349 3101 2493 8184 8450 7161 5370 1471 7188 6275 4190 1416 4042 2564 5408 1273 1285 7050 1052 5074 4562 7294 8828 5690 8005 4509 8509 7481 3035 6138 3365 4682 5662 5570 8178 2178 2313 2572 917 3052 7942 2860 8652 2722 1792 6446 8945 4019 4036 4150 3389 5752 8328 1617 4083 1983 7062 4457 4271 7756 2133 2381 9522 8306 924 8063 5259 7351 1113 8843 8847 8962 5176 4095 702 1008 6351 6718 460 5832 1627 7299 730 5463 13 5680 3414 1679 6407 5960 316 1184 5332 2289 8858 8426 8341 2039 5600 6667 4152 181 2176 3660 1720 9299 4749 4874 4054 8516 2920 6437 7696 4324 3717 8026 1345 9161 131 2447 1608 2806 5141 6414 7605 6847 9747 656 1826 2212 4438 7450 6847 1912 7062 6603 464 5163 1784 7571 2155 7250 4264 2822 5226 7224 3108 8488 118 9056 9276 4243 6657 7074 1342 8768 6854 5840 4259 7136 671 74 5430 2050 2076 9216 4011 9801 5913 8229 8267 258 7994 7462 452 2108 6080 7366 3081 4595 8560 2113 5795 4726 1589 7458 1930 960 2466 8186 7534 3840 6197 192 5223 2971 8298 8515 4945 7102 4554 3347 7027 1511 2238 4112 7147 8683 5611 7664 9754 5577 2315 2113 6181 5765 586 6240 8906 6647 1228 4086 1609 9902 4194 609 2082 3535 4224 1717 5034 8299 4354 779 3668 6321 2666 7473 5888 9574 1102 5069 1033 1451 2996 9311 272 5573 3331 8496 5921 7966 5145 4116 5148 300 8470 9764 3286 9614 6590 1978 8372 2219 6038 5383 4626 6918 9625 5783 5460 1469 2056 1803 9357 9871 3714 5826 8502 1189 6499 5525 7140 1152 7801 6782 2959 7979 4257 5882 3536 1274 2254 8199 6139 121 2008 9344 2544 3783 2371 7797 1767 6801 2450 767 1600 1246 6066 1635 8303 6721 7270 8239 2191 836 7102 7299 3721 9275 9709 6061 9598 8529 2469 7610 5078 6558 4931 6307 8644 3274 6729 9814 4495 9309 8646 9279 2486 3461 6997 4827 1076 7886 8341 1860 1371 8893 5012 1850 4472 6416 7587 762 3736 9077 7 3823 2357 6403 3324 487 6605 2396 6971 9721 2129 645 3476 9834 6188 1289 9408 8830 3599 7930 9201 7067 1532 2172 1635 981 1432 7300 328 7902 6928 7911 1053 2652 9427 9189 1113 6406 914 7751 894 3008 4052 906 1498 7703 1242 8836 1485 6255 9751 6135 2668 9957 7212 2795 925 1476 2903 8335 9143 3499 8185 6270 4146 3285 5756 131 6916 5862 6204 6989 4644 6515 5264 1650 5930 5389 7474 9778 704 731 5009 2154 7822 3560 2852 1251 5719 2644 7110 2613 928 4917 8450 8102 5968 437 805 8920 2828 924 4123 3548 9275 7806 3249 709 1943 5842 1699 8482 9586 7442 8910 1163 1037 1922 771 599 3376 6086 969 8427 3693 3520 6568 256 5524 2982 1497 5185 4422 9998 4078 5275 6858 9654 6840 2334 83 8355 5401 5259 7904 5381 506 8741 2767 940 4649 7658 6173 2258 9145 4124 6145 5939 1653 7208 990 506 9396 2458 1941 6436 3527 6383 6386 8492 220 7516 9973 4607 5644 7826 632 7249 9993 417 1688 3946 4453 2888 2827 2323 2072 1949 6255 5758 2633 2600 9183 2970 8056 1454 4655 430 5371 9421 5614 6939 6048 7459 2753 7444 599 8011 938 8798 8664 8023 6243 3590 395 9573 2990 8229 1865 9663 8317 101 9891 5389 5545 9969 9988 871 549 2368 9444 3756 1757 708 9793 5592 6445 9476 4647 2325 4291 8093 2501 7369 3485 6818 5433 2290 1328 5243 6150 8966 4308 964 4890 6717 5823 7506 8062 6986 9119 7482 2425 1911 407 829 9678 8561 4044 2726 4326 82 5875 3733 9888 2886 1147 1043 6751 9786 3073 1409 7035 7498 9389 3887 44 5119 2733 1396 3774 7228 5376 244 962 5632 9179 7029 4778 1522 5472 7870 9236 5343 7358 8176 7823 4460 9299 5859 7565 6780 5446 9773 4191 4061 2449 150 685 8339 6119 1723 4625 4190 7633 8110 78 6529 7912 8529 7950 5049 4844 1980 6435 456 7296 1268 7328 1321 1538 8493 8812 1325 8171 2882 2860 7547 2861 7099 210 8887 5744 2544 2602 7900 6409 6680 2620 3554 662 1940 3726 2849 4393 4877 6671 2073 3830 1593 6552 1633 8649 4905 7503 4080 4850 9277 9161 3571 469 9219 4439 8278 6475 228 4789 2090 2006 3864 3094 8676 9497 4524 6722 8391 4848 5053 9083 1083 5645 5246 9520 6664 8264 1277 76 8088 6034 4425 5834 2618 1338 8638 760 3728 4481 140 3006 9322 6077 7592 3219 4568 4035 9507 726 1316 8904 1048 2526 9710 1277 2548 9216 86 2728 7748 5511 2583 2716 3770 5922 8660 353 2831 9942 5872 1757 5434 5520 717 119 7297 3376 8883 8607 2741 6788 2701 5072 6077 6903 7497 4003 7565 8665 883 2956 2103 9341 6390 7750 9220 2197 9108 4161 217 7329 5390 6980 3792 1798 8355 4675 9220 7184 5724 5851 9789 2375 8840 9339 9822 8178 775 103 1079 4270 495 8654 4327 3632 7502 8577 4571 6097 8349 8125 1119 4765 2548 7102 4182 3318 9304 6138 736 6939 7895 1930 7261 9596 1281 8213 2321 285 3324 9378 4673 7659 174 3806 1831 8954 484 4329 5812 1422 1151 4154 4818 8647 9171 325 6467 9136 4330 5879 2718 2677 991 4729 5398 4025 6620 6714 8790 4523 4777 5207 4825 5190 1087 1737 3744 2813 3953 9910 463 4876 9270 2990 1730 8818 1128 6786 5589 8882 3212 2204 4335 1945 357 7272 8759 494 8335 847 8905 8236 7831 3725 5702 606 8468 3367 5679 1853 8850 2002 533 5595 3088 1604 2721 6938 7194 4678 4468 1412 882 7493 2774 5511 9302 2961 7769 5481 5538 2388 3511 5248 3302 6684 7269 3218 451 5967 2827 111 7588 9642 6461 6658 8190 4024 3223 9264 5661 3925 4205 1872 7527 9009 7527 483 6131 2636 8561 5517 6310 9554 2742 5802 9034 5926 2103 2636 5454 1064 1163 8724 9988 6182 7234 2442 9652 8055 3611 9001 3888 3565 4661 6107 5093 6062 5750 2228 5438 7348 2532 270 7341 9907 2085 4398 4209 6389 9172 1469 8573 5851 4931 9214 2629 6944 4556 9449 6235 9278 457 9445 4012 609 3443 3719 2353 8149 1691 3460 9076 8113 7798 9344 5012 7424 2152 5463 2400 9009 5943 9655 1312 2358 274 3708 8294 6650 449 6297 8439 7771 6662 6160 6188 6782 7239 9772 9842 890 866 683 5781 9753 1958 9563 8734 3791 8542 1526 5912 1499 1370 3784 632 7623 5437 4818 5354 3384 6015 544 7965 2809 7116 5416 8245 7599 8113 1579 3890 9087 3441 5449 3132 5900 8600 7859 1242 7132 7083 672 3075 3022 5078 8396 1922 3240 4844 7834 9860 2718 3251 628 8825 6589 5253 7095 1264 5497 1370 8186 3398 8171 8537 9472 4610 6499 8867 9425 6088 111 7593 4694 4982 6066 4200 3626 4540 3401 1987 6689 8326 7367 6125 7354 9484 4616 1544 6949 7186 5383 6416 8472 5849 6228 9237 6834 4154 7735 8261 2818 6435 44 3167 82 2776 5796 4001 5536 3958 9638 7206 6472 9851 4868 2489 1134 5691 8103 8126 7218 8762 121 5549 5949 9672 2114 760 7276 6430 7884 1398 6170 2500 3987 2176 5063 9573 6670 3420 2626 475 7393 5120 9808 1306 7315 5562 1627 1859 3398 9759 4056 4045 8892 8614 159 4393 4418 3216 7493 349 1808 \n4966\n4973 6328 5204 1044 4274 4165 8294 3106 7778 3366 8698 6269 706 840 5928 3469 3364 7580 9223 4385 3219 6138 1928 4326 3696 8043 414 8384 6456 9585 3893 7360 8832 1650 8653 3995 7126 1529 4809 4065 9572 2379 1746 5696 4756 9799 3622 3387 6079 2538 5978 8284 5633 7538 2043 3405 1683 7163 5157 7674 4433 3101 9232 461 7293 4870 5123 3031 9968 4090 6899 1886 9333 1064 772 5323 8711 1175 8976 1167 6814 2928 2074 7259 9320 4930 4845 7267 618 1190 1265 9565 1881 4695 7124 514 4059 1447 7935 9489 6828 1418 8275 1029 4570 1164 2018 604 7996 3832 5700 1306 9954 5155 5195 2492 638 8581 7986 6072 1006 4936 8217 8724 1045 5084 6345 1362 8822 8621 5112 7117 6516 8819 8106 9776 7304 268 9699 877 468 6891 2948 4665 7951 1607 1956 617 5908 4767 1597 5487 7383 1852 2312 9363 8930 2420 865 499 2899 5534 8216 7559 7434 5618 2320 9551 390 6939 6973 7056 4525 3384 3255 8733 2380 773 5725 4344 2656 9402 7093 6914 8194 3964 6738 8652 6920 4486 9169 1456 1113 4187 3002 7928 1576 5298 4650 5813 126 1991 5762 8725 9212 6625 4117 7329 6690 3259 7549 8748 2614 373 5822 507 6055 3765 5144 5665 248 283 9737 9255 2176 7487 1300 9981 7986 252 7975 7163 8221 7032 6214 4407 9387 5434 2952 1085 8840 9644 7595 7103 9711 1963 1673 1985 8888 9707 3998 1933 8319 5456 4903 3385 3658 8548 3903 4922 9216 2167 2854 8635 100 6985 8522 8536 1278 2847 5798 5820 2752 8737 5299 2838 7609 484 7682 3005 1284 8699 90 9493 5536 1712 8675 6860 2757 5222 1776 5154 4132 8260 3414 9922 2146 3056 9556 4641 2334 4158 792 4711 3729 9774 7453 1445 5085 2684 4263 4135 8572 9404 254 8780 1479 7313 8911 2276 8580 828 8504 1464 6976 3936 4068 9193 807 6053 2459 230 1077 3729 1250 2326 9778 1888 9741 9826 103 889 4650 9258 82 6110 5006 4214 1993 7411 7603 2619 735 4080 7133 2633 6709 317 4147 6328 8656 2097 4012 7471 8678 1165 8428 1787 7491 6174 5565 726 5666 9099 9942 9279 711 9049 5735 2154 5709 7223 2774 6965 3599 6565 6129 2744 4635 1508 6010 1140 3821 2249 3369 9254 7026 8850 7088 6884 6693 5057 5715 9975 6045 5334 1680 1826 9559 2672 517 702 4294 3523 4240 5490 2601 2359 6506 4570 6074 4730 5333 7255 7931 8032 5412 3474 4877 8818 7826 347 6841 110 7408 1416 4727 9039 1533 6809 8776 618 2083 2983 7849 5339 2953 7071 8688 6530 2993 7118 5844 9230 146 3421 2443 8960 9211 4787 8685 421 6023 7734 778 2893 3959 6532 2213 1637 3264 2364 8494 3914 4435 5268 4892 4967 5412 4319 4914 2103 3693 8140 4720 2731 4913 2062 2494 9976 8717 1103 3785 7897 5280 8508 2609 7064 956 8596 9147 9912 8163 3224 497 4892 1029 5998 5521 2322 1127 3269 2931 7259 1960 9989 8601 2432 3098 7573 1217 172 2082 9815 9871 1615 7232 2223 8369 4271 3701 5293 4584 1557 8868 400 4935 1792 4793 4459 4637 734 5149 8214 4352 246 3443 6443 3731 464 4096 845 6332 6057 3018 3742 9487 6030 8949 9426 4506 7517 4447 8965 2268 1290 6520 8154 3585 2796 8999 4784 9566 1042 9723 5871 7170 9337 9641 1579 1448 3985 1339 9523 5762 818 7271 5897 5616 2641 1996 1280 3531 5894 6890 9206 5925 5777 345 403 689 8238 6139 3200 9157 3980 6783 8596 7825 7230 7661 3052 3947 7586 7719 4339 8409 898 8048 2740 391 802 4420 4315 5800 9659 4713 9162 5030 6544 1639 8533 2510 3538 4947 8574 6791 4331 9200 3940 3236 620 2295 4895 4117 8822 4484 4960 7403 4132 197 1472 9393 3055 8254 1546 8806 9674 5809 4924 3600 1176 6271 133 9570 4344 7774 4895 9140 1675 5482 130 3979 7329 7795 6697 6399 1233 3503 9965 862 9395 547 4646 6503 8967 318 650 867 3011 2548 4584 8490 3913 8213 6846 1678 8986 8057 3010 8160 1319 2582 2562 3222 7637 5086 1219 2441 7760 1015 8790 8897 4326 5373 6721 8310 2396 5911 7213 2876 8461 8819 2762 4562 7146 1929 1399 6029 1263 3424 615 7325 4195 1250 7787 7742 8091 6222 2468 8121 8106 401 6038 7802 7286 3935 1884 2314 543 1244 773 6029 6076 3800 2078 3198 5609 8834 3958 4098 1946 1170 5671 6169 4028 9811 4288 6238 2602 3421 6480 3349 2256 6897 2876 947 3449 6045 3706 3214 8502 4705 2385 9956 2713 3395 7706 3657 3031 6882 8556 5210 5388 331 9999 4075 8432 5779 7510 8078 6758 2635 4330 2662 5741 5355 2207 3095 9639 7593 956 4187 2067 7895 8216 6374 7031 8773 2538 4793 9077 14 6581 7836 3773 2821 6694 5709 9779 6862 9586 9982 1798 7413 4209 80 3208 5592 1485 6323 3440 9292 5579 582 4984 5950 9367 9033 4070 2818 3723 3462 9938 9381 8401 4168 8750 2068 8588 3503 2858 7295 4 9327 9658 9774 1039 9442 5950 8264 9045 9381 6499 3567 8786 761 6802 5080 6828 1831 9816 5961 1465 3343 2867 6148 4590 7354 6064 4329 3425 7526 6857 3020 5891 684 9277 4142 353 9513 9915 7124 2109 5307 2632 1346 9882 5216 1026 811 7177 8435 7165 7917 1174 9929 9230 1762 6478 1646 417 3567 325 2093 8432 7140 5276 8860 6384 3429 2748 8990 3620 3271 7810 6366 472 2929 3272 7607 8680 7944 7271 5871 3574 8505 6938 4206 993 8205 4745 1650 6064 8770 6206 5355 4592 7409 7426 9390 6154 651 8147 4464 6000 5704 8788 4402 7620 6756 947 9355 4162 639 2978 433 5746 1920 4575 8164 7345 9428 1082 6318 3659 9876 7213 3614 3680 5874 7662 6131 7806 5587 8040 8376 9695 4631 7429 8828 2047 155 7211 9685 1805 6710 1998 8772 4477 5475 9041 1634 2978 6544 9895 6948 8864 4096 2196 3209 3778 3102 6630 2093 119 5172 7514 2103 3150 5402 8262 4089 7 8942 4324 4864 3764 5837 6895 7748 7883 2737 3215 6398 8919 920 7790 6704 6483 3564 7811 8336 9341 5202 6273 6428 9281 2110 5217 6266 6482 9749 8044 8216 8347 2831 3448 7896 7736 5343 1046 3635 6285 740 4653 7348 3871 2519 4554 9834 4773 4576 3997 1126 4788 9420 7681 7054 8620 4650 8131 2870 6575 9595 6879 5905 3306 3274 1416 9956 9991 1528 6107 2789 4082 4541 8610 7940 617 8391 6423 8206 352 5127 8972 395 930 2721 9430 8765 9230 5120 7927 850 7903 702 7269 4638 5564 7345 868 8347 7843 3337 3013 6599 5414 3366 4587 1348 6120 1308 4982 518 6565 1373 4147 2160 1360 2946 3437 7952 7110 8491 1647 397 451 1071 5908 9646 6374 4220 9055 6850 8186 8315 6773 6102 7799 4621 2280 4321 7825 3523 9454 4851 5241 8443 238 2328 3508 2927 809 2470 4716 5097 4490 498 6717 9325 5299 8404 923 7575 8833 1883 8029 458 5653 6791 9071 1514 8212 5434 9147 7161 7403 2238 6712 1099 7267 5465 2174 7366 186 5429 2889 5936 2843 9250 5840 7829 7722 4299 2874 6130 1329 3600 796 9636 1673 3736 5412 5266 9747 1982 308 5379 3937 5546 7774 5074 3135 2967 2051 2548 1229 5921 1625 5137 2577 6317 8063 9891 495 4417 2775 6668 1111 4688 3764 5439 2457 5190 367 4072 5744 8036 9366 8378 7544 8509 2338 943 1026 908 3081 5449 469 9332 1516 8079 7688 2106 3904 4750 4924 4012 2356 6384 586 6522 2231 7897 9941 2409 1923 350 5330 6448 327 5114 2034 276 2195 9751 9840 3953 3363 3692 6753 4107 8435 8976 1681 9518 8899 1856 3257 8565 4895 1175 7982 178 9954 7912 316 1588 4200 123 8516 3095 176 787 4751 7633 3777 5233 7668 1409 1259 6119 5600 8401 4981 9984 2264 3826 9851 8115 1242 2569 4187 1649 934 4268 6843 8852 537 3658 6011 5844 7152 7008 6486 2169 5944 3731 3549 8505 3499 258 5881 8828 449 2441 9598 3719 7440 8972 7665 561 896 4942 7710 9274 4421 7801 3578 2356 75 551 7188 5824 7855 5087 8163 1364 8972 2276 9109 4112 4285 6742 7808 3525 6880 9413 844 9991 4040 294 8781 5454 154 480 8770 3886 9758 3819 1631 3929 637 444 6969 9955 8734 8104 8403 1434 9635 8109 3336 7608 188 1885 1312 7114 8845 2239 5874 1255 29 2349 2779 4527 8537 2712 1770 3340 6812 4662 3787 6749 9695 1273 7807 4569 8379 8901 2623 3338 5920 4890 9944 6605 5861 3877 7568 5778 4778 5928 229 7702 3941 7986 1210 387 56 7478 9456 3053 394 413 4407 448 9532 8544 7567 4333 7974 470 9863 6258 4481 5237 7641 5655 1118 14 3281 2682 758 1813 5891 8352 8116 5355 1419 5373 8832 6999 2089 1721 6143 2555 6729 9451 4398 1745 9523 7310 8229 1524 9803 1971 5856 3500 2947 8760 6015 2060 3026 5284 8796 1821 1648 9105 4948 2262 1666 831 8880 3160 5515 7748 1620 7710 6873 1787 8688 7813 465 5619 1776 9718 701 9393 6269 7996 5487 2708 7624 4238 6194 8029 8477 2626 5311 9620 7213 2242 4538 1315 8 1556 7404 1543 2962 1881 9589 4185 8606 4918 2661 8269 3875 3381 7543 5041 8789 513 4418 5552 3886 1658 8341 4819 7893 802 110 5423 5050 1424 1043 8457 3994 638 4226 3921 9527 9444 4333 1964 465 3450 334 3744 7900 5041 7117 932 9877 6782 6757 2950 3757 9707 7138 6064 4998 3821 3370 5174 2192 9268 7604 4384 4812 8113 8958 5944 4231 4949 5687 5260 1335 4169 9709 3322 5456 2377 7005 4814 249 3640 2592 1111 3412 4614 8792 7046 1062 1065 20 5012 1916 2580 1676 3004 9568 9044 4571 460 2721 7116 137 9034 6521 1986 3888 1964 3061 2673 7145 9855 9215 7826 2536 9000 8004 6735 7240 276 8412 8749 4456 846 6459 1320 3395 4849 4261 7537 390 7539 5253 8107 5443 1321 6332 9071 442 3161 4785 6839 2599 1189 648 8967 2325 4312 2592 5041 7209 8511 1907 6994 7325 3731 5648 6365 919 2216 5128 8947 9215 6249 7706 6971 5515 7012 1666 533 3360 476 9477 1054 8529 2293 5839 9806 3142 2274 65 6722 4874 1865 196 4248 9784 141 6894 8310 4910 5017 2752 2610 3797 7716 3518 4814 7152 725 3915 7153 4189 6639 8183 9353 8961 5237 5586 2239 5164 4241 5299 6501 5798 8857 5531 6833 2997 611 410 8116 2719 9092 4631 4315 5060 5543 6349 5276 7655 5632 2315 9557 7005 3405 8941 9329 9032 2556 8124 5362 2757 8956 8426 3499 112 6460 4002 884 6400 9827 4975 6780 3061 2719 9726 9213 4349 6423 1857 2310 9532 9898 6598 2957 749 5484 5572 6838 1225 5890 3389 8809 1198 7317 1800 2299 5832 4412 5428 2346 3904 1315 5308 118 434 4270 7026 1280 4342 6507 6115 914 2825 4083 7128 7062 957 95 4083 3512 4874 2148 263 3018 1032 7070 1737 79 7606 3500 6695 4918 8807 5529 2854 3411 5818 6897 2412 444 9181 8240 2624 2513 4714 188 3707 2891 4887 6655 5026 7483 6527 2050 6612 5423 7559 9986 4934 2243 2501 9902 1712 5506 2078 5122 7656 4116 8031 8248 5177 5456 3805 6207 2352 3953 2364 4834 4035 3179 2182 4523 2597 8283 6273 7526 6481 6247 5540 8202 738 8321 1974 7220 5635 1998 482 4492 625 8809 586 5606 7338 8615 5823 3171 9318 9189 6761 9906 4433 5266 5291 7521 8254 8374 2204 6986 2871 3197 8661 3412 1550 3987 1169 8524 9973 52 7575 2796 1094 8611 2879 3522 7538 2098 3937 7670 6006 2291 234 7277 9922 1165 6249 2361 9705 2421 9460 9298 4396 9896 607 6538 5799 7648 4322 9710 2485 1318 4314 6461 997 6922 7845 6381 32 3515 1361 6553 543 3274 3760 5613 1103 2418 2317 8132 9429 6053 9527 4057 3893 9781 5150 9017 2422 8329 8233 7123 348 9237 909 8205 3851 4051 9080 7046 1125 1350 3455 1874 156 7064 4758 7682 6372 6335 5708 7355 3 6266 4261 1858 4835 8478 778 5275 3309 9243 9006 4348 5564 5439 3172 5105 2915 3936 5281 204 509 8000 3323 3601 3325 6789 918 7112 7737 2214 8527 609 9178 7619 6758 4840 8395 4740 7773 2936 4228 8897 7205 3450 2435 6701 5228 6744 2366 5505 8362 1196 2851 5346 8346 4012 1034 7355 2256 5104 18 7463 7285 7877 9661 2898 3346 209 8234 6792 2677 7735 8862 6675 4712 4105 3770 1662 6933 5674 2101 8014 5056 8533 3041 3805 3398 6340 6079 8554 839 272 9104 6665 2931 7114 7509 4607 3022 2647 493 9496 2525 6508 2424 3618 6621 6685 3456 2910 8934 1762 3684 6505 2570 9614 3896 8400 3442 9354 8938 3539 4067 1624 5491 270 1889 621 5944 9798 6789 4732 5676 4015 2708 1477 9935 3117 6641 8957 2816 6593 2359 2722 7956 1462 7427 3316 6468 5530 2773 624 8835 6373 9396 3120 1135 5741 8265 8925 6135 4751 1336 8086 6950 8694 1176 9832 2883 6845 3375 6265 2347 6282 3860 6142 6421 2874 463 8466 2625 6880 335 4176 4333 7196 1751 169 553 9772 7076 3858 7977 6958 5780 1424 8099 3255 2696 491 4637 8533 7573 9429 6005 1216 9743 513 2005 9333 3585 2596 213 3996 747 5122 447 2920 8552 2533 7592 4122 3749 2281 5213 7120 1053 4583 2127 6333 3836 4163 7255 2043 5708 3711 7380 3217 6113 2113 8051 9327 2189 4062 972 6875 2009 3245 1965 3857 7690 7980 6274 5468 6097 3241 9168 5698 2080 7645 7173 7579 3369 4927 7037 9846 7018 368 3541 9342 1707 9308 9984 8625 7985 5383 5594 3792 7093 2484 6989 3644 2241 1856 4578 7543 4664 7854 9445 3489 8973 7575 5309 1827 2679 1453 457 4524 9282 2915 6992 2663 5049 1671 6726 398 1597 4425 3801 2512 7349 8604 3423 5370 5388 8705 2342 8017 716 7826 960 3302 6232 7228 9946 1670 2933 7925 7662 9719 7330 1591 7631 4704 8925 8161 7292 3515 5159 8463 3606 7589 9740 9944 2447 2082 9677 2068 5612 7832 6745 4034 5186 3773 5393 12 4241 2695 6925 2277 6877 2247 8047 5348 2613 6991 5099 8103 9514 9546 2779 1721 9377 5339 5543 3764 833 658 6814 7791 1515 6390 6681 5802 5813 9147 3045 7254 5397 450 9415 2482 8380 4743 2779 962 8040 610 8847 3248 3573 1118 7115 8453 9249 6728 6878 6378 8184 7955 6245 2525 853 7299 6430 9442 1203 5994 2042 4903 8136 7126 2451 8603 9395 272 4626 8062 1128 2478 2340 9148 5134 8933 9072 8338 4708 8964 5042 2490 8057 3890 8300 3714 3334 60 1002 8055 7912 275 5382 1361 5625 5686 2783 7408 7127 4645 7937 9396 6846 2628 3843 7361 7362 6724 3971 4372 9584 9226 7585 8527 2863 7192 2938 9177 1765 3386 9303 7874 6254 1661 5320 8730 7163 8079 4531 1405 2742 8416 3025 2347 3688 4666 9169 9637 6188 1743 8178 6372 287 9993 4018 1821 6410 6849 9556 4066 8845 7377 3870 2740 4450 6610 5544 8445 1107 6461 8099 9699 5076 6670 5771 167 5060 3476 5075 1405 4814 6406 6422 7065 8727 2041 6956 1809 6110 3228 2381 3265 5851 2166 8685 1381 5670 5240 2359 1753 3064 5981 2055 5458 4490 9779 7542 2277 2074 8713 9903 6521 3410 891 1808 1468 6958 4563 8736 5363 7643 4083 1054 516 2544 3568 2292 4308 8659 1599 9764 5723 9510 6649 5814 1048 4227 7844 5044 5346 2325 4108 7252 1283 6769 9133 9751 4338 9631 9276 516 7448 6564 8063 5321 4554 9701 9734 6299 339 2997 981 927 5881 4706 186 2287 8043 1463 2829 3426 9337 2698 2274 2617 6171 8498 9050 4737 4559 7400 4110 2787 2544 8765 3791 558 3211 6633 7804 8404 9599 5039 58 7376 8683 1431 7654 3148 6624 9275 8446 6484 8542 6586 2801 1723 3458 1662 22 7323 1664 9187 3603 7414 420 10000 334 9039 9704 2717 8881 6819 3741 7037 8567 6061 1701 662 2504 4392 5408 6062 5069 8029 8902 2927 8811 2436 4728 8889 8015 3353 4852 7338 4809 5853 9765 3186 7355 1554 2925 578 3615 8364 1276 9961 9400 2563 3423 3702 7888 4535 8092 2638 6499 2777 1482 2828 3438 374 7524 7269 4233 5262 648 4517 2148 7571 7081 5912 2206 8653 8422 7421 4533 9821 709 3561 6438 6395 9084 8306 4859 6306 5918 4301 13 632 6423 3099 5704 1511 5212 496 7568 789 5380 1875 8739 9086 60 7423 4966 4402 5190 3088 583 7239 4736 1896 7941 2439 5998 2874 7918 8041 3521 249 821 6673 3075 5075 9860 522 5253 651 7271 1607 6518 9218 9564 5426 7980 4924 7642 8411 5732 7460 9840 6026 5709 8411 9152 5543 8193 2540 4186 1982 4101 7233 1792 6652 5997 5309 4015 5509 5318 1084 175 595 5785 5151 9055 9337 5219 6717 2440 5580 5928 1174 3378 3503 34 6487 6124 2635 8452 9202 3069 8548 8553 997 126 2932 8249 6005 4323 1983 1826 5200 2606 6843 1590 1958 2861 9485 1003 2872 268 2772 9985 7984 8112 1537 452 1824 5910 1116 1948 2295 8120 1988 2809 9012 2400 5788 7542 7756 3226 5849 161 3790 716 9786 6068 6762 3785 426 616 4559 6433 4960 1153 4164 1241 3481 1641 7448 6827 2943 9685 5793 3293 7876 6504 8837 1061 9013 7027 4631 2521 2258 8333 3672 2542 3408 7750 1214 6493 2031 6060 4222 2925 6757 8697 460 9227 7952 459 1527 6043 6785 5722 7098 3224 3955 6178 2156 9983 5855 7297 5737 879 5257 6656 3247 4421 9311 4699 3063 8615 3807 8794 237 4064 9230 5664 7083 2674 8319 2303 2347 8444 1600 6872 3081 9566 7799 8829 9766 8537 8430 2008 2927 1439 3674 5905 6594 9917 1576 623 2503 9709 1658 8626 8876 5906 2574 3310 8395 5400 1532 4115 9504 2537 1263 4923 5717 2525 1225 9942 1930 9024 7654 9887 4093 8704 9175 1467 5482 8897 8467 3475 3114 9923 9067 9600 6567 5873 7219 752 9587 3138 8193 5744 8198 2137 5050 8833 8086 9024 8457 6834 1848 1174 251 1397 5043 8731 2605 3248 2082 9861 5071 6559 3765 1274 5731 9285 6762 8171 9423 7740 7650 4992 2629 7537 2265 1819 9895 7374 1577 5747 4318 1819 842 3214 2170 2395 7326 9749 7769 3574 9207 2426 8482 3808 2242 7912 1076 2027 205 6844 1668 5158 2462 1704 5258 8547 5317 408 8943 2643 3896 7313 7129 3006 8399 5145 4539 9994 2458 9220 3120 7071 4392 6105 7926 6785 3678 5172 8372 2236 6609 1362 1120 2844 9709 4624 1454 6869 7717 2569 8995 4934 8873 7621 7777 320 9348 314 9863 1482 1156 4110 5942 340 790 5805 3802 7018 2160 639 9177 6703 1251 5307 4961 8198 7029 635 3104 3332 1317 4655 495 6032 5169 1280 5455 2332 4707 1311 4555 5824 9915 3974 7141 9619 1991 9298 9263 4133 3908 8403 2157 6630 4630 5111 5099 4672 7345 9035 8401 418 2589 7803 321 1037 4701 657 3140 1865 1021 1525 3770 3943 8102 9928 9826 1822 1950 8495 1428 8065 9890 5614 546 1231 6228 3828 1499 5921 3494 4662 9209 679 9766 8336 6037 5928 6856 9816 9800 3829 505 6704 2648 5799 7086 2351 5652 9719 4807 3889 226 8522 7039 4869 4591 6293 4757 2260 388 9961 2382 5582 1446 2265 5036 999 2497 6069 754 6457 3714 9647 9061 71 4602 8196 9614 6669 3141 9007 2741 4583 1796 228 5021 8767 8489 1416 3101 1098 2377 6258 570 5187 797 2494 7936 7071 7806 2602 1641 5633 8692 5465 4550 8051 9945 6201 8793 9210 3536 5870 1676 3490 4481 147 9350 4370 1026 1784 9689 208 6633 1857 4738 5781 5249 3106 4045 833 9538 4993 3523 586 1254 4816 2119 5492 4311 2190 5688 554 7123 6344 7527 2987 3925 3786 5190 6951 2432 1947 6838 8679 354 1190 1304 6657 3596 9769 7958 639 7135 5039 9254 7731 1078 8239 5832 4874 1992 8186 4784 3827 3131 7357 8753 8286 2175 8950 2348 1677 676 9638 8000 2753 102 6143 9569 1862 2887 4651 81 6636 5316 5428 7309 3656 4884 7934 9443 5514 4017 9863 6664 4297 2112 2808 3688 607 7434 4791 6139 7216 8474 2826 9192 9091 5576 2654 2235 8880 5195 339 6985 3387 6821 9295 1839 6689 6745 592 7799 9157 8612 2323 1537 421 5128 7423 6176 1750 1391 4454 2759 9018 7093 5036 2961 7424 3932 9988 2988 3408 5662 3275 7267 5055 964 3499 8590 8244 7504 9557 6424 6282 1475 9776 89 483 5127 9772 5306 152 8373 5498 8686 1941 5032 8622 1579 4135 917 8988 5189 2555 1463 1404 8038 7324 1111 7447 336 2322 1295 1548 3686 9904 5120 1356 8429 3404 2073 1615 9227 8306 4092 9338 9732 9938 4909 8004 7753 4714 4123 3247 4197 9731 857 6843 5952 5053 5134 4024 1891 7987 1067 1614 3724 827 4923 2475 4464 3181 3221 8520 5971 5933 9541 1724 2314 5442 3240 3866 8056 576 4561 8066 8469 4716 4265 540 6362 2813 7201 5158 6064 9065 8241 1511 342 1737 2084 9958 2443 3061 786 6034 7849 8337 9577 2124 5113 7741 6718 4499 9560 6923 9092 6519 7888 883 6396 8227 2944 3013 4924 5320 2249 3418 9964 5593 3946 3393 1709 8489 1712 4884 7016 1343 2961 4870 8232 9739 8277 7227 9026 5495 9802 5046 8485 3140 9436 5902 1787 8775 5758 4650 49 3632 1697 2754 9456 938 9218 9816 802 3954 3398 7343 8636 5298 1539 2806 2891 7310 1165 5540 336 2388 4768 3722 3721 8957 8671 4943 9792 7658 6455 524 969 1027 4015 4647 9364 5676 5084 4159 5974 2167 2591 399 9955 4974 7416 4994 8125 7614 9519 461 5770 9480 122 2365 7812 7598 1942 6915 7391 2079 4553 4346 4204 9164 7336 1803 690 6240 596 1719 7766 6539 7335 1267 5853 804 4556 4100 6868 690 7516 4942 1583 6860 4242 188 3926 5188 7519 8829 8848 8986 3708 5292 1297 6587 6339 6509 8201 6456 3193 4884 1305 2448 7348 8897 5437 8685 9797 7694 3588 9098 5156 9117 7873 1475 5663 2105 1472 6551 6708 8049 6195 4413 7357 3280 8592 3531 5273 1932 785 2393 4023 731 5263 9212 460 6475 3417 2334 8530 4965 7173 7848 5362 4699 5668 9526 4462 9284 3146 4251 3453 5813 1865 9220 1447 299 7876 8752 5510 7210 9403 205 6086 8805 4208 315 2461 2607 282 2014 9501 2849 6204 2593 1686 1089 9087 1557 204 3984 6708 5816 8060 9898 4543 1305 1988 8185 6845 8138 2938 5285 1917 4985 3949 4538 3486 8820 3230 5594 6681 5510 3635 2095 7187 2348 398 8789 1281 3142 7926 7573 196 1968 6231 7020 9102 3970 9338 8946 4930 7723 1541 635 8560 6430 1127 171 2867 1256 3022 5943 2671 6719 1566 7718 5297 8717 6442 8968 2081 1479 6549 8569 1408 4020 7895 3437 9544 4817 9523 9738 3062 8209 7325 5956 5711 1725 5026 1787 1774 8512 6870 4808 4697 3 3976 8374 2714 1870 3299 468 8039 1062 111 7752 991 8776 2949 7739 2201 1785 6346 1505 7158 6466 7154 3401 1114 8929 224 1978 5839 2008 7879 2072 8397 6947 6866 2119 3726 5813 4814 7353 7939 8507 4769 9912 4981 882 4688 7738 3840 6743 4284 5925 7972 2197 8938 8630 1918 738 259 2641 7379 8780 1819 1108 5349 8703 614 294 3208 4555 6730 7021 9717 5513 2214 8480 7702 5598 7098 2085 6455 1650 2666 8774 365 2725 2537 8243 6284 9750 8563 67 5569 1175 6225 4428 635 330 4862 8022 4646 1366 1763 9844 2573 4978 9809 7032 3915 9655 9573 3612 7955 3318 1772 9959 9102 5455 4777 4227 4973 4714 5098 1918 7534 3662 9182 6043 5473 384 5689 6260 7251 6195 7977 3382 2129 1364 4665 5945 1951 395 5129 8208 9809 114 4695 5524 4909 1825 4954 661 9633 5629 7291 8163 5345 4247 3946 576 5250 6562 8667 5330 4021 1270 5172 2741 3491 4298 6165 7303 249 8471 1198 6979 6597 3517 3642 3789 8752 9147 6935 8673 4997 5252 2797 6533 6258 4980 6973 8134 9509 3305 8245 4574 6107 1882 7384 6518 2847 8567 6138 9461 6151 3667 3549 4010 1086 1491 4703 9929 6666 7904 7876 9116 3801 8044 2586 8636 4228 7225 6250 8505 7599 4495 5775 5738 5591 7910 4577 5512 8320 5815 8832 9815 8884 6042 3070 6092 8566 6022 1396 9073 5192 178 5825 4258 9306 6656 8236 5901 6168 606 8966 9343 2036 8381 7122 2262 212 5720 7591 5238 8881 2206 6082 668 80 3276 7427 2160 9458 4604 8088 9385 2941 929 4425 6659 4953 1167 5602 5227 5427 5938 4179 5006 3845 2481 5680 5284 1347 507 4457 5718 2756 6273 6277 127 7921 9082 9557 172 2496 7324 5388 384 9358 9686 3760 9633 7887 5209 4670 4632 8856 134 9033 4278 7008 4499 5682 7790 2128 8693 9965 1287 4609 6017 9473 3072 3426 7481 6392 5260 92 6849 3924 5369 7168 6844 4722 1274 5125 8814 5104 2090 5499 7474 2843 8185 6919 5408 6057 9190 2736 288 4919 9215 3700 7794 5870 5650 4231 6117 1074 4930 1113 3034 6367 1929 1872 1502 1062 3001 3067 2866 9455 9361 8151 4363 2052 2850 1187 8229 4583 7038 5853 4053 1681 5302 7495 9964 7254 521 2061 2383 1970 266 8335 3982 131 4849 4663 5338 7113 7520 7237 7885 8902 4448 8927 7614 5704 1333 6562 5361 9790 5750 5661 7722 5728 6921 5709 2380 7546 5022 9523 1589 754 163 5952 6033 6362 3559 4926 5408 4920 2471 3688 1125 9365 6464 9968 7636 5908 868 3443 6481 5453 6636 5396 2766 8121 3829 6503 3541 1642 5828 985 2760 6625 8452 4540 3192 7917 8527 9568 4191 5647 3553 5664 7767 9068 6858 8845 1014 956 8222 6314 8934 7972 185 8096 2221 143 5555 4403 7161 8866 8023 9265 1549 5468 2221 6064 4888 7108 9741 9298 8358 7126 5888 2002 8596 3638 9850 5244 3098 7019 390 309 7473 8186 1063 9850 3529 4875 4702 3462 6948 5478 4578 6766 766 6241 6937 563 7651 6292 8891 7822 8652 733 4261 723 7684 1540 1874 7999 2362 5722 7659 9264 4397 4317 5708 680 5249 4527 740 5479 3925 326 983 6262 8985 7401 8676 8817 5142 7229 299 8334 3689 7726 8047 4893 6689 7199 4084 1843 6123 5153 4828 9314 1777 466 3494 5330 6758 2009 1631 5158 2149 9544 9039 8619 7633 9864 3610 533 3377 5695 94 4555 1550 2989 6694 4101 6935 2587 2436 6706 5909 7341 505 797 6957 4054 7421 1525 1184 7790 8246 5620 7922 8191 3374 900 7643 4515 127 6762 2404 8796 204 245 3107 8490 7268 431 6508 4244 4674 4471 5792 1857 3289 7395 2137 838 665 2189 983 9279 1014 308 6703 1358 6586 7785 6025 7990 9080 9489 4510 4074 7765 2883 8457 2283 5482 8654 9288 5544 2595 9845 5218 3919 9710 3771 8126 7601 3055 7224 5254 3000 6660 7556 2233 3297 4537 2806 6796 671 2510 3332 5404 4547 6599 163 2082 508 6648 7264 1173 3442 6051 5742 5970 6920 6386 9309 2809 4868 1273 5549 9884 8227 2669 1607 7495 196 8601 4046 7754 1920 7557 3104 5545 5022 6706 4191 5037 1522 1158 202 9561 3756 3893 9430 9424 3837 1885 4713 9526 668 8828 8654 6573 8605 7017 392 5403 7888 5788 307 9672 2085 7172 3005 8237 3381 7851 928 9921 9594 3483 4648 3802 9011 6653 8546 7206 3111 8433 2276 6723 7461 7474 6406 6242 5485 4757 1031 1769 6572 2081 1723 3870 752 7576 6378 9764 6751 6855 676 1114 9243 136 8170 5395 3331 6560 1516 2143 1505 2057 1064 8406 7754 1621 2110 2422 2835 4281 6978 5191 9694 4924 1098 6271 2420 1158 8085 6938 5340 3325 826 1312 4236 8223 7726 7193 5903 2246 6680 7022 2970 1391 4107 3568 7722 4206 5194 9331 7854 9806 4314 8880 1696 5456 1329 2250 4337 225 5723 975 3334 3229 5082 7843 9147 2429 858 726 6554 7800 7010 9114 3560 2458 3491 9749 1048 1642 7020 4229 5658 2696 6732 5968 3331 2681 5065 1855 5678 1784 5685 4573 9673 7174 1469 7999 5929 6039 9632 9627 8614 751 3822 952 3881 8928 9276 8311 2573 1912 787 3472 9029 9784 2469 4663 1122 1151 8069 7559 9794 2207 3832 5198 275 1327 1615 2080 2574 3914 4870 2542 2109 8747 6767 8998 5718 5876 7812 8863 4166 5624 1018 4811 8287 6711 396 9901 8626 8021 2939 2730 3040 5397 3986 924 9982 5354 2587 4890 851 2827 74 8714 2848 9517 6717 3954 8060 1304 7031 4513 4052 5547 982 5556 4055 6154 6906 5635 3242 1362 7574 7173 7455 4410 639 368 6461 4107 1799 9573 5020 5717 5390 269 3679 8426 2277 1875 2569 3454 8239 3000 362 2567 4057 5439 4675 5047 8609 3485 5103 3423 2856 8929 5590 5341 8093 8795 1918 5060 9113 6779 9730 7806 9903 5845 5176 9840 5210 7701 8977 831 9256 8370 4496 6313 2972 \n3476\n3487 2446 498 643 3693 4289 4291 9468 5571 214 5552 2989 6049 1404 3969 8434 6369 8656 7210 9739 1561 480 4016 9384 3052 8763 3223 7402 7493 2732 3897 9694 7891 5396 4696 9858 4431 5812 3234 1372 5020 5011 6552 2739 2782 4171 4687 8433 8610 7571 398 7378 7699 5968 2252 6327 1019 7048 8345 7106 5974 5426 9759 89 4958 9327 4883 4376 1828 5489 4332 1404 9703 3353 9590 5613 811 4679 7572 7578 5428 8873 4974 9177 265 8023 6703 989 4420 7690 6080 9076 8910 205 999 3243 3885 2257 3692 114 8914 1182 7312 2681 8526 3699 7251 4617 9479 511 6200 7326 5803 4695 8957 1594 7006 2304 7355 4521 2746 4440 5496 6840 7813 989 1448 7749 826 6346 6691 8737 1373 7021 2753 1704 560 8870 5110 6939 8256 4218 556 6650 5393 2781 1747 8801 5031 9816 6924 1511 9666 6279 6047 8077 8189 1823 4091 1872 6378 5262 8453 3024 6854 6953 6441 7908 9980 2788 6526 9484 3260 4042 5395 4250 5222 9273 6006 1694 8302 8447 3364 8186 5620 5106 6453 9932 3823 312 7362 7843 6920 1448 4864 9514 1571 704 4824 6188 9270 1501 5956 9526 1097 3929 4029 4069 2780 2340 7651 1214 4161 3037 7739 8355 2990 9971 3998 8329 6976 3873 7092 3896 9582 3177 406 9939 7472 8852 8290 675 5765 7549 6601 2949 6879 8713 6425 5664 2110 4522 9221 1778 1919 5241 6764 233 6408 8443 1349 4594 2166 4913 9755 5633 7580 280 1999 7679 5785 5545 7003 3290 2515 2872 4181 181 7581 2697 8372 2583 9320 4142 5951 606 2438 6381 1744 2194 282 2341 4724 1603 4284 7766 1046 5888 6403 3972 8908 7105 1793 3875 537 4596 7712 6984 6660 1945 8947 7582 7623 4698 9549 7212 4789 931 8643 1297 5284 4394 2766 9495 6462 831 3332 3115 8076 369 6264 8631 6991 392 2004 8015 9953 9815 2885 2022 2271 2338 6335 4632 2011 3672 6783 3692 2007 6525 7865 3656 6216 3052 4153 2825 6759 8244 8529 3920 1838 8248 4466 44 6398 4228 5823 1538 5527 4344 4549 6363 1866 9002 3790 7327 932 2544 5180 379 6619 4110 6844 7739 9876 1261 3344 4573 7879 2263 4302 6672 8507 9343 6744 8914 1279 4974 1365 3124 2398 4536 6949 5829 3512 7761 3961 6154 9346 9009 7561 7496 4851 10 2662 6757 4796 6944 4031 4462 5923 6525 4977 8794 7355 3608 2607 5147 7766 6577 9028 3680 5683 3681 9530 2242 6302 3502 8807 7889 70 233 9676 2025 5452 7100 8675 5120 4555 6727 1896 949 8824 2074 2403 5223 3881 7085 5648 2121 6273 3402 9902 7169 7746 1512 6220 1105 1013 597 7585 4570 1033 7345 1115 3577 4363 5512 7220 4136 8913 9138 1764 5175 6605 3527 7029 5757 1209 9901 8591 3053 2423 8132 5965 3433 1565 8328 3777 6274 2985 2060 4631 9530 3639 3280 5396 9411 3480 6891 5735 7120 3516 5961 8554 506 7635 1226 8953 9024 7696 9584 9849 8604 1838 5194 7450 9593 3071 3245 6546 7566 1833 6144 8311 5637 7554 9849 2120 3885 1907 4346 4194 9635 8244 9346 713 2027 8218 2070 8480 9640 9357 4721 1131 6984 6777 8783 1998 1709 9592 8056 5472 7357 6449 8439 9621 3533 6083 2802 9959 2235 4451 8964 5874 7036 5239 3349 9806 95 5032 2266 6869 9617 3498 5187 4068 4089 9872 1411 3033 2084 6352 7378 33 5222 2430 640 3065 7008 3063 6197 7892 2763 2922 5953 3578 3503 752 6209 4056 692 5782 3457 9179 9256 1315 7514 903 4248 879 9531 8644 7833 9407 8814 6030 1609 9802 5650 3032 5688 5056 8347 7846 9939 3434 1509 4547 6595 7337 3539 1777 8082 9098 7013 9470 9237 8075 1515 163 4602 7965 9650 362 9981 8117 4900 407 8382 4471 2251 4579 3627 4395 9617 9561 4832 4572 4635 292 8564 7585 8068 5188 6549 1620 4345 1747 9064 1174 8466 1110 7388 4016 3413 1855 6703 4557 5601 648 6944 3283 2294 1676 8366 2767 1493 3661 6874 5764 1082 1107 1695 5283 881 1050 3722 4817 5383 9764 8356 3960 2491 2265 8297 34 3382 3921 7958 856 2813 9502 167 2025 2467 8412 421 7670 7134 1345 5363 4046 5704 8806 8169 9237 6160 1934 5036 3433 5150 9646 8862 8289 5021 6450 4600 3515 9690 3857 4897 6059 8230 982 2826 9483 9365 6358 5345 8437 6585 2601 7280 8406 5923 6189 9002 1866 6684 8723 7517 1754 5126 2557 6962 6567 886 4281 9315 6641 7920 6904 9639 9940 669 6396 5924 1940 3868 2735 5792 2440 5038 241 2106 3226 9343 9148 4226 2867 1703 8497 7135 1558 2777 7114 7372 9327 9665 8334 7297 4393 3045 9332 355 9385 8163 8861 5542 9827 4090 8125 6338 587 3228 422 7925 6350 316 3793 9674 1880 229 4562 3260 2400 8787 7000 487 7646 5310 185 3013 5587 7712 2876 2115 2705 3512 1718 4476 362 2459 286 1626 3199 8054 781 5281 8620 9278 4066 6979 3248 5940 8972 1209 1979 8785 2729 6117 3553 8978 4815 9418 2143 6465 9945 415 3016 3551 7449 1171 172 9528 1306 9193 3007 6307 7465 8073 2519 2294 928 6953 8589 9574 2362 491 4423 2982 6722 4044 3926 8659 157 4177 10000 5709 9272 629 4430 7684 8919 7272 814 1089 6384 3336 8924 439 9161 724 3641 6952 486 4661 5612 7756 1513 9621 7650 2212 6934 1819 5735 6912 9541 7078 2886 1732 2080 5174 7649 3812 6932 1618 1538 3479 3756 6829 1347 2211 1238 6011 2802 8712 2326 7915 209 281 1379 6643 6240 8383 4627 6644 1514 4554 4080 9885 5644 3596 8860 7507 384 3347 8710 717 1921 6257 9294 8116 4691 5523 2097 8460 4347 175 6837 1901 7120 1516 4883 7211 6843 3782 933 3595 2955 4787 603 2843 1440 6327 4950 301 3900 4171 5001 6645 7837 2531 8182 463 6888 856 1309 5549 3086 9580 5157 4193 2246 9784 5979 6947 3578 9637 7146 6081 6006 5435 7257 3748 8424 2568 3509 6365 7378 79 2159 4038 1882 2295 1130 7323 5138 8152 3737 6136 8142 9863 4749 6796 680 6495 3001 6708 5806 9133 4573 2393 2975 6348 553 3944 7931 1023 3453 3376 1352 6884 9634 2759 5366 8669 4442 9434 546 9364 5515 7974 7390 8839 7542 6125 7846 4415 5003 5326 4912 1126 2009 9278 6679 7220 8499 6498 9250 7159 2561 6795 3740 9594 9025 2748 9580 5798 4751 255 7252 1743 567 4056 6145 3903 7223 2485 5831 7809 6103 2561 9475 1395 4183 9151 7465 2406 7818 1495 872 7891 9485 1663 566 3701 6455 8176 394 7241 5241 8398 7723 2148 641 8272 7116 1491 1924 734 5504 7029 9359 305 7349 3025 2762 1204 3891 9674 2654 1143 8219 6786 1922 3447 3140 5397 1480 1703 1413 2505 1225 8632 9441 6802 9494 3735 5238 5685 5287 6167 4593 6263 853 7197 8907 6116 9210 6802 1352 5415 3581 9444 9214 6643 1639 6494 757 792 5390 6354 8314 5839 3810 551 7968 8490 728 2247 6331 3734 9497 9759 5458 4079 566 4094 9493 7345 3281 8048 1660 648 6749 3599 3054 9476 181 711 4690 4196 7146 4806 1818 1242 8232 7139 502 6465 2833 5126 3644 2725 9398 8168 7598 3824 8819 4328 8371 2738 6163 3780 7232 1816 1606 1859 3425 1249 4957 1793 4022 3950 9847 413 6013 3264 709 7726 2065 5992 5674 5595 1558 9339 5167 4439 1963 2871 5706 2371 194 8328 3821 5445 6437 1944 9896 744 9558 9859 9488 6268 8129 9286 5154 4824 113 8017 7641 4365 3426 3808 9181 7371 977 6010 8506 6869 986 747 6151 5942 3552 4689 5557 3652 7670 3907 9535 9760 6720 5561 1063 4234 9965 8220 6452 5233 7838 9226 5325 6270 110 2123 4789 9796 8899 3533 3144 6338 5971 7580 4095 4919 3643 9360 6422 7207 2982 6888 5480 8935 7590 3273 7095 3202 2770 8833 4229 9341 3957 8757 4205 3390 1806 4817 5990 1957 6820 3941 5059 9809 7088 4981 7126 130 2467 1553 1708 3371 2092 4126 4365 3122 933 8342 3934 2248 8760 2350 1787 566 5892 8829 8945 4244 2504 3537 7728 9681 4994 3714 3251 8598 5080 2721 8210 7668 6251 1333 3809 9309 8688 8276 2577 4162 954 8661 7524 6688 5656 9335 3293 9911 410 8484 1066 9979 1161 7727 2655 3910 7348 3164 4968 1651 2998 9626 2368 8990 6471 9130 468 3089 7162 762 2873 1313 7268 5405 3190 4232 629 9606 5557 5735 2973 7330 7844 8339 6143 5156 6590 1142 6978 7950 5565 2627 4880 6607 4577 4377 3245 7330 1006 925 319 3177 2417 3206 1314 6711 6213 8860 8180 9116 2784 5488 5518 6916 4992 8062 9118 9366 6308 2954 9460 5831 8288 2080 845 663 2135 1217 6696 1502 6034 5127 7129 6517 3672 7009 2017 1171 8949 8371 7216 1131 859 8267 3288 5711 3886 3975 2713 6584 1016 2139 6895 7480 5820 2134 3185 5087 8011 4165 6557 8134 5251 337 6884 4982 9242 7573 8468 7897 4982 8344 990 2745 8700 3327 6648 8492 6713 1798 9862 9788 9226 6419 905 834 3846 847 6331 9785 4400 7754 4263 4642 2226 9665 9554 2957 5069 4174 5408 3195 5849 3757 3982 8364 8622 2964 7060 8591 4585 7740 2355 8095 224 9965 3658 5732 3226 6029 4390 8875 4355 4905 2309 9142 7741 6161 4251 9619 2856 4623 1854 3857 3824 146 6323 7022 724 1535 3205 7169 1835 9699 354 3517 6194 7610 6719 1820 1508 1033 6693 3329 7219 8303 8110 7192 3953 6632 6533 931 8754 9172 222 1839 3589 2489 8808 2491 5883 7230 4928 8231 2295 9326 9895 4561 1143 542 9755 3915 1256 6041 2481 6210 3849 8164 7075 5856 8671 4824 8351 4030 9449 3939 3695 9310 8352 835 2941 1383 2457 4395 2519 6339 3669 7653 8878 2257 2353 2272 4324 1798 8766 5389 9001 5063 6929 8445 560 932 7906 7621 2505 1703 2618 4431 6476 8342 6471 6356 5050 4356 3627 6529 1054 4591 1682 4825 6258 2838 4896 3776 8811 3439 606 7767 7271 3233 9225 321 539 1702 761 144 1147 3883 4111 7473 1697 5354 9890 1110 5784 7162 4425 5349 8876 5286 6169 6353 5853 9639 4916 266 3904 4898 7868 9037 1693 3421 6721 9848 4300 9876 8409 3218 8362 7023 3260 5886 5960 3349 6120 2700 5975 3497 2645 1972 7089 9109 6567 201 9429 4010 5293 546 8038 1481 3083 6379 1268 3031 8507 7204 3465 7284 9028 3747 1131 9013 545 1537 640 625 2451 651 4361 9171 3184 4845 6489 3431 8528 7820 9347 4205 7202 9853 3093 4827 621 8997 7123 4492 3926 7774 1320 8615 6046 9917 1647 5153 9014 4691 988 7956 5428 9804 1851 8065 3269 9173 7073 9547 2310 3803 5685 9215 1288 9255 7959 3738 6629 1957 6528 472 715 4113 8340 2858 1982 6936 3418 2505 7586 5509 7148 7333 4890 1024 8114 3309 969 9274 5922 2622 3808 3258 9922 742 5684 8733 8825 8769 4827 501 3396 6058 7267 3794 5590 2212 7769 7692 3127 866 643 4802 9874 8435 4145 9890 3642 7677 9769 4318 981 8111 4798 4360 3639 5676 675 7652 7260 3610 4117 2651 4951 9952 2864 1615 9525 4595 9194 6186 8230 740 1659 4114 4421 1330 1169 6968 1792 6092 917 2362 2800 899 3571 585 4417 8124 5055 8466 8089 3018 1090 907 4274 6348 7648 2715 2673 8665 263 7031 5550 7053 4037 639 7840 887 2097 1262 5339 5565 4490 704 1137 1376 4071 9899 9118 3629 2076 9323 8587 3571 309 2344 9885 9382 9674 5959 3822 6709 7343 6475 2169 910 8741 4821 8694 8012 4042 4603 1802 7082 7203 357 8837 1540 8463 5390 790 8227 3258 7352 8230 1827 4763 3462 3014 3254 3037 4205 5145 403 7136 1511 5123 8852 7894 460 2020 6167 8464 9617 1058 1005 7126 3735 2048 6566 8734 6561 4366 6362 1884 218 7529 3787 2777 9777 4295 4357 831 6962 2187 7080 8781 2183 3468 2282 3363 212 8235 1000 203 1803 1845 48 6598 5417 7330 5279 952 5825 9710 8676 7146 504 9363 940 8545 777 5506 4198 1528 1459 9733 566 5313 2504 7374 1810 8564 8401 5900 6012 4215 2717 5233 6534 1889 7805 2222 8306 6676 1003 6101 811 6311 4539 6549 4718 6368 6432 4893 2463 6538 7561 655 9219 2492 3836 4856 3104 2959 8631 4571 8895 3157 8763 9169 7223 634 1517 3595 3409 3541 4284 9042 1972 9554 4503 1654 3344 2563 1871 2413 7516 6775 8627 7222 3726 8541 6247 3962 4480 3746 2203 6507 3681 8077 193 2683 3943 1353 2476 6113 8030 8480 6873 3251 6315 1394 5509 7441 5592 4054 3498 367 9433 2567 220 182 8998 7446 5196 7357 7918 4283 1364 2013 8234 5200 683 9332 9234 3279 6053 8274 662 8369 9962 367 492 8328 8149 3304 9985 2032 2330 3416 5740 6967 7397 9930 9608 4698 6211 547 3647 6968 3105 7246 7682 8389 9858 2218 1805 3391 8606 3483 6575 4318 5123 8325 7452 2239 6190 3770 4236 3071 4442 3789 5156 3450 8543 8610 8408 2707 1932 5709 2830 5182 7297 7560 2223 67 9155 6549 154 8653 867 7588 3551 489 9143 5395 7858 8863 329 1902 8698 2914 9228 3747 7825 9945 9015 6484 6651 1849 2624 7821 1072 5405 881 2412 2415 4823 8310 46 7076 2621 1769 4973 7970 9026 7194 5431 6759 4370 3491 6396 5477 9876 277 6360 5712 8426 5299 2291 8329 8207 7925 7491 9475 9656 4735 638 1269 2097 3067 6996 8346 1897 4653 4256 6470 3435 336 6093 1996 8425 237 527 3719 211 733 6028 9301 5164 191 4577 1200 4874 6952 6408 5104 951 7861 3761 7042 623 1463 9514 9768 5567 4287 9716 6222 5451 6552 1973 9970 5000 2702 4349 8676 5390 1718 4994 7408 8154 7275 1668 2385 1474 5701 9885 1291 6381 4905 302 3803 695 4843 6162 9622 6100 8158 3806 6115 6140 3985 7078 9035 721 4594 3302 3278 949 9144 1048 3006 5744 373 226 2900 2231 608 3580 4262 6909 512 529 5952 9234 6028 6738 1912 9170 91 9965 6656 6985 6871 79 2635 3086 7656 3100 174 2473 541 9875 1631 3746 4701 4571 9817 1467 3831 8924 1271 7277 5507 2859 6064 5787 6041 6967 5186 7068 576 4786 3366 9740 8549 5892 1951 7679 3836 8925 2960 3590 3609 2843 1791 2556 5386 2747 3351 8318 3306 7254 1444 9837 9707 5899 5602 3539 2262 3474 9830 7666 9769 7649 8463 6527 3517 4052 3716 2798 8755 8584 601 5639 2212 5770 4291 2863 4835 6129 2322 178 3248 1051 6626 7707 9551 815 7346 5812 3337 5672 9607 3160 2136 1804 8907 1179 9260 5425 3180 9554 3976 1883 7725 5127 7173 3046 6157 4020 8956 5465 3951 9564 1656 5088 524 2337 6729 5651 8379 3602 2175 5831 3864 8245 951 6617 3939 6105 7333 1218 5224 1003 5063 5919 4350 3482 6861 101 2643 5573 1876 6733 8364 744 3969 7161 8004 2429 7179 1481 3700 3278 5156 9299 1498 9737 2295 3301 9133 6342 7367 32 5201 5329 1429 1906 3920 2002 6871 2972 2128 4072 3284 1498 2086 5403 1032 3173 4508 5349 5639 6577 9413 7707 6320 3622 6779 7984 2739 2119 3544 5865 8944 388 9782 1740 5757 7584 8621 5986 8680 2447 5546 6675 2880 7675 265 643 2727 901 5875 6878 7027 3437 8433 5866 24 3637 3827 1553 1917 7558 1884 8883 1994 6231 3843 4879 3018 7529 7490 2761 8617 1439 1462 7525 2692 1696 5621 3550 5243 1253 8145 2350 4360 6483 3512 5039 3696 4875 2452 7357 4242 5692 1420 7674 2259 180 8947 5255 9698 2816 4172 5415 2018 9802 8787 4408 8560 2304 7314 2465 7581 807 8601 171 8369 8155 5434 9151 4945 9010 8448 9955 6000 3083 4084 5271 7454 493 1774 3094 2443 9864 3085 7583 4305 6417 586 6605 5778 2687 4611 6971 4358 7007 9461 3624 8174 3064 3194 8007 9857 4488 475 1695 1360 4739 9603 6871 5410 5252 2991 9618 5035 1898 6438 8272 6549 7876 4830 6820 8293 8815 3221 4363 4617 8373 6137 2900 1262 2447 3829 2792 6946 8164 2238 9601 933 8021 5222 5769 7324 5002 983 618 8225 698 5965 1265 4055 801 6185 6306 4842 7692 9595 3348 1897 2688 5039 987 5014 3754 3052 1566 4781 7665 8442 4566 9496 5808 6806 7894 5704 9407 245 3265 5882 7780 6189 1028 6519 5491 3103 3726 8814 2705 4397 9492 5568 1297 5949 9850 8098 4211 336 8835 1461 1460 6434 6027 235 2191 1547 4131 58 9750 6309 3174 8006 4909 9403 9008 9103 6246 7939 2263 5302 6899 2189 3898 1065 5723 9891 7831 6804 9899 759 5480 3880 3223 3990 6033 1989 5273 8744 116 3024 9958 9592 2452 8796 3267 702 4386 8555 7431 905 2447 5874 3937 9592 3338 3880 1017 6616 538 3211 1788 8072 3901 3755 8828 8666 7503 3618 9209 1154 3587 8577 3402 7208 279 8966 199 496 7282 5008 2993 4277 8078 1011 5580 1864 6314 4625 6279 354 5136 2497 3393 9110 1793 3757 9610 768 527 7444 3989 503 1412 2476 7489 9389 3238 6463 6680 7387 4998 1166 8612 6612 9632 9226 9371 1733 6272 8467 9241 3319 6047 277 8523 1202 6 5108 2683 4876 6930 2182 1062 4260 8827 8779 6188 2025 6521 6339 152 3817 7666 4548 5697 1414 7709 1623 9511 1388 7601 684 264 3400 8162 7130 6330 1334 5629 124 323 6884 2963 4572 2397 806 5572 3231 2714 8610 7608 6378 1747 8743 2975 6026 5375 2892 5247 8022 2697 7465 5624 6145 7160 8935 4069 589 9987 4923 7499 3427 5576 6581 2794 383 7809 3884 4958 9945 5416 3320 1290 5679 6698 4455 406 5263 9154 6747 6863 669 9892 4591 4124 8704 8269 8638 5184 4382 8659 2121 396 4906 3507 5201 4351 1572 4665 700 4775 8634 4824 778 4952 9490 19 3707 2037 1348 8577 627 5062 5323 560 3031 7496 23 9854 6263 1988 660 488 5498 135 1223 9918 4075 2313 3356 294 4512 4499 7260 8260 9141 7376 5544 6748 8621 2492 6880 4402 5921 4515 8250 2244 3286 721 2635 865 4738 1822 7715 4684 4718 5535 8325 8559 7777 952 4068 8178 3817 6496 8667 811 403 3894 2503 30 2628 5142 9899 1629 313 3464 5147 2582 5938 5540 7480 2255 2281 1081 1581 7419 9254 1442 3497 4504 257 5262 3716 5287 7850 8917 8940 246 9880 3728 4351 4551 439 1638 3274 1303 4788 3401 2806 2046 3645 7550 756 4301 3612 8976 1692 3095 3975 8017 8999 5091 3435 5303 7424 4341 6302 9179 8825 4560 8675 4326 5762 8164 3264 138 5249 6108 1383 5959 2080 9774 1772 2716 2762 3628 4714 5910 2885 1289 2029 6542 6549 3654 4843 4793 5725 7615 6620 45 2644 9227 3804 205 1190 4036 3226 519 2155 7353 9876 4448 233 1178 2511 3087 4942 4705 4884 184 7654 8931 4483 4775 5730 2955 1619 7637 8917 493 9542 4773 3002 1756 1693 4942 7173 2229 8613 7752 5652 8422 4607 2210 7411 2430 2338 9726 4827 4166 6220 4772 6560 6252 639 3700 9498 4900 1474 1554 7600 9650 2913 4659 146 3248 4654 7865 4064 2363 3267 6201 3636 3152 949 1017 2139 1770 1008 4317 8946 5235 5687 1631 8405 9889 7227 9666 1754 6090 6501 9629 2461 2201 3939 3976 7184 1503 6260 4975 1307 6792 1057 8893 6517 6337 720 5727 8956 742 8551 3533 4136 3996 3275 6423 9806 4659 3627 5176 7204 1716 4996 5772 5561 6487 1386 8375 6835 7300 3656 3976 4596 8457 9634 9906 7114 5337 8231 8776 52 8977 3457 4958 9148 1929 7862 5651 8174 2248 4003 3979 277 6729 9505 6768 4963 7392 4072 2887 3252 703 5995 9376 6243 9135 635 5687 2128 7213 9810 8646 2763 1962 4190 5424 6169 7133 3589 6317 8844 8868 7833 7865 6239 9018 2626 9086 8001 593 4412 7707 3801 584 3002 9876 2594 2913 1047 6961 6711 4852 5931 351 1663 1919 8814 5964 6551 6295 5911 8625 1787 6533 5676 1976 9226 8817 9816 6232 4279 86 1026 5279 5456 2547 5889 7110 2734 6647 2953 664 9473 8216 6135 6122 4564 6238 3312 1119 8981 9358 8247 7973 7979 4406 6398 7128 8436 2901 9879 9842 1146 8923 124 7542 8326 884 8306 2219 7892 2836 1642 \n4616\n5161 5486 3742 5179 1212 7643 3331 5955 3481 4667 2214 7066 6480 6364 2857 6186 9890 5087 7828 502 3554 4823 5109 2559 906 6545 5042 2793 4293 6007 2980 642 9264 2006 6510 8341 5190 1115 1827 5923 8689 3908 4644 107 3716 8601 4835 1312 1263 5864 4367 2090 1643 7607 404 3964 3202 1917 3893 6746 1647 4089 4123 3796 7444 4192 3805 9136 5579 7600 3333 5682 2605 4995 5455 5634 4894 4720 4599 1834 7158 10 4728 5154 4417 7181 201 4631 9278 3291 4218 4381 4952 3171 851 6743 7596 6997 408 9106 1240 8336 7036 5735 9411 1356 7037 1855 1982 3965 2146 5710 52 4679 8644 2496 5557 2731 8418 7974 5788 8534 186 4165 5162 283 5615 7970 8120 8460 254 8957 4591 8705 8766 4028 9146 7034 517 5458 911 7125 252 1850 8012 2384 7569 5409 2932 8011 7972 4264 4897 7912 3043 2451 5979 3277 2577 8739 3332 6738 594 5825 326 9577 9384 8001 354 5465 8796 2044 8107 6584 2386 4878 1389 9036 3086 3459 8903 7494 5699 2730 1055 6424 9567 1560 1280 7876 4664 7175 8838 3651 6530 8584 1827 2452 3980 1111 5907 982 7585 8082 312 2758 5067 4461 4859 5876 601 5911 7399 6021 6018 7378 1278 4743 5810 7498 1981 8921 2089 5393 297 6053 2994 4171 5436 1582 80 9030 8461 8193 9403 3210 9493 9733 6792 3031 5578 8095 8246 1254 2461 8348 8056 3360 1045 2857 7141 4552 4633 9556 2104 7529 9599 4284 3574 2150 8911 3575 7302 3216 5884 457 7949 2278 5464 6696 5963 2357 1963 5489 1472 6682 8722 4914 4822 9868 3441 6023 4449 3347 7601 7119 6975 7000 1940 8862 5536 4428 736 8172 6041 3960 7628 9219 6202 9527 4973 2814 4849 33 5053 901 608 8023 3543 3063 6244 1073 611 3225 9127 4863 5776 1492 1180 3528 9321 1639 6655 9002 7919 4654 4033 5692 3083 2360 6588 4611 6780 7456 2378 7791 1711 8877 2771 769 6333 5114 8209 6744 9547 8646 6051 2771 4643 327 2586 9473 1542 7607 8631 2226 6224 5784 4188 1171 9099 6909 1937 242 3206 8662 6601 7767 5979 8165 2281 3489 7272 6418 758 5890 7825 3523 9068 8622 3651 5886 4880 1207 5677 3938 2891 1632 1596 182 2274 9286 1976 8070 3952 9310 556 774 1416 466 9122 7501 630 9254 159 5988 206 7380 9225 5860 2808 5865 5110 6955 2411 1862 539 4348 7189 1101 9988 4010 1556 6552 2661 5570 7099 2790 3014 4213 9690 2813 613 530 6609 6148 2641 9851 5721 6011 6032 903 4871 1008 2842 351 2423 3420 2090 4312 4799 2479 1062 4324 4080 3156 4771 3453 121 3615 7517 5038 4728 658 2682 9387 9581 1315 7150 4791 2858 5004 3452 532 8953 1131 7112 9354 4307 7210 326 7808 2036 8237 4251 3897 2659 3597 8070 574 5571 8623 5756 5057 9207 3257 4821 6002 2980 1546 1615 9386 2358 4834 8230 369 768 3611 4780 828 4481 5955 8264 7701 2058 3158 6248 6178 8566 6754 1905 3208 817 5628 4168 805 5721 2580 318 5132 2553 639 6958 3646 8464 3971 1331 8302 7784 9685 5358 6342 1585 4914 6186 4262 8849 483 3752 6513 8194 4762 1476 3605 3666 4977 6647 3006 490 6525 1342 1969 2178 754 5513 3004 316 8145 5834 5192 1228 7224 6518 5988 9968 7866 5254 2215 3902 3880 8130 6674 5040 6151 8923 4611 4776 9269 2771 6678 8526 6432 6136 9174 333 9149 5545 9496 7082 4296 4230 3495 5690 9380 5779 6276 4398 6683 2662 5299 2358 2788 9476 7061 474 1321 2097 8260 9147 9973 8062 6861 8484 5700 8405 8077 401 5868 2750 8693 1765 157 8391 9763 2098 4793 3601 4800 154 5843 4641 9107 8650 6858 3220 4728 8856 4139 3941 6946 7582 8317 4583 8019 3265 3632 6726 6524 945 4102 8064 4344 7413 9861 4764 6154 231 1558 3222 4049 256 9152 2586 7362 8969 2039 3617 552 9793 9263 520 481 9972 7771 8336 1063 6512 4772 3389 7652 7546 1611 7557 6354 1251 9067 6127 5013 5155 3722 8997 4857 4080 7787 2532 5711 3224 5854 7839 2355 6021 6619 5214 8503 9117 4758 1317 4050 7572 4161 7495 572 6525 7144 2823 8080 2667 6233 7612 9633 7188 7187 2996 6503 8986 4242 6736 3088 2514 9490 2248 3962 4200 9280 9142 6982 4994 1616 54 8913 1585 6580 6602 4051 7970 6622 1918 5704 8953 4720 2449 6222 95 8767 3106 5189 3576 8828 4180 9508 6294 7043 7795 4072 8057 3267 3339 9215 7028 3041 5826 7746 1735 5648 2511 2695 6142 1182 3330 3574 1935 9090 3378 2312 2593 2908 4438 8460 6767 1407 4495 2834 5158 7362 992 1150 1443 5048 5490 5902 3102 6475 2978 8027 9936 1265 8611 1093 1881 2297 6066 7432 6951 1492 3164 4242 4164 7912 9140 2259 296 7144 7280 3345 452 1627 6467 6634 7876 7998 1928 1237 9537 5731 9289 8137 8522 7363 8251 4413 5110 6807 4745 5441 2639 7221 9338 2005 2029 9383 4101 1589 9451 992 3750 5672 6266 1475 1791 9357 9817 1805 6568 269 4519 340 3451 1335 3110 8468 4640 4571 8803 6554 5376 8729 4893 5106 7991 3595 7702 6162 3012 1363 2130 7383 2097 9143 3701 4159 2497 4302 4245 604 7818 842 8049 7568 332 7541 1829 9112 234 7102 5409 9140 4671 1069 8232 7623 2802 620 4046 359 7637 2474 8842 5559 1467 6550 7813 4921 362 2165 6832 4497 4889 1666 8781 3172 1262 6036 8445 32 8713 9888 6881 4513 7907 3881 8053 1735 5293 8862 1506 9194 9843 4135 5873 166 3161 7638 3739 2211 5097 6279 5490 1572 8855 8015 6310 8250 6297 8225 8138 8521 3806 1805 8102 363 3548 1782 8237 2943 5218 3901 5221 2818 5218 8222 2057 9928 4709 5562 214 9456 4372 8320 3342 2983 459 4660 2098 2763 7720 1492 2731 1288 7434 8320 8179 760 8660 4432 8627 6800 7905 1038 3727 1246 6899 5316 4815 596 365 9380 8413 4922 4806 6433 7031 4090 8393 4547 7567 1288 3023 6635 1053 4659 2539 8108 6775 5508 9729 1508 5701 5682 6419 7346 2387 3742 9967 7772 2942 8869 4755 825 6218 545 1659 6995 9763 8151 9415 7443 9901 6793 1101 4239 3987 1443 7768 2551 936 9899 7653 7357 6665 820 703 4784 3539 6764 2494 2566 83 4297 2131 3092 1699 9732 323 1205 5273 2900 6212 9204 9675 6881 1579 8842 8331 17 5925 9938 5106 9609 2247 7777 4256 8942 6661 6922 5977 3481 4584 5437 5532 8635 8962 8209 4182 7815 1252 7937 1056 9443 6383 7026 3230 3169 452 6836 3354 5430 4612 5104 5518 8737 3638 276 8464 6624 8170 7505 9036 6925 638 2403 6033 4850 9267 4235 4443 621 2161 6174 7587 956 5651 2888 3141 8698 3391 5572 7232 1501 3456 6849 8772 4321 1715 337 6314 9420 9534 4182 6054 5365 752 647 9123 9841 6454 1195 5325 6709 6807 8745 4415 9163 3624 2075 7925 4314 3174 4704 5045 8867 4314 8739 6933 2561 8817 8276 5461 4755 7534 70 2286 2277 6053 8321 9243 7277 207 817 2652 3426 8077 1476 4800 6084 1022 5977 5249 8696 8601 4556 3729 7759 8713 3384 5805 3730 389 738 1555 4194 2607 1528 1331 1846 7708 9880 329 5658 9935 7813 7083 241 758 6714 8616 432 4057 6655 4709 6400 5103 3320 9551 7567 4357 4280 2515 1139 4198 5169 2534 9483 9386 4189 582 3687 5033 521 7685 8972 9474 6222 7782 3076 3230 2447 933 1469 725 4270 1987 9435 7402 386 6026 4180 7189 8638 367 76 2682 7973 1772 4105 1370 3222 6067 9993 9543 490 6389 9611 2497 663 7209 778 3176 3542 350 1873 740 726 4381 857 1745 4027 3687 9787 577 8226 822 813 4591 7237 3608 6617 2779 5849 7497 7449 3342 8915 1715 1230 4894 6599 2042 6177 905 9114 3684 1742 4350 7870 3096 3554 3011 8339 1121 3664 5345 4438 6918 7409 7990 8441 6663 5510 1473 7879 4669 3151 4878 8138 1724 9846 8931 1329 1412 2887 9178 1344 8228 4332 805 8145 2896 8456 1889 5798 620 3625 15 3009 97 2948 1288 4415 9985 5416 4687 8696 1359 4220 4554 3770 7455 7572 7376 3164 2591 2346 3254 900 8217 7190 7287 976 2306 798 4371 6732 3981 9818 1890 4208 5438 7478 7126 103 6910 357 9210 5267 7273 7733 7086 1374 2711 2842 9460 3372 9243 2968 8478 1705 2866 3974 6189 8154 5609 3869 2473 741 3397 1640 6910 6053 6697 8711 8411 9604 3146 781 3272 4280 5818 4877 2656 4957 8101 2014 9926 5677 7102 4358 4373 8395 9894 3813 6421 1159 2087 7600 1697 3331 5849 4723 9100 2774 2726 11 6087 6181 7978 9678 518 4707 5157 9720 8572 1924 7034 4170 7552 4864 893 1886 8673 5999 2106 3150 8685 293 6778 7464 1865 8293 9687 5684 3301 2575 9204 3749 5469 1186 3412 5035 797 425 4493 8927 9114 8489 5856 1252 201 4799 2103 5454 1381 9850 2028 4493 127 4079 3223 1772 8631 872 8878 7659 1491 970 4130 6702 1946 2513 5970 1199 5231 5062 1380 2407 6702 899 7646 3348 7682 4721 5514 2437 4271 5831 8575 197 9214 3753 64 1057 7833 7485 4059 7454 8177 9410 4286 9741 1791 2956 5158 430 8470 122 4628 3918 6089 9234 4412 68 9451 4988 9714 4969 709 7608 8354 6778 6095 2125 5273 9137 8055 3466 6646 5482 236 386 5530 5864 9534 5025 8525 2863 6898 5668 9929 9954 2447 4140 3782 5798 6504 1678 9598 2591 3642 8658 8234 6015 4509 4481 8584 8657 7411 4775 7014 8206 1269 4529 5543 5846 416 103 9160 4941 7128 3961 4276 3803 1049 6574 6044 3676 3196 2646 9587 4835 1243 8811 2373 2435 3829 7090 7932 9020 5490 5942 495 7416 2568 2472 6355 344 5524 2195 4165 1071 9053 1455 6940 2540 8963 7336 4724 5427 974 3460 3477 9858 5575 8906 5592 4539 1800 6337 3810 6611 2581 8250 3833 9391 2840 9591 594 6937 320 2822 5144 9502 2199 175 9926 8315 1735 8515 6349 3604 3370 7781 5015 2574 7339 3734 7122 9165 8600 3504 2372 340 539 6727 6825 2568 9561 1670 7428 4222 3908 1345 8459 7131 1264 4177 3912 4243 4865 1015 1520 8821 9670 7480 9212 7737 5929 6672 9265 3427 3692 9713 2642 3552 2436 1008 5736 2419 9144 6503 6970 630 6621 3323 1318 555 8658 8508 5772 1245 5824 8790 6119 9463 7706 8293 8368 4373 3065 3845 5280 643 4458 9138 2663 9828 8845 15 4085 2207 5599 7569 3023 6340 118 4986 801 2551 4932 5992 4666 3077 7774 5922 4187 543 4746 9328 5369 9492 4304 2239 7437 6546 6423 1443 871 2267 8 5306 3060 2768 933 5431 8922 321 1705 6469 2859 5491 349 3067 7671 353 1392 8316 9793 6539 9077 9296 3853 7095 439 6645 3069 7003 7293 6464 5312 6142 3662 3143 6998 820 2968 6209 4788 5652 5893 8392 4780 9205 7156 1263 7878 4210 6276 6862 9609 6760 459 8462 3376 6184 7994 9712 2348 4058 6851 3381 6840 4582 8828 693 5210 1040 2614 1164 7590 4304 7810 4697 1625 7833 4431 6077 4794 7157 1085 9412 6351 324 8610 6227 1824 819 5199 4800 6833 2224 2331 7520 2992 5580 3502 563 5157 808 1305 4824 632 2718 8225 7906 8666 4129 6683 8329 7462 1235 8264 7144 8462 3935 4873 8933 3286 9841 1999 8412 4801 2393 7441 9015 4653 9089 3343 9003 1603 5541 7465 3096 6484 1955 3387 3334 7188 8284 1520 3174 6334 7273 2671 980 3904 8920 4992 1808 2681 9363 9720 1735 5532 4061 727 5986 7708 7569 4177 3587 198 2848 129 2105 635 7247 2727 531 2948 6166 168 8113 826 2095 9265 4220 6389 6343 6545 5663 8905 6838 6642 2122 8158 5568 4251 6556 7371 1383 3327 5311 3859 9657 8504 207 5762 2992 8277 1741 72 3640 4053 6059 5665 3955 28 2232 3783 9056 99 5019 4290 5780 7680 9159 2129 7495 2583 5424 399 5544 9380 6985 159 1583 656 4816 5692 2270 2323 2517 9037 3139 5107 6765 2107 5516 8829 8140 4484 8338 4575 7489 5195 3081 6473 5327 1542 6093 3004 9811 7700 3845 7530 5078 2468 4217 9130 8703 6610 9801 1744 3724 3583 2 1933 4481 3156 4187 7181 38 7029 5903 8393 6400 4889 2270 4116 5961 8975 7006 1996 6461 9635 4442 7375 2913 9561 2582 4257 4628 5352 2884 8503 3092 7497 3461 3238 4185 3695 5315 5928 7331 8091 7854 9670 1443 8743 2410 2380 1568 8314 6086 9756 9184 7806 2406 1556 5521 6188 8946 696 5589 1221 2698 4200 1838 9453 1636 334 3613 9520 3706 9993 6040 9509 6553 5764 3548 2066 530 79 5612 7252 5895 562 6349 9778 1697 8795 1180 9560 977 1005 2582 5766 6312 5540 1667 4715 7732 8263 9389 3069 237 8775 359 3415 2467 7360 9337 478 4479 9619 2463 8893 4553 4932 6129 1324 7002 6666 1234 6345 3114 5593 4327 1531 3101 3632 2898 6792 8675 3404 9335 9643 8331 1561 1663 941 9841 5558 304 3168 8468 49 3950 7829 8200 7688 7309 464 2273 2003 2544 5306 1697 4129 6568 9476 9051 2206 830 4537 77 41 3054 8513 5847 8321 6109 8024 352 3439 2036 7542 521 8851 3069 1954 9369 4772 2880 1913 2730 476 1418 6111 5907 3086 3371 2717 2126 6753 2033 4516 3541 2463 6562 1256 2646 8431 6571 1849 6219 159 5599 1327 1647 1623 3399 2920 2761 5274 1975 4664 2028 4773 2615 8662 7117 8634 7178 6733 3611 8007 8219 8749 1587 1036 4889 7483 2428 1720 3673 3180 3892 1290 275 1511 2074 8847 2635 3208 3780 3593 9293 6346 7349 7441 3906 1380 2796 6454 7768 781 913 2743 22 7670 5329 9438 9059 4095 8096 2466 6880 2384 9397 1641 851 6384 8271 7844 3247 1433 1851 3972 930 788 8088 6829 933 8847 2197 4693 2696 3280 5586 3871 5529 8144 1593 2344 3595 5730 2850 4730 9850 9972 8791 5755 6872 8526 2824 564 7139 8822 5448 9908 5693 6897 9476 3177 59 6162 9169 1575 3768 331 1597 6973 3803 4196 636 7328 9868 1253 4075 7364 5027 7172 7889 1599 4035 3667 2713 2757 9489 1826 9661 3600 989 8874 8774 1209 5639 9554 7924 8223 1220 5616 6093 9461 8106 2884 7848 3120 3219 8005 8035 3657 1883 3499 9698 3440 7783 1546 158 9491 4763 2167 1609 6570 2547 3928 5152 376 3557 2475 1377 7299 8808 2426 4395 9751 5166 2848 1221 9112 400 7792 3529 2598 9297 1856 9589 9398 9479 7378 8223 7345 4050 2815 7604 2876 4780 9295 7155 33 5695 2789 6848 9765 1608 2449 7683 130 9293 4861 1946 847 2531 2141 1171 8867 7014 1223 1843 3327 4264 635 5123 6350 9087 9051 691 6912 4699 2935 4107 6992 3794 46 9232 7256 1480 5025 4963 1855 3609 4987 9004 2517 7382 7589 3374 1735 7443 6366 7993 9794 6875 7625 4214 1006 1723 3719 8066 3138 4174 4224 7823 4999 8202 1464 9710 2989 2921 5384 9268 7069 2470 947 266 5499 8744 2643 1100 2410 4718 7766 7242 1628 5567 486 6722 6577 8431 3413 3435 8911 3149 9251 807 1747 64 9839 7773 5193 4786 4088 3685 7099 5549 6671 5535 6395 4913 5490 4037 3983 2855 4825 8811 4169 4128 2332 8582 1528 649 5794 2558 7442 1246 5997 2579 4969 4353 7018 2570 5303 1254 3261 8858 9539 6029 575 2188 1988 8041 5965 1836 240 3195 2697 3261 6330 191 3733 1594 3886 7166 8688 1165 2841 6334 3339 6237 8584 1990 1577 446 3107 6616 9335 6987 1977 2499 9215 528 7414 5828 7567 4661 7128 8615 8762 3420 3797 8190 7155 3695 406 8652 8619 535 3166 7727 3718 9198 8 9084 8122 8163 734 2435 7651 2596 4098 7927 1230 9135 9364 601 851 2159 6664 1084 8821 1530 3657 3694 7495 3150 4396 3191 7119 5620 543 3318 3339 4468 6704 4262 3618 6667 3265 7365 2484 8113 2195 9031 4531 4405 1251 6767 7746 6469 2452 4933 400 429 9 888 9366 6530 8023 7254 9198 3056 6198 3211 9406 7756 2627 9622 5471 2342 3425 1787 2806 1227 2609 9464 5918 8697 1024 9634 1516 6420 9268 3245 4126 741 2025 9404 3868 5644 6499 5585 948 1117 5269 5553 2949 7884 4121 5203 3562 404 5893 2071 1065 1345 9051 4404 9354 5814 9521 1085 1259 5808 1029 3939 8920 106 6396 3719 9141 4113 9609 6050 6654 7141 9774 7266 3686 4266 3546 7503 2331 4584 7512 5842 5016 5142 9857 5625 9614 1482 5544 8494 9383 7662 1809 4523 1857 5649 7463 8862 1748 5391 2534 4735 1470 5747 5996 3336 1633 3292 7101 5244 6227 5222 450 184 2003 5606 3725 5977 729 9410 1853 8186 5240 1623 6119 8604 7252 4844 2070 2031 7432 1450 2036 2434 3179 6636 7240 3979 5993 5315 2619 8363 4560 9332 6661 415 692 4620 5206 7749 1876 5453 1625 7526 2591 292 1350 1872 5534 6741 5190 2164 208 1265 1518 7544 4485 8180 3950 3369 7617 2499 7602 7874 6422 1213 558 2789 1099 6893 6669 4593 1385 8663 8125 5630 2843 348 6609 5532 6919 1859 8417 4732 3996 9818 5917 2280 2723 3854 4937 734 2316 215 3606 9506 5371 6007 5981 8279 6311 6451 5968 7406 9847 181 8782 3726 3689 9929 4358 4280 9447 5125 6736 7997 1954 8422 8217 4953 4349 340 5218 6769 8225 242 6757 3615 5751 878 5131 5580 3716 1511 1112 3574 3470 5588 4036 6420 3723 4003 1628 7577 5901 8852 4673 2512 4673 4561 4506 6225 8592 6556 3171 944 1014 5435 4174 2158 3538 7901 5741 7769 6859 4709 6502 745 7480 4779 9570 7665 1761 324 8255 4918 2259 7814 7516 5776 5294 6019 1469 2166 2764 2786 9332 4422 2911 5572 1042 7548 445 8302 5600 5917 3565 8986 2078 8728 7904 576 8962 7977 3216 1473 5709 3984 8883 5618 3466 13 3134 3434 4811 2018 6064 5278 5730 4900 4157 7066 1731 5867 7390 7382 8020 3962 7081 6491 997 4328 4444 9069 5863 6204 261 2159 7170 3368 9406 5683 5880 1559 2761 3421 8502 4641 7695 3652 8325 816 849 7328 4005 1939 1666 1308 1481 7120 2561 1715 6022 6592 1792 4276 2343 3208 8412 5138 3804 5420 1495 9328 5818 2527 8130 1622 4732 7968 7299 6479 4687 8610 1873 5300 5946 7247 161 8373 5840 4596 6377 8612 5618 1671 7210 7538 4067 1788 5294 1652 1413 2569 7166 507 7772 928 1524 1897 8626 3567 5253 5093 3262 5677 9632 6265 7873 9735 1969 4422 6126 8452 7191 1773 877 850 7633 5383 5727 8068 8763 4955 3230 4480 8442 3250 3984 3296 4141 685 9875 6534 6795 5234 2562 2381 9345 7149 846 3617 63 2868 8746 4554 7677 7751 3127 9376 4712 6057 5975 9152 7370 1484 1474 7127 1570 278 8976 8555 7797 6927 9036 4440 6300 22 6603 8119 2447 9937 6331 6952 9539 3448 2449 4646 2933 2786 2493 3243 1051 9456 5066 2934 6978 7984 7584 5184 7119 2674 6316 7558 899 2148 4574 4513 4583 8597 77 9801 5654 7408 2098 5068 1182 862 9895 5502 854 8436 767 4472 7387 8590 5920 7979 1851 4387 499 5768 7523 2963 2595 2733 2973 8616 7495 3209 5537 4402 3105 9277 5875 7104 9841 5425 1321 7057 1307 779 5769 4453 2648 995 6955 5233 7557 4387 4912 189 7542 1757 7143 6797 2178 3051 7952 8153 4021 9852 6100 7141 8016 747 5716 8094 9047 310 4483 7697 8520 3991 335 5010 2145 6701 1609 9418 3028 2205 3758 8179 8127 7095 9642 6020 2864 7660 8159 6656 8245 1399 442 9883 9327 5641 8147 6285 948 4310 5606 5895 4904 1639 1291 1193 3703 4267 4151 3979 1909 8844 9928 4867 4538 3670 8569 1592 3604 493 906 5242 5882 7985 1334 2412 2425 1890 7499 2378 6057 7046 1728 8327 2990 2287 7752 6153 4465 7639 7643 6236 2909 910 1700 5802 7069 9914 7643 2403 6278 3583 4105 1869 6576 8833 6771 6040 8804 8739 6067 770 1613 2729 3375 4061 2816 8937 3336 7987 8178 3619 7558 5159 8970 2207 4622 572 8473 8045 3863 3737 7978 3173 8169 2153 9723 605 223 9479 1786 8717 257 2309 949 9906 3334 5609 1605 431 421 9237 9046 8286 3956 6523 6084 7846 3943 5943 8245 9529 7525 3075 3240 3426 5252 8538 9339 9956 32 6418 2122 8727 559 7646 9948 7279 7875 5711 182 3341 6144 6900 7519 6642 9961 8964 9514 9828 4589 838 8579 6523 4324 9820 2564 480 6177 581 5727 6889 8614 2813 3338 8496 7134 8940 7524 1098 5625 6086 5087 6338 9502 8152 6448 6283 7818 5530 9392 5754 6143 4028 6418 5622 6798 1595 9302 5795 5224 867 2685 7604 6822 5957 6103 534 9050 668 7888 9915 8392 7752 7680 4273 8251 5089 9073 4349 9131 6226 6131 580 7601 8394 5121 8397 2217 8371 88 7889 3454 5889 8578 6456 5717 458 5966 3816 9633 545 8300 7768 5977 9379 972 7803 7382 7399 3621 1193 3944 9772 608 8863 9893 8890 336 7149 8332 7654 488 7324 2395 4882 381 580 5068 8900 3721 4848 8034 58 4626 7536 7654 5725 406 427 33 1724 4826 295 5569 5472 5759 9243 4548 1391 4419 1879 6112 2676 877 8718 9948 9149 5667 6578 6346 5106 2748 9146 2851 4755 8063 7129 9890 5682 7543 5777 3953 854 7640 3956 2469 6836 6482 8139 5640 9058 5119 3452 6915 9550 8327 1669 8913 5273 8246 3270 572 8002 9543 3365 4266 9711 4460 3723 1925 9113 5374 4461 4354 9832 3170 3043 8700 2454 6176 9062 5336 8891 3588 5135 1816 1974 2757 1929 431 8208 9714 4754 377 8329 3395 2456 8809 1358 1809 4178 835 8206 1227 8194 8287 4980 1091 2802 7889 9530 2242 4742 2481 205 6843 4085 6760 7056 8061 54 5762 9775 5995 2775 3892 6296 3551 984 5315 2567 2125 9929 7827 1411 2837 7861 7657 6064 5395 1272 7922 9890 716 823 2027 5999 6131 4248 6264 2702 2512 9857 2653 3230 5474 7860 4759 2706 1241 1683 2297 9363 8649 1198 5499 6387 3685 2628 2520 7395 6936 8422 9979 6327 4461 272 620 8978 3891 6694 8055 2734 771 8642 7420 730 8894 7927 9865 2072 5713 5484 1264 4426 8590 5786 5012 537 2148 8621 9841 9083 9627 340 4589 2812 390 6876 7542 3402 8958 8379 408 3375 5645 9480 6219 957 7748 8710 1476 9208 7932 7416 8607 1533 4079 325 142 5038 7145 6318 1983 35 1250 571 5595 1419 2855 3600 9742 8123 7287 3528 5078 7062 9327 6964 97 9785 4070 7001 7839 4455 1468 2110 3397 2829 2854 5552 7397 2963 5070 2703 2270 9121 5583 3278 2918 7172 1426 191 4575 7872 9158 7664 1982 93 7761 4306 3387 5164 6061 2523 8605 554 1387 6964 2238 8587 9505 4002 8191 5202 7080 3282 3097 4747 3532 5796 6121 4858 4144 9445 7673 8609 6953 4573 8834 6282 3507 566 1534 4570 7340 8400 6583 762 9723 2170 9378 8612 3916 2823 6559 9055 1388 1871 9205 8622 607 3022 4738 5029 4584 8748 4839 5493 4684 8222 6517 176 7375 1957 5387 1265 867 7925 1913 9779 9352 7992 9335 2913 356 1315 2679 304 6583 7890 8177 1704 874 2116 5618 2064 6980 2472 8715 8172 1597 4190 6859 5730 3310 9917 7246 1678 8091 8474 8973 1238 4894 4222 5664 3608 2867 325 6156 2869 960 4033 9074 5114 609 3401 1326 2655 5842 5530 6529 3246 7169 1509 9703 9851 1751 4746 3428 2958 1585 4923 1454 1215 5367 8520 7217 1253 9810 4968 3000 4867 9482 1406 1584 9189 6639 2954 4358 7187 9491 4408 7739 5989 6171 1200 7628 5482 7410 1835 3588 8834 9373 2502 8031 6929 5450 6012 6147 8290 8878 567 9307 1223 1926 8842 2062 4220 7248 1071 8993 2203 5537 896 3941 690 6659 5687 9417 2876 7403 7715 9688 2498 46 749 733 932 6904 2537 3042 2591 2902 2505 9094 3818 7602 133 7556 116 4292 3185 8437 4077 1315 7307 6159 1969 8261 8444 3413 6236 8177 3358 1034 4568 9394 5995 5593 3462 9524 4707 8655 2525 3882 3267 7802 3686 8881 3243 6757 2999 2971 5664 3668 9801 36 529 9830 3452 1103 7581 421 7301 3065 8542 4734 9306 4953 6338 1337 7565 415 3560 3505 3195 9253 5409 2863 8834 4407 8362 4386 778 7199 3530 8447 1246 996 5989 5431 479 5954 4899 6349 1471 9435 1848 3227 2769 6451 4625 6155 7028 5409 7613 51 7946 6902 8663 4352 2827 7799 3566 933 2671 8304 4517 3105 6426 8723 9528 4467 5638 5403 3032 7527 7830 2340 150 3989 3920 2924 9393 7369 6265 7406 1950 3787 9791 9299 5830 9567 7583 7211 6489 1116 8634 7849 9942 4437 3995 256 9153 6100 4583 9423 8777 5039 7795 9599 1308 4036 332 8451 5033 1297 3671 3792 9519 440 9374 2542 3278 130 3439 6730 4192 8759 4742 2915 6815 6039 447 4820 529 4930 3444 9430 5552 7385 1256 5016 7971 7860 2397 965 659 5484 7317 9209 7516 1492 8479 249 510 1944 5823 9524 7618 3833 7318 7902 743 3722 4766 334 831 3420 8743 2121 1244 9663 1456 3090 5055 8450 2228 8851 9483 5261 3370 8556 9481 8651 6038 1999 195 3137 5083 1053 3398 7050 9011 5821 1920 4143 8750 3615 5517 5635 137 4020 1366 8592 2976 3072 3285 7840 8769 5907 1821 4109 5626 2729 221 187 4171 8469 2125 8115 2341 187 6439 2937 9424 1567 1628 5477 5363 4662 1681 3793 6207 498 2432 8911 7092 4660 7553 2669 310 2983 9546 8004 5949 4250 8991 3411 1868 7732 7996 9158 291 5457 4791 5142 7141 7890 1823 9232 5611 5127 6212 995 1234 4439 540 6113 2645 2144 1708 6838 984 5948 8001 9898 2995 4818 4162 6517 588 3250 2866 1819 8917 2636 5094 8210 267 101 7622 9849 8240 5753 2975 8105 4619 3878 87 1287 4947 1689 4738 8879 951 5889 7475 5603 9509 6141 447 8059 1653 7835 2507 5650 945 7038 5350 1292 7009 9627 7423 2066 1047 8971 450 6794 4710 2357 5141 6425 8165 2278 5852 8195 7839 8881 2446 9603 2495 6564 2360 3060 5126 6698 6578 9064 379 644 6720 1456 5409 1405 9973 4577 8590 1479 5115 9921 4028 3178 8443 752 7106 2141 8491 2227 2161 165 9965 8218 8008 9801 6035 8659 3846 7702 6787 8741 6662 2736 792 5002 7816 2047 8822 3739 8186 7031 3579 4169 2842 1351 3269 3073 9822 951 5804 8301 8575 7271 6293 3657 2485 1492 3126 9179 8151 2159 6880 3027 1960 1212 2936 7271 4308 9109 5571 8284 7018 1584 2998 6575 1010 8806 4392 3671 6953 6816 8625 1067 7335 5963 948 3014 4696 336 6491 7502 3834 5503 3503 830 4256 7466 3860 7989 754 4063 4315 1727 2966 5165 5893 4014 1269 9871 1618 4938 5775 7395 5387 9492 3613 7835 6013 4456 1574 \n3151\n4609 4157 5062 9409 9599 2537 686 1650 5635 9452 8058 1657 1963 4931 2833 4862 5458 3998 2956 3867 2963 7498 9075 1014 8557 1798 5916 1452 7490 640 1687 9725 5148 3978 7361 8795 1185 5335 3717 282 461 2590 1927 4187 6953 4952 5039 2719 5933 1185 9063 496 8829 3036 6573 8431 9781 5348 9456 121 1614 1441 857 1185 1119 6067 557 7956 8809 3208 7103 6115 574 8734 4046 6525 2108 9122 6087 2606 6190 4988 1361 7123 2430 835 8282 30 650 3848 7101 6891 3592 9030 4 2609 9842 134 2068 9185 2439 7782 2621 3319 5270 6367 6775 6430 3835 4745 901 2578 9461 7424 9787 9725 220 2799 9659 4610 4246 5990 1309 3128 315 524 1876 6992 8474 7341 4057 4246 6216 8743 5846 1980 83 8762 9632 8588 8748 4571 4443 5866 70 9583 9401 2531 7890 6727 7624 3278 4784 3296 861 8024 1851 2976 6560 388 9196 9804 1467 4369 886 6880 9426 9787 884 3503 462 7397 4468 1086 6675 3526 2406 5744 8652 2833 6234 2757 9497 9514 732 9772 446 528 3387 6822 9309 7464 5343 9769 1840 6764 6568 446 1681 2653 2657 7110 9439 907 8962 9403 6051 3589 4533 6546 7847 9693 4024 2002 1592 7168 2889 999 8513 7401 2991 7640 8298 1515 5118 102 5516 663 7001 9766 1950 4344 4018 9821 2154 2776 6761 4844 4887 1225 3217 2846 8266 203 8929 8421 2618 5446 1224 2254 831 5523 9307 8067 9926 7496 8063 7291 4284 7492 253 7337 4948 9743 9525 7409 7462 790 5344 857 3913 9566 1981 8909 403 2578 7618 6460 8393 2969 98 2417 7957 7284 342 7568 22 9495 7789 4615 8046 2344 7922 5579 4270 6977 9540 7246 8260 3649 5113 7969 4498 6872 3332 1332 7596 8539 9296 7214 1074 147 9227 8690 8824 1699 653 248 7958 682 6094 348 1769 3037 4433 5044 7729 2492 7210 5875 7121 5963 4583 9599 7601 8823 7678 6137 4994 6688 3453 2433 1181 7458 3925 1359 4053 1558 1536 9890 9258 3566 1976 6299 5355 748 8635 6346 8238 7292 379 3418 1187 1243 4 3669 6231 6801 837 5636 1778 3968 2677 6614 2285 974 1158 3731 3068 5664 3226 9947 4120 5778 4156 1151 169 2805 1075 1174 8310 8069 3867 8346 6283 8264 5682 720 4788 1737 4408 2983 3017 8069 8763 1707 7323 5964 7762 4587 3534 7978 2022 6784 6087 2632 7253 6217 4799 3005 5507 7062 7809 6290 9336 2563 8461 8822 8265 5709 5081 9062 512 3320 4615 5303 5321 945 8842 3313 9079 7595 1828 4009 6384 5583 7318 7617 1042 4850 8439 1959 7963 7011 7358 4101 8068 8411 945 5704 4458 367 942 4557 9640 1207 5871 3339 8405 7786 6317 8762 4144 4886 1226 2818 3204 6262 9260 9173 1012 4663 7741 7928 9894 5440 7082 8793 8004 2468 1839 7288 1875 3136 6143 7536 5484 9059 801 5419 1637 8315 8383 6987 8756 9527 2629 5720 7513 5350 5648 601 5503 3160 5358 9834 7388 193 4135 2016 5410 8466 3533 3953 7600 4544 3859 7313 6452 5723 1643 8316 7868 2254 4930 4805 7857 7776 5853 9550 3077 2122 9595 6096 332 2628 9839 1311 4202 4950 5821 1187 8349 6386 6005 4105 2996 3620 9916 3782 5981 3005 1155 9239 3362 994 2053 480 256 7887 8666 6474 6704 1311 8687 5208 798 4578 3027 4751 1245 5378 2670 1696 6465 293 9285 2054 3570 653 6040 482 534 8768 4326 4995 9844 296 8396 8241 6067 3365 1820 8697 6713 606 8440 7834 9182 7448 4176 6623 9856 107 7883 8251 9010 6885 7052 9327 1736 5021 5960 9561 7291 8276 2287 2963 6363 3757 8531 4230 7950 5647 605 2207 5214 7643 9957 4839 7378 8601 8455 9783 9741 1862 4467 1606 311 5739 8575 8649 3590 3798 1993 6899 5945 8649 676 2008 5054 5919 3756 2037 8674 1258 7361 8868 1294 2734 5491 7589 2853 3989 564 7427 518 9892 7511 8532 8601 4195 512 585 8000 1242 5875 3057 9511 875 5309 897 5044 8473 5882 6535 893 5380 6164 5618 6374 3277 2636 7133 3733 1960 3158 1004 8394 823 5982 6478 7191 209 6054 5805 3705 1636 8425 1666 2033 5904 918 7403 9490 509 767 7252 5691 1535 3372 6595 2817 5823 9044 4568 2370 4799 7013 1205 1880 9761 4424 9123 9757 1570 9162 9916 5575 5610 8087 5361 6580 9516 9532 8267 3115 7558 7082 1986 8453 9343 3690 3373 8117 3424 3488 870 3086 6990 7578 6559 5574 8632 5031 9445 1230 8524 5505 1526 3753 205 5496 4629 7225 4967 5118 8228 284 8439 3081 3691 8960 6920 9518 4604 4226 6164 3973 1947 6591 7322 6144 1729 667 4864 3020 6239 7401 8172 9502 2788 7860 142 9232 4253 3268 8057 6502 5920 757 644 6463 716 9411 943 437 1485 3329 1472 9812 9590 4241 2651 5743 7246 6311 139 1045 9487 6798 8494 3327 1417 2676 4322 6555 7539 3995 571 9685 4218 1122 7531 8063 6254 181 3414 6862 6885 6642 4249 3104 8025 9547 4661 4072 9298 903 8613 238 1029 5241 8747 385 2851 3253 4232 5050 7041 8706 2098 7816 7548 734 4836 8384 2735 9624 7523 444 6490 5041 2943 5984 5007 7196 3029 4769 9536 9030 804 6300 5430 2981 7175 2067 5068 1818 4940 7307 9462 196 1310 5584 1197 4376 3911 6856 6316 9698 9495 1859 1401 3623 9720 9498 8394 6445 7588 9023 7489 6746 6227 8409 8245 9780 8447 6280 4096 936 8611 1929 2159 1029 4758 4658 4219 9797 7753 9857 3935 5367 5277 7173 9148 9682 5050 4174 276 1369 4678 4472 7640 3871 65 9230 4625 8614 385 7628 1182 4857 9295 3908 4427 3232 3615 7939 6640 2169 3650 2025 6572 2036 3699 343 3397 6221 226 2100 4089 4331 9397 5997 1062 3631 4669 4120 6066 7117 3141 9848 237 7307 8429 901 4730 1493 7552 3116 6576 3348 3084 7062 717 7906 5499 5425 9842 2476 4014 6530 5444 3281 2100 5858 6996 3951 3128 1509 6581 9034 1764 7925 6038 2541 3369 2999 5457 4370 5432 7927 318 7997 2025 9264 2235 4259 128 6504 704 8792 3688 6643 1814 9640 1343 2835 6358 6183 7529 1841 6130 1316 4148 2269 3661 1027 1726 1123 5242 3359 2071 9685 1849 6140 1337 7325 1408 762 8902 2438 9268 447 2671 8731 4170 5406 1348 692 714 777 9964 565 3908 4133 2263 2905 8991 976 1751 186 3022 2114 999 2474 5716 1385 1725 7047 7862 7776 535 3149 3204 2650 7136 726 8870 8645 630 7864 538 7772 8740 2142 9157 366 2007 8794 9874 1573 6285 8422 5713 1161 2182 6200 6192 2063 742 1713 5852 9075 6790 6589 8405 1447 8866 3584 1081 8476 3028 8942 3789 2412 1600 2882 4172 8108 7421 1343 779 713 174 9960 368 9552 9387 1837 7903 2406 9624 6726 1488 6582 2411 4984 514 907 6510 4976 1594 3741 7368 6086 8888 2085 3124 6279 4501 7437 3149 5943 3160 1303 6131 8879 2397 8999 4868 7585 136 1794 4126 6574 519 7714 8210 7148 3432 7682 6973 9466 1149 4358 4841 206 4433 2171 1867 1145 9202 449 7769 4437 8590 7417 1452 5817 1363 9366 3414 1853 7643 8598 2248 1911 3647 6672 2738 8184 5007 9968 1360 9115 945 5363 1436 6098 1457 5386 9820 3501 3826 5429 4518 2923 5021 9043 4142 6554 8528 4506 8594 169 2128 5163 1649 7532 6597 6168 5968 8171 9288 2428 3032 2601 6628 1741 3581 5748 4349 8690 4499 4827 3428 9267 9687 3303 2596 2471 7933 1089 6101 894 6639 5046 8702 2104 8229 3967 2336 532 3769 3848 3593 7296 3624 4475 3404 3334 5760 8257 3453 860 442 8450 4229 3247 4853 9305 9077 2444 6311 3393 7978 7972 8197 2692 7965 3721 5142 7460 3120 9468 1738 9050 1234 7888 4786 4142 1296 1092 2039 6115 5801 9724 536 7207 3427 1426 3196 546 769 2939 8165 6680 7081 3348 2357 6933 8513 3351 1537 1418 7612 861 3492 4275 4512 8312 606 1240 7903 1543 8251 873 347 6214 830 85 2004 7572 9590 8877 4937 6941 92 1272 8793 4547 3490 5266 4185 3331 6957 4258 1457 1294 3033 7246 1705 1195 601 448 5921 9472 865 1121 6331 3670 58 2058 4306 6745 6006 3021 7945 6653 1922 1050 7240 9695 2785 5440 4686 9529 8201 1587 7654 8729 1422 4599 7139 7696 4346 5642 5773 5329 9412 3882 277 9860 8838 5938 5499 727 5024 6480 1887 8081 3361 6431 5195 1751 8599 3250 3399 1766 1517 6868 5062 1445 2779 4273 2803 4214 6594 6083 7789 8012 1440 6580 2763 9812 2885 412 9267 262 6642 7341 8478 3266 6852 2053 4460 3922 7340 3648 4620 2544 4891 6337 961 8379 7283 130 7457 5911 689 945 8221 3000 8103 2769 7819 4198 719 1010 9560 41 3712 2052 2503 921 8520 2224 3381 5459 7941 355 3473 3530 2182 867 4453 7001 2734 9777 4399 3457 7773 5840 7986 5885 4731 853 8050 6069 1056 232 7911 4315 4759 9681 3023 4137 8635 7494 1423 7625 7131 2281 606 5450 7613 5067 3354 8354 7138 8053 1562 2293 7573 5407 3423 1752 3633 1468 8014 6725 2677 7059 5204 6900 1720 3060 7881 6635 9972 5090 2409 1967 8359 2986 1162 3161 1453 7672 4325 3769 3384 5592 3494 1486 8080 5619 6869 3437 507 4961 6843 3915 3739 194 4174 8367 3548 1601 8150 1372 5177 5822 6573 8907 6480 5402 8913 1367 2443 7600 9463 9677 515 8399 7856 311 9784 6307 5323 2068 8854 5732 2234 2735 8661 1234 9465 6100 2047 1604 3913 2699 4181 457 6553 5982 293 3861 5420 13 4754 8860 6934 8936 7208 5240 2905 7871 9997 1232 4285 4852 2406 1251 4865 4638 1860 7155 6746 5436 7865 9220 5856 8576 6259 9947 8826 382 2614 1379 1778 611 7757 1290 3795 5867 5947 6460 4808 6293 5064 1275 8743 1836 4103 3063 8563 6191 1519 3194 4766 5708 5739 6478 7616 9771 7724 1397 3609 6442 8399 438 2503 5511 7630 15 8018 8330 960 33 7935 9044 3801 4505 7375 8927 8246 130 8133 4542 8564 6439 6359 6185 8113 6594 7930 8835 8987 737 9593 8037 1905 4238 6964 8107 2376 3228 9272 4080 2984 6525 1732 7775 9361 8177 9345 8216 8444 5393 6691 2741 2511 54 2839 3961 8709 8261 4934 5525 7856 9647 1056 5796 655 2991 587 8925 4280 1185 1584 4681 3441 4064 5431 3064 6965 9322 4187 9071 1122 6710 814 338 1645 920 1457 2654 9931 8915 6611 7790 2085 1641 985 7536 3333 4007 8956 8403 8333 8887 9278 7638 5221 2707 8902 7589 8486 1160 2902 5442 6844 9730 138 6987 5678 108 5302 3189 7968 7517 7631 4002 9073 3009 4283 786 8651 5270 1998 2321 2807 2801 3290 1002 1637 6017 4124 1098 748 5801 4237 2484 3626 8532 8651 3561 4321 4342 4747 4804 1000 384 4735 3184 7634 9808 156 5852 8601 8337 3892 689 5908 8659 1839 1450 30 6240 6985 4548 8465 2004 6657 4501 3921 2634 5972 8153 4387 1555 3449 6591 4193 5974 9857 7067 2636 6308 2810 2100 3672 3367 3536 8148 7205 2789 1014 3783 9184 1600 7824 400 3198 3033 583 5789 1294 5105 5319 5426 8090 804 4587 70 1175 9404 4204 9286 1126 5882 2621 3067 4148 3246 2446 7107 7610 5145 7550 8542 4797 198 4039 6466 2350 3711 3215 6993 2984 9539 4691 8969 5647 2013 2428 4589 3333 6587 3201 8707 8584 1259 5962 6598 23 9530 298 3557 3881 4145 5823 806 8819 4675 7522 7686 7351 164 9130 9785 9755 4548 6675 6329 895 8754 9785 1433 4762 5871 5580 9772 2936 907 7034 5405 2942 1618 223 6066 9590 7527 6237 7357 8102 1009 7512 2446 197 3749 9014 9251 7618 5173 6176 5894 8233 9134 1167 4858 6503 4342 7330 7507 3625 6301 1347 6302 868 7928 5066 4862 8587 2627 2067 7545 4195 2625 1420 5848 2623 8286 2404 3142 375 2136 2403 8710 1217 2362 7902 2215 9741 6625 2120 4230 5738 4400 9352 90 652 4445 2742 7205 3721 7128 9520 6037 404 4532 3783 9463 6349 2174 2103 5570 3949 3471 7652 2175 4391 8888 2363 5896 2042 8969 5543 6542 2581 8466 3053 6943 953 8930 4777 8769 4726 605 5139 2673 1433 600 741 864 8587 3689 1218 2648 3563 4742 8567 5203 2277 5875 2509 2064 9131 8442 2741 7628 3034 5671 5656 6056 9551 4288 7827 5185 2535 5060 5736 4146 2291 4729 3102 6974 2685 445 5133 5087 9303 9915 2169 2900 8101 3191 8559 5491 2396 2093 4060 877 4633 5231 3845 6963 7371 1759 3301 6370 3754 1699 8316 9127 8865 3382 1713 2617 6433 7219 965 4950 1618 6256 7400 2709 9293 1123 5004 1524 6890 2164 5183 9858 7836 7381 3505 2502 6994 85 3894 234 9607 9589 2870 7736 1138 9532 1402 8916 9750 7734 8693 6404 6218 5123 9571 6943 2537 6690 6450 7141 7792 2057 9758 7720 7774 120 5879 7291 5261 8605 4278 9836 7198 4092 3863 63 6617 426 490 6282 7261 544 333 8236 4606 9531 3857 871 4100 312 7048 4553 5601 656 7711 3957 2799 8712 1726 7703 8405 5701 4118 1294 5374 8824 9430 876 5695 1317 7668 226 5999 9646 6691 2441 9664 9400 4770 7074 8807 7964 9457 2914 2502 1981 1015 2119 971 7718 7546 2036 1295 7493 112 9822 7607 9379 8344 1559 2723 2980 465 6421 8934 2580 9187 6860 5218 8724 6762 8168 5015 8815 4741 976 3493 3882 4478 9795 9227 8211 9175 8093 1329 703 2296 6374 8576 5531 2768 9360 4525 8288 2811 7790 401 6336 881 6523 597 1182 75 4916 1295 9762 9558 5795 5700 6953 9877 257 1898 8689 24 8408 5404 7259 2333 1523 6406 2797 959 202 1178 5999 3504 2541 7665 497 1935 7682 7545 5437 4013 3641 2757 15 8406 1869 5038 8872 2469 3955 554 210 5717 3949 1349 6819 5174 1677 9973 1899 1696 8586 9578 5404 3330 7066 145 7899 7616 2895 2528 4896 9428 3274 5071 2432 3790 1341 6736 9511 7798 8349 7996 3197 7438 6267 794 777 5787 3034 6019 780 8538 613 8592 1667 8735 5548 6095 3665 644 1275 6950 6969 9424 649 5267 5169 6852 2126 8483 3795 1752 3969 7460 6575 8527 198 4155 9690 1651 6197 6405 1405 5644 5 2086 4943 8115 4957 234 2643 2713 7730 7176 5012 2755 8980 6293 760 2747 3054 6475 6033 256 8233 4527 2272 6562 9557 2345 6746 1811 7316 9983 2206 1155 1269 525 6133 1577 7259 9205 3495 9311 3546 9164 1910 9921 5976 5044 3673 5443 978 1268 1714 6483 9036 4370 9487 7943 3450 7763 5881 9599 9265 1701 5097 9818 1103 6824 2042 1818 5231 1388 5928 8685 4261 9390 5314 4204 4087 389 5279 5841 1138 1101 8061 8744 9549 9466 1288 4547 7825 4313 5212 1232 8105 2825 5522 4121 2591 5062 6142 7671 5225 79 3033 7186 1521 8645 3474 4755 659 7283 119 4799 2745 2665 6426 7629 1149 5538 3288 4543 679 1128 8230 546 6995 6502 4510 6758 2593 9246 8183 4364 9889 9775 1743 9801 5717 4403 4558 3966 6646 3594 2533 1887 1138 5105 8460 1654 5103 5937 5830 6436 1438 3011 7634 8762 6756 1054 3317 9036 2741 6573 8246 2391 8844 8362 3167 3912 1754 7779 8087 6748 4175 8233 4633 8311 4258 7413 6320 3700 6101 3484 4606 8878 7538 2709 6480 7673 7523 711 7847 5152 7124 9582 646 6899 108 641 4182 4760 2896 7541 8009 6658 6959 6077 4253 3236 9952 9918 7193 862 6598 3204 9094 436 841 2967 6826 9482 9326 4858 6694 6513 8608 4097 6108 9377 714 4867 6328 3686 8241 5490 2602 703 3365 4806 5944 7245 1697 1766 845 3071 4435 2260 8978 8057 7366 8112 7996 6217 452 7973 4234 7715 7135 8431 3529 1756 7364 4295 5857 6914 6226 9914 3866 606 7409 9387 8914 7426 5642 8431 41 4708 5033 661 9978 5474 8434 36 7038 2651 8558 3317 6565 4823 9412 5096 6670 8699 7322 8710 7379 8414 8316 8956 3226 3580 2484 5018 6487 7158 5293 4788 9039 1136 354 9730 6771 1843 4664 8725 8320 8648 1130 4920 8677 1486 5051 1288 2597 6086 4020 5796 9370 5797 5771 4537 6360 5533 6148 3725 6147 6639 9882 1801 5790 1562 1882 1490 1345 8055 5163 8638 2307 3704 1424 3180 7799 9830 3850 8835 7501 8785 8182 1383 9024 9442 2429 6670 5241 9414 1258 4 3096 927 2968 2711 2332 8324 7113 5422 74 911 5053 1307 7593 7286 1690 1338 269 9988 7914 5354 9323 50 5684 7420 9319 5548 1814 2915 2772 1422 3106 2393 8648 8268 2602 7176 3852 1804 9698 2706 6399 9302 2969 7449 2764 9314 8171 597 7219 8477 2213 8545 4956 8853 5099 4272 788 4344 8878 8184 4108 5571 9601 9241 2382 1940 9621 9129 1021 1287 9580 8413 1858 7900 6613 4567 4601 3548 437 9326 1268 2415 6549 7286 7190 3397 5326 7112 5346 4565 2458 4970 7860 6912 2297 1877 8421 7846 4172 8488 4149 5484 1509 2177 1183 7808 6319 7797 5019 3634 3338 5676 8780 733 743 8961 1546 6158 8780 9809 1091 5639 4349 935 4954 2932 5644 9811 6984 6044 9681 8839 4377 1364 2316 6583 4832 3672 1595 5776 8085 8945 1908 5171 8986 633 5203 5120 9134 6887 7212 3563 6751 1138 5720 9513 694 2972 3557 3767 5010 9735 7031 489 9032 3276 2659 5619 4081 4540 4858 8061 1753 804 8739 9846 4210 555 3990 3933 7094 3959 6583 7302 8955 1263 8784 7798 7537 1901 8891 2576 5206 2841 9068 8948 3331 5805 148 3741 7020 7009 1568 3413 6561 8756 608 8641 9121 9331 7782 5750 2186 5511 7169 2305 5664 1254 7943 2584 5909 4108 580 2136 9496 4547 9788 8634 159 4450 9746 9033 4119 7560 3826 6668 8042 1076 8863 5858 4630 7088 9064 1776 2866 8616 8583 4077 6678 534 81 2883 9470 5895 8344 577 6700 1529 3359 479 8037 6960 1517 2454 949 1476 5175 1324 1804 2617 2328 4695 9294 6685 7087 888 2201 6720 4088 5849 5263 8053 1192 2209 1866 3719 4355 8641 4066 329 6224 8735 465 8449 449 8688 9855 5688 6109 9587 4264 4694 4596 2809 5711 3826 7438 2297 3413 5741 6601 7471 7070 2516 8761 4229 3317 6418 697 8836 312 8281 2350 2242 7090 9109 3190 931 6330 \n7929\n1403 4914 3957 9845 3846 3536 3867 9807 2706 7546 551 8055 5273 9703 4460 7890 573 9884 4278 1285 119 3879 6417 3732 2248 3343 2141 4928 3874 5896 4293 5924 9314 2888 9604 1344 4568 316 7580 4477 5775 1648 1500 4780 8804 1400 111 1388 4716 7083 8596 3202 1139 5502 7496 8794 9424 6254 262 7270 4609 336 8884 2961 8586 7764 4675 3039 6850 9891 1401 9455 9768 7288 3846 1165 5085 1110 5900 169 344 7651 9745 4296 5963 9199 829 732 646 9495 1894 9960 9877 3844 1097 938 4196 5984 7544 3431 7268 2067 2450 7353 8626 6002 9898 3939 5155 7112 6168 5861 3182 7842 5743 8328 3026 4734 9864 1661 7937 2640 6889 6007 248 1276 1255 8504 6008 6604 127 6090 4127 1177 9298 390 9498 7395 4299 5774 3313 1170 7597 2324 9297 5048 1826 4801 9031 1604 2006 5621 736 1157 4362 5732 7467 8653 1084 2927 8453 5324 6291 6583 1313 6297 2490 1047 5894 4487 6816 1343 6771 8315 7744 4692 5174 2069 1323 4343 7113 1989 1898 6971 8593 4257 8775 1033 9385 4771 4678 5360 5628 6869 8841 8984 2243 5720 6089 5778 5620 7661 8736 5864 5073 7245 6066 6402 7852 2464 7471 1576 2388 7888 5621 5026 5759 6093 9099 5797 720 4256 2862 9901 7694 5232 3894 5746 3910 7467 7914 1309 1162 8152 2863 5488 6217 4618 5925 1030 3872 342 1753 5932 1234 9270 3108 8414 7158 5134 4506 7115 4691 8580 3412 8811 6434 8665 9424 5427 843 6494 5003 4714 283 4626 1927 2086 6191 6321 5754 8452 8905 355 9296 3901 6079 4690 694 7711 6834 8162 9011 3592 7411 681 8658 9077 6075 7756 3128 7392 1548 2304 9531 9470 8466 5604 1525 8160 5538 8469 2170 9537 5802 5599 3252 7779 4155 8854 2428 8319 6136 9558 9826 3303 5828 8430 8060 9187 5279 1616 4867 87 8902 3538 2893 3644 5067 8916 9210 3550 7399 7757 5875 3223 4836 5718 8423 9727 6496 2052 3317 3484 8949 79 3986 1884 3751 6751 1206 9341 7764 51 5550 4101 4741 1316 2717 5290 8399 4618 369 8469 2612 5099 2914 1337 1910 6829 9661 3819 4975 6584 8152 3057 1160 9456 4568 9057 4929 4996 7722 4335 8504 5434 8617 4227 5604 7240 664 7471 4487 1455 9107 2453 6993 9838 7547 8218 1435 1872 5807 8787 2399 2165 3067 8930 9038 911 6356 9732 4298 6969 869 8736 5780 2075 5424 2313 9251 2658 1453 3326 6313 7243 5383 1331 4257 9822 6333 7983 3196 397 9671 3015 682 1194 1068 3801 2586 536 9772 7418 1442 5667 2328 1830 1416 9776 977 2892 6760 1929 5924 114 2288 6661 6448 7405 9464 5212 1534 9645 8358 6149 3421 2906 2263 6696 9427 3024 9359 9258 5112 5231 2636 9488 6638 7219 6414 1618 5014 7431 8425 1181 2119 8745 7977 9623 4876 5112 5365 6204 511 2975 7217 4284 6183 1828 4252 5717 5565 8908 2366 1056 8889 4920 3341 3782 5119 3283 4373 9657 5171 6411 2763 939 135 3724 326 4792 4157 2783 9453 4613 7426 7382 1595 4950 3617 8355 3943 7280 8522 1444 8615 373 2045 1102 969 4194 9858 9846 6412 2897 2719 1297 6161 5814 8131 5303 8473 5643 8898 4946 6631 4226 7172 5722 5390 7510 2587 2687 6245 3147 5785 2189 5610 9003 3105 5625 8903 5551 4176 8797 1729 825 9268 7069 1511 2399 1111 5212 3085 9446 1621 2485 6246 2481 1735 7105 1332 2906 9823 6264 1659 1558 9634 2586 3854 7894 4699 1149 9505 3381 6962 3145 8785 1875 3049 911 9211 4024 7421 6051 9221 7343 9414 7942 9797 3642 3135 9639 3886 9848 2545 1147 8231 1824 2998 7413 6245 7054 7054 2942 2819 9745 220 1392 7793 2352 2143 2627 4005 4663 8099 7057 6874 9740 6376 4552 2030 424 7428 3329 2554 3240 1803 9109 4423 2533 7441 9765 6092 3343 7459 6969 8432 9471 5051 5249 2452 7866 4360 6638 8044 1159 8888 9316 4260 5961 1764 2943 4404 7876 2377 7358 5256 8128 8724 1639 6717 712 6211 2469 5030 9868 4181 9867 8894 9841 7217 6958 4189 9897 9740 4594 7723 6323 2471 5123 8163 8127 5607 2050 2342 7926 7853 9603 3086 5238 4454 3215 2396 1365 2048 6930 1885 5025 1333 3004 9630 8854 9244 935 560 6699 8608 8729 8721 5956 1597 9390 3969 8327 6453 4485 8125 9567 3861 702 4813 7250 7555 4265 5512 7376 4289 1041 4448 4739 7477 1297 559 2864 7186 1271 951 931 2654 6744 9263 308 3424 6350 6126 1852 2378 4302 2872 8612 8756 2086 6155 3120 7207 5823 6772 4553 45 2634 834 1708 4532 9068 8448 1379 13 5881 733 2500 1584 3319 2599 9403 5982 8155 265 7950 7615 6106 1120 5548 1980 4649 3363 4615 9136 8050 7773 1350 8216 7 1756 7911 7095 7726 5889 4328 5743 4710 7015 6936 9172 2696 5366 824 5929 2371 1443 9268 9642 6483 8659 2256 7918 4162 3621 3235 6109 9164 3494 1311 2538 8983 7413 9130 7525 7151 5280 8270 259 5168 1940 5118 3103 7655 3887 7927 1754 1593 3087 1598 6663 2307 5290 3213 150 1059 1438 5585 7920 3865 160 6174 3766 5588 9898 4254 6706 8724 1296 1517 8812 2991 8511 9424 5342 9673 9 5182 3206 8003 2607 8349 5885 2170 7480 7907 5617 7889 4237 8451 2838 4802 5630 9778 6062 7896 960 4629 2805 526 5149 1940 1454 9034 6562 9016 4968 5490 7883 8689 8231 6581 8908 5728 6349 2888 7028 6578 8986 7982 4115 6698 4603 5611 3299 9810 3229 7870 3538 1972 2939 3486 3713 6996 3629 7296 4054 2435 1453 9886 4052 7672 6984 1382 54 5733 3244 5396 3368 6530 8437 7426 4685 3187 6945 5510 8754 6157 6662 1112 9780 9181 5640 4128 9331 8177 9455 9248 6316 1082 5927 3906 532 8740 3198 6072 9024 7724 923 9534 605 7712 8802 8817 5096 9770 5505 7583 3665 3739 7372 8363 68 3551 8858 2566 8038 7416 5425 7993 9142 2796 3035 4434 9442 8350 3986 7267 5004 3688 9977 6652 9020 5749 2888 8394 4400 9945 6850 6732 6511 5897 157 4873 7354 2729 4186 4753 9815 8815 957 5622 9433 7113 2778 3208 1693 6508 3297 7638 4337 7039 3884 6356 5499 9641 3264 3228 4055 5832 6899 9593 4959 7542 9878 2246 3394 6235 8131 4935 5604 8371 1952 4015 9768 4708 7963 4624 955 8879 8407 7790 418 5903 8013 9688 1482 7495 5095 999 4244 2630 5638 906 3559 449 3138 455 7608 1337 1348 5624 2075 9361 430 5165 8151 4082 8940 4276 3455 4188 4001 6688 193 5715 4681 244 7255 2938 6873 1818 304 3484 8419 599 962 7173 849 2902 2664 1116 4114 8069 9277 8717 6997 8020 5228 7930 1006 4092 23 4089 7532 4874 6852 1700 6306 192 5947 2298 8530 8748 1697 1438 5613 1728 4381 8746 1540 7787 4526 5583 4734 9392 9199 4924 905 5525 8789 2956 766 9485 6152 4929 7377 6002 4216 1446 1543 1677 3596 3470 2670 4238 2963 3656 2548 1439 1034 6151 1280 7547 1323 1412 760 6683 4466 3486 6403 603 3697 6691 5849 5215 5795 7831 5597 916 625 6733 3622 7136 6292 113 7740 4934 9501 8024 3212 1488 608 6577 5194 6539 9089 5557 9972 9016 2286 4782 5699 9124 7878 9851 3946 2099 2037 4343 233 7820 8332 9831 8566 5909 5720 9395 7489 1040 6363 9956 7182 1022 7079 8641 5136 3418 6123 3892 8803 9892 5145 7241 447 9431 9488 1977 3311 3175 6775 472 7601 9925 1361 223 2655 6014 5782 8337 2074 9100 4887 6890 587 5295 8888 3279 9989 4805 4944 3387 3214 40 4503 9661 1475 3055 8124 2607 9739 2 5208 4635 2289 3712 9688 6314 7486 8683 7061 3941 1040 7273 8016 6770 2732 9092 9488 192 6679 4684 3987 7689 2565 2868 3634 5455 3177 2144 2926 2193 9172 8668 8099 6286 8226 5027 4916 2902 2437 873 9280 8201 9588 647 1662 6093 146 9044 8779 4004 3733 6439 4268 2886 4664 7794 7234 868 7328 8841 3225 7090 4444 2637 8042 4972 7599 8607 9450 8684 1600 6092 2977 9338 3294 6796 5964 1554 7451 7471 6983 3407 1341 8147 2250 4748 4586 7415 1043 5183 2759 4055 8851 3416 368 5502 5952 9293 262 7822 6253 9827 1407 5248 606 1715 1784 3684 2495 2081 3919 3386 4673 5949 6706 6906 7121 6579 8103 9613 2416 356 9079 8090 4689 9418 4017 2681 9359 5446 8074 3780 6820 6221 5737 7526 5093 6621 7778 448 2405 7844 9146 6197 5927 3369 1509 2737 736 5610 8073 1518 144 5416 2234 4027 7394 5573 2635 1809 7450 3632 2174 6440 1875 9767 5891 325 3551 1033 1194 9210 3087 5576 3971 8205 3443 4031 1248 3572 1829 4286 7295 9955 7183 5311 8721 8012 7851 1158 2883 846 2124 825 952 7521 150 3974 5885 5690 6476 1931 3983 3795 2059 9724 2247 5789 933 2399 6930 4524 2904 4494 6439 3858 5574 8273 8061 5039 7562 9881 1247 8725 5027 5554 8775 3150 136 463 1144 1387 1676 9621 1161 2661 6731 1116 3853 4108 5554 9109 9627 3159 4670 2268 7547 658 2658 4304 9855 5105 8165 3986 969 3439 230 1463 4997 3531 3804 2312 6480 7304 7731 7245 3142 6126 4390 734 5049 2939 7042 5636 9024 8408 5313 6018 8335 3649 3638 8026 4718 6625 8551 639 9812 7457 3236 5674 5669 814 8889 1379 1598 8526 7999 2190 1597 5830 1041 7001 1541 9817 5246 8887 9760 6145 8885 7763 9783 4040 2272 3755 4766 7806 3069 726 9091 489 8315 5827 8027 9730 9874 3357 9180 4503 1128 8114 3108 9320 9079 7054 8597 652 3342 312 3479 9709 9390 7451 8989 5621 6454 937 3576 2463 4963 8007 5391 3062 2172 9502 241 6828 9783 4300 7791 5945 7544 5115 7884 8186 8359 8300 6020 5758 5304 1598 3383 975 5916 7995 2838 5495 5520 6323 9575 9467 9446 2566 8976 9011 1730 7101 4931 857 8909 2973 7672 8100 7847 1134 3645 2150 5813 4056 972 7268 2685 4386 4854 2201 1082 8409 3299 1211 7669 7010 6844 8701 3728 9616 2750 7421 9550 9265 1874 174 8943 9997 5061 6418 2097 7120 2275 4263 5485 3362 2853 3467 2652 4818 354 223 1031 7685 4654 3469 2613 8238 1862 2695 8221 3785 4619 6745 1225 1499 594 1739 1575 9132 4211 7598 552 2179 5427 6627 5241 5300 8381 5491 5055 9720 187 8313 1036 1138 398 6944 2469 5051 1638 4904 2920 2205 7912 3407 1191 2082 4196 913 8436 6089 4861 9400 4349 8667 6010 683 5317 1220 3436 6924 2718 4241 1926 9718 7942 1261 6437 9417 9352 6779 5680 2223 3016 5 406 8310 5175 1031 422 660 8739 7513 4740 1164 2086 2977 2956 8422 2476 4897 7133 9879 7674 8286 3833 5822 8624 2809 5783 2004 9327 8009 4463 4849 9378 9392 6492 9535 6089 990 9989 7789 1256 756 1677 8721 2569 6375 5668 6856 369 895 1288 1480 8641 2459 785 6586 3819 796 156 9714 2497 8744 67 3874 2669 5464 6929 7019 5386 4384 9922 5622 1800 2138 2891 6992 9546 102 8740 6771 4484 4155 1490 8524 7825 1069 314 2453 9939 2148 4685 3157 2380 389 5351 198 187 3169 486 4790 2569 6872 3640 9946 792 7804 1107 3113 7457 6424 5070 577 3567 1718 711 5105 2145 4652 8479 841 1804 1754 7731 8428 3242 6187 2965 2215 9324 5452 5708 148 9922 6986 9613 6034 8562 6088 4356 4468 6862 11 4574 5104 3314 2001 5768 2026 3437 6265 6982 2361 4616 1015 9061 890 786 9210 5649 9362 8282 5156 8205 1832 9986 2137 9670 6872 5525 1873 9552 8057 6207 3239 2007 7837 8562 4641 3217 5010 7892 4965 7123 8984 234 4047 1137 286 3116 3316 5391 9965 1499 8420 4848 4442 7543 8279 5713 2577 8402 6954 2732 8920 1230 7934 6579 3334 3544 5885 8019 2406 3875 5648 8123 2495 1120 3271 9585 5860 6493 1094 8629 3942 1311 2413 1075 3058 9356 1743 4660 2398 8797 4129 9783 2137 8669 6498 582 2296 3872 6719 2703 8890 5396 2375 5346 3243 3060 8610 8721 1686 3770 5828 7968 9406 6828 4631 6704 1198 9011 8497 9788 996 1374 7982 3798 5415 6091 5619 7026 7835 6752 3107 4657 5739 3171 9994 9408 712 9482 3150 2382 303 481 4246 1727 1174 404 60 1536 7537 2772 4569 1180 2945 9794 475 2266 238 703 4858 4177 7065 1623 1801 9892 9329 3347 5951 7120 2621 3246 8454 7921 7608 8782 490 4099 924 2132 1100 3365 6428 9349 7455 9181 1197 3932 7521 2986 885 2687 8124 5379 4934 3023 2145 9191 8436 2135 1493 8938 7239 3680 1958 2012 971 1103 1810 4771 6999 1940 1 6591 462 6173 5332 6698 3697 7983 1308 3859 770 9274 7713 9139 8983 3531 464 1133 9433 579 6179 5343 5528 3076 1180 581 8191 1255 8906 9184 637 2622 1474 8936 7148 7986 4461 543 8213 4608 7236 6614 5402 7759 6312 8223 111 1080 5502 5218 6182 4779 4028 6597 7571 9982 990 6695 8770 1319 6425 3630 882 8007 7958 4403 1700 2365 5877 2331 6712 9237 1678 7410 793 8763 4284 9332 4795 2270 9184 1454 9871 2053 7383 2898 2280 4033 115 1509 8370 9109 9037 3391 4345 8031 199 2372 3410 4904 4304 2062 3756 3867 4255 3751 3094 9053 4817 3839 6505 9724 9290 2651 9427 4461 9851 6771 840 9916 3065 241 1202 2457 2131 977 5597 3560 5322 3382 8518 6228 2756 9102 187 1972 8809 5531 304 3802 4111 4486 2605 1635 5503 7701 2597 3248 3648 6664 140 6936 6809 9575 5121 6182 6615 6105 3053 2111 1205 2185 5764 4898 7700 874 8508 2535 3356 5761 1334 3298 4457 9910 8813 9757 8857 2683 5206 7848 6183 5465 3599 9084 3825 3182 46 46 6849 2946 8744 9453 8140 5584 6455 2067 4764 571 2962 5701 5818 4440 85 5585 9517 2475 7024 5349 2803 3726 3360 1824 6939 6673 6972 6930 2534 3775 4308 2446 7603 5738 9430 8899 6533 32 4459 9157 2071 4719 333 8084 2741 5951 4008 2534 5401 2954 9043 8693 5880 5776 7815 5380 1444 5393 3258 7089 3356 258 7288 4756 7822 8157 5441 1254 1737 7647 7970 1463 3072 9436 9210 6786 9281 7697 5419 8353 9817 2396 5738 1492 3512 8465 6611 1244 8028 3905 2657 8832 7603 7575 9049 2691 6212 6880 4874 823 5013 4153 705 7983 6545 7728 9483 4309 7218 3315 5169 1335 6503 3087 586 8254 2522 6957 1448 7806 5114 2644 9714 8362 4804 1998 7971 5702 196 3875 535 6057 7617 4298 3131 2308 5010 8242 8410 7477 7871 354 3288 1922 9406 7066 2443 6803 917 9574 8698 4228 9872 5216 2330 580 7106 2246 5268 3691 3711 2122 8816 5329 4369 4884 1741 4813 2561 2303 8897 862 463 1320 1993 4540 4330 581 6917 5391 9738 4491 6456 170 1034 8715 5906 9745 2280 3295 867 2800 5328 9928 107 7611 7167 8020 3232 1764 5247 1901 4203 4350 3741 9689 5579 9980 8885 6362 8382 3252 1356 6179 1079 6045 3179 5250 9225 4265 1000 385 4213 8017 9157 8375 2775 6872 5311 1314 9418 3662 5889 8602 9078 6876 1834 1700 5280 3178 6121 2398 1476 2658 4082 3872 7319 1184 479 106 8498 6321 6435 2833 6993 2059 6721 6862 6636 6724 2848 7899 449 7181 4442 9037 3916 555 5752 4734 5723 1703 5714 6240 1846 6951 9069 405 1464 4311 6067 8721 458 8079 6794 3087 9713 7309 2368 2637 4170 7784 1311 5565 7475 182 1957 2591 5615 1874 5698 9754 6023 447 2875 2276 7712 507 625 9177 7585 2170 8137 5087 786 5906 1668 2479 8852 8120 8425 2124 7928 9480 7728 2805 1782 4347 1805 2408 9134 5265 4947 7359 696 7695 2547 6655 2404 7003 7093 9349 480 2692 4761 9212 9309 7551 9535 5733 2783 6224 4900 7567 8529 5752 5789 3979 1613 2968 6010 5851 2729 5173 4435 9781 8153 3614 5403 4673 9890 376 7662 5683 2297 6922 7728 3732 9438 2535 8484 724 6238 4318 2543 9669 8552 8499 6493 3531 9492 7441 5331 355 615 7542 3952 6816 9911 3879 9256 7225 5301 9090 8997 9976 1677 5380 9955 1050 9720 3781 6245 8162 8593 8770 140 4421 2987 9183 5788 9312 5045 8909 8071 3811 8218 5648 8507 3146 7696 6825 3623 9435 8503 3577 960 1794 4729 5393 7023 9228 1462 7604 506 3916 8874 7672 520 4058 1388 5557 2498 6814 2305 6808 4512 6889 6664 8880 5118 9452 9693 9592 9600 5842 3560 1268 4326 1445 6220 3006 5534 6448 2028 4365 6490 3931 4310 8155 5363 9700 8527 6880 5013 1575 4466 3618 5043 5001 9609 3956 6912 4344 3452 6988 4608 270 9665 940 8406 3418 4843 5030 7026 1901 9461 4131 6626 5381 7950 6094 846 7068 8483 3774 3633 2419 3934 4909 2455 7902 1885 6033 8713 400 4437 7471 9998 5080 8425 5210 1771 1738 5141 1188 4692 4161 7606 4196 2067 3703 2317 4263 6688 6639 7282 1347 461 8970 2015 7914 4963 5488 9194 9615 4824 1874 3629 7711 5157 4112 7098 6193 7992 292 9369 8771 1888 3354 6062 9715 867 9157 3427 5862 6886 6682 1785 4053 8289 8647 8163 7504 5637 7167 234 5314 8551 1523 8381 2694 8461 2306 4617 5304 2645 5830 8130 942 5082 3897 7595 9412 9093 537 9050 6845 4555 3044 3181 2330 9994 7626 2984 974 413 8831 9348 307 8923 9251 965 1648 9712 1956 2932 4710 3025 7913 3286 7930 467 1494 7038 1309 4022 6714 6473 612 5127 6484 6825 2881 1911 7279 6720 7483 7551 9748 5955 1241 3349 5947 837 9486 3421 7630 4393 2302 1476 2053 1718 1463 1058 5543 5233 4838 3524 9206 5153 7237 1658 5170 3821 3944 9846 221 5558 9938 6317 9530 4154 1188 2945 2568 4354 4208 150 6067 8309 2058 2638 7031 8584 1118 2712 4047 5831 5880 3336 1863 2841 9619 3313 5002 6517 393 4774 1329 142 3014 5569 5766 3727 7745 961 2412 6932 7132 4609 3329 2605 911 5554 2431 5355 3875 102 8779 7754 9170 6226 5558 2723 4689 5831 1401 1383 2171 548 4751 8348 7410 7519 4711 8856 6773 1752 6843 5751 7951 2380 7040 4641 1602 6067 9956 3591 3971 1635 1288 3120 807 8238 2031 3647 8707 2993 4980 6733 6738 515 9038 1185 6559 1225 7730 3229 3466 9703 3218 7669 167 922 5261 1801 140 388 1679 9517 2446 9544 6045 4072 6473 5734 7924 3136 3979 757 231 6335 9099 8095 327 8245 9142 3061 9007 7481 5122 5623 6027 9348 8959 779 1886 5893 8837 5940 4374 8159 1890 6290 1940 389 490 5730 9420 8942 1122 122 5396 8279 6153 2787 511 4834 3230 2433 5051 3987 6818 618 6839 6351 6514 6497 8878 1906 8628 7384 1195 5608 3312 4982 1698 4351 3393 6363 1476 3431 3780 1618 3182 2291 6162 1649 8629 2523 5401 3204 5752 4346 5742 7940 1529 4433 2255 7757 4773 6805 7821 4786 8831 2527 4604 4997 8980 4478 1571 2944 6237 489 8720 6260 2578 3331 2800 7912 3383 1011 1043 4984 8597 278 9784 7118 7718 8667 7716 6962 5889 6387 8387 5028 9562 846 9347 3154 9544 8009 1925 7890 1782 5311 3776 3438 1675 5393 9691 5413 9033 7324 1026 3100 1574 1232 7475 9370 4060 2665 2088 1618 7936 1532 5770 2695 184 2725 3735 5087 126 8016 2132 6413 2 4815 386 754 4330 6358 6838 1339 4431 8441 6147 3450 3070 1860 5872 7141 471 3712 5023 3853 5970 4928 2549 2391 3728 6517 1784 8919 4992 8968 7100 3902 2284 365 7991 9822 7099 1174 6916 8636 9803 7026 4225 2637 7433 3145 7585 3599 1148 4618 3576 4879 6689 3460 7456 7151 5210 9466 5447 9045 9542 30 1052 4702 9766 9455 3440 9279 3663 3515 7013 1183 9032 9895 6627 5212 1704 6251 502 1538 6999 9035 7508 7222 1657 7052 12 1280 2143 8612 1224 7252 4762 504 9168 8446 4801 1087 2992 1134 7349 7357 8503 8930 9677 3540 821 1624 2404 2136 9501 7199 538 7916 4884 4414 1935 3896 1279 6287 8354 4004 1845 5372 4160 7859 2012 5548 2208 2135 6532 1621 356 806 6078 9600 8545 5605 3322 4401 3730 6338 2026 1966 7311 9429 2952 7519 8159 9403 8339 981 6149 6600 5465 1879 7684 2348 2056 1014 4347 6765 6834 2936 6045 3331 4266 7158 7496 8724 6554 4544 3163 4931 8159 130 4008 1230 3809 2091 6810 1894 406 8011 1637 7252 1876 2809 9216 5587 4372 5661 74 8321 2176 4392 8912 7795 1502 2956 9124 9795 866 5934 6941 33 6623 3541 6663 6391 8373 8043 4430 2835 7854 5570 8157 9279 5498 8073 4827 3870 6974 4735 9381 2983 9646 1390 7213 7073 740 4737 844 1673 5530 3318 6481 4432 88 4090 2227 4266 5367 259 6191 1345 1048 9782 2916 6037 6122 625 8221 1140 7867 690 5719 6691 4651 5142 9967 8438 8618 6312 2262 6180 4345 3126 1395 3332 6634 8963 6768 2000 5592 3307 1095 1112 3099 1945 2832 1132 9258 5686 7797 4176 4632 5659 3893 69 683 2279 6039 571 3484 3366 2337 8858 1357 6221 7284 4735 8958 5382 7911 6892 9481 7544 5750 630 7753 3870 6768 6242 6847 8996 2590 3611 7443 2877 4308 2459 929 7758 4341 3412 2532 2542 2473 8389 2612 3846 8195 7088 4749 1121 4035 5852 3086 3964 9365 5924 9770 3109 1588 1729 3127 6262 8745 2737 5954 9576 2150 3446 7393 7858 4034 6926 7852 5352 3152 8544 5590 7501 5929 2810 246 5024 2493 8327 2619 7719 3651 9008 8569 2455 1512 3822 503 6808 9002 9690 3499 1219 2681 8716 1903 9419 1134 7199 1401 2975 609 5213 4264 3424 9940 6933 1419 3650 3762 1359 2233 9126 4113 2000 2244 4328 1647 6553 586 4306 8120 7183 7331 1925 486 8803 9487 9094 808 4066 7407 9883 5060 6563 1089 4490 3816 8176 7256 6071 2054 3135 8182 9103 4332 7362 9453 6745 4846 8220 5523 4341 1292 3080 7225 3158 2874 3810 4381 4701 6676 3376 3890 7442 3153 3097 823 779 2118 5100 8977 4964 2182 8666 1333 7179 8528 7693 7357 866 2206 1424 5257 4121 8540 6777 8986 3660 7827 5592 3292 3299 9341 1857 5254 2249 3010 674 365 5090 1931 3715 5140 7339 8769 5926 4841 3658 5170 2956 9803 1298 6307 4331 7814 3725 9428 4594 8406 3016 9561 4622 1276 3096 4807 2326 3439 8352 3138 259 2779 7626 6126 2798 7932 7075 2499 6251 6290 1155 8936 7587 7259 3985 1890 2788 231 6517 7241 5319 6428 8822 6869 7727 5969 8457 7000 7127 2837 8809 8592 1076 309 4096 8723 9469 8484 4707 5058 708 4419 1840 3356 9317 6868 9271 8070 8816 3483 2380 4292 5374 5338 9114 4311 6730 863 618 629 1608 5215 7743 4087 2195 1818 58 6936 239 1790 315 1026 3902 8437 3826 1577 8275 2813 2718 4139 2407 8155 5531 6144 4856 3421 5421 3807 4296 4855 1822 4039 6734 6473 8484 4672 3203 2007 552 4107 8390 6493 1875 7319 3205 597 1579 3635 6345 2273 2445 7604 3303 338 1919 3324 1825 7833 9621 8508 1883 6397 6011 2565 899 4892 1586 5824 3911 4365 7510 9175 3668 9362 6375 9068 6939 2102 7875 3183 518 6707 6633 2248 837 8857 2795 8090 7309 880 5381 2065 1664 3700 8859 2145 3280 9551 4500 8717 5794 3048 6545 9658 272 4808 7953 2728 6501 7713 203 8356 2669 2393 9946 6459 28 6456 4638 3802 3009 8063 1547 5014 9252 8424 5611 6791 758 2595 5255 2863 383 1899 7939 2559 3440 3051 6884 2987 7003 3648 9649 520 8679 8360 6355 121 6176 8660 1607 4579 6314 6197 3315 8533 5224 6981 2607 2941 3048 5808 2778 1679 8570 2042 171 6741 4459 5634 6468 9824 4630 6559 1485 1890 6345 4267 1173 4643 8259 2780 8251 6142 4457 6742 1734 2140 4354 3871 7470 8664 2627 5744 4746 2376 3951 3999 3155 8214 4747 1181 7179 9254 250 5391 8713 5277 1257 1174 501 2480 7125 1081 4566 2597 7577 117 8484 9 550 2036 5582 8952 5786 7658 5915 1058 7348 4777 8412 918 2513 3359 7526 6837 9132 5140 6730 2690 8740 6921 7477 4995 4013 8741 7651 5665 9004 7944 3874 4863 684 6570 6087 876 8479 1618 6340 5759 2385 7617 9721 1891 260 2947 4501 9286 5976 2994 2482 7301 5524 6055 2681 7803 2016 905 4147 9143 3207 5286 9949 9264 988 1935 5490 6680 564 2407 271 3345 1181 8105 4545 8129 9660 1277 7388 9788 4262 5669 1298 8510 5656 2080 6935 8811 7691 9947 51 8243 7364 2839 1895 1095 1167 1180 1879 9317 3176 431 1931 5577 8262 9521 5422 8012 1675 557 3855 3275 3302 6790 3648 8746 6327 6632 1527 6203 4747 2992 9597 4740 2607 1227 6734 5227 3200 9861 1895 2532 5473 9401 1721 4436 8668 5417 7173 7108 5585 7022 9156 2530 910 564 1508 9692 2244 8864 7933 9022 479 3993 8072 3546 5258 557 1868 2948 6460 8424 8297 5654 8844 8394 5211 7357 1916 7489 1137 8524 4476 8549 3416 5724 7327 2899 723 819 6113 7620 6209 7037 1044 8665 9801 4369 3475 6692 1736 2218 8534 4343 1240 9890 9307 117 1824 1448 3845 659 7625 7158 1198 712 3442 7432 2084 6676 1434 8275 2487 9903 721 7236 5871 4738 1002 4788 4942 9631 4015 316 5661 8735 2475 3948 1878 9572 2999 1491 2131 149 6059 8668 5965 7618 8423 6351 9669 1135 4461 2862 4688 1433 7292 7569 9349 9091 2617 1998 6664 4207 8422 6298 1748 2788 6681 9259 5928 8149 4515 1889 297 5510 4284 5185 9951 1573 5464 7415 2373 6069 2897 5570 8351 2440 4644 5858 7639 8841 247 9042 4788 3441 5452 5131 7492 4880 9817 3896 3591 6769 3663 4305 9237 6313 3643 2419 7074 1856 5959 7308 7079 2948 1444 3208 9787 4705 7890 4341 6789 3711 3143 6699 1913 6313 8788 7192 7357 7222 8275 4475 4664 3834 262 6543 5740 4007 1791 721 6242 5023 7060 8203 132 6146 2421 4888 7041 4037 1896 4078 6837 8130 3024 2317 3452 2930 5824 468 3878 1463 5091 3293 7542 8131 7287 6650 1446 8603 7291 9492 8390 3543 3487 1025 8031 1668 8629 179 2060 2422 6195 8870 2397 2788 9028 7276 5097 8724 6690 4544 5170 6551 4692 7206 1909 5898 7389 9463 1370 634 8867 6345 1965 1110 330 8536 1606 5767 3646 2576 4346 4300 5502 5698 8832 5541 9403 7546 5336 9629 4381 8354 2754 6797 1501 7716 7293 3705 1868 6336 1279 6920 2300 5913 2679 9674 6476 2856 7556 5079 1717 5384 4262 7729 627 2818 365 6922 1062 2362 5391 3404 590 1822 4495 902 3757 4739 2901 5427 303 4420 4859 5005 5275 7413 2137 835 8616 3265 9088 9748 4250 7654 4164 9844 2120 9203 1793 9871 1205 2629 2669 2756 8899 1798 794 7695 4283 1998 4066 7962 3264 5794 1190 4346 6193 1954 9137 4138 439 5927 5657 8280 6576 3235 9299 8243 6092 2106 114 5905 8694 1891 5758 4701 4380 9336 3002 9340 3184 5264 2716 4706 5792 4943 7411 295 2429 2938 4510 1602 301 2466 2704 4947 1991 9859 5623 1204 8679 33 4787 7693 7184 1913 6577 6777 4660 1855 8851 5525 9076 3090 9022 7653 8100 3036 6704 2590 7427 4282 2920 614 2476 5278 2934 1283 5435 7487 9862 4366 6892 6866 8504 6790 3264 6486 7025 8567 1447 6318 9726 1525 5349 3728 2871 8877 9934 9547 342 5098 7019 6017 1503 4783 542 8054 39 4093 5967 1236 6240 2905 8065 10 8428 2180 5803 5350 3866 7486 3288 6799 9031 2762 4683 5876 5059 257 1563 695 142 546 1952 8102 8478 9303 5666 1099 4401 2204 2905 4484 5660 1709 6431 8948 8962 1635 2956 5062 5231 7403 9672 9166 3595 5373 1893 4433 6883 7935 2002 216 3719 2241 6272 5759 1516 9022 9306 8092 3374 7654 9707 8162 3987 4871 7122 1729 2267 5701 1826 5705 9758 9426 8658 6703 2136 3154 6779 4542 4565 7185 602 3269 9196 7730 278 8140 6078 8097 4745 5682 2570 1363 6905 588 2605 5528 9873 7101 2459 2195 4266 1153 8651 8842 869 7285 7501 6817 2709 7102 4522 4402 7935 8365 6609 2179 3515 3542 1785 1427 4685 7137 6228 7627 6727 8767 6022 4162 6187 7332 8658 1157 773 1631 3494 948 2580 2019 608 1642 4927 3335 2724 6944 4275 6302 5021 592 6038 7794 9090 3132 3883 1104 8103 970 3336 9162 8776 3835 7082 4974 2960 8142 9339 648 6051 2335 7410 754 5895 7410 1222 710 5155 4998 37 2307 820 9456 5232 1703 2024 939 1797 6283 8927 7534 9065 7519 8223 3025 5371 228 7163 720 7129 8040 2426 3200 5060 8071 2179 5823 1395 2840 1930 6327 275 914 411 9945 3698 7881 3573 1967 7919 4570 869 1 6 3190 2199 8407 7286 1558 7470 464 5465 422 405 1334 6132 8099 4323 8604 3265 272 8391 6852 6508 6188 7571 9399 1066 2571 297 7668 1317 9638 1150 3591 568 1832 3802 5709 8450 8759 9586 6948 8256 6388 3146 403 5326 4881 9761 2623 1823 2343 3230 5995 9094 1649 7097 6977 1542 1707 3683 2450 5529 9782 6351 9515 1097 293 3661 6283 9404 9392 4318 5708 7798 8549 2261 8480 5597 9578 4781 5354 6360 9247 9742 1437 6545 8599 3678 9260 2757 8583 4995 761 8739 8454 9412 8759 6945 8531 7943 4464 508 5116 3186 8380 7793 653 6099 4444 1376 4462 1972 5871 9844 7911 6605 5023 8833 9855 5394 7828 9069 2116 6125 1376 2860 5851 5481 7298 7816 4165 9509 6267 574 354 2469 5248 6119 5830 4793 2418 2867 8834 8629 1430 5791 2837 9951 4551 2841 8967 5463 9124 2900 895 9235 1409 3752 4337 5447 2712 4028 5559 5001 7163 5966 5574 6093 9914 2117 1343 1117 2063 7578 9884 566 3153 5128 7777 8480 6202 2743 3079 7106 6936 4892 4180 5168 2045 6372 8734 4149 6397 6926 2505 2311 2086 6070 409 2257 9137 483 1186 2909 3877 8547 8 5275 5709 8391 8193 8527 1154 7333 9043 7228 4028 8612 97 8098 8434 5807 4587 3543 3172 8799 5881 2156 5795 8763 2270 2140 5299 5765 5420 7137 9376 3596 8234 9106 2607 9145 2260 8620 7238 1498 1796 4234 7263 6476 3978 3635 5534 761 7726 6800 876 9112 6155 501 175 5144 5048 5680 7409 2644 4987 6449 1760 8553 8919 797 9226 1036 9010 8604 9586 940 1942 4870 2548 9849 1873 6119 5545 5632 899 4035 3042 4252 5755 4693 7333 2079 5769 7455 5238 8412 3597 1441 2607 2895 991 1931 1235 6738 4437 9738 9426 1913 4305 4026 6831 8086 2801 826 8272 7374 9440 2791 1728 5564 182 7852 1185 82 3388 2851 4584 4520 2868 9328 3192 167 3761 5558 4395 9217 1519 5008 2144 9732 8557 5258 5265 5581 2434 2392 551 4525 2034 8354 1028 3404 9351 1190 5754 6782 2857 2634 9421 2610 753 9309 4388 3829 4804 7502 2918 5712 3077 8017 1980 8668 779 5906 1946 3212 4019 1705 9632 9727 7755 2381 6412 1455 387 2398 1911 5523 5990 1692 5628 9614 4609 3486 9062 3577 8780 9708 1657 2375 2662 3149 8806 7497 2759 8636 467 1836 682 8338 9459 9488 1158 5264 535 2166 7886 4353 1022 9037 6685 497 937 7948 2723 2319 433 3762 4860 6195 4424 3210 6251 4880 9642 557 125 71 4149 9954 432 7589 3708 9852 9367 4505 6608 286 2743 6008 3894 6859 8535 3288 1156 4578 8135 5677 8040 3023 9368 9446 3790 6816 809 7648 1871 6076 6660 6197 5452 2260 8793 464 145 3809 5851 678 8685 4831 1852 3497 2581 1726 7545 150 3903 6207 3534 3728 3714 5826 3198 7629 1760 9443 2082 7297 1240 7659 1891 7510 3564 5955 8934 1999 3032 4996 8053 3723 8414 576 7686 2332 8283 3976 2049 494 3121 6141 2714 1863 1639 8654 3937 2472 1008 2907 8411 8403 2678 5404 3101 9785 4672 2694 5115 4558 8070 8524 4024 7636 1680 894 7062 8924 5080 5091 6472 7201 1435 2178 6313 4615 862 2593 6150 887 5656 7719 3705 6622 1057 6674 4121 7693 5270 4385 2877 8565 3807 3911 5955 8460 7209 6988 1972 9302 1326 2749 5081 2946 7891 914 5791 2604 1434 5402 5173 9868 3308 4034 2216 1548 8097 6660 3449 2624 6605 7121 4298 4101 7646 1575 1797 4022 5395 7180 256 8117 9197 1420 4368 2652 4824 7977 2839 7564 501 5174 2250 2946 2070 2684 6621 5363 322 166 9165 8745 4048 7058 4105 2096 1841 2689 9789 2062 4572 8143 1720 6712 3512 3898 333 560 4433 9457 4940 1997 7705 5574 6851 1190 2051 4701 3218 7921 6422 8621 9828 3806 3589 3513 9646 8602 3723 1689 5884 3107 9264 1300 2332 9205 4747 1417 6221 7213 8847 6120 31 8208 7786 6881 9725 3226 9775 4559 1059 809 6182 1490 843 1628 8759 4455 1975 7767 3870 6882 1193 3424 9057 9191 1807 8172 3094 3143 859 7690 4043 1683 6486 4871 263 1600 7130 1524 2283 1012 9891 3333 8733 7466 2351 2541 2208 2421 6066 2729 1220 8104 9982 6753 9480 112 240 8263 2877 5614 3649 1576 1145 786 6507 6068 8268 6356 9931 882 1155 1174 3317 5779 9196 6000 3661 1922 9577 441 7390 8332 1894 9555 1201 5427 6351 8475 5930 7012 1944 4487 5436 6050 8980 8026 2849 5704 1423 9794 607 4416 1931 5786 2447 435 7887 6234 2858 1210 6687 2903 260 7259 7519 1010 6588 5485 607 7613 1463 5839 5875 9992 2747 8436 8385 3197 8528 854 2491 9047 1608 6253 5300 667 5428 8672 7580 4489 4646 4996 6215 6947 5753 932 2599 3427 2348 3139 2181 9071 1465 5960 5593 6677 6688 7136 4298 7854 7829 4750 3360 5187 9622 1716 2113 8090 5890 4678 7818 4998 104 5163 4319 3917 687 7205 7466 2116 1730 8956 4627 5269 5935 258 1200 7435 9242 532 8217 576 9558 1775 1307 2000 8922 2346 4036 5532 9886 2151 7862 8531 3179 7084 2931 4564 6951 5908 5616 2812 6295 4382 7217 532 2144 4376 6491 412 5645 1606 9570 2104 2991 5989 1292 6010 9160 2042 7335 9784 9405 8475 491 2116 7683 6768 7313 8925 7599 4051 9105 7078 8194 2431 1662 6656 5210 2076 4698 3896 2485 6179 2621 39 6478 6799 4757 5579 7886 1776 2149 599 5862 4750 6232 1476 626 8104 9142 6676 1716 4788 647 6854 9196 4327 8929 9696 453 3737 7479 1433 8735 8611 5823 6448 9653 4771 2225 5674 1355 6015 5723 9759 4847 4683 294 3390 2251 620 6205 1394 7046 4342 6555 4765 317 4423 1247 5453 9662 7834 8042 6112 6927 9501 8465 196 3085 9635 7713 8773 5913 2337 5377 1174 8276 2448 170 9860 4750 2182 5155 6663 5359 2154 5034 8077 46 8051 6273 7806 8650 2915 8742 2389 6003 5861 1668 5892 7714 4777 2915 3714 1050 7457 9725 8301 5364 3804 1589 5177 6362 4568 9341 356 6439 2791 699 5938 3915 8187 2868 9677 8297 8957 3535 3083 3433 9788 2314 541 5952 2219 3362 173 8940 538 4864 5327 879 1536 1283 6601 8624 8024 9397 266 6075 6242 2647 9770 3601 3699 4265 9788 6993 4462 2094 2320 4546 3380 8172 9590 2993 1627 8178 7437 2612 5765 2567 1557 737 4968 1598 2852 7216 1929 4429 8174 7060 8536 7640 8247 7764 5503 9853 3335 8005 7674 508 6295 1206 4473 2238 184 2010 7005 7475 5569 916 3358 9112 6205 3522 7549 3130 1420 6307 1448 5285 1349 7662 9614 6739 5008 8046 6098 5493 1711 8101 4447 9519 8213 6837 6619 9191 1744 6669 7921 8208 7755 7365 9770 8064 7454 3645 6388 3534 4967 2807 6955 2133 6153 2606 9915 3645 9152 2635 5924 8666 5617 848 5220 3639 4920 1036 2745 9428 3539 7041 7549 3367 7491 2393 5859 8178 3231 4614 8381 5796 8668 568 4670 8795 7988 3695 801 8533 3600 4470 6176 1598 6391 8991 3827 8669 3703 7015 5938 4084 5026 1325 269 4876 5578 7449 4413 3067 6623 6288 5619 3303 1132 4869 7929 7075 84 819 4134 5289 2443 5564 9421 3787 6109 3825 1741 8595 8477 4470 8563 1905 5991 7814 772 5117 576 4761 7188 2907 8564 4295 9311 1229 5461 7474 706 3852 1566 3063 5257 1427 7071 8065 6894 7490 7301 4385 3692 879 3818 2660 6234 6632 5747 6998 5611 7811 1414 1187 6246 9347 6786 7117 4099 8660 1371 6686 4804 3534 9934 2630 6403 7369 5136 2064 8163 1909 2735 140 2540 3209 364 2202 1886 4248 1930 7372 8041 875 8253 4778 7992 2321 5986 6756 7573 2473 2384 4628 4111 8580 8338 8951 7031 1404 5943 7874 9631 5520 7122 4780 4950 9060 8801 7290 9176 9329 8749 5472 4046 1022 7226 787 7617 5894 9661 1308 5967 6500 253 8753 2403 3339 1492 6326 7197 7772 6986 4676 4879 1661 6816 4695 3999 7543 8356 1767 3778 9739 3152 6450 5350 8134 9001 5530 84 5744 6598 2882 4431 7925 9954 3554 5833 1099 6627 9989 1206 5778 9274 9692 5061 7699 3124 5284 5967 2728 4721 4254 4611 8978 6415 9628 8355 2984 3850 210 1095 993 6988 8803 2041 5261 23 9229 8199 7188 3358 1660 548 2763 1768 3342 5299 6070 837 4111 205 2697 5840 7867 5669 7402 4314 5441 5572 2531 8557 9624 8628 1020 7445 3678 9321 1142 4189 8783 5262 5492 1862 6691 6105 4552 2904 8229 9658 9024 6739 5120 5150 6806 2654 6744 6437 2838 3731 873 5760 4571 670 5198 4002 3913 8720 8139 8087 6893 2788 2993 5453 5028 7354 407 8680 23 8921 9398 2835 6413 859 4493 9223 897 5150 5008 8747 2522 2527 71 7562 7056 6647 4758 2634 6630 8621 2561 9111 5966 9256 5396 346 877 8232 3602 4570 33 875 776 6709 3870 4227 7204 9959 8400 5369 4765 9618 3694 999 3427 3359 1314 6277 2703 1658 7482 1187 4987 3303 7892 5905 5825 5185 6602 8631 1327 4989 3077 6267 8907 844 4533 9125 6894 6110 8729 1587 7565 4840 2253 702 3530 7114 3160 9079 7086 3484 9428 647 2691 990 6830 2819 919 3176 7116 2782 5459 8027 2967 7523 5203 9639 3739 7859 3380 6317 8003 4783 6321 8999 5421 5408 9276 3327 8257 5447 3107 9017 3529 1094 9228 7175 8393 4096 3591 9072 8340 9793 8385 2413 2155 1471 9869 9517 5092 9049 4988 2247 6593 4566 3502 4434 7530 932 440 6672 4417 2385 6259 8433 5074 1102 5975 442 7306 6890 9236 6558 7807 3023 837 6986 9846 8205 2620 2630 8320 316 9220 7159 6359 6759 6873 334 8255 6715 7341 6703 4991 2140 6120 7451 5139 5402 4875 4636 4241 3605 3891 2567 2837 3963 4784 9636 7742 6821 3571 9146 6461 4364 4406 9129 5673 2327 8183 9687 7032 3610 2411 1529 1400 9453 4373 1355 3664 215 6937 5960 7572 8880 3314 6199 8677 3244 7645 5209 1752 4043 4861 5606 4922 5489 9993 7183 1208 7588 8479 5934 2621 2159 3975 2485 3312 2837 2447 8519 8900 6135 6555 4277 1231 5714 6043 9962 1084 3817 9629 7947 6475 6054 7713 9050 1651 5328 8697 3657 413 2324 6257 5816 6033 5467 5326 1881 531 2537 799 5899 9099 5164 1191 545 3487 2948 4554 7634 6028 6606 4939 6543 4417 8360 2122 6319 5098 6157 5411 3795 4293 8064 8371 473 2343 5591 493 3847 2234 7240 3541 2917 4969 9086 439 5828 9648 7828 6844 1971 6485 7515 4382 9668 8430 8895 5012 5046 2710 8887 657 1266 5119 4741 6413 3208 1658 7113 884 4042 6314 4639 8244 5846 2116 4891 7687 3745 4391 7178 1486 4954 3210 516 9587 7216 3790 9007 1456 6426 892 5235 6644 8010 5425 7072 4250 3244 2632 7031 6349 5059 3313 5101 1157 7185 3423 9039 6800 9223 6613 9241 1469 4292 2117 1174 514 2778 9287 7088 699 2793 7750 5455 2400 7374 4149 9631 4756 6163 1079 5886 1154 1944 1635 180 88 3351 28 7232 9258 4001 7982 5795 4350 4041 5645 2785 6269 6437 6864 2102 4770 3051 8030 4316 4794 3608 8528 7698 7492 5545 1441 3063 5596 9748 13 5800 2408 3776 8242 5389 2049 1131 5559 241 2388 7430 4038 4940 7872 5547 1277 5260 5828 2105 672 7444 4708 6374 5665 297 4814 9043 9181 1605 6041 724 4164 6848 8067 2037 974 3476 9042 1768 6339 6376 7936 9331 6727 2173 7870 5071 1515 7278 3802 4070 7936 6043 8558 8531 2016 3116 7758 8880 2258 3688 1119 8243 7574 5944 141 6280 5850 8260 6849 9929 4404 1593 2578 6621 4183 8150 2122 5510 5101 3692 7762 962 4962 8023 7034 1612 2640 4144 3996 2050 1994 5358 5651 9494 3164 2366 9427 2032 2226 296 4187 9384 1908 1873 1881 2378 8941 5269 5259 3374 6334 8692 803 4146 3253 6415 1598 441 9747 148 5192 2567 8772 7859 8560 623 5361 7477 3062 4166 3940 2529 636 4780 2830 5187 9655 4847 4504 7476 1441 4026 3185 9948 6466 2308 80 6436 8970 2090 572 3591 205 4297 8053 9568 2698 400 5499 6423 3326 9134 9243 3104 3661 5730 759 3949 1352 4136 9034 6333 6960 4045 196 5359 5386 2798 1716 8380 8969 9796 6129 5480 3469 8377 6552 9025 2085 2309 4647 779 9101 9986 7960 2851 6943 3388 2605 4185 5891 3766 3134 8451 2286 2721 7603 6850 8012 8945 4582 1345 2936 8980 7655 837 7299 1995 1101 3187 4237 6955 176 5631 9828 1005 3475 6830 3005 7103 5762 2437 7352 8270 5104 5197 5631 2485 4866 8479 7491 8203 6206 8533 7873 1646 2636 8208 8642 5872 6100 3314 929 3094 4957 8367 5990 9098 8686 2479 6693 8960 5757 979 5131 4220 7670 8508 9163 9475 5900 3226 9936 5155 1661 1793 7133 881 2712 4387 8387 9160 4265 2335 1661 7320 9923 8163 3325 436 4866 9671 7747 7358 9718 2327 4975 4997 9453 1138 4282 4290 3419 218 8017 5654 5775 6877 8423 4127 7511 700 4941 5106 2152 3578 2550 7611 5036 9545 2548 4192 1433 9141 2472 7252 9067 7532 124 3320 510 3884 5029 1852 5337 8040 8417 919 1340 8996 5299 3866 1329 744 4907 9639 8923 7205 6301 9957 8944 6938 6804 7886 106 8312 4105 3170 237 1784 6782 7295 4137 3483 9204 4905 9414 1851 5481 410 567 7802 3755 9309 5841 3519 2747 6042 1748 8829 2524 5859 3905 5187 4038 9886 4885 7965 3307 8534 3960 2176 6288 4949 1837 8289 4095 5186 9847 3600 4811 1051 1725 678 732 5208 5243 9788 7723 7718 6136 4017 2032 4576 2869 2288 3875 9989 7964 7459 8380 4442 3898 2182 7281 1428 8417 34 7568 1289 3987 3258 9315 1277 991 4293 6166 3676 1417 3426 5930 8857 1774 7079 3856 9126 4269 7540 1724 4730 6840 2751 2761 2652 4153 8928 1518 582 9443 3018 4193 5527 1713 4406 7555 1571 1494 4363 3187 7073 9975 6859 2539 1884 409 1246 5986 9165 7669 1478 8167 396 1545 615 4528 8634 100 4180 3619 3119 4703 8774 299 6418 3055 4662 9887 7272 895 8385 7218 9814 6223 178 9905 8492 5676 9291 238 6189 715 5762 2331 9153 3060 5461 7076 6842 4595 6677 4490 9751 9261 6820 3734 2456 5013 8787 527 9593 914 5875 5545 6620 3930 2300 6945 532 7771 848 3695 3200 7287 8437 589 3725 451 7034 829 533 7327 6771 2084 3041 2750 4152 2471 1395 9460 1958 3739 962 6522 3032 1628 2813 3436 1677 7736 4259 1826 6151 4662 2183 1115 6407 7936 2302 9599 9368 9694 1383 8138 4206 323 724 2071 6675 2249 3981 5107 3293 4114 3650 2311 143 903 6307 9588 1311 5322 9888 2077 1428 8434 3343 7753 6674 103 4705 6542 5187 5610 5373 5233 1857 152 8487 4135 2811 7058 1222 4517 49 9494 4639 9629 4228 640 4346 9505 9451 4444 3472 3228 9103 7447 2235 3004 3272 5945 2114 7127 9717 4336 7935 9448 9487 9005 3009 1339 9939 2517 4542 9498 4561 5384 5740 1176 9830 7346 7563 2100 4964 9437 7601 9377 3110 6032 7086 8902 7175 3856 8639 6713 9661 8313 2444 241 3657 5939 6640 7551 7147 3979 5796 60 686 4734 2780 7363 3028 8747 6263 6500 176 1224 6730 6566 2880 9550 1475 3408 4460 1525 8405 253 6361 5614 2731 9137 5949 4974 523 4141 7307 8763 2098 6039 9944 9419 3198 7083 804 8298 8984 584 3180 902 681 951 4270 7447 5879 7102 7578 2201 1291 2495 1021 6018 2602 2670 5279 3678 1208 2173 7769 4189 4365 1270 3531 8009 4055 7299 6355 3214 9718 7722 3317 5633 2333 7345 2518 3368 4735 5036 4510 6749 6416 4150 7833 2162 5776 4558 5193 8088 3910 5974 4683 3685 7791 4066 4890 3637 3101 8035 5281 5346 4629 6671 4786 9365 2426 9661 1888 6098 7202 1722 7248 436 6732 8395 9344 6582 9472 8986 4207 4227 8516 4937 9539 62 1378 7633 5941 7114 6145 440 3050 2374 8020 432 2524 9621 1942 6069 4664 9248 8598 6337 71 279 714 6337 5077 2038 3148 4503 1401 9871 2912 1604 1130 2796 2057 384 8276 7853 570 8735 6240 9108 6420 6204 84 4967 1533 6458 4568 5122 4176 6817 3667 9872 4 3400 2554 5738 2390 3300 821 8385 4845 5678 3035 7463 1106 3600 336 5334 4805 8327 5096 2791 4524 6095 2055 3156 9925 1301 4755 5585 7512 2810 6306 8515 4947 1096 1050 1357 202 356 2506 9965 564 6588 9287 7370 6837 2429 2602 7744 3973 4191 4600 189 1780 7455 4238 9042 3408 3561 5488 2800 1486 3311 3945 6175 6632 3058 5079 4566 2601 1043 8177 2359 4518 4191 2304 2071 8632 1626 7143 1432 843 1373 552 9635 8244 6459 2896 4801 9162 9314 5131 3797 5822 659 1863 7114 9288 6025 7450 9581 2297 9790 8721 7934 9595 5859 5951 2531 8936 2542 7852 4355 9600 9459 447 801 2436 6623 4476 8898 2223 3676 2560 5723 4539 4994 5412 1738 2201 1725 1935 8908 2359 9202 7375 6087 4615 1536 9501 4225 7871 7976 2906 277 7124 3595 4740 8911 26 8383 8144 6873 8834 9606 8833 5031 8920 7888 9579 7979 7273 5185 156 532 1511 4133 4281 2789 8792 6659 3024 8570 4696 8533 6407 4588 6083 3227 1495 3491 3207 4361 5962 4971 4811 8009 3982 6181 9812 1851", "output": "2206\n1299\n3524\n6159\n5581\n4020\n3027\n1538\n847\n728\n5560\n3014\n3795\n3950\n623\n3315", "type": "stdin_stdout" } ] }
taco
verifiable_code
https://codeforces.com/problemset/problem/173/B
Solve the following coding problem using the programming language python: "The Chamber of Secrets has been opened again" — this news has spread all around Hogwarts and some of the students have been petrified due to seeing the basilisk. Dumbledore got fired and now Harry is trying to enter the Chamber of Secrets. These aren't good news for Lord Voldemort. The problem is, he doesn't want anybody to be able to enter the chamber. The Dark Lord is going to be busy sucking life out of Ginny. The Chamber of Secrets is an n × m rectangular grid in which some of the cells are columns. A light ray (and a basilisk's gaze) passes through the columns without changing its direction. But with some spell we can make a column magic to reflect the light ray (or the gaze) in all four directions when it receives the ray. This is shown in the figure below. <image> The left light ray passes through a regular column, and the right ray — through the magic column. The basilisk is located at the right side of the lower right cell of the grid and is looking to the left (in the direction of the lower left cell). According to the legend, anyone who meets a basilisk's gaze directly dies immediately. But if someone meets a basilisk's gaze through a column, this person will get petrified. We know that the door to the Chamber is located on the left side of the upper left corner of the grid and anyone who wants to enter will look in the direction of its movement (in the direction of the upper right cell) from that position. <image> This figure illustrates the first sample test. Given the dimensions of the chamber and the location of regular columns, Lord Voldemort has asked you to find the minimum number of columns that we need to make magic so that anyone who wants to enter the chamber would be petrified or just declare that it's impossible to secure the chamber. Input The first line of the input contains two integer numbers n and m (2 ≤ n, m ≤ 1000). Each of the next n lines contains m characters. Each character is either "." or "#" and represents one cell of the Chamber grid. It's "." if the corresponding cell is empty and "#" if it's a regular column. Output Print the minimum number of columns to make magic or -1 if it's impossible to do. Examples Input 3 3 .#. ... .#. Output 2 Input 4 3 ##. ... .#. .#. Output 2 Note The figure above shows the first sample test. In the first sample we should make both columns magic. The dragon figure represents the basilisk and the binoculars represent the person who will enter the Chamber of secrets. The black star shows the place where the person will be petrified. Yellow lines represent basilisk gaze moving through columns. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python import os import sys from io import BytesIO, IOBase BUFSIZE = 8192 class FastIO(IOBase): newlines = 0 def __init__(self, file): self._fd = file.fileno() self.buffer = BytesIO() self.writable = 'x' in file.mode or 'r' not in file.mode self.write = self.buffer.write if self.writable else None def read(self): while True: b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE)) if not b: break ptr = self.buffer.tell() (self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)) self.newlines = 0 return self.buffer.read() def readline(self): while self.newlines == 0: b = os.read(self._fd, max(os.fstat(self._fd).st_size, BUFSIZE)) self.newlines = b.count(b'\n') + (not b) ptr = self.buffer.tell() (self.buffer.seek(0, 2), self.buffer.write(b), self.buffer.seek(ptr)) self.newlines -= 1 return self.buffer.readline() def flush(self): if self.writable: os.write(self._fd, self.buffer.getvalue()) (self.buffer.truncate(0), self.buffer.seek(0)) class IOWrapper(IOBase): def __init__(self, file): self.buffer = FastIO(file) self.flush = self.buffer.flush self.writable = self.buffer.writable self.write = lambda s: self.buffer.write(s.encode('ascii')) self.read = lambda : self.buffer.read().decode('ascii') self.readline = lambda : self.buffer.readline().decode('ascii') (sys.stdin, sys.stdout) = (IOWrapper(sys.stdin), IOWrapper(sys.stdout)) input = lambda : sys.stdin.readline().rstrip('\r\n') import math import bisect mod = 998244353 from collections import Counter import bisect from heapq import * from collections import defaultdict, deque (n, m) = map(int, input().split()) g = [[] for i in range(n + m)] for i in range(n): s = input() for (j, x) in enumerate(s): if x == '#': g[i].append(n + j) g[n + j].append(i) q = deque([0]) dis = [10 ** 9] * (n + m) dis[0] = 0 while q: node = q.popleft() for i in g[node]: if dis[i] > dis[node] + 1: dis[i] = dis[node] + 1 q.append(i) print(-1 if dis[n - 1] == 10 ** 9 else dis[n - 1]) ```
vfc_143241
{ "difficulty": "medium_hard", "memory_limit": "256.0 megabytes", "memory_limit_bytes": null, "problem_url": "https://codeforces.com/problemset/problem/173/B", "time_limit": "2.0 seconds" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "5 5\n.....\n.#...\n.....\n.....\n#.###\n", "output": "-1\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "3 4\n..##\n....\n..#.\n", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "2 42\n..........#.......#..........###........#.\n.....#######.......#..#....#...##.........\n", "output": "2\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "6 8\n...##...\n.#.#.#.#\n#.#.#.#.\n.#.#.#.#\n#.#.#.#.\n#.......\n", "output": "4\n", "type": "stdin_stdout" }, { "fn_name": null, "input": "4 3\n#.#\n.##\n...\n.#.\n", "output": "4\n", "type": "stdin_stdout" } ] }
taco
verifiable_code
Solve the following coding problem using the programming language python: Shil, Aditya and Utkarsh go to a candy shop. There are N candies present in the shop, which are indexed from 1 to N. All three of them select one candy to eat. However, a candy tastes delicious if and only if, the index of candy chosen by Shil is strictly less than the index of candy chosen by Aditya and the index of candy chosen by Aditya is strictly greater than index of candy chosen by Utkarsh. To state in simple Mathematical terms, if Shil chooses i^th candy, Aditya chooses j^th candy and Utkarsh chooses k^th candy, then the candies would taste delicious if and only if i < j and j > k. You have to find the total number of ways in which they can choose candies such that the candies would taste delicious to them. Note that all of them choose distinct number of candies i.e., i!=j and j!=k and i!=k. Input format: The only line of input consists of a single integer N denoting the total number of candies. Output format: Find the total number of ways by which all three can choose candies such that the candies would taste delicious to them. Constraints: 3 ≤ N ≤ 1000 SAMPLE INPUT 4 SAMPLE OUTPUT 8 Explanation All the possible ways to choose candies are: [1,3,2] [2,3,1] [2,4,3] [3,4,2] [1,4,3] [3,4,1] [2,4,1] [1,4,2] The first integer in all the tuples denotes index of candy chosen by Shil, the second integer denotes index of candy chosen by Aditya and the third integer denotes index of candy chosen by Utkarsh. The input will be stdin and you should print your solution to stdout Now solve the problem and return the code.
```python ''' # Read input from stdin and provide input before running code name = raw_input('What is your name?\n') print 'Hi, %s.' % name ''' n=eval(input()); ans=n*(n-1)*(n-2)/3 print(ans) ```
vfc_143245
{ "difficulty": "easy", "memory_limit": null, "memory_limit_bytes": null, "problem_url": null, "time_limit": "None" }
{ "language": "python", "test_cases": [ { "fn_name": null, "input": "1000", "output": "224073500", "type": "stdin_stdout" }, { "fn_name": null, "input": "550", "output": "55156200", "type": "stdin_stdout" }, { "fn_name": null, "input": "501", "output": "71282198", "type": "stdin_stdout" }, { "fn_name": null, "input": "864", "output": "41666500", "type": "stdin_stdout" } ] }