@cyrilverloop/codingame-configuration 1.22.0 → 1.24.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (412) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/LICENSE +1 -1
  3. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.cpp +19 -0
  4. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.java +18 -0
  5. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.js +8 -0
  6. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.php +9 -0
  7. package/config/easy/MiniCPUInstructionDecoder/code/CGCode.ts +8 -0
  8. package/config/easy/MiniCPUInstructionDecoder/config.json +63 -0
  9. package/config/easy/MiniCPUInstructionDecoder/input/01 - Boot Sequence.txt +1 -0
  10. package/config/easy/MiniCPUInstructionDecoder/input/02 - Multiply Core.txt +1 -0
  11. package/config/easy/MiniCPUInstructionDecoder/input/03 - INC and DEC.txt +1 -0
  12. package/config/easy/MiniCPUInstructionDecoder/input/04 - INC Overflow.txt +1 -0
  13. package/config/easy/MiniCPUInstructionDecoder/input/05 - DEC Underflow.txt +1 -0
  14. package/config/easy/MiniCPUInstructionDecoder/input/06 - ADD Overflow.txt +1 -0
  15. package/config/easy/MiniCPUInstructionDecoder/input/07 - SUB Underflow.txt +1 -0
  16. package/config/easy/MiniCPUInstructionDecoder/input/08 - MUL Overflow.txt +1 -0
  17. package/config/easy/MiniCPUInstructionDecoder/input/09 - Mixed Operations.txt +1 -0
  18. package/config/easy/MiniCPUInstructionDecoder/input/10 - Immediate Halt.txt +1 -0
  19. package/config/easy/MiniCPUInstructionDecoder/input/11 - MOV Overwrite.txt +1 -0
  20. package/config/easy/MiniCPUInstructionDecoder/output/01 - Boot Sequence.txt +4 -0
  21. package/config/easy/MiniCPUInstructionDecoder/output/02 - Multiply Core.txt +4 -0
  22. package/config/easy/MiniCPUInstructionDecoder/output/03 - INC and DEC.txt +4 -0
  23. package/config/easy/MiniCPUInstructionDecoder/output/04 - INC Overflow.txt +4 -0
  24. package/config/easy/MiniCPUInstructionDecoder/output/05 - DEC Underflow.txt +4 -0
  25. package/config/easy/MiniCPUInstructionDecoder/output/06 - ADD Overflow.txt +4 -0
  26. package/config/easy/MiniCPUInstructionDecoder/output/07 - SUB Underflow.txt +4 -0
  27. package/config/easy/MiniCPUInstructionDecoder/output/08 - MUL Overflow.txt +4 -0
  28. package/config/easy/MiniCPUInstructionDecoder/output/09 - Mixed Operations.txt +4 -0
  29. package/config/easy/MiniCPUInstructionDecoder/output/10 - Immediate Halt.txt +4 -0
  30. package/config/easy/MiniCPUInstructionDecoder/output/11 - MOV Overwrite.txt +4 -0
  31. package/config/easy/SimpleDiffTool/code/CGCode.cpp +29 -0
  32. package/config/easy/SimpleDiffTool/code/CGCode.java +30 -0
  33. package/config/easy/SimpleDiffTool/code/CGCode.js +14 -0
  34. package/config/easy/SimpleDiffTool/code/CGCode.php +17 -0
  35. package/config/easy/SimpleDiffTool/code/CGCode.ts +14 -0
  36. package/config/easy/SimpleDiffTool/config.json +78 -0
  37. package/config/easy/SimpleDiffTool/input/01 - Test - Add by content.txt +10 -0
  38. package/config/easy/SimpleDiffTool/input/02 - Test - Add by number.txt +10 -0
  39. package/config/easy/SimpleDiffTool/input/03 - Test - Delete by content.txt +8 -0
  40. package/config/easy/SimpleDiffTool/input/04 - Test - Delete by number.txt +8 -0
  41. package/config/easy/SimpleDiffTool/input/05 - Test - Change by content.txt +9 -0
  42. package/config/easy/SimpleDiffTool/input/06 - Test - Change by number.txt +9 -0
  43. package/config/easy/SimpleDiffTool/input/07 - Test - No diffs by content.txt +9 -0
  44. package/config/easy/SimpleDiffTool/input/08 - Test - No diffs by number.txt +9 -0
  45. package/config/easy/SimpleDiffTool/input/09 - Test - Moved lines by content.txt +9 -0
  46. package/config/easy/SimpleDiffTool/input/10 - Test - Moved lines by number.txt +9 -0
  47. package/config/easy/SimpleDiffTool/input/11 - Test - Multiple diffs by content.txt +24 -0
  48. package/config/easy/SimpleDiffTool/input/12 - Test - Multiple diffs by number.txt +24 -0
  49. package/config/easy/SimpleDiffTool/input/13 - Test - No lines by content.txt +3 -0
  50. package/config/easy/SimpleDiffTool/input/14 - Test - No lines by number.txt +3 -0
  51. package/config/easy/SimpleDiffTool/output/01 - Test - Add by content.txt +1 -0
  52. package/config/easy/SimpleDiffTool/output/02 - Test - Add by number.txt +2 -0
  53. package/config/easy/SimpleDiffTool/output/03 - Test - Delete by content.txt +1 -0
  54. package/config/easy/SimpleDiffTool/output/04 - Test - Delete by number.txt +2 -0
  55. package/config/easy/SimpleDiffTool/output/05 - Test - Change by content.txt +2 -0
  56. package/config/easy/SimpleDiffTool/output/06 - Test - Change by number.txt +1 -0
  57. package/config/easy/SimpleDiffTool/output/07 - Test - No diffs by content.txt +1 -0
  58. package/config/easy/SimpleDiffTool/output/08 - Test - No diffs by number.txt +1 -0
  59. package/config/easy/SimpleDiffTool/output/09 - Test - Moved lines by content.txt +3 -0
  60. package/config/easy/SimpleDiffTool/output/10 - Test - Moved lines by number.txt +3 -0
  61. package/config/easy/SimpleDiffTool/output/11 - Test - Multiple diffs by content.txt +9 -0
  62. package/config/easy/SimpleDiffTool/output/12 - Test - Multiple diffs by number.txt +5 -0
  63. package/config/easy/SimpleDiffTool/output/13 - Test - No lines by content.txt +1 -0
  64. package/config/easy/SimpleDiffTool/output/14 - Test - No lines by number.txt +1 -0
  65. package/config/easy/Snap/code/CGCode.cpp +28 -0
  66. package/config/easy/Snap/code/CGCode.java +24 -0
  67. package/config/easy/Snap/code/CGCode.js +14 -0
  68. package/config/easy/Snap/code/CGCode.php +17 -0
  69. package/config/easy/Snap/code/CGCode.ts +14 -0
  70. package/config/easy/Snap/config.json +93 -0
  71. package/config/easy/Snap/input/01 - Player 1 Win.txt +10 -0
  72. package/config/easy/Snap/input/02 - Player 2 Win.txt +12 -0
  73. package/config/easy/Snap/input/03 - Snapless.txt +22 -0
  74. package/config/easy/Snap/input/04 - Clutch Save.txt +30 -0
  75. package/config/easy/Snap/input/05 - Almost Clutch Save.txt +54 -0
  76. package/config/easy/Snap/input/06 - Quick Game.txt +4 -0
  77. package/config/easy/Snap/input/07 - Very Quick Game.txt +3 -0
  78. package/config/easy/Snap/input/08 - Lucky Shuffle.txt +22 -0
  79. package/config/easy/Snap/input/09 - Unfair Shuffle 1.txt +24 -0
  80. package/config/easy/Snap/input/10 - Unfair Shuffle 2.txt +25 -0
  81. package/config/easy/Snap/input/11 - Unfair Shuffle 3.txt +54 -0
  82. package/config/easy/Snap/input/12 - Standard Deck 1.txt +54 -0
  83. package/config/easy/Snap/input/13 - Standard Deck 2.txt +54 -0
  84. package/config/easy/Snap/input/14 - Standard Deck 3.txt +54 -0
  85. package/config/easy/Snap/input/15 - Standard Deck 4.txt +54 -0
  86. package/config/easy/Snap/input/16 - Standard Deck 5.txt +54 -0
  87. package/config/easy/Snap/input/17 - Standard Deck 6.txt +54 -0
  88. package/config/easy/Snap/output/01 - Player 1 Win.txt +2 -0
  89. package/config/easy/Snap/output/02 - Player 2 Win.txt +2 -0
  90. package/config/easy/Snap/output/03 - Snapless.txt +2 -0
  91. package/config/easy/Snap/output/04 - Clutch Save.txt +2 -0
  92. package/config/easy/Snap/output/05 - Almost Clutch Save.txt +2 -0
  93. package/config/easy/Snap/output/06 - Quick Game.txt +2 -0
  94. package/config/easy/Snap/output/07 - Very Quick Game.txt +2 -0
  95. package/config/easy/Snap/output/08 - Lucky Shuffle.txt +2 -0
  96. package/config/easy/Snap/output/09 - Unfair Shuffle 1.txt +2 -0
  97. package/config/easy/Snap/output/10 - Unfair Shuffle 2.txt +2 -0
  98. package/config/easy/Snap/output/11 - Unfair Shuffle 3.txt +2 -0
  99. package/config/easy/Snap/output/12 - Standard Deck 1.txt +2 -0
  100. package/config/easy/Snap/output/13 - Standard Deck 2.txt +2 -0
  101. package/config/easy/Snap/output/14 - Standard Deck 3.txt +2 -0
  102. package/config/easy/Snap/output/15 - Standard Deck 4.txt +2 -0
  103. package/config/easy/Snap/output/16 - Standard Deck 5.txt +2 -0
  104. package/config/easy/Snap/output/17 - Standard Deck 6.txt +2 -0
  105. package/config/easy/WhatADessert/code/CGCode.cpp +20 -0
  106. package/config/easy/WhatADessert/code/CGCode.java +19 -0
  107. package/config/easy/WhatADessert/code/CGCode.js +10 -0
  108. package/config/easy/WhatADessert/code/CGCode.php +7 -0
  109. package/config/easy/WhatADessert/code/CGCode.ts +10 -0
  110. package/config/easy/WhatADessert/config.json +33 -0
  111. package/config/easy/WhatADessert/input/01 - test 1.txt +1 -0
  112. package/config/easy/WhatADessert/input/02 - test 2.txt +1 -0
  113. package/config/easy/WhatADessert/input/03 - test 3.txt +1 -0
  114. package/config/easy/WhatADessert/input/04 - test 4.txt +1 -0
  115. package/config/easy/WhatADessert/input/05 - test 5.txt +1 -0
  116. package/config/easy/WhatADessert/output/01 - test 1.txt +1 -0
  117. package/config/easy/WhatADessert/output/02 - test 2.txt +1 -0
  118. package/config/easy/WhatADessert/output/03 - test 3.txt +1 -0
  119. package/config/easy/WhatADessert/output/04 - test 4.txt +1 -0
  120. package/config/easy/WhatADessert/output/05 - test 5.txt +1 -0
  121. package/config/{medium → hard}/GuessingDigits/config.json +1 -1
  122. package/config/hard/MountainRange/code/CGCode.cpp +22 -0
  123. package/config/hard/MountainRange/code/CGCode.java +23 -0
  124. package/config/hard/MountainRange/code/CGCode.js +11 -0
  125. package/config/hard/MountainRange/code/CGCode.php +11 -0
  126. package/config/hard/MountainRange/code/CGCode.ts +11 -0
  127. package/config/hard/MountainRange/config.json +123 -0
  128. package/config/hard/MountainRange/input/01 - Two summits.txt +7 -0
  129. package/config/hard/MountainRange/input/02 - Close summits.txt +7 -0
  130. package/config/hard/MountainRange/input/03 - Row of 11 peaks.txt +3 -0
  131. package/config/hard/MountainRange/input/04 - Two ridges.txt +13 -0
  132. package/config/hard/MountainRange/input/05 - Flat summits.txt +8 -0
  133. package/config/hard/MountainRange/input/06 - Aligned mountains.txt +16 -0
  134. package/config/hard/MountainRange/input/07 - Aligned valleys.txt +19 -0
  135. package/config/hard/MountainRange/input/08 - Intersecting ridges.txt +9 -0
  136. package/config/hard/MountainRange/input/09 - Nested mountains.txt +11 -0
  137. package/config/hard/MountainRange/input/10 - 8 + 8 + 6 + 6.txt +9 -0
  138. package/config/hard/MountainRange/input/11 - Partially hidden summit.txt +6 -0
  139. package/config/hard/MountainRange/input/12 - Test case of User123.txt +11 -0
  140. package/config/hard/MountainRange/input/13 - Two in front of three.txt +8 -0
  141. package/config/hard/MountainRange/input/14 - Two in front of one big mountain.txt +11 -0
  142. package/config/hard/MountainRange/input/15 - Four in front of one flat summit.txt +8 -0
  143. package/config/hard/MountainRange/input/16 - 8 pointed summits + 1 flat.txt +12 -0
  144. package/config/hard/MountainRange/input/17 - 2 + 3 + 2 + 3 + 2 + 2 + 2 + 2.txt +25 -0
  145. package/config/hard/MountainRange/input/18 - One in front of three.txt +12 -0
  146. package/config/hard/MountainRange/input/19 - Peak, flat summit, hidden slope.txt +9 -0
  147. package/config/hard/MountainRange/input/20 - Three summits, one hidden slope.txt +14 -0
  148. package/config/hard/MountainRange/input/21 - Two pairs.txt +8 -0
  149. package/config/hard/MountainRange/input/22 - 4 + 3 + 4 + 3 + 1 + 1.txt +14 -0
  150. package/config/hard/MountainRange/input/23 - 4 + 3 + 2 + 3 + 1 + 3 + 1 + 1.txt +14 -0
  151. package/config/hard/MountainRange/output/03 - Row of 11 peaks.txt +1 -0
  152. package/config/hard/MountainRange/output/04 - Two ridges.txt +1 -0
  153. package/config/hard/MountainRange/output/07 - Aligned valleys.txt +1 -0
  154. package/config/hard/MountainRange/output/08 - Intersecting ridges.txt +1 -0
  155. package/config/hard/MountainRange/output/09 - Nested mountains.txt +1 -0
  156. package/config/hard/MountainRange/output/10 - 8 + 8 + 6 + 6.txt +1 -0
  157. package/config/hard/MountainRange/output/11 - Partially hidden summit.txt +1 -0
  158. package/config/hard/MountainRange/output/12 - Test case of User123.txt +1 -0
  159. package/config/hard/MountainRange/output/13 - Two in front of three.txt +1 -0
  160. package/config/hard/MountainRange/output/14 - Two in front of one big mountain.txt +1 -0
  161. package/config/hard/MountainRange/output/15 - Four in front of one flat summit.txt +1 -0
  162. package/config/hard/MountainRange/output/16 - 8 pointed summits + 1 flat.txt +1 -0
  163. package/config/hard/MountainRange/output/17 - 2 + 3 + 2 + 3 + 2 + 2 + 2 + 2.txt +1 -0
  164. package/config/hard/MountainRange/output/19 - Peak, flat summit, hidden slope.txt +1 -0
  165. package/config/hard/MountainRange/output/20 - Three summits, one hidden slope.txt +1 -0
  166. package/config/hard/MountainRange/output/21 - Two pairs.txt +1 -0
  167. package/config/hard/MountainRange/output/22 - 4 + 3 + 4 + 3 + 1 + 1.txt +1 -0
  168. package/config/hard/MountainRange/output/23 - 4 + 3 + 2 + 3 + 1 + 3 + 1 + 1.txt +1 -0
  169. package/config/{medium → hard}/ParseSQLQueries/config.json +1 -1
  170. package/config/{expert → hard}/RecurringDecimals/config.json +1 -1
  171. package/config/{medium → hard}/Surakarta/config.json +1 -1
  172. package/config/hard/Surakarta/output/02 - multiple ways.txt +1 -0
  173. package/config/hard/Surakarta/output/04 - pass on yourself.txt +1 -0
  174. package/config/hard/Surakarta/output/05 - angles are not OK.txt +1 -0
  175. package/config/hard/Surakarta/output/07 - it works.txt +1 -0
  176. package/config/hard/Surakarta/output/10 - real test.txt +1 -0
  177. package/config/medium/DistinctCircularLinkedLists/code/CGCode.cpp +21 -0
  178. package/config/medium/DistinctCircularLinkedLists/code/CGCode.java +19 -0
  179. package/config/medium/DistinctCircularLinkedLists/code/CGCode.js +9 -0
  180. package/config/medium/DistinctCircularLinkedLists/code/CGCode.php +11 -0
  181. package/config/medium/DistinctCircularLinkedLists/code/CGCode.ts +9 -0
  182. package/config/medium/DistinctCircularLinkedLists/config.json +103 -0
  183. package/config/medium/DistinctCircularLinkedLists/input/01 - Example.txt +4 -0
  184. package/config/medium/DistinctCircularLinkedLists/input/02 - Random Nodes.txt +5 -0
  185. package/config/medium/DistinctCircularLinkedLists/input/03 - More Nodes.txt +8 -0
  186. package/config/medium/DistinctCircularLinkedLists/input/04 - Just One.txt +2 -0
  187. package/config/medium/DistinctCircularLinkedLists/input/05 - Even More Nodes.txt +10 -0
  188. package/config/medium/DistinctCircularLinkedLists/input/06 - Repeated Nodes.txt +6 -0
  189. package/config/medium/DistinctCircularLinkedLists/input/07 - Multiple Repeating Nodes.txt +9 -0
  190. package/config/medium/DistinctCircularLinkedLists/input/08 - Just One Again.txt +10 -0
  191. package/config/medium/DistinctCircularLinkedLists/input/09 - Good Pairing.txt +9 -0
  192. package/config/medium/DistinctCircularLinkedLists/input/10 - More Nodes 2.txt +13 -0
  193. package/config/medium/DistinctCircularLinkedLists/input/11 - Similar CLLs.txt +17 -0
  194. package/config/medium/DistinctCircularLinkedLists/input/12 - Even More Nodes 2.txt +31 -0
  195. package/config/medium/DistinctCircularLinkedLists/input/13 - Large CLLs.txt +61 -0
  196. package/config/medium/DistinctCircularLinkedLists/input/14 - Many Different Nodes.txt +101 -0
  197. package/config/medium/DistinctCircularLinkedLists/input/15 - Node Spam.txt +497 -0
  198. package/config/medium/DistinctCircularLinkedLists/input/16 - More Node Spam.txt +1000 -0
  199. package/config/medium/DistinctCircularLinkedLists/input/17 - Very Similar CLLs.txt +1985 -0
  200. package/config/medium/DistinctCircularLinkedLists/input/18 - Too Similar CLLs.txt +3361 -0
  201. package/config/medium/DistinctCircularLinkedLists/input/19 - Absolute Limit.txt +3997 -0
  202. package/config/medium/DistinctCircularLinkedLists/output/01 - Example.txt +1 -0
  203. package/config/medium/DistinctCircularLinkedLists/output/02 - Random Nodes.txt +1 -0
  204. package/config/medium/DistinctCircularLinkedLists/output/03 - More Nodes.txt +1 -0
  205. package/config/medium/DistinctCircularLinkedLists/output/04 - Just One.txt +1 -0
  206. package/config/medium/DistinctCircularLinkedLists/output/05 - Even More Nodes.txt +1 -0
  207. package/config/medium/DistinctCircularLinkedLists/output/06 - Repeated Nodes.txt +1 -0
  208. package/config/medium/DistinctCircularLinkedLists/output/07 - Multiple Repeating Nodes.txt +1 -0
  209. package/config/medium/DistinctCircularLinkedLists/output/08 - Just One Again.txt +1 -0
  210. package/config/medium/DistinctCircularLinkedLists/output/09 - Good Pairing.txt +1 -0
  211. package/config/medium/DistinctCircularLinkedLists/output/10 - More Nodes 2.txt +1 -0
  212. package/config/medium/DistinctCircularLinkedLists/output/11 - Similar CLLs.txt +1 -0
  213. package/config/medium/DistinctCircularLinkedLists/output/12 - Even More Nodes 2.txt +1 -0
  214. package/config/medium/DistinctCircularLinkedLists/output/13 - Large CLLs.txt +1 -0
  215. package/config/medium/DistinctCircularLinkedLists/output/14 - Many Different Nodes.txt +1 -0
  216. package/config/medium/DistinctCircularLinkedLists/output/15 - Node Spam.txt +1 -0
  217. package/config/medium/DistinctCircularLinkedLists/output/16 - More Node Spam.txt +1 -0
  218. package/config/medium/DistinctCircularLinkedLists/output/17 - Very Similar CLLs.txt +1 -0
  219. package/config/medium/DistinctCircularLinkedLists/output/18 - Too Similar CLLs.txt +1 -0
  220. package/config/medium/DistinctCircularLinkedLists/output/19 - Absolute Limit.txt +1 -0
  221. package/config/{easy → medium}/NoMorePythonsPlease/config.json +1 -1
  222. package/config/medium/PolygonEquilibrium/code/CGCode.cpp +23 -0
  223. package/config/medium/PolygonEquilibrium/code/CGCode.java +21 -0
  224. package/config/medium/PolygonEquilibrium/code/CGCode.js +12 -0
  225. package/config/medium/PolygonEquilibrium/code/CGCode.php +12 -0
  226. package/config/medium/PolygonEquilibrium/code/CGCode.ts +12 -0
  227. package/config/medium/PolygonEquilibrium/config.json +73 -0
  228. package/config/medium/PolygonEquilibrium/input/01 - Simple triangle.txt +4 -0
  229. package/config/medium/PolygonEquilibrium/input/02 - Tipping triangle.txt +4 -0
  230. package/config/medium/PolygonEquilibrium/input/03 - Trapezoid.txt +5 -0
  231. package/config/medium/PolygonEquilibrium/input/04 - Regular Octogon.txt +9 -0
  232. package/config/medium/PolygonEquilibrium/input/05 - An L-shape.txt +7 -0
  233. package/config/medium/PolygonEquilibrium/input/06 - A T-shape.txt +9 -0
  234. package/config/medium/PolygonEquilibrium/input/07 - test 7.txt +12 -0
  235. package/config/medium/PolygonEquilibrium/input/08 - test 8.txt +18 -0
  236. package/config/medium/PolygonEquilibrium/input/09 - Centroid outside of polygon.txt +19 -0
  237. package/config/medium/PolygonEquilibrium/input/10 - Multiple vertices supporting segment.txt +7 -0
  238. package/config/medium/PolygonEquilibrium/input/11 - Weird shape.txt +12 -0
  239. package/config/medium/PolygonEquilibrium/input/12 - Barely balanced.txt +5 -0
  240. package/config/medium/PolygonEquilibrium/input/13 - CG.txt +43 -0
  241. package/config/medium/PolygonEquilibrium/output/01 - Simple triangle.txt +2 -0
  242. package/config/medium/PolygonEquilibrium/output/02 - Tipping triangle.txt +2 -0
  243. package/config/medium/PolygonEquilibrium/output/03 - Trapezoid.txt +2 -0
  244. package/config/medium/PolygonEquilibrium/output/04 - Regular Octogon.txt +2 -0
  245. package/config/medium/PolygonEquilibrium/output/05 - An L-shape.txt +2 -0
  246. package/config/medium/PolygonEquilibrium/output/06 - A T-shape.txt +2 -0
  247. package/config/medium/PolygonEquilibrium/output/07 - test 7.txt +2 -0
  248. package/config/medium/PolygonEquilibrium/output/08 - test 8.txt +2 -0
  249. package/config/medium/PolygonEquilibrium/output/09 - Centroid outside of polygon.txt +2 -0
  250. package/config/medium/PolygonEquilibrium/output/10 - Multiple vertices supporting segment.txt +2 -0
  251. package/config/medium/PolygonEquilibrium/output/11 - Weird shape.txt +2 -0
  252. package/config/medium/PolygonEquilibrium/output/12 - Barely balanced.txt +2 -0
  253. package/config/medium/PolygonEquilibrium/output/13 - CG.txt +2 -0
  254. package/config/medium/SantasGarland/code/CGCode.cpp +27 -0
  255. package/config/medium/SantasGarland/code/CGCode.java +24 -0
  256. package/config/medium/SantasGarland/code/CGCode.js +17 -0
  257. package/config/medium/SantasGarland/code/CGCode.php +12 -0
  258. package/config/medium/SantasGarland/code/CGCode.ts +17 -0
  259. package/config/medium/SantasGarland/config.json +68 -0
  260. package/config/medium/SantasGarland/input/01 - Simple Path.txt +4 -0
  261. package/config/medium/SantasGarland/input/02 - Disconnected.txt +4 -0
  262. package/config/medium/SantasGarland/input/03 - Triangle with Alternative Path.txt +6 -0
  263. package/config/medium/SantasGarland/input/04 - Hexagon Bad Diagonal.txt +9 -0
  264. package/config/medium/SantasGarland/input/05 - Mid-failure with Bypass.txt +11 -0
  265. package/config/medium/SantasGarland/input/06 - Hub Blocked (different path lengths).txt +11 -0
  266. package/config/medium/SantasGarland/input/07 - Shortcut vs Two Detours.txt +12 -0
  267. package/config/medium/SantasGarland/input/08 - Grid Traversal.txt +14 -0
  268. package/config/medium/SantasGarland/input/09 - Fuses Blow at Final Step.txt +6 -0
  269. package/config/medium/SantasGarland/input/10 - Circle Complete Graph.txt +82 -0
  270. package/config/medium/SantasGarland/input/11 - Hamiltonian 10x10 Grid.txt +102 -0
  271. package/config/medium/SantasGarland/input/12 - Triple Path Challenge.txt +102 -0
  272. package/config/medium/SantasGarland/output/01 - Simple Path.txt +1 -0
  273. package/config/medium/SantasGarland/output/02 - Disconnected.txt +1 -0
  274. package/config/medium/SantasGarland/output/03 - Triangle with Alternative Path.txt +1 -0
  275. package/config/medium/SantasGarland/output/04 - Hexagon Bad Diagonal.txt +1 -0
  276. package/config/medium/SantasGarland/output/05 - Mid-failure with Bypass.txt +1 -0
  277. package/config/medium/SantasGarland/output/06 - Hub Blocked (different path lengths).txt +1 -0
  278. package/config/medium/SantasGarland/output/07 - Shortcut vs Two Detours.txt +1 -0
  279. package/config/medium/SantasGarland/output/08 - Grid Traversal.txt +1 -0
  280. package/config/medium/SantasGarland/output/09 - Fuses Blow at Final Step.txt +1 -0
  281. package/config/medium/SantasGarland/output/10 - Circle Complete Graph.txt +1 -0
  282. package/config/medium/SantasGarland/output/11 - Hamiltonian 10x10 Grid.txt +1 -0
  283. package/config/medium/SantasGarland/output/12 - Triple Path Challenge.txt +1 -0
  284. package/config/{easy → medium}/TheAlienBusinessOfCows/config.json +1 -1
  285. package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.cpp +18 -0
  286. package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.java +17 -0
  287. package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.js +8 -0
  288. package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.php +7 -0
  289. package/config/medium/TheQueensTrekWythoffsGame/code/CGCode.ts +8 -0
  290. package/config/medium/TheQueensTrekWythoffsGame/config.json +63 -0
  291. package/config/medium/TheQueensTrekWythoffsGame/input/01 - empty piles.txt +1 -0
  292. package/config/medium/TheQueensTrekWythoffsGame/input/02 - 1 move - pile 1 empty.txt +1 -0
  293. package/config/medium/TheQueensTrekWythoffsGame/input/03 - 1 move - pile 2 empty.txt +1 -0
  294. package/config/medium/TheQueensTrekWythoffsGame/input/04 - 1 move - 2 piles.txt +1 -0
  295. package/config/medium/TheQueensTrekWythoffsGame/input/05 - Simple one.txt +1 -0
  296. package/config/medium/TheQueensTrekWythoffsGame/input/06 - First win - 1.txt +1 -0
  297. package/config/medium/TheQueensTrekWythoffsGame/input/07 - Second win - 1.txt +1 -0
  298. package/config/medium/TheQueensTrekWythoffsGame/input/08 - First win - 2.txt +1 -0
  299. package/config/medium/TheQueensTrekWythoffsGame/input/09 - Second win - 2.txt +1 -0
  300. package/config/medium/TheQueensTrekWythoffsGame/input/10 - First win - 3.txt +1 -0
  301. package/config/medium/TheQueensTrekWythoffsGame/input/11 - Second win - 3.txt +1 -0
  302. package/config/medium/TheQueensTrekWythoffsGame/output/01 - empty piles.txt +1 -0
  303. package/config/medium/TheQueensTrekWythoffsGame/output/02 - 1 move - pile 1 empty.txt +1 -0
  304. package/config/medium/TheQueensTrekWythoffsGame/output/03 - 1 move - pile 2 empty.txt +1 -0
  305. package/config/medium/TheQueensTrekWythoffsGame/output/04 - 1 move - 2 piles.txt +1 -0
  306. package/config/medium/TheQueensTrekWythoffsGame/output/05 - Simple one.txt +1 -0
  307. package/config/medium/TheQueensTrekWythoffsGame/output/06 - First win - 1.txt +1 -0
  308. package/config/medium/TheQueensTrekWythoffsGame/output/07 - Second win - 1.txt +1 -0
  309. package/config/medium/TheQueensTrekWythoffsGame/output/08 - First win - 2.txt +1 -0
  310. package/config/medium/TheQueensTrekWythoffsGame/output/09 - Second win - 2.txt +1 -0
  311. package/config/medium/TheQueensTrekWythoffsGame/output/10 - First win - 3.txt +1 -0
  312. package/config/medium/TheQueensTrekWythoffsGame/output/11 - Second win - 3.txt +1 -0
  313. package/package.json +1 -1
  314. /package/config/{medium → hard}/GuessingDigits/code/CGCode.js +0 -0
  315. /package/config/{medium → hard}/GuessingDigits/code/CGCode.php +0 -0
  316. /package/config/{medium → hard}/GuessingDigits/input/01 - test 1.txt +0 -0
  317. /package/config/{medium → hard}/GuessingDigits/input/02 - test 2.txt +0 -0
  318. /package/config/{medium → hard}/GuessingDigits/input/03 - test 3.txt +0 -0
  319. /package/config/{medium → hard}/GuessingDigits/input/04 - test 4.txt +0 -0
  320. /package/config/{medium → hard}/GuessingDigits/input/05 - test 5.txt +0 -0
  321. /package/config/{medium → hard}/GuessingDigits/input/06 - test 6.txt +0 -0
  322. /package/config/{medium → hard}/GuessingDigits/input/07 - test 7.txt +0 -0
  323. /package/config/{medium → hard}/GuessingDigits/input/08 - test 8.txt +0 -0
  324. /package/config/{medium → hard}/GuessingDigits/output/01 - test 1.txt +0 -0
  325. /package/config/{medium → hard}/GuessingDigits/output/02 - test 2.txt +0 -0
  326. /package/config/{medium → hard}/GuessingDigits/output/03 - test 3.txt +0 -0
  327. /package/config/{medium → hard}/GuessingDigits/output/04 - test 4.txt +0 -0
  328. /package/config/{medium → hard}/GuessingDigits/output/05 - test 5.txt +0 -0
  329. /package/config/{medium → hard}/GuessingDigits/output/06 - test 6.txt +0 -0
  330. /package/config/{medium → hard}/GuessingDigits/output/07 - test 7.txt +0 -0
  331. /package/config/{medium → hard}/GuessingDigits/output/08 - test 8.txt +0 -0
  332. /package/config/{medium/Surakarta/output/05 - angles are not OK.txt → hard/MountainRange/output/01 - Two summits.txt} +0 -0
  333. /package/config/{medium/Surakarta/output/02 - multiple ways.txt → hard/MountainRange/output/02 - Close summits.txt} +0 -0
  334. /package/config/{medium/Surakarta/output/07 - it works.txt → hard/MountainRange/output/05 - Flat summits.txt} +0 -0
  335. /package/config/{medium/Surakarta/output/10 - real test.txt → hard/MountainRange/output/06 - Aligned mountains.txt} +0 -0
  336. /package/config/{medium/Surakarta/output/04 - pass on yourself.txt → hard/MountainRange/output/18 - One in front of three.txt} +0 -0
  337. /package/config/{medium → hard}/ParseSQLQueries/code/CGCode.js +0 -0
  338. /package/config/{medium → hard}/ParseSQLQueries/code/CGCode.php +0 -0
  339. /package/config/{medium → hard}/ParseSQLQueries/input/01 - select all.txt +0 -0
  340. /package/config/{medium → hard}/ParseSQLQueries/input/02 - Select from where.txt +0 -0
  341. /package/config/{medium → hard}/ParseSQLQueries/input/03 - Order by ascending.txt +0 -0
  342. /package/config/{medium → hard}/ParseSQLQueries/input/04 - Order by descending.txt +0 -0
  343. /package/config/{medium → hard}/ParseSQLQueries/input/05 - Slightly more advanced.txt +0 -0
  344. /package/config/{medium → hard}/ParseSQLQueries/output/01 - select all.txt +0 -0
  345. /package/config/{medium → hard}/ParseSQLQueries/output/02 - Select from where.txt +0 -0
  346. /package/config/{medium → hard}/ParseSQLQueries/output/03 - Order by ascending.txt +0 -0
  347. /package/config/{medium → hard}/ParseSQLQueries/output/04 - Order by descending.txt +0 -0
  348. /package/config/{medium → hard}/ParseSQLQueries/output/05 - Slightly more advanced.txt +0 -0
  349. /package/config/{expert → hard}/RecurringDecimals/code/CGCode.cpp +0 -0
  350. /package/config/{expert → hard}/RecurringDecimals/code/CGCode.java +0 -0
  351. /package/config/{expert → hard}/RecurringDecimals/code/CGCode.js +0 -0
  352. /package/config/{expert → hard}/RecurringDecimals/code/CGCode.php +0 -0
  353. /package/config/{expert → hard}/RecurringDecimals/code/CGCode.ts +0 -0
  354. /package/config/{expert → hard}/RecurringDecimals/input/01 - Small Terminating.txt +0 -0
  355. /package/config/{expert → hard}/RecurringDecimals/input/02 - Medium Terminating.txt +0 -0
  356. /package/config/{expert → hard}/RecurringDecimals/input/03 - Large Terminating.txt +0 -0
  357. /package/config/{expert → hard}/RecurringDecimals/input/04 - Small Non-Terminating.txt +0 -0
  358. /package/config/{expert → hard}/RecurringDecimals/input/05 - Medium Non-Terminating.txt +0 -0
  359. /package/config/{expert → hard}/RecurringDecimals/input/06 - Large Non Terminating.txt +0 -0
  360. /package/config/{expert → hard}/RecurringDecimals/input/07 - Small Mixed.txt +0 -0
  361. /package/config/{expert → hard}/RecurringDecimals/input/08 - Large Mixed.txt +0 -0
  362. /package/config/{expert → hard}/RecurringDecimals/input/09 - Test 9.txt +0 -0
  363. /package/config/{expert → hard}/RecurringDecimals/output/01 - Small Terminating.txt +0 -0
  364. /package/config/{expert → hard}/RecurringDecimals/output/02 - Medium Terminating.txt +0 -0
  365. /package/config/{expert → hard}/RecurringDecimals/output/03 - Large Terminating.txt +0 -0
  366. /package/config/{expert → hard}/RecurringDecimals/output/04 - Small Non-Terminating.txt +0 -0
  367. /package/config/{expert → hard}/RecurringDecimals/output/05 - Medium Non-Terminating.txt +0 -0
  368. /package/config/{expert → hard}/RecurringDecimals/output/06 - Large Non Terminating.txt +0 -0
  369. /package/config/{expert → hard}/RecurringDecimals/output/07 - Small Mixed.txt +0 -0
  370. /package/config/{expert → hard}/RecurringDecimals/output/08 - Large Mixed.txt +0 -0
  371. /package/config/{expert → hard}/RecurringDecimals/output/09 - Test 9.txt +0 -0
  372. /package/config/{medium → hard}/Surakarta/code/CGCode.js +0 -0
  373. /package/config/{medium → hard}/Surakarta/code/CGCode.php +0 -0
  374. /package/config/{medium → hard}/Surakarta/input/01 - around the world.txt +0 -0
  375. /package/config/{medium → hard}/Surakarta/input/02 - multiple ways.txt +0 -0
  376. /package/config/{medium → hard}/Surakarta/input/03 - impossible.txt +0 -0
  377. /package/config/{medium → hard}/Surakarta/input/04 - pass on yourself.txt +0 -0
  378. /package/config/{medium → hard}/Surakarta/input/05 - angles are not OK.txt +0 -0
  379. /package/config/{medium → hard}/Surakarta/input/06 - we have a problem.txt +0 -0
  380. /package/config/{medium → hard}/Surakarta/input/07 - it works.txt +0 -0
  381. /package/config/{medium → hard}/Surakarta/input/08 - number test.txt +0 -0
  382. /package/config/{medium → hard}/Surakarta/input/09 - crossway.txt +0 -0
  383. /package/config/{medium → hard}/Surakarta/input/10 - real test.txt +0 -0
  384. /package/config/{medium → hard}/Surakarta/output/01 - around the world.txt +0 -0
  385. /package/config/{medium → hard}/Surakarta/output/03 - impossible.txt +0 -0
  386. /package/config/{medium → hard}/Surakarta/output/06 - we have a problem.txt +0 -0
  387. /package/config/{medium → hard}/Surakarta/output/08 - number test.txt +0 -0
  388. /package/config/{medium → hard}/Surakarta/output/09 - crossway.txt +0 -0
  389. /package/config/{easy → medium}/NoMorePythonsPlease/code/CGCode.js +0 -0
  390. /package/config/{easy → medium}/NoMorePythonsPlease/code/CGCode.php +0 -0
  391. /package/config/{easy → medium}/NoMorePythonsPlease/input/01 - easy (one snake).txt +0 -0
  392. /package/config/{easy → medium}/NoMorePythonsPlease/input/02 - medium 1 (3 snakes, one pattern).txt +0 -0
  393. /package/config/{easy → medium}/NoMorePythonsPlease/input/03 - medium 2 (more than 1 large snake).txt +0 -0
  394. /package/config/{easy → medium}/NoMorePythonsPlease/input/04 - hard (one VERY large snake).txt +0 -0
  395. /package/config/{easy → medium}/NoMorePythonsPlease/input/05 - snake madness (for geeks).txt +0 -0
  396. /package/config/{easy → medium}/NoMorePythonsPlease/output/01 - easy (one snake).txt +0 -0
  397. /package/config/{easy → medium}/NoMorePythonsPlease/output/02 - medium 1 (3 snakes, one pattern).txt +0 -0
  398. /package/config/{easy → medium}/NoMorePythonsPlease/output/03 - medium 2 (more than 1 large snake).txt +0 -0
  399. /package/config/{easy → medium}/NoMorePythonsPlease/output/04 - hard (one VERY large snake).txt +0 -0
  400. /package/config/{easy → medium}/NoMorePythonsPlease/output/05 - snake madness (for geeks).txt +0 -0
  401. /package/config/{easy → medium}/TheAlienBusinessOfCows/code/CGCode.js +0 -0
  402. /package/config/{easy → medium}/TheAlienBusinessOfCows/code/CGCode.php +0 -0
  403. /package/config/{easy → medium}/TheAlienBusinessOfCows/input/01 - United Steak of America.txt +0 -0
  404. /package/config/{easy → medium}/TheAlienBusinessOfCows/input/02 - Free Tacow !.txt +0 -0
  405. /package/config/{easy → medium}/TheAlienBusinessOfCows/input/03 - Is that a Mowse.txt +0 -0
  406. /package/config/{easy → medium}/TheAlienBusinessOfCows/input/04 - Those missions are stupid.txt +0 -0
  407. /package/config/{easy → medium}/TheAlienBusinessOfCows/input/05 - Union of Steak Amateurs.txt +0 -0
  408. /package/config/{easy → medium}/TheAlienBusinessOfCows/output/01 - United Steak of America.txt +0 -0
  409. /package/config/{easy → medium}/TheAlienBusinessOfCows/output/02 - Free Tacow !.txt +0 -0
  410. /package/config/{easy → medium}/TheAlienBusinessOfCows/output/03 - Is that a Mowse.txt +0 -0
  411. /package/config/{easy → medium}/TheAlienBusinessOfCows/output/04 - Those missions are stupid.txt +0 -0
  412. /package/config/{easy → medium}/TheAlienBusinessOfCows/output/05 - Union of Steak Amateurs.txt +0 -0
@@ -0,0 +1,3997 @@
1
+ 3996
2
+ 2
3
+ -2
4
+ 2
5
+ 2
6
+ -4
7
+ 8
8
+ -4
9
+ -1
10
+ -1
11
+ 6
12
+ 3
13
+ -2
14
+ -2
15
+ 9
16
+ 5
17
+ 4
18
+ -9
19
+ 9
20
+ -2
21
+ -2
22
+ -7
23
+ 0
24
+ 0
25
+ -6
26
+ 9
27
+ -4
28
+ 7
29
+ -4
30
+ 3
31
+ -5
32
+ 1
33
+ -6
34
+ 0
35
+ -4
36
+ -9
37
+ -9
38
+ -1
39
+ 7
40
+ -7
41
+ 2
42
+ 9
43
+ -5
44
+ 8
45
+ 8
46
+ 9
47
+ -7
48
+ 3
49
+ -2
50
+ -4
51
+ 4
52
+ -1
53
+ -1
54
+ 7
55
+ 6
56
+ 7
57
+ -4
58
+ -3
59
+ 7
60
+ 3
61
+ -2
62
+ 1
63
+ 0
64
+ 1
65
+ -5
66
+ 8
67
+ 9
68
+ 5
69
+ -7
70
+ 2
71
+ 2
72
+ -1
73
+ 9
74
+ -7
75
+ -1
76
+ -2
77
+ -5
78
+ -3
79
+ 3
80
+ -2
81
+ 6
82
+ -2
83
+ 2
84
+ -4
85
+ 8
86
+ -2
87
+ -5
88
+ -9
89
+ -2
90
+ 3
91
+ 9
92
+ 7
93
+ -3
94
+ 8
95
+ 4
96
+ 4
97
+ 0
98
+ 9
99
+ 2
100
+ -5
101
+ -9
102
+ 2
103
+ -4
104
+ 2
105
+ -4
106
+ 5
107
+ 8
108
+ -9
109
+ -5
110
+ -6
111
+ -1
112
+ -6
113
+ -3
114
+ -2
115
+ -2
116
+ -4
117
+ 5
118
+ -6
119
+ 7
120
+ 5
121
+ 7
122
+ 9
123
+ -4
124
+ -9
125
+ -9
126
+ 6
127
+ 3
128
+ 3
129
+ 4
130
+ 7
131
+ 1
132
+ 2
133
+ 9
134
+ -2
135
+ -5
136
+ -3
137
+ 8
138
+ 9
139
+ 3
140
+ 9
141
+ -2
142
+ -4
143
+ 0
144
+ 7
145
+ 8
146
+ 0
147
+ 4
148
+ 6
149
+ -2
150
+ -2
151
+ -1
152
+ -4
153
+ 4
154
+ 9
155
+ -2
156
+ 1
157
+ -4
158
+ 1
159
+ 6
160
+ 2
161
+ 5
162
+ -7
163
+ -7
164
+ 0
165
+ -3
166
+ 9
167
+ -1
168
+ 0
169
+ -9
170
+ 4
171
+ -1
172
+ -1
173
+ 7
174
+ 3
175
+ -6
176
+ 8
177
+ -4
178
+ -8
179
+ 3
180
+ -4
181
+ -2
182
+ -2
183
+ -9
184
+ 9
185
+ 3
186
+ 6
187
+ 2
188
+ 3
189
+ 4
190
+ 8
191
+ -9
192
+ -9
193
+ -5
194
+ -7
195
+ 9
196
+ 9
197
+ -4
198
+ 8
199
+ -3
200
+ 9
201
+ 1
202
+ -7
203
+ -2
204
+ -7
205
+ 2
206
+ 2
207
+ -4
208
+ 2
209
+ 6
210
+ 2
211
+ 6
212
+ 6
213
+ -4
214
+ -4
215
+ 5
216
+ -3
217
+ -2
218
+ 2
219
+ -9
220
+ 9
221
+ -1
222
+ -2
223
+ 7
224
+ -1
225
+ -4
226
+ -4
227
+ -4
228
+ 3
229
+ -4
230
+ -4
231
+ -3
232
+ -4
233
+ 4
234
+ -9
235
+ -9
236
+ 8
237
+ -4
238
+ 4
239
+ 1
240
+ -2
241
+ 9
242
+ 9
243
+ -4
244
+ -3
245
+ 8
246
+ 6
247
+ 2
248
+ -4
249
+ 3
250
+ -7
251
+ 4
252
+ 6
253
+ -2
254
+ 3
255
+ -2
256
+ -1
257
+ -4
258
+ -2
259
+ 9
260
+ 2
261
+ 5
262
+ 8
263
+ -4
264
+ 2
265
+ 7
266
+ 8
267
+ -2
268
+ 4
269
+ 9
270
+ -4
271
+ -4
272
+ -9
273
+ -6
274
+ -2
275
+ 8
276
+ 2
277
+ 5
278
+ -6
279
+ 2
280
+ 7
281
+ -1
282
+ -9
283
+ -7
284
+ -9
285
+ -4
286
+ -2
287
+ 4
288
+ 8
289
+ 3
290
+ 6
291
+ 2
292
+ 1
293
+ -1
294
+ -4
295
+ 7
296
+ -9
297
+ -4
298
+ 4
299
+ 5
300
+ 3
301
+ -9
302
+ -5
303
+ -2
304
+ 6
305
+ 3
306
+ -9
307
+ 9
308
+ 2
309
+ -3
310
+ 2
311
+ 8
312
+ 3
313
+ 0
314
+ -3
315
+ -9
316
+ 1
317
+ 8
318
+ 1
319
+ 3
320
+ 3
321
+ -6
322
+ 2
323
+ -2
324
+ 6
325
+ -4
326
+ -2
327
+ 7
328
+ 9
329
+ 9
330
+ -6
331
+ -2
332
+ 0
333
+ 9
334
+ -2
335
+ 7
336
+ -9
337
+ -4
338
+ 2
339
+ -1
340
+ 1
341
+ 8
342
+ -1
343
+ -7
344
+ -3
345
+ -4
346
+ -1
347
+ -9
348
+ -9
349
+ -4
350
+ 2
351
+ 5
352
+ -7
353
+ -2
354
+ 9
355
+ 2
356
+ 8
357
+ 1
358
+ 2
359
+ 8
360
+ 2
361
+ 1
362
+ -2
363
+ -2
364
+ 9
365
+ -8
366
+ -1
367
+ 3
368
+ 2
369
+ -4
370
+ -4
371
+ 1
372
+ -2
373
+ 2
374
+ 9
375
+ -6
376
+ 6
377
+ 9
378
+ 3
379
+ 1
380
+ -4
381
+ 6
382
+ -4
383
+ -4
384
+ -7
385
+ -7
386
+ 6
387
+ 5
388
+ -3
389
+ -7
390
+ 5
391
+ -5
392
+ -2
393
+ 2
394
+ -4
395
+ 6
396
+ -2
397
+ 9
398
+ -4
399
+ -2
400
+ 9
401
+ 4
402
+ -4
403
+ 4
404
+ -9
405
+ -4
406
+ -6
407
+ 7
408
+ -2
409
+ -7
410
+ 7
411
+ 1
412
+ 2
413
+ 2
414
+ -5
415
+ 9
416
+ -4
417
+ -5
418
+ -3
419
+ 3
420
+ 1
421
+ -3
422
+ 8
423
+ 2
424
+ 7
425
+ 5
426
+ 8
427
+ 0
428
+ -2
429
+ -9
430
+ -3
431
+ 1
432
+ 4
433
+ -9
434
+ 8
435
+ 8
436
+ -2
437
+ -9
438
+ 6
439
+ 4
440
+ 6
441
+ -2
442
+ -4
443
+ -4
444
+ 9
445
+ 0
446
+ 3
447
+ -2
448
+ 2
449
+ -3
450
+ -2
451
+ 8
452
+ -9
453
+ -1
454
+ -4
455
+ 2
456
+ 4
457
+ 6
458
+ 8
459
+ -1
460
+ -4
461
+ -1
462
+ -1
463
+ -7
464
+ 0
465
+ -2
466
+ -7
467
+ -5
468
+ 8
469
+ 2
470
+ 9
471
+ 3
472
+ 2
473
+ 3
474
+ -6
475
+ -4
476
+ 9
477
+ -2
478
+ 9
479
+ -8
480
+ -4
481
+ -6
482
+ -9
483
+ -4
484
+ 1
485
+ 2
486
+ 8
487
+ 8
488
+ -3
489
+ 1
490
+ -5
491
+ -2
492
+ 1
493
+ -4
494
+ -3
495
+ 7
496
+ -2
497
+ -9
498
+ -2
499
+ -4
500
+ 5
501
+ 9
502
+ 5
503
+ -6
504
+ -5
505
+ 9
506
+ -1
507
+ 4
508
+ 7
509
+ 2
510
+ -6
511
+ -2
512
+ -3
513
+ -1
514
+ -2
515
+ -2
516
+ -2
517
+ 9
518
+ 6
519
+ -1
520
+ 3
521
+ 9
522
+ 7
523
+ 2
524
+ -6
525
+ -7
526
+ 3
527
+ 6
528
+ -4
529
+ 5
530
+ -7
531
+ -5
532
+ -1
533
+ -2
534
+ 6
535
+ 7
536
+ 1
537
+ 2
538
+ -3
539
+ -7
540
+ 5
541
+ -3
542
+ -6
543
+ 0
544
+ -9
545
+ -9
546
+ -2
547
+ -4
548
+ 5
549
+ -9
550
+ -7
551
+ -4
552
+ -7
553
+ 8
554
+ 9
555
+ 3
556
+ -1
557
+ -3
558
+ 7
559
+ 5
560
+ 1
561
+ -2
562
+ -4
563
+ 8
564
+ -3
565
+ -5
566
+ 4
567
+ -4
568
+ 7
569
+ -3
570
+ -9
571
+ -4
572
+ -1
573
+ 0
574
+ -7
575
+ -2
576
+ -1
577
+ 2
578
+ -1
579
+ 1
580
+ -6
581
+ 1
582
+ -9
583
+ -4
584
+ 2
585
+ 4
586
+ 3
587
+ -7
588
+ -4
589
+ -1
590
+ -5
591
+ 9
592
+ -9
593
+ -5
594
+ -7
595
+ -4
596
+ 2
597
+ -9
598
+ 2
599
+ -4
600
+ -6
601
+ -9
602
+ -8
603
+ 8
604
+ 1
605
+ 9
606
+ 2
607
+ -1
608
+ 6
609
+ -1
610
+ 8
611
+ 7
612
+ 1
613
+ 9
614
+ -7
615
+ 6
616
+ -4
617
+ 6
618
+ -2
619
+ -4
620
+ -2
621
+ -7
622
+ 1
623
+ -6
624
+ 3
625
+ -9
626
+ 9
627
+ -3
628
+ 4
629
+ 2
630
+ 8
631
+ 1
632
+ -4
633
+ -4
634
+ -6
635
+ 2
636
+ -1
637
+ 3
638
+ -4
639
+ 4
640
+ 8
641
+ -1
642
+ 2
643
+ 8
644
+ 6
645
+ -1
646
+ 2
647
+ 5
648
+ 4
649
+ -4
650
+ 6
651
+ 1
652
+ -6
653
+ -4
654
+ -7
655
+ 2
656
+ 6
657
+ -4
658
+ 8
659
+ 6
660
+ -4
661
+ -1
662
+ 9
663
+ -7
664
+ -2
665
+ -3
666
+ 1
667
+ -4
668
+ -9
669
+ 9
670
+ 9
671
+ 9
672
+ -4
673
+ -7
674
+ -9
675
+ -9
676
+ -4
677
+ 1
678
+ -4
679
+ 1
680
+ -3
681
+ -1
682
+ -4
683
+ 5
684
+ 3
685
+ -1
686
+ -6
687
+ -2
688
+ -1
689
+ 8
690
+ 1
691
+ -2
692
+ 9
693
+ -1
694
+ -4
695
+ 3
696
+ 1
697
+ 1
698
+ 2
699
+ 8
700
+ -4
701
+ -4
702
+ -4
703
+ 0
704
+ 3
705
+ 9
706
+ -4
707
+ 2
708
+ 6
709
+ 1
710
+ -4
711
+ 6
712
+ -4
713
+ -5
714
+ -1
715
+ -6
716
+ 5
717
+ 2
718
+ 8
719
+ -6
720
+ 2
721
+ 8
722
+ 0
723
+ 3
724
+ -9
725
+ -6
726
+ 9
727
+ 9
728
+ 1
729
+ -4
730
+ -9
731
+ 8
732
+ 3
733
+ 9
734
+ 7
735
+ -4
736
+ 5
737
+ -4
738
+ 1
739
+ 7
740
+ 9
741
+ -4
742
+ -7
743
+ -2
744
+ 5
745
+ -4
746
+ 9
747
+ -2
748
+ 6
749
+ 1
750
+ 9
751
+ 5
752
+ -9
753
+ -4
754
+ 8
755
+ 1
756
+ -6
757
+ 5
758
+ 2
759
+ -2
760
+ -2
761
+ 4
762
+ -9
763
+ -4
764
+ -4
765
+ 0
766
+ 5
767
+ 0
768
+ -4
769
+ -2
770
+ -4
771
+ -7
772
+ -2
773
+ -2
774
+ -3
775
+ -9
776
+ -7
777
+ 7
778
+ 1
779
+ -7
780
+ 3
781
+ -7
782
+ 8
783
+ 2
784
+ 9
785
+ -2
786
+ 3
787
+ 2
788
+ -1
789
+ -4
790
+ -6
791
+ 1
792
+ -8
793
+ -6
794
+ 3
795
+ 3
796
+ -9
797
+ 9
798
+ -2
799
+ -7
800
+ 7
801
+ 4
802
+ 2
803
+ 1
804
+ -4
805
+ 5
806
+ -6
807
+ -7
808
+ 9
809
+ 2
810
+ 2
811
+ -9
812
+ 1
813
+ 9
814
+ 1
815
+ 9
816
+ -1
817
+ 2
818
+ 8
819
+ 1
820
+ 9
821
+ -3
822
+ 6
823
+ 2
824
+ 4
825
+ 9
826
+ 6
827
+ 4
828
+ 6
829
+ -4
830
+ -4
831
+ 9
832
+ -2
833
+ 9
834
+ 6
835
+ 2
836
+ -7
837
+ 4
838
+ -7
839
+ 1
840
+ -4
841
+ 9
842
+ -3
843
+ -4
844
+ 3
845
+ -9
846
+ -5
847
+ -7
848
+ 6
849
+ -4
850
+ 1
851
+ -1
852
+ -9
853
+ 4
854
+ 9
855
+ 1
856
+ -5
857
+ 8
858
+ 3
859
+ -4
860
+ -2
861
+ -1
862
+ -2
863
+ 8
864
+ 9
865
+ 4
866
+ -4
867
+ -9
868
+ 5
869
+ -7
870
+ 1
871
+ -7
872
+ 2
873
+ 2
874
+ -8
875
+ 6
876
+ -9
877
+ -2
878
+ -4
879
+ -2
880
+ 3
881
+ -3
882
+ 2
883
+ 7
884
+ -9
885
+ 6
886
+ -9
887
+ 6
888
+ 2
889
+ -7
890
+ 1
891
+ 0
892
+ -6
893
+ -2
894
+ 9
895
+ -1
896
+ -2
897
+ 0
898
+ 8
899
+ 9
900
+ 2
901
+ -2
902
+ -6
903
+ 3
904
+ 5
905
+ -6
906
+ -4
907
+ 2
908
+ -3
909
+ 6
910
+ 6
911
+ 3
912
+ -6
913
+ 5
914
+ 1
915
+ -6
916
+ -6
917
+ 1
918
+ -9
919
+ -9
920
+ 6
921
+ -9
922
+ 8
923
+ 7
924
+ -2
925
+ 1
926
+ -6
927
+ -6
928
+ 0
929
+ 1
930
+ -4
931
+ -9
932
+ 1
933
+ 2
934
+ -4
935
+ -1
936
+ -7
937
+ -4
938
+ -1
939
+ 9
940
+ -7
941
+ -2
942
+ 5
943
+ -6
944
+ -4
945
+ -1
946
+ -9
947
+ -8
948
+ -9
949
+ -4
950
+ -5
951
+ 2
952
+ 1
953
+ -1
954
+ 8
955
+ -1
956
+ 7
957
+ -3
958
+ 9
959
+ -5
960
+ 5
961
+ -4
962
+ -6
963
+ 2
964
+ -4
965
+ -3
966
+ 2
967
+ -2
968
+ -2
969
+ -2
970
+ -1
971
+ -3
972
+ 8
973
+ -4
974
+ 1
975
+ 6
976
+ 2
977
+ 4
978
+ 4
979
+ -2
980
+ 2
981
+ -6
982
+ -5
983
+ 2
984
+ -5
985
+ -7
986
+ -6
987
+ 8
988
+ -4
989
+ -4
990
+ 0
991
+ 3
992
+ 9
993
+ 9
994
+ -1
995
+ 5
996
+ 8
997
+ -6
998
+ 6
999
+ -7
1000
+ -7
1001
+ 4
1002
+ 3
1003
+ -1
1004
+ -3
1005
+ 8
1006
+ 9
1007
+ 7
1008
+ 3
1009
+ 0
1010
+ 2
1011
+ 4
1012
+ 7
1013
+ -4
1014
+ 1
1015
+ -6
1016
+ 2
1017
+ -2
1018
+ 3
1019
+ 4
1020
+ 3
1021
+ -7
1022
+ -7
1023
+ 2
1024
+ -4
1025
+ 7
1026
+ 9
1027
+ -2
1028
+ 9
1029
+ -2
1030
+ 2
1031
+ 1
1032
+ -4
1033
+ 5
1034
+ 9
1035
+ 3
1036
+ 3
1037
+ 2
1038
+ -5
1039
+ 1
1040
+ 9
1041
+ 3
1042
+ 4
1043
+ 9
1044
+ 3
1045
+ 2
1046
+ 5
1047
+ -4
1048
+ -9
1049
+ 8
1050
+ 4
1051
+ -9
1052
+ -2
1053
+ 1
1054
+ -9
1055
+ 1
1056
+ -6
1057
+ -4
1058
+ -4
1059
+ -3
1060
+ 9
1061
+ 0
1062
+ 9
1063
+ 7
1064
+ 4
1065
+ 6
1066
+ -1
1067
+ -9
1068
+ 3
1069
+ 9
1070
+ 9
1071
+ 5
1072
+ 8
1073
+ 1
1074
+ -3
1075
+ 0
1076
+ 9
1077
+ 9
1078
+ -2
1079
+ -7
1080
+ -2
1081
+ -4
1082
+ -7
1083
+ 2
1084
+ 9
1085
+ -3
1086
+ 4
1087
+ -9
1088
+ 6
1089
+ -6
1090
+ -9
1091
+ -2
1092
+ 8
1093
+ -1
1094
+ -4
1095
+ 2
1096
+ 1
1097
+ -1
1098
+ 8
1099
+ -2
1100
+ 1
1101
+ -2
1102
+ 7
1103
+ -1
1104
+ -7
1105
+ 9
1106
+ 0
1107
+ 2
1108
+ -4
1109
+ -3
1110
+ 9
1111
+ -5
1112
+ 8
1113
+ -3
1114
+ 5
1115
+ 1
1116
+ 4
1117
+ 7
1118
+ 8
1119
+ -4
1120
+ 7
1121
+ -2
1122
+ 1
1123
+ 1
1124
+ 3
1125
+ 3
1126
+ -5
1127
+ 8
1128
+ 8
1129
+ -1
1130
+ 8
1131
+ 9
1132
+ 8
1133
+ 9
1134
+ 3
1135
+ -1
1136
+ -2
1137
+ 2
1138
+ -7
1139
+ -7
1140
+ 2
1141
+ 8
1142
+ -7
1143
+ -4
1144
+ -2
1145
+ 7
1146
+ -4
1147
+ -1
1148
+ 5
1149
+ 3
1150
+ -1
1151
+ -4
1152
+ 2
1153
+ 5
1154
+ -9
1155
+ 9
1156
+ -3
1157
+ -5
1158
+ -4
1159
+ 8
1160
+ 1
1161
+ 9
1162
+ 1
1163
+ -2
1164
+ 2
1165
+ 5
1166
+ 0
1167
+ -7
1168
+ -9
1169
+ 5
1170
+ -4
1171
+ 6
1172
+ -9
1173
+ 2
1174
+ -3
1175
+ 6
1176
+ -2
1177
+ 6
1178
+ 2
1179
+ 3
1180
+ 4
1181
+ 2
1182
+ 1
1183
+ 8
1184
+ 9
1185
+ 2
1186
+ 2
1187
+ 8
1188
+ -3
1189
+ -3
1190
+ -4
1191
+ -2
1192
+ 0
1193
+ 9
1194
+ -4
1195
+ 7
1196
+ 3
1197
+ 5
1198
+ 0
1199
+ 9
1200
+ -6
1201
+ -8
1202
+ -7
1203
+ -5
1204
+ 3
1205
+ -2
1206
+ 7
1207
+ 4
1208
+ 2
1209
+ -9
1210
+ -1
1211
+ -9
1212
+ -4
1213
+ 9
1214
+ 2
1215
+ -6
1216
+ -4
1217
+ 9
1218
+ -2
1219
+ -5
1220
+ 8
1221
+ -4
1222
+ -1
1223
+ 4
1224
+ 9
1225
+ 1
1226
+ -3
1227
+ 9
1228
+ -2
1229
+ 4
1230
+ 2
1231
+ -4
1232
+ 7
1233
+ -2
1234
+ -4
1235
+ 7
1236
+ 1
1237
+ -4
1238
+ 4
1239
+ -9
1240
+ 2
1241
+ 6
1242
+ 9
1243
+ -9
1244
+ -1
1245
+ 2
1246
+ 9
1247
+ 8
1248
+ 0
1249
+ 6
1250
+ -6
1251
+ -3
1252
+ -4
1253
+ -2
1254
+ 7
1255
+ 0
1256
+ 9
1257
+ 1
1258
+ -1
1259
+ -6
1260
+ -8
1261
+ 0
1262
+ 8
1263
+ 8
1264
+ 7
1265
+ 1
1266
+ 3
1267
+ -2
1268
+ 9
1269
+ -6
1270
+ -8
1271
+ 6
1272
+ -2
1273
+ 3
1274
+ -1
1275
+ -2
1276
+ -3
1277
+ 0
1278
+ 2
1279
+ 2
1280
+ 9
1281
+ -6
1282
+ -4
1283
+ 1
1284
+ -2
1285
+ 0
1286
+ 4
1287
+ -2
1288
+ -4
1289
+ 1
1290
+ 2
1291
+ -9
1292
+ -7
1293
+ 5
1294
+ -4
1295
+ -9
1296
+ 5
1297
+ 3
1298
+ -2
1299
+ 2
1300
+ -7
1301
+ -6
1302
+ -6
1303
+ 0
1304
+ 3
1305
+ -2
1306
+ -1
1307
+ 3
1308
+ -2
1309
+ 0
1310
+ 9
1311
+ -1
1312
+ -6
1313
+ -2
1314
+ 8
1315
+ -9
1316
+ -2
1317
+ -9
1318
+ -8
1319
+ 9
1320
+ -1
1321
+ 8
1322
+ 1
1323
+ -6
1324
+ -4
1325
+ -2
1326
+ 3
1327
+ 1
1328
+ -9
1329
+ 2
1330
+ 9
1331
+ -7
1332
+ 3
1333
+ -9
1334
+ -9
1335
+ 1
1336
+ 3
1337
+ -4
1338
+ 9
1339
+ 6
1340
+ -1
1341
+ -9
1342
+ -6
1343
+ -6
1344
+ 0
1345
+ 2
1346
+ 2
1347
+ 2
1348
+ -2
1349
+ 7
1350
+ 2
1351
+ 1
1352
+ -7
1353
+ -4
1354
+ 0
1355
+ -4
1356
+ -2
1357
+ -3
1358
+ 2
1359
+ -9
1360
+ -1
1361
+ 2
1362
+ 8
1363
+ -9
1364
+ 9
1365
+ 1
1366
+ -2
1367
+ -9
1368
+ -4
1369
+ -4
1370
+ -5
1371
+ 4
1372
+ -2
1373
+ -1
1374
+ 4
1375
+ -5
1376
+ 9
1377
+ -4
1378
+ -1
1379
+ 5
1380
+ -1
1381
+ 1
1382
+ -2
1383
+ 1
1384
+ 9
1385
+ -6
1386
+ -5
1387
+ -9
1388
+ 8
1389
+ 1
1390
+ -3
1391
+ -2
1392
+ -2
1393
+ -4
1394
+ 9
1395
+ -9
1396
+ 2
1397
+ 6
1398
+ -5
1399
+ 1
1400
+ 4
1401
+ 2
1402
+ 4
1403
+ 0
1404
+ 2
1405
+ -4
1406
+ -2
1407
+ -1
1408
+ -4
1409
+ -4
1410
+ 6
1411
+ -4
1412
+ 3
1413
+ -9
1414
+ -8
1415
+ 2
1416
+ -2
1417
+ 7
1418
+ -2
1419
+ 7
1420
+ -9
1421
+ 6
1422
+ 1
1423
+ 3
1424
+ -1
1425
+ 3
1426
+ -9
1427
+ 6
1428
+ -3
1429
+ 9
1430
+ -4
1431
+ 8
1432
+ -6
1433
+ -9
1434
+ -9
1435
+ 2
1436
+ 1
1437
+ 4
1438
+ -9
1439
+ -1
1440
+ 6
1441
+ 4
1442
+ -2
1443
+ -6
1444
+ 8
1445
+ 9
1446
+ 5
1447
+ -5
1448
+ 9
1449
+ -6
1450
+ 9
1451
+ 7
1452
+ -1
1453
+ 9
1454
+ -5
1455
+ -4
1456
+ 9
1457
+ -6
1458
+ -1
1459
+ -4
1460
+ 7
1461
+ -2
1462
+ 8
1463
+ 1
1464
+ -9
1465
+ -2
1466
+ 8
1467
+ 3
1468
+ -4
1469
+ -6
1470
+ 8
1471
+ 7
1472
+ 0
1473
+ -9
1474
+ 2
1475
+ -4
1476
+ 9
1477
+ -9
1478
+ -2
1479
+ 3
1480
+ 0
1481
+ 3
1482
+ -4
1483
+ -1
1484
+ 0
1485
+ 2
1486
+ -1
1487
+ 7
1488
+ -9
1489
+ -1
1490
+ 9
1491
+ -5
1492
+ 8
1493
+ -7
1494
+ -6
1495
+ -4
1496
+ -4
1497
+ -6
1498
+ 6
1499
+ 0
1500
+ -4
1501
+ -2
1502
+ 5
1503
+ -7
1504
+ 1
1505
+ 8
1506
+ -9
1507
+ -6
1508
+ 5
1509
+ 0
1510
+ -6
1511
+ -1
1512
+ -4
1513
+ 2
1514
+ 6
1515
+ -1
1516
+ -4
1517
+ -7
1518
+ 2
1519
+ -6
1520
+ -1
1521
+ -4
1522
+ -1
1523
+ 4
1524
+ 8
1525
+ 7
1526
+ 8
1527
+ -2
1528
+ 3
1529
+ -7
1530
+ 2
1531
+ -1
1532
+ -6
1533
+ 5
1534
+ -1
1535
+ -2
1536
+ -4
1537
+ -4
1538
+ 1
1539
+ -7
1540
+ 2
1541
+ 3
1542
+ 5
1543
+ 7
1544
+ -1
1545
+ -9
1546
+ 4
1547
+ -6
1548
+ 6
1549
+ -9
1550
+ -4
1551
+ -2
1552
+ 2
1553
+ 0
1554
+ 9
1555
+ 1
1556
+ -7
1557
+ 2
1558
+ 0
1559
+ 7
1560
+ 1
1561
+ 2
1562
+ -9
1563
+ -4
1564
+ 4
1565
+ 6
1566
+ -2
1567
+ -1
1568
+ -2
1569
+ 7
1570
+ 4
1571
+ 1
1572
+ 3
1573
+ 2
1574
+ 7
1575
+ -2
1576
+ -5
1577
+ -1
1578
+ -1
1579
+ -4
1580
+ 4
1581
+ -2
1582
+ 2
1583
+ 9
1584
+ -9
1585
+ -5
1586
+ 9
1587
+ 8
1588
+ -4
1589
+ 0
1590
+ -2
1591
+ 8
1592
+ 9
1593
+ 2
1594
+ 7
1595
+ 9
1596
+ -4
1597
+ 8
1598
+ -4
1599
+ 9
1600
+ 4
1601
+ 6
1602
+ 1
1603
+ 2
1604
+ 8
1605
+ -1
1606
+ -3
1607
+ 9
1608
+ 3
1609
+ 7
1610
+ -7
1611
+ 9
1612
+ 0
1613
+ -4
1614
+ -9
1615
+ 2
1616
+ 4
1617
+ -1
1618
+ -4
1619
+ -4
1620
+ -4
1621
+ 3
1622
+ -1
1623
+ -8
1624
+ 8
1625
+ -4
1626
+ 2
1627
+ -2
1628
+ -2
1629
+ -4
1630
+ 8
1631
+ 9
1632
+ 4
1633
+ -2
1634
+ 6
1635
+ 3
1636
+ 7
1637
+ -8
1638
+ 5
1639
+ 5
1640
+ -6
1641
+ 1
1642
+ -9
1643
+ -4
1644
+ 5
1645
+ 2
1646
+ 7
1647
+ 4
1648
+ 3
1649
+ 3
1650
+ 3
1651
+ -7
1652
+ -5
1653
+ 3
1654
+ 1
1655
+ 1
1656
+ -7
1657
+ 1
1658
+ -3
1659
+ 7
1660
+ -1
1661
+ 2
1662
+ -6
1663
+ -9
1664
+ 7
1665
+ -4
1666
+ -1
1667
+ 2
1668
+ -3
1669
+ 3
1670
+ -2
1671
+ -1
1672
+ 2
1673
+ 7
1674
+ 9
1675
+ -4
1676
+ 2
1677
+ -6
1678
+ 9
1679
+ -4
1680
+ -4
1681
+ -1
1682
+ -6
1683
+ 1
1684
+ -4
1685
+ 4
1686
+ 2
1687
+ -3
1688
+ -4
1689
+ 2
1690
+ 5
1691
+ 2
1692
+ 2
1693
+ 6
1694
+ -2
1695
+ 6
1696
+ -1
1697
+ -1
1698
+ 8
1699
+ -1
1700
+ 3
1701
+ -4
1702
+ 1
1703
+ 3
1704
+ -2
1705
+ -4
1706
+ 5
1707
+ 1
1708
+ 7
1709
+ 2
1710
+ 5
1711
+ -7
1712
+ -2
1713
+ -4
1714
+ -2
1715
+ 2
1716
+ -8
1717
+ 8
1718
+ -4
1719
+ 2
1720
+ 1
1721
+ 8
1722
+ -9
1723
+ -7
1724
+ 8
1725
+ 6
1726
+ 1
1727
+ 9
1728
+ -7
1729
+ 4
1730
+ -6
1731
+ 2
1732
+ -1
1733
+ 7
1734
+ 2
1735
+ -4
1736
+ 9
1737
+ 2
1738
+ 7
1739
+ 8
1740
+ -2
1741
+ 9
1742
+ 0
1743
+ -4
1744
+ -1
1745
+ -3
1746
+ -1
1747
+ -4
1748
+ 9
1749
+ -2
1750
+ 4
1751
+ -1
1752
+ 0
1753
+ 6
1754
+ 3
1755
+ 3
1756
+ 1
1757
+ 3
1758
+ 5
1759
+ 2
1760
+ -3
1761
+ -6
1762
+ 8
1763
+ -2
1764
+ 8
1765
+ -2
1766
+ -7
1767
+ -3
1768
+ -7
1769
+ -6
1770
+ 9
1771
+ 1
1772
+ 0
1773
+ 6
1774
+ -3
1775
+ 4
1776
+ 8
1777
+ 6
1778
+ -1
1779
+ -6
1780
+ 0
1781
+ 9
1782
+ 4
1783
+ 6
1784
+ 9
1785
+ 3
1786
+ 9
1787
+ 5
1788
+ 6
1789
+ -9
1790
+ -7
1791
+ -6
1792
+ 1
1793
+ 3
1794
+ -2
1795
+ -6
1796
+ 3
1797
+ -4
1798
+ 1
1799
+ -5
1800
+ -2
1801
+ 2
1802
+ -7
1803
+ -2
1804
+ -1
1805
+ 9
1806
+ 8
1807
+ 1
1808
+ -4
1809
+ -7
1810
+ 8
1811
+ -9
1812
+ -6
1813
+ -7
1814
+ 1
1815
+ -1
1816
+ -9
1817
+ 2
1818
+ 6
1819
+ -4
1820
+ 3
1821
+ -4
1822
+ 1
1823
+ 8
1824
+ -9
1825
+ -6
1826
+ -6
1827
+ 3
1828
+ -2
1829
+ -3
1830
+ -1
1831
+ -7
1832
+ 3
1833
+ -7
1834
+ -4
1835
+ 2
1836
+ -2
1837
+ 3
1838
+ 2
1839
+ -6
1840
+ -4
1841
+ -2
1842
+ -4
1843
+ 2
1844
+ 2
1845
+ -2
1846
+ -5
1847
+ 7
1848
+ -6
1849
+ 2
1850
+ -5
1851
+ 0
1852
+ -2
1853
+ 6
1854
+ -5
1855
+ -4
1856
+ -2
1857
+ -2
1858
+ 3
1859
+ 3
1860
+ -9
1861
+ 3
1862
+ 9
1863
+ 3
1864
+ 6
1865
+ 7
1866
+ -7
1867
+ -7
1868
+ 0
1869
+ -9
1870
+ 1
1871
+ 1
1872
+ -4
1873
+ -9
1874
+ 1
1875
+ 8
1876
+ -2
1877
+ -1
1878
+ 6
1879
+ -9
1880
+ 1
1881
+ -4
1882
+ 4
1883
+ 7
1884
+ 6
1885
+ 2
1886
+ 8
1887
+ 4
1888
+ 3
1889
+ -2
1890
+ 5
1891
+ 9
1892
+ -4
1893
+ -1
1894
+ 8
1895
+ 9
1896
+ 0
1897
+ -9
1898
+ 8
1899
+ 9
1900
+ -9
1901
+ 5
1902
+ 8
1903
+ -4
1904
+ 8
1905
+ -5
1906
+ -1
1907
+ -3
1908
+ -9
1909
+ 9
1910
+ 5
1911
+ -4
1912
+ 5
1913
+ 5
1914
+ 9
1915
+ 9
1916
+ 1
1917
+ -9
1918
+ -1
1919
+ 3
1920
+ 2
1921
+ 3
1922
+ -1
1923
+ -6
1924
+ 9
1925
+ 6
1926
+ 9
1927
+ -4
1928
+ -4
1929
+ -4
1930
+ 6
1931
+ 8
1932
+ -9
1933
+ -2
1934
+ 2
1935
+ 9
1936
+ 3
1937
+ 8
1938
+ -4
1939
+ 4
1940
+ 3
1941
+ 4
1942
+ -9
1943
+ 9
1944
+ -6
1945
+ -6
1946
+ 7
1947
+ -2
1948
+ 8
1949
+ 6
1950
+ 1
1951
+ 5
1952
+ -5
1953
+ 2
1954
+ -1
1955
+ -2
1956
+ 1
1957
+ 8
1958
+ 3
1959
+ 3
1960
+ 1
1961
+ 6
1962
+ -1
1963
+ -1
1964
+ 8
1965
+ -2
1966
+ 2
1967
+ -2
1968
+ 7
1969
+ -6
1970
+ -5
1971
+ -4
1972
+ -1
1973
+ -6
1974
+ 6
1975
+ 6
1976
+ -9
1977
+ 5
1978
+ 4
1979
+ -4
1980
+ 3
1981
+ 6
1982
+ 3
1983
+ -4
1984
+ 9
1985
+ 2
1986
+ 7
1987
+ 6
1988
+ -5
1989
+ 8
1990
+ -4
1991
+ -4
1992
+ -1
1993
+ 9
1994
+ 3
1995
+ 8
1996
+ 4
1997
+ 6
1998
+ 1
1999
+ -4
2000
+ -4
2001
+ -2
2002
+ 9
2003
+ -2
2004
+ 8
2005
+ -2
2006
+ -9
2007
+ 2
2008
+ 9
2009
+ -4
2010
+ 6
2011
+ 3
2012
+ 8
2013
+ 3
2014
+ 8
2015
+ -2
2016
+ 6
2017
+ 8
2018
+ -6
2019
+ 9
2020
+ -2
2021
+ 8
2022
+ 9
2023
+ 8
2024
+ -6
2025
+ 9
2026
+ -3
2027
+ 2
2028
+ 1
2029
+ 6
2030
+ 0
2031
+ -4
2032
+ 9
2033
+ 2
2034
+ 3
2035
+ 7
2036
+ -4
2037
+ 1
2038
+ -2
2039
+ 1
2040
+ 2
2041
+ 6
2042
+ -4
2043
+ -1
2044
+ -3
2045
+ -9
2046
+ 8
2047
+ -4
2048
+ -9
2049
+ 4
2050
+ 8
2051
+ -5
2052
+ 4
2053
+ 8
2054
+ 8
2055
+ 0
2056
+ -1
2057
+ -4
2058
+ -2
2059
+ -2
2060
+ 2
2061
+ 3
2062
+ 8
2063
+ 0
2064
+ 7
2065
+ 2
2066
+ 3
2067
+ 7
2068
+ -2
2069
+ 8
2070
+ -2
2071
+ 7
2072
+ -9
2073
+ 2
2074
+ -3
2075
+ 3
2076
+ 8
2077
+ 5
2078
+ -9
2079
+ -7
2080
+ 2
2081
+ -5
2082
+ 5
2083
+ -6
2084
+ -6
2085
+ -4
2086
+ 5
2087
+ 9
2088
+ 8
2089
+ -2
2090
+ 9
2091
+ -4
2092
+ -4
2093
+ -4
2094
+ -1
2095
+ 0
2096
+ -9
2097
+ -9
2098
+ 7
2099
+ 3
2100
+ -4
2101
+ 4
2102
+ -2
2103
+ 1
2104
+ 9
2105
+ 0
2106
+ -9
2107
+ 3
2108
+ -9
2109
+ 1
2110
+ -9
2111
+ -4
2112
+ -4
2113
+ -4
2114
+ -4
2115
+ 0
2116
+ 9
2117
+ 4
2118
+ -4
2119
+ 6
2120
+ -7
2121
+ -2
2122
+ -3
2123
+ 5
2124
+ 9
2125
+ 7
2126
+ 6
2127
+ -4
2128
+ 3
2129
+ 9
2130
+ 6
2131
+ 6
2132
+ 7
2133
+ -7
2134
+ -1
2135
+ -7
2136
+ 8
2137
+ -4
2138
+ 3
2139
+ 8
2140
+ 2
2141
+ -4
2142
+ -7
2143
+ 0
2144
+ 6
2145
+ 3
2146
+ -6
2147
+ -2
2148
+ -4
2149
+ -4
2150
+ -6
2151
+ 7
2152
+ 2
2153
+ 0
2154
+ -4
2155
+ 2
2156
+ 1
2157
+ -4
2158
+ 4
2159
+ 2
2160
+ -2
2161
+ 0
2162
+ -6
2163
+ 2
2164
+ 9
2165
+ 1
2166
+ -4
2167
+ 9
2168
+ -7
2169
+ -7
2170
+ 3
2171
+ 4
2172
+ 3
2173
+ 6
2174
+ 8
2175
+ 7
2176
+ -2
2177
+ 1
2178
+ 3
2179
+ 8
2180
+ 9
2181
+ -4
2182
+ 4
2183
+ 2
2184
+ 9
2185
+ 9
2186
+ 7
2187
+ -7
2188
+ 7
2189
+ -3
2190
+ -4
2191
+ -1
2192
+ 9
2193
+ -2
2194
+ 2
2195
+ 8
2196
+ 2
2197
+ 9
2198
+ -1
2199
+ 5
2200
+ -2
2201
+ 8
2202
+ -9
2203
+ -4
2204
+ 8
2205
+ 8
2206
+ -5
2207
+ -4
2208
+ 4
2209
+ 5
2210
+ -2
2211
+ -6
2212
+ -2
2213
+ -9
2214
+ -7
2215
+ -9
2216
+ 9
2217
+ -1
2218
+ -2
2219
+ 6
2220
+ 8
2221
+ 3
2222
+ 9
2223
+ 8
2224
+ -4
2225
+ -2
2226
+ -6
2227
+ 7
2228
+ 4
2229
+ -1
2230
+ 6
2231
+ -6
2232
+ -1
2233
+ 9
2234
+ 9
2235
+ 6
2236
+ -1
2237
+ -1
2238
+ 3
2239
+ -2
2240
+ 9
2241
+ -2
2242
+ 2
2243
+ 8
2244
+ -6
2245
+ 4
2246
+ 9
2247
+ -9
2248
+ 2
2249
+ -6
2250
+ 2
2251
+ 6
2252
+ -3
2253
+ 3
2254
+ 9
2255
+ 0
2256
+ 4
2257
+ 9
2258
+ 5
2259
+ -9
2260
+ 2
2261
+ 5
2262
+ -6
2263
+ 0
2264
+ 1
2265
+ -7
2266
+ -7
2267
+ -6
2268
+ -4
2269
+ 7
2270
+ 5
2271
+ -6
2272
+ 0
2273
+ 6
2274
+ -1
2275
+ -5
2276
+ -4
2277
+ 6
2278
+ -6
2279
+ 1
2280
+ 2
2281
+ 0
2282
+ -4
2283
+ 2
2284
+ 3
2285
+ 6
2286
+ 8
2287
+ 4
2288
+ 7
2289
+ 7
2290
+ -4
2291
+ -6
2292
+ 3
2293
+ -9
2294
+ 2
2295
+ 6
2296
+ 9
2297
+ -6
2298
+ 6
2299
+ 0
2300
+ 0
2301
+ 5
2302
+ 8
2303
+ 9
2304
+ 5
2305
+ -5
2306
+ -4
2307
+ 0
2308
+ -5
2309
+ -9
2310
+ 2
2311
+ 2
2312
+ 3
2313
+ -4
2314
+ -2
2315
+ -6
2316
+ 8
2317
+ -6
2318
+ 2
2319
+ 5
2320
+ 4
2321
+ 9
2322
+ -9
2323
+ 5
2324
+ -5
2325
+ 1
2326
+ -3
2327
+ 8
2328
+ 8
2329
+ 2
2330
+ -4
2331
+ 3
2332
+ -9
2333
+ -9
2334
+ 8
2335
+ -5
2336
+ 2
2337
+ -1
2338
+ 2
2339
+ -4
2340
+ 2
2341
+ 9
2342
+ 3
2343
+ -4
2344
+ -2
2345
+ -2
2346
+ 8
2347
+ -4
2348
+ 4
2349
+ -7
2350
+ 5
2351
+ 8
2352
+ 1
2353
+ -4
2354
+ -6
2355
+ 8
2356
+ 1
2357
+ 2
2358
+ -6
2359
+ -9
2360
+ 9
2361
+ -2
2362
+ 3
2363
+ 5
2364
+ 4
2365
+ -2
2366
+ 1
2367
+ -6
2368
+ 0
2369
+ 4
2370
+ -7
2371
+ 7
2372
+ 4
2373
+ 2
2374
+ -6
2375
+ -4
2376
+ -2
2377
+ -7
2378
+ 5
2379
+ 3
2380
+ 5
2381
+ -7
2382
+ 5
2383
+ 8
2384
+ -4
2385
+ -4
2386
+ 7
2387
+ -2
2388
+ 1
2389
+ 6
2390
+ 3
2391
+ -9
2392
+ -4
2393
+ 2
2394
+ -4
2395
+ 7
2396
+ 2
2397
+ -6
2398
+ -4
2399
+ -8
2400
+ 1
2401
+ 4
2402
+ 2
2403
+ 7
2404
+ -1
2405
+ -2
2406
+ 0
2407
+ 8
2408
+ 3
2409
+ -9
2410
+ 0
2411
+ 8
2412
+ 3
2413
+ -3
2414
+ -9
2415
+ -4
2416
+ 8
2417
+ 1
2418
+ 3
2419
+ 4
2420
+ 9
2421
+ 4
2422
+ -1
2423
+ -2
2424
+ -4
2425
+ -2
2426
+ 7
2427
+ 5
2428
+ 5
2429
+ 3
2430
+ 3
2431
+ -3
2432
+ 3
2433
+ 0
2434
+ 4
2435
+ 1
2436
+ 4
2437
+ 7
2438
+ 4
2439
+ 9
2440
+ 4
2441
+ -4
2442
+ 3
2443
+ 6
2444
+ 1
2445
+ 4
2446
+ 2
2447
+ 8
2448
+ 2
2449
+ 5
2450
+ -4
2451
+ -4
2452
+ -1
2453
+ -7
2454
+ -9
2455
+ 7
2456
+ 7
2457
+ 7
2458
+ 2
2459
+ 8
2460
+ 2
2461
+ 1
2462
+ -4
2463
+ -5
2464
+ -7
2465
+ -2
2466
+ -4
2467
+ -2
2468
+ -6
2469
+ -2
2470
+ -2
2471
+ -5
2472
+ -4
2473
+ -2
2474
+ 6
2475
+ 7
2476
+ 3
2477
+ -4
2478
+ 3
2479
+ -6
2480
+ -4
2481
+ -8
2482
+ 5
2483
+ 1
2484
+ -7
2485
+ 3
2486
+ -4
2487
+ 9
2488
+ 8
2489
+ -2
2490
+ 2
2491
+ -4
2492
+ 1
2493
+ -2
2494
+ -2
2495
+ -2
2496
+ -4
2497
+ -1
2498
+ 1
2499
+ 8
2500
+ -5
2501
+ 2
2502
+ -4
2503
+ 2
2504
+ 5
2505
+ 9
2506
+ 8
2507
+ 6
2508
+ -9
2509
+ -9
2510
+ 5
2511
+ 2
2512
+ -4
2513
+ 3
2514
+ 7
2515
+ -5
2516
+ 9
2517
+ 0
2518
+ -9
2519
+ 8
2520
+ 6
2521
+ -6
2522
+ 1
2523
+ -4
2524
+ -6
2525
+ 5
2526
+ -2
2527
+ -6
2528
+ 8
2529
+ 1
2530
+ 5
2531
+ -8
2532
+ 4
2533
+ -6
2534
+ 5
2535
+ 2
2536
+ -2
2537
+ 3
2538
+ -4
2539
+ -3
2540
+ 5
2541
+ 6
2542
+ -1
2543
+ 8
2544
+ 9
2545
+ -1
2546
+ -2
2547
+ 8
2548
+ -2
2549
+ 5
2550
+ -2
2551
+ -2
2552
+ -1
2553
+ 8
2554
+ 9
2555
+ -6
2556
+ 8
2557
+ -4
2558
+ -2
2559
+ 8
2560
+ 6
2561
+ 6
2562
+ -4
2563
+ -9
2564
+ -5
2565
+ 2
2566
+ 9
2567
+ 6
2568
+ 9
2569
+ -7
2570
+ 1
2571
+ -7
2572
+ 3
2573
+ -1
2574
+ -2
2575
+ -4
2576
+ -6
2577
+ -5
2578
+ -6
2579
+ 0
2580
+ -6
2581
+ -2
2582
+ -1
2583
+ -4
2584
+ 9
2585
+ -7
2586
+ -4
2587
+ -1
2588
+ -5
2589
+ -2
2590
+ 2
2591
+ -7
2592
+ -9
2593
+ -1
2594
+ 2
2595
+ 5
2596
+ -2
2597
+ 6
2598
+ 5
2599
+ -2
2600
+ 4
2601
+ -5
2602
+ 6
2603
+ -1
2604
+ 9
2605
+ 9
2606
+ -5
2607
+ -4
2608
+ 9
2609
+ 5
2610
+ -4
2611
+ 6
2612
+ 1
2613
+ 8
2614
+ 5
2615
+ 4
2616
+ 6
2617
+ 1
2618
+ 2
2619
+ -6
2620
+ 5
2621
+ 2
2622
+ -7
2623
+ -7
2624
+ -9
2625
+ 9
2626
+ 5
2627
+ -4
2628
+ -6
2629
+ -4
2630
+ 8
2631
+ 2
2632
+ -6
2633
+ -4
2634
+ 5
2635
+ 1
2636
+ 8
2637
+ 1
2638
+ 1
2639
+ -4
2640
+ 2
2641
+ -2
2642
+ -3
2643
+ 6
2644
+ 1
2645
+ 3
2646
+ 8
2647
+ 8
2648
+ -4
2649
+ 3
2650
+ -2
2651
+ -9
2652
+ 1
2653
+ 9
2654
+ 6
2655
+ 3
2656
+ -2
2657
+ 8
2658
+ 7
2659
+ 4
2660
+ 1
2661
+ -4
2662
+ 2
2663
+ -9
2664
+ -4
2665
+ 5
2666
+ -6
2667
+ -6
2668
+ -3
2669
+ -4
2670
+ 9
2671
+ 0
2672
+ -4
2673
+ 5
2674
+ -4
2675
+ -7
2676
+ -2
2677
+ -3
2678
+ 9
2679
+ -5
2680
+ -2
2681
+ -4
2682
+ -5
2683
+ 2
2684
+ -2
2685
+ 2
2686
+ 3
2687
+ -1
2688
+ 5
2689
+ -4
2690
+ 2
2691
+ 3
2692
+ 2
2693
+ 2
2694
+ -5
2695
+ -4
2696
+ -2
2697
+ 4
2698
+ 9
2699
+ 2
2700
+ -9
2701
+ -4
2702
+ -2
2703
+ 1
2704
+ 8
2705
+ 5
2706
+ -7
2707
+ 2
2708
+ -4
2709
+ -3
2710
+ -3
2711
+ -4
2712
+ -1
2713
+ 8
2714
+ -9
2715
+ 6
2716
+ 1
2717
+ -9
2718
+ -7
2719
+ 8
2720
+ -5
2721
+ -5
2722
+ 9
2723
+ -1
2724
+ -2
2725
+ -1
2726
+ -7
2727
+ -4
2728
+ 8
2729
+ 4
2730
+ -4
2731
+ 4
2732
+ -6
2733
+ -6
2734
+ -2
2735
+ 5
2736
+ 9
2737
+ -4
2738
+ 5
2739
+ 3
2740
+ -6
2741
+ -4
2742
+ 3
2743
+ -9
2744
+ 8
2745
+ 7
2746
+ 7
2747
+ -2
2748
+ -1
2749
+ 2
2750
+ 3
2751
+ -4
2752
+ -7
2753
+ 4
2754
+ 1
2755
+ 5
2756
+ 9
2757
+ 3
2758
+ 9
2759
+ 3
2760
+ 1
2761
+ -1
2762
+ -7
2763
+ -3
2764
+ -4
2765
+ -2
2766
+ 8
2767
+ -4
2768
+ 4
2769
+ 1
2770
+ -1
2771
+ -4
2772
+ -6
2773
+ -2
2774
+ -5
2775
+ 6
2776
+ -2
2777
+ -9
2778
+ -1
2779
+ 6
2780
+ 8
2781
+ 1
2782
+ -6
2783
+ 7
2784
+ 7
2785
+ 0
2786
+ 5
2787
+ 5
2788
+ 8
2789
+ -4
2790
+ 6
2791
+ -4
2792
+ 2
2793
+ 9
2794
+ 7
2795
+ 3
2796
+ -3
2797
+ -4
2798
+ 9
2799
+ 3
2800
+ 0
2801
+ -9
2802
+ 5
2803
+ -3
2804
+ 8
2805
+ -1
2806
+ 0
2807
+ -4
2808
+ 5
2809
+ 9
2810
+ 9
2811
+ -2
2812
+ 1
2813
+ 4
2814
+ 9
2815
+ 5
2816
+ 1
2817
+ 8
2818
+ -2
2819
+ -3
2820
+ 9
2821
+ -2
2822
+ -2
2823
+ -2
2824
+ 8
2825
+ 6
2826
+ 8
2827
+ 6
2828
+ 2
2829
+ -2
2830
+ 2
2831
+ -8
2832
+ 3
2833
+ -5
2834
+ -9
2835
+ 4
2836
+ 5
2837
+ -4
2838
+ 1
2839
+ 9
2840
+ 5
2841
+ -4
2842
+ -2
2843
+ -2
2844
+ 8
2845
+ 5
2846
+ 0
2847
+ 4
2848
+ 1
2849
+ 2
2850
+ -2
2851
+ 2
2852
+ 1
2853
+ 2
2854
+ -5
2855
+ -5
2856
+ 1
2857
+ -2
2858
+ -7
2859
+ 2
2860
+ -2
2861
+ 3
2862
+ -4
2863
+ -2
2864
+ 7
2865
+ -6
2866
+ 2
2867
+ -6
2868
+ -9
2869
+ 8
2870
+ -4
2871
+ 2
2872
+ 6
2873
+ 5
2874
+ 2
2875
+ -6
2876
+ -1
2877
+ -8
2878
+ -3
2879
+ -3
2880
+ -2
2881
+ -9
2882
+ 8
2883
+ -8
2884
+ 1
2885
+ -6
2886
+ 9
2887
+ 8
2888
+ 0
2889
+ 6
2890
+ -2
2891
+ 5
2892
+ 2
2893
+ -4
2894
+ 9
2895
+ 5
2896
+ 7
2897
+ 9
2898
+ -9
2899
+ -4
2900
+ 4
2901
+ 0
2902
+ 1
2903
+ 7
2904
+ -1
2905
+ -7
2906
+ 3
2907
+ -9
2908
+ -6
2909
+ 7
2910
+ 7
2911
+ 1
2912
+ -4
2913
+ -4
2914
+ -2
2915
+ -9
2916
+ -4
2917
+ 1
2918
+ 2
2919
+ 7
2920
+ 5
2921
+ -9
2922
+ 9
2923
+ 0
2924
+ 0
2925
+ 8
2926
+ 3
2927
+ -2
2928
+ -2
2929
+ 9
2930
+ 9
2931
+ 4
2932
+ 8
2933
+ 2
2934
+ 2
2935
+ -9
2936
+ -1
2937
+ 3
2938
+ 4
2939
+ 7
2940
+ -4
2941
+ -9
2942
+ 7
2943
+ 8
2944
+ -9
2945
+ 5
2946
+ -4
2947
+ 5
2948
+ -1
2949
+ -4
2950
+ 8
2951
+ -1
2952
+ 5
2953
+ 0
2954
+ -9
2955
+ 1
2956
+ 0
2957
+ 8
2958
+ 8
2959
+ 0
2960
+ 4
2961
+ 0
2962
+ 9
2963
+ 2
2964
+ 2
2965
+ 1
2966
+ 4
2967
+ 0
2968
+ 3
2969
+ -2
2970
+ -1
2971
+ -2
2972
+ 9
2973
+ 7
2974
+ -8
2975
+ -2
2976
+ 5
2977
+ 9
2978
+ 2
2979
+ 2
2980
+ 1
2981
+ 1
2982
+ 5
2983
+ -4
2984
+ -6
2985
+ 3
2986
+ -9
2987
+ -9
2988
+ 8
2989
+ 1
2990
+ 2
2991
+ 8
2992
+ -2
2993
+ 6
2994
+ -4
2995
+ 9
2996
+ 2
2997
+ -5
2998
+ -1
2999
+ 0
3000
+ 6
3001
+ 9
3002
+ -4
3003
+ -5
3004
+ 7
3005
+ -2
3006
+ -7
3007
+ 1
3008
+ 2
3009
+ 2
3010
+ -7
3011
+ 7
3012
+ -7
3013
+ 4
3014
+ -2
3015
+ -4
3016
+ -3
3017
+ 5
3018
+ -9
3019
+ 3
3020
+ -2
3021
+ -2
3022
+ 9
3023
+ -7
3024
+ -2
3025
+ 2
3026
+ 8
3027
+ 9
3028
+ 6
3029
+ 0
3030
+ 3
3031
+ 7
3032
+ -4
3033
+ -1
3034
+ -4
3035
+ -9
3036
+ 0
3037
+ 2
3038
+ -3
3039
+ 4
3040
+ 0
3041
+ 9
3042
+ 5
3043
+ -3
3044
+ 2
3045
+ 8
3046
+ 3
3047
+ 2
3048
+ 2
3049
+ 6
3050
+ -3
3051
+ 6
3052
+ -7
3053
+ -4
3054
+ 2
3055
+ 9
3056
+ 2
3057
+ 6
3058
+ 9
3059
+ 1
3060
+ 3
3061
+ 7
3062
+ -4
3063
+ 1
3064
+ -9
3065
+ -2
3066
+ -1
3067
+ 6
3068
+ -2
3069
+ 9
3070
+ -6
3071
+ -4
3072
+ 6
3073
+ 6
3074
+ -4
3075
+ -7
3076
+ 5
3077
+ -2
3078
+ -7
3079
+ 7
3080
+ 6
3081
+ 9
3082
+ -4
3083
+ -1
3084
+ 5
3085
+ 3
3086
+ 2
3087
+ 3
3088
+ 6
3089
+ -5
3090
+ 2
3091
+ 6
3092
+ 1
3093
+ -9
3094
+ 2
3095
+ 9
3096
+ 6
3097
+ -6
3098
+ 1
3099
+ 6
3100
+ 3
3101
+ 9
3102
+ 7
3103
+ 6
3104
+ -3
3105
+ -1
3106
+ 6
3107
+ 5
3108
+ 6
3109
+ -2
3110
+ 6
3111
+ 6
3112
+ -6
3113
+ 9
3114
+ 8
3115
+ 1
3116
+ -9
3117
+ 8
3118
+ -4
3119
+ 6
3120
+ -1
3121
+ 1
3122
+ 3
3123
+ 7
3124
+ 1
3125
+ 8
3126
+ 9
3127
+ -2
3128
+ 7
3129
+ 5
3130
+ 3
3131
+ -1
3132
+ 1
3133
+ 5
3134
+ -3
3135
+ 1
3136
+ -1
3137
+ 8
3138
+ 6
3139
+ 1
3140
+ -9
3141
+ 2
3142
+ -4
3143
+ 2
3144
+ 4
3145
+ 3
3146
+ 6
3147
+ 1
3148
+ -2
3149
+ 7
3150
+ 7
3151
+ -5
3152
+ -3
3153
+ -4
3154
+ -2
3155
+ 4
3156
+ 3
3157
+ -1
3158
+ 8
3159
+ 8
3160
+ -2
3161
+ -6
3162
+ -9
3163
+ -6
3164
+ -1
3165
+ 7
3166
+ 9
3167
+ 3
3168
+ 3
3169
+ 6
3170
+ -4
3171
+ 7
3172
+ 9
3173
+ 8
3174
+ -2
3175
+ 3
3176
+ -3
3177
+ -2
3178
+ 2
3179
+ -4
3180
+ -4
3181
+ 1
3182
+ 4
3183
+ 8
3184
+ 8
3185
+ 5
3186
+ 3
3187
+ 7
3188
+ 8
3189
+ -7
3190
+ 2
3191
+ 5
3192
+ 3
3193
+ 2
3194
+ -1
3195
+ -1
3196
+ 9
3197
+ 2
3198
+ 3
3199
+ 8
3200
+ 5
3201
+ 2
3202
+ -2
3203
+ -5
3204
+ -1
3205
+ -5
3206
+ 1
3207
+ 9
3208
+ -2
3209
+ 3
3210
+ 3
3211
+ -6
3212
+ -9
3213
+ 4
3214
+ 2
3215
+ 9
3216
+ 0
3217
+ -4
3218
+ -5
3219
+ -1
3220
+ 3
3221
+ -4
3222
+ 9
3223
+ -2
3224
+ -2
3225
+ 3
3226
+ -2
3227
+ -4
3228
+ 0
3229
+ -3
3230
+ -4
3231
+ 2
3232
+ 8
3233
+ -3
3234
+ 5
3235
+ 7
3236
+ 6
3237
+ 4
3238
+ 4
3239
+ 4
3240
+ -4
3241
+ -7
3242
+ -6
3243
+ 2
3244
+ 4
3245
+ -1
3246
+ -2
3247
+ -4
3248
+ -4
3249
+ 1
3250
+ -2
3251
+ 9
3252
+ 9
3253
+ -5
3254
+ 7
3255
+ -3
3256
+ 9
3257
+ 6
3258
+ 7
3259
+ -4
3260
+ -2
3261
+ 1
3262
+ 6
3263
+ -4
3264
+ -2
3265
+ 9
3266
+ -9
3267
+ 3
3268
+ 5
3269
+ 8
3270
+ 1
3271
+ -9
3272
+ 7
3273
+ 6
3274
+ 0
3275
+ -9
3276
+ -2
3277
+ -7
3278
+ 2
3279
+ -4
3280
+ -2
3281
+ 0
3282
+ -4
3283
+ -9
3284
+ -4
3285
+ 2
3286
+ 2
3287
+ 1
3288
+ -1
3289
+ 1
3290
+ -5
3291
+ -6
3292
+ -4
3293
+ -4
3294
+ 1
3295
+ 3
3296
+ -9
3297
+ 2
3298
+ -3
3299
+ 8
3300
+ -4
3301
+ 2
3302
+ -9
3303
+ -9
3304
+ 5
3305
+ -4
3306
+ -4
3307
+ 0
3308
+ -1
3309
+ -1
3310
+ 2
3311
+ 2
3312
+ -4
3313
+ -4
3314
+ 9
3315
+ 9
3316
+ 2
3317
+ 8
3318
+ -4
3319
+ 8
3320
+ 8
3321
+ 0
3322
+ 3
3323
+ 4
3324
+ -9
3325
+ 4
3326
+ -3
3327
+ -2
3328
+ -4
3329
+ 2
3330
+ -9
3331
+ 0
3332
+ 5
3333
+ -4
3334
+ 4
3335
+ 6
3336
+ -4
3337
+ -9
3338
+ -6
3339
+ 1
3340
+ 8
3341
+ -2
3342
+ 4
3343
+ -6
3344
+ 7
3345
+ 0
3346
+ -4
3347
+ 9
3348
+ 7
3349
+ 7
3350
+ -3
3351
+ -1
3352
+ -9
3353
+ 5
3354
+ 3
3355
+ -9
3356
+ 9
3357
+ 3
3358
+ 5
3359
+ 1
3360
+ 8
3361
+ 3
3362
+ -9
3363
+ -3
3364
+ -2
3365
+ 6
3366
+ 8
3367
+ 5
3368
+ -1
3369
+ -2
3370
+ 2
3371
+ 9
3372
+ -4
3373
+ 4
3374
+ 2
3375
+ -2
3376
+ -2
3377
+ 7
3378
+ -6
3379
+ 7
3380
+ -4
3381
+ -9
3382
+ 9
3383
+ -4
3384
+ -6
3385
+ -6
3386
+ 8
3387
+ -1
3388
+ 2
3389
+ 0
3390
+ -6
3391
+ 5
3392
+ 8
3393
+ 1
3394
+ -4
3395
+ -4
3396
+ -3
3397
+ 0
3398
+ 7
3399
+ 8
3400
+ 8
3401
+ 3
3402
+ 3
3403
+ 4
3404
+ -1
3405
+ 4
3406
+ -2
3407
+ -3
3408
+ -9
3409
+ -7
3410
+ 2
3411
+ -2
3412
+ 5
3413
+ -5
3414
+ -1
3415
+ -7
3416
+ -7
3417
+ 0
3418
+ -2
3419
+ -5
3420
+ -2
3421
+ 4
3422
+ 4
3423
+ 4
3424
+ -1
3425
+ -1
3426
+ 2
3427
+ 5
3428
+ 5
3429
+ 0
3430
+ -6
3431
+ 9
3432
+ -7
3433
+ 8
3434
+ 4
3435
+ -7
3436
+ 5
3437
+ 3
3438
+ 9
3439
+ -2
3440
+ -7
3441
+ 0
3442
+ 9
3443
+ -4
3444
+ 2
3445
+ -7
3446
+ 0
3447
+ 9
3448
+ -4
3449
+ -4
3450
+ 7
3451
+ 2
3452
+ 9
3453
+ 9
3454
+ 1
3455
+ 5
3456
+ 2
3457
+ -3
3458
+ -9
3459
+ -1
3460
+ 4
3461
+ 6
3462
+ 3
3463
+ 8
3464
+ 5
3465
+ 8
3466
+ 4
3467
+ 0
3468
+ 2
3469
+ 2
3470
+ 5
3471
+ 3
3472
+ -4
3473
+ 3
3474
+ -4
3475
+ -7
3476
+ 6
3477
+ -7
3478
+ -4
3479
+ -9
3480
+ -3
3481
+ 7
3482
+ -4
3483
+ 3
3484
+ 5
3485
+ 4
3486
+ 9
3487
+ 6
3488
+ -4
3489
+ 8
3490
+ 9
3491
+ -2
3492
+ 5
3493
+ -6
3494
+ -4
3495
+ 2
3496
+ -2
3497
+ -4
3498
+ -4
3499
+ -9
3500
+ -4
3501
+ -2
3502
+ 0
3503
+ -4
3504
+ 3
3505
+ 9
3506
+ 6
3507
+ 9
3508
+ -2
3509
+ 3
3510
+ -2
3511
+ 3
3512
+ -2
3513
+ 9
3514
+ 3
3515
+ -2
3516
+ 5
3517
+ -1
3518
+ 5
3519
+ 3
3520
+ 0
3521
+ -3
3522
+ -7
3523
+ 0
3524
+ -9
3525
+ -7
3526
+ -7
3527
+ 2
3528
+ -4
3529
+ 0
3530
+ -6
3531
+ 2
3532
+ -4
3533
+ 2
3534
+ -6
3535
+ -4
3536
+ -4
3537
+ -1
3538
+ -9
3539
+ 3
3540
+ -2
3541
+ -4
3542
+ -5
3543
+ 8
3544
+ -7
3545
+ 7
3546
+ 3
3547
+ 1
3548
+ 4
3549
+ 6
3550
+ 4
3551
+ -9
3552
+ -2
3553
+ 6
3554
+ 3
3555
+ -9
3556
+ 2
3557
+ -1
3558
+ 1
3559
+ -1
3560
+ -4
3561
+ -3
3562
+ -2
3563
+ 4
3564
+ 6
3565
+ 6
3566
+ -4
3567
+ -2
3568
+ -5
3569
+ -2
3570
+ -9
3571
+ -2
3572
+ 2
3573
+ -2
3574
+ 1
3575
+ 2
3576
+ -4
3577
+ 7
3578
+ -2
3579
+ 1
3580
+ 1
3581
+ 9
3582
+ 9
3583
+ 4
3584
+ -3
3585
+ 1
3586
+ 6
3587
+ -6
3588
+ 8
3589
+ -9
3590
+ -9
3591
+ -9
3592
+ 7
3593
+ -2
3594
+ -9
3595
+ 0
3596
+ 1
3597
+ -9
3598
+ 6
3599
+ -3
3600
+ -6
3601
+ 0
3602
+ -9
3603
+ -9
3604
+ 1
3605
+ -6
3606
+ -2
3607
+ 7
3608
+ 2
3609
+ -4
3610
+ -5
3611
+ -4
3612
+ -9
3613
+ 9
3614
+ -9
3615
+ 7
3616
+ 7
3617
+ 5
3618
+ 6
3619
+ 0
3620
+ 3
3621
+ 5
3622
+ 1
3623
+ 8
3624
+ 1
3625
+ 2
3626
+ 3
3627
+ 5
3628
+ 4
3629
+ 3
3630
+ 5
3631
+ 4
3632
+ -4
3633
+ -2
3634
+ -4
3635
+ 2
3636
+ 1
3637
+ 8
3638
+ -2
3639
+ -5
3640
+ -4
3641
+ -2
3642
+ -3
3643
+ 8
3644
+ 7
3645
+ 3
3646
+ -4
3647
+ 3
3648
+ 9
3649
+ 6
3650
+ 7
3651
+ -9
3652
+ -3
3653
+ 3
3654
+ 1
3655
+ -1
3656
+ -4
3657
+ -3
3658
+ 3
3659
+ -1
3660
+ -9
3661
+ 2
3662
+ 0
3663
+ 6
3664
+ -2
3665
+ 0
3666
+ -3
3667
+ -7
3668
+ 1
3669
+ 6
3670
+ 2
3671
+ 2
3672
+ 2
3673
+ 4
3674
+ 3
3675
+ 1
3676
+ -6
3677
+ 8
3678
+ 5
3679
+ 7
3680
+ 9
3681
+ 3
3682
+ -4
3683
+ -5
3684
+ 8
3685
+ 2
3686
+ 6
3687
+ 3
3688
+ -1
3689
+ -1
3690
+ 0
3691
+ 0
3692
+ 4
3693
+ -9
3694
+ 2
3695
+ 1
3696
+ -9
3697
+ -4
3698
+ 2
3699
+ 3
3700
+ 2
3701
+ -9
3702
+ 3
3703
+ 2
3704
+ 3
3705
+ -1
3706
+ -2
3707
+ 1
3708
+ 6
3709
+ 0
3710
+ -4
3711
+ 1
3712
+ 3
3713
+ -3
3714
+ 3
3715
+ 9
3716
+ -8
3717
+ 9
3718
+ 3
3719
+ 8
3720
+ 6
3721
+ -4
3722
+ -4
3723
+ 8
3724
+ -4
3725
+ 6
3726
+ 2
3727
+ 4
3728
+ 6
3729
+ -9
3730
+ 6
3731
+ 6
3732
+ -4
3733
+ -4
3734
+ 3
3735
+ 2
3736
+ 0
3737
+ 2
3738
+ 1
3739
+ -7
3740
+ 9
3741
+ 4
3742
+ 3
3743
+ 2
3744
+ 6
3745
+ 4
3746
+ 3
3747
+ -9
3748
+ 3
3749
+ 9
3750
+ 0
3751
+ -9
3752
+ -9
3753
+ -2
3754
+ -6
3755
+ -1
3756
+ 4
3757
+ 5
3758
+ 2
3759
+ 1
3760
+ -2
3761
+ -1
3762
+ 8
3763
+ -1
3764
+ -2
3765
+ 8
3766
+ 0
3767
+ 1
3768
+ 9
3769
+ -6
3770
+ 5
3771
+ -9
3772
+ -2
3773
+ 9
3774
+ 6
3775
+ -4
3776
+ -9
3777
+ -9
3778
+ 1
3779
+ -7
3780
+ -2
3781
+ 0
3782
+ -1
3783
+ -9
3784
+ -6
3785
+ -6
3786
+ 2
3787
+ 6
3788
+ -9
3789
+ -3
3790
+ 7
3791
+ -4
3792
+ 6
3793
+ 7
3794
+ 2
3795
+ 9
3796
+ -2
3797
+ 3
3798
+ 9
3799
+ 2
3800
+ -2
3801
+ 6
3802
+ 5
3803
+ 2
3804
+ 8
3805
+ -7
3806
+ -4
3807
+ 3
3808
+ -2
3809
+ -6
3810
+ -1
3811
+ 3
3812
+ 5
3813
+ -4
3814
+ 6
3815
+ 9
3816
+ -5
3817
+ 8
3818
+ 3
3819
+ -9
3820
+ 9
3821
+ -3
3822
+ 8
3823
+ 5
3824
+ -1
3825
+ 6
3826
+ 3
3827
+ 8
3828
+ 8
3829
+ 2
3830
+ 4
3831
+ 8
3832
+ 3
3833
+ -4
3834
+ -1
3835
+ 4
3836
+ 0
3837
+ -4
3838
+ 4
3839
+ -7
3840
+ 4
3841
+ -2
3842
+ -4
3843
+ 5
3844
+ 7
3845
+ 5
3846
+ -4
3847
+ 8
3848
+ -1
3849
+ -9
3850
+ 7
3851
+ -1
3852
+ -9
3853
+ -2
3854
+ 9
3855
+ 3
3856
+ -8
3857
+ -7
3858
+ 4
3859
+ 8
3860
+ 1
3861
+ 8
3862
+ -6
3863
+ 8
3864
+ 6
3865
+ -9
3866
+ -4
3867
+ -9
3868
+ 2
3869
+ -2
3870
+ -7
3871
+ -3
3872
+ 1
3873
+ 9
3874
+ -4
3875
+ 4
3876
+ 2
3877
+ 2
3878
+ 9
3879
+ -3
3880
+ 2
3881
+ 8
3882
+ -2
3883
+ 2
3884
+ 1
3885
+ -6
3886
+ -4
3887
+ 3
3888
+ -4
3889
+ -9
3890
+ -4
3891
+ 3
3892
+ 3
3893
+ -4
3894
+ -1
3895
+ 9
3896
+ 2
3897
+ -1
3898
+ 1
3899
+ -4
3900
+ -3
3901
+ 1
3902
+ 4
3903
+ -4
3904
+ -5
3905
+ 6
3906
+ 2
3907
+ -9
3908
+ 2
3909
+ 1
3910
+ 2
3911
+ 1
3912
+ 8
3913
+ -3
3914
+ 1
3915
+ -5
3916
+ 4
3917
+ 4
3918
+ 2
3919
+ 3
3920
+ -2
3921
+ -6
3922
+ 3
3923
+ 1
3924
+ 8
3925
+ 1
3926
+ 3
3927
+ 2
3928
+ 8
3929
+ -3
3930
+ 3
3931
+ 8
3932
+ 9
3933
+ -2
3934
+ 9
3935
+ 9
3936
+ -2
3937
+ -3
3938
+ 5
3939
+ 2
3940
+ -3
3941
+ 1
3942
+ -9
3943
+ -9
3944
+ -1
3945
+ 9
3946
+ 2
3947
+ -2
3948
+ 1
3949
+ -4
3950
+ -1
3951
+ -6
3952
+ 2
3953
+ 2
3954
+ -2
3955
+ 2
3956
+ -5
3957
+ 8
3958
+ 4
3959
+ 2
3960
+ 5
3961
+ 1
3962
+ -2
3963
+ -2
3964
+ 2
3965
+ 6
3966
+ 8
3967
+ 2
3968
+ -6
3969
+ 8
3970
+ -1
3971
+ 2
3972
+ 4
3973
+ -9
3974
+ 5
3975
+ -5
3976
+ -4
3977
+ -9
3978
+ 1
3979
+ 0
3980
+ 9
3981
+ -3
3982
+ 1
3983
+ 5
3984
+ 7
3985
+ -6
3986
+ -4
3987
+ 7
3988
+ -4
3989
+ 9
3990
+ 5
3991
+ -4
3992
+ -1
3993
+ -1
3994
+ -2
3995
+ 3
3996
+ 6
3997
+ -1