Problem Statement
Cat Noku has a list of N paintbrushes to use for his next masterpiece.
The paintbrushes are labeled from 0 to N-1, and are described by the
Noku will go through his paintbrushes from 0 to N-1 and he will use the
- He chooses to use paintbrush i with probability prob[i] / 100.
- If he chooses to use the paintbrush i, he will place the brush (without rotating it) so that the point (0,0) of the paintbrush will lie somewhere on the boundary of his current masterpiece.
- He will then make a stroke with the paintbrush. During the stroke, the brush will move (again, without any rotation) around the entire boundary of the current masterpiece in such a way that the point (0,0) of the paintbrush always lies on the boundary of the current masterpiece. The region painted by the stroke is added to the masterpiece.
Compute and return the expected area of Noku's final masterpiece.
Definition
- Class:
- TrianglePainting
- Method:
- expectedArea
- Parameters:
- int[], int[], int[], int[], int[]
- Returns:
- double
- Method signature:
- double expectedArea(int[] x1, int[] y1, int[] x2, int[] y2, int[] prob)
- (be sure your method is public)
Notes
- Your return value must have an absolute or relative error smaller than or equal to 1e-6.
Constraints
- N will be between 1 and 2,500, inclusive.
- x1,y1,x2,y2,prob will each have exactly N elements.
- Each element of x1,y1,x2,y2 will be between -100 and 100, inclusive.
- Each triangle will have a positive area.
- Each element of prob will be between 1 and 100, inclusive.
Examples
{1,-2,-4}
{2,3,-1}
{2,2,-2}
{-1,-1,1}
{100,100,100}
Returns: 52.5
Cat Noku has the following paintbrushes: All the paintbrushes will be used. The final masterpiece will look as follows: Note that in the drawing of the final masterpiece each color represents just the area added to the masterpiece after using the brush of the corresponding color, and not the area actually painted by that brush.
{1,-2,-4}
{2,3,-1}
{2,2,-2}
{-1,-1,1}
{50,50,50}
Returns: 15.0
{1}
{1}
{1}
{-1}
{1}
Returns: 0.01
{1,1,1,1,1,1,1,1,1,1}
{-1,1,-1,1,-1,1,-1,1,-1,1}
{1,1,1,1,1,1,1,1,1,1}
{1,-1,1,-1,1,-1,1,-1,1,-1}
{10,20,30,40,50,60,70,80,90,100}
Returns: 31.899999999999995
{-6,-2,-10,9,8,-1,10,5,7,3}
{-5,2,-5,6,6,-10,8,7,-4,-5}
{5,-1,-1,-8,6,7,10,-6,6,3}
{0,-5,-7,4,10,0,10,-3,-3,-4}
{71,100,43,59,51,41,11,53,3,27}
Returns: 940.1964999999999
{34,-71,19,78,69,-73,27,64,-100,70,-87,50,8,-97,46,-46,-30,-40,-30,-23,77,81,48,93,-40,70, 37,-66,53,-87,-85,38,-90,63,-16,24,-2,-60,-88,67,-56,-8,-80,-19,-84,35,95,-24,-26,-15}
{58,-24,-80,33,-98,61,99,79,-34,29,-1,-70,70,90,43,25,-50,-54,73,18,36,8,41,3,26,-6,-80, -22,65,33,-100,-1,80,-19,-6,-8,-4,-86,-43,-34,0,-93,-61,92,74,-77,32,-78,-56,-21}
{-78,-100,-1,27,67,-31,-82,-24,44,-26,12,36,-36,-71,-84,3,59,28,-26,-79,-47,56,-75,-44, -85,-72,56,53,-27,53,-19,-65,14,62,96,-44,12,-20,-57,83,59,71,85,-62,21,24,-38,20,52,-64}
{90,-41,79,18,7,-85,-88,-16,12,38,-7,12,-27,-43,-30,-93,48,-19,58,54,70,73,81,89,-35,-75, 63,-73,66,-90,-25,44,-53,59,-14,83,18,-35,-81,49,-11,-63,-87,-92,-83,-43,60,-42,5,-96}
{9,61,1,16,78,4,12,1,17,4,30,28,13,6,4,14,11,6,55,9,66,5,14,8, 70,3,2,6,3,15,8,1,2,12,1,20,37,1,3,66,3,11,2,1,21,2,1,1,27,11}
Returns: 306025.109
{91,82,-48,89,-100,-60,-79,54,-52,65,-5,15,-76,34,1,-60,-64,-83,91,-5,89,77, -76,-19,-90,-35,-35,19,-53,19,-11,65,-44,-72,62,27,100,-90,-70,24,56,-76,-81, -11,-71,17,100,-70,-17,-18,-82,-80,-15,-79,-97,-81,-60,-11,-84,12,-85,98,79, -46,100,2,-54,-44,-32,-44,-21,31,67,-80,16,-32,83,-44}
{-54,-49,-80,-38,65,42,63,72,46,31,-43,47,26,85,-30,-80,-66,3,83,15,-51,-54, -67,-67,57,-32,86,97,25,82,-8,-26,11,-53,41,56,-24,-13,87,89,-1,6,-37,-79,-52, 20,-78,96,-98,-13,72,33,79,66,88,-5,-7,-65,83,13,-50,-50,81,8,-86,-65,-16,92, 35,-43,-83,-82,53,-34,22,99,29,64}
{77,43,37,-21,40,52,64,-57,-48,-15,-27,98,5,-64,27,45,61,14,58,70,-27,-65,47, -94,91,-94,79,-49,10,-14,98,-82,-65,12,-46,46,27,21,68,-32,91,64,-97,0,-48,80, -56,-92,62,4,100,-29,92,-58,-28,-25,61,52,-78,54,4,-27,-78,-15,-55,-46,-62,3, 46,-76,45,-52,-31,-6,26,-70,-8,90}
{-80,24,1,-50,86,96,17,56,-90,-35,88,-87,42,4,-70,-52,-98,57,-98,46,92,9,35, -96,-50,12,72,73,-10,-77,30,-14,23,-71,13,-79,26,-36,3,-37,-61,71,-30,-27,0,10, 53,63,15,59,-2,52,-61,12,70,41,2,-34,64,-83,-41,30,-73,-46,-61,-13,-79,87,-74, 32,-90,92,-8,61,41,41,8,42}
{12,22,57,72,11,26,92,78,58,38,44,100,51,98,43,61,87,41,50,50,35,28,80,57,94, 83,51,4,48,6,5,33,35,29,88,66,55,55,2,59,69,45,62,69,48,53,59,29,50,21,77,90,42, 87,1,78,1,53,86,83,45,87,65,16,23,14,98,3,71,96,7,61,26,15,33,72,12,59}
Returns: 8622114.009799998
{-31,-46,-75,75,1,77,-99,24,-96,-46,33,-80,9,-9,-70,68,-95,-74,-91,94,89,-84,42,-59,72,30,74,-87,-21,46,15,-95,77,71,-93,-38,-39,37,-33,12,33,-50,49,-31,-18,43,-65,-87,12,-42,-42,-87,71,-32,90,-36,27,-78,-86,-62,-54,86,-48,95,-78,85,-21,85,25,-8,84,22,91,5,67,-81,28,-49,-96,-15,-44,53,-38,-10,96,91,17,52,39,-99,-58,64,-91,4,3,-100,43,85,-94,-17,27,-61,-58,22,83,-79,8,15,40,4,-52,-63,-4,-28,-22,1,41,72,52,82,-48,33,26,99,-71,-66,43,49,-2,-58,16,-84,-63,78,88,-48,61,82,-91,-57,-10,-83,29,85,-49,-35,64,-37,0,-26,-87,-59,-23,98,71,52,14,-57,-79,94,10,-17,45,-32,-13,15,-47,65,-71,-22,-65,9,19,-98,-37,1,-27,-35,64,65,-67,61,-24,-6,24,45,-34,30,-79,17,-17,-56,61,-95,52,5,38,10,-45,-87,98,-7,49,-46,-30,-21,69,-24,-44,30,41,-47,-39,-33,80,-4,79,100,-20,-21,23,95,46,43,26,-50,-25,86,7,80,28,-5,-16,32,-68,30,-29,-69,70,-85,8,34,-41,65,-86,-77,-1,56,31,-83,4,82,13,-38,27,-4,75,-87,38,-81,-62,-58,11,38,-27,3,-43,-87,74,-74,47,91,-34,16,14,8,-68,37,-49,57,-42,-11,43,7,73,-17,20,45,-98,23,4,-24,-73,19,93,-58,14,-54,4,88,-61,-28,35,-52,-38,-33,18,4,-91,8,-36,-86,49,-100,-31,4,76,86,16,1,32,47,90,46,94,86,92,-28,81,15,-70,55,-32,31,79,-44,40,78,29,-39,-5,-92,87,100,-14,33,-93,48,49,6,87,17,-53,69,-83,41,2,-33,2,-9,73,-91,93,12,95,-20,-70,-91,23,29,35,16,-61,6,51,-6,-26,-79,87,38,87,-32,4,18,89,-97,-77,66,-64,91,-23,-42,-32,-48,-86,-29,12,24,2,84,30,-64,86,-87,90,37,-7,-85,17,60,-69,41,-93,23,-80,-22,94,-34,17,-85,23,86,-29,64,31,22,-92,-70,65,-42,-33,33,41,-57,75,41,45,-66,6,-25,52,-42,7,-10,67,37,92,47,90,-12,84,41,4,28,24,-82,64,-65,-59,95,-16,80,10,47,-86,63,-28,-87,-55,-4,-38,-4,-78,47,16,32,14,-73,56,-71,34,-13,-52,-45,59,-53,3,-1,-90,75,-41,-52,69,-53,-73,53,55,72,-94,-93,27,-84,-28,78,12,29,38,-81,7,-51,56,-90,-95,86,-24,94,75,-31,-8,-69,13,69,-47,-25,22,-2,79,-37,-73,54,97,43,13,55,100,10,-79,95,31,60,69,34,-80,-64,-51,-21,-66,-82,-24,-81,-75,36,13,-72,-17,33,41,2,-10,88,27,-6,33,18,-32,-36,-76,-60,-3,-33,-28,14,1,-27,-16,-62,-38,50,97,85,93,-31,81,-85,7,19,43,-32,-53,-19,1,-25,91,20,-88,93,-7,-39,-44,87,-89,15,53,35,41,58,67,12,42,-57,3,42,-18,-61,16,95,51,100,-19,94,-27,-30,-31,-77,-29,95,-81,24,-27,-45,99,-98,94,4,-76,74,-23,-34,-99,44,-30,-22,66,99,-95,46,-43,-89,-86,-3,75,-94,-2,22,18,-70,-55,-40,-42,47,-27,-81,-41,96,3,-93,-9,19,-99,97,4,-8,65,20,24,-73,-53,-100,40,56,83,-61,45,62,34,80,-59,93,88,-65,32,-89,92,19,20,88,64,-46,-42,-6,28,-42,5,9,59,-4,57,-76,-10,-38,-9,-38,13,-63,-74,-9,-40,79,51,65,82,-51,82,-37,-47,-21,44,-69,44,-59,22,-93,-51,9,24,24,54,67,-66,20,-62,33,76,44,38,13,-10,-26,-91,-85,78,-45,91,45,62,81,58,-85,-59,79,80,-11,-81,43,-55,-64,96,-36,-96,39,30,-66,-12,10,79,-8,-81,83,-90,64,-100,58,-73,85,72,-86,76,56,-21,7,84,-9,-42,-60,19,-88,-53,0,42,41,62,40,-26,91,-47,83,-51,-93,54,85,-12,53,-71,4,75,-18,-57,97,-42,28,13,18,67,7,49,26,68,-54,-54,18,4,70,65,30,-38,-32,36,-15,84,95,-77,-37,15,97,97,-2,20,44,1,19,-94,-28,74,76,-77,57,74,-41,-17,43,53,0,17,50,83,-23,-87,-84,49,94,66,-100,4,96,-3,-14,0,-10,-13,32,-14,89,-38,27,44,93,-13,28,-52,-97,-97,-36,9,40,31,-5,-94,67,77,11,93,-25,59,6,-85,-22,-76,66,-34,49,73,29,-1,42,-54,81,-31,41,8,-22,52,68,77,-17,-54,47,-8,6,-10,-21,89,-36,74,-10,39,-36,30,-52,-9,10,-65,22,55,38,69,-72,38,8,-90,80,-89,3,-41,-32,7,-22,-1,-64,-33,3,-59,-2,78,80,78,-63,86,-8,-79,-24,61,39,1,52,34,39,-32,-39,6,-52,38,-76,17,-49,22,-70,51,-20,-36,65,-80,-100,65,-12,29,67,-4,-43,-79,7,73,85,-6,-8,-11,-68,-60,87,82,8,98,43,-21,77,97,-15,-7,49,62,-31,8,-83,-64,32,-47,5,-20,97,-4,79,100,-76,30,38,9,52,98,-75,85,67,-80,-66,-37,19,20,95,92,2,-90,-10,82,-82,31,48,100,36,-73,-29,91,-90,43,22,41,-13,4,69,-91,-91,-18,18,-44,97,89,-6,42,23,-51,-82,78,95,23,46,90,96,77,58,18,-28,-70,-13,-61,-21,74,42,-76,-33,-72,58,-51,-8,90,40,76}
{-21,-97,78,-6,-99,-40,47,72,68,-28,45,-4,5,-10,42,-1,-89,68,-98,87,-88,22,34,25,-6,-42,-32,-47,-71,41,20,97,-96,56,1,-17,-59,-7,-43,-98,3,20,-96,84,-17,-68,70,80,-48,-1,-64,84,-85,87,80,-98,55,29,-77,89,80,74,3,-47,1,-67,51,8,46,-63,-14,-80,74,-75,37,-94,49,-66,-76,97,-97,-22,-58,-79,-99,58,49,38,-73,61,-64,83,95,-79,-91,68,-58,-17,-23,84,-24,78,48,-39,13,78,3,34,-4,-85,90,14,15,-51,-74,-54,47,91,44,-75,-26,6,97,94,-52,-51,44,-6,-6,-72,35,76,27,-7,10,-40,22,76,24,44,-56,-64,-15,-97,-54,85,18,14,2,-76,-94,9,-20,-38,-8,30,1,-57,63,-78,-79,37,83,-20,-32,-98,-78,16,-59,-49,-71,-34,-73,-86,57,-37,4,-26,86,97,-50,-43,-40,69,45,-80,-3,-82,-73,-59,-15,32,-62,37,-84,60,23,65,85,-98,65,55,-32,-19,-51,-18,-91,1,12,75,7,-60,-87,-28,15,64,-79,-29,-1,-71,81,-77,50,89,-89,82,74,21,-96,27,-22,34,2,-20,64,-36,74,97,97,-46,43,-6,-14,-30,-83,-98,13,17,4,-43,-19,40,-79,-61,33,97,14,-31,67,50,100,-82,32,79,-7,-54,-85,76,-29,-99,-44,70,-7,35,-81,54,-8,62,-70,-44,-27,-20,53,-44,83,-98,7,1,25,8,84,93,0,4,55,20,80,26,-40,10,-81,37,100,-73,14,-10,19,-100,39,15,-76,100,83,-48,-74,84,94,21,-45,37,84,-69,-76,-11,90,78,-95,72,-88,21,-26,91,43,99,-56,-81,-14,-23,76,-75,-68,98,-63,99,98,1,56,-52,-48,82,28,-69,93,68,0,54,-24,-89,18,43,20,-1,-72,10,16,50,-96,-29,46,-64,-21,-50,84,-7,-61,-78,89,-76,8,63,-56,-11,62,-44,-30,-46,-26,-92,77,-45,-24,-53,-75,66,99,30,6,83,28,-79,-34,-31,88,-33,47,-48,33,-3,71,95,-98,47,-84,-52,-65,24,-48,4,52,-34,-54,81,-61,72,-95,-5,14,25,67,-75,80,-51,-15,-69,44,-58,-21,71,1,-5,91,10,85,1,-5,-99,-14,43,-56,23,-69,-41,72,-15,-89,86,14,-88,71,-27,-7,3,82,43,78,72,45,72,-51,6,-95,76,-30,-98,61,-80,-39,12,69,-81,-76,-21,-13,-75,94,31,76,5,-61,20,-20,-94,6,51,-99,-66,89,-73,-42,92,95,-46,-62,-33,96,-11,76,-31,69,1,69,4,-3,13,-79,38,99,-47,-44,11,-77,-23,80,-100,-92,-27,83,72,-94,63,92,35,35,72,-83,-87,55,-22,-52,-1,-84,-69,64,-5,94,-89,54,91,-50,-1,55,-97,-76,-73,88,-77,78,-47,-62,42,96,63,11,36,-77,-52,41,55,-68,22,-53,-84,-30,46,-65,91,-72,18,63,27,74,-70,-85,26,35,-19,-96,-74,-90,11,87,52,-33,-26,9,-7,-37,-72,83,73,45,-81,-79,-95,-67,50,32,-12,-5,3,-17,-79,88,70,54,18,-55,-57,78,-5,-79,21,33,54,-87,-5,20,69,-40,89,46,76,-68,-26,88,98,-32,46,80,-64,25,80,45,16,88,-1,-68,39,58,92,96,-66,89,-37,14,-84,-20,19,-5,53,-65,54,56,-66,1,97,51,88,-33,-78,-55,33,89,71,-30,1,-15,-93,-19,24,52,5,-46,-77,50,41,79,57,99,27,-89,-33,-16,76,-85,77,10,-45,94,-93,76,-13,45,-20,-56,-76,-89,-58,86,-10,75,0,-99,45,-47,2,-51,37,30,-87,-43,-74,49,-78,-19,-47,-97,-78,12,-14,-98,46,60,52,13,86,46,81,53,73,-77,93,56,50,-64,85,-39,22,-67,-74,7,71,-64,45,-99,26,-58,5,22,-30,-55,43,-51,-87,-67,-31,5,-92,-9,90,43,15,-51,11,-89,-74,-38,85,-88,37,97,-64,-75,41,80,70,-50,-61,34,93,96,-60,70,-99,-77,-31,21,15,67,-36,28,76,98,71,58,42,-7,-88,19,-75,-32,-50,79,53,-37,82,-76,44,78,87,29,96,-77,-40,63,18,9,83,88,-70,-57,75,3,56,-65,-51,-23,-24,97,-62,3,87,-79,7,-90,-13,98,79,-21,0,40,-91,17,29,77,2,-46,-75,19,-38,-95,-3,-59,-29,-32,-94,-23,-49,-100,-50,-18,-57,-75,-28,50,-60,-90,-17,91,69,52,61,-20,-27,-35,23,-51,-25,-83,96,-26,17,76,-16,39,-60,30,-20,-17,-1,-32,-58,-50,90,33,96,24,-31,31,75,-69,17,23,-26,2,-72,-78,-59,56,61,-89,38,-65,81,-100,-77,52,-70,53,-31,-48,-79,6,-83,67,25,-30,-98,65,34,54,2,-87,42,80,-93,-16,-85,83,54,-18,-98,-31,56,82,-19,-97,-51,43,99,15,25,60,-16,-99,33,37,-3,-7,54,-58,-97,38,-32,-18,90,-10,91,47,22,92,-38,-17,42,-61,51,42,-42,2,-14,-17,15,4,-74,54,73,47,79,-71,17,37,-46,40,-92,14,50,-87,66,28,-99,78,-11,5,-30,35,13,72,-24,77,-64,-72,79,63,-89,77,93,98,-75,16,-22,-48,72,31,-70,55,-56,-67,58,-45,4,-45,17,90,-29,100,-91,-69,74,65,-62,-91,42,99,-19,60,-17,-43,49,64,14,-100,-63,73,-9,62,63,-47,-89,60,48,-87,98,47,-5,47,-59,-72,8,35,0,-53,-42,3,-29,-61,-8,-57,-62,-9,-50,75,76,94,39,98,-45,-11,59,-20,11,21,81,89}
{-27,-30,-77,-71,-53,33,17,77,-81,26,-33,96,18,53,38,-61,2,-53,-61,98,98,-76,95,-5,62,-89,-12,-90,90,-100,34,62,15,-91,-93,54,23,-100,-18,5,5,71,67,-24,-68,41,10,44,-35,71,-31,-13,-53,-59,-60,69,-59,80,60,-43,37,-11,59,-68,-54,-55,13,39,-61,-27,67,85,8,-44,28,-79,50,-22,-53,-17,87,-15,67,-19,56,45,-15,-20,16,66,49,-73,23,-26,93,7,49,84,58,23,20,-95,24,46,51,-49,52,-29,55,-70,78,27,42,46,50,39,-53,71,6,30,17,-29,-21,27,3,-8,22,-68,42,-71,52,-65,-10,77,-81,85,63,60,-33,59,4,-72,97,47,-74,-58,97,39,27,29,1,73,-54,100,51,-86,54,-79,88,86,11,18,94,14,88,-57,-95,-87,72,12,90,-3,-6,-16,-94,32,-95,-51,-43,18,8,-21,83,100,89,67,18,13,-29,-71,-52,9,-23,-9,-97,-29,22,57,44,56,-61,-100,-81,-97,84,-30,-1,52,-83,31,24,68,-6,-27,30,59,79,-35,20,56,-83,71,-10,98,-71,23,24,12,-23,-89,-23,3,-51,75,-96,86,61,-66,96,64,20,-7,47,78,15,33,80,-69,12,-16,60,-97,-90,-70,87,-62,99,-99,56,-94,73,65,52,7,49,77,36,-35,62,72,26,-23,-5,85,-99,-75,7,-16,-18,53,10,70,-68,-10,-25,-79,11,94,81,-49,-48,-98,70,86,94,-68,-65,36,-93,66,44,-50,69,-35,-1,52,3,-78,44,-55,93,93,29,42,6,33,-68,31,95,-62,16,14,-43,98,-75,-29,26,-44,-5,-96,17,41,-95,-23,-64,30,64,40,-25,-95,22,55,-76,73,-69,-41,48,-10,46,19,-65,-51,14,77,2,56,5,1,-51,-83,92,-49,-78,-49,51,-76,6,8,45,-54,-35,-17,-12,61,-60,48,-7,-66,-94,62,-82,60,-36,42,30,-54,-57,75,-63,48,56,-85,3,99,46,1,16,95,10,37,28,20,11,-78,-74,-50,8,26,69,0,38,-52,35,42,49,-46,-10,-19,55,-94,-82,-66,8,-41,-86,-84,-78,-85,-67,-52,-31,66,-26,-82,60,1,-12,36,93,-59,4,20,89,-43,-43,-86,-41,87,-32,63,-29,-78,75,46,-39,69,-49,58,-86,-30,55,-30,-22,18,25,10,30,92,-26,89,5,86,-97,59,-79,-44,-32,81,73,-13,10,30,77,-65,65,-15,34,22,-28,-50,-45,77,-82,-4,41,1,52,-79,-68,11,68,-81,2,-25,38,-6,93,-20,-32,48,-60,90,11,-49,-52,64,-59,83,32,-45,3,-62,-39,-93,-26,-22,-45,-30,55,-55,35,-90,16,18,33,79,12,-16,-11,85,20,-82,94,100,43,57,50,53,55,-45,22,14,-71,71,79,81,44,8,50,41,20,92,79,-81,-38,33,37,-9,-22,-22,-2,57,-60,-56,-98,31,-73,-90,69,40,13,-84,-47,50,35,-58,-4,-13,52,-9,-33,50,13,-12,-54,40,-72,-95,93,59,95,89,-58,-36,-52,-86,93,96,64,44,-92,-25,85,33,-69,-28,-15,-18,90,77,-14,-35,-97,-34,-66,36,-23,88,-51,55,12,54,47,-3,-43,-32,-43,6,100,37,-97,28,-65,91,64,34,-60,-55,73,-5,36,-19,-79,73,89,-47,-81,10,-68,87,51,10,-7,96,5,28,20,-30,-78,82,82,-83,78,3,64,12,-33,71,15,40,100,-48,58,-98,91,-21,-77,84,-10,-88,17,-89,84,98,-84,31,39,59,-73,-73,32,31,-20,-43,-26,59,-100,-64,2,-75,67,-69,-81,28,35,39,0,-50,-33,98,-48,74,-61,-19,8,-30,90,52,-17,87,-71,0,-45,-28,31,21,-42,58,-62,42,-37,70,-49,49,25,95,54,66,6,-33,-30,15,-47,-92,32,3,23,-5,50,-26,-52,41,2,-37,-63,94,-81,-49,56,-87,-7,-40,99,-28,-2,-23,-13,58,14,70,-75,-100,-40,1,77,-87,20,-36,-51,83,9,-38,87,53,-19,58,-62,-45,-1,-41,73,-78,99,96,12,59,-24,-99,-58,51,83,-76,-86,-68,-22,73,-3,-76,32,-25,64,-25,-48,-100,2,-34,-61,99,37,30,-55,63,-25,-67,48,-10,21,-78,-77,-87,-71,72,-5,-76,-18,28,63,66,79,16,72,-37,-24,-20,-15,20,20,-96,16,30,67,-99,69,-33,-86,-15,-17,-59,-35,-22,13,-48,85,73,14,67,-37,54,86,44,-73,56,-68,16,-31,-50,-68,-26,93,87,96,-68,-84,-88,76,8,-98,-26,40,74,61,-24,84,13,71,-96,-71,-23,-65,-49,40,-40,-7,-96,-37,-25,-26,-79,-14,-43,-32,91,-62,76,74,60,75,-64,-61,-11,37,58,13,-42,4,-12,-25,100,-85,95,93,-44,-31,-29,17,72,87,77,4,-8,3,86,5,-33,-42,25,16,-61,45,-47,-16,87,16,71,-32,66,-96,-28,40,-80,32,-99,62,76,-42,-4,-62,16,64,49,42,63,50,20,29,9,50,-1,62,-57,-64,1,-11,-85,38,22,-77,1,44,9,55,43,-21,4,73,1,-32,-67,38,99,15,50,-37,15,8,38,54,-40,72,73,60,-92,39,97,-32,-1,22,21,-18,-67,-69,92,-3,99,-94,61,-21,85,-82,-85,-54,-14,-19,66,-73,-54,13,-41,39,90,-27,35,-65,9,-13,-81,-72,59,35,91,64,62,-95,11,-85,67,60,-34,-72,-40,24,28,89,-100,-59,-50,3,57,-42,-79,-91,95,-26,94,87,-97,24,48,43,-4,39,-61,60,19,-48,57,73,-91,88,80,82,13,-18}
{67,-8,-75,85,-81,55,-21,40,4,11,77,-7,31,29,-65,-92,50,75,-85,75,-24,41,-67,-22,-34,-71,68,-2,-93,-21,-98,5,-50,29,-42,-81,97,74,-38,-42,-100,32,-50,-73,8,86,-27,79,13,61,3,-90,-16,-88,-64,-64,-79,-11,-3,-41,33,-34,-69,-92,-13,27,-92,45,-100,-43,-89,-40,46,-40,-91,-20,25,-61,-89,60,-61,29,59,-69,33,-76,-79,-5,3,81,-42,-42,95,59,72,43,-22,-89,-45,-35,94,-52,62,-58,-9,-98,-57,45,19,22,13,-76,-26,-23,66,78,49,30,-45,-37,88,-100,61,98,22,67,29,82,-13,10,47,-43,73,-91,-79,-6,22,-60,1,-75,29,-41,-91,7,99,-97,26,43,35,87,-69,-37,-7,-2,-52,-44,-90,-42,-29,58,-53,7,55,-12,13,60,52,0,43,52,7,26,-6,70,44,58,67,77,31,-93,-64,-82,85,-48,86,19,-61,-8,-42,86,92,45,-72,-62,-24,80,60,-44,99,86,92,69,-76,71,12,-95,-29,60,-12,-38,-6,38,-40,25,-54,98,-77,-14,22,-7,41,50,40,96,41,46,-16,-76,-27,-76,80,-87,-78,95,72,89,45,48,100,83,-31,4,27,23,-56,-71,-48,-4,-42,46,88,-15,-55,23,-15,27,6,78,-67,-43,21,-56,-84,35,23,-36,88,40,76,-48,90,-2,-4,43,65,70,-29,-1,-93,-50,85,53,25,-16,51,-82,-60,56,-38,39,-88,67,-78,-22,21,85,93,-40,-54,97,-88,44,-99,38,76,-1,-52,40,43,89,87,91,39,8,60,-2,58,9,-66,82,-71,-6,43,-39,40,-44,-76,29,-32,-25,21,-30,43,61,88,4,19,-8,-55,-54,-6,61,0,-55,50,-53,-59,89,-31,-2,33,24,-79,-84,-65,-8,21,7,-35,65,-5,-78,1,93,-56,50,-57,-68,82,-77,-66,92,61,-70,-3,68,-65,81,-11,66,-77,-64,9,10,-95,-12,-9,13,97,-62,21,-30,52,8,56,44,33,12,100,-4,48,98,27,61,-99,84,-70,-96,56,-17,-23,47,70,-4,63,3,16,-46,-46,-100,18,-24,94,94,28,32,48,31,77,-7,-29,74,-33,98,51,-36,62,-73,58,-77,-91,28,75,63,-96,89,-2,97,16,-79,-87,-80,55,-65,-61,12,-54,-37,2,19,46,36,53,-45,-56,-85,70,-75,94,-2,7,-18,-15,79,40,-94,49,-69,39,43,10,9,-43,-60,37,64,-42,22,-66,-54,18,-93,19,-33,66,3,-28,-75,-30,27,-73,-80,-16,-48,60,26,55,42,81,-27,100,41,4,51,74,-96,44,-84,-75,89,54,-34,37,-39,-59,47,-48,62,23,-93,82,99,82,16,26,-5,-53,-22,21,-45,13,-40,-88,-28,-83,-55,-96,-58,-45,93,-29,47,-26,-37,52,89,29,61,-77,21,-18,-71,58,-38,-61,-45,-82,79,100,100,95,-41,27,-46,-7,87,49,58,-56,-63,36,14,22,44,93,-5,-20,-27,23,69,-45,22,36,68,1,-80,64,70,-53,-44,57,94,78,51,53,9,65,-66,-17,70,1,-54,-15,-42,79,43,-87,50,-28,49,100,-6,-65,-79,-92,-17,44,-100,-38,-93,-89,-15,-58,-49,62,9,-2,82,-74,-46,-46,83,90,66,29,-55,-50,-35,71,-88,-22,-71,19,73,59,1,-51,-47,-25,43,-90,39,-21,3,19,-73,-88,-45,31,8,-19,-91,62,-37,-12,-59,58,63,43,94,2,76,-34,94,-62,-56,74,-74,69,-61,-86,-55,18,-85,0,47,82,-8,14,-48,-93,-80,-3,-29,-76,-48,43,-53,29,54,-13,-85,74,-98,-16,4,61,2,-23,-43,-73,-81,46,-43,-54,-21,59,-71,-90,-92,56,64,-43,-81,-63,55,1,-91,17,-11,0,-54,-74,22,-45,42,74,97,-53,-18,-35,10,-30,62,-12,-88,76,15,90,60,-30,-24,76,51,-91,-12,29,5,-54,15,-5,-20,30,-66,51,60,42,93,39,3,67,10,25,-33,-86,-52,28,-70,-72,-39,-69,-84,-43,19,-54,-65,-24,-31,80,31,25,-75,-67,-45,-83,-86,-26,-79,-67,-85,60,32,6,98,-19,37,88,57,-5,53,28,-34,38,-26,3,26,-81,-3,-18,-20,58,-9,-27,-32,68,36,-3,64,-21,1,-46,-5,-46,98,-78,86,-3,-37,13,81,-10,-66,28,95,35,68,-81,34,12,28,-57,82,-95,-68,-90,-2,-42,48,-21,76,90,87,-72,56,-100,99,51,37,-88,88,48,-93,-38,-11,73,87,-68,26,-100,70,50,43,-97,3,13,69,-97,93,-1,-12,45,37,12,-89,6,-73,-7,-50,62,87,50,59,69,47,-62,-23,16,-37,-21,-66,70,-59,-46,25,9,-95,-58,23,-27,-92,-33,-59,-9,-34,-82,-52,-64,53,64,59,60,-71,53,-6,9,-100,96,48,94,84,-25,66,84,70,84,-65,41,7,-5,-92,-38,80,26,45,21,-7,75,60,-6,55,-53,53,49,-28,-15,87,47,97,95,33,37,54,28,50,-23,-18,24,-32,-3,48,34,64,44,69,-24,-92,-13,-12,-68,-2,-51,-50,-9,-36,30,-79,79,69,42,59,54,-14,45,84,-38,95,64,52,28,48,-78,15,-42,44,85,69,-39,80,87,49,55,-53,97,12,25,54,-40,33,-72,-79,20,36,-20,-25,-3,-9,-21,62,87,80,-94,-10,-10,-94,19,46,55,-49,17,-42,2,33,-94,-74,-73,83,-25,92,-41,5,-65,36,-88,-25,40,-75,-72,64,-35,-11,16,-59,-32,-96,28,-45,-5,4,94,72,79,-36,98,-67,86,35,54,-60,-71,89,-37,-77,10}
{61,22,76,98,4,21,33,74,81,1,84,53,73,4,99,56,10,59,9,63,29,79,10,53,25,43,3,75,86,66,77,6,33,82,70,88,92,40,93,55,68,33,45,21,11,32,97,56,74,93,55,46,99,43,56,65,89,25,8,19,7,100,95,75,24,70,22,52,98,69,31,23,8,31,12,8,71,93,97,91,15,53,78,7,35,21,60,78,22,35,63,78,58,45,73,13,49,45,86,90,3,71,11,32,83,33,54,62,14,72,81,58,93,53,21,19,20,20,11,27,76,46,41,42,67,83,52,66,3,38,31,53,97,27,50,30,48,65,50,6,33,83,72,21,21,18,51,81,41,45,98,69,36,74,65,20,79,15,3,51,92,66,28,31,47,27,95,56,39,91,50,55,3,88,95,46,60,68,98,76,20,44,53,59,97,97,41,21,71,47,49,48,87,77,65,67,92,72,28,72,9,85,78,63,62,34,59,61,38,23,41,44,70,83,14,31,60,88,12,62,89,85,13,30,5,21,84,95,69,14,94,19,89,35,44,95,10,19,71,43,88,35,100,81,84,39,19,25,60,80,43,2,18,67,93,4,14,41,43,8,51,12,51,94,79,63,94,17,35,86,65,26,20,42,69,70,38,23,21,23,13,48,27,97,66,17,54,93,64,90,4,40,25,17,57,56,54,80,75,19,70,32,68,42,12,50,59,28,26,28,29,17,86,29,15,83,83,19,53,24,42,78,49,85,84,81,64,53,1,55,32,63,65,54,82,75,28,40,79,85,19,99,74,2,5,53,73,85,96,21,90,61,49,40,15,36,48,89,55,80,85,20,24,46,92,10,95,50,61,97,34,84,49,28,1,92,68,6,67,50,77,65,73,45,9,26,58,43,11,23,91,56,30,89,73,1,71,13,12,44,99,68,54,9,15,80,84,62,3,21,66,2,33,39,21,72,100,24,39,9,10,42,94,30,34,13,29,14,22,44,21,23,20,40,38,32,17,36,68,15,38,86,75,24,16,52,86,89,5,98,42,97,24,91,48,6,5,53,66,70,42,93,73,97,8,50,34,96,17,64,34,73,100,83,92,71,68,41,96,20,93,63,6,77,92,37,29,5,19,79,1,24,8,25,93,13,97,12,40,9,16,21,91,97,37,50,90,97,83,95,33,10,29,74,92,80,59,29,59,36,11,95,40,93,2,68,18,58,36,76,27,76,71,66,93,25,73,70,22,13,96,12,26,1,98,44,69,95,47,77,83,8,84,87,42,80,67,31,51,2,87,6,92,47,21,15,77,40,75,79,56,73,98,73,77,28,63,92,30,79,53,68,74,54,46,1,21,16,78,43,52,54,35,91,31,94,49,7,33,65,56,6,28,78,77,46,4,45,47,6,25,95,67,95,59,87,71,42,58,30,50,21,44,50,40,68,40,14,63,5,93,75,99,37,27,10,81,16,18,72,34,41,27,77,18,16,79,81,86,97,50,47,61,54,48,59,94,87,42,51,7,12,47,42,3,97,98,91,7,34,17,65,3,33,23,21,47,44,59,73,83,85,75,5,7,25,44,27,24,84,36,54,91,22,83,1,60,69,78,62,17,97,9,21,79,46,19,95,100,49,19,94,53,32,91,1,77,47,58,31,3,93,75,46,54,90,58,42,52,24,51,93,78,54,63,94,19,41,85,79,52,93,98,23,50,73,53,62,55,33,66,64,95,73,62,30,43,30,83,28,76,88,29,15,25,25,74,46,12,65,17,30,49,96,8,66,76,73,57,36,48,79,35,51,21,66,80,15,21,34,43,34,93,29,57,78,49,64,68,23,11,75,22,70,82,11,17,61,94,79,8,20,40,87,78,82,56,77,38,62,6,21,36,17,100,67,50,32,17,31,19,48,88,76,32,98,82,40,47,6,61,93,16,97,63,100,44,71,40,81,53,70,21,7,41,7,32,12,45,37,7,94,100,47,16,94,44,33,39,62,5,15,95,74,18,8,6,72,21,43,28,51,42,68,85,2,8,23,83,27,85,92,74,61,52,98,70,66,82,74,51,98,39,98,54,61,15,53,37,52,78,46,52,21,56,46,17,32,74,14,58,16,26,97,38,30,84,3,63,63,83,88,91,92,10,63,56,25,48,100,58,5,20,84,15,56,24,5,70,86,5,29,43,32,66,31,100,68,95,84,96,27,12,30,6,19,3,46,8,38,88,41,81,50,76,80,12,69,31,34,90,86,61,7,7,20,4,62,84,12,20,9,40,46,1,73,36,23,53,67,72,81,59,56,30,27,6,60,67,46,20,11,97,85,88,94,26,75,23,80,97,100,4,41,41,42,10,80,62,73,95,9,48,61,78,8,67,83,38,65,6,100,16,27,99,88,32,84,30,31,94,54,21,21,97,8,52,93,14,86,74,45,49,22,90,66,27,64,48,93,27,86,47,60,73,42,17,98,85,89,78,72,8,11,25,93,79,3,86,76,20,18,66,36,18,49,37,37,48,44,95,96,40}
Returns: 1.6785411992222028E9
{-46,27,-91,-31,-65,96,20,57,-16,-2,-12,53,52,13,28,-46,92,-70,41,-15,-37,-78,-87,-60,-51,92,49,61,55,-17,37,78,74,-60,-7,-88,4,-25,1,52,-49,-96,-94,-65,32,-34,-76,89,100,34,-51,-94,75,-72,10,66,96,38,-97,-34,57,-58,-49,-69,98,83,-11,9,99,86,-28,-24,18,-45,92,-58,-47,-52,-50,-35,-48,73,7,-48,1,-44,-71,-12,-65,41,-98,-36,-17,-45,-50,-77,-84,-68,74,-98,-79,-55,14,78,-63,-97,-76,55,96,96,22,3,100,21,-64,57,24,53,-17,-66,-1,-3,55,68,27,-42,42,-25,-69,22,-40,-9,9,86,-72,-39,24,92,-46,-11,-49,37,65,19,-88,-91,20,46,36,74,47,66,18,72,95,-59,-3,48,22,-28,-65,-95,18,70,-59,3,-15,-93,92,-25,83,-15,100,1,28,-88,90,-79,-44,2,71,-44,39,-77,-11,-42,-4,18,-77,-71,9,-40,44,-20,44,11,5,-40,-70,36,50,-93,-5,66,-70,-13,-54,-6,-91,-67,-52,73,97,49,45,-85,95,-20,-70,79,-98,-2,36,6,79,-48,86,-98,-94,34,35,-72,-56,-24,46,-77,20,-27,63,-38,-59,-86,55,-68,49,84,96,58,69,56,70,69,-5,82,93,98,-8,-37,-88,33,-68,18,-2,90,55,80,-6,75,-46,-18,-17,-69,-5,-32,-15,90,-83,6,-2,-27,19,99,52,-24,-19,25,10,99,-47,-47,-67,-79,-38,-22,-98,64,33,62,-17,60,5,-6,-99,-85,-70,27,-56,50,86,48,9,-76,91,77,88,-50,-47,-67,6,-46,77,85,-26,12,-72,45,12,7,97,94,-22,83,51,-91,58,-46,-89,1,-69,-73,-85,55,-35,-91,-13,-76,-83,78,-28,58,74,-56,2,10,95,4,-69,72,27,98,77,-94,50,-86,-44,-36,56,94,-88,-34,83,-100,-15,61,58,5,-63,92,23,2,-39,-67,20,-15,-72,-7,58,35,-2,-69,-11,5,-96,75,-97,44,-10,-8,29,11,74,14,73,-72,-24,-83,63,-47,-86,-44,82,2,57,-29,-44,-12,91,76,58,-80,99,72,30,7,-38,-56,69,67,-92,-63,53,-100,-92,-55,-45,-94,8,-34,19,10,-97,82,83,-93,9,92,40,62,90,-97,86,40,2,-91,-27,-44,69,19,-70,-60,69,20,12,-2,-46,14,65,77,30,-35,-49,28,20,-81,79,77,31,15,63,-38,80,-12,-47,67,-7,89,-7,96,-73,-7,13,82,13,-52,-84,-40,85,-78,-43,93,53,68,54,6,79,-26,-3,19,99,4,91,5,-10,32,-38,-42,33,-23,-92,-74,16,29,-87,-91,88,-19,63,95,60,65,13,-76,38,44,-87,77,8,2,-100,66,98,46,-44,11,14,98,29,-10,-33,19,-57,-77,-65,93,85,48,-82,46,51,40,-66,24,75,24,36,-39,-11,-50,-77,74,95,96,25,94,-4,-83,-67,24,52,41,-3,-65,-76,-98,-6,-63,73,-28,-64,96,53,94,-86,-84,-48,-71,-29,-92,-62,2,44,81,84,-97,38,-45,42,26,-98,-99,-65,-74,-21,-25,-66,37,61,-70,-3,-94,-50,-74,-80,-10,61,-16,-37,-68,78,-30,-5,20,58,92,-16,28,-46,32,61,-88,78,-14,61,-13,-2,16,16,-76,50,-58,86,-29,-28,41,-43,-68,43,40,-70,-18,-10,56,-1,-10,-57,-42,-18,22,-1,-95,45,-24,97,73,5,-75,-28,-84,-77,-98,70,74,57,-20,93,-40,-70,69,-48,-33,32,51,78,-29,70,-57,37,-24,41,-24,9,-23,-50,48,12,-85,-84,84,-84,-85,-76,16,14,40,-42,94,3,-12,-67,24,-52,57,91,-60,31,-50,-63,44,-52,-10,59,90,75,-42,91,41,72,95,-67,-13,58,83,56,36,4,4,45,-92,-29,26,-92,76,-28,7,-74,-57,100,27,-82,-68,-67,-51,82,96,46,4,-27,55,-54,-64,55,-74,-8,23,21,-80,82,55,-86,11,67,34,2,-12,96,-33,-52,-45,-20,62,-57,-83,-91,-83,-42,-66,82,-94,-9,-65,12,87,62,-9,99,23,-53,-65,-45,-56,95,-26,34,-57,-13,86,-68,33,3,34,-49,20,36,14,-79,-71,51,72,42,-69,-37,71,83,-74,93,-41,2,56,-15,23,-10,67,73,4,16,26,-75,-14,92,-12,74,9,62,93,37,42,66,98,-9,79,-54,-94,-78,51,-12,43,59,27,86,28,-38,12,53,93,-21,39,-69,-100,83,-24,81,-97,20,-58,-33,80,-14,-41,54,-29,96,49,68,-41,-41,-32,6,-51,-82,0,48,85,86,91,5,50,-73,97,95,0,96,45,66,-21,-22,41,16,9,-53,61,32,-62,17,74,85,-94,-93,-23,-60,56,-2,-75,-79,-41,97,-82,44,55,-12,72,97,86,-19,-41,76,37,9,13,-13,18,87,16,48,91,56,-37,78,94,87,91,57,87,-35,-23,-71,-27,67,-2,98,98,33,-14,-78,9,9,-6,56,73,-11,82,79,75,-1,-39,-29,-77,-78,23,-19,81,95,41,60,-47,45,-7,2,86,59,86,70,71,9,83,-71,-76,13,-87,-25,43,-39,45,-60,-43,88,41,61,99,-62,74,84,-17,40,-21,-80,70,96,57,-67,0,23,62,-71,56,82,-23,74,-47,-47,-4,-17,-88,-68,-16,-35,79,-12,1,-18,49,-97,-78,-26,60,42,33,-34,-74,-70,-63,-2,-92,-49,49,56,51,11,52,-21,-100,-63,-83,12,-49,-89,27,24,-37,51,29,76,35,0,91,-58,-51,-39,-94,1,-93,86,-28,10,97,83,-29,31,-45,-11,-92,64,13,82,76,36,76,17,-47,52,-29,65,46,78,54,-50,-17,31,-39,-3,-62,96,-38,42,4,35,-5,-48,-20,84,3,-77,61,-83,-2,27,-24,-24,47,13,63,88,76,36,47,84,-6,30,-89,-69,13,-76,5,9,-78,100,-37,-47,78,94,-84,-18,43,-30,87,-78,81,-98,54,54,-89,-87,78,-44,91,16,95,-30,47,-78,-31,-64,21,-19,72,76,75,95,-95,74,13,-5,24,-22,69,-82,25,-71,-76,-57,-44,-2,-100,23,-92,12,-59,-21,-39,61,-42,30,-49,-65,-66,14,2,-65,-21,-24,98,-11,68,98,-77,-1,8,25,20,-18,-11,-47,75,-97,-31,36,62,-83,-4,-52,16,45,-57,33,-73,69,27,64,7,-89,-63,22,-49,95,-44,51,23,89,-51,94,25,91,-53,21,-83,-70,-4,-19,-99,90,40,-27,-27,-51,34,97,68,23,35,9,-50,42,-85,-89,10,-53,-60,15,-15,-94,23,16,-56,55,-55,85,-58,65,27,22,-43,-21,-100,-39,77,-50,94,-69,-86,-18,-55,52,-95,-38,-90,48,-19,77,-20,10,49,66,-61,-51,37,-55,-80,-52,38,-76,-33,96,90,11,-77,-49,-53,45,74,-99,-99,29,35,62,-44,34,-26,-69,28,49,-61,-75,-10,-73,-35,-47,-43,17,-40,-56,48,10,-71,16,94,-31,100,41,72,-30,-85,-17,-67,-10,-43,-36,52,-74,78,-24,97,-22,32,-37,-60,47,-40,73,63,94,-80,51,-46,16,25,18,-35,37,40,-34,-56,-29,-85,-27,2,-61,83,-20,-87,47,35,-16,-94,88,-79,-51,55,61,55,73,-50,-15,83,55,-97,-17,13,-49,8,82,3,-72,59,16,-76,-50,64,-55,87,-83,-17,21,72,66,-12,-79,79,82,27,36,-13,21,65,-32,75,-32,87,-96,-10,-72,-4,-9,-32,72,-49,66,10,-22,-41,69,-14,-91,34,24,45,12,-41,7,-23,-70,57,61,81,-80,-62,-96,27,95,70,-16,-61,25,-20,60,-33,10,88,-5,-37,73,-11,17,32,5,20,-38,-89,-85,72,-32,-55,99,65,87,83,-2,95,19,-8,-61,-29,-62,-77,18,-46,31,52,6,12,-43,53,2,-65,40,42,12,-20,-98,49,40,-13,86,68,-86,-38,22,37,31,-9,-77,5,-20,93,-49,-71,-11,-41,-26,-74,-4,-69,3,38,-48,-67,80,-3,-19,-4,-49,27,-56,18,-93,-62,-7,-34,78,28,-63,23,91,-3,81,-7,88,-39,-34,50,34,23,71,-38,-50,17,31,-2,-29,72,-50,-7,-11,24,51,11,-85,56,32,-38,-42,-50,7,-35,-20,-40,-49,28,-63,-11,23,100,6,23,0,18,100,-56,29,-10,90,-74,-65,-5,48,98,71,83,32,83,68,-71,-98,-47,-14,75,8,-41,70,-84,-67,-61,24,64,-20,40,12,-44,5,-20,31,47,52,47,-33,27,-56,-94,71,4,-14,-64,-23,-1,-17,-87,8,35,-22,-3,44,-21,96,-57,20,88,27,40,22,-38,91,-98,69,50,66,-70,-17,75,-41,78,-2,38,-79,-50,32,-25,44,-29,-18,-43,-47,-76,26,14,46,31,96,73,-70,-83,-96,-1,-81,-39,35,-50,-72,-75,-33,80,-35,26,49,21,63,67,96,100,95,-86,23,24,-25,10,-22,26,58,71,66,78,-19,28,29,95,-91,-13,38,-61,74,-81,-61,3,14,28,93,-97,23,92,83,72,-43,6,-62,-8,49,-54,-10,3,-35,-27,20,-14,9,-44,30,83,-94,-52,16,74,79,80,-2,-79,-39,-64,-62,-69,-31,-3,56,-93,-47,70,-42,-65,-43,-82,39,-49,-82,-72,-79,17,69,-55,38,-5,-2,-43,-10,-54,5,38,4,-12,-49,-48,64,82,33,69,-15,68,53,23,-78,48,-59,-84,9,-30,-15,-98,51,78,-17,-26,-43,-93,-18,-71,-24,10,2,-70,-70,31,-58,46,-22,-50,-29,-93,-60,13,64,55,-88,85,22,97,-46,-19,13,-14,-97,-17,-78,80,-7,25,88,89,-58,-48,-42,89,42,9,96,23,50,83,79,84,-45,28,78,64,-63,69,-23,-2,13,-92,-71,-17,-63,-89,47,-63,28,26,-59,-75,21,-87,-5,-26,-58,-80,-5,48,-27}
{-34,-48,32,-81,85,-42,-65,65,29,-37,4,-24,-92,-100,60,-33,-87,-9,86,52,54,-16,5,-38,-36,21,-30,63,-52,-60,14,95,60,99,10,-61,-42,93,77,6,8,-10,57,99,46,-63,38,9,78,2,-3,36,-39,-58,23,46,28,-69,19,-2,73,67,-43,-21,80,-1,94,-64,-1,-25,-2,-50,-100,48,18,-33,28,-52,-61,-18,-66,-77,12,63,-4,-57,-89,43,49,53,-93,-97,-80,-69,-67,33,-63,23,29,99,-59,59,-55,48,-41,78,88,12,-23,46,-18,52,-78,38,-91,-96,-53,85,0,16,20,48,12,-71,70,-57,-68,-23,-75,-16,-66,-13,-24,42,-18,-56,-64,-1,63,76,66,-95,22,23,95,-55,-64,48,-63,54,21,-12,57,62,81,-87,5,44,53,-33,-52,-42,53,86,65,16,-78,-36,87,-16,54,27,-7,-34,52,-8,81,-89,80,-25,59,-6,-36,45,-88,-78,74,-82,-78,35,-84,-38,12,-58,-52,4,-94,55,-88,-57,10,-21,44,22,-87,91,-58,41,96,43,-4,86,71,22,-11,95,-40,-9,55,27,-20,-35,-59,-48,-42,-35,-39,-71,-45,63,62,-84,-45,82,-91,27,17,69,39,-19,2,-68,-16,81,-62,0,-23,79,9,59,-75,-23,6,-45,61,21,48,54,-91,-69,85,63,-73,46,-38,-34,78,-25,-44,-28,5,-48,22,-58,15,-12,24,-50,-56,29,-18,98,17,53,50,81,94,75,-1,40,35,-87,-94,-59,45,10,65,-47,40,-13,-72,-38,-83,69,91,-58,4,35,-70,-78,93,-23,34,61,-75,28,-13,-99,-39,10,73,28,7,14,-62,45,-89,34,-67,-61,-80,36,3,-55,13,-86,75,95,-60,-15,-9,-84,-80,-88,-74,-70,3,-50,-24,46,-39,-65,4,100,-23,61,15,17,17,-27,-21,-30,85,58,-99,78,79,92,28,95,59,-94,14,46,-19,-7,54,21,95,-12,-43,37,86,44,-8,82,75,74,-38,96,-72,52,95,61,5,-79,24,-80,-98,12,-99,54,71,6,68,-41,87,2,-90,-80,-71,-86,13,-24,-12,-70,-67,-44,-42,13,-94,57,17,40,58,76,-26,40,-69,47,-39,-51,-92,39,36,-97,-70,-95,-34,57,18,98,-46,49,-36,73,7,-30,-94,-79,20,-10,48,4,49,93,-24,52,68,40,74,97,-28,-68,-72,58,90,-40,-24,56,-24,-31,96,-50,27,52,33,24,36,-68,-92,-96,34,-89,71,16,9,30,-12,-32,-43,72,-31,84,82,91,-28,98,20,55,-82,69,54,54,85,-100,-49,-43,-60,48,38,57,41,-75,59,-14,15,35,-13,74,4,-21,-22,-22,30,-52,-86,53,90,11,94,16,2,-93,-77,-16,19,-54,68,69,64,-40,20,-30,-57,-98,-13,78,-10,14,-90,31,-86,79,37,-94,49,-33,66,-9,-69,54,-72,92,43,-88,-39,-95,-48,64,92,97,39,-90,54,65,81,-78,-54,-96,-58,-91,-75,-77,27,34,-22,-22,-81,6,48,-82,-41,68,26,86,-78,-85,92,-7,-76,53,1,-53,16,-44,-61,-88,75,-53,-49,97,73,-80,28,80,-28,-46,-3,-3,23,25,83,35,-94,-76,-60,-73,-75,8,-46,58,-8,37,-26,-33,-39,100,-69,-61,97,-23,4,94,-99,-12,-51,59,49,-86,-97,21,52,35,-52,-78,86,8,-92,-96,-63,-35,-97,6,95,15,-20,29,15,-36,-95,-54,94,63,46,99,-16,-67,86,42,18,37,36,-27,92,-95,72,-4,-48,-50,-76,-62,79,-98,72,-49,-19,59,17,71,90,-72,-22,83,82,-33,-43,83,83,52,81,65,-42,6,22,-93,-51,17,76,-9,-84,23,69,-88,3,8,73,-30,-20,-38,-2,93,-69,-99,-24,63,78,77,9,36,-24,-41,58,98,-42,49,-3,-75,-68,-31,-26,-80,-4,-31,79,50,34,98,-39,-89,27,-57,93,-12,18,-40,-40,41,82,-35,-38,71,-68,82,-96,-17,66,-40,62,-61,80,-65,14,62,-65,96,-23,-64,-40,42,38,58,-68,-12,-86,41,-85,26,-12,-68,-81,5,23,-30,20,0,-1,17,86,-29,0,88,36,67,-29,9,-39,4,-49,9,76,30,-92,28,-93,57,-42,62,83,-4,-61,-17,-79,25,39,0,80,42,1,-15,28,82,42,0,-15,-50,95,-35,-7,-19,74,70,69,91,-9,-57,-64,-72,91,-21,-76,-76,-17,-8,62,29,-49,-51,-64,-74,77,44,4,25,74,-86,31,-85,-97,93,-96,37,82,74,-30,58,72,31,-4,-98,87,79,97,52,99,-18,-59,-46,100,43,71,58,-18,58,-20,-97,-94,37,19,-14,31,-94,34,-12,0,-48,-63,-10,-90,87,-64,-52,18,95,58,87,45,-78,26,82,-33,89,-71,67,-1,-21,-33,54,-15,-37,22,89,-86,-79,-57,-2,23,92,100,37,-96,-21,-4,-98,96,-52,76,-62,-22,97,-72,-98,-15,82,98,3,-86,85,74,-26,-46,-60,68,-93,-51,-53,32,-40,33,58,51,-38,-10,13,-24,-80,-49,-61,83,93,-75,-72,-55,26,-16,56,-87,-18,52,58,2,-99,72,-19,-84,-10,74,39,-10,-60,-18,-21,-10,-96,-1,-65,68,-26,-18,-14,-26,48,-98,51,44,-59,93,-12,-68,76,-43,-76,-2,33,70,29,91,-98,21,87,-82,59,-87,-32,-91,3,72,-4,-80,5,-63,-86,-29,-9,82,27,94,33,90,-51,48,53,-74,35,47,0,71,-23,-43,38,9,69,82,27,42,4,44,60,-93,54,-34,-84,-46,-4,15,-69,14,-80,-44,42,6,-94,55,-21,-9,97,-80,-5,-48,-74,49,67,91,-59,-82,-61,78,58,-46,61,77,-63,-8,33,51,-56,29,80,-100,-81,17,-28,-26,-22,68,55,-51,63,78,-56,-44,-91,53,47,-58,-8,-92,-94,1,69,75,-56,-23,54,-34,-12,59,-52,19,80,-94,7,-26,61,-71,-66,-14,-91,49,59,11,-68,-47,47,33,-21,-88,29,76,-60,90,-25,100,17,39,48,-96,87,19,-35,28,88,-65,80,69,-18,-37,-52,14,-56,-84,-27,43,78,-39,-34,-89,9,-85,31,-48,97,-3,-12,31,25,-17,-91,-2,91,14,62,-62,-94,50,-76,-24,-82,-81,2,21,-72,-54,89,-23,54,-99,71,-2,88,-24,45,-12,58,73,-77,64,69,-70,-69,-14,82,60,1,-68,-40,-65,33,-64,61,50,-62,-36,39,-76,-38,-8,70,18,46,-31,73,24,-71,11,-31,-56,-26,-67,-26,-43,-79,-24,-52,43,88,-13,-71,27,78,-58,-19,-88,-41,-47,-48,-84,-34,-7,87,-63,32,96,88,-60,-49,-63,-72,-61,-59,-97,-91,100,61,-81,-54,-92,50,38,32,76,34,-26,40,-77,-16,-33,-6,-2,66,8,100,-16,36,-78,-74,50,34,-67,-78,-38,-87,7,52,18,9,-68,91,-100,-13,-27,-50,-35,-54,85,45,-42,48,17,-74,37,56,34,57,-57,-4,-1,-94,67,51,21,13,23,-14,-60,-92,97,67,68,6,50,-42,97,15,-11,-46,-66,-31,2,-42,-31,-7,-74,45,-62,38,74,100,59,-21,90,-26,-54,-26,7,51,5,84,7,-19,-58,31,-90,18,26,36,-37,-38,-21,-91,52,-7,7,13,65,-14,3,75,-26,-58,45,82,45,71,82,-24,-92,12,98,97,-92,11,6,-39,-50,-91,52,-21,-1,-41,-100,99,66,55,-50,-79,92,65,-74,27,93,-49,-10,-57,-14,-54,-7,-70,-99,72,-51,49,-86,25,65,52,-10,7,-65,-99,-76,-6,97,-32,-35,75,19,-35,65,-70,67,-91,92,44,-49,-58,31,45,43,67,68,54,24,-56,-11,73,55,70,89,-100,-32,-71,-51,-9,14,59,85,65,52,-53,99,-21,-57,62,63,-57,-19,11,-37,-8,57,-23,-30,-19,54,55,-86,-17,65,-15,87,40,74,91,-10,28,-65,-16,75,17,-27,-84,42,90,-17,-25,-9,-52,-39,-9,72,-5,33,100,83,-94,34,-59,90,30,10,-72,-11,24,-39,-8,36,50,11,41,51,61,-91,-90,11,7,-82,-30,63,-57,82,42,52,83,100,56,64,-15,62,-80,-7,36,-48,-12,7,-61,-67,-45,-31,46,-51,72,-4,64,-47,-47,-27,-27,35,-88,36,64,-33,89,-58,10,-75,38,85,8,31,-19,90,-64,75,56,48,-49,-67,-8,37,71,-52,-22,12,81,-17,95,-23,17,70,-3,50,15,59,-62,-74,-3,-16,46,0,-27,-28,-42,-16,-16,-94,-68,48,-55,56,39,-32,-88,84,81,16,62,-70,-97,38,81,-41,-34,89,34,43,29,-28,-71,62,-27,-19,-80,44,-57,32,9,-10,71,-32,12,99,36,-54,15,-61,-70,99,3,92,15,65,9,37,-15,98,-97,-72,34,-69,3,16,-54,-15,0,-26,-43,-5,-73,11,-20,28,-5,-36,59,25,50,-100,-26,-81,-54,-100,-85,49,-20,81,-32,-59,23,-24,-78,81,23,-11,-93,88,8,-45,69,-51,-98,-35,74,-7,75,-83,95,2,-61,83,61,-41,34,-61,-5,91,-8,12,-48,23,-87,83,65,-84,-57,66,56,53,-38,-21,-40,41,-52,-15,-32,-82,10,91,82,-64,-77,-83,10,24,12,10,35,85,-6,42,-80,-55,-5,0,-18,3,73,-15,-68,-38,-75,35,-54,97,-5,11,32,-68,30,32,-19,-81,87,-8,20,-9,-17,49,-48,53,71,70,78,22,-9,26,-41,65,-90,-97,-43,90,87,-54,46,77,-8,-86,-14,77,-29,-86,-87,95,-78,-69,-73,13,6,93,-7,-79,77,-68,-26,45,-1,-78,98,-71,54,-3,15,29,90,69,95,-15,70,70,-46,-5,71,-12,-65,-76,-39,-68,-76,-33,-50,96,-24,-39,-80,100,81,96,4,-96,18,-75,-67,-68,95,70,7,22,-86,26,-52,-20,-40,73,3,86,73,-87,39,-46,-81,-40}
{0,-5,-16,62,98,23,11,9,44,60,20,-73,18,-33,-27,20,-30,93,-64,11,-7,-53,79,22,-27,-26,2,-22,15,-54,-57,74,3,33,-91,70,75,-64,1,87,25,36,90,47,55,-84,-43,86,45,65,64,14,-70,-5,34,-75,55,-38,-23,64,-49,-59,21,-32,78,-86,46,-34,-78,99,26,61,-15,-35,-54,-20,-30,-37,63,-4,-37,-80,-11,86,-2,43,50,-82,-21,-50,14,16,-76,-13,74,-65,60,31,-69,-96,1,94,-17,-95,12,44,-42,3,13,-86,59,-21,95,-23,-30,-1,-39,-72,-51,-68,-21,-62,-80,-100,-96,-72,89,-4,11,-77,44,88,93,-18,-93,-94,4,-38,92,13,-46,-85,-48,-13,78,80,40,70,-35,82,-99,82,76,-23,-26,-27,73,49,-76,53,-32,0,-62,-99,-15,93,55,-34,90,-15,-79,29,-73,9,-78,-28,99,42,77,2,50,45,26,100,18,-25,58,99,-8,-46,-21,90,-55,-96,48,99,-92,74,19,-26,89,78,82,-72,-69,-57,-89,14,15,-62,-74,3,-97,47,38,32,78,-50,36,20,33,-98,98,27,-10,-72,-78,30,13,-8,-91,15,29,86,-27,51,-27,38,58,97,-64,47,-34,-62,75,27,-52,-28,82,-65,-14,80,37,-1,-65,16,81,82,-80,-75,-91,79,-22,37,-87,-34,-77,35,65,88,-14,-70,50,38,-77,-63,31,-93,14,51,-92,-70,83,-12,48,21,-31,-4,82,8,-43,29,49,-75,89,-39,-69,66,-16,-83,68,-72,-58,31,98,20,-54,52,66,-86,-62,71,27,-90,-78,46,73,-89,-39,92,-53,-49,92,-22,-43,-63,43,48,-74,49,-6,77,-6,43,-17,45,-91,26,-81,-37,58,-47,-83,1,83,75,-90,8,-89,-89,71,65,-28,-29,-26,38,-81,25,-42,-91,-92,78,82,30,-51,24,8,-75,-29,-41,32,-60,82,30,-56,-86,-57,-46,88,11,24,-56,11,15,95,12,-59,-19,-86,-42,89,-27,23,41,20,71,-74,86,51,-43,60,-15,-2,46,66,-77,-49,-30,-16,-34,11,-65,51,52,70,-66,49,18,-50,25,-5,-42,98,-7,-37,33,35,-26,58,20,14,35,-82,-33,-77,-7,99,-88,17,60,31,15,88,31,-12,80,-37,-100,-32,99,-17,8,-74,-50,-11,18,33,83,56,-68,-92,11,59,-13,-17,-35,23,55,-10,-59,11,92,-51,-52,-49,-16,6,15,-48,-65,37,-53,83,23,67,57,75,1,69,-66,30,-46,20,92,38,-47,-38,-26,-9,18,83,50,96,-71,84,63,95,38,-81,-34,4,-98,-8,-91,46,-95,-97,-50,2,64,-2,74,69,-92,-88,58,-16,8,61,-85,16,-5,-97,41,72,-19,-50,55,-48,-41,-89,4,4,60,78,93,-29,-43,34,47,28,11,57,8,59,19,-74,26,47,40,63,80,52,76,79,8,-16,40,-29,27,27,64,-95,45,13,56,48,-60,50,-67,2,-42,-56,95,55,-1,-84,9,-82,45,83,76,53,16,-64,38,90,-99,-36,-32,71,-61,75,84,-20,-16,-11,-12,16,47,6,76,-20,-16,51,23,91,35,93,97,13,-46,88,57,0,76,-44,-95,85,-39,-66,39,-86,-81,-68,83,51,86,-63,99,-40,18,-7,-10,-95,66,-20,31,-85,66,-69,38,-9,99,84,63,-19,4,68,-47,-66,-22,-43,-77,-6,9,-2,34,-20,11,-66,-74,76,-2,-62,-16,59,-19,-30,-13,-49,80,71,24,-56,83,60,-8,58,-18,-35,-35,-59,26,32,-69,-25,-27,-34,32,-41,-87,-22,-92,-25,26,-69,45,-96,-10,-6,-39,-50,32,-98,24,-35,-13,-43,86,9,-86,-4,-60,0,31,-57,96,80,-47,3,-31,-81,-36,-90,32,-57,60,72,75,-30,-61,-71,37,-83,24,76,-19,96,24,-96,100,-99,-24,-67,53,4,-7,-33,-87,-69,-30,-22,50,13,-55,-31,-67,40,39,-42,-29,-19,3,-18,-28,68,-65,53,55,-77,49,-94,-63,-77,2,-10,58,-93,61,13,-64,44,79,-51,-36,-75,78,10,50,51,2,36,-42,46,84,-35,-82,48,98,-83,-81,29,-75,-19,-78,59,-75,90,-54,31,54,27,4,-40,-28,88,-96,55,-86,-41,21,90,54,-14,-26,87,61,22,-21,-5,29,24,-97,82,-73,-56,-77,17,77,-16,58,22,36,40,-63,45,36,61,38,-73,71,-68,-61,53,-19,-27,96,-72,89,-3,26,59,10,-88,-8,-18,6,50,-69,7,-84,19,30,62,-63,69,74,-79,53,67,24,71,10,-7,52,-79,-79,-69,27,25,-60,65,-41,-40,-88,56,64,66,97,74,86,-32,36,-42,13,-72,26,64,57,-38,-45,-94,-13,-64,80,-36,-92,-88,76,-85,28,52,13,1,27,10,80,70,-11,-58,83,52,-50,46,-11,44,-77,99,36,-92,78,33,31,-76,-69,69,-1,93,-32,83,78,90,97,-67,-34,-92,-19,-26,57,-33,-23,-3,0,69,38,-79,-7,-79,-48,-85,-68,68,-44,77,-25,-21,16,-73,-10,-43,45,-21,10,-30,6,-73,30,-7,99,-15,-33,66,-34,-67,-96,93,-10,-15,64,3,-79,-12,-59,93,88,-42,-4,84,71,-40,-35,38,9,-55,72,-79,-20,-38,-57,-16,38,-90,-56,-60,71,-30,-25,61,-3,-30,12,90,91,58,18,-38,25,-47,-29,78,-32,-79,-36,-84,-57,72,93,97,29,18,-41,13,-43,-32,7,31,75,92,82,21,80,24,79,37,17,-98,-27,89,-80,86,48,-34,43,45,37,-52,-63,-5,-99,32,-69,-40,88,-67,76,-12,-7,99,-20,-64,-12,-86,12,40,34,72,58,97,43,-37,16,-79,96,91,-41,64,-21,-28,-58,-42,-57,90,67,25,-3,-100,88,-69,-65,-72,-3,-49,19,13,98,31,-86,-36,-66,20,-88,60,-26,7,18,-30,34,86,-82,67,73,-95,-56,-48,97,-49,-42,-8,28,51,93,88,-11,-17,-36,9,-3,-38,14,45,-67,-83,-9,-21,76,-42,98,-26,5,-92,-50,-30,-47,40,28,-38,97,-34,48,84,-21,-89,26,-67,-27,-74,45,-51,3,26,-71,69,-35,7,-70,52,53,2,9,56,50,-3,21,-65,-75,22,85,-80,-60,17,-11,-28,44,51,-68,62,55,18,-81,24,-35,-33,47,-60,74,38,2,-14,-23,-35,65,-66,56,99,68,48,92,28,-15,-76,-69,59,56,-48,-49,96,18,20,34,-14,-55,1,67,63,90,76,-8,100,-81,-32,2,-83,-76,-78,-58,-79,-3,-19,23,45,50,65,84,-19,18,40,-77,-73,-66,59,41,46,91,-84,52,-48,-97,24,-52,83,-94,12,-53,57,-54,9,26,47,-74,16,-95,29,-39,-35,54,0,-63,46,-12,98,50,-63,35,-57,93,8,-100,-91,-99,-66,-74,-15,26,-44,-60,52,-6,-9,44,-90,66,96,-57,-94,-63,-19,-72,86,19,-100,-56,91,-16,-17,-52,54,68,-97,-45,-27,-44,75,-32,70,-49,-83,-98,33,89,51,24,16,57,-59,11,25,-61,35,47,49,-92,29,-30,41,-15,-8,82,-71,-24,60,94,-73,-60,0,-65,80,-16,-14,90,31,-87,-12,1,11,-49,15,-51,57,-52,-83,93,75,36,-24,95,99,-39,-10,-52,93,-75,44,-40,-78,-83,-31,-85,89,-65,-22,77,68,-33,-98,-12,3,55,-72,-78,-47,73,24,22,-94,20,79,-97,43,-47,33,-32,83,-62,78,38,-43,-15,16,76,16,41,33,2,95,-30,-78,-1,-61,7,-95,14,-57,-80,-47,43,78,-90,-10,-94,-54,72,65,13,-47,-46,18,-25,7,-35,62,-23,-18,-60,64,53,-14,-86,-14,-88,18,-84,97,83,-11,14,-53,54,-2,88,59,-49,92,72,25,1,21,100,-3,-37,-3,-55,92,-76,-82,93,57,2,-25,-26,72,-1,-32,-49,-61,57,89,56,-16,-81,87,13,-54,85,-63,-20,1,-56,55,-11,-90,-40,34,74,-34,-23,27,58,20,-2,-53,54,78,83,-34,-33,-32,94,27,47,-78,10,-46,23,-92,67,-70,-20,38,37,-70,94,-51,-32,82,-4,90,8,88,13,-16,5,-21,-6,-44,-34,7,-1,80,-28,-22,52,96,-24,40,-22,-89,-63,-27,-64,-11,7,-81,-55,-9,-42,89,-49,-67,6,17,-72,51,89,-74,29,92,-99,-73,-8,42,-51,-40,18,-46,-16,92,-37,17,24,-63,-25,25,-92,42,0,38,49,-32,-91,-1,37,81,-13,93,-44,68,84,-71,-97,79,-11,60,61,-64,38,-45,2,-97,31,-4,10,30,-88,-11,-37,58,-54,97,-73,21,-35,39,50,-56,64,-100,-54,-8,-64,62,-73,42,-32,-19,68,-35,69,-89,-75,96,5,10,47,6,-64,2,60,-85,69,-75,-69,16,-20,-77,-66,-7,40,-13,63,-60,16,-48,81,6,-80,-35,63,8,99,-17,-38,-50,-78,-67,-84,39,-69,-83,96,49,55,10,-29,-82,74,-41,27,79,-16,32,69,-7,58,-79,-100,-14,-4,-10,-83,-21,-36,-85,67,98,-65,-72,44,30,62,31,-25,-80,58,12,-94,66,-36,59,69,-61,-31,-17,20,-87,10,-25,66,94,80,17,-13,46,13,-61,21,45,58,67,-35,-26,-3,29,48,21,7,44,-29,-4,-38,-44,14,50,-52,8,57,36,-13,86,-26,58,31,-2,56,-16,27,-90,-36,-38,-39,8,37,-22,-6,1,11,-86,-35,17,54,-77,7,77,85,-66,77,90,44,4,71,-78,-43,2,-29,-53,-57,-18,-19,-96,-21,-81,27,-79,-2,-76,27,92,49,-67,-59,21,19,70,-33,55,81,-74,84,78,52,-35,-32,33,-50,56,15,40,-46,88,67,57,-80,-36,41,64,-9,-16,-41,9,28,-73,-48,-38,82,40,-28,-99,-66,-25,99,-12,-95,8,-89,72,14,36,56,-13,-25,-84,-46,60}
{-100,61,-58,-3,16,-16,-17,-24,-54,59,-70,54,42,46,13,26,-81,-97,-81,-48,-37,50,18,85,-97,-39,4,37,32,2,-88,-98,19,71,19,71,52,20,91,-59,21,45,85,-52,-50,-8,-23,99,-93,-80,-62,15,-40,-17,89,36,89,25,72,44,86,-3,-29,68,-53,-12,-41,-61,13,-75,6,31,40,61,-89,-72,43,-6,-57,-28,77,-24,-86,-13,99,60,66,-11,22,19,-96,-24,88,-72,-57,-29,-43,24,-50,-57,-32,-19,-36,56,-49,82,56,-59,-92,-35,-79,49,66,-26,-5,-58,-21,-68,-65,-60,59,0,-27,83,77,99,86,57,8,-65,19,-73,4,86,-60,67,-89,81,20,86,-77,35,46,-100,-16,27,-9,-34,-2,-54,81,99,28,18,3,98,-70,37,20,-61,75,19,39,-82,-68,-33,-72,-41,-23,72,-77,-49,-79,34,17,-67,70,-34,99,-42,-21,80,88,13,54,80,62,-92,-29,-96,97,-2,-69,-68,-30,50,62,48,70,-66,53,13,-83,1,-79,18,-8,-91,-8,-98,69,79,65,-70,-1,-44,19,-25,95,68,10,-54,15,19,-16,-11,-36,-66,4,-38,35,-5,84,-56,38,13,-96,44,-75,-87,13,32,36,50,56,-43,20,-45,91,-52,-89,-50,53,-9,84,90,-46,86,-94,92,-57,-81,49,-89,-99,-9,-75,-36,39,3,-37,-31,-5,98,-12,-96,-5,-26,66,72,90,14,18,-32,49,8,-56,-61,7,86,17,16,-55,-82,-27,19,-81,5,-25,-32,-46,92,82,-88,55,96,89,-15,13,84,-26,-69,-94,-63,-95,34,93,-96,-66,-65,-63,59,95,-90,-77,15,32,79,73,66,-44,64,72,-58,-18,-96,72,36,50,-6,9,71,-46,-95,-27,48,-17,70,74,-15,-98,-75,0,-43,23,53,52,34,-4,-18,20,21,66,49,-23,5,29,-1,46,-50,-42,92,-4,44,93,-57,-17,-89,-34,-28,-20,46,78,-70,-7,-43,-94,23,26,-62,7,-96,-17,88,44,-31,46,-36,46,-31,-94,-50,-58,47,86,-80,-94,51,62,57,-92,21,47,-66,-14,85,-11,35,82,-21,-20,38,58,-87,45,98,-71,55,-77,28,-48,-36,-34,-61,-100,38,-76,-27,-53,20,-15,-59,87,-58,-44,-51,15,37,-83,6,-49,-20,51,61,-77,23,92,-10,74,-94,45,48,57,36,30,-35,72,99,-12,14,58,12,48,-25,-58,23,95,91,32,-17,-2,7,95,-40,-13,67,-62,100,9,-38,1,-66,18,100,3,-97,-49,37,57,18,-84,38,73,-12,-13,-8,60,67,45,-35,50,-31,21,32,5,-46,14,8,26,17,-75,66,-83,45,42,-90,-47,-27,42,-23,96,95,-100,-88,-27,-12,-52,-30,5,14,-57,-61,-55,29,83,-91,96,-31,-49,-49,-21,66,-92,47,71,-28,-10,-64,38,3,-75,-67,-16,-71,-74,-84,96,63,-93,2,11,-4,81,-59,22,-25,-37,-56,-57,-86,-30,-65,-13,1,-91,52,-39,75,-69,88,40,26,48,-64,54,80,58,-70,-23,54,-62,-81,-87,52,-52,-91,31,52,-38,-2,-15,-30,12,93,14,-42,-43,-35,3,-37,-93,-90,-56,-86,33,-91,-13,-45,-24,78,68,24,-64,-38,-69,88,-55,-98,35,15,-21,21,71,14,48,11,34,0,3,12,36,-8,-41,11,-79,-1,91,-73,98,-29,-28,15,80,-61,-17,100,-88,91,-77,45,-75,88,47,37,57,97,-4,-52,100,-74,17,-2,81,-3,4,-66,-24,-61,71,-77,48,-55,-18,68,-4,-2,-29,1,6,-10,-6,-67,-9,-57,-88,-21,56,-35,82,100,83,-70,-72,12,-46,78,-44,93,32,37,-24,52,25,-52,74,28,-83,14,69,61,9,-33,-26,91,-71,-44,72,-26,-67,39,53,-91,46,-99,27,-30,-74,39,-88,-60,80,10,-85,91,-39,0,-11,-13,-25,42,44,64,-55,22,92,61,-81,91,50,70,58,29,41,40,72,-17,0,9,35,77,-32,6,-35,6,-89,-93,8,25,-70,30,77,65,32,-89,-98,-21,-70,-28,-66,45,-70,26,95,18,79,-17,-53,-22,36,-63,40,-88,99,-35,31,72,-41,-38,60,46,1,-27,-83,-81,-45,-9,-82,-45,39,-68,-91,46,-55,-55,60,-15,62,-72,87,4,-41,-74,38,-17,85,-32,9,74,-69,71,-76,38,91,-45,28,80,-6,-2,-86,67,-27,81,-41,90,100,-42,11,-26,-42,76,-84,-1,34,62,-77,78,88,24,-38,63,-62,11,-50,23,15,80,84,87,-95,7,84,-5,6,98,42,36,59,-46,1,-77,80,1,98,76,3,-64,96,21,75,18,75,94,-68,-20,94,25,-96,-100,57,28,-9,-11,-79,-5,72,-52,80,-47,78,-33,74,-60,-13,72,13,-70,-16,98,20,14,98,-2,95,94,-33,-93,45,63,46,-37,18,71,-79,-8,-82,-41,-33,92,-81,-93,-17,11,-92,21,60,-89,88,97,16,-56,42,21,15,99,27,-18,-99,12,0,5,-37,-2,-6,42,2,-48,87,-69,8,-69,-43,10,10,-40,-76,30,-95,-84,-24,50,52,71,40,3,72,-85,72,34,-37,8,87,68,-36,-43,73,56,95,-28,-49,65,-76,-84,-3,-92,77,85,24,-78,27,16,-16,-36,4,65,-55,8,-78,-60,19,-97,-51,-33,32,-37,-76,-95,-49,-2,-15,39,-14,35,15,96,-27,-72,-76,36,-9,16,-69,96,-46,-79,39,-43,94,-93,-92,30,88,88,87,27,89,100,-75,-40,-55,55,8,-5,96,-97,-55,-81,-87,69,94,77,-61,-79,100,52,-9,-41,-80,-91,41,-21,-15,-60,19,49,-60,-51,7,29,-55,81,44,97,-93,-38,-50,29,3,93,-41,45,-40,-33,13,-90,-8,-83,40,-18,10,-30,21,-49,94,-99,19,-21,-34,-74,59,-50,-2,-90,9,-98,-33,11,-24,27,-8,77,27,-19,16,-99,-71,-56,-82,20,-82,-82,-98,63,59,85,-7,45,-55,19,-76,47,-93,57,-83,66,-68,47,-26,83,-16,-14,-9,43,-72,-46,1,85,-22,-53,-50,-3,-5,-81,-71,37,-73,-93,-71,82,-44,-71,-69,-6,-66,-66,0,74,39,26,36,-40,63,-75,-49,74,-62,-15,86,-27,76,-71,81,65,-85,24,99,-36,-42,8,-31,29,-5,4,-31,14,9,12,92,-34,-56,43,60,87,-94,-91,-57,16,7,85,-97,-47,51,-36,41,-70,-13,55,91,82,-93,69,-32,-10,-63,43,44,-80,-86,61,-75,-82,-49,33,62,44,4,11,67,-14,30,-56,33,79,5,8,-34,-42,2,-18,-98,-9,58,-48,2,-21,-23,-34,-10,-47,15,-56,-88,-64,12,-50,-57,67,75,-84,-7,-85,-37,82,-70,54,-98,-18,-99,-16,-80,-77,-56,-96,-16,40,42,0,75,85,-71,89,-14,18,-22,1,-74,92,-92,17,-47,-3,-28,-39,-9,32,-89,67,20,89,-25,-21,-3,2,-18,-61,-37,17,78,-26,43,19,-20,-4,-18,-22,52,56,1,84,-65,5,-77,13,80,-46,-58,-11,-17,70,46,-11,2,-31,-36,55,-66,68,34,-90,96,-83,91,64,10,48,61,-42,5,47,-52,-91,93,61,-96,82,-81,-98,-45,-95,-74,-79,25,31,-46,-6,54,-19,-87,-94,-94,-21,-94,-34,16,11,45,-19,57,87,37,13,43,-10,-88,54,88,83,-25,-58,-5,29,29,-38,-38,-82,74,-73,85,-43,-75,-29,-77,42,16,60,46,13,-70,0,-97,75,-81,29,-74,-85,8,67,21,-74,11,-57,24,97,67,53,64,38,31,-61,-14,84,10,-34,71,76,-42,63,-73,-96,32,-60,6,76,81,-11,63,27,-56,16,-58,62,-80,-39,11,-17,-64,55,38,32,-55,11,-21,97,37,-63,35,44,65,-56,72,-30,-4,76,64,-19,-56,52,38,45,-41,-80,-32,40,31,-64,5,-13,-62,-32,45,27,43,-99,5,-79,-48,60,-80,-12,95,6,-59,-39,-42,-22,-55,-33,-83,-69,-84,-51,-70,27,-75,-76,53,52,47,-22,-95,-87,91,-99,-27,-38,4,78,72,93,2,-40,-91,-40,100,-38,-1,23,8,99,32,33,48,-86,-4,-21,42,-43,79,-70,-61,-11,-9,-38,78,17,-30,0,46,-63,24,69,-60,16,-3,57,93,-84,51,-49,73,-24,29,45,-84,85,26,38,76,64,39,91,61,60,96,26,-98,-13,70,-4,-93,27,-51,45,39,46,52,59,-3,-17,53,79,49,34,-99,-21,48,9,-61,-46,-95,22,-4,50,35,-71,-46,-11,3,-94,-34,68,-97,-15,-61,99,-42,66,-3,74,10,-34,-34,-48,1,94,80,64,-35,-82,77,91,-39,70,-96,75,43,-20,63,90,-47,23,-65,85,-38,-31,-64,-30,73,-49,64,27,93,-24,21,60,78,-40,71,76,-13,60,17,-8,-87,-32,2,-17,-6,30,65,-46,-81,60,-11,-68,-42,-90,75,-37,82,28,-87,-6,58,-52,32,-11,84,72,-53,-61,89,73,50,7,8,-87,68,-1,-57,-24,-16,85,-51,-5,95,30,91,18,78,89,72,-98,17,-26,-87,15,-51,37,98,-1,84,-40,-1,25,93,-41,50,99,-80,55,-49,88,-98,-13,-77,82,33,96,-89,-66,-99,62,25,-42,79,-81,56,-81,72,68,-48,-3,-50,-81,-39,90,63,67,38,-73,-30,-59,8,-49,96,-41,-47,-76,-81,-44,5,-54,29,-51,-18,83,-89,11,-90,87,99,21,-49,1,-56,10,-65,75,96,-84,54,73,17,-86,-3,60,15,-76,30,2,-41,18,-84,32,17,64,47,62,-32,-11,21,-61,40,72,45,79,86,28,47,10,17,84,-7,-11,-96,-58,-91,58,-82,-88,-80,46,67,-19,-68,-26,86,-90,54,13,-90,-70,-6,70,-28,40,53,-72,-53,17,98,-30,58,5,-46,78,22,13,-86,37,-46,-5,-87}
{80,13,50,4,7,37,44,87,87,70,86,96,77,75,74,19,65,77,25,9,30,65,99,86,99,76,93,87,89,97,86,62,47,4,2,24,25,58,61,38,17,35,95,83,9,26,62,12,68,5,88,35,71,19,15,51,61,36,94,4,68,5,99,67,88,62,78,17,54,5,90,69,66,28,67,79,84,53,88,88,69,98,3,49,11,80,73,79,28,4,40,58,49,55,38,46,39,28,90,2,14,96,100,52,43,85,96,21,71,13,92,9,75,50,79,22,38,78,66,48,1,66,70,19,34,14,91,33,72,2,54,92,70,45,1,51,88,61,66,2,20,69,33,3,32,58,21,94,15,24,73,76,29,7,69,85,53,70,78,67,34,3,6,33,27,9,61,98,45,72,84,98,94,10,46,26,26,35,1,79,46,14,41,60,49,14,59,71,65,29,66,18,4,52,28,65,61,61,55,100,54,55,46,11,27,14,16,51,5,62,52,96,68,69,94,50,32,98,33,10,77,31,10,37,87,78,10,19,71,84,45,69,68,57,26,41,10,17,84,74,31,47,91,12,63,94,74,35,73,44,100,92,91,88,23,26,20,47,31,24,58,98,67,77,96,49,91,81,99,23,82,54,52,29,62,30,2,60,98,66,90,91,67,16,77,53,64,42,15,23,67,51,29,5,64,39,76,61,36,36,51,31,79,75,5,91,3,80,6,16,44,95,61,29,36,82,66,8,58,16,14,47,20,75,19,61,28,12,61,49,53,72,79,88,64,29,40,10,47,56,42,24,63,43,73,25,32,92,75,85,38,5,84,43,81,69,51,72,77,31,47,78,13,87,40,68,54,32,67,17,38,60,31,18,14,98,11,73,54,85,54,2,8,67,25,54,10,11,10,22,50,61,6,41,87,4,43,75,16,56,33,2,79,85,96,90,23,22,57,72,54,99,53,31,40,55,6,93,42,32,46,13,33,78,63,93,80,92,81,74,29,94,22,25,96,12,23,99,70,7,24,23,31,47,24,92,88,47,30,30,23,74,1,44,4,76,84,13,97,16,93,42,57,44,78,66,41,44,51,5,1,30,13,57,66,34,40,63,28,90,21,95,63,83,67,3,9,93,99,96,29,100,48,46,58,22,57,88,7,49,88,31,62,55,91,85,67,85,40,27,30,76,35,11,24,22,55,93,58,71,41,63,71,33,50,49,10,96,99,39,74,44,55,46,59,45,100,74,48,2,6,35,47,42,97,52,21,13,7,77,52,31,16,99,57,80,79,38,70,51,29,64,78,95,44,76,46,9,85,43,29,51,51,99,31,92,64,23,62,96,18,52,25,84,100,19,25,35,42,79,46,73,84,53,10,43,15,39,34,65,54,97,66,71,50,5,76,46,12,67,99,27,91,47,23,57,50,52,9,86,63,89,9,61,59,12,31,58,9,4,25,37,54,70,96,1,80,57,86,17,50,97,14,84,12,42,96,48,55,56,45,17,92,50,19,63,82,50,19,14,85,75,78,70,80,3,17,47,93,43,64,4,52,53,25,12,58,18,30,10,1,57,19,24,36,29,78,39,17,8,41,92,94,3,87,73,6,45,90,56,16,23,32,22,26,85,21,85,21,30,84,52,64,8,23,61,17,34,12,46,85,96,46,8,57,20,100,90,41,79,64,35,68,50,71,47,96,55,14,98,62,2,75,71,28,82,50,14,63,97,74,47,18,64,84,63,93,99,48,85,8,71,26,72,7,8,89,94,16,76,30,80,88,52,66,8,33,84,2,95,10,70,74,55,27,97,53,21,50,39,9,69,52,46,81,6,7,77,12,9,9,61,7,30,56,36,94,27,37,84,33,62,39,60,34,85,10,36,70,13,74,73,92,35,69,88,48,1,48,27,100,100,25,11,36,91,100,24,19,19,14,87,13,65,35,79,64,47,69,17,61,61,1,5,48,31,64,68,91,62,39,33,92,83,34,19,13,28,85,95,94,35,70,15,13,18,71,25,72,57,66,46,88,32,69,70,9,50,32,90,68,61,69,16,70,54,30,100,24,51,82,60,66,39,89,26,20,94,16,83,87,69,92,90,87,12,60,17,43,48,62,71,8,2,73,9,53,93,79,52,51,53,75,9,97,90,99,45,80,47,72,56,21,41,72,97,44,13,64,21,43,87,70,39,12,100,32,46,11,82,71,35,5,71,86,85,13,46,66,33,57,55,29,17,40,18,86,39,87,98,73,16,36,2,52,59,79,89,93,85,9,58,12,77,85,77,27,79,79,93,15,73,21,94,54,89,75,47,21,85,6,29,92,57,22,96,70,83,56,59,17,40,76,87,38,9,59,98,81,54,93,2,68,80,68,30,93,47,48,11,44,89,98,52,81,1,30,53,52,27,20,11,48,55,91,58,48,16,72,46,3,92,12,9,18,45,52,46,13,49,27,91,1,17,39,91,21,22,9,86,27,69,69,42,13,88,6,15,69,27,79,90,47,66,2,19,19,93,53,80,57,87,7,51,47,85,75,81,3,43,31,1,80,78,61,53,42,34,84,98,42,14,99,43,21,36,4,40,8,71,62,3,26,65,11,53,88,29,48,15,44,94,34,93,34,62,53,81,12,61,68,22,34,28,4,76,62,77,42,30,44,65,1,8,94,7,24,90,61,4,35,28,30,1,81,59,52,42,85,58,24,79,70,75,76,54,21,58,42,18,38,87,78,35,54,38,37,83,43,48,33,97,21,91,76,93,43,46,73,56,81,97,95,30,94,38,27,94,67,22,93,21,63,47,49,79,38,26,93,61,59,95,23,76,95,44,19,39,10,12,64,84,70,95,81,3,69,42,56,73,6,51,63,76,14,18,100,18,85,69,48,86,60,89,57,56,67,44,35,4,29,27,4,96,43,71,25,79,24,33,60,71,32,98,90,22,3,32,22,15,62,21,44,89,62,17,35,95,15,47,76,40,65,83,89,28,26,22,26,91,77,78,96,78,75,20,8,98,91,30,21,8,6,18,13,8,63,54,38,13,55,3,40,88,83,43,59,85,82,6,38,22,48,83,49,80,35,46,73,10,26,61,14,74,88,19,36,45,20,52,50,35,36,91,55,22,61,4,63,65,39,54,89,15,8,48,13,62,39,64,16,35,25,18,47,18,3,81,26,47,56,50,5,64,59,65,99,1,25,90,29,9,39,97,32,18,41,35,9,38,25,38,23,38,66,88,38,85,83,52,39,4,89,11,68,70,24,34,40,57,12,74,79,76,13,29,11,48,37,71,16,16,46,48,34,20,13,39,42,1,38,93,9,84,86,81,26,13,96,61,100,5,52,16,56,45,86,90,62,86,9,72,39,69,6,50,74,95,66,15,52,29,15,23,4,82,42,80,22,84,6,97,45,78,81,32,78,40,4,72,30,86,36,88,95,50,14,72,6,80,29,78,10,65,90,91,10,99,86,11,98,79,67,23,1,88,75,88,23,81,78,54,22,23,27,82,21,19,73,23,5,24,17,52,56,48,84,72,45,48,8,93,72,89,17,36,95,6,12,17,35,58,68,60,72,54,18,24,16,4,78,36,65,53,69,14,93,93,95,84,86,81,14,30,40,22,96,46,21,79,59,60,49,31,81,43,44,15,82,20,1,78,58,30,25,39,3,88,80,63,70,41,35,44,7,90,96,43,34,4,26,57,78,37,54,60,98,92,47,31,78,55,7,68,27,2,23,3,88,84,55,51,86,15,99,53,92,23,84,50,75,57,30,60,66,36,71,50,23,64,86,60,11,74,87,88,69,41,71,35,38,51,73,93,71,40,97,99,1,90,74,61,21,19,66,59,14,34,58,28,64,47,33,59,30,74,52,93,46,64,62,39,43,53,79,9,35,27,2,78,51,31,62,40,100,80,43,87,95,36,42,47,29,39,22,74,41,33,36,64,28,88,93,9,9,80,97,64,42,14,91,42,24,48,89,35,66,28,36,72,67,46,78,6,56,58,71,61,51,56,80,11,56,12,23,25,35,73,53,56,93,32,35,80,69,19,100,51,14,1,5,1,21,60,21,6,63,74,30,17,34,51,46,7,16,35,47,74,12,84,14,31,40,6,5,21,31,31,10,44,28,71,31,100,28,81,44,20,23,71,52,58,22,25,54,45,55,95,99,1,45,54,62,16,29,71,10,61,8,44,8,40,48,34,85,47,37,60,60,99,69,25,88,100,24,11,45,20,9,35,84,75,99,15,81,88,59,23,50,17,31,75,83,78,69,51,17,6,77,71,79,91,14,16,12,82,65,16,66,33,61,91,26,95,78,26,80,59,74,85,7,10,64,13,70,81,58,86,68,86,97,97,94,99,11,59,63,4,57,95,84,26,23}
Returns: 4.942664953601302E9
{50,-49,90,-29,-5,40,-89,-80,34,-14,20,81,11,-86,-31,-27,-39,32,-96,53,-95,48,-51,-70,-45,-37,72,89,9,49,-82,-18,-92,-75,-42,-19,-73,2,86,5,75,20,-52,63,1,-75,-94,59,-50,-45,-40,-58,-49,65,47,0,5,44,-9,-41,-11,88,-26,68,56,-61,81,-72,-81,-65,-64,-56,-57,-13,28,-2,20,98,-8,27,17,90,6,89,-85,-45,-27,-88,-22,49,-93,36,-59,78,-70,-48,82,-3,83,25,-95,5,33,-43,-33,-21,-23,-87,52,-98,-1,12,-1,-13,51,-66,26,-79,-98,5,92,20,-13,-99,-51,-50,-57,94,5,-35,54,79,-86,-99,-60,31,-18,-27,-59,-58,80,100,1,93,16,32,41,-87,0,26,57,-13,-87,93,-27,-28,76,90,14,22,-50,-20,48,-61,28,-25,93,3,-23,-89,-42,41,6,-70,13,26,76,-26,74,16,-62,57,-86,-49,-76,92,-31,-74,8,63,-54,18,74,-98,27,-5,-7,30,-79,82,-18,11,57,-65,29,-23,81,37,-71,-88,73,14,50,41,55,18,-60,-30,72,-4,-41,-14,-41,16,-55,25,55,-82,82,-46,29,27,13,-65,21,-58,63,51,16,65,-26,-78,-97,-70,46,0,60,45,-26,-95,54,94,11,-43,-45,-23,-23,25,-61,62,1,10,17,-20,61,13,-7,20,9,-49,-13,47,7,-65,-55,-39,-30,-31,70,-25,-45,45,92,1,-81,-75,29,-99,-96,-28,-65,-93,55,-33,-39,-63,-66,-96,-68,79,86,59,-42,59,31,73,-92,45,89,55,-23,40,95,93,-45,-1,-47,16,35,91,-89,-16,81,-43,-50,98,-64,81,-49,-79,-76,-57,-9,-11,-25,-91,-93,25,-93,87,18,-53,84,15,-96,-43,31,-46,1,-94,-4,68,11,-69,-7,87,66,2,-4,-48,83,-8,-69,-45,-65,88,-94,-24,59,82,-22,28,-82,84,-1,-83,59,45,14,52,-90,51,-28,-62,76,-6,-82,-66,-50,-94,-8,85,-62,86,9,37,-92,-17,30,99,28,13,48,-32,-74,60,-11,-36,-84,-1,32,-22,93,-48,-30,9,-84,66,24,-48,96,-9,58,77,14,71,-44,0,4,-15,74,-86,76,2,-42,-64,36,91,-17,-30,84,100,31,-43,-32,89,-91,49,10,12,-62,-99,-63,-16,-71,-78,-17,45,24,-100,-8,-67,-100,52,40,22,-72,-90,41,-77,19,1,32,100,9,31,63,87,35,5,80,-29,-46,-4,-81,-8,-79,-12,32,94,77,51,-59,99,51,-28,36,68,81,92,-86,-1,-53,79,-35,-78,96,-3,-44,-53,-23,-29,-77,-84,67,-97,6,-7,-43,38,60,-89,-6,78,95,-70,-72,54,14,39,8,25,48,66,-20,-69,-65,4,86,-11,85,-83,71,0,95,57,71}
{-12,37,-31,40,-86,-86,75,-71,31,-12,56,40,-63,-39,69,-5,-33,-65,36,95,-3,10,84,21,-89,-21,20,-83,-33,27,94,-95,7,-57,96,-18,65,86,-50,21,-58,27,-68,81,-86,-44,-97,85,-89,-91,-95,82,77,88,54,21,-74,-27,21,-4,89,19,-72,50,58,3,-24,-21,-82,48,73,-57,35,-93,-57,81,-34,74,-62,1,61,-78,-91,48,33,-35,44,-30,-19,-56,58,-74,84,62,14,-35,-25,-45,-69,37,-89,51,-44,-82,-21,90,-50,-19,55,-63,89,-84,-59,-12,-63,-32,-50,54,-29,43,-1,-86,-85,-12,-8,-88,-33,-9,-26,-40,-66,48,-27,-41,-31,-27,7,-81,92,87,62,-74,-70,76,-16,65,-6,83,-72,-52,-69,92,-94,98,-53,77,38,33,17,92,-49,5,0,-86,41,-52,45,43,64,1,29,-59,-17,25,77,59,-64,-13,-89,-48,-59,39,41,78,-78,-4,52,-77,-57,-39,-86,47,28,-31,18,-72,50,43,55,-67,22,24,53,75,-39,-68,5,-92,-60,56,-90,-45,-62,-18,-72,-50,90,-49,96,-47,98,-57,89,-99,-55,-66,44,-5,-48,-91,25,-77,-60,30,26,-12,-19,13,-56,94,50,72,13,42,-4,15,84,-17,58,-61,-13,3,-34,12,49,56,-88,-58,31,-91,-3,99,3,25,-30,-60,-15,-6,9,-99,3,-67,4,20,-95,-67,-81,-77,47,-45,-83,18,6,82,-38,-84,46,12,-95,5,25,83,60,-66,-18,91,-88,-74,-7,-97,-18,-44,-53,62,49,8,47,-25,98,56,50,-19,87,28,-29,-14,-43,-98,-28,-31,6,-30,-8,-84,19,57,59,-30,33,34,32,-37,48,-36,34,-46,7,47,36,34,3,-7,-87,-5,40,-61,68,-38,47,-63,-81,70,7,24,-89,31,-20,17,63,-85,-86,56,-41,47,54,96,93,92,-2,91,16,51,-53,65,-12,83,97,46,-78,21,-33,-5,-15,90,52,58,-88,-59,-41,-87,14,41,-31,51,-97,93,90,-93,54,-17,14,-80,-54,44,81,-88,-52,65,53,19,-72,100,-42,-22,-73,-13,-68,75,58,-20,6,86,52,31,-2,-75,-88,-9,77,-2,-71,35,-65,78,-97,-43,47,-91,36,-73,64,0,16,77,81,-96,73,96,39,53,-19,78,-16,59,-7,94,-5,46,58,-76,6,-93,46,69,7,51,54,-38,86,28,-49,-97,-20,-48,82,34,-20,-70,67,-32,-51,52,-20,-17,-6,-72,-42,-29,12,-82,-22,-46,30,79,-78,93,-43,-86,55,7,-19,-49,-3,8,-71,58,59,-27,-99,32,85,75,84,-23,-57,-54,59,9,32,-3,63,-88,84,60,3,56,4,-77,-32,7,-74,22,71,47,75,18,-47,-38,45,-27,-45,-65,85,-56,-6,-11,-54}
{39,42,-77,-10,-1,84,28,2,27,69,-61,39,51,99,73,-43,-34,94,-24,-78,-95,86,76,75,13,30,95,-85,-41,-86,-40,82,-68,33,-58,60,64,-56,-80,81,-12,-96,94,-88,-38,-44,44,68,-71,95,-33,13,-81,93,-79,-58,24,-40,-81,69,1,-46,-9,-50,-76,-31,-24,-59,-64,-99,-21,-68,8,7,96,-73,-91,16,78,22,85,-24,-74,93,-81,53,-69,82,13,-57,58,88,-52,-54,-33,-2,13,-82,21,79,84,-88,43,39,-77,35,-56,-71,-71,-7,40,93,89,100,9,-22,-47,-9,95,85,21,-3,-80,21,15,-55,-31,99,25,3,45,-29,-2,-8,-27,-2,32,-2,-90,98,-87,65,42,-32,-69,-58,32,-2,98,-37,54,79,-64,82,65,-70,-50,-32,-68,-4,-11,-24,-69,-52,-46,22,84,24,31,99,43,-36,-71,-59,23,-84,38,-7,-55,85,-70,-9,59,-48,-39,63,21,44,80,-3,-37,-12,-35,55,74,-16,22,8,7,94,4,18,-78,-95,-14,-16,-9,-2,20,-88,-57,-80,71,43,-43,24,-79,-75,-29,-38,4,21,91,62,-82,-9,10,-34,-88,-9,18,-47,62,62,66,62,60,-15,-97,-73,77,-71,35,-72,-44,71,45,-27,33,40,80,-82,-62,-66,84,86,43,3,-76,14,100,3,10,-42,28,-56,-20,-71,-43,-23,3,-17,45,97,58,-84,80,91,-33,13,-87,79,72,75,-85,81,-94,42,-58,-46,-23,46,-37,80,-85,-18,-20,34,66,-17,41,-85,6,-26,100,-8,-51,-30,66,-80,61,-90,49,-25,63,88,19,52,34,-85,55,-24,-93,0,8,-84,-23,-42,38,38,-29,-42,-3,-9,-67,46,-91,72,58,-5,9,-39,-42,67,100,-53,37,-92,88,-65,7,29,-76,-50,67,-100,-87,-24,75,83,0,-52,-1,-15,51,8,1,-54,29,73,-89,-88,52,30,28,36,75,-44,-25,38,58,6,47,34,-67,32,-87,-25,43,53,96,66,34,25,-44,-35,46,0,-51,-65,-41,65,36,-99,19,45,81,-94,-65,25,38,37,-46,74,-87,-58,75,30,-43,26,2,74,-44,26,13,44,62,4,-48,-96,33,-49,42,-46,19,89,99,-39,-92,-84,65,0,-10,78,-61,85,15,17,-24,37,-56,43,45,-36,78,43,-95,-22,98,94,46,85,57,16,13,35,30,97,-25,-50,93,-62,-22,-29,85,-49,6,-40,-29,-94,-17,100,-94,78,-68,-46,-92,-41,17,-54,16,37,-76,97,58,-99,4,-9,-19,34,11,37,41,-6,88,-71,-16,-79,-78,99,21,35,76,-48,44,-43,36,-67,95,24,71,-3,-10,36,-26,-85,40,42,-9,-48,-49,-60,79,-16,94,36,-84,91,-50,34,26,-82,83,35,53,-6,77}
{56,-99,68,-96,-5,-46,-50,-77,-81,97,4,-35,92,-100,-7,46,76,46,21,67,-34,-38,55,64,69,71,56,68,39,-48,-87,29,-91,49,51,-97,91,-99,89,-4,20,71,34,-16,-57,-48,85,-81,71,-99,34,52,-84,7,21,-92,-54,-82,12,36,11,-71,-33,74,85,34,17,72,-15,-64,98,76,-91,-22,57,-80,-18,68,-100,-65,-89,-56,-5,65,-32,86,57,100,-13,87,46,12,-63,-16,-92,23,-99,-44,98,-18,61,-42,54,-30,-19,70,-72,10,5,-82,70,-10,-12,13,49,-61,-73,98,8,61,9,-59,-74,39,66,-67,-37,70,-5,12,34,20,-95,80,64,-71,72,89,-23,86,-23,25,74,-26,-14,-35,45,82,-47,68,67,57,94,-57,-79,95,-16,40,61,-18,-64,-96,29,58,64,19,-41,-1,-49,36,-75,8,48,-90,5,91,32,15,-80,62,25,64,-12,69,-20,-61,51,49,-34,89,-94,-59,-98,-97,65,-23,36,-66,33,30,51,-8,62,-43,10,-98,-34,21,82,-90,-63,64,75,-42,-51,-73,-67,-89,-23,73,-48,-90,-86,34,-8,-54,53,42,-74,-87,28,-74,40,-11,62,-36,12,-21,-76,-56,-33,-30,-37,-14,-45,41,71,87,40,-30,-43,-97,-9,-42,-21,-4,-7,0,50,-82,-57,-86,-17,-49,61,-75,60,96,-79,77,12,1,89,-39,6,-13,69,82,-20,59,-34,-3,34,-51,-80,-64,-92,2,5,67,-89,-46,-50,-49,-85,84,8,-61,-31,95,-64,34,81,10,-40,35,-2,80,37,50,22,91,-33,-60,84,54,-89,72,100,-93,-99,42,5,97,61,-66,-32,19,61,29,56,58,44,-2,-97,36,-3,-94,29,-12,31,69,-69,90,-61,-36,-85,-96,50,44,65,-59,54,19,-36,65,95,-44,-8,27,59,-82,-43,-23,-62,76,27,6,-35,91,31,35,-59,35,-60,10,-73,36,14,94,-23,-42,9,45,94,52,-99,-25,70,33,-5,50,-61,-19,-46,-78,-23,28,74,-24,70,-22,-88,98,3,82,-50,76,79,-25,-64,29,-29,-27,63,66,-65,-45,67,14,-42,93,25,63,12,8,92,80,-2,28,98,47,-99,-26,-62,1,73,91,-59,63,50,-51,-41,93,93,-24,-50,1,45,-33,-48,-42,81,11,-90,74,94,28,-47,31,-23,61,-20,-70,28,77,-31,-31,-51,55,41,25,62,15,-23,53,-39,-90,-73,85,-47,56,55,-48,-40,-98,57,-18,88,-24,79,96,-60,-30,89,-30,38,-91,-59,-81,-48,94,38,79,7,-83,43,-76,1,-53,-51,-70,28,71,84,-76,17,59,78,75,14,14,35,-89,-70,-36,-22,1,32,6,3,13,-57,-84,-53,27,3,-73,-30,78,-76,-81,-96,-73,91,-40,21}
{84,11,17,96,46,95,1,21,86,56,32,22,86,35,20,98,76,50,18,62,70,51,24,38,51,84,44,97,88,94,60,64,27,46,44,79,8,80,57,69,56,20,53,57,55,81,3,44,12,21,65,66,43,68,72,38,5,39,36,24,91,50,52,52,8,72,36,35,71,40,56,4,20,83,95,62,67,53,28,32,5,4,27,26,53,20,76,20,53,77,16,59,99,61,90,48,80,96,83,97,85,73,31,23,65,1,92,97,65,98,89,25,59,38,56,27,24,95,56,85,44,63,41,47,9,38,71,80,26,98,84,78,31,86,4,92,75,19,86,52,80,23,15,2,45,67,31,57,72,61,87,85,57,2,38,43,57,37,28,31,14,30,69,45,27,61,94,31,75,98,30,38,13,99,61,74,27,9,40,32,69,89,66,60,7,25,65,74,64,21,91,24,85,43,39,9,47,47,52,22,100,70,9,21,49,79,23,24,3,36,89,64,33,8,14,19,71,14,99,31,9,47,60,23,67,36,37,47,81,75,21,49,84,25,96,70,86,47,83,78,88,90,33,34,43,84,93,33,46,41,51,81,23,67,11,60,9,28,42,51,6,96,24,53,82,12,22,34,93,87,68,92,7,20,32,7,78,22,60,63,30,40,100,5,12,70,23,95,44,62,91,90,95,47,67,24,11,71,82,41,95,79,48,72,20,42,32,60,82,90,34,4,25,96,59,61,97,37,36,92,72,26,18,12,34,45,81,6,17,90,54,30,83,25,49,16,73,28,75,41,52,78,96,60,68,68,63,77,94,25,23,23,78,4,28,62,86,98,77,38,66,83,56,93,42,92,95,79,71,21,26,50,54,74,9,41,88,31,80,60,100,78,98,100,60,54,87,24,58,45,35,7,68,2,18,63,15,83,72,67,74,64,33,49,65,62,69,88,82,42,53,38,21,60,43,27,99,99,46,95,7,26,8,45,11,59,84,4,82,38,22,51,26,72,11,95,31,58,75,20,25,37,55,22,17,14,65,80,38,64,82,78,68,68,64,27,37,93,33,45,71,50,59,14,100,12,40,94,62,55,24,7,95,47,89,95,66,46,68,11,98,14,67,5,7,2,39,15,29,40,38,28,90,15,6,12,73,18,8,85,47,7,41,68,35,45,88,27,70,34,63,79,13,35,64,75,92,4,28,18,29,46,33,84,87,3,66,68,28,30,59,49,89,28,16,96,25,7,62,12,69,65,93,3,91,35,45}
Returns: 4.275237849905995E8
{-4,83,19,98,-10,37,56,36,82,-1,-89,-1,-61,63,88,-100,-99,13,42,-20,2,27,-31,-100,51,85,-13,70,-9,71,17,-44,-93,-77,93,-74,-13,-91,-12,-91,76,52,-60,75,28,-57,13,-12,-3,25,-81,-99,-30,-31,-62,37,42,-84,22,16,51,25,24,-80,42,5,50,35,-58,-83,4,17,81,61,42,97,-54,79,-38,98,5,81,15,67,-2,-3,-86,-1,-37,-51,-67,33,38,-42,58,-84,-51,-1,87,-44,-81,58,84,-20,-53,33,98,-25,-88,-96,3,85,-46,77,43,-68,76,94,-9,-90,-15,-56,7,-81,35,-49,-6,5,34,-31,45,-99,-31,-58,-94,-20,-14,80,-16,-68,35,-59,-35,-21,-30,88,-63,-96,-95,48,61,-25,37,62,51,65,-10,61,-79,-51,-51,-53,70,-81,95,-14,-37,17,82,9,-58,74,-22,-14,64,52,-97,-39,-65,-77,91,58,-43,-33,-47,69,-4,42,20,-60,3,-92,64,-38,-74,97,58,38,-73,22,67,-36,4,2,98,-35,-18,-61,16,-25,-84,86,-28,-7,46,-34,69,7,-58,53,-41,-92,-23,-7,-35,-86,-47,13,50,62,67,19,-61,-86,61,87,7,21,1,20,-93,-65,-19,-67,-84,98,64,-57,60,-95,54,14,-41,70,-94,56,11,-96,75,50,-3,73,-89,-64,-71,-10,-13,-18,6,64,-29,37,100,-71,93,-24,52,-49,12,-3,42,-55,-93,-95,-62,90,-11,-55,-56,8,58,-57,-72,-82,-32,67,22,77,13,-10,-40,-34,-54,-29,67,-72,-48,75,60,79,97,43,-90,75,92,-41,86,8,4,5,-57,-97,28,-12,-14,-87,90,-22,-80,51,-58,84,18,6,62,-38,-82,39,-57,71,9,4,-83,-57,-65,72,49,-95,6,-85,23,20,-72,-51,19,91,87,-82,84,76,74,72,33,-29,-9,-37,58,90,-72,2,-92,67,46,-40,-90,98,6,61,-23,59,-76,69,-46,14,-76,-91,-7,81,39,79,-15,12,-65,-82,-90,12,-20,69,65,-13,-82,-50,-10,-47,-73,48,39,78,-76,74,-27,67,-66,69,-47,-99,58,-67,92,58,100,3,-29,-48,91,-21,-57,-12,46,-6,27,-78,90,3,-91,-7,16,44,-70,-84,-50,66,34,100,99,71,73,-15,22,-24,-50,3,-8,-1,-78,77,22,94,66,-82,-61,-100,-19,-80,-100,-77,-96,49,-89,57,76,38,-9,-18,-100,92,-4,65,-34,-96,-21,83,57,31,-33,-46,44,-49,-74,39,52,-73,73,-67,-15,-66,5,19,-86,62,-59,37,61,48,53,67,-43,35,-71,-10,44,32,-86,-90,-41,92,-88,72,-72,-67,-12,69,30,-40,-53,-31,-100,70,27,91,14,-18,98,-67,63,-29,-72,32,-26,-78,-32,-92,71,-74,51,-93,-71,-68,-79,48,73,33,96,-94,65,-46,26,9,13,62,-4,38,96,-48,25,-98,-10,-68,-58,71,-90,-60,52,21,24,27,95,-65,67,96,100,-86,43,26,9,-20,-29,54,64,26,-84,-7,26,-91,9,-68,59,-33,71,99,-54,-83,-42,-95,-60,-56,-2,7,-49,-46,64,-20,33,-90,91,15,-17,-86,-8,78,76,57,41,73,51,4,-61,-17,-90,-79,99,60,-36,-29,39,-33,14,27,-49,-35,76,-60,11,-60,96,26,22,39,33,67,-86,35,-32,-47,28,57,0,23,49,-8,8,91,-84,69,82,49,-48,-59,-79,-79,-85,82,84,71,60,44,15,-25,-95,-66,52,-80,49,97,10,-25,-40,-79,37,72,-46,58,85,-58,-36,-74,-6,7,-28,-95,85,2,47,-87,1,-58,-71,78,87,39,47,49,-15,-79,46,10,-40,32,43,-10,32,-88,69,-82,11,-63,65,-86,-1,5,95,42,44,41,-72,-59,-19,56,68,-1,32,-61,-1,0,43,-31,-31,-34,43,-17,-74,-97,-99,63,-22,30,90,44,68,-11,40,16,-68,-70,61,-77,-75,-28,48,-62,63,45,-85,-22,29,86,-24,-46,20,-84,-30,-15,91,44,-13,-47,83,96,-14,94,-62,8,1,-5,66,90,-30,19,-14,-16,-86,-80,98,84,-96,19,37,-52,-11,-52,-95,-55,22,79,69,13,84,-78,81,51,-78,-12,100,24,50,92,38,-33,75,7,98,28,33,-36,64,21,84,-83,-84,85,-90,44,65,79,-36,45,-74,-53,-74,75,97,88,-89,-42,24,16,33,-88,-1,-11,-100,-59,-11,-25,-100,-61,-80,56,-84,6,-24,4,14,42,-62,-42,32,91,-9,-100,-84,-23,74,-65,46,75,69,81,-82,39,11,44,-4,-30,83,-86,20,-50,-97,-18,-42,31,-1,45,86,-6,91,-41,-51,2,32,60,-92,15,5,-7,35,0,-25,62,89,-11,-15,30,-20,-86,98,2,-97,-89,-18,-52,20,-74,-33,32,-55,-11,-17,-49,5,-65,85,26,35,-10,18,-92,-7,1,3,42,90,32,86,46,44,81,-95,-39,-73,-24,-26,58,-21,55,17,-13,9,-6,-6,-78,-20,66,-70,-69,-5,-26,-93,5,78,8,-76,75,19,54,-25,36,-100,-69,32,29,43,12,-99,27,43,90,64,94,-85,-60,94,44,-80,79,28,18,-20,14,-76,-32,-24,-82,62,-27,-30,69,-88,76,-13,14,11,-43,-70,-72,1,89,63,-56,63,-95,-9,68,-36,-13,-35,-82,87,58,60,76,7,-34,42,-44,-17,-52,-67,-12,95,-76,-89,-81,-13,58,4,52,-18,-55,96,-45,-73,7,-29,-90,-29,91,19,-17,99,28,9,55,66,39,86,84,38,88,-71,30,62,7,-45,-86,-32,-97,72,-44,-59,-21,14,-78,94,-73,-36,-63,-12,-21,77,-29,15,36,-6,19,-82,-78,13,53,-49,100,11,-15,-60,64,24,1,-70,78,39,-65,-84,-99,-26,-19,-65,99,78,41,68,33,2,-26,76,89,99,-81,78,-70,-94,-80,65,96,-94,-69,-62,41,44,46,-29,-31,66,-70,99,60,-76,-56,32,70,82,75,-38,97,-50,23,-14,-79,-90,-65,-21,83,-29,-1,24,24,-93,-1,95,30,17,-53,-87,27,-27,-90,93,-7,-30,81,85,-37,-72,48,97,58,42,87,-53,67,-49,80,72,90,-85,73,-76,-39,19,-17,76,63,-83,53,-46,51,-98,94,23,37,-14,-51,77,-8,-77,-41,-9,57,95,-87,-67,-17,-46,48,-51,-26,-5,46,97,46,-46,8,25,-44,44,36,-24,-53,17,30,99,-25,77,83,99,17,-55,89,-67,-44,-12,-71,19,23,3,-79,-66,-40,95,62,-49,65,-30,44,55,0,19,12,92,-77,60,-78,19,-48,92,-81,5,-43,-92,-66,100,59,99,-19,-42,61,-96,-78,-82,-4,69,50,70,86,-28,68,-3,-100,40,-92,54,-62,-36,8,33,17,-11,-14,-64,55,90,7,-74,74,-31,-65,14,-34,28,9,39,-62,-71,-57,-58,-50,49,80,1,-25,-24,91,-96,1,-97,-19,53,-61,47,-68,81,-17,93,64,-65,-65,37,-81,37,-78,-18,-70,18,-21,86,-71,-41,6,75,-33,-24,-9,-75,25,83,-82,5,73,7,56,-79,13,95,9,69,-2,1,70,7,21,-12,9,-53,-69,-54,-72,25,-38,57,91,-57,18,94,63,7,4,-28,94,99,-24,58,-20,-31,20,-39,3,-16,-15,78,-88,76,32,-75,18,57,100,-81,-59,59,-81,-1,-27,74,87,-68,-11,17,-82,-93,-25,-72,25,53,-45,2,69,-85,-98,-61,61,-33,76,13,43,27,-72,31,-32,-82,100,-97,9,-72,37,-58,5,74,50,-75,71,30,-43,9,18,41,59,-99,27,2,19,-61,-29,-57,-34,79,90,70,35,54,-30,-53,42,-76,31,-51,14,88,52,-48,44,28,55,-15,-75,-70,96,28,59,86,-1,95,5,-86,54,23,50,4,51,-41,-85,-91,-61,17,42,16,79,-29,-25,-56,62,-51,-15,-54,69,83,59,-88,70,-11,-81,15,61,-37,59,-19,-17,91,-27,14,-11,-94,59,-42,58,-20,-60,-53,-96,0,-34,-55,-8,-59,45,79,89,94,72,18,-2,-75,-49,-39,40,-14,-9,-29,-47,65,-71,-98,-51,59,-64,-25,65,16,-78,-56,-78,80,90,61,-63,98,-59,97,90,-92,-77,0,10,-24,23,14,-47,-83,-67,-7,-76,-74,74,-41,3,-26,-75,23,-99,-39,-49,-70,68,81,44,-6,-5,-71,-15,-100,-85,37,-44,17,-12,-25,10}
{-49,83,-94,98,56,-93,-11,-6,-56,-53,-47,87,-9,18,-98,42,12,-94,-57,-91,25,-27,-20,-31,16,-1,-36,100,-16,87,66,-97,-56,-85,-44,-9,-66,-97,17,25,-89,43,15,-20,-27,-77,1,-1,19,-9,-34,-15,-96,-37,-20,-88,45,-68,-48,-82,-20,-83,-47,-37,-74,-78,46,75,92,96,3,17,85,19,-72,-52,98,-14,-13,-10,88,71,-52,72,-2,-51,39,53,-34,90,94,-92,-94,-29,22,-78,0,-6,92,76,43,85,-14,-45,-13,-89,86,31,14,87,87,-21,-95,-56,-21,13,80,73,95,87,87,94,14,51,-10,95,89,45,-97,-81,-32,-53,-19,-20,-73,24,7,-39,36,-54,18,-79,9,4,-9,-22,83,75,-25,-53,10,66,38,-60,29,4,-58,19,14,27,-75,-75,-31,82,41,-57,29,-75,34,-41,60,-93,37,-49,-17,-92,38,53,-99,-10,58,24,-81,-64,31,-36,-57,-44,-34,-66,-36,-46,61,53,-76,-30,18,-32,-94,48,-75,44,0,-98,62,3,41,-79,100,-20,46,36,-10,5,27,-70,-47,67,-95,-76,8,-80,-80,-95,29,-6,-31,-89,-59,-72,13,80,36,-58,-63,15,26,-75,-52,85,27,-47,77,-24,-81,-95,52,14,-80,-21,-89,-98,72,18,33,8,-65,-24,-47,-20,88,63,-92,83,-8,71,-80,-3,-63,87,-4,-62,-43,64,-47,45,-79,-28,-74,-29,76,-14,-41,58,-34,-38,39,-57,-18,91,-86,31,56,-86,-14,5,-84,78,-54,93,63,-72,30,43,50,51,-83,-17,95,43,-56,-46,42,98,48,-19,-80,-48,-87,100,35,78,-12,-40,79,-78,39,48,-95,37,-16,-84,-47,-34,-64,-34,76,-85,42,-75,-97,-35,-44,72,17,67,37,-14,33,82,-11,-20,29,-38,-23,23,-1,57,85,87,-51,99,56,-31,-68,43,-23,-90,56,-26,13,-68,-30,59,17,31,-71,61,-55,60,-18,18,-97,55,41,-68,-34,-12,85,-86,39,-66,-87,-20,-36,19,24,29,-26,-11,-54,-29,-22,-16,-75,29,82,31,38,-16,-95,54,-18,-78,21,66,-7,76,-15,-49,98,51,37,64,-40,-87,75,-82,-67,-27,-55,-38,-22,33,33,9,94,-70,-45,-94,-24,46,-33,-59,-11,33,83,-16,20,-41,-69,-4,13,-26,1,-31,24,40,-65,84,81,-92,-15,14,42,79,-37,-26,43,-15,88,-82,61,-17,-49,-88,-44,89,-79,15,81,68,-72,-94,-9,-15,71,-12,-64,58,-36,15,80,100,3,-19,-69,74,36,19,-21,42,22,-3,35,-74,-48,-79,-59,7,20,48,23,81,-56,-73,-9,62,67,-34,5,-85,-29,71,73,-53,-94,36,25,-54,39,46,-16,94,91,34,73,-73,92,87,66,8,-81,-34,92,7,61,-27,45,3,20,-24,33,-43,-60,93,-92,-64,37,11,27,-64,-26,-51,-84,43,-37,25,27,-77,-78,-60,-85,-5,80,1,96,-28,-15,92,-28,14,-63,85,-3,-82,56,77,-23,45,51,-15,-46,8,-4,-94,-49,-90,43,61,-70,-39,81,-76,3,-21,-9,-64,20,45,15,-25,-49,-50,29,-30,-25,-26,-19,100,88,-13,59,-90,-27,-92,2,-85,-24,-95,-88,-28,-52,66,-11,-58,69,-43,-71,-39,86,-75,61,-79,-61,4,-22,-13,-84,31,-12,90,3,-79,7,93,89,73,77,-24,32,-63,36,21,-29,-38,12,-44,42,36,-32,-23,66,76,-99,43,-62,42,62,89,71,75,-66,54,19,0,-88,-83,83,-16,-22,-72,13,-21,99,41,76,45,57,33,44,13,41,-46,46,-99,-89,-72,-84,-3,-74,-10,61,-37,91,-53,-1,-30,-51,36,98,-18,84,-60,4,84,10,35,14,-2,29,48,48,-1,45,-68,38,-10,17,-42,-25,-93,6,-12,10,76,21,1,50,27,-21,-6,80,-81,-24,42,79,47,-51,9,-27,69,-67,31,-20,98,4,78,42,-14,-83,60,-29,6,-2,28,-84,6,-89,92,58,-87,-59,-94,63,71,87,-89,-60,-79,60,75,-32,-16,30,-38,83,-70,80,-9,-41,-67,-50,-79,-21,57,-20,18,78,-93,-56,-32,72,77,84,-6,-93,89,-13,-87,20,-17,1,-16,99,-77,33,28,-86,18,27,56,-43,48,6,54,20,-51,-10,1,-35,90,-68,-75,-74,62,46,-43,88,16,-73,-19,16,-59,-60,-76,41,-61,-29,-90,12,-2,-93,49,79,-40,93,-100,21,-70,39,-28,-47,66,-7,-76,-67,-28,0,12,-70,-61,29,-42,91,7,4,-39,8,25,84,-55,-9,-90,46,-9,-96,-7,-46,-3,39,-97,-9,-59,90,42,79,-31,6,-34,28,-37,-98,100,-75,-21,-86,6,-27,-70,-60,40,-21,-89,-91,-80,41,59,71,94,-65,-12,-70,-43,82,54,-77,71,-48,-70,44,10,-40,-60,-54,50,52,-92,-43,-58,28,-21,-37,76,34,88,67,97,28,-72,25,22,98,81,67,-36,87,-42,-21,40,19,18,-37,79,61,-25,70,61,-14,27,35,12,-50,-39,84,80,51,-55,66,34,-19,-8,45,-22,-15,-39,-96,12,-47,23,83,-78,3,-97,-20,9,-41,29,-15,-15,42,-34,-98,70,-33,77,-60,-78,-42,-100,-84,-63,81,4,97,89,39,-46,9,100,64,3,-63,70,77,96,-64,3,36,78,-8,-45,-95,97,97,-59,48,-35,5,-77,-36,-89,-7,-58,-82,-9,-48,-64,65,34,-86,70,-41,-42,-54,-43,36,-36,90,-24,58,38,-78,-47,-69,-39,34,-13,50,49,32,15,-37,-74,41,93,-42,5,-55,-51,-51,87,51,6,-84,21,89,-20,-68,12,-62,-41,64,-53,-82,8,78,-35,-53,-81,-80,-77,-42,-35,-16,-15,31,-27,44,-73,-10,28,22,17,-93,65,-36,13,48,-99,-49,0,-97,-46,96,-4,81,62,-98,-92,89,64,-59,2,55,54,96,-37,70,-24,-37,-74,43,29,77,-83,56,-33,-43,-90,-19,-58,-65,-80,65,31,-14,4,-52,73,0,-27,-34,74,21,7,-76,-17,-37,-26,-48,37,53,-42,12,-99,33,70,17,-59,-100,-34,-48,-68,-32,20,-65,83,-9,-46,40,-25,94,-40,43,95,51,-88,-44,56,46,15,-28,8,61,-74,-79,68,54,16,-21,-93,-83,75,-2,-98,2,72,-100,27,77,-30,40,86,-22,-24,75,-18,96,-65,21,-6,56,71,-27,84,52,82,-74,55,-89,61,-32,-82,75,-13,60,-69,-68,-95,93,55,52,-54,38,-35,-93,-33,-88,-39,42,-20,23,7,57,55,61,79,-26,81,-27,-17,3,38,67,49,56,-18,-42,40,-70,-27,-73,-65,-48,27,16,-77,37,-93,-62,-59,96,-71,-98,-86,19,14,-46,-45,64,92,-88,91,14,-80,83,-64,77,-17,14,-61,19,-24,81,-31,78,-60,-17,-23,-86,33,-36,83,-70,-13,83,-85,27,-25,-3,-2,-97,-57,62,-75,40,80,69,-31,65,-78,-73,23,-99,-60,-75,-17,74,-29,-32,59,20,-71,-25,11,84,70,-29,12,-78,42,10,45,-64,-63,18,-30,-54,0,89,-77,80,-38,-98,16,40,-63,10,-10,70,-1,55,76,-40,68,-79,78,0,51,-88,74,20,-52,0,-44,21,99,-77,-68,-14,36,40,55,-21,-40,22,66,-15,60,-14,87,59,-31,69,17,-97,-9,-38,79,-63,53,-17,-36,51,50,-85,-49,46,80,-28,72,69,27,-80,41,-49,-13,71,94,-48,42,0,4,-65,32,-86,-91,76,-52,-35,15,-98,-15,47,-92,-30,-19,51,-23,-16,-82,-22,-14,69,-46,-52,-39,78,94,15,-16,50,-62,-88,-87,-19,-85,-32,31,96,-15,43,-89,58,-55,52,-86,12,-55,-93,-62,6,42,-15,45,2,59,-69,-52,-40,-71,-77,35,-40,44,-11,73,-5,-43,-91,-38,-26,74,-51,75,-37,52,-18,44,-13,71,98,-25,38,-81,-68,71,31,-6,83,66,-9,8,-55,50,66,66,28,-67,83,-14,12,100,-54,-96,-73,13,76,-56,57,-71,44,4,100,-13,-29,-28,-38,72,-64,44,97,56,78,28,-68,88,27,-47,-61,91,87,52,79,11,-32,-82,-2,-1,93,-81,-19,-50,64,-38,66,14,-77,-80,-12,26,34,-19,58,-76,11,37,-83,53,13,-34,-18,83,76,0,35,43,54,-4,-94,82,-45,-72,48,50,-81,28,79,56,-54,-4,-97,-86,-65,-24}
{20,-19,90,48,40,-57,-24,-1,41,44,75,-90,-39,-18,69,-9,-84,-46,90,18,83,8,-21,-98,60,-42,-15,-6,46,5,-30,-38,18,-72,-9,-89,-84,-52,-15,-45,-41,9,52,-31,-20,-42,-31,-81,54,66,-96,19,53,-44,56,-100,-80,-68,89,-23,-89,-18,44,47,-60,4,97,29,72,-11,0,-25,-80,62,-47,3,-1,6,94,-7,0,-15,-56,97,-94,-44,12,0,-27,-66,72,30,-86,-69,-39,-33,48,-36,60,-78,8,-79,-100,-100,81,-63,-13,58,94,75,-98,-97,34,17,79,-67,84,16,15,-58,-13,93,20,66,1,-24,-10,7,-61,-73,28,51,-65,-29,-35,6,47,77,-44,29,-54,79,-28,-33,31,67,-48,-21,59,-43,38,-22,93,-16,50,83,-86,-46,73,-44,-25,63,-82,77,-56,39,2,-29,14,-77,47,-59,-63,13,32,-100,-97,-48,85,-60,-56,-57,15,69,-60,-41,-76,64,-98,-44,98,-79,-57,-73,-61,-16,32,42,-80,100,-62,81,60,76,78,-91,57,64,96,-32,13,-79,-61,44,43,-69,-96,-79,-95,-64,85,-95,12,-14,-21,60,-43,47,-25,-93,-32,-2,-23,-92,96,-44,-3,41,7,-58,-74,-97,93,19,31,58,35,-57,-57,-48,65,-26,65,-10,-12,-77,-65,14,-74,46,60,23,2,99,-35,-22,91,-28,-15,-16,21,88,-16,-97,-59,-35,-54,-17,25,84,-99,-11,49,54,-9,-48,41,-42,-3,54,-47,-66,52,-72,19,31,-53,-26,-1,63,80,-74,56,100,-29,-19,-63,15,-54,-63,-81,-62,70,-50,81,-40,71,12,90,-27,-44,86,26,-41,23,61,-64,47,-40,45,31,46,-2,20,-26,63,-3,-12,-31,96,85,-72,-97,-56,-12,-86,26,-62,-70,60,78,-22,-73,57,-21,23,29,-46,19,94,64,4,-66,-3,-70,-3,91,36,-77,23,28,-6,-100,75,89,89,-93,-56,99,-98,34,80,-62,13,-85,-14,-76,-93,33,81,-46,-64,24,-16,-72,81,-25,20,-41,-18,-45,100,58,0,-28,77,23,61,89,-35,21,87,-63,42,8,-87,38,57,-88,-64,80,-54,-14,-64,39,-65,93,29,30,-5,16,-38,88,57,51,1,-82,-65,40,47,-33,94,36,-47,9,29,93,-78,-8,-42,65,93,-79,42,90,68,-72,-19,-4,72,-77,-72,68,-35,0,-73,-3,20,44,-75,62,-20,-48,8,-37,-55,-11,21,-15,-52,-26,70,-63,-9,94,30,-1,-1,-41,16,-13,-84,7,-66,35,-2,-2,-50,79,13,46,13,56,41,88,-17,-89,94,1,-70,31,78,47,-96,-50,88,41,-2,89,8,-73,-38,-76,-19,-6,92,-61,18,8,35,-82,-92,-41,-71,-65,2,-43,-39,35,69,16,82,-58,-63,-38,-3,55,-44,89,-51,99,-38,94,64,-38,67,43,-45,-50,-77,21,75,76,100,-41,87,-87,30,41,82,-54,90,-35,-53,65,-97,25,42,55,-4,73,-49,-84,-60,-41,48,-16,96,97,-90,71,-16,-12,-88,-4,-11,9,-47,-95,-66,-78,55,-25,75,-98,-72,93,-34,16,83,-16,8,12,-73,0,-95,-99,-82,92,87,73,-17,80,-65,-37,-46,4,-23,-36,73,-14,64,-59,-7,75,49,18,-10,39,35,-40,-46,-77,7,35,-94,63,29,54,13,-66,-17,100,97,-79,-95,96,35,-46,-92,-81,-68,86,54,-93,83,-14,-1,98,-59,43,-94,-55,-32,76,90,-47,-83,-4,64,37,100,95,-60,2,-19,-49,9,76,-73,-72,-38,11,88,-49,32,48,-85,45,-23,41,-28,44,69,-12,54,85,-49,88,-68,50,-31,-60,-64,-74,48,41,-71,21,-24,31,-85,-22,-4,64,-73,-55,57,23,63,43,55,18,33,93,-30,-41,-51,11,59,-56,65,62,-17,-46,65,35,-90,-99,9,22,45,64,-1,-75,-66,94,100,100,26,-25,-100,-68,-69,88,70,-82,-79,-55,35,-49,59,-62,13,-66,-54,53,67,14,85,-71,-85,74,97,53,-35,12,17,60,-21,18,18,37,91,-5,-15,56,-96,-56,67,75,32,-89,54,-31,-43,-36,77,-81,63,30,-52,21,82,-29,36,91,100,-12,87,60,-13,35,95,94,-97,41,-19,-9,-28,-46,-14,-20,-70,-70,-87,47,-95,19,-10,-65,69,57,39,-43,38,67,35,-18,-51,71,-69,-16,-34,9,-52,-21,-3,77,23,-14,-100,9,-39,-79,-10,48,45,-33,86,-34,-20,7,-9,-43,31,-5,19,17,14,-16,-60,-69,83,15,-6,-14,0,-59,43,10,-39,-31,-57,8,87,-46,-32,-71,10,37,-3,-46,-67,49,86,24,-37,-99,20,-27,-20,5,39,-52,49,-24,61,98,-52,-54,3,10,44,-30,67,-88,29,-52,19,-61,-9,45,100,-66,-90,-85,54,-42,-79,45,-93,18,12,43,70,-100,16,-68,-16,-87,-31,30,57,-80,28,30,77,2,38,56,27,60,-91,96,-38,48,-35,-20,-4,-92,-32,-70,-25,62,99,84,74,-84,-17,41,-15,47,-35,-89,-22,-87,-74,-36,6,0,10,31,-4,65,-6,77,60,44,21,-31,15,-51,-79,-11,-46,-20,20,43,-71,74,-38,53,-98,9,59,46,-40,4,18,-23,-52,32,-3,-1,93,-56,-3,-14,16,-32,-9,42,66,24,-16,13,69,3,90,-40,12,39,14,61,69,-91,-50,-71,95,7,-98,-76,-65,46,-32,76,-69,-29,61,-89,-100,85,-44,-77,57,-78,28,47,-56,-39,-63,44,-90,-28,-59,99,27,10,-95,61,97,-54,2,22,78,76,23,35,-85,27,37,49,-28,55,-15,85,5,-82,-84,-79,-31,-29,-56,-37,-9,71,36,-5,-97,-70,15,-59,84,-83,-80,13,-60,-44,49,28,28,-28,54,-17,80,-32,11,-25,35,55,91,46,96,-19,-68,-5,11,-34,66,73,26,99,83,-63,0,-7,43,-19,-19,95,34,-47,66,72,-70,10,-99,19,-50,-98,30,77,-2,42,-93,-44,99,15,-17,-29,-80,95,-3,58,-15,-17,96,-13,-4,7,33,79,28,77,-64,62,49,-87,42,36,83,-36,-64,16,-32,30,-84,-76,-1,-58,90,-22,-98,70,14,16,59,-64,49,59,-50,89,31,-54,-43,96,-10,77,69,-12,-19,56,71,34,-89,26,-50,-27,-68,65,-9,35,49,4,70,-100,37,49,-41,-11,-51,-23,-28,-100,5,-98,79,63,13,18,94,-82,66,-41,32,-16,-69,70,84,61,62,50,-89,33,-76,-10,28,82,11,-42,-48,-82,-81,30,36,3,-94,85,95,-47,66,-25,93,99,-41,-55,70,-25,37,46,-64,-57,-31,33,19,-50,-4,48,-27,55,-62,-29,66,0,-6,-22,72,-88,92,-26,-84,84,-27,-95,-39,14,-70,56,37,-16,37,-16,-20,28,-14,93,-21,-78,68,-47,-16,2,-5,94,88,-43,46,73,75,8,56,69,71,-20,62,-56,46,62,6,-39,-33,-16,63,71,-80,8,70,-77,97,99,36,100,-36,-97,-96,-86,15,-29,-37,-90,57,96,17,-5,-36,99,-51,-12,-94,27,-38,-16,-54,-22,-34,-62,78,55,7,-26,7,-17,-98,90,34,32,-42,60,-47,-63,77,-58,56,23,-53,73,-6,-6,-12,-91,-64,8,-28,-22,35,82,-27,-1,19,58,76,41,8,35,39,-16,-25,-94,85,95,61,-27,33,36,-16,-61,59,-68,-95,-62,-52,33,26,-6,99,58,43,51,-13,26,33,-96,-47,-94,48,-95,100,0,-81,91,-32,77,-47,-30,-73,84,-60,9,-69,-18,10,-11,-40,53,85,86,43,-24,-48,66,-63,-5,63,27,71,33,-37,-62,-12,57,95,43,24,-41,-50,5,75,61,-40,-24,-99,-77,39,-92,-96,12,7,-26,-62,-49,-7,-38,-19,-38,87,-17,26,100,-39,-91,72,-28,15,16,17,47,-28,-8,40,-61,21,-26,92,-87,60,-67,49,-83,89,65,-3,-53,-37,-88,-40,2,-52,100,37,-3,-41,21,42,-89,-76,12,-72,96,89,-7,-87,43,99,-9,94,-16,36,-5,-62,16,93,52,3,2,5,-44,97,-10,32,-48,54,67,-33,-53,33,84,88,-25,84,68,-80,-27,38,60,72,-21,-98,-93,37,-15,-63,-86,-28,-56,61,3,31,-16,-54,41,-3,-88,-88,-11,-70,-72,-17,88,-67,49,-87,-64,87,6,-15,99,77,23,-100,-89,100,76,13,-46,32}
{-58,-12,-81,-11,-35,3,-11,-42,-72,-52,-71,6,-88,53,-90,49,70,-14,-67,-99,-73,-17,3,-90,-55,88,45,-61,90,-20,31,-53,-40,-35,78,-4,34,-52,-76,-89,-34,49,-74,-92,-50,82,-25,18,-78,65,63,-77,51,-8,-93,90,-25,-33,-7,-87,-81,-12,66,35,2,26,92,-95,17,-47,-22,17,95,-37,-71,91,42,-89,34,-85,-62,40,43,-43,-88,31,48,-49,59,75,-53,30,-7,60,-68,-33,-11,4,39,-67,17,31,-45,-72,27,62,96,-21,26,-56,-80,52,-55,92,-84,100,88,-44,21,10,21,-33,-87,9,-4,80,22,-63,30,-67,91,-70,41,36,23,-27,-97,-56,-74,65,-73,-41,-57,-39,-31,-86,-96,36,40,87,95,-38,-21,50,87,-8,42,37,72,83,-46,87,-11,-94,88,-80,39,-20,-65,96,60,35,-51,-23,-66,48,-18,-14,-97,-7,32,82,-35,-59,7,65,58,-91,86,-89,33,-53,79,76,-23,4,74,31,-58,-37,85,-6,-89,-40,-83,-29,-55,77,-98,88,45,-65,81,64,-28,22,44,18,89,84,-3,15,-5,1,36,-5,-25,-78,16,65,-15,47,11,72,-37,-67,-25,37,-4,-86,50,77,96,17,-37,3,-49,-25,62,-33,20,97,78,-23,-43,6,54,18,11,-8,66,69,16,50,52,-80,-92,-49,-74,2,70,-76,37,-97,-87,73,72,-63,-51,74,75,53,42,96,32,-11,50,38,74,42,96,94,-14,90,18,-88,63,-50,39,55,29,92,-38,6,-72,87,-54,-24,-75,51,-21,-53,3,-17,-92,-40,-18,91,6,-55,-71,-16,-47,39,88,82,89,-21,-95,98,86,-89,40,44,-24,93,36,28,-11,30,-79,2,33,86,-15,-38,2,-93,-56,-91,86,77,-27,-74,1,-13,7,53,79,-76,-13,-17,-88,56,-93,72,70,87,-32,-13,-13,21,-57,100,-59,-6,-59,79,52,-43,-64,48,47,41,-53,-89,-26,-75,-62,69,76,-63,45,-81,55,-30,-82,82,57,57,-67,-97,87,-85,16,-72,82,2,-15,-66,99,43,-40,-71,-34,-75,-87,-11,8,-13,-84,-98,-65,-52,-16,-28,-90,27,89,-68,47,80,91,59,-59,7,17,28,-64,-90,88,-68,-93,-31,8,79,-87,-32,25,-91,-39,27,-53,-59,72,-93,-31,61,-17,70,9,-48,-53,-69,-55,9,62,-82,26,17,-94,-96,-12,3,41,27,-59,69,73,71,-48,70,-1,45,-11,-68,87,-79,-43,-76,-31,50,-62,-97,12,29,2,-58,25,48,-63,-26,-32,-99,-41,-7,-35,53,3,-96,-88,-36,-38,-89,20,63,-16,-13,58,24,87,-75,100,-83,-53,-5,33,26,66,-88,-81,67,-87,59,-19,-37,17,96,25,-59,-10,66,10,34,35,-38,-67,43,-60,36,69,13,-82,-92,-68,-49,-88,-50,-11,53,-9,99,57,73,90,-7,54,-56,-13,-66,53,4,72,-5,-76,-23,48,-65,-13,63,63,-76,1,-72,-81,-91,-5,-51,-37,-85,-52,7,83,-69,-81,-17,-66,-14,-53,0,12,97,40,-18,57,37,-85,-71,-5,72,-51,-58,-65,-32,-38,-21,1,-89,69,62,-30,29,7,100,-56,62,-36,-15,56,-89,-66,-60,-80,-86,47,-92,-85,26,-84,25,66,-63,-69,-87,-50,-44,-29,-72,-91,56,-64,80,93,33,93,46,-21,-17,80,37,52,-66,-84,35,35,100,-27,16,-55,-72,-40,20,-33,70,73,-55,-8,-2,97,-82,60,96,-31,-31,-28,-60,7,-94,-57,100,86,14,26,-14,-25,72,36,26,-27,-100,-7,-70,45,-46,-99,70,63,-80,-32,29,37,-48,27,-93,-32,59,-23,-55,-72,-18,-59,47,88,-93,-65,94,-15,53,75,63,-82,-68,-80,-23,61,73,-11,-49,-76,52,-9,-38,-42,27,81,50,57,77,93,-9,-48,-47,80,65,81,74,3,-44,74,-40,-63,-41,-83,-83,-74,-39,-39,-9,-55,-65,39,-37,7,89,-22,-94,-25,-31,19,33,73,-20,94,77,-35,15,2,-65,-29,-32,-70,-48,56,72,80,7,-88,-37,-17,-86,7,94,24,10,80,-72,98,-43,-15,55,92,-40,24,43,-69,21,55,56,36,-78,8,-98,-32,23,-30,54,-70,59,-95,-58,-79,-97,-96,46,67,52,-78,-66,-10,28,-4,-44,8,96,58,50,-97,-34,59,-45,-37,80,67,31,-73,-95,44,-15,79,50,-77,71,48,-8,89,-94,97,78,77,44,32,-25,38,-69,82,-79,-19,-25,62,-57,-13,70,-31,-89,88,-96,-59,26,23,-44,-68,-62,98,-72,88,-47,4,77,16,80,-51,80,-10,47,77,60,-46,47,39,-87,60,25,54,-41,96,78,58,-21,44,-89,52,-99,62,-30,37,-61,38,-79,19,94,-20,-23,85,-1,-46,-90,51,99,-18,-54,-90,-61,5,-30,23,62,-61,-54,-84,94,-71,42,-66,79,21,45,51,60,39,54,-5,-77,-80,-14,-96,1,-76,-64,-42,-6,79,-53,-47,28,-47,-85,11,7,15,-7,-87,-6,-42,-45,46,8,6,-77,18,-80,-98,52,-84,-93,-70,50,87,76,40,-79,-7,34,5,63,96,13,62,-83,-64,-3,-52,44,11,-88,23,7,99,49,-23,95,-98,16,76,-75,-38,-42,86,-94,-5,4,72,74,-64,61,-89,79,-19,6,-24,-53,22,17,-63,-19,-55,-7,55,-35,-49,40,22,77,-75,-61,69,15,34,4,-72,16,-38,12,-49,43,-8,-76,-73,92,-38,58,88,-73,-60,-88,50,86,-71,-32,-19,77,75,-26,-28,-10,-17,78,-76,53,-73,86,-7,-68,21,71,-46,-6,75,-2,1,95,-55,74,22,33,20,-95,-19,40,11,88,-62,-36,61,-62,67,-42,-85,-55,-59,87,-36,-100,-14,-72,87,51,-58,-53,-54,-74,-7,10,85,-23,-7,23,91,-33,54,-25,79,92,-70,-16,-11,92,73,-25,26,-22,46,42,59,0,12,67,-13,-80,40,-53,6,42,16,-21,-77,-76,-5,44,-15,40,76,-32,-81,41,-64,31,37,-99,45,16,48,-30,13,-59,50,33,53,-73,-58,1,-28,-100,-75,19,24,100,-7,-32,53,64,91,-97,37,-6,-76,-9,74,-9,-57,27,-54,-7,-32,-37,-60,-28,74,41,99,-22,-99,66,49,53,-61,-19,55,6,51,-25,-84,-32,-52,100,69,-80,42,-80,6,51,-78,48,-87,-26,92,-15,-32,6,-12,8,-79,0,-81,94,1,-83,-20,62,-79,-90,-20,-15,11,-97,-98,100,44,-41,-9,-91,0,49,23,51,-29,38,-37,42,55,-41,48,50,-93,-40,-10,68,62,59,68,12,-49,89,-73,28,31,65,2,-72,30,-37,-88,-40,40,81,-55,64,-4,-11,-67,-46,-6,19,34,65,-67,-65,-74,33,-96,-82,-54,55,-23,14,-96,-13,-12,-55,-51,30,-5,-23,77,82,-16,-47,99,-65,-62,-83,-19,49,90,-95,22,25,96,87,97,-8,25,97,-27,-4,-21,-57,25,-85,-90,21,-98,-8,-41,34,39,11,-26,95,-79,69,81,7,-19,96,80,-12,12,-74,88,81,-3,61,-23,84,54,-15,-26,-44,2,0,-13,99,-79,-85,-4,4,49,-10,98,-99,37,7,-41,3,21,99,-98,58,4,-20,30,-34,94,67,57,38,33,-84,-41,39,91,-30,-36,-95,76,35,90,95,-95,-2,93,-52,68,65,-72,-83,-27,-67,-73,-60,-81,60,-56,97,93,4,37,14,-70,94,99,20,86,-29,-4,-65,-15,-14,38,-3,61,20,-87,45,-98,10,-26,-8,-90,40,17,-34,-21,-3,91,-99,84,-65,-47,47,28,-68,-33,-42,-43,71,-60,-67,28,-66,0,87,-19,-20,-66,-67,3,-3,-17,-90,-20,-44,58,86,-70,-72,-67,-86,-90,-60,-64,81,8,-76,42,-24,-44,26,-98,46,-13,-66,-92,73,-50,-85,14,50,-31,-47,56,59,-83,-88,-74,38,-84,87,-19,43,10,-82,97,-55,-56,39,39,-49,-54,-100,37,10,-51,-40,-86,93,-73,3,0,-72,-47,8,74,35,18,71,-85,-33,7,52,57,94,90,44,62,-11,-68,-15,-91,44,8,-76,-8,-4,60,-30,98,65,51,39,94,53,-79,-24,-85,13,-46,7,3,93,-30,41,32,-55,61,64,-43,-42,-15,-82,76,93,76,9,6,98,-83,28,13,87,-1,-42,56,-36,-35,93,-78,-49,47,61,-25,22,-99,60,0,-26}
{60,76,73,14,33,50,13,72,68,8,79,91,66,89,1,90,47,61,84,58,83,48,57,79,42,8,51,12,97,97,5,13,88,54,53,90,37,51,25,70,83,81,80,34,5,29,18,97,79,68,72,37,2,29,75,97,42,72,76,18,33,26,68,70,71,6,85,16,45,33,19,27,67,47,3,93,63,88,15,75,10,64,40,90,14,35,78,21,62,47,35,73,68,34,9,59,27,63,55,60,29,9,57,41,21,99,37,27,52,14,95,22,36,41,41,24,82,88,91,57,100,13,49,48,26,23,14,81,80,72,36,65,11,58,15,85,58,30,82,68,88,83,57,97,88,52,3,13,87,26,8,9,28,55,23,80,30,23,5,15,76,99,28,35,60,30,53,53,75,44,51,8,43,15,27,67,62,29,89,98,37,21,78,29,71,78,58,76,65,21,72,86,23,49,27,55,8,81,10,28,54,84,92,29,14,100,5,85,67,18,79,15,99,21,11,1,18,54,88,52,68,6,44,49,53,26,19,27,93,17,26,74,77,95,37,43,29,66,44,87,11,46,67,49,53,15,13,49,60,92,36,86,39,40,76,2,21,1,93,37,31,82,86,54,81,98,75,68,71,61,53,18,95,5,98,9,74,26,40,63,44,31,6,6,79,59,59,23,11,17,88,42,9,57,90,73,23,4,51,19,24,63,19,78,50,70,21,33,39,25,86,56,64,60,91,98,51,93,68,30,86,13,57,92,3,91,50,50,80,42,92,33,53,18,65,100,84,32,67,12,57,77,86,45,63,64,11,36,72,17,15,70,46,77,59,60,20,53,9,3,74,20,48,14,1,97,21,48,63,68,54,47,29,2,52,60,72,93,70,46,19,19,49,30,23,19,80,16,71,14,88,75,12,4,76,5,18,81,29,40,15,24,20,21,24,70,30,66,72,55,48,87,73,4,62,73,96,73,72,12,64,48,53,73,64,24,30,83,5,76,67,1,55,29,73,8,90,18,84,27,70,38,5,59,77,9,32,1,32,26,21,96,17,64,16,37,56,10,89,80,94,42,5,32,42,37,74,95,81,90,100,82,17,53,24,38,27,59,88,41,51,63,39,56,11,57,49,31,97,48,1,30,47,59,77,14,54,86,41,35,19,2,25,54,40,4,67,34,82,34,96,57,15,48,83,83,53,88,36,67,19,59,65,41,80,7,85,29,94,90,80,27,69,36,19,75,97,83,65,77,2,69,76,89,47,22,95,61,69,90,36,41,55,12,21,89,13,80,26,12,15,49,38,19,51,58,44,48,67,90,24,21,12,74,39,10,72,30,71,79,29,94,87,4,34,48,77,42,49,20,42,23,76,91,81,31,67,54,65,24,59,77,65,81,90,89,52,17,78,71,51,78,83,85,18,57,100,47,57,3,67,78,98,49,21,31,4,11,60,1,88,5,43,18,86,93,75,46,29,41,11,77,41,9,35,82,100,67,64,100,76,84,54,98,83,24,77,63,56,11,94,59,16,83,12,1,44,93,12,78,41,85,91,8,49,25,37,36,14,10,73,24,38,100,49,26,38,85,89,75,99,92,61,83,33,86,65,54,67,32,8,32,60,85,49,83,57,98,5,68,48,38,8,91,57,92,26,50,4,38,69,79,83,46,13,69,10,65,21,81,94,1,23,23,19,95,97,30,11,58,64,16,16,75,4,84,8,72,85,56,5,65,73,85,55,54,16,18,41,96,45,40,31,100,81,5,5,3,14,59,41,55,18,18,3,34,100,82,1,95,83,15,43,44,10,82,86,62,35,30,95,13,15,33,41,14,10,68,67,64,67,67,99,55,42,11,38,59,10,63,78,53,83,91,29,98,64,53,28,80,35,15,8,63,4,25,50,25,2,62,65,65,48,60,29,48,3,68,87,93,17,43,37,100,28,80,31,71,51,17,90,16,19,42,82,84,90,92,89,43,100,42,24,9,41,8,61,93,1,45,73,73,99,24,80,97,43,69,56,30,96,87,49,20,80,1,24,15,87,86,52,70,16,47,29,27,13,15,23,80,41,62,24,45,76,84,89,78,57,19,47,82,35,61,74,71,81,95,99,23,10,36,81,78,61,89,38,18,27,27,88,22,25,8,42,12,77,80,20,56,55,76,11,29,48,37,83,70,66,55,18,59,55,62,80,20,13,83,21,7,88,52,41,69,70,70,96,96,42,81,32,35,56,10,71,43,4,47,23,75,89,86,43,42,11,21,47,65,3,91,23,34,5,14,69,49,54,86,49,36,44,27,31,61,6,70,43,60,48,26,75,48,70,30,19,59,94,78,41,53,28,96,56,65,81,29,77,29,85,24,94,1,31,6,45,92,11,72,37,9,97,96,84,37,75,58,35,1,5,2,60,85,87,2,9,28,32,4,36,12,91,87,35,40,3,69,25,94,79,9,83,60,75,80,11,75,25,86,4,14,18,79,61,23,45,50,92,79,25,63,46,44,43,42,72,45,8,55,64,64,5,87,84,99,59,41,17,10,29,20,71,83,83,65,87,33,21,73,97,83,44,100,29,59,99,72,30,43,63,50,49,72,61,84,93,23,63,48,64,54,33,16,51,35,69,50,37,36,100,66,86,28,83,54,45,45,68,57,100,20,98,73,34,38,26,34,13,73,38,59,48,63,10,79,78,71,16,56,43,96,70,82,10,65,58,7,37,29,10,79,8,58,37,76,36,23,39,41,25,73,3,39,50,41,60,74,96,24,25,52,91,27,86,57,42,65,52,15,98,95,50,47,15,5,83,85,63,52,68,11,38,12,95,97,22,64,45,69,62,33,61,5,46,28,54,58,48,8,77,56,61,24,25,55,35,72,50,49,58,62,13,14,69,42,48,47,83,34,44,3,83,54,97,44,22,40,50,54,69,96,66,4,18,59,51,60,80,43,6,27,75,71,32,68,39,97,100,1,57,56,33,75,68,89,63,59,65,32,52,16,41,88,91,35,61,94,18,83,29,25,42,91,79,73,90,50,7,51,15,77,24,42,95,64,18,43,38,16,62,8,6,35,31,61,99,46,52,89,7,43,29,16,76,66,65,65,33,31,15,84,41,43,98,35,49,66,28,2,56,6,80,39,9,77,2,1,83,14,11,11,38,7,9,91,68,76,10,85,92,37,68,87,87,76,37,67,3,64,22,38,42,13,25,25,28,50,2,10,67,65,39,97,33,72,28,29,72,35,47,90,2,34,37,84,24,51,68,29,44,18,14,43,71,7,29,78,32,3,78,45,29,77,54,46,14,66,47,49,4,52,61,50,58,36,80,81,17,58,44,81,35,83,85,85,50,65,62,31,60,52,17,80,33,9,63,35,22,80,22,84,42,61,13,65,86,45,2,41,76,35,23,75,53,48,96,82,33,19,66,67,2,22,7,93,3,47,51,54,58,18,26,68,47,78,92,20,46,5,24,83,34,36,72,7,41,4,18,15,51,17,16,84,17,26,29,76,9,82,2,75,53,80,92,59,10,87,83,47,56,94,88,9,51,17,1,98,93,36,90,55,71,28,10,77,69,57,68,74,82,14,38,42,65,66,88,80,23,43,71,29,40,28,84,48,41,48,13,93,58,40,4,19,85,54,73,45,87,14,56,47,58,71,88,84,92,2,7,88,77,7,59,14,6,2,2,35,28,57,84,90,72,60,12,50,15,76,100,24,59,51,34,53,42,67,78,55}
Returns: 3.5805049096776924E9
{89,81,26,69,-98,-58,34,-7,-10,-91,-89,-59,70,40,83,-75,21,14,-54,-3,-44,-74,-4,-29,-8,-18,28,100,42,4,-95,83,-76,49,-31,-50,83,52,-22,20,-83,-28,-45,-61,66,-23,70,70,-69,-31,57,-99,75,-1,-32,54,-98,-42,-95,42,-68,-77,5,98,77,16,-70,-63,92,61,23,-91,56,-17,-14,-18,-63,-63,-20,-54,-52,42,46,92,88,40,74,-83,31,-97,-98,-74,-65,70,-46,-96,-4,99,52,-59,-71,19,43,43,-97,-54,-8,46,-62,66,-18,-52,5,-27,24,55,96,96,-34,-77,64,55,81,29,-44,-70,69,48,32,-28,-30,-6,78,-2,6,71,19,-71,64,5,-36,5,-27,-94,-97,46,-87,-15,-46,56,69,-30,20,62,-81,-26,-77,69,65,35,-16,-39,54,-66,66,49,-75,-43,-16,69,41,42,-73,-44,-67,53,96,13,-97,-94,67,26,-68,-32,49,13,-5,-37,-7,-2,41,-75,-87,-15,95,-41,79,-10,48,87,26,24,13,96,-12,-18,-65,31,-84,55,-31,36,19,-48,57,-38,75,-89,98,54,-2,-76,-95,-37,2,-60,38,14,28,61,93,12,89,76,66,-24,29,-26,-6,-40,69,-4,24,8,75,91,-41,-92,92,6,8,95,-49,-74,58,70,57,-53,-30,37,61,14,-47,50,-47,85,82,-83,-19,59,-24,-53,-45,-25,-64,-61,-93,-70,90,-98,-90,-30,-77,-92,-2,-9,-83,-20,71,42,-43,55,-72,69,29,-62,8,93,-11,-16,2,56,-50,52,62,-41,-10,-50,-2,-36,-1,48,-48,-72,-74,-85,14,99,-95,30,31,-90,-73,-78,-2,99,25,-68,71,-23,59,-71,-98,-10,-5,95,-12,-96,-6,-68,66,-88,-44,-13,97,-66,-88,25,62,-41,74,-8,-27,87,11,-79,-85,87,-8,-45,56,-48,54,98,21,50,56,-77,-64,-19,45,-33,-37,-5,16,76,-26,-99,-38,-40,91,-8,-18,-34,94,-10,-77,3,-76,21,19,0,96,-77,26,-16,-46,-4,42,-75,37,30,-64,-3,14,52,-64,4,-87,-21,-37,40,89,-35,34,-82,-93,16,2,81,26,38,-26,-25,-85,91,-31,44,-70,25,-9,-11,-63,86,22,-58,2,-83,-55,78,-62,-19,89,15,82,77,49,62,52,77,95,-27,-6,23,100,11,47,3,-87,-60,40,72,67,-83,33,-62,-75,72,9,41,-42,-61,10,67,-87,-57,-11,94,100,-96,-52,-6,92,3,43,56,52,7,-96,60,77,60,-93,-24,19,89,-53,-51,-99,19,-94,-44,48,-58,-77,65,-5,-75,-75,-70,-13,-74,-89,-62,-85,33,-65,-90,-4,31,-98,65,61,63,21,91,83,-27,73,-79,50,54,93,12,-43,-19,56,54,95,85,-52,88,-28,-74,-99,-80,-45,-31,-47,-3,-54,-31,28,31,-99,94,-91,-66,-62,93,-56,7,-29,0,85,-69,69,-38,-42,-7,48,-1,64,-65,-45,2,-62,-71,-47,98,-93,-37,-40,30,59,30,-32,34,-31,-88,-85,34,79,82,82,7,-47,48,25,-69,3,-3,93,-18,75,50,-93,-6,-43,-72,-60,82,3,-59,-21,90,34,-100,-92,12,-62,67,45,-90,56,-44,-25,-38,18,-35,-9,46,79,65,40,15,90,-5,-53,-30,-86,92,24,4,-45,41,-78,96,-21,-2,55,-43,27,91,-33,79,51,43,30,-33,-20,88,-26,6,-63,58,100,-72,63,-44,74,-38,-50,99,22,63,-48,-99,28,-85,72,0,62,7,92,-14,84,96,17,69,76,54,-83,-11,-8,-79,-13,-68,-49,30,9,30,-56,-42,-9,69,-49,-86,70,86,46,37,61,-43,15,-36,63,-25,-34,-66,-79,48,100,-50,-81,33,89,45,-61,11,72,-8,45,-47,-94,-66,13,-40,-41,68,-66,-72,82,-81,-56,-2,-24,1,21,58,7,50,26,90,10,-94,-21,49,1,-59,-97,-84,-95,-21,97,92,76,-54,-53,5,-83,-73,39,34,86,-9,82,84,-23,20,-75,23,-74,84,20,72,46,-43,-69,51,81,-83,-66,-52,88,31,50,71,66,67,37,2,51,89,-93,19,-2,-98,-30,8,78,56,-13,-95,-72,33,2,-50,41,43,42,12,56,93,26,-90,-78,93,-50,66,-30,-29,47,56,26,80,-92,-83,-59,26,61,55,55,-68,-99,100,-97,64,-84,-73,-69,-22,47,85,52,-72,-44,-12,-99,95,57,-73,-9,-22,-80,-28,91,-41,-83,20,60,4,34,96,-43,-27,-82,-85,85,-31,37,70,-82,75,42,73,58,0,-15,82}
{80,90,-55,-23,-83,-66,91,93,54,-46,35,-25,17,-47,-85,-50,-96,-46,-27,-10,-50,85,93,-31,82,3,22,-43,43,24,-2,-21,100,29,56,34,59,-45,34,-10,-73,-38,-53,-66,-69,-92,48,-16,-70,-91,63,-54,-17,49,58,63,35,-81,70,62,-74,-68,-99,-14,63,-4,98,-99,21,9,80,8,8,87,-57,-47,-24,-71,-87,-37,86,-9,71,-98,72,22,-17,-1,43,26,-5,80,-7,-2,70,6,58,87,100,-99,-62,-42,70,51,18,36,-22,31,14,46,3,-41,-13,-27,49,32,-33,-60,78,49,-22,-2,26,-55,-40,10,39,66,-72,-58,-88,63,-46,44,64,25,84,-31,-15,15,97,63,-65,-100,13,9,-66,-27,-14,34,44,-23,-64,48,-56,-45,97,100,54,98,-100,-71,-39,-52,-52,27,-99,-70,-18,-17,44,-55,3,6,30,-22,-45,37,-61,89,-33,-10,57,-47,93,46,80,-61,-11,12,64,-37,54,-26,46,-53,-82,-28,4,1,18,62,-9,49,30,24,-75,95,-86,39,-35,-24,76,-38,2,-79,17,90,-58,87,-41,37,-34,-66,49,38,-7,4,11,88,39,95,-36,69,87,-9,41,-63,52,-28,51,-58,89,25,57,36,-47,16,32,-81,-80,12,-68,-21,-98,21,98,56,-42,7,0,14,24,-67,48,-7,-72,-31,-47,44,-51,-95,-15,-17,83,27,-56,-61,-88,22,27,-8,13,82,-47,-14,5,-51,-13,-86,-23,19,14,-41,86,0,-16,38,15,63,81,-40,42,-41,40,-94,-3,40,11,8,-15,98,-83,-2,20,-14,-46,23,-8,-8,-46,82,-30,-35,-79,89,69,69,66,-30,-41,27,-71,-72,53,30,-53,25,-17,91,-24,-5,17,-62,-46,27,-14,-39,-27,-4,12,41,9,92,-11,-34,-42,-41,-6,6,97,-89,-44,-57,35,-35,80,-59,-11,-75,-31,-61,62,-64,80,-11,90,-6,85,56,19,-70,-60,-57,-91,75,-78,-77,5,14,-37,6,-23,-16,95,-85,60,60,-87,6,4,27,-7,87,92,62,-2,-87,-14,-100,-42,62,-7,-6,-74,74,-17,-62,47,-48,-79,-90,-78,80,-56,0,-81,13,-67,27,8,19,27,-17,-29,33,53,-42,-62,-91,74,-41,-91,82,51,-29,-15,-34,0,-1,27,69,-79,-83,64,3,54,13,51,74,46,4,-99,-80,-5,-55,-71,-7,99,-17,36,75,68,-41,-58,-52,25,-7,45,-11,-100,65,-29,-80,10,-54,90,100,-81,-95,44,-52,85,6,88,93,95,60,82,48,1,-75,85,21,-74,88,43,-98,87,-96,43,77,-34,-35,-73,-23,54,42,-85,87,95,35,-93,-3,-63,-82,-67,-86,-43,33,-49,-41,57,-82,65,-57,60,-2,-70,-88,71,99,72,-94,40,-69,42,-42,-82,-83,33,-36,-87,-71,63,37,26,-44,55,-31,-91,-67,-47,29,44,5,-73,-69,-4,-74,35,43,34,-17,-28,-74,8,31,-46,-77,46,-52,-87,-46,-25,27,-38,-62,99,-45,-71,90,74,47,18,7,25,-53,29,-62,90,65,-56,84,81,-87,-20,35,-84,50,54,2,84,0,66,96,79,78,-49,77,81,-70,-24,71,-86,-13,69,50,3,93,11,-2,82,-23,94,15,25,-39,24,-93,-54,17,-22,-16,-35,-74,-50,82,12,-23,-14,21,-45,70,68,15,37,50,-53,-66,26,81,-62,87,-88,69,99,-65,-90,-56,67,-23,40,-5,-30,-54,41,99,-70,-50,-17,69,-8,88,-83,-11,-94,-60,37,18,-7,-86,-60,13,76,40,-17,-94,-51,29,-23,-100,-96,59,-28,-97,72,-55,55,-1,82,30,-88,85,84,-63,-44,27,43,32,0,23,68,31,-3,62,-73,-78,65,-14,49,-9,78,10,8,34,74,8,-18,-53,-20,55,54,-78,-37,-60,24,16,-95,2,-56,-55,47,43,33,70,-93,-69,-88,39,63,-50,-100,97,-55,-25,24,-29,8,45,-41,11,93,-73,-25,-49,-67,-25,-56,60,-72,6,-79,-40,-64,68,78,-26,-53,-25,-94,2,23,63,53,-74,-88,44,-86,-88,-10,6,-34,-71,-95,51,10,48,87,51,-99,37,68,60,90,-15,-90,-99,94,-96,-90,-46,19,48,-1,-81,79,-63,79,82,-41,95,63,-31,80,-95,-55,19,-30,96,40,96,-100,-54,33,8,-2,8,-5,16,-99,-57,-85,54,26,2,-43,25,26,83,-77,-98,-8,33,23,-20,-65,93,-14,21,-31,-84,-99,93,-49,67,42,76,96,1,-54,65,-68,61,61,-60,56,96,-58,7}
{99,88,-21,41,-94,46,-12,-13,37,-21,-76,-68,-67,-85,56,-69,-13,48,-81,62,53,75,54,32,-54,-81,-74,83,-78,30,88,85,-2,-32,-55,-26,-7,35,28,14,-100,20,-85,51,-42,-29,-2,94,27,66,33,-6,-70,78,-16,43,17,-62,-68,-96,-96,96,74,-7,-84,4,57,5,-61,-89,33,0,61,-78,-54,86,-84,-25,23,4,-9,11,88,29,4,55,83,20,-46,-3,-57,7,-17,-68,43,-55,-31,-37,100,-20,74,79,38,78,-78,-20,70,-9,-84,22,-39,22,-34,-56,-30,-2,30,-51,-82,-13,-19,1,-80,25,-80,-49,-42,56,89,-29,83,68,63,-44,1,-97,60,60,84,60,10,53,-39,84,-85,-13,38,13,-32,-49,91,31,63,88,30,-61,-2,-4,16,7,-37,32,-49,-17,54,-40,19,43,-29,35,59,57,-51,-56,-70,-1,47,72,65,-88,-45,-91,67,-99,81,85,-6,47,-7,61,-97,-30,24,5,-48,65,73,-70,9,-5,79,69,-77,8,-1,51,18,-8,28,-63,30,-37,-84,-24,91,72,61,24,-100,-38,19,57,-83,-27,89,23,60,-4,68,11,26,85,-18,-51,88,38,-11,-8,-47,99,45,-21,-36,11,48,-85,-77,44,51,98,55,92,0,25,-85,-81,44,-35,34,-15,8,-27,40,-20,-43,76,-74,59,24,99,29,7,-77,-59,40,81,-73,57,50,-95,44,71,83,-63,11,6,-66,58,-9,-20,-57,-16,25,3,-42,89,-90,92,-92,-95,45,100,-59,-43,88,68,-88,25,90,95,-81,-64,-41,-64,92,65,60,-48,52,-100,34,56,-70,-28,12,-79,100,-23,-20,-31,-24,-76,32,63,72,76,-24,98,-86,26,45,-54,50,63,68,29,68,-89,-84,98,89,-7,-87,44,29,74,65,64,-83,60,-13,-55,-22,14,66,-12,28,-21,-90,-87,100,-55,-48,50,-26,-33,68,-18,-62,56,-3,-33,-18,-70,-96,-68,32,-63,-17,12,-25,-74,-61,-98,-56,-94,34,48,25,13,0,38,-71,-75,-64,-75,40,44,11,-60,71,-78,-99,51,-13,30,-53,-37,10,-42,11,-29,-35,-76,-21,9,19,-88,-8,76,-76,-56,-85,-22,23,35,60,-32,57,3,83,15,30,-50,-10,-87,-56,49,45,10,75,-43,35,-5,-11,-9,-11,0,39,-98,-35,-92,-79,-90,99,27,-56,-25,-55,-89,-5,-72,26,-3,-16,3,21,-39,-16,-48,94,-4,3,-98,30,69,76,-63,42,-89,-34,-51,14,-22,77,9,26,-93,44,27,44,-77,-63,-12,16,-86,-42,34,32,62,96,-69,-20,-31,98,88,-47,34,-43,-28,-100,66,-35,12,-64,-49,-94,-55,-74,71,-43,51,-47,-37,72,-18,-5,45,-63,-6,71,3,-68,76,-86,21,-94,-47,89,-33,93,92,-26,-92,-68,77,28,20,18,-79,-57,44,-59,-62,-6,-16,-54,-44,39,-31,27,-1,-17,17,76,90,26,61,-6,-35,47,13,-58,-94,-84,89,80,-59,91,44,-5,-16,-54,25,68,-90,28,-12,-36,57,-9,90,51,-59,43,-62,-57,60,-4,39,-47,-60,5,53,90,-78,80,-4,-40,57,91,-62,-69,18,2,-69,67,72,-76,-77,-69,35,-63,-19,10,-49,33,25,-44,79,-51,14,75,17,9,45,14,76,13,-55,-51,12,64,-82,24,-11,81,98,22,4,87,47,60,5,-70,6,-11,-91,-16,20,-57,-92,-5,83,66,86,-88,-8,-82,-90,18,12,-24,73,78,-11,0,38,27,20,-94,24,19,-81,11,51,-30,-27,-94,13,-50,74,5,-94,17,-58,18,62,-26,-23,1,14,-50,-87,-98,-33,35,83,12,24,-30,-43,-19,76,-51,63,-3,82,29,43,-76,-16,51,-99,25,-16,-94,-80,19,10,-94,39,-24,95,67,-54,-48,-72,-63,54,-33,-78,-10,-27,32,90,97,63,-69,-63,-74,94,99,-66,-56,6,33,36,59,46,29,-79,-32,98,51,-86,-68,-29,-9,-24,-12,-81,-85,62,32,39,68,-26,-6,-77,21,-52,60,-74,88,79,-32,-60,10,4,-91,-34,-11,-62,-91,-61,-50,72,-30,44,58,59,-49,-54,89,26,67,-25,58,72,61,68,24,-61,-22,-74,-95,96,-83,24,-43,-4,-78,-75,-4,26,-29,40,-15,32,62,-94,-57,40,-37,-3,-17,-9,-89,51,-72,56,18,-8,-61,86,9,-28,-75,-57,81,-94,1,57,31,-19,-85,-96,-76,43,-18,8,1,-87,20,-66,-14,-83,96,-78,89,34,0,83,-38,-29,-39,21,-63,-7}
{-61,-84,-78,-10,-43,-17,-74,81,48,18,-30,91,54,94,-4,24,-79,0,-83,-22,-88,20,-57,81,87,-8,86,10,77,-7,-69,-17,58,-33,14,87,-61,-2,-2,-19,52,-39,86,1,22,42,17,32,75,71,-50,-37,-57,8,6,91,30,-45,48,46,-87,72,-83,59,67,60,20,-59,25,68,-80,22,-96,-42,17,96,94,100,4,51,77,-55,-22,-83,9,84,5,100,100,-23,-7,5,37,1,8,-33,33,-12,-73,-8,-39,68,95,-54,-74,-17,-75,79,-17,90,-88,50,-73,28,55,-70,-27,-91,-63,-74,31,46,24,-99,-98,-89,-20,45,-43,37,-66,-10,-72,6,-63,-27,41,-63,83,-34,85,-62,21,40,-95,13,100,-21,-64,53,-26,73,-83,-69,-81,-5,51,72,0,31,83,96,-26,64,-48,88,19,-78,99,74,20,61,99,58,80,-98,-95,24,62,20,65,90,32,66,-46,40,-93,-8,-40,99,1,-75,45,19,-92,33,-37,39,54,-18,38,75,-84,-15,-97,-19,-91,81,9,1,-80,-69,81,-64,-17,61,33,-90,84,99,-59,9,-91,97,82,41,-48,-21,-92,72,-61,-67,-90,-27,52,-45,80,41,61,-91,-81,-62,-52,-100,-5,55,-79,83,-21,-36,85,-76,87,-67,-80,42,85,37,-39,56,-89,-96,45,21,-60,-71,98,-88,85,99,-92,2,43,-29,19,64,99,90,77,-71,46,-92,4,37,72,64,28,0,-97,39,-36,-41,87,31,-50,79,49,61,65,-99,72,-67,8,86,14,-84,-41,4,-7,-38,-22,-90,62,-16,-34,-38,1,68,-1,6,-96,-6,-55,41,-4,40,39,97,14,-93,98,95,-30,63,96,82,80,56,-32,86,81,19,68,55,13,67,-52,42,-93,-62,2,4,-28,-21,75,74,-36,-18,-71,48,97,-34,-80,76,6,34,-62,47,-72,-23,63,44,98,22,-31,-55,98,18,47,-67,-99,-92,80,5,-35,66,-2,70,38,-10,-27,-44,-100,63,-69,-35,73,-50,39,-51,-35,63,-4,34,-98,-8,-4,29,7,81,-2,-36,-31,-3,82,99,23,28,-37,-54,-5,-52,-10,23,94,-26,-49,-1,-39,54,-13,-87,49,23,7,-89,-90,-94,-82,-48,76,-63,-46,-65,21,26,38,-90,-83,-90,5,37,11,12,56,-6,-27,-92,16,-44,27,-45,58,95,68,86,37,-18,-17,39,-22,-33,72,2,98,-25,-8,68,-17,-89,59,37,-19,63,-35,-27,-57,-15,88,27,23,41,-82,-81,68,20,-31,37,-21,-13,-42,-45,-46,-28,36,-23,-87,42,-15,-42,39,-19,-47,74,51,-54,3,83,14,-46,97,20,26,3,-52,-10,75,-29,42,-95,-9,-55,41,-40,73,14,-21,50,-88,77,78,50,-63,12,-97,-53,11,77,-52,-81,-48,21,96,-66,-16,-74,-84,-20,-72,19,44,100,56,45,41,-15,-27,30,22,-58,-2,9,-36,19,-3,-28,-33,-3,78,27,-37,-94,-43,42,-23,45,-49,49,-14,95,75,-94,-18,-2,-20,-16,52,-64,-74,48,-13,13,89,7,56,-78,-47,17,-40,-1,-82,-83,63,81,-16,30,56,-18,-74,45,7,17,5,-12,-56,-13,65,-39,-6,90,93,36,42,8,-12,-18,32,-97,31,42,-90,21,-61,33,69,-84,29,27,-74,-96,-51,-49,86,40,-40,7,-23,-56,3,-85,0,-70,40,-9,-9,59,-95,-56,35,-53,74,100,-34,-64,12,91,29,-14,73,27,-12,-70,42,-49,14,45,80,-64,16,-18,41,17,46,51,-94,97,20,-67,26,2,-78,92,-83,55,-54,-9,62,-49,73,87,65,-51,10,4,7,-7,-62,-63,6,61,68,31,-10,12,41,93,17,-88,86,-62,-68,17,-37,79,24,95,-50,11,98,-9,-75,4,-31,56,-52,28,75,78,88,-78,-65,-89,37,79,79,8,-34,-58,-56,22,-42,65,74,-91,-14,61,-50,90,9,68,95,-90,65,-66,48,27,11,35,-7,-18,-59,44,-81,50,6,59,65,-83,54,-27,25,-68,-84,-7,87,7,-18,-36,79,2,-9,-9,-68,6,-60,-49,4,85,-20,15,-19,37,60,-44,17,-97,-31,-13,-9,-53,30,-61,-75,23,87,-61,-33,54,-55,87,-6,-55,-43,-71,-29,83,26,-73,-33,-38,-22,-13,-85,-41,-48,-34,94,51,6,-50,-5,-57,-2,-78,50,-63,39,-41,89,58,-18,-41,-91,97,-33,-33,89,21,-65,100,-63,-76,82,-72,-16,-73,3,-95,78,-47,-83,-57,-35,-24,-28,-80,14,31,26,97}
{88,49,75,75,22,75,16,41,32,47,42,96,85,73,46,24,39,5,74,85,81,23,2,28,76,42,85,99,26,87,89,40,9,39,31,12,73,67,10,30,51,14,49,40,60,14,25,6,66,72,44,47,75,80,95,6,60,82,20,88,91,46,19,90,26,63,68,73,39,31,6,30,17,63,37,58,12,84,5,8,66,81,87,93,30,11,5,77,81,58,79,88,11,83,85,51,84,25,42,69,16,26,53,11,65,14,47,45,73,96,24,58,74,38,65,5,91,90,21,45,79,11,77,7,26,40,92,72,48,72,88,43,58,89,85,18,50,14,44,78,82,58,17,49,71,49,57,6,37,44,37,35,86,52,2,74,17,7,70,45,54,68,12,49,38,42,76,24,6,71,17,48,55,37,74,55,49,12,79,57,58,72,24,63,13,1,31,84,85,100,42,33,3,98,22,54,38,21,15,15,43,9,17,23,80,45,27,63,17,29,15,63,53,85,15,34,48,60,75,70,58,53,22,16,65,92,70,67,59,31,9,91,60,56,8,26,34,47,53,43,17,49,82,24,63,77,23,55,86,5,46,100,24,47,34,71,19,81,33,91,64,26,11,3,88,47,49,50,32,2,10,28,78,26,15,93,13,13,79,84,87,14,52,2,92,59,62,69,8,67,9,3,38,11,73,8,58,58,98,93,94,19,99,33,81,14,81,70,94,48,100,95,50,3,10,5,65,28,17,1,30,33,40,56,77,79,21,47,89,66,45,13,37,47,42,88,65,78,11,19,61,72,73,74,18,4,95,18,58,63,37,28,43,62,65,8,2,56,60,54,8,31,66,14,1,83,96,3,43,34,69,6,62,72,77,37,10,57,5,21,20,61,4,57,4,93,93,75,99,90,1,88,87,2,4,59,90,11,82,55,56,13,33,64,84,29,17,75,73,29,54,90,100,56,94,38,27,98,98,8,78,48,11,88,16,52,75,99,39,59,47,2,39,51,8,89,34,32,93,19,59,63,91,43,23,94,47,93,71,79,53,98,66,52,95,55,89,36,96,38,15,92,48,17,25,1,67,50,36,23,90,41,32,47,44,14,98,32,61,64,47,1,67,3,16,30,93,58,22,72,45,12,31,13,56,54,62,76,4,32,59,61,87,66,98,7,84,46,54,58,17,89,54,39,72,3,50,98,13,65,95,52,38,2,92,8,96,34,65,8,32,3,67,19,5,19,54,31,23,16,92,44,22,1,41,56,10,74,19,62,80,99,20,71,37,70,67,3,2,59,90,43,86,1,96,96,67,93,72,12,30,82,72,18,82,53,92,7,67,98,93,51,11,23,29,87,77,12,82,51,1,47,25,48,62,55,53,63,91,43,99,21,72,54,14,59,98,70,33,60,19,85,74,70,25,40,94,6,26,50,39,41,22,97,19,58,82,21,42,29,99,7,91,99,86,91,38,26,86,23,73,55,3,28,32,80,64,30,66,87,62,37,60,38,30,77,27,35,76,51,19,33,66,45,62,79,70,23,14,3,24,28,56,74,23,84,74,3,47,4,41,73,82,91,60,40,84,33,85,58,100,80,62,63,76,13,65,33,100,98,47,76,24,72,57,47,67,73,26,51,49,84,56,55,28,57,39,66,22,30,5,39,66,47,76,94,20,53,96,40,75,54,87,26,27,65,83,77,63,10,53,83,2,13,100,50,48,93,1,67,69,16,99,59,7,29,15,62,3,14,25,82,84,18,56,57,24,10,11,91,48,56,89,81,22,82,60,11,70,72,1,64,69,3,26,37,66,15,38,50,89,96,46,65,100,23,7,43,3,10,52,19,70,94,8,59,64,91,82,59,16,26,12,3,48,86,67,13,4,88,82,8,68,17,58,65,97,61,8,3,21,88,31,92,14,40,10,90,95,26,70,41,24,99,22,47,91,80,20,67,37,48,61,96,38,9,70,96,93,49,46,97,97,37,100,74,46,62,33,62,1,67,95,13,8,32,53,86,59,77,25,57,3,47,96,49,28,34,29,8}
Returns: 1.0244525307599005E9
{9,96,-5,22,82,-22,47,-30,-23,-69,-72,-74,96,49,88,4,-91,86,92,-73,20,-36,44,84,26,-87,11,32,-25,21,97,49,50,53,4,-40,-50,-21,8,-99,-61,49,29,66,-44,-57,24,-45,94,68,83,28,-6,15,-47,-20,37,96,-82,-21,50,-74,55,56,-2,12,-32,20,-6,88,-1,90,97,36,-64,89,77,-51,45,-4,50,43,39,22,6,23,-6,12,16,-65,84,96,4,-48,-50,38,-20,77,37,-39,-93,82,-31,-24,8,68,-23,-19,40,19,-85,64,66,-23,0,-23,-2,-76,-97,58,30,2,58,82,-16,-57,-51,-14,-95,-32,-11,21,-72,4,-89,16,-59,-45,53,26,-63,88,48,48,-9,-51,98,-27,13,-88,-49,93,97,-97,-23,69,64,27,-92,-65,-57,27,69,-7,70,-46,-53,55,65,-40,-20,84,-84,85,98,-17,-56,-32,5,-3,54,63,43,-9,-8,-83,-66,-66,11,53,-4,-19,47,52,61,-51,3,-50,60,-40,82,47,79,-69,-31,2,12,90,61,47,46,96,-9,7,86,-16,-81,72,-10,54,-94,80,-36,-56,-70,-2,15,10,-14,23,81,-98,-81,-7,16,51,-18,1,-70,70,89,-79,-53,-27,-84,64,-5,-37,15,84,40,-80,12,-84,73,92,92,-78,31,-26,47,-29,-78,82,68,-53,96,62,26,-17,-75,46,44,19,36,39,-48,14,-46,35,-83,-63,-71,3,94,-89,59,100,92,-20,83,-13,15,-36,67,-88,-37,39,-1,8,100,4,4,-45,-90,82,-99,-93,-93,-76,-78,-76,-26,-82,23,56,-16,-11,-42,76,72,70,98,68,3,-12,93,48,33,31,-26,96,-72,-67,-50,-9,-13,38,94,-56,-20,32,-2,35,-90,98,16,82,8,-56,-18,23,-61,-75,85,81,-63,-44,69,64,-24,36,83,78,1,-29,31,97,92,-82,75,69,-81,61,27,-54,-64,65,4,-58,47,-23,34,-40,-16,69,-87,-40,-59,55,-18,-15,-95,66,81,90,71,15,-69,-96,7,30,27,0,29,8,58,-24,-87,-92,-6,21,60,84,86,85,-43,-1,-59,-16,-37,-56,25,71,-65,45,-32,-63,96,71,-37,-66,-17,-24,-97,-47,25,-37,60,-20,-35,54,75,-71,50,94,-5,-6,-2,39,95,97,60,14,-73,38,14,67,-22,33,31,-83,-98,30,91,-74,-66,-5,-62,-9,75,8,-59,-61,31,74,88,-35,-15,-47,5,35,-9,83,-71,85,-53,-54,19,-99,12,-22,77,22,93,53,14,-64,-27,36,79,55,29,10,-72,-44,8,65,-24,-84,-44,9,65,97,-76,-9,92,-44,97,-75,89,-45,-61,6,-31,-97,-10,27,-91,-81,-92,83,33,-8,-4,-8,15,28,31,-25,-28,21,67,-42,-77,-4,90,9,-82,12,35,-45,14,78,-71,59,-73,-52,-41,-71,98,69,-89,-68,-73,-55,-99,16,-97,42,-36,55,-49,43,-48,-33,-83,12,63,-15,-86,72,-4,97,73,17,49,-66,42,73,-77,-68,20,-77,-57,-74,-70,35,86,59,-30,-63,-65,92,35,-71,-4,39,-58,27,-75,3,52,90,-23,-30,-80,-68,-100,63,-74,38,58,96,37,93,-97,-52,14,90,-89,-81,-18,34,-6,20,49,-53,53,-72,83,69,48,4,-49,-90,-27,88,-74,-49,-88,-53,3,14,-61,-88,75,24,40,68,-49,19,26,-34,58,15,32,-16,50,73,20,-92,87,-90,-84,64,-93,68,61,30,-39,-26,80,52,55,-5,-58,95,-70,28,-4,44,-17,43,68,-50,81,-36,-52,50,93,34,62,-5,88,-87,8,-89,-19,37,-71,77,34,-65,-43,-68,12,62,86,22,22,-59,-85,72,-81,-32,28,53,-42,44,63,-39,49,-6,78,5,-18,-75,-77,-93,-82,-63,74,91,-17,-91,100,28,2,99,-68,31,-18,55,-2,-18,93,-84,59,-4,-58,33,-17,-41,72,98,27,79,58,22,-37,66,-56,85,20,42,10,74,-53,93,41,-45,-68,-42,-83,80,-97,90,-29,97,-67,-5,-18,-97,-76,35,-76,54,-98,48,63,-97,-45,-74,-18,-9,17,-9,70,-92,-24,85,-26,61,24,-66,-99,-30,-2,92,12,36,-42,-38,-56,62,67,46,-62,-21,-54,50,-65,-56,-67,80,-53,16,-36,-84,-95,61,81,-99,78,91,75,20,-70,-10,66,15,-36,55,-75,-36,76,24,-20,76,41,86,-70,-2,-25,83,70,-61,67,74,3,-2,-61,52,19,-35,96}
{79,-13,-91,-84,41,58,18,33,-6,-68,-76,-93,-47,85,46,18,19,72,97,75,-30,45,-30,71,-24,-52,-57,11,32,-100,61,-64,-19,38,61,-55,23,98,36,79,-8,32,-19,31,41,-35,-25,37,51,8,9,-14,-35,86,-45,17,44,-29,-29,-39,-7,-68,19,19,93,81,98,-27,64,-70,83,78,-90,-53,89,99,-58,-56,92,14,-86,18,78,55,-20,36,-77,-26,-51,-65,36,71,23,2,55,62,-90,-11,46,-25,-16,31,-4,27,13,31,75,92,55,90,-6,34,98,95,-13,-13,-26,89,-78,-42,26,-16,-86,-49,14,-74,-45,-70,45,-45,29,-53,19,-45,39,-100,87,72,-55,35,57,86,63,18,-22,68,85,84,-98,-37,42,-96,14,-30,-70,80,23,-64,-90,-68,-11,37,9,-41,-9,-56,-53,58,28,-41,38,-44,86,-53,-78,42,17,-28,-54,-95,-92,-66,88,-93,69,-58,-65,-13,78,21,4,-44,-70,-44,-19,48,-73,-25,28,97,61,-13,27,98,-27,-15,-50,-93,-8,78,-6,6,-29,-92,-94,99,4,83,-58,97,36,-84,-53,73,13,-58,12,-24,-68,67,-93,-36,17,19,-20,-15,-72,22,39,-38,95,-50,-37,-97,1,-44,-45,-23,2,87,0,10,91,-50,68,-31,58,35,-65,25,-93,34,-67,-91,65,93,62,-68,71,60,6,-37,64,-15,23,-94,-18,85,-70,-8,-41,-1,-75,46,-70,-74,-58,54,-81,25,94,49,-79,86,17,90,82,82,89,11,10,-6,59,2,-25,-30,-63,-11,-28,72,38,-22,92,-98,87,30,-50,73,83,-7,-95,54,-71,-26,30,87,-60,33,84,8,-66,57,87,-21,-98,67,84,-86,89,-82,-55,-60,-82,28,-16,45,26,-72,-97,25,76,-95,39,64,32,-52,-50,51,95,-66,-100,-4,-18,-62,47,45,-100,71,-91,-85,-60,24,89,89,18,31,95,31,-54,-64,12,74,-33,9,-26,91,21,-57,-25,-95,90,22,-95,86,36,66,-20,-36,89,-90,-20,85,-40,29,-53,69,17,55,-97,53,38,21,-73,52,98,-85,-42,12,98,1,-50,84,-7,-42,-12,93,67,-45,99,-36,33,-7,18,-85,-19,-77,20,13,100,-28,-82,-27,59,-99,-64,75,-13,-33,47,-55,34,-61,90,-13,36,97,-15,-86,26,41,-23,99,-57,1,-21,-90,22,88,3,-87,78,-56,-79,65,-38,91,16,-65,76,41,-31,95,14,97,48,81,-43,-8,-49,93,94,-64,27,57,36,-87,-57,50,-46,69,91,-49,-33,-46,75,-8,-17,-16,-52,-61,-95,-15,42,48,-75,-65,41,55,2,-50,93,22,-13,-47,36,35,-63,72,54,-86,20,7,-87,74,9,-14,72,46,-40,-5,74,-1,-42,-86,-67,-78,-94,93,16,22,-24,41,-60,11,-87,53,-51,49,-44,-98,-93,59,0,-91,-60,21,-57,59,-64,28,-79,-58,98,-25,-58,-42,75,-37,-67,76,75,-29,-64,-49,-23,-12,-22,72,100,99,-15,82,-11,32,28,-24,-79,9,-67,-97,80,-15,-89,91,-47,66,-75,48,-71,-8,65,19,-62,74,-55,92,-87,66,36,-27,97,-10,65,-41,-33,49,61,-27,-19,54,-61,-100,-5,-5,71,34,-94,47,-73,-35,-95,99,-64,81,72,37,69,-46,17,-55,-4,-31,-48,-4,-1,25,29,-86,-5,61,-31,-50,-57,54,16,1,-31,39,-85,-35,-52,38,-82,-5,98,92,57,-99,20,-83,86,-18,-19,75,71,-31,11,27,72,-6,36,68,49,-97,18,31,-85,95,-20,25,35,77,61,78,5,8,11,57,4,-97,65,-96,79,90,-73,-73,76,-83,54,-61,-59,38,-90,15,-48,2,59,37,-46,51,-84,12,81,41,-57,-22,-9,-75,88,-94,35,-31,-33,87,-11,-100,41,45,98,11,-23,-13,-81,50,-61,92,64,-49,-53,-51,-9,-84,-93,-3,-70,-45,67,-42,2,99,-14,99,-11,75,-13,43,-27,-20,-96,-57,-96,50,-67,-93,68,11,-48,82,-22,48,-17,-100,25,37,-75,-100,89,54,-70,57,30,-17,-51,60,9,48,-69,-35,-73,81,31,94,86,-15,40,75,11,53,56,36,85,12,-47,-96,5,-51,-26,-50,88,43,-52,75,-54,-60,0,98,-52,19,48,-85,-87,53,68,-62,86,77,93,67,-17,77,49,2,22,62,59,-54,74,-90,-92,-81,-48,94,-13,-29,-35,82,-17,-58,50,-75,-19,-72,35,8,50,-47,84}
{-85,-76,84,-91,29,94,-5,-35,44,84,-96,79,85,-77,15,-98,81,-51,-96,-39,-32,57,-50,62,66,-37,-26,-34,-77,-88,-41,-70,87,15,17,-49,22,30,24,-20,9,23,-61,-84,-22,78,13,-85,78,9,-72,30,-46,35,-48,12,-95,71,-40,-72,-96,34,89,-69,84,-44,-32,94,-97,-54,-31,12,47,-45,-81,-63,-78,77,50,-69,94,-99,-64,-98,-12,-19,-42,26,-77,-85,-10,-87,93,53,-9,75,80,-38,19,-19,83,-10,-97,-68,-45,-35,-91,-4,11,-100,60,-91,65,59,54,13,59,49,-99,-3,-79,-2,67,-34,27,-86,-97,-79,-64,26,52,15,1,45,72,38,-23,-82,93,-44,81,86,58,-58,98,-9,83,10,90,-24,42,-92,-25,-97,54,-96,53,-23,-43,-69,75,-64,12,83,53,39,-87,-8,-27,84,-40,39,-52,55,84,8,-44,-71,-4,-79,89,26,16,4,38,-47,77,-97,-19,-29,-56,54,-11,-64,36,-46,-43,-84,-63,21,50,8,-61,26,96,96,-16,-21,7,-93,83,-31,-57,-21,-61,7,-7,-99,-16,-84,-3,-1,-72,-49,14,35,11,-79,-16,58,51,-37,45,39,76,-89,4,-11,56,83,5,98,-64,34,71,-22,-50,-10,-42,85,51,-48,22,-7,-92,91,-63,-33,2,81,21,-60,-73,-41,45,-100,-38,3,-64,95,-73,8,-62,1,-93,-35,-87,18,19,100,39,17,-65,5,-79,19,-71,73,69,6,-85,80,100,61,41,1,-27,-86,-75,74,-26,74,-97,63,-82,79,-9,-46,82,89,-11,-77,-69,46,88,29,-36,32,49,14,-44,23,20,-99,-37,-100,-68,-74,12,74,51,-34,-98,75,-56,-17,-81,42,-29,-61,-40,-32,83,-90,-26,43,2,-34,-68,79,-55,-16,-51,3,-83,-93,95,-56,-56,65,86,-31,71,41,-59,-41,-87,-11,-30,-15,19,74,-54,64,51,42,57,-41,-73,21,85,-43,-17,84,15,-2,-44,-77,-18,-54,-15,-69,-18,-42,90,78,-65,-15,56,95,-6,-25,-70,42,-50,-95,-28,-45,-36,18,24,-11,-43,-84,-75,-22,6,-55,-93,-18,46,50,-36,-26,-61,-6,-30,33,-16,-67,-59,68,-100,83,28,21,-55,90,-98,-92,-9,-32,-36,34,32,16,97,87,-25,-75,76,-92,9,-51,61,-31,68,96,-36,34,-74,91,52,32,-74,75,97,96,-41,69,-25,6,-15,-20,-4,-88,43,-75,-7,7,-61,72,78,-38,-82,-86,52,67,31,72,-9,37,78,77,17,-69,26,-55,-17,-77,-75,-7,-45,67,57,-6,44,55,-68,-15,-51,4,-100,-64,51,-73,17,55,86,83,-28,96,-30,-76,15,-74,-99,35,-89,-97,38,46,-22,8,33,-56,-71,-77,71,85,68,-93,49,-61,-95,96,-69,48,68,33,-90,52,98,-72,6,60,7,19,-53,95,-55,10,9,59,2,-9,80,99,-57,95,78,4,93,-68,86,58,-34,17,-34,19,-78,40,-55,15,97,-9,15,88,-96,56,-44,-47,79,65,-12,19,24,-52,-55,16,-88,-45,-33,14,46,32,-22,16,21,-36,89,29,-51,8,8,70,29,93,9,-15,69,94,-70,5,45,-61,0,-85,66,53,7,79,20,16,44,-6,-89,-33,34,-29,-43,-37,-72,45,98,75,88,67,44,-3,26,-34,-39,24,-43,100,-1,-36,53,-22,39,-60,-25,88,-20,52,-24,29,35,-10,58,-93,71,11,91,-48,26,-91,-26,-52,-32,52,-86,30,-24,99,-49,-95,6,-31,24,47,91,52,-63,32,36,-48,-3,-16,-20,0,-81,25,-16,-62,68,-54,71,71,-71,-47,-74,61,-41,-35,-75,-84,40,-90,-12,-38,12,-19,2,22,62,-92,14,16,-34,-67,39,-50,-39,-31,13,-83,10,-32,71,32,15,55,23,6,-32,1,-29,48,-2,88,-91,73,-73,-72,38,-75,-55,-9,30,-99,72,36,-7,-100,66,-87,-19,28,-54,-2,37,43,66,60,71,24,2,-93,14,-85,-58,-3,19,-70,-67,34,36,-33,16,-44,37,29,-11,63,-81,-80,-35,97,87,63,52,-8,75,49,-86,-45,-32,27,-48,-50,-76,-73,62,-51,-58,-91,-55,11,-37,28,-16,50,35,22,90,-27,53,48,6,1,17,-4,-34,71,-41,62,72,-100,-74,-22,-20,89,29,54,11,7,22,8,-29,-51,-93,52,-62,-96,-81,12,91,-60,96,94,-42,-14,-84,86,-36,-40,-46,-30,43,73,-48,13,-10,31,45}
{58,-55,49,-93,-11,-95,-18,-75,91,98,19,-13,-15,-32,33,-24,94,83,-25,1,43,-28,80,84,13,-88,-32,-29,18,-35,-66,64,-25,8,74,-5,-39,-24,1,-60,-1,15,71,88,-20,-91,-66,57,16,41,-15,22,38,41,82,56,96,-39,-61,8,46,-49,-43,-13,44,69,-38,-77,21,34,19,89,-27,21,89,29,-63,-79,-74,-1,-87,59,-91,-14,-39,60,44,34,-46,-53,-3,15,-1,82,59,8,85,-88,82,-93,-66,-99,-17,-84,-55,-70,76,28,-2,89,-89,66,-67,-61,-48,-82,-61,-69,-98,62,-25,28,54,-48,-55,64,55,-49,-69,76,-58,-64,75,-36,44,30,25,-12,78,16,51,74,93,86,-35,-77,-89,79,91,-17,-53,-72,65,-63,18,-90,97,-91,-84,55,-90,-67,-87,8,10,11,64,-14,-8,72,-99,-7,-65,82,98,63,-47,7,-88,28,-63,44,-45,99,-37,9,-60,96,28,-85,-79,0,-31,40,-30,24,-65,-63,-17,47,38,-61,91,26,86,59,-44,32,45,97,-13,-56,73,-43,-15,79,12,51,11,55,-44,94,60,5,58,-88,-88,-71,-37,81,39,-30,-40,-66,-57,-92,29,-45,-71,-25,-1,31,-88,-15,63,-46,16,43,-26,76,2,-49,61,58,82,-47,-42,73,14,-99,57,17,22,63,3,-71,-20,60,-62,29,-18,-26,42,36,91,-90,14,70,31,-99,99,70,-35,99,57,-51,0,-21,-36,-70,-64,-5,19,7,-4,71,-49,-70,70,81,29,1,-87,24,-32,41,81,-59,-18,11,-37,25,39,21,-24,-66,21,21,44,-97,12,-75,85,29,-77,89,61,-68,70,-73,-5,-46,7,64,-68,93,99,42,-16,79,34,80,83,18,22,-6,-68,53,62,68,58,-84,58,-88,14,-72,7,17,-36,-27,99,-9,77,-99,-34,-65,84,28,84,-88,78,70,-43,-61,35,-62,64,57,-5,76,47,-90,-46,-85,-89,0,93,-84,2,67,-30,-49,96,29,43,83,-61,-29,-77,-80,-40,68,94,25,26,32,-72,-31,35,53,87,-9,-25,-76,19,86,-87,38,2,-46,-79,68,-29,-44,-73,-22,-54,-47,98,-88,51,-90,56,-24,-44,78,4,51,79,-56,-18,28,38,-78,0,21,57,-64,64,-47,-96,31,100,-96,51,-43,12,61,-59,65,-5,99,81,48,-60,-78,-37,-91,13,57,-6,-86,93,-95,-22,-38,-97,81,-3,-11,6,-59,41,-93,72,58,-99,-4,-90,84,100,-82,72,-78,69,5,36,21,18,-94,41,50,16,-23,-86,11,-12,48,18,36,-55,-97,53,-98,-3,-98,-82,-2,86,39,-29,-14,80,70,-1,-64,-5,30,68,77,-87,-18,-97,-18,7,-59,19,50,-11,90,5,-3,84,71,70,-75,9,-62,44,32,-48,71,21,42,54,82,81,7,83,-37,-28,-100,67,39,54,35,92,54,-77,-73,92,-46,72,40,23,43,2,33,-83,30,15,-8,-1,44,-92,-90,71,-75,98,-76,-19,93,48,71,99,89,47,-68,46,-29,55,30,-10,84,50,32,6,21,55,-40,-18,23,52,-14,88,72,94,-66,81,39,14,58,-12,62,-34,-56,69,11,46,-88,-66,-22,-32,-55,10,-18,-81,-81,-42,-15,-75,3,-65,-12,-45,-14,-91,81,95,92,7,25,-84,60,-69,36,19,-79,-42,-24,-10,-58,2,64,17,40,0,-59,-23,54,-13,85,80,95,90,62,100,76,98,-96,-24,-6,63,5,21,27,89,-96,31,-43,3,-91,-2,-5,11,44,66,86,80,17,67,-24,-62,66,87,-48,100,-67,67,-58,-8,30,96,-60,-78,28,-85,-99,-27,-55,-94,-75,78,2,35,-41,32,-72,59,-69,36,60,48,45,-5,-36,-7,59,-33,-8,-68,21,53,-2,92,13,-56,-84,62,-69,-50,-67,44,30,-74,85,21,15,84,-53,40,32,-35,-8,-79,-77,-70,32,-44,-95,100,-90,1,89,-73,48,-73,31,40,-26,-56,-24,-76,97,-19,68,45,36,-6,49,18,23,18,20,-26,-63,4,-94,6,-72,-76,74,17,93,-4,-89,-40,12,-13,-53,-5,-62,66,62,57,-70,-94,-57,19,54,-83,-76,65,91,85,-66,-81,-2,-52,-98,-70,-49,-36,-20,-87,-42,89,-69,-38,70,11,-96,38,-17,1,-13,-50,57,12,28,-98,-31,-55,2,18,68,-19,92,6,82,22,67,55,-81,44,56,62,89,-10,16,22,-61,96,-73,61,-28,89}
{42,85,15,99,39,76,56,16,3,88,92,8,57,68,43,63,91,64,8,80,47,87,58,95,77,34,12,16,90,98,32,44,59,61,49,64,43,54,61,46,22,15,23,67,53,97,9,86,94,98,79,10,62,51,81,65,44,94,57,96,79,62,32,83,25,91,8,67,6,66,13,5,39,1,80,14,37,2,88,53,83,79,23,83,83,5,65,28,12,94,65,44,76,29,11,81,19,33,50,85,64,93,71,55,19,19,55,59,4,61,93,87,84,79,22,83,1,85,24,47,83,7,60,73,65,77,50,36,100,85,19,59,70,83,78,78,48,72,37,27,50,87,83,80,100,76,4,67,65,62,79,45,4,52,5,30,2,44,81,52,57,14,27,22,25,94,62,60,43,39,47,97,64,80,31,75,77,98,37,6,17,96,77,95,94,59,47,40,12,85,66,37,88,29,55,52,34,59,77,95,85,43,4,58,36,100,14,77,91,3,51,52,68,14,39,44,85,43,95,77,9,62,98,30,5,63,87,46,87,75,52,14,75,45,7,94,97,60,26,93,71,78,70,25,88,17,28,51,97,19,16,63,57,47,31,46,59,87,61,25,64,28,84,47,28,69,45,92,82,55,14,91,31,65,92,30,28,5,47,56,37,27,58,84,35,67,26,53,98,52,51,63,70,23,36,95,71,38,37,77,17,3,50,91,43,12,69,95,61,35,57,76,16,93,99,41,41,54,33,74,40,49,70,36,88,59,77,42,88,51,91,68,31,25,12,71,25,50,33,40,49,95,22,20,1,12,23,19,20,38,89,3,78,97,4,2,62,19,37,82,70,75,89,65,93,36,2,8,53,93,34,62,44,15,83,30,83,51,15,84,8,53,46,65,12,60,61,1,3,84,90,77,8,63,99,54,76,75,86,38,11,62,11,52,100,88,49,57,76,88,85,2,13,74,23,80,96,83,54,87,20,74,62,35,95,1,14,45,47,43,54,46,46,40,77,36,19,30,22,45,39,60,20,90,10,79,82,72,21,54,6,74,76,20,64,19,67,78,6,27,73,86,16,71,65,45,46,39,21,57,38,55,23,53,54,81,70,28,30,85,15,95,79,19,71,50,52,73,58,77,19,54,65,86,9,51,52,31,68,74,38,89,40,6,41,4,66,26,9,80,47,37,74,75,28,22,47,7,4,82,85,99,77,51,37,87,41,79,4,14,99,59,29,77,73,43,67,38,8,10,61,25,34,93,14,45,84,52,20,90,36,50,61,5,19,52,95,40,53,91,98,25,93,55,30,62,3,30,59,21,48,2,80,46,94,65,48,6,53,4,34,25,29,6,23,85,63,54,48,80,7,80,84,81,19,33,18,50,65,69,3,42,49,25,68,2,29,35,91,97,52,71,47,49,87,36,99,57,88,4,49,18,6,31,100,93,3,60,5,15,33,43,88,24,62,52,18,40,72,6,87,3,60,50,34,33,25,35,87,81,50,6,54,69,24,83,11,84,98,19,60,32,10,82,98,53,54,28,96,28,35,76,65,1,99,70,17,18,71,92,67,6,14,57,11,98,78,16,76,47,72,47,50,30,59,58,41,34,54,13,36,19,86,34,12,17,39,40,26,88,2,93,34,43,16,1,73,90,15,62,38,15,28,98,13,67,36,3,90,79,28,59,69,33,51,90,81,18,27,32,76,55,2,51,59,53,52,18,36,54,22,44,42,67,46,34,44,40,72,53,60,6,76,100,70,69,43,20,17,24,41,79,77,80,43,65,71,71,83,29,99,37,73,36,71,49,49,43,21,8,59,12,99,77,58,78,35,40,10,43,11,46,74,5,61,12,96,96,71,51,78,32,55,81,86,50,18,29,97,73,48,52,77,49,16,55,39,86,82,32,12,16,78,53,32,78,42,56,59,74,62,32,69,58,1,90,14,47,71,70,3,3,20,49,36,17,23,82,67,41,73,90,25,65,60,53,71,84,97,63,22,33,9,38,40,60,78}
Returns: 1.1062442519524016E9
{-92,-35,-89,-45,-27,84,58,75,-46,40,-52,99,79,71,25,-90,-42,72,-92,75,29,-82,22,-3,-31,55,-75,-61,-33,-49,-80,-69,-72,-86,-32,-58,67,-69,98,-39,-50,51,-11,50,44,75,-38,40,27,98,-74,77,-46,17,-8,-93,-29,-20,-3,88,99,70,-47,64,65,61,-29,-100,-43,-56,13,96,-35,-47,-41,43,95,-19,-98,-62,11,80,-89,-100,38,-49,-42,38,-17,65,57,-91,-19,-13,85,73,-24,-68,-25,36,9,0,-31,-75,-84,-88,46,73,3,33,-97,52,-96,-96,44,-76,22,20,28,37,-8,-81,-55,-99,4,95,62,-17,95,49,13,82,-92,18,28,37,-63,-38,-98,70,22,-31,-55,-25,36,4,-10,-74,60,-29,90,68,-86,-11,-58,74,83,92,-99,54,61,49,26,55,-45,-7,38,-81,-78,-51,-100,74,84,74,-61,27,-72,-81,70,68,33,72,-65,-3,-29,-83,37,-52,81,71,-76,-26,10,73,62,69,5,88,-24,-24,-75,-79,31,52,57,74,-13,82,11,99,62,-76,-83,10,29,35,-87,-31,57,3,95,32,36,-82,-97,-11,-98,-15,56,-38,-53,-7,9,-25,50,-31,45,90,80,42,-24,-48,76,-28,-5,67,-75,21,87,92,42,-28,-22,63,55,50,-86,80,-42,-74,93,-36,24,50,-63,-60,86,-92,-54,31,61,-34,-12,-37,58,-82,-74,-86,-61,-35,-38,38,67,-17,-78,-41,-100,68,66,-35,3,30,-22,-37,-59,87,-73,-68,84,46,51,47,31,46,-55,36,-45,86,61,92,63,41,-100,-70,-79,-41,82,99,18,12,-92,-15,-38,61,-10,38,43,-84,42,-65,-94,63,100,24,2,34,-12,-97,-68,43,3,-100,-65,16,-21,79,34,63,56,-36,64,-85,62,31,-49,66,16,11,70,89,41,53,90,25,-18,-63,7,-83,60,-16,27,94,32,-19,65,-49,64,48,44,-10,14,-80,36,-96,-5,24,-38,83,-8,36,10,6,74,-9,34,96,94,46,54,48,-86,84,68,0,-34,-90,94,-67,-73,-24,28,-84,79,33,56,-50,63,43,1,-100,-5,33,-9,87,32,10,64,-87,-62,-60,-66,-82,-23,-49,38,-25,74,74,-84,66,26,-59,-21,97,-53,-54,-3,71,-12,-92,78,62,-19,-23,21,-20,-60,-90,-82,5,-22,49,78,-14,54,86,82,-88,47,-32,55,-92,-83,-21,-74,-100,-24,3,-30,-16,0,9,41,-72,-22,32,-15,31,9,79,-88,63,-57,-25,59,-48,93,-14,-24,64,12,-31,70,-33,-64,-53,-87,-82,-95,22,56,8,16,-16,69,-18,-72,-67,90,-10,-73,-23,-75,61,-19,-95,-46,92,-12,62,33,-17,-4,-64,35,33,-85,50,24,-99,39,-80,79,13,77,51,4,-12,-26,34,-47,-16,14,89,62,26,58,56,-51,22,47,-15,72,98,45,82,53,-30,-44,-3,54,-40,72,-17,47,25,29,-14,-58,-1,4,-21,-44,-74,9,-93,-59,60,17,-35,-7,-64,96,95,27,-51,-14,74,26,-43,51,27,39,5,-32,-6,29,74,67,-44,71,15,41,52,29,-17,-75,-17,60,9,78,53,-93,80,36,54,8,76,48,1,75,-25,-42,-27,31,46,94,4,87,99,-93,-4,-46,94,83,-49,99,84,-54,10,-19,-15,-9,7,-61,73,60,-48,21,-59,-80,-14,7,-55,-80,-23,-81,-61,-14,-44,57,97,30,-61,76,-98,-7,37,-18,90,-32,-27,-11,-67,45,44,-29,92,-92,61,-79,-78,79,44,36,-78,39,65,-91,-23,-9,-41,-20,-71,-37,-3,20,-68,46,6,-70,7,2,-62,-8,58,-91,-2,-24,92,-23,41,35,-64,-61,-8,-52,-71,95,-47,47,-60,-63,13,-13,-33,12,-8,-84,-47,-91,38,23,51,18,95,67,87,-48,76,-77,87,81,-6,14,-68,85,14,-73,51,20,-74,-8,-13,63,-22,27,-2,51,32,-79,-78,94,-27,13,-42,41,49,63,-2,-19,50,-65,76,59,-31,-47,15,-76,70,17,-30,25,-51,47,4,-2,5,48,-25,-49,45,-42,-60,36,-45,16,-45,-96,-36,52,-15,52,-87,96,19,39,-84,-46,35,10,-45,43,-44,-40,34,27,-2,-10,1,30,22,73,-45,-94,64,47,-87,59,-33,39,-43,29,79,-77,-27,-98,62,-59,94,-68,17,7,17,-17,-92,-51,58,-10,-56,-17,-39,67,79,-11,-82,38,-41,97,100,75,86,-76,-64,57,22,-42,2,-23,18,45,-79,87,48,-99,-90,-17,41,55,35,11,80,-55,-64,98,10,82,-4,-96,12,58,74,-59,85,-13,97,77,-18,76,36,20,91,-10,87,8,2,74,11,29,25,1,28,5,49,49,59,86,-47,-31,87,75,87,-5,-57,-20,-20,-56,60,-53,-70,-45,23,17,51,43,95,40,-68,12,76,62,-23,-53,-85,2,-100,97,15,54,-79,-7,-92,-76,-70,-91,46,97,46,1,70,-47,56,95,-81,97,66,5,82,99,98,74,-44,-49,97,-91,16,78,-68,2,-28,-38,54,-49,25,73,36,-75,85,-23,83,-98,32,-50,38,-96,44,36,-27,-30,62,-73,51,-91,-42,-89,-42,32,-54,-81,-12,-84,-52,42,-82,86,-71,68,-55,-70,-82,-68,-78,24,7,-31,-32,71,73,15,12,-67}
{38,15,-35,-78,51,-29,49,-90,-53,62,-1,7,38,-23,67,-88,-28,-72,13,72,-4,-13,4,-77,-45,64,-80,-50,85,27,-9,54,-49,-43,24,-15,-69,92,-42,-36,45,-48,-16,86,84,-68,28,-90,-62,-71,7,93,39,32,-21,-65,-75,9,-32,29,70,-68,-73,-36,93,67,48,9,-66,-63,17,54,71,85,93,88,4,41,-32,55,84,38,-26,-76,-16,11,-22,19,98,57,61,23,66,-34,-89,-73,-51,39,-17,-46,-8,93,-14,-39,-71,-34,-99,-1,-38,-71,-10,-1,7,6,-59,-76,-36,-34,-72,56,79,-69,-63,34,-33,94,43,48,-84,64,32,-98,48,-68,-2,-95,-86,-49,-43,38,-9,-99,82,-87,-11,-99,80,-26,-53,-65,-86,-5,43,83,-97,-49,-33,17,2,-71,52,-13,33,-33,-85,-58,-58,-85,78,-91,-23,77,71,-27,-78,-35,-37,-97,-93,13,20,92,-8,54,-79,-17,49,-98,60,32,78,-10,75,-74,100,61,-10,84,-91,55,43,-47,90,-74,46,-53,-69,59,-50,-68,-48,31,-72,-60,57,-42,51,80,-85,-37,-14,-66,45,14,27,-69,100,-88,12,16,77,93,78,17,-67,62,4,-49,-29,14,-62,-58,56,-89,58,-38,-48,50,59,-4,22,-97,34,-23,93,-32,-24,94,-12,-68,74,-37,47,25,9,75,0,1,97,14,100,6,13,58,-66,-81,74,-93,40,24,11,-21,33,-5,90,77,-2,56,-32,-84,-6,-74,84,36,42,46,-9,22,31,-65,15,-99,-31,47,-67,-38,-18,45,8,-64,9,-71,4,3,-21,65,-71,65,-47,31,36,-77,46,65,80,-3,-65,-28,-81,-4,64,1,-88,-5,83,-80,-33,-68,-62,-9,-11,19,-57,18,3,-86,-73,-3,-25,4,45,-46,50,-83,65,96,-18,84,-49,-86,-97,-45,-75,16,-22,22,91,-31,-34,-70,-15,19,38,-23,37,40,-62,37,-98,86,89,-63,-22,7,28,-98,87,12,16,73,-9,-2,-19,-98,-20,54,59,42,-52,-75,-99,-62,-89,31,94,-27,-47,-11,48,21,57,39,24,94,54,-56,86,38,55,-34,-38,4,35,-63,86,-42,-77,72,-63,73,-89,-3,36,-52,-80,-79,-92,64,43,-97,65,-60,91,34,-80,-49,-1,11,43,55,47,38,74,-57,-27,54,64,90,28,-10,51,-25,-8,4,-40,-4,86,-41,-21,-15,10,-91,66,48,-78,17,59,-62,37,98,81,-82,-42,48,37,9,99,-47,-56,83,40,21,68,-17,60,-41,71,55,61,34,-68,-1,20,-80,-40,-29,12,60,51,-10,19,-49,44,-59,41,24,-20,35,44,45,54,-30,-77,46,-89,87,-9,-92,99,-34,36,-58,-37,-9,72,-16,35,-35,-74,-40,98,-44,0,34,-5,-54,77,-80,-62,90,-27,-88,-17,-97,56,44,33,61,76,10,91,36,-52,-67,-77,9,5,79,-59,9,-35,98,81,60,65,34,23,75,20,-22,-40,51,21,-61,10,80,74,-32,-69,-51,64,70,40,61,-64,97,51,61,-31,-42,-56,-38,27,-65,-86,-2,4,22,93,57,74,-57,72,16,-22,-23,-43,-83,-31,82,-65,-5,69,-72,-37,28,53,2,-39,-44,-67,55,11,-41,-68,-26,-58,-97,45,68,-45,-83,26,-65,87,-19,37,73,-79,82,34,-76,18,22,-79,96,32,44,17,-6,83,1,58,19,-47,64,-6,-45,-10,-51,21,91,-100,-58,32,-42,69,-51,-26,33,29,-42,57,-49,78,66,-30,31,-46,-73,29,-70,-59,-59,99,-77,21,-36,36,-86,58,5,6,-24,-39,93,49,70,42,-94,-6,55,63,-23,-35,5,57,55,-70,84,2,44,20,-28,99,-41,80,-95,-56,-72,67,85,74,-57,-13,-68,-33,61,-87,-5,-50,41,18,-8,-77,-6,-74,47,-82,-55,-9,73,92,-6,-31,26,-65,-88,3,66,26,3,-4,49,90,-6,-10,98,54,-10,82,-5,71,6,22,78,-49,-92,89,-68,68,98,-37,-75,-86,-47,54,35,91,33,15,15,82,61,9,-56,-66,-42,61,8,14,35,8,-20,75,47,24,100,88,-58,-22,44,26,-90,82,-43,-84,58,64,-82,-56,68,20,71,37,-97,-15,-85,-96,54,88,96,-96,-29,-21,77,-63,-38,-71,19,-100,-36,-57,-35,-43,-98,58,12,-74,42,54,-37,-42,76,-57,-95,-34,12,-33,19,-79,32,81,58,97,65,-4,43,-99,-72,15,43,45,68,54,12,37,43,-18,41,40,-75,55,66,57,67,48,44,-15,-55,86,-27,-78,-74,97,61,-10,-23,-90,-65,84,-34,69,-52,-18,-11,41,7,79,-66,73,-59,-57,-44,33,21,67,-100,95,8,-7,-8,-76,-36,-84,64,18,3,-43,-68,2,21,-58,61,-20,53,-51,-7,99,-87,10,42,82,39,-100,-11,93,63,3,30,-38,-85,69,68,-55,-100,78,-81,-22,22,-43,-70,18,-50,-18,-73,-18,36,-26,-12,-77,-91,-11,-25,-57,24,-23,-69,-58,57,4,93,-93,-73,-93,70,-44,-88,95,22,38,56,-17,7,52,-35,-80,37,-66,14,-55,-94,15,-83,-15,23,77,-67,-78,27,-6,-58,-84,-47,80,-57,-83,75,34,-93,-28,-88,-89,52,-27,-52,76,-30,95,78,67,59,-75,-70,19,-19,0,-71,-62,-12,-100}
{-6,-74,17,-67,6,88,-50,-40,-14,91,-24,77,-51,-52,23,-38,53,-74,48,-76,78,-32,-29,-77,-36,-79,99,-61,-70,23,77,68,15,94,86,82,-93,10,20,-56,40,99,40,36,-36,-47,-34,86,-57,-62,20,26,-25,25,-98,-95,-39,97,94,-61,31,-85,89,3,-30,-21,46,-47,-22,61,-47,65,-48,-41,-41,87,-31,67,13,38,32,23,69,-33,35,-90,31,73,100,3,-51,-61,-59,-7,-100,-8,-70,-94,-70,98,46,-92,-19,-100,-82,23,84,77,-85,90,42,-26,31,5,0,85,-84,-76,75,-35,5,-75,-15,-95,52,-22,11,-49,90,-2,-4,52,-66,32,-94,-48,64,60,59,-92,94,65,-59,68,-85,5,-40,-60,-2,-19,73,42,28,-26,83,-97,71,-64,22,9,-42,-20,70,31,13,-59,-92,37,-54,80,76,42,-1,96,-87,-88,-63,71,1,36,-62,51,3,90,-32,-72,-31,23,-99,-68,-22,-62,-5,44,-68,64,-11,39,-18,-71,-99,5,-25,41,28,33,39,-20,87,64,96,-30,-99,47,55,94,52,-69,-60,-48,-21,-70,-53,35,99,-49,-34,-26,-50,-66,39,56,50,-12,3,-27,44,-9,83,-79,4,-12,4,56,24,-33,-51,-44,-47,39,41,0,44,-58,58,47,-56,-5,39,25,60,9,57,34,-61,-16,13,57,-23,-67,-44,-74,-54,-27,-8,-26,-69,82,-84,60,72,11,96,-31,-21,38,-20,-46,-28,4,53,-2,100,31,70,69,53,-30,-83,-39,84,95,25,-76,-4,-86,-8,93,-89,-30,-89,91,58,-41,-17,83,92,-13,67,0,22,5,-75,-68,66,18,23,-9,-49,18,-6,-45,52,58,71,41,-76,-56,21,20,-71,17,89,100,-14,43,-34,-46,41,-33,-72,-30,25,-76,42,-89,12,-49,65,-47,82,10,37,-95,-42,83,98,-96,-96,-23,49,21,99,-57,-73,25,-16,14,71,14,22,-86,78,-78,-61,-45,-66,97,-59,-58,94,-31,18,15,-41,-78,76,82,-6,-3,78,83,-91,77,0,3,-1,55,-97,10,-88,-18,-2,-77,8,-35,-62,-43,31,16,-48,46,-41,-93,-30,-95,50,65,-74,45,42,63,-43,-75,73,-5,50,16,-10,49,46,6,-22,-11,-21,-99,-72,92,48,-83,44,100,35,-80,-96,-65,-71,27,74,82,-9,-80,75,-40,-98,45,52,-25,-82,62,-25,4,-58,-97,-50,-45,-45,68,-50,55,32,61,9,64,-91,-50,68,9,70,-76,27,19,66,-61,91,-29,23,-12,79,11,2,17,-58,-29,-27,78,89,10,79,-94,-78,99,-63,4,-22,-50,-77,3,26,17,-3,-94,-62,58,66,-11,-92,-51,-58,94,12,-38,-64,-56,-44,24,46,-23,54,-35,93,-30,-89,-59,72,-34,-40,12,-4,46,-8,-31,51,67,-76,23,85,49,79,-69,15,-73,-93,58,-30,-66,-9,74,-82,-39,-7,43,16,-71,-59,0,49,26,-89,44,11,13,65,48,55,-40,91,-76,99,55,42,-13,-14,-42,31,60,-16,-10,-5,-60,-22,5,62,44,74,73,-27,76,73,31,-24,-22,60,-87,-77,90,-87,-86,88,-38,-77,39,-59,-71,-97,98,-74,75,-44,-29,14,68,64,37,5,-25,75,64,-55,79,78,-48,-24,-88,-62,1,-25,-66,68,9,-87,-31,23,96,79,63,83,83,-69,15,83,-22,-35,89,-60,-62,-15,-79,51,-63,52,12,-88,97,-46,1,89,-13,-48,17,-10,91,-36,-88,-37,13,28,-7,-84,-97,-58,-92,-50,-4,58,49,26,-10,61,-30,-71,-44,84,-3,-19,-39,-36,-13,-8,-97,-41,7,-62,44,-59,42,-80,-48,-11,82,-59,91,30,63,-52,-16,68,67,-32,-37,-87,-16,72,-92,6,-41,-71,-56,-90,-9,15,18,-29,-97,-46,-87,2,90,35,-31,4,-53,-53,49,-97,73,-57,9,55,57,65,69,27,26,51,63,0,-47,-18,-100,40,-51,-97,-5,-21,-23,-88,77,-34,-84,20,-7,12,26,-58,36,34,81,-4,41,-62,93,-56,-49,-82,31,85,-34,-60,-56,-67,-49,83,92,-75,-81,-15,-40,24,59,-37,12,18,54,-40,-30,-36,0,8,95,-71,-12,-80,28,88,-65,10,-72,-84,-100,-64,39,-19,-58,42,90,64,-52,57,93,-15,6,-57,45,-94,-40,-37,-90,-59,62,-44,-58,-52,-10,-47,-39,4,-80,-36,23,-53,-19,-88,-36,14,-52,37,32,64,34,15,11,-26,7,24,56,54,23,-87,-48,10,42,8,84,-90,-47,65,-46,56,-73,57,10,16,-90,44,-5,-47,37,-9,66,-77,86,-13,95,-94,63,99,-88,-72,33,-59,-63,74,54,16,75,41,-59,-68,-1,-65,93,10,51,30,-24,40,-60,-62,73,-25,83,39,-16,2,55,-67,-94,86,6,-51,92,-80,46,15,-72,-83,77,-94,16,99,38,-10,-87,66,-98,52,-92,83,-33,-36,-25,-5,55,-1,43,39,-23,-9,75,35,-3,1,82,34,53,-37,-99,-51,17,30,-75,50,24,-5,-56,-81,83,25,-23,6,83,-32,28,39,18,30,-73,-80,16,0,28,79,19,-17,-2,-22,30,1,-55,-83,1,-39,43,-65,48,-20,-56,92,99,-45,-54,-66,63,-30,37,-42,-89,86,17,65,-64,-82,-81,36,-77,19,-77,26,-97,-71}
{-50,-90,-26,-4,-45,-62,97,-94,69,-37,-80,-53,73,-35,36,59,-63,18,63,-5,18,78,-95,40,18,67,-22,-89,54,-67,60,84,-40,65,31,-56,-95,-99,77,-13,-83,49,-97,83,-38,-95,-94,27,54,82,-76,56,30,4,-67,-56,-21,-25,18,52,-22,-99,-5,-10,57,-17,-25,-49,78,-4,80,69,28,-72,-37,-51,67,52,43,66,4,56,59,75,58,22,-29,99,-40,-41,44,-27,3,-15,27,85,86,-5,-64,-38,-61,43,98,52,24,23,-5,28,41,32,-1,95,63,-23,-26,68,-22,-9,48,-94,0,20,69,-40,-73,-47,44,71,49,82,27,48,30,91,-7,-34,9,25,-46,-82,-61,84,100,-45,-37,-44,12,-1,-47,51,62,7,28,11,18,-99,75,-3,-86,-65,-70,31,51,-36,0,29,-84,100,14,-26,-25,27,71,-9,68,46,-39,-33,84,-24,95,63,31,27,-54,-58,79,-1,-34,90,-64,9,-18,62,71,-20,-100,69,-28,-30,87,-12,-56,91,100,69,-93,8,-62,89,55,95,-24,-86,-24,-18,-59,-68,95,-76,47,-3,-50,82,57,87,15,-57,-80,59,-66,-51,46,41,-71,-35,-3,-1,31,68,-35,-6,-17,-68,1,61,70,-76,58,17,22,22,65,-63,85,-38,-10,26,-59,-4,-21,60,20,-55,70,-11,45,52,43,-87,37,22,-98,94,1,91,14,-76,24,42,22,-5,19,-29,95,89,-31,94,37,-24,-56,-51,-37,-32,100,-83,-55,53,-16,-20,79,-74,-55,75,66,-75,57,-8,-34,-59,-65,13,-95,-64,2,88,19,-49,-17,12,-52,26,-79,98,18,-16,-31,59,-36,-61,-15,-57,8,-75,75,-75,-71,-7,99,-77,30,58,-22,3,54,-65,42,83,51,-46,-36,67,-90,-81,-22,92,84,-63,64,22,65,29,60,74,-53,-1,-30,-91,84,61,-92,-74,-38,80,-57,-85,48,-90,8,70,-88,-83,-38,-27,-76,-27,96,52,86,58,31,-13,29,-4,66,76,31,-76,-13,-21,49,92,-9,-55,-82,67,35,94,-66,64,77,16,61,-39,45,34,40,46,38,-56,-23,-4,-59,-6,-69,92,30,-90,60,-98,-82,-50,-74,38,-91,20,-81,-21,-92,67,87,-22,69,57,-34,64,-50,-3,38,-55,-88,-6,24,99,-41,-84,29,69,-80,-76,5,-57,75,-18,-90,85,71,-72,-40,-22,-32,-44,-67,-28,56,47,39,73,-6,-31,-36,-96,-17,-43,-55,-72,61,82,-89,-34,74,32,-43,96,14,-80,44,-62,-39,85,-18,-29,-96,-81,-77,-94,8,-33,2,-38,23,-21,-86,89,-67,37,-98,35,1,-45,95,-72,67,-55,-68,-62,-76,80,30,-33,35,75,81,9,88,54,-51,35,90,-18,-75,-55,22,-9,62,-33,-30,56,-58,-20,-73,55,64,92,38,58,-81,-91,51,89,87,-6,48,61,-30,-70,13,-52,17,-94,7,-53,94,35,-35,-35,-55,-73,-6,73,80,7,55,-63,-26,-91,65,-26,-15,95,-27,-31,56,-64,44,17,-99,64,-10,79,-35,-79,15,-39,-58,46,-76,-27,-1,-63,4,53,41,-34,-26,13,-7,-73,-14,94,23,58,-57,81,-40,95,-7,27,26,-28,87,63,39,-69,-46,-20,25,64,23,-42,-63,68,-40,-16,52,81,27,29,96,17,76,38,-43,-71,58,-96,14,99,76,28,5,48,-80,-44,-96,97,-40,66,49,-53,39,-51,-10,53,98,50,80,-25,-82,-10,-90,53,-38,-64,-5,-60,90,84,81,93,19,4,80,-36,-98,7,-73,-15,4,96,-55,95,62,-77,-22,-93,83,46,-84,-56,-12,-65,17,38,12,-43,-76,4,-28,-94,-24,-21,83,29,-18,-32,-72,53,86,-70,96,-80,-1,44,-1,-82,55,-5,29,50,-75,76,-77,-36,89,83,-59,85,72,-47,-77,51,33,-92,98,-39,-99,31,-80,-31,-53,31,-68,-30,26,-57,-75,-5,83,-61,-47,-64,23,23,-72,-94,88,38,100,-45,99,24,29,-35,-95,22,-52,-11,95,44,21,-22,84,4,-6,-93,-3,51,95,52,72,-6,93,-45,-74,26,-55,58,-85,-33,-13,-64,55,-10,71,-90,27,39,-89,24,-45,62,35,-13,-55,94,96,-61,-82,-98,-13,84,58,58,62,-61,34,-18,-85,-57,-99,78,32,62,82,-52,7,47,-80,-99,41,-59,-75,8,-80,-2,-20,17,-18,-34,-46,-86,22,99,37,-63,63,-19,-29,-27,-100,-49,-46,99,10,5,-36,-47,-95,-29,-48,63,7,80,60,14,-66,-47,4,-29,-18,-2,7,48,-92,80,-49,66,-49,-50,-24,32,48,4,-47,-89,-76,-79,-72,98,-84,-98,-54,28,-24,-21,42,21,22,36,24,89,-99,2,-57,-84,48,-6,-82,70,-57,60,-59,-33,11,84,-3,22,-78,-81,99,55,-92,-75,35,-54,-47,-18,44,22,59,23,-99,-65,-27,13,69,-56,-5,63,-84,-18,-23,87,-99,35,14,9,97,98,74,-1,-5,56,-53,72,-26,51,-35,70,46,-34,-53,82,84,70,60,91,58,-20,-43,64,-86,-93,-74,43,-29,62,-31,60,-78,-64,-7,31,90,-71,23,62,96,-49,96,-40,-1,-100,-47,20,-36,41,97,-76,-73,-48,-47,-95,59,-57,60,91,-61,14,48,51,-1,-97,-87,-14,2,-20,32,90,-84}
{35,38,78,68,34,2,47,5,74,47,95,84,41,59,65,3,20,26,8,1,62,96,80,26,52,54,61,30,17,54,82,51,19,8,63,20,78,62,72,14,67,42,26,5,17,75,91,1,9,73,19,28,78,92,49,49,57,34,53,93,4,49,96,82,67,95,81,79,95,69,5,42,74,59,67,84,72,14,59,8,17,79,46,19,68,84,71,100,77,60,4,36,78,48,61,14,87,40,35,79,42,99,86,42,74,61,53,2,29,79,86,66,50,76,68,55,58,7,100,28,64,54,60,79,77,12,63,18,78,77,4,30,70,47,76,40,25,44,28,26,79,40,32,34,73,20,16,1,53,16,24,72,96,6,75,99,63,77,70,54,21,4,43,40,44,38,34,75,14,11,94,55,55,62,34,34,16,71,73,52,66,23,47,10,42,58,70,78,16,98,75,24,6,71,3,80,93,84,16,58,41,74,92,74,40,57,60,18,11,4,21,99,87,52,7,33,51,23,28,81,55,14,66,49,70,7,79,61,85,45,98,58,11,79,1,52,96,61,91,55,48,33,87,26,62,27,8,39,71,15,11,55,74,35,21,78,76,54,84,45,26,33,29,9,68,50,72,46,19,36,29,53,57,70,41,29,8,77,87,60,80,14,95,54,16,58,23,13,98,40,41,73,78,28,5,50,43,70,76,45,18,1,26,96,15,9,93,61,49,72,99,6,56,53,42,94,57,9,7,63,52,71,10,27,15,29,70,83,35,74,88,34,21,80,41,14,84,22,36,2,75,79,32,40,65,28,86,24,33,4,26,25,34,48,31,9,92,21,38,57,4,78,82,79,3,80,22,73,64,100,3,52,31,49,42,76,74,38,53,30,75,45,51,87,92,13,100,47,43,71,49,81,7,28,68,42,44,96,14,90,76,3,49,51,23,24,17,100,90,41,98,59,78,27,80,58,24,13,61,31,9,53,37,55,46,71,38,18,3,39,84,77,74,39,66,27,61,71,64,20,26,49,72,74,95,85,93,19,97,97,33,67,81,92,34,36,41,56,49,3,31,82,87,6,73,76,11,61,13,40,23,36,90,33,12,22,54,55,11,5,90,31,54,59,79,34,96,19,39,62,25,76,93,47,37,2,10,65,69,83,98,49,3,40,97,61,60,43,97,66,96,10,68,43,52,20,44,45,52,49,34,40,84,16,26,98,22,57,27,1,39,94,89,90,44,39,8,64,100,92,52,52,68,11,75,90,48,99,70,30,78,54,24,93,92,42,21,76,31,75,77,3,40,7,56,66,9,100,100,18,25,90,23,97,48,27,57,50,68,41,43,79,97,10,81,74,42,71,24,46,9,34,57,15,46,20,26,50,90,25,46,57,27,100,6,95,29,97,4,46,100,69,22,40,6,21,61,10,56,12,68,79,44,82,68,43,49,8,64,63,50,49,37,13,15,27,34,40,68,80,23,79,60,91,35,14,25,31,25,50,13,75,26,50,67,50,97,7,38,43,89,91,85,62,17,73,53,48,42,47,3,90,32,6,90,32,2,76,74,63,90,41,4,14,94,68,87,96,24,20,15,42,10,11,11,55,48,68,28,57,60,85,3,46,81,26,81,90,83,23,68,73,10,29,9,84,92,31,48,70,56,97,22,32,83,54,77,98,100,87,38,46,32,45,32,52,98,2,19,19,54,41,47,40,76,78,100,36,96,96,5,8,83,86,7,46,1,90,2,31,64,10,12,2,56,29,41,2,59,2,60,38,2,8,25,72,39,24,70,28,93,89,39,42,65,18,5,44,4,31,37,91,93,72,45,36,51,67,94,6,80,70,20,60,54,7,65,48,67,49,85,59,58,27,80,50,34,95,48,58,15,71,56,60,64,49,69,30,52,54,4,49,46,14,4,51,18,79,77,70,19,76,65,40,65,77,68,18,33,89,100,59,98,39,63,34,67,71,41,17,24,19,8,66,46,29,52,11,63,91,47,55,47,100,82,76,8,24,35,31,70,76,17,53,50,89,36,27,21,58,59,82,8,8,57,46,52,37,6,83,15,33,81,40,23,32,96,85,63,83,6,90,1,94,28,1,8,2,83,87,15,80,2,81,85,8,36,64,9,58,12,83,81,37,90,24,89,74,99,31,65,19,36,55,41,16,52,65,84,24,36,47,64,48,99,3,69,78,9,31,56,100,40,58,95,28,78,19,35,22,100,89,12,4,66,12,93,63,22,73,31,25,59,100,9,23,17,34,26,22,87,78,77,77,32,69,97,90,78,44,3,85,28,37,97,94,99,60,8,31,55,19,22,80,87,92,24,52,74,68,13,72,19,55,61,56,72,97,26,67,93,29,9,41,55,64,62,29,12,32,68}
Returns: 1.4451174177353966E9
{-45,56,38,55,77,-8,9,-40,73,-47,0,-83,-67,23,-82,-61,69,46,-9,56,60,11,95,-97,10,-79,50,23,73,-31,88,3,87,13,4,16,10,-69,77,87,-40,-76,-83,93,89,-92,-7,31,14,-15,90,41,-16,-75,-64,-55,58,-27,-20,-77,22,-67,56,-100,-80,10,69,35,-80,-3,-24,-61,-35,67,-41,5,-25,42,42,-65,72,-23,17,74,17,68,-46,-60,19,-100,-57,-19,-67,15,-17,96,-91,35,95,-15,-1,81,17,50,76,12,34,-34,98,-28,-55,48,-5,90,33,22,-36,14,-76,-56,-26,61,-92,9,64,71,-65,5,8,99,2,-59,-93,-89,71,41,95,-42,7,4,-72,85,61,47,97,50,-64,-18,33,21,-5,-10,-68,-81,35,-35,27,-64,22,14,95,-74,41,44,-53,-48,97,0,-27,-29,88,-64,1,-99,63,77,87,-36,-40,-31,30,-56,33,80,-18,-20,91,61,-94,-38,55,84,36,94,-85,19,92,-55,-77,-93,-9,-65,65,-99,42,44,34,-16,-31,76,-81,60,11,11,35,36,-99,-40,-95,-92,20,-6,72,22,11,17,-48,-59,55,-93,76,-95,-13,-41,-12,-60,-39,41,4,9,-13,-16,9,-15,-18,39,-27,1,11,18,84,-68,-71,6,95,-18,76,-4,-76,59,23,-25,53,22,42,23,-95,24,90,-15,-56,-85,17,-91,51,-28,51,-93,-95,-14,84,32,-37,23,-96,-14,-50,34,-16,97,-76,53,24,-98,57,-51,8,80,47,-65,65,41,5,-21,8,3,-12,38,24,81,-77,67,99,-79,24,37,39,67,-63,-31,58,97,87,-41,-43,2,-29,62,94,12,58,-1,-28,4,8,24,82,-88,35,-71,59,-29,-41,36,48,30,-52,-40,5,-92,-63,-33,-98,72,-46,-65,65,-55,-11,93,91,30,86,58,-70,-92,-13,-91,73,0,75,-82,-34,-32,37,98,-4,-53,-68,-97,77,-69,-17,-100,-20,33,-91,76,59,5,91,56,60,-76,-87,-92,-71,85,-21,64,-78,2,-98,42,-45,-98,-25,21,-17,-10,41,-35,-18,4,74,-100,25,20,39,85,98,-48,-27,23,60,-34,-57,-25,-82,67,64,74,-75,-55,-73,-5,38,-28,-57,-67,-20,-77,23,-69,25,-34,44,-33,-87,40,57,-15,10,1,28,-58,-71,63,33,46,-57,-49,55,-82,22,-89,-85,75,77,-94,63,-27,-99,-55,-33,34,42,25,73,29,-16,52,82,93,-33,3,-30,-85,-83,-45,-22,47,-67,8,43,53,-60,51,-11,-31,87,-9,60,-13,54,-96,11,-48,15,-27,58,56,6,12,53,32,15,98,-87,-79,-32,72,51,74,-58,-69,-17,-48,-6,47,74,5,-16,-61,-29,79,48,-17,-98,71,-61,86,25,19,-3,-39,5,3,42,-1,-95,-12,48,30,-21,75,33,-46,-61,88,-77,30,-6,34,-11,8,96,7,-48,23,11,-19,-71,44,-5,-97,93,-41,-9,97,9,-50,97,16,-70,-11,-16,-23,14,3,-30,-29,-11,-60,23,-20,72,-27,-3,34,-97,-100,-17,40,-14,-78,-98,-32,67,84,51,66,23,-85,-23,56,24,49,67,68,31,-92,76,38,-82,-52,77,29,55,-54,-42,26,-45,-47,55,-27,10,20,-42,57,99,59,38,-60,61,22,49,26,60,-95,-63,23,2,61,-17,-21,100,-91,-40,71,-33,49,85,-1,-6,59,8,-72,60,-56,69,-42,-8,-47,88,96,-51,63,-41,91,15,-51,5,-12,-93,-83,-9,-64,20,87,72,-5,35,-73,58,-80,87,-40,-14,-18,68,-55,97,22,46,-86,-59,-32,-17,35,76,82,-100,20,9,-89,-78,-36,60,-70,-33,-90,-62,30,-57,-71,-63,-43,95,43,-54,96,3,95,-17,13,-28,-41,-82,26,6,-60,-88,-27,-10,6,-96,-83,12,-81,-52,-50,-31,-6,26,-64,-74,-77,17,-29,-76,-38,-25,-84,82,-77,-94,28,63,14,-63,-16,-67,28,17,5,-100,97,-3,-60,-38,-3,12,88,-10,-2,-26,48,-77,-37,-77,71,37,-83,45,36,35,-97,-95,54,13,1,-13,70,-72,91,87,55,-74,85,-73,4,72,9,37,-72,-30,-57,-97,-33,-23,18,-25,10,4,-18,22,94,13,-23,-62,-22,-15,-18,52,-56,27,13,-42,63,19,-81,-94,-48,88,-75,-65,-19,-74,-23,-46,-94,85,-67,-20,36,-86,80,-69,-70,-43,-55,5,56,-67,-57,82,69,10,-39,28,-94,17,-98,-2,27,-4,86,83,-32,91,-13,90,78,97,60,94,-14,29,7,62,-4,5,99,-94,11,-33,38,14,-81,-65,35,-66,-77,-69,-52,54,98,55,51,-89,-41,-96,64,-60,-61,68,-83,-81,40,90,-82,-75,3,-42,98,66,5,-28,75,45,57,-93,-45,85,84,73,80,-98,-55,85,-84,-49,-39,68,18,-100,85,58,-81,65,-86,74,43,72,30,-7,-90,-9,49,83,56,-46,44,-99,20,35,13,37,-21,-24,-13,8,69,-82,-49,26,-61,77,-15,-20,-58,-61,-85,0,71,-60,80,22,-7,-8,56,-5,-35,76,11,46,90,-85,73,-68,-3,3,61,33,-10,58,-40,-83,19,85,-13,-96,-55,15,36,-11,-29,-22,82,-92,-79,-53,-39,-62,12,-82,76,-62,40,-87,74,65,-4,-66,51,93,-79,-68,17,-30,5,97,-53,6,42,-77,-98,-36,76,-8,-55,-70,78,-85,82,97,-84,41,9,29,53,-5,57,68,56,-63,-31,-64,-31,68,-75,-61,-76,-64,-72,-39,21,13,-25,13,4,-38,69,89,-21,9,-80,74,51,-31,-46,39,-36,91,-86,81,27,21,90,60,61,38,-93,6,41,28,-57,7,-87,-49,-4,-12,35,-98,93,75,67,-99,38,12,26,-25,-10,41,59,-83,66,-13,-71,-72,-81,-100,-47,10,87,-79,74,-7,-55,33,19,-23,91,-29,-58,-33,-97,79,-68,-1,-47,-32,-66,94,-47,-20,-84,62,-24,91,5,67,38,71,96,-68,23,-4,61,99,71,-65,-29,5,-90,-28,63,11,90,56,4,53,-86,-79,36,-6,-98,55,-95,-95,-66,48,21,92,-32,46,-70,-23,100,-51,71,-50,-71,17,62,-21,38,89,31,1,45,39,80,30,-99,51,-100,-93,38,-66,-69,5,78,50,19,-55,-85,-97,57,31,-39,-1,-31,44,-48,35,6,74,30,-86,-52,74,-75,97,-90,22,93,53,-5,-6,68,40,29,-83,60,55,-81,-64,-63,-90,35,35,-2,9,33,-40,-20,-95,-29,-50,-80,-8,15,47,54,-47,33,15,-26,-95,-79,-33,24,67,11,84,-20,68,-27,80,-16,-40,48,-24,83,81,15,12,-96,49,39,58,-33,-79,6,-23,-27,44,51,-92,-98,93,-90,-36,-68,-36,-39,-49,-46,74,59,78,-31,62,4,-72,-45,-3,58,-57,-37,-6,-69,-10,51,-84,-3,-31,-48,33,-30,-26,-90,73,-43,70,-71,-48,-19,-45,-61,16,42,-47,-95,75,-99,-58,61,-83,54,74,82,26,-22,82,-78,11,-60,37,-57,-25,-20,-25,-23,-8,10,87,27,5,-15,-51,6,32,-30,-62,84,100,32,-14,36,-77,69,95,65,88,-60,71,-98,-85,92,14,-20,-74,90,-66,-71,62,12,-40,-67,-28,-53,78,63,-68,-72,7,99,-85,39,-61,42,6,-3,-79,42,-72,78,-7,32,-79,91,-90,41,8,7,-54,10,-30,-10,49}
{-82,-47,-8,-92,31,-71,-61,58,-67,64,29,30,-46,-81,81,-16,-48,-95,70,-56,68,61,84,-76,-53,-80,72,45,87,-45,-8,43,-68,-75,-51,13,67,27,-84,-47,89,-8,-76,-76,-2,65,72,-18,97,35,-11,75,-68,-88,100,-100,-78,-98,44,-82,-88,-79,79,-56,-28,18,-63,-13,34,42,65,-2,-39,38,76,76,31,44,49,72,-77,89,-83,49,14,55,81,40,-6,-52,-71,76,37,12,-40,82,98,35,21,-63,31,92,-68,80,74,67,-81,-97,86,44,78,-80,72,-51,21,-55,-87,-23,-43,60,50,69,70,64,-32,23,89,-16,-99,35,97,4,-41,-76,-89,49,-44,-40,83,45,-51,89,-71,4,68,6,67,12,43,33,-25,4,-56,0,70,-71,-18,77,-5,-93,27,-48,45,-56,-45,-98,-6,-45,74,-47,-56,39,2,-72,42,-53,61,7,-4,70,74,48,69,-100,49,-26,-18,-62,-12,-61,77,-1,-70,75,-79,-46,53,27,-31,-68,9,24,41,71,-93,-15,-66,-72,22,-41,-58,-37,39,-28,96,73,64,-77,-57,-58,34,-12,42,-73,-95,-35,6,-47,-83,28,76,-66,89,-72,-73,-42,-59,-52,74,-78,-18,80,-97,66,78,-4,-97,99,65,-51,54,-10,72,31,-6,-52,-56,42,97,-93,12,90,-94,-85,69,90,83,-2,-18,13,-13,-3,-74,-8,64,33,35,96,65,20,16,31,-91,-4,-34,-22,-25,30,61,0,54,13,27,36,-43,69,57,-65,68,55,-52,-19,26,63,-65,-18,-41,6,-89,47,51,0,-83,-8,-11,59,-42,-43,-51,23,52,90,-3,-82,-52,-43,29,-92,99,87,-65,100,79,1,-20,69,-21,93,-96,64,-39,79,57,40,17,-91,84,20,-28,86,50,87,-82,36,-49,10,-15,98,83,7,6,-8,87,1,77,-39,-55,50,-43,80,60,-72,41,-20,82,-72,61,-22,-18,89,-16,87,60,-44,-67,21,-59,-67,-61,-20,-64,-23,35,21,-20,-29,90,-63,31,23,-7,4,-51,-84,7,57,52,60,-4,23,1,99,23,-41,-40,67,-43,-98,-63,-24,36,-5,19,-93,17,-4,88,49,-53,84,-69,-65,-23,92,38,-59,-35,-62,1,90,-68,63,-29,32,41,99,-90,-75,6,96,51,94,-13,25,-27,46,-61,-16,-94,47,50,-23,-64,60,-44,26,-54,-28,-29,32,94,43,-56,-79,68,-22,19,63,96,-66,69,92,-21,-11,-75,-72,-93,-63,-27,-70,11,-62,-100,11,-5,44,-24,-99,-78,-71,-25,33,-97,78,-80,90,95,-45,-69,-8,10,63,-26,39,-97,43,-29,76,95,5,-44,-47,-33,-99,95,43,32,7,-20,24,-35,44,23,77,-58,92,78,43,18,-28,-48,82,-2,-36,-91,-39,32,88,59,-79,-75,-14,-81,73,88,6,-46,82,-91,86,-59,-41,-9,58,-93,-51,33,-17,-92,-3,-52,-54,-77,95,44,-44,-13,42,-7,37,10,45,-89,16,71,4,39,-44,15,38,45,31,63,36,57,79,59,-60,-63,-40,-9,-74,-28,69,58,-66,13,38,61,-58,89,-33,56,25,-64,-35,21,-4,-100,85,-39,-88,72,57,19,92,28,82,-97,-46,35,100,40,23,41,20,-93,63,-64,-39,-4,-23,-18,44,14,-23,-44,20,65,-87,73,-12,14,46,-45,-64,44,77,-98,66,54,61,48,-44,13,12,94,36,-29,-31,-47,-43,-16,-56,47,97,-94,-71,-48,-81,-87,-19,36,19,-36,8,-45,-51,79,-98,-22,53,-37,-96,17,26,69,-88,51,23,-45,92,-100,-96,-90,-4,-39,54,40,57,-67,41,71,-34,-45,30,62,-57,45,78,-42,-57,77,-56,21,-39,-70,49,-35,50,40,-74,87,-20,-50,-50,-27,-36,-46,16,-75,-37,-13,-68,66,20,-57,-38,-50,-35,-33,56,60,-14,9,22,-97,46,-1,-24,-80,-79,84,-57,73,-79,100,-13,-49,-62,-99,-14,53,12,-21,97,-70,-39,-38,85,54,0,-41,64,-8,27,-100,-96,-31,66,-14,-26,-86,-94,26,-11,-89,5,-89,-28,-82,89,70,48,-86,-94,-91,28,-69,20,-11,89,11,81,-93,77,-63,-72,-41,-52,-88,28,-22,87,46,28,-76,15,-44,44,-99,98,13,-59,-86,-7,77,-77,-87,97,-50,19,16,26,-35,90,-36,61,45,-88,98,-99,57,99,18,-58,-66,-30,75,-30,22,-61,-22,17,55,-97,-78,2,-91,-8,-93,83,-91,14,-85,100,98,-45,18,24,71,-85,2,6,-94,-96,-24,-84,-23,-67,99,22,-49,-95,-68,-88,13,40,-92,-32,-47,29,-100,-41,57,-16,-59,-95,11,94,-2,-95,77,-14,52,-47,-54,96,83,-59,55,-44,76,19,21,-65,-23,21,-77,98,-38,82,-53,-85,-64,-71,94,-35,93,-76,-27,-97,48,-69,-35,-62,95,86,88,-57,-100,-38,84,72,-74,9,8,-81,-64,4,54,-21,42,52,99,-69,-97,-92,-46,39,-81,62,-4,-92,-70,4,74,47,62,53,-34,6,-47,48,24,-82,43,0,95,14,84,-30,-75,71,20,-11,12,38,-20,63,36,-29,-20,35,-25,-45,-98,-44,22,1,41,-91,97,29,1,-45,-69,12,-24,-17,35,64,32,-52,-24,16,-20,-66,58,3,-61,-13,81,-100,-51,22,76,53,19,44,-2,-95,-2,73,63,-98,-31,-70,64,49,-34,-8,-36,67,72,7,81,-59,-39,33,-2,-8,-97,-54,-100,74,-22,-57,-34,68,-97,92,-98,-74,-56,-74,-26,72,-77,-25,35,73,-75,24,59,95,-36,29,-84,-72,-47,-32,62,-8,-61,-44,-37,35,-100,12,-90,70,-38,95,-56,-5,-41,72,-43,-14,97,-46,21,86,74,0,49,65,-26,-67,-20,-53,-56,35,65,95,-86,-82,17,62,89,-85,96,-75,45,65,79,-41,62,29,-89,13,-33,-47,16,-84,16,-13,-21,-48,-34,-54,60,21,13,71,-15,30,-1,8,-25,58,-32,62,25,-62,-39,-78,-99,-22,-71,-2,-99,-10,-17,91,-68,-77,83,59,19,65,-63,-78,-55,58,77,34,-11,-55,14,-99,41,82,-33,71,-50,-50,46,50,-9,-23,68,53,11,32,-59,-23,-40,-34,-94,13,-76,-40,12,-80,2,-73,87,31,-99,38,39,68,92,-56,-68,-89,-41,77,-29,86,-99,-53,33,1,37,-11,14,23,-29,14,59,-62,-51,15,78,20,-17,-21,71,-6,-72,37,56,-100,-94,39,-19,95,-87,-93,12,-28,5,95,-100,84,41,-48,22,-1,-28,8,-68,30,8,42,74,-2,-99,23,34,14,37,-69,60,-98,47,34,13,-86,30,-52,-40,51,-18,40,-11,-69,-53,7,-32,49,11,-24,73,53,82,-40,-65,50,-57,-46,99,-90,-30,-42,2,-81,-14,7,66,-61,-79,-87,89,13,-33,70,26,-34,-9,45,7,-57,-68,-5,-38,62,85,-84,-23,-39,37,28,-97,70,-71,28,-1,26,90,36,-74,-50,83,71,-35,94,-62,37,-27,55,17,16,77,-6,-21,1,54,-36,-26,49,-63,-72,72,-20,49,-85,93,7,-22,60,44,33,-17,-67,21,36,-84,-82,-39,-92,92,10,30,39,-28,9,52,57,53,-64,-92,-88,61,32,-36,11,-9,41,-12,51,-14,5,-62,36,-61,-77,51,17,-55,4,82,-29,68,-52,-12,-49,76,-92,10,58,49,91,64,-59,45,-40,-28,3,-13}
{-15,-81,-13,-68,29,-7,-56,-29,90,-79,-94,91,-98,65,75,-19,92,60,-75,-71,-21,31,-97,-97,-11,87,-27,26,-23,70,1,92,64,40,-59,-1,-36,-60,-95,-70,78,-90,27,44,-1,-6,-64,-78,18,-86,-87,65,-17,9,-100,77,11,17,13,17,-50,-44,-67,4,45,75,24,89,48,53,-45,9,4,-45,-76,14,-43,-95,92,72,-34,76,-36,79,-76,15,34,-85,-32,37,58,0,18,-70,-11,-40,79,95,57,-77,98,25,-97,41,94,39,12,39,20,87,92,9,-6,-83,-27,-38,50,-1,74,-16,-28,91,-40,64,-88,4,45,80,76,-58,-38,3,-44,-98,72,66,-30,31,65,-46,-46,15,-47,92,-29,-84,91,72,-87,-52,-59,48,-55,-58,-47,-9,-68,70,-64,-36,-66,100,-16,2,-32,62,83,-68,1,-33,-40,3,47,-46,65,75,45,-54,-21,-38,86,86,-81,-95,-6,87,12,-99,-34,-82,-13,-65,22,19,-21,23,-81,41,98,-39,83,-9,79,-98,-45,-9,-72,-24,-68,28,-81,61,-87,-68,-83,74,18,-89,79,-62,-36,-92,-20,-59,97,93,-59,99,19,17,-99,46,85,-63,-58,-43,0,-68,-35,4,82,-71,-34,-9,-73,8,-17,-85,-21,-94,-71,10,56,81,-13,91,95,74,-13,-59,-67,-61,44,20,-60,-31,-92,26,-85,47,-37,-79,71,14,-45,-43,-97,-16,64,32,17,-71,91,-23,-72,-72,40,57,-49,-41,-15,-51,75,-93,24,56,-13,63,-82,-70,47,54,-18,71,62,-65,-42,-38,-30,94,21,86,14,-90,15,91,45,10,58,-81,83,-99,39,53,-69,2,-70,-72,-44,-55,87,-74,-6,-29,95,42,-93,-8,-7,92,-28,-15,92,91,12,18,91,88,-83,24,23,60,-89,-9,18,20,55,-40,-72,-76,17,79,-53,12,-90,2,-3,-5,99,-77,-23,34,77,23,3,-58,79,70,-81,-80,30,-84,4,-94,52,79,-61,8,92,-85,-3,-7,63,-100,-54,96,53,84,51,30,-27,-44,-69,64,33,47,-68,-1,20,-9,31,-45,8,60,34,-65,-73,43,-5,-36,72,-34,-85,-39,57,-98,-13,10,-27,73,-11,3,-35,-94,45,63,84,-24,-78,-80,-49,-71,49,7,44,59,30,-95,58,-78,43,77,-59,13,-95,-10,18,-25,25,-27,-30,-7,61,5,-89,-75,-27,3,-77,62,-58,-55,-91,10,-82,29,-35,27,-25,-35,-15,84,-73,78,-55,36,-89,80,67,-12,-94,-94,-17,-76,37,77,2,-99,-3,66,-93,-6,1,25,-82,-45,-33,50,-38,100,-60,-9,50,46,70,-6,65,24,-53,31,-88,27,72,-2,-58,-51,57,-22,-15,-96,33,24,-87,59,-90,10,-94,-62,28,-31,-48,0,-41,-15,21,-43,92,-47,-99,-42,77,50,-7,81,89,-84,-37,-61,-70,15,21,89,82,69,51,-65,97,80,73,100,6,-10,11,62,-46,-81,-24,-87,-98,27,9,36,53,10,72,-20,54,73,-7,4,87,-98,-16,38,-56,83,15,-39,63,27,-99,-97,100,-87,34,91,-90,35,24,-63,32,-59,83,-45,8,-43,71,-22,35,-60,-88,-24,-26,90,17,-33,-30,-31,-94,30,-96,-10,30,-48,68,73,70,87,-96,-17,90,-2,3,23,-11,45,-9,68,-32,-8,-37,12,78,-38,-88,-70,-69,-31,68,30,83,-54,69,36,-42,46,-50,-74,84,7,-26,21,-61,85,-29,3,54,41,-48,58,-66,83,-22,22,-82,-72,-7,100,67,-87,-40,-10,70,35,-30,-6,25,97,35,98,-18,-12,49,64,58,-66,6,69,-4,-83,-17,41,-75,-1,22,2,-11,-55,26,71,-13,-6,93,74,-77,-7,50,-61,15,83,80,61,89,9,-79,-31,-20,0,16,-35,-91,-30,5,37,-79,-43,82,5,59,81,-59,29,41,-69,-14,-66,38,-4,91,-77,28,67,-24,82,59,10,74,94,66,81,-63,-53,-99,-58,-97,-75,21,81,88,59,65,-60,44,46,-42,18,47,29,3,49,-18,-40,-6,56,76,9,60,62,-46,82,-69,-14,-41,-19,-25,5,-80,61,-21,84,51,-11,-94,63,-94,-100,-92,16,21,45,-81,-4,-75,57,41,-94,-50,-92,-15,-19,-99,-89,-77,71,12,-5,-35,-11,89,-76,-2,11,63,80,95,-41,-76,-53,2,-89,-100,-23,-49,-25,-95,97,-94,96,19,-40,-67,-3,-84,-6,53,-2,92,-18,-80,64,-82,37,-30,19,-66,-13,44,8,-85,37,43,-95,85,57,-59,-81,-4,-24,10,-79,12,-10,-75,72,94,-86,-30,-29,45,-46,-60,65,-60,-88,-32,18,97,-96,24,-5,-32,89,-67,68,-24,-77,67,-86,-71,-20,-39,-27,93,63,81,66,93,30,-8,2,2,-62,60,78,89,70,-18,-49,-64,-22,-42,-91,-58,-90,-74,36,51,57,-48,2,-100,24,-68,37,23,-81,34,-47,64,-84,-16,38,55,33,-18,67,-62,88,-84,-63,-4,-32,64,-20,22,69,-70,-41,-49,51,27,36,37,-72,68,58,-14,70,12,94,22,61,86,-67,-10,-92,63,-48,-4,-86,27,53,16,-33,-44,-25,-87,7,61,-97,53,-62,-67,-12,-90,-41,-43,-46,53,-72,-45,-52,77,7,88,74,72,-41,-52,-56,38,28,13,-29,28,-41,-8,-62,94,20,43,93,64,-25,-9,-100,96,6,-56,73,-98,5,86,43,100,-45,65,50,69,-96,57,-82,92,37,-44,43,100,40,67,-14,-86,74,68,14,88,58,-100,92,-14,15,98,-94,-11,-55,-67,-9,58,4,51,-19,-59,40,-88,50,83,-53,-87,40,-72,76,64,-56,-52,73,95,-37,-76,6,-93,12,57,76,24,51,-37,15,9,-40,-17,45,-34,90,-30,-59,-66,91,-86,65,-42,-64,84,20,-52,49,-5,-17,2,45,28,89,10,-53,-23,-50,-67,17,-61,47,-80,-15,0,-89,0,-78,-65,13,67,100,9,-46,70,-55,-95,78,-84,79,-77,3,-5,17,-86,-1,20,-25,-30,59,-42,93,16,24,-49,-60,2,-28,35,27,-46,94,64,23,98,49,73,7,44,-79,-7,-45,-22,-16,53,-4,19,83,71,-32,30,-89,-83,53,43,-80,78,-47,-29,-24,-74,73,-47,-94,26,-76,52,-95,32,-79,52,-49,77,-18,-73,97,39,0,-1,14,-25,51,-19,-10,-70,-80,42,-8,45,78,-40,-50,31,27,12,-43,-14,65,-21,-83,90,-62,35,13,36,-62,63,-41,49,-50,95,-78,42,-98,-5,86,85,-19,73,-86,86,2,-87,-58,-15,-22,-69,94,-60,32,-49,65,-41,-9,-59,-43,63,18,52,0,18,-80,-70,-31,-75,-86,-53,75,-48,38,-44,-28,95,26,-56,19,-65,7,75,100,-68,-81,2,-69,62,-17,-95,64,60,27,33,85,-30,30,-23,-24,-54,-9,33,-42,-46,-73,43,100,49,71,59,-91,11,-88,46,-49,-7,-41,-43,-45,-79,-76,45,92,97,22,-27,-21,-76,0,54,-100,40,9,33,-60,-22,80,25,-35,83,-50,-69,-98,59,-15,19,-82,-81,-3,-74,-58,5,-82,99,8,-100,4,63,80,49,-53,87,-40,-26,-81,20,-33,41,-70,14,-81,3,91,-71,-12,16,30,-77,-87,-86,29,39,20,10,-5,-71,-60,7,61,-35,-26,60,35,-86,15,5,-96,-75,-100,7,-23,58,-25,73,90,-10,61,-56,43,73}
{98,66,-27,32,48,10,1,61,-1,-45,-40,-80,70,80,-32,-54,-12,-11,-20,-47,-39,-46,99,-96,54,21,-57,-55,-44,-99,-72,46,-72,85,-93,89,76,41,-66,72,-65,-65,-11,96,58,-63,-53,65,-52,-63,53,37,5,-10,-94,27,68,-79,-94,94,-47,76,80,20,65,89,-56,-76,48,-55,-73,44,63,87,51,-20,38,-77,63,-13,31,33,23,-41,57,-86,-34,89,68,-85,14,30,-86,-40,-3,-47,-85,38,-39,-73,-32,61,88,55,12,43,5,42,89,-9,-55,69,21,84,-58,-91,98,-63,49,65,26,-19,46,-81,88,-16,-34,12,45,18,-17,-57,-100,-37,-17,-82,-44,-70,57,24,85,13,66,-42,-26,36,15,-100,92,48,50,8,75,-47,-53,19,-56,-13,-21,56,21,-25,10,-86,32,56,-26,-17,65,16,6,94,-30,82,79,-93,96,-69,58,26,75,23,-55,74,3,4,93,60,81,-47,-94,-33,-82,99,97,-33,-22,9,6,-27,25,2,-67,47,80,63,29,-73,70,-81,-3,-22,83,-100,5,-21,-13,-46,7,65,-39,-18,-76,34,74,61,86,-50,-57,56,39,85,3,-25,-54,-45,-94,1,-8,-9,31,-88,33,9,-62,92,54,-68,-16,54,-73,28,-87,-76,-13,-19,80,97,-18,22,-74,-76,-61,-75,58,2,-30,68,-77,-29,-19,93,-4,-98,36,-58,82,-55,-18,-6,-26,-1,28,40,-26,57,-51,51,43,-61,-12,86,-21,40,11,-84,7,-22,-9,-40,56,-19,86,-44,-61,-89,9,35,55,-35,-95,-99,41,7,82,61,-14,7,-61,-66,86,7,-20,83,-84,-45,-13,-74,-59,-78,-51,-67,-1,-72,81,-14,-85,10,-15,95,32,80,-19,-68,-80,-62,-23,-52,-59,-60,-12,-47,94,34,42,-76,71,47,60,-27,-14,-74,78,69,-9,-1,68,80,43,-30,-10,37,8,-50,61,29,-17,65,93,-70,-22,-20,94,93,-79,-42,37,84,-97,56,-28,-35,-81,-49,98,-78,31,-75,-25,80,-75,-22,40,100,26,-58,10,-37,80,97,-96,-69,25,90,-48,81,42,56,50,32,60,77,-49,94,33,74,63,80,-48,84,-89,83,-70,-6,1,-93,62,-60,64,-42,22,52,64,-55,100,1,-69,-80,50,-79,56,-76,82,-2,94,79,48,-17,47,-46,-60,53,-44,-7,-83,-40,93,-17,-43,12,41,-46,-69,-22,-96,67,48,-10,90,72,12,-90,55,-58,-41,-2,3,64,80,-70,89,37,-94,18,15,-68,12,61,41,-89,7,-74,2,-68,22,-73,19,-40,-52,-90,51,82,72,14,52,75,-56,77,78,-44,51,-78,-14,-3,-98,17,-85,97,36,32,87,-52,-17,-82,-36,78,40,-25,68,-14,-50,66,-68,69,95,3,88,-38,4,55,42,25,-44,-30,-67,32,-1,53,-47,58,-22,-78,40,88,26,-98,60,2,-44,94,56,-21,-29,-60,-88,49,-21,5,-84,-19,-67,12,-61,-57,-23,-12,20,68,0,39,99,-77,-72,-100,-20,-28,-27,-57,-51,14,-96,73,41,71,45,-18,61,-76,-1,-56,-67,-21,-91,-25,-39,82,45,-64,-32,10,16,7,36,-56,51,-84,18,57,-56,-32,78,32,-32,96,-93,-36,-87,21,4,-92,14,25,-37,72,-99,63,-63,52,56,24,-73,45,83,-39,68,-31,9,9,94,20,-28,-67,-7,-39,23,-45,-20,64,76,-44,57,10,-88,61,80,67,-72,74,72,-96,-64,-51,-86,-16,35,-24,63,-49,47,68,38,27,90,40,-97,-96,22,-69,94,44,81,81,-9,-35,-79,69,92,-34,-35,-73,-72,-34,-46,2,-90,71,22,-43,52,-97,-91,41,72,45,55,0,86,39,-60,-90,-92,77,73,61,61,19,-46,95,74,91,-95,-42,67,-61,88,8,-1,30,84,39,81,-91,27,-4,-35,1,-56,-46,-47,-72,-39,-41,81,-89,-10,-38,77,-46,11,-97,-59,79,-36,52,-73,45,33,-71,-40,-39,-33,39,-95,-27,-65,30,38,-1,-21,32,-41,98,-87,-58,75,-7,7,-70,-73,-25,35,-87,85,-85,-63,39,-30,14,76,-95,-88,100,-2,-39,-59,-69,-43,25,20,-19,7,-26,-34,46,-35,1,36,41,31,-81,-46,40,8,-23,47,26,-88,-66,58,-68,0,-45,6,7,2,-46,65,8,-74,64,-50,39,44,-6,48,-80,-41,70,-96,74,48,69,-21,38,-92,18,54,10,24,31,96,-62,57,-77,-37,27,75,-94,56,19,-36,85,-64,-22,45,97,-41,34,6,50,-15,85,-82,-69,-31,27,-90,-83,-6,32,61,36,-87,-38,-27,77,74,-16,2,-96,-97,31,-92,-8,-43,-71,-53,42,42,34,-83,35,-40,-33,21,-47,-32,-92,34,45,51,56,-74,65,5,-80,21,-51,34,-67,-71,-65,-51,66,-12,19,-83,12,-52,-41,-13,-82,-98,-22,-35,87,-50,1,69,-35,48,46,-21,-65,-55,81,-88,-37,-72,43,42,-41,87,42,89,60,-48,-69,-44,50,41,19,46,-91,-99,15,97,-88,61,-58,30,37,25,75,36,-49,24,-13,63,-36,47,-26,-62,30,-47,-80,20,67,44,94,-6,-75,-7,-57,94,-29,-21,39,-14,86,64,70,-39,-44,-63,81,-39,-4,54,-34,53,67,-38,67,0,95,82,-18,-61,-85,29,-28,-53,3,-14,-28,-65,-24,-41,-81,15,-52,72,-18,38,27,-87,-60,9,18,-27,73,-11,79,-38,4,-21,32,-32,47,95,-80,74,100,-25,-15,93,83,72,-75,-81,-23,-17,-82,93,-85,76,-42,-64,43,22,-100,73,71,70,-87,-54,-76,1,54,-29,-95,-21,30,67,84,-9,23,12,51,-92,19,-75,-97,24,-85,-22,-87,-41,45,-1,-73,-31,8,-43,-73,23,87,-5,-35,-100,-44,84,-83,-16,40,4,63,11,88,53,-30,18,-26,24,-66,-26,33,19,65,-89,-4,-99,-37,-82,-32,-52,-47,-8,58,-20,67,20,13,-46,66,96,48,6,21,-36,-26,-32,17,49,-8,81,72,-10,66,-12,-26,17,21,-91,88,73,-90,-52,-6,74,27,34,10,48,-66,-47,63,42,-42,3,-55,-56,-31,34,65,90,-19,69,-47,16,88,36,97,-1,-40,47,-12,43,-43,-59,68,99,-24,55,-79,-88,60,-99,99,95,39,57,33,-84,-37,-16,-50,78,22,8,-19,99,70,41,-90,40,64,55,-61,-15,-45,-41,61,76,-36,82,20,-78,15,31,48,-85,-71,-63,-44,70,10,-2,-8,62,87,-45,87,-41,-38,0,-50,56,23,-7,86,-25,72,84,64,71,71,-99,6,-37,6,13,-78,57,98,-46,-33,25,-55,-74,-47,-90,12,45,-45,8,18,74,80,20,57,88,-23,42,23,-95,-34,-51,-8,-86,-83,-64,-27,26,-26,-92,-58,26,58,88,41,-23,58,80,-88,-26,100,9,-37,86,27,-61,36,34,-47,44,-32,35,95,-44,80,51,24,52,-11,74,49,97,-45,14,-27,-48,-73,49,59,14,53,-55,-18,5,31,67,-43,72,71,-49,-23,1,47,56,-96,-44,41,-67,-30,-28,-89,-40,-11,-68,-79,96,68,62,-52,-84,-49,19,-33,55,-18,76,28,48,-97,8,-61,-17,-80,77,-38,-63,-77,-83,79,92,-21,3,81,-93,87,-88,-18,-8,15,4,-22,58,-62,-38,25,-69,25,-37,67,-93,44,-14,-30,-54,-100,2}
{62,96,18,76,93,63,98,19,86,63,45,83,18,72,35,38,91,21,75,71,78,64,75,17,17,86,66,87,36,68,81,31,66,88,65,47,95,12,91,23,97,68,76,25,49,19,37,90,65,30,52,46,54,27,15,100,12,73,36,43,58,39,53,10,58,30,93,72,24,60,34,10,70,69,17,4,51,93,58,94,80,54,14,25,91,87,75,40,1,65,75,31,85,62,96,51,63,13,8,76,94,57,73,82,43,16,83,27,85,75,25,68,94,11,8,31,92,21,13,12,73,23,55,93,88,58,25,11,31,17,79,27,3,18,12,21,24,96,20,18,99,59,69,95,38,30,79,23,79,45,87,41,52,23,92,81,90,86,93,84,85,61,56,25,53,78,55,31,85,91,86,12,15,17,38,69,68,15,97,1,23,84,19,54,17,23,35,70,62,26,99,63,88,85,18,30,100,76,86,12,94,63,49,82,28,85,23,79,53,42,15,41,4,67,78,73,35,69,79,94,31,76,37,31,38,52,41,93,22,61,65,56,58,67,17,87,36,79,13,8,72,70,56,41,100,47,94,15,26,8,6,6,28,78,61,77,82,78,96,34,19,26,49,68,5,84,88,48,93,32,73,60,56,86,19,12,89,45,92,32,48,44,49,68,48,70,77,34,70,86,67,29,34,63,45,9,78,80,24,44,83,56,53,13,35,70,9,76,90,19,53,67,12,5,79,59,45,63,60,45,11,87,97,30,100,44,82,75,67,97,59,41,33,33,16,97,26,86,1,2,19,61,2,38,20,45,21,18,44,40,97,54,78,79,61,10,12,34,8,83,51,55,21,37,29,29,90,99,36,99,16,56,73,12,17,45,26,62,93,97,86,79,55,18,21,80,55,27,25,15,13,1,78,95,83,38,79,27,52,83,93,20,35,88,44,13,65,9,23,53,70,55,89,12,72,51,11,81,26,19,72,51,83,91,67,34,43,60,87,96,31,50,5,65,27,31,47,70,65,24,58,77,73,69,43,93,73,84,12,25,7,25,18,65,67,76,27,52,25,47,56,77,35,13,38,54,11,37,85,48,71,45,67,63,82,66,22,3,17,61,71,10,96,23,24,46,78,44,11,4,2,27,18,98,13,97,26,22,35,30,30,95,88,95,40,25,79,91,28,74,58,46,40,22,46,2,50,84,18,63,93,51,52,81,85,9,26,69,99,65,88,84,34,84,1,100,7,13,8,89,55,42,43,73,18,81,88,52,74,27,24,31,62,26,33,48,30,49,58,92,43,2,30,36,64,81,44,47,52,86,65,20,78,21,26,100,19,29,75,85,41,61,44,44,55,13,85,43,88,32,45,96,75,72,49,9,59,43,77,66,46,8,15,93,74,5,11,9,70,29,54,75,32,16,34,94,98,62,55,9,84,62,25,89,59,43,50,72,17,34,7,42,19,74,26,31,58,90,19,14,25,93,61,29,65,4,81,92,90,23,51,95,89,71,26,79,27,62,53,17,5,75,15,45,37,53,40,55,48,34,81,4,11,42,38,80,12,70,54,10,97,5,18,49,95,80,63,25,43,15,37,68,90,8,25,94,23,65,55,98,60,22,56,5,98,76,84,100,50,76,74,54,80,62,38,47,19,93,71,21,80,22,88,12,1,92,81,34,87,76,44,39,23,75,70,77,91,86,23,51,32,11,15,63,43,4,60,39,34,2,61,92,30,50,89,51,14,26,68,49,97,24,94,70,14,71,89,19,49,81,96,47,84,18,29,26,10,31,47,25,17,34,99,25,31,60,23,83,60,90,41,96,59,62,66,76,33,100,3,16,29,37,89,49,26,55,91,30,26,94,57,57,34,10,8,20,26,68,11,12,58,15,87,60,35,36,88,52,84,34,52,4,56,84,71,84,18,78,72,31,77,82,43,56,37,32,3,67,46,41,64,74,80,79,15,43,77,77,70,37,100,35,64,55,17,4,67,86,36,42,44,52,47,27,80,70,95,100,41,52,11,9,72,94,30,28,62,67,91,29,40,79,75,76,20,97,76,62,55,66,66,40,96,100,88,45,15,43,46,48,2,78,68,11,6,66,54,15,32,13,26,95,8,17,37,93,51,50,23,60,85,4,25,58,86,17,23,94,45,13,78,8,98,24,41,57,55,61,80,76,57,75,85,8,59,97,34,61,55,93,39,17,26,68,12,54,15,48,67,57,20,43,31,100,94,19,18,25,83,55,68,21,80,48,61,31,63,8,51,96,33,56,94,71,31,55,74,69,25,37,84,57,66,62,21,42,74,44,52,71,11,85,4,55,72,32,4,78,19,41,54,79,64,30,60,10,41,64,10,58,21,51,56,87,43,47,100,89,9,62,98,76,27,29,3,22,62,70,3,65,11,80,48,8,95,11,60,22,98,81,88,47,23,23,84,77,12,16,30,2,73,67,64,10,14,16,47,75,1,6,5,77,8,11,77,73,54,62,34,82,94,4,91,14,34,27,17,70,47,57,87,27,62,65,95,24,15,48,42,69,47,64,46,72,68,60,34,60,97,6,35,47,40,84,95,99,44,68,98,41,54,74,90,17,59,75,81,65,10,66,6,84,78,65,20,100,83,53,100,71,77,40,45,90,64,92,61,31,53,11,41,28,27,63,54,65,6,54,83,21,27,20,73,68,24,51,61,51,44,6,17,80,28,73,22,55,27,14,57,91,15,21,28,92,23,12,66,69,13,55,97,85,75,84,33,4,34,54,58,29,24,35,72,7,91,91,66,30,73,66,8,92,16,37,41,4,64,23,93,20,85,99,28,45,97,80,88,8,56,70,95,49,100,92,16,20,52,52,16,59,96,40,65,85,71,68,5,55,63,65,5,19,82,79,100,4,63,37,37,50,51,73,9,60,85,27,2,58,11,93,64,65,37,72,4,89,46,12,67,88,76,42,32,8,91,90,88,20,66,69,89,92,31,51,80,94,96,78,56,85,70,78,6,6,3,32,47,55,11,8,93,65,79,100,40,40,36,78,73,71,64,84,91,66,14,58,44,34,46,77,61,64,59,55,3,55,17,46,8,42,8,98,98,44,72,46,35,65,8,19,20,51,35,10,93,60,17,2,30,20,49,93,78,60,68,54,79,3,80,37,68,27,54,32,92,97,98,98,92,42,18,23,94,80,56,57,30,47,61,52,23,62,71,90,84,62,22,96,43,86,76,93,70,35,62,85,54,40,6,63,7,81,76,57,80,50,18,89,31,21,14,76,50,96,82,14,39,39,69,33,24,45,85}
Returns: 2.9625622521960945E9
{-64,-86,8,-94,-56,-98,-95,-89,-97,-96,49,-66,-40,4,-81,-90,-97,-93,-95,-83,-87,-71,-93,-99,-69,-98,-99,-97,-99,-96,93,-84,-96,-78,-84,-62,-94,-28,-96,-82,-53,-98,-68,29,-93,-99,-72,-7,-68,-97,-73,-98,-96,-99,-97,38,-84,-99,-98,-84,-64,-98,-95,15,-1,-98,-83,-82,-17,24,-99,-98,-98,76,-98,-48,-48,-23,-96,-98,-88,-4,51,-97,-29,-89,-89,-45,-18,-82,-99,-99,-23,31,-61,-99,-84,-81,44,-94,-99,-99,-86,-99,-98,-64,-96,-94,-55,-96,-50,-40,-96,-97,15,-24,-86,-93,-99,-99,-98,-98,-70,-99,-94,-82,-27,-22,-99,-86,-98,9,50,-96,-97,-96,-98,-54,-81,34,-99,-97,-94,-99,-99,-75,-35,-50,-88,-41,-96,-92,-11,-96,-88,-53,67,-98,-21,-97,-19,-97,-93,-81,-52,-10,-98,-98,-99,-97,-98,-92,35,-95,-98,-62,-76,-98,-60,-71,-98,-91,-53,-94,-94,-99,-3,48,-68,50,-64,-99,-77,-94,-93,-99,22,-67,-81,-49,-97,-91,-37,-97,-83,-14,51,-99,89,-92,-44,-99,-93,-27,-96,35,-97,-78,-7,-98,-94,-94,-78,-99,-68,-91,-94,11,13,-26,-70,73,-74,-97,32,-84,27,-96,-99,-91,-94,-86,-55,-99,-99,-96,-99,65,98,-65,-73,-99,28,-83,-11,-77,16,-90,-99,38,-47,-97,67,-79,-76,-93,-96,-90,-59,-71,-98,-97,-75,-97,-53,-55,-99,-92,-82,-95,-78,64,-99,-90,-97,-99,-20,-99,10,-67,-98,-97,-98,9,-96,83,-93,-97,-56,-27,81,-80,-61,-98,-99,-71,-92,-99,-70,-63,-99,-81,-46,-90,-29,-79,-9,43,-97,-66,-98,-34,-91,43,-16,-51,-56,-83,-99,-68,65,73,-96,-99,-35,-98,-92,-64,-98,-97,-98,-94,-85,-66,18,-83,95,-60,-92,-75,-58,-99,77,-96,-27,-30,-56,-82,41,63,-48,-97,-98,51,81,-95,-90,-95,-99,-97,-70,-94,-93,-77,-95,-96,-98,-91,-99,-60,-32,-73,-90,-94,4,-99,-95,-86,-99,-85,8,-99,-9,-79,-99,-41,-48,-70,7,-98,-96,-94,-55,-84,77,-7,-73,30,-84,-84,25,-98,-97,-97,-94,-43,-99,-99,-98,-29,-99,-96,-82,-20,-93,-98,7,-98,-88,17,-97,-88,-84,-65,-93,-97,-1,-83,-38,-68,-66,-93,-96,-77,-20,-94,-96,-63,-68,38,-87,-98,-31,-97,-99,-94,-93,-99,-93,-97,-96,-99,-88,-97,-36,-97,-99,-92,-96,-2,-99,20,-90,-76,-90,58,-99,-53,-85,-36,-98,-72,-98,-78,-38,39,69,-80,-95,-95,-99,69,18,-98,-92,-97,-98,-89,-96,-31,27,-99,-92,-84,-99,-97,-53,-94,40,-87,-80,-92,-66,-70,-96,-83,-89,-99,49,11,-47,-99,-88,-98,-99,-99,-97,57,-98,-97,-94,-46,-98,-81,-99,-98,-93,-95,-99,-99,-99,-50,-97,-98,-91,-80,-98,-91,55,-98,-86,-98,-98,-68,-96,-94,-58,68,-99,-98,-76,-69,-90,-99,-38,83,-35,36,-93,-83,-98,-36,-98,-81,-56,71,-68,-96,-94,-99,-96,-98,-99,-41,-96,88,8,-79,-88,-98,-99,-98,-87,-90,53,-96,82,-59,-95,-99,-99,-87,55,-98,-66,-98,-92,-99,53,-97,-87,-91,35,-23,-77,-93,-96,-96,-99,-89,-84,-79,-99,-56,-97,-98,72,90,-96,-98,-19,92,-98,-42,-55,-89,-42,-86,-92,-89,-99,-98,-93,28,-77,-96,-77,-94,-78,-99,60,-66,21,15,-42,-99,-99,-85,-98,-81,-99,-99,-50,-99,-99,-68,-97,-71,-83,-64,-70,-68,-94,11,-89,-88,-98,-93,-86,29,-41,38,-89,-87,-94,-99,-85,-98,-11,-90,-61,-99,83,-92,-93,2,-83,-20,-60,-84,-92,-98,-98,-90,-86,-92,-79,-98,-99,-46,-86,-96,-67,-72,-86,-55,-94,-87,-24,-98,-98,-97,-54,-51,-97,10,-67,-31,-95,-90,-99,-92,-23,19,-51,-99,-55,-97,-43,-98,-82,-94,33,-99,-24,-98,44,-44,-77,-88,-97,-95,-98,-90,-35,-42,-95,-94,58,-70,-83,-92,95,-71,-97,-57,-96,-4,-96,-98,-86,-91,-52,-97,-36,-97,-99,50,-90,-99,-94,-60,-5,98,-78,8,-66,-71,-81,-99,-93,-69,-96,68,-99,-29,-97,-99,-93,-90,-51,-37,-98,-84,-93,-76,-65,-41,-40,60,-24,-88,-92,-24,-8,-34,9,-92,-90,-54,-41,-80,-96,-98,-99,-91,2,-11,-99,65,-99,-99,-98,-99,-74,-38,-97,-99,-32,-99,-94,-98,-90,-63,-99,-99,-89,-97,-71,-89,-33,-80,-99,-99,-26,-78,-49,-96,76,-76,-94,-97,-25,-92,38,-98,-97,-97,-73,17,-95,-91,-95,-99,-99,-55,-61,-18,-99,-87,-74,-98,-84,-96,-99,-99,-99,-98,-96,-93,-76,-82,-41,5,-5,-92,-95,-65,45,-32,-99,-93,97,-79,-78,-15,-78,-61,-33,-98,-56,-91,-97,-94,-91,-97,-99,-84,-99,-65,-97,-63,-80,-31,-80,-16,-83,-87,-37,-31,-7,-95,-98,-98,16,0,-80,-94,-55,-96,-95,-45,-81,-14,-94,-93,-97,-99,-99,-73,-84,-26,-93,-24,-99,-94,5,26,-90,-66,-95,59,-44,-93,-96,-99,-77,-94,-98,-81,-99,-61,-83,-83,56,-99,-98,-83,-99,-60,-93,-88,-97,-99,-98,-96,36,-78,-93,84,16,-60,16,37,-99,93,-66,-99,-89,-96,-94,-96,85,-66,-96,-70,-88,-85,-87,-97,-49,69,-77,-93,-97,57,-98,-64,-72,-99,-95,-90,-13,-90,-85,-86,-96,-65,-94,-66,-97,-35,-68,-99,-56,55,-57,-91,-94,-98,-98,-99,32,-98,-94,-97,49,-99,75,-96,-95,-97,-81,28,-44,-81,-98,-94,-42,-43,-98,-96,-25,77,-97,-94,-90,4,6,-43,-98,-91,41,-73,-8,-99,-64,-99,-76,-11,-99,-46,-93,-96,-97,-98,77,-94,-98,-99,-98,75,-23,-99,-85,82,49,-10,-3,-97,-99,-69,-74,-41,-98,-66,-21,-99,-99,-99,-99,-81,-98,-94,-38,-99,-97,-92,-98,84,-12,-69,24,-97,-48,-2,-98,-85,-42,-95,38,-91,-45,-99,-17,-76,-93,-71,-63,-78,-92,-87,-78,-99,59,-99,-97,37,-96,-82,-97,-18,-92,59,-90,-71,-82,-75,31,-78,-87,-90,-25,-45,-61,-26,-72,-97,-93,-71,-72,-27,-82,-94,-96,-82,-66,-97,3,-99,-99,-98,-99,-98,6,-64,-54,51,-99,-32,-17,-90,-78,9,-98,-98,-97,-95,-97,-99,-95,55,-96,-75,-30,-9,-94,-72,-99,-96,-97,-86,-56,-99,-98,-99,-70,-93,0,76,53,95,-98,-43,-92,10,-78,-99,-76,-39,-99,-92,-91,-36,-99,-53,8,-96,51,-73,-26,9,-97,-90,-89,-98,-13,-82,15,25,-99,-88,-85,-95,-58,-97,-77,-23,-93,-96,-96,-99,-98,-10,-94,-97,-94,-98,-99,-96,92,-90,-98,-99,-83,-94,-77,-99,-98,48,-79,49,-35,-98,-99,-98,-98,-99,-60,-98,-82,-22,-90,-99,-97,-73,-77,-81,-99,-99,-94,-99,-85,90,-76,-99,-97,-52,-67,-96,-99,-73,-91,12,-98,-98,13,-94,-99,-98,-99,-81,-99,-99,-1,-84,-91,-54,-97,-78,-31,-98,-85,-97,-99,-61,-62,-48,-46,-89,16,-95,-98,-10,-93,77,-57,-97,91,-99,-97,-96,-95,-90,-99,-99,33,-98,-94,-89,27,-84,12,-61,-77,-92,-95,-92,-29,-29,-39,-97,35,-91,71,46,-99,-75,-97,-99,-98,5,-91,-91,-99,-83,-96,-99,58,-99,-99,-96,-99,14,-88,-98,-98,-65,-96,-88,-98,-98,-26,-92,-60,-93,-99,-64,-16,86,81,-47,-89,32,-93,-81,-93,-35,-97,-76,-20,-98,-73,-63,-94,-42,-83,-95,-28,-34,-97,-99,-98,-88,-58,-17,-63,-99,-85,65,-69,43,-98,-38,-96,-93,-74,-60,-99,-76,88,-77,-53,84,-87,-63,-90,-96,-15,-98,-84,-16,-96,-33,-49,-47,-83,-97,-95,-89,-29,-59,-80,-99,-91,96,-77,-87,-93,-99,-95,-97,-92,-91,-96,-4,-68,-98,45,-96,-95,-99,-9,-99,-98,-86,-90,-78,-59,-56,-61,-51,-73,84,-95,-99,-99,-57,-90,-98,-99,-95,-60,-90,-99,-99,-49,-94,-59,-49,-72,-91,-84,-99,-21,-94,-99,-91,-98,-92,-95,-93,-87,-5,-84,-89,-99,-98,-99,-61,-48,-36,-60,-12,-99,-92,24,-96,-39,-89,-98,-37,61,-93,-77,-65,-90,49,-99,-87,-44,69,-32,-88,-98,-98,97,-99,-32,-74,-96,-87,-97,-99,-99,-99,-90,44,-99,-82,-99,19,-97,-65,-55,-98,-99,-14,-97,-45,-99,5,-98,-98,-46,-82,-84,-85,-70,-60,-98,7,-76,78,-54,-96,-98,-98,-98,-11,-48,-67,-85,-48,-69,-94,-99,-99,-83,-99,-97,19,-98,49,-77,-97,-99,60,-99,-99,-28,-42,-89,-64,-86,-98,-60,-98,-88,-98,-99,-71,-95,86,-88,-98,-47,-99,-48,-68,-61,55,-99,31,-98,-97,-95,-61,-94,-70,-92,-94,-96,-97,-85,-95,-94,-96,61,-96,-73,75,-29,-90,-98,-37,-93,-71,-99,-89,-86,-62,-74,-67,-98,-98,21,1,-99,-97,-93,-99,-99,-97,-96,-91,-83,-80,-3,-99,-65,-98,-50,-99,-14,-99,-99,-8,-83,-99,-78,-30,11,61,-80,-99,-49,-92,-16,-99,-94,-96,-99,-64,-99,-74,45,21,-76,5,-64,-96,-70,-80,-92,26,-95,-32,-87,-92,-98,-86,-97,-86,-98,-9,-94,13,-94,-39,-83,-97,-46,-95,-28,73,-61,-99,-88,-68,-97,-78,-92,-68,-36,93,86,-94,-97,-92,-90,-98,-8,-99,-83,38,-76,-94,13,-99,-98,6,-38,-83,-93,-43,-96,-65,-94,-91,-96,-90,-96,-75,-63,-43,19,-88,-97,-95,-99,-57,-89,-35,-12,-68,-99,-91,-5,-96,74,-92,-92,-98,-54,-20,-86,29,-79,-84,-38,-32,-49,-85,38,-96,-50,-87,-64,-83,-99,-15,-68,-93,-5,-92,-98,-43,-89,-78,-36,-35,-94,-59,-36,-80,-94,-1,60,-85,3,-81,-90,-99,-72,-91,-98,-85,47,-86,41,-83,-60,-98,-83,-85,-98,-80,-90,-67,-51,-41,-94,-99,-99,-40,-78,-91,-97,-96,69,-1,-84,-74,-95,-94,-82,-96,-96,-99,-32,-99,-98,-99,-99,-97,-98,-98,63,-94,-89,-93,45,22,40,-96,-37,15,-64,-77,-92,-62,-98,-99,-87,-99,-47,-91,-50,-99,-36,-99,-99,-97,-98,-23,-99,-67,-40,-86,-62,-60,-87,-26,-96,-86,-67,45,-99,-82,36,-17,-72,27,-99,-35,-7,6,-55,-95,-99,-90,-90,-98,-93,13,-95,-83,27,-96,89,-72,-99,-99,-96,52,33,33,-96,-96,-3,-96,-20,-90,-17,-55,-99,-75,-22,-54,-97,-92,-93,-93,-63,-92,-82,-81,-88,-95,-37,-73,-96,-94,-83,-95,-99,-85,-61,44,-99,55,-97,-99,-93,-98,-17,-80,15,-83,-55,-74,-99,-88,4,-82,-98,-73,-4,-99,-38,-99,-95,-93,-96,-78,47,-41,-52,-26,-92,-88,92,-98,-47,-93,-97,-95,-96,-50,-95,-99,-91,-78,-87,-96,-99,-64,-76,-99,-99,-37,-97,-94,-97,-99,-93,-88,-81,-66,-41,-56,-98,-66,-95,-70,-98,-95,97,-98,2,-70,-94,-78,48,-57,41,-97,-85,-98,57,-95,-7,-74,-47,-94,-99,-37,-68,-92,-94,-55,-60,-99,-99,-99,-96,-87,-50,-96,-99,-78,-27,-89,64,-70,-96,-95,49,-96,-84,11,-68,-98,-86,7,-87,-99,-94,76,-99,-85,-90,-99,-95,-97,-99,-91,40,-81,-96,-99,-99}
{39,-86,33,-37,-89,-71,-82,-99,-98,-96,-71,-96,-92,-13,64,-97,54,16,-95,-99,-95,-17,-98,97,43,70,-99,-80,-70,28,-67,-67,-98,-84,-89,-98,-82,-79,-99,83,-49,-55,-97,-90,6,-92,-93,-97,-72,-95,-41,-52,-61,-91,-80,-97,-96,-97,-99,-99,-72,-58,-85,-96,-96,-13,-87,-91,-99,-1,26,-97,99,-57,-96,-53,-21,-8,-98,-98,6,-99,-93,-98,27,-97,-98,-84,-98,-99,-9,-62,-99,-19,-40,-98,52,-97,-99,-89,42,-98,-98,-99,-67,-99,-99,-97,-58,-64,-96,-89,22,-98,-73,-84,-97,51,-95,-95,-40,99,-95,62,-79,-24,-96,31,-96,-99,-64,-89,-94,-95,4,-98,-79,-89,76,-99,-65,-99,-69,-70,3,-99,-39,-95,-93,-85,-51,-90,-89,-97,-41,83,-88,-99,-98,-99,-98,-98,-95,90,-81,-87,-94,-98,-99,-78,-97,-98,-99,-96,73,-96,-68,-88,-65,-98,-65,-96,-99,-74,-40,-65,37,2,-94,50,-90,34,-88,-99,18,-97,-98,54,-50,-98,-3,-41,-96,-90,-79,-67,-98,17,-11,-99,-66,-29,-99,-97,-94,-96,-12,-95,-97,-88,-6,-97,-21,-53,-15,-87,-39,-79,-99,31,-85,-96,-76,41,-96,-97,-28,-36,-99,-97,-99,77,-13,47,-87,-96,-99,-64,20,-98,-95,-93,-90,-99,-98,-98,-90,-99,-73,-94,-92,-73,21,89,-88,-98,-96,-64,-98,-99,-26,-66,-96,-98,-88,96,-41,-96,-97,-98,-98,-94,37,-99,-96,69,-44,-81,-98,-99,-86,34,-63,-58,-76,-94,-88,-74,-11,-53,-99,-98,-93,-98,70,-96,-39,-78,-96,-13,-90,-61,-50,-66,-56,-88,-90,-98,58,-90,-99,-98,-97,16,-57,-28,-27,-99,-99,-97,-90,-98,-95,-98,-75,-97,-63,-97,-30,-87,-95,-73,-99,-19,-96,-99,-53,-71,-82,-97,-97,72,69,-96,71,-51,-99,-89,-87,42,-93,-92,-85,-99,-88,-92,-10,-1,-78,-86,-53,-33,-94,-29,-89,-73,-97,-92,-16,-55,-95,-83,-97,8,-98,-88,-99,-86,-93,-98,-25,-73,44,-99,-80,-95,-13,-91,-43,-83,15,-98,-96,-96,-40,-16,-30,-99,-31,-99,-83,-97,-68,-48,-91,-68,87,-98,24,19,-94,-2,72,-85,-77,76,-78,-94,-38,-99,-93,-72,-75,10,-88,-98,10,-91,9,-92,-99,-99,79,-91,-7,-57,-86,-13,-65,-99,4,-78,-82,-94,-99,45,70,-98,-58,-89,-73,8,-92,-84,-78,-95,-82,33,50,-35,92,-91,-98,-77,-97,-98,-99,-88,-83,-51,-92,-60,-96,-68,-99,-95,-72,-73,-88,-66,-99,-99,-30,80,-38,-1,-46,-85,-97,-88,-69,-99,-50,-99,-98,36,-17,-41,-99,-82,-99,-97,-99,-98,-85,-88,-76,-90,-69,-93,-85,-28,-99,-99,-98,-53,-86,-99,-71,-99,-99,-73,-36,-95,-98,15,-94,-12,-82,-95,-97,-85,-82,19,-97,-99,-99,-57,-36,-73,-47,-99,14,-99,-78,-94,-75,-99,-65,-99,-98,46,-87,-59,-98,-99,-98,-25,43,-33,-91,-99,-65,-39,-99,-84,-7,-79,-99,-79,-69,-37,-99,-74,-80,71,-9,-99,44,24,-31,-96,-85,-9,-97,-88,-38,27,-99,-66,36,-78,-99,-99,6,-69,-98,-79,-71,-96,-85,-91,-87,-79,-98,-5,-80,-77,-98,-69,60,-35,-93,61,-61,-24,-99,-95,-97,31,-83,-91,16,-96,87,-74,-94,-69,-96,-98,-99,-89,-95,-86,9,-77,-95,-32,-98,-6,-96,13,-16,-23,-59,-76,-53,-97,54,-75,-93,-96,-83,-90,-42,-91,-21,-40,-82,-99,-26,-99,-90,-97,-89,83,67,-61,-95,-37,-84,-92,-89,-98,-57,-1,4,-47,-78,-76,5,-93,-96,-90,82,-99,5,-97,21,-93,-97,-74,-98,-94,-91,-17,-98,-97,-99,-76,-98,-70,-99,-80,-91,-89,-83,62,-98,87,-98,-98,-27,-96,-94,-98,-98,-80,-95,-83,-45,-85,17,-24,-94,-47,-87,32,-51,-87,-98,-23,87,-98,-86,-50,-98,-87,-97,80,-73,-98,-77,-98,11,-66,-36,-99,-64,-3,-84,-93,-77,-75,-91,62,-82,-73,51,-93,-99,-93,-76,-60,-79,-64,-90,-42,-99,-74,52,-78,-56,-99,-74,-98,25,-99,-97,-55,-84,-97,-99,-94,-99,-79,-98,-21,-98,-98,-99,-96,27,-98,-62,-25,-97,-98,-95,-26,-94,-88,-36,-93,-82,-34,-85,-82,-99,9,-50,24,-82,-80,-55,30,-91,-95,-98,-89,-15,-72,-96,-99,-94,-99,-76,-76,-49,-95,-95,-95,-58,-98,-80,-94,-99,-97,-99,-94,-46,-98,-28,-84,45,-88,-13,-99,-85,-86,-84,-97,-99,-98,-98,12,-98,-79,-99,-98,-88,-99,-95,-94,-98,-76,82,-81,17,44,-73,-90,-99,-35,59,-33,-97,-99,26,-94,-75,-93,-93,-99,-72,-84,-99,-73,-47,-90,-69,-83,-99,-99,-99,95,-90,-99,38,-99,-80,11,-99,-44,-98,-99,-95,89,-95,-73,-94,-68,-99,-97,-79,-99,65,-97,-96,-85,-97,-74,-85,-35,-98,-99,-31,-96,37,-99,-98,27,-98,-99,-99,76,-63,-94,-83,-86,57,-71,-75,-99,-99,-80,-98,-86,-35,-99,-89,-82,-34,-80,-85,1,-99,-68,-87,-99,-30,-93,98,-99,-94,-77,-96,-97,-98,-78,-99,-99,-97,-98,-87,95,-44,-98,-68,-95,-99,-89,-95,-5,-96,-25,-57,-92,-53,59,-95,-93,-67,-57,-60,-93,-99,-2,87,-93,-99,41,-96,-98,-87,-81,-55,-51,-74,-6,85,-99,-96,-64,-92,-89,81,-59,-87,-48,-95,-97,-81,50,-45,-18,-80,-97,66,-98,45,-99,54,81,-76,23,-80,89,-34,88,-99,-66,-96,13,-59,-56,-94,-98,-21,-90,-28,-90,-54,-12,-98,48,-93,-56,-67,-98,-98,-95,-78,-80,8,-92,-99,30,-99,-8,-99,-80,-96,-86,-96,42,-98,-36,-98,-8,-74,-92,-28,-36,-99,-89,-91,91,-82,-79,-66,-86,-25,-26,50,-88,-55,12,-87,-76,-46,-65,-18,97,-94,-51,-73,-8,-99,23,0,8,-61,-70,-82,-68,-91,-88,-4,-89,-13,-98,58,-98,-97,62,-1,-11,-69,-95,-98,-72,-99,-98,-89,-93,-2,-97,-48,-93,-93,-25,-82,-27,-53,-58,-99,-57,-64,-52,-85,81,-72,-80,81,-91,-96,-91,-81,-88,-73,-98,-95,-58,-92,-89,-73,-82,-34,-86,-40,-15,-96,-99,-96,-94,-14,-71,-57,-64,7,-92,-94,-97,-91,-65,-4,-99,-36,-99,-94,-82,-99,-99,-99,-85,-97,9,-58,-87,-93,-95,-38,30,-54,-91,-75,-79,48,-96,-75,-99,30,-96,-99,-1,-80,-69,-97,31,-80,-74,-58,-92,-67,-99,-93,85,-95,-83,-99,79,-84,-95,-96,-48,-94,-86,-97,-92,-95,-10,-83,-44,-14,-99,-73,75,-99,-99,-91,-86,-98,-85,-89,-62,-99,-99,-99,-37,-78,-87,-90,-91,-97,43,11,-98,-42,-72,-46,-96,-90,-75,35,-73,-94,-94,-98,-92,42,-53,-68,34,-77,5,-93,-73,-77,-95,2,-99,-91,-99,-98,-99,-91,-32,-90,-92,20,87,-99,-99,-99,-99,-98,-92,-78,-99,57,-68,-96,-99,-18,-99,-93,-86,5,-71,-23,71,-69,-95,57,-84,-31,-87,67,-99,-99,-76,-52,87,-96,-87,-25,-99,-99,-83,-99,-94,-99,-17,-97,29,-96,-99,22,-28,-99,-98,-15,-67,-86,45,-70,-78,-39,9,63,-98,0,-98,-98,17,-99,-96,-98,-81,15,-99,19,-96,-91,66,-38,-99,-1,-33,84,-98,80,-45,-25,-87,-98,-94,-97,-22,-32,-92,-97,-45,-94,54,-92,-51,3,-99,-99,-98,-99,-87,-89,-99,-96,-87,-23,-59,-91,-98,-74,-97,-98,-93,-93,-90,-47,53,-36,-32,-49,-99,-97,-98,-54,-54,-99,-93,-94,-96,-97,-94,-17,-77,40,-8,-97,-99,-62,-89,-96,9,-99,20,-97,-99,-94,-99,-81,-99,-98,-64,-57,-99,-43,-92,37,-99,-99,48,-40,-86,-97,-69,-92,-75,-92,-42,-97,-86,-50,-99,-99,-98,-96,-96,-97,-69,-66,-97,-94,-99,-88,-99,-94,-52,-63,-91,-97,-82,-76,-89,-75,-66,-73,-97,-99,-95,-99,-79,-97,-98,-96,-79,-98,-95,-98,-52,-73,31,-63,-82,-62,-97,-98,84,-87,-99,-99,-57,-23,-68,-96,-62,-92,68,-14,-61,-98,-99,49,-96,-22,-90,-58,-41,-90,-70,-41,-62,-30,42,-82,-71,-68,48,-99,-94,-17,-97,-96,-71,87,-54,-89,-96,78,-53,-92,-99,-96,-97,-99,81,-97,-93,35,-97,-89,-76,-99,-98,-99,-76,69,-43,-46,-99,-80,-93,-98,-77,-68,55,-98,-82,-99,-98,-57,-70,-97,-99,-25,-36,-96,-97,-96,41,86,-96,-99,-94,-96,17,-96,-84,-98,-34,-99,-99,-83,-84,-72,-75,-98,-88,-83,-86,-93,-97,-96,-97,-99,-59,13,-99,-70,-90,-95,-99,-99,-87,-96,-96,-62,-84,-76,-99,-99,-94,-57,-81,-99,-90,-96,-63,-79,-99,-65,-36,-91,72,-86,-83,-54,-99,-96,78,-72,-93,-93,-92,-96,-98,-96,-99,-98,-98,-71,-65,-35,-97,-90,29,-93,-92,40,-97,-74,73,-77,-99,-96,81,-89,-99,-70,-88,-46,-89,-89,-93,-81,-26,-37,-99,-95,-65,-96,-99,-96,-86,-91,-99,-68,-92,-50,-30,-97,-97,-68,-99,67,-99,-66,-99,38,-99,-72,-95,-79,31,-97,-94,0,-72,-63,-99,-99,-99,-48,-58,-10,-97,5,-97,-88,-95,-84,77,-99,-61,-98,-80,-81,18,-99,5,81,53,-95,-99,-94,-98,-97,-93,-99,-24,-94,-87,-96,-77,24,-99,-98,-99,-98,64,-97,-84,-93,-95,-44,-77,-98,-86,-99,-96,61,-99,8,3,57,82,-99,-82,-98,-98,36,-87,-85,2,-49,-99,-87,87,-98,-96,-13,-16,-98,-98,-96,-86,-75,-98,-98,-95,9,65,-10,13,-97,35,-76,2,-94,-95,-92,-93,-71,-51,-81,68,-95,11,-54,-99,-61,-83,-42,-92,-99,-40,5,-98,-96,-99,39,-69,-67,-77,-91,-96,-93,-98,-92,-62,89,-98,-94,-94,-84,-81,-95,-98,-99,-84,-70,-53,-86,20,-99,-99,-99,-97,-98,-49,-90,-97,77,-99,-87,-13,-97,-3,73,-98,-98,26,-16,-98,-98,-8,-99,-97,-23,12,-94,-98,-71,-98,-89,2,-99,-93,-98,-80,-95,-96,-95,-70,-99,-33,-44,-74,-99,-98,61,-50,-96,-94,-49,73,-97,-43,7,-36,-72,97,-99,-79,-96,-98,-99,-59,-82,-98,12,-85,-2,-99,-86,-81,-56,-93,-98,-68,15,-70,-69,-59,-63,-97,21,37,-88,8,-86,-54,-99,-26,-83,-92,-95,-58,-96,96,-93,-78,-95,-81,69,91,81,-29,-34,-38,-14,-95,-94,-99,-99,-94,-94,-91,-93,31,29,-97,-33,-98,-99,-98,32,-85,-99,-99,-86,-83,-95,-72,3,-98,-98,-83,-85,-86,-97,-98,68,-67,-99,-97,15,-45,-36,81,49,-98,-79,-93,-99,25,-18,-70,-57,-63,-99,75,-37,-93,2,-78,-91,-96,-99,-63,-97,51,-25,-99,-92,-64,-40,-54,-50,-84,-3,70,-99,-98,-99,-95,-99,-96,-98,-92,27,-82,-78,-98,-91,-98,-18,-95,-99,-99,-63,-96,-95,-51,66,-91,-63,26,-92,-99,11,-48,68,-88,-99,-84,-94,-97,29,-81,-46,-31,-61,-47,0,-99,-61,-63,98,72,-99,-29,-55,-62,-94,-98,-61,-99,-95,-97,-99,-99,-92,-98,-96,15,-98,59,-63,-46,-99,-97,-99,-74,-97,-92,-84,19,-17,-21,-99,-21,-34}
{-94,-99,-90,-95,49,32,-89,-98,29,-93,-19,-42,-40,-87,-88,-76,-76,49,-91,-99,-99,8,-94,-43,-52,68,80,-94,-86,-98,-85,-73,-92,94,-86,-90,47,-99,-14,-97,3,-86,22,0,-96,-92,-99,-98,75,-99,-93,27,37,-32,12,-99,-99,-97,-99,-88,-99,-62,-90,-99,-94,-34,-92,-10,-88,-85,-98,-55,-96,-70,-99,-99,-96,-96,-96,-95,-95,-31,-96,-95,-97,-93,-97,-99,-37,-99,-99,-99,27,-67,-94,-98,-97,-77,43,-57,-68,-97,-5,-99,-94,-60,-91,-86,-90,99,-81,-61,-96,-52,-89,9,-99,67,-54,-92,-98,-94,-90,-96,-97,-94,-93,-97,64,-39,37,-80,-99,-87,-97,-70,-92,-98,-99,94,-32,-31,22,-99,-53,-86,-87,-98,-61,-87,-95,60,-53,-95,44,-93,-97,-78,-99,-88,10,6,-96,12,-92,-72,-56,-95,-99,-86,7,-72,-67,83,-76,-99,-5,-95,-53,-99,-68,-68,-98,33,-98,-58,-89,-50,-97,-97,57,-42,-90,-54,-93,26,-98,-12,92,-87,-99,-97,32,-99,-89,-99,-97,-29,-75,-56,-93,2,4,-93,-78,-85,-52,-53,-70,-1,-85,-44,97,-92,-98,-40,-86,-59,-83,-98,-89,-91,-61,59,-85,43,59,-98,63,-90,-97,-86,-75,-89,-82,-92,-99,-26,-89,-96,68,-94,-99,-86,-60,-95,-99,-38,-29,-88,-97,-52,40,-83,-98,-99,-99,-94,-43,-89,-98,-71,-98,-99,-99,5,-91,-98,-92,-8,54,-71,38,-99,-89,-78,-98,-84,-30,-71,-96,-97,-91,-93,-60,-95,-59,-98,-50,33,90,-98,78,-13,-98,-2,-94,-63,-95,-99,-5,-99,-96,-98,-77,91,-80,-82,-84,-36,-50,-86,-99,-91,-41,-94,-70,-98,-96,-99,44,-13,-97,-72,-59,-80,-60,-99,-93,-93,34,-65,-88,-81,-98,-95,-95,-93,-24,-99,-72,-88,-33,-98,-96,-96,67,-94,-29,-36,-97,-99,-95,-96,-46,-88,-48,15,-92,-21,-98,-99,-35,-67,-92,-76,-91,-98,-18,-95,-98,-68,29,-25,-64,-40,-96,9,-97,0,-99,-92,-92,-88,-72,99,91,-91,-94,-96,-98,-99,-86,-70,-76,-89,-98,-99,-83,17,-94,-16,-98,-91,-78,-97,-91,-90,-96,24,-92,-77,-99,-42,-83,-36,-85,-96,-97,-99,-96,-79,-99,-81,-87,-88,-54,-85,-89,-95,-50,-94,-98,-97,-93,79,-99,-98,-99,-66,-92,-93,-29,-95,-86,-99,-73,-94,-66,-99,-86,-11,55,-92,57,-99,-71,-93,41,-65,-66,-96,-99,-93,-80,-98,-63,-87,-89,-48,-56,-83,-96,-56,8,8,-62,11,0,32,-97,-97,73,-80,-69,-81,-57,-1,55,-99,-88,-5,-97,-35,17,-99,-91,-97,-89,-87,5,-98,-56,-92,33,-98,-45,-86,-99,-97,-66,-80,-94,-88,-98,-7,-99,75,-89,-71,-91,-97,-95,55,38,-87,-87,-90,6,-43,-90,-98,-98,-99,-98,-56,-53,-96,-99,-96,-96,-27,37,31,-98,11,31,-99,-98,-74,-84,-98,-64,-87,-71,48,-92,-98,-99,-18,-78,-20,-98,-23,-85,-99,-62,-97,-23,-38,-93,27,-89,-99,-72,-79,-11,-95,-99,-94,-99,-7,-35,5,90,-99,-62,-94,-99,-95,-57,-92,-79,-95,-88,-82,-98,30,-94,-98,-73,-75,-99,18,-70,-70,-74,-34,-99,-54,13,-99,-87,-99,-94,-98,-92,-80,-56,-8,-96,-97,-96,-96,-97,20,-93,-97,-98,-88,-99,-96,-63,-96,-86,-72,-88,-75,-70,-92,-93,-58,-89,-99,-97,-99,-93,-95,-97,-78,-96,-97,-88,-17,-70,-99,-82,-98,-98,-41,-69,-98,-68,-99,-58,-88,-74,-99,-98,-94,-62,-99,-77,-85,-95,-98,-9,17,-98,-98,-71,-97,-41,-89,97,-98,-57,-35,-75,-97,-52,-87,-96,-42,-96,-73,25,-39,-98,-97,25,-84,-87,-83,-93,-98,-79,-85,47,-95,-68,-13,-39,-91,-98,-98,-26,-99,-50,-46,-92,-82,-99,38,-28,-99,-31,-94,-79,-3,-98,-49,94,-98,-93,-75,59,-65,39,-92,-98,-31,-21,-69,-33,-71,-99,-96,-68,-69,-70,-99,-45,-24,-97,-47,84,-87,-95,-99,1,-47,-94,-69,-5,-89,-96,-24,-74,90,-96,-55,57,-97,-49,-88,-93,-17,80,8,-94,-99,-57,-99,-68,-96,-92,88,-29,4,-70,-85,18,-92,-95,-99,29,-99,-99,-53,-73,-75,-95,-45,-98,28,-78,-98,-93,-64,-38,-90,-88,-92,-84,-99,-59,-96,-99,-86,0,-49,31,20,-99,-84,-89,-98,-30,-91,-98,-94,-93,-5,-78,-94,-94,31,-99,-90,-16,69,-82,-99,-99,-98,-98,-51,7,54,-4,-64,-99,7,-48,-9,-85,-58,-82,8,-13,29,-99,-10,-58,-97,-70,-97,-57,-78,30,-80,-99,-94,-81,-83,38,-77,-81,-99,-78,-96,-99,-90,-92,-73,-94,-97,-98,-68,-98,-94,-34,-97,-31,-91,-75,-99,-86,-85,3,-95,68,63,-94,-96,-81,-81,-40,-93,-97,18,-12,-92,-98,-92,-95,-97,-99,-99,-73,-13,12,-87,-35,-97,49,-80,-99,-97,-94,-59,-72,-63,-99,-88,-99,-97,-96,-81,56,-97,-96,-98,-12,-99,-80,-91,68,-74,-98,-85,-89,-96,-99,-56,-76,1,-96,-91,-99,-53,-83,-70,38,-75,-85,-97,-86,-99,-97,-51,-96,-94,-94,-79,-63,-98,-49,-98,33,-98,-75,-94,40,-62,-85,49,-99,-92,-82,-85,-93,-76,-53,34,-98,-99,-56,-81,-99,-51,-70,-29,-99,-87,-96,26,-94,-93,-43,-95,-99,79,-67,-82,-65,-68,-99,31,2,14,-80,-64,-75,-30,-91,-89,-1,-79,87,-96,-78,-87,9,26,-83,-40,-59,-32,-99,-31,-89,-88,-6,-95,-99,-98,-26,-93,-91,-55,-89,-99,-89,-97,-83,-99,-76,-95,-98,-46,-60,-97,-92,-58,-14,-43,-88,-96,8,-93,-78,-58,-55,32,-84,-98,-10,-90,-96,-93,-93,-84,-96,9,-96,-90,-99,-1,-46,-13,-99,-99,-72,36,-74,-80,-46,-99,25,-77,-99,-90,-96,-94,-98,-98,61,-96,-90,-97,-89,-67,-98,-62,-95,-90,-57,-98,-84,-98,-99,53,-22,-31,-77,-72,-97,-59,-97,-99,-93,-80,-62,-66,-41,16,-32,39,-88,-96,-35,-86,-40,69,-99,47,-50,-23,-97,-34,-81,-18,-67,-46,-98,-88,-96,-77,-80,-99,-86,-76,-98,-81,-95,-97,-86,-51,-94,-91,-99,-99,-6,-93,-99,-93,-96,-99,-9,-98,-92,-89,-49,-94,-17,-92,-94,-97,-92,-85,16,-91,66,-97,64,-59,-94,-84,-99,62,-93,-45,-57,-93,-91,-99,-82,-98,-92,-96,-91,-87,-96,-89,-19,-96,-89,-99,-99,16,-99,-95,-86,-96,43,-79,-58,-81,-96,-91,23,-98,76,-67,-98,-99,-99,-82,-23,-26,-95,-99,-99,-99,-92,39,-99,-84,-89,-64,-6,-67,-97,-98,-39,-98,-64,49,-67,56,-98,-93,-77,-93,-83,-88,-56,46,-98,-63,-96,-93,-98,-92,-99,14,-54,-28,-99,25,-96,-31,-93,-32,4,-77,-53,-99,-66,-95,-41,-99,-97,-99,-39,-87,22,-93,-84,-97,42,-78,-90,-99,-98,-98,-98,-98,70,81,-97,-99,-89,-98,-88,-55,-1,-97,-72,-99,-99,-86,-96,-10,-27,-98,-7,-80,-68,-46,7,-95,-76,-87,-99,-99,-63,-80,-99,-66,-98,-49,-95,1,-48,-93,-99,-96,-93,-95,77,-80,-48,-90,-86,-83,-82,-83,-60,-50,-61,-99,53,-64,-64,-98,17,-72,-32,-99,-86,-72,-90,-88,-80,-97,-98,-90,-66,-93,-80,-21,-63,13,-28,-99,-99,-77,-16,-95,-71,-98,-99,-59,-70,-99,-98,-68,-92,-96,-40,-70,-86,-89,-99,-80,-89,-97,-67,-97,-93,-77,-94,-68,-84,-88,-94,-36,-98,-39,-90,-60,-53,-94,-98,-97,-26,-67,16,-1,-11,-84,-99,-24,4,-93,-4,-71,-83,50,-84,-96,-96,-92,-79,-98,-24,21,-57,-97,-99,-87,-86,-79,-96,-76,10,-18,-71,-97,-77,98,-78,-58,-94,-33,-65,-93,-84,35,-85,-93,-74,-98,-99,-93,-92,76,-93,-90,-93,-97,-96,-92,-76,-59,-84,-43,-97,-99,-96,-62,-82,-48,-65,46,-99,-15,-75,-84,-69,-99,-52,-99,-90,-82,-56,-46,9,-43,-60,-58,4,-85,-98,-96,-95,58,-37,-95,-95,40,-13,-97,75,72,-66,-83,-99,-88,-26,-94,-61,-59,-58,-93,-69,-32,-89,-97,-33,-50,-92,-79,-98,-54,-31,-97,-31,24,-83,-71,-96,-48,-89,-99,-84,-81,-63,-83,-95,-99,-47,-60,-97,-96,-99,-99,-54,82,-98,80,-24,-99,47,-89,-99,-83,-98,-56,-46,-70,-99,-93,-59,87,-41,-70,-99,-81,-53,-81,-98,-95,-87,-79,-62,32,-71,-89,48,-2,3,-99,3,-91,-85,-61,-98,-99,-97,-75,-77,-30,-99,-92,-99,-25,-83,-99,-94,-84,-97,-4,-60,-1,-98,-87,-21,-95,10,-18,-77,-97,-82,-72,-51,-91,-96,-96,-76,-89,74,-56,8,19,74,-64,0,-99,-77,95,5,-98,91,-64,-79,-99,-54,1,-99,-68,-88,-95,-91,-77,-97,-95,10,-91,-29,-1,-84,12,-40,-99,88,14,-62,-76,-95,-83,66,17,-37,-97,93,-38,-67,-82,-25,-16,-21,-1,-98,-98,-93,-28,-99,-64,-67,-97,-54,-31,-74,-69,44,91,-99,71,-80,-87,80,-96,-95,-99,-6,-79,77,-95,-95,-94,-99,-98,-56,50,-99,-72,-87,-92,-99,-17,-80,37,-56,-47,-42,-81,-77,-97,-99,-73,56,-95,-97,-78,-79,-94,-86,-78,5,-11,-57,-78,-48,-89,-51,-60,-46,-61,-98,-42,-29,14,60,-75,-64,-95,-98,-67,-33,-94,-91,73,-98,-32,-99,-69,20,-95,59,-36,-65,-44,-78,9,-99,-41,-99,-64,-98,-93,-77,-18,-74,-37,-21,11,-98,-99,-89,-99,-12,47,-80,-96,76,-80,-94,-99,-36,-41,-39,-61,-90,-49,-99,13,-93,-97,-60,-94,-97,-26,-89,-11,-86,-96,74,-97,-98,-90,-85,-99,26,-99,-1,-21,-58,-47,-1,46,-87,-96,-77,65,-64,-65,-55,-99,-59,84,-92,-85,-92,-95,35,-86,-98,-96,-94,-2,-36,-44,24,14,6,71,-33,15,-93,-59,-98,-98,-57,-97,-99,-47,13,-67,-97,-72,-69,-79,-98,-99,-88,-46,-22,-96,-97,-90,-60,-84,-15,-93,-99,-64,-90,-83,-92,-98,-84,-99,-98,-56,-87,53,-97,-95,-93,-92,-64,90,-87,-95,-36,-30,-53,-96,-99,60,27,-16,-94,61,54,12,-51,-99,-91,-19,71,-98,-86,-18,-82,-90,-94,-99,-30,89,-95,-53,-35,-99,-99,83,-87,-50,-88,-99,-81,-73,-54,-99,-91,-96,-92,-95,-99,-23,-91,-97,43,-98,37,-97,-41,-98,-44,-98,-99,-99,-99,-90,-28,-90,53,47,-96,-89,-94,-45,-39,-76,-88,-75,-99,-55,-99,-81,-78,-50,-63,-99,-99,-97,-84,-97,-24,-86,-52,-99,-12,-82,-40,-92,-99,-37,87,-97,-36,-27,-67,-96,-94,0,-76,-97,-93,-56,-87,84,-78,-4,-99,-87,31,-78,-99,-90,95,52,-37,-97,-67,-95,-98,-28,-90,-60,90,-98,-94,6,71,-99,-95,-74,-50,71,-45,-99,-80,-83,-33,-77,-81,-74,-90,49,-64,-58,-99,20,-99,-99,-95,-92,-85,-9,-82,79,-57,-99,-95,-98,-99,-32,31,-98,-91,37,-89,-92,80,-16,-97,-24,-45,-22,99,-78,-96,-94,-94,-96,-35,17,-78,0,-97,-89,-78,-90,-99,-10,-77,6,21,-98,-88,-16,-97,-30,-32,-99,-96,-67,89}
{-96,-42,-94,-89,-96,-94,-99,-34,-99,12,-94,-98,-96,-99,-90,13,75,-69,-99,-93,40,-95,-52,-62,-64,7,-96,-45,-99,-99,-71,-99,-95,-96,-97,-66,-73,-99,26,-97,-78,42,-98,-99,-96,-93,-53,-82,-47,-94,-74,-95,-81,-96,-93,-99,-64,-99,60,3,-98,-90,-98,-30,-75,86,-94,-98,-75,-97,-86,39,-95,-96,86,61,-88,-76,-99,-96,-21,-88,-2,-36,-67,-99,-98,-91,-31,53,-97,-94,-72,-78,-35,-93,-87,-99,-45,37,-92,-96,-71,-80,-62,-89,-75,-18,-71,-98,-67,-72,8,-15,-85,-95,-97,-98,-83,-94,-99,-94,-69,-93,-54,-12,-96,-87,-96,-99,-94,-1,-88,-80,57,-99,-77,21,-97,-97,36,-69,-85,-96,-96,-95,-9,-71,59,7,-75,18,-52,-99,-77,-19,33,-1,-46,-86,34,-99,-58,51,-37,-78,-99,-93,-88,-26,-83,-94,-73,-6,-87,-46,-96,-86,-97,-90,-96,-45,33,-96,-98,-98,-2,-99,-99,-99,-95,-74,35,-99,-98,-99,-88,-98,-81,-91,-88,-95,-99,-85,64,-56,-99,-95,-62,-31,10,38,-86,-79,-96,-80,-83,-97,-14,-99,-37,-98,-89,-91,-87,-94,-97,-59,-74,-98,59,-76,35,-4,-52,39,-97,-67,-99,-99,-89,-86,-59,-97,-98,-88,-16,-77,-49,-31,-47,-3,-91,-86,-94,-63,47,-76,-99,-77,-97,-40,-99,-97,-99,62,-97,-55,-96,-98,-68,-84,26,-93,-66,-97,66,-96,-76,-98,-99,-98,-97,32,-3,-43,-60,-94,-94,-18,-75,-67,-48,-99,-99,-77,-99,-99,-73,-99,12,-48,-99,-1,-4,-95,-97,-70,-95,-98,77,-62,-89,-40,-99,-96,1,-45,-83,-32,-91,-24,-96,37,-95,26,-98,-60,33,-89,-98,52,-1,-72,-89,-97,-97,-93,-99,-95,9,-78,-66,-84,-60,-54,-96,-77,-81,75,-82,-91,-53,-67,-44,-92,-9,-84,-91,18,-82,-95,-21,-91,-99,-88,-77,-44,-30,16,-98,-57,-14,-96,-11,-95,-97,-98,-89,-94,-98,-81,-88,-94,-99,-70,-97,-96,84,-95,-99,-94,17,-59,-99,-99,-12,-46,-97,-30,-97,-99,-38,-22,-77,-30,-85,41,-82,-84,-97,-71,27,-87,-39,-91,81,-95,-82,-95,-93,-9,-95,-14,-98,-34,-89,-99,-84,-80,-54,-33,-93,-37,-98,-98,-59,96,-98,-99,37,-32,-99,93,-83,-99,-67,-76,80,34,-99,-80,-95,-99,-61,31,-99,98,-89,-92,-90,-46,-69,-99,-40,-98,-96,56,-99,-99,-73,-99,-99,-76,-87,-90,-84,-91,-97,-94,-93,-17,-96,-97,-90,-55,-93,-98,-97,-93,-75,-96,49,-98,-85,7,-92,-95,-68,75,-88,-95,-97,-89,-91,-99,49,35,42,-25,26,-90,-13,-80,-99,46,47,-91,-97,34,-32,-97,-96,-93,-12,-93,3,-99,-37,-87,-61,-99,-99,-97,-96,-78,-98,-96,-18,14,-90,-87,-97,-99,-99,-34,75,-99,-53,-95,-85,-8,-76,-98,-56,-81,92,-97,-64,-86,-97,-13,-98,-95,-96,-93,-88,13,-95,-77,-99,-98,-81,-96,-56,85,-84,-57,68,-87,-99,-85,-90,-96,-96,-98,-62,-98,-98,-99,-24,54,-96,-87,26,-93,-88,-65,-99,-68,-99,-84,-99,-99,-99,-98,-99,-99,13,-70,73,-87,-92,-85,-87,-88,-56,-48,71,-18,-98,-97,56,-94,-67,-62,-16,39,-49,-90,-73,39,-99,4,-98,-43,90,-80,-64,-98,-98,9,-91,24,-95,-99,-97,-99,-27,-98,-94,-92,-96,-96,-76,-98,-98,-96,-99,-78,91,-44,70,-41,-4,7,-99,6,-98,77,-96,-99,-87,-32,-98,-76,-99,68,-96,-99,-92,60,-51,-97,-54,56,-88,-99,-99,-85,-45,4,-45,-98,-95,-64,-85,-20,84,-93,-99,16,22,-75,-99,-98,-89,-99,-65,-72,-40,-99,-84,-99,-64,-50,-47,-95,87,-79,-95,-11,-98,-80,-92,-93,-94,-95,-98,-31,40,-58,-77,-96,-99,-84,-99,-41,-88,-80,-92,-95,-79,69,-21,-91,49,33,-80,-99,-98,-66,9,-94,-92,-97,-81,-66,-93,-88,-93,-49,-44,-99,-78,-76,-90,61,-95,-96,-39,24,-96,79,-97,-93,-95,-81,-89,-78,-24,-30,-55,-46,-97,-99,-99,93,-34,-99,-43,-97,-93,-52,-94,-99,-97,12,-99,-79,-99,-94,-97,-96,-71,-95,-99,18,-94,-86,-85,-88,-98,-91,-97,-83,93,-25,89,-65,-83,-20,-92,-81,-72,-85,-89,-49,-68,-95,-71,-18,-93,22,-97,-63,-81,69,-99,-93,-40,34,-99,-49,-98,-65,99,-6,-98,-99,-99,-99,-95,-7,-51,-42,-40,-96,-26,-94,-98,6,2,-88,-60,-34,-58,83,-17,-99,-35,-98,-88,-81,-51,-46,-90,-69,-85,-21,-97,-97,72,-97,-98,-96,9,-53,-74,-44,-95,-99,-98,-97,-79,-95,-98,-73,-98,-99,11,-8,-99,67,-99,7,-98,-99,64,-93,-14,-97,42,-98,-79,2,-96,-99,97,38,-85,-92,-54,-95,-99,36,-82,-95,-97,8,-97,-99,-98,68,-6,-98,-48,-99,-58,-86,-53,-66,-36,-98,-77,-24,-94,-17,26,-74,13,91,75,-99,-97,1,-31,86,-87,-57,-78,-97,52,-95,-69,-92,-84,-84,-40,-5,-75,88,-71,-99,-86,-99,-44,-97,-98,-70,-49,-47,65,-94,-89,-88,-30,-15,-37,-92,-97,-61,-97,-98,57,-94,-59,-98,-86,47,-68,-81,-57,61,-77,-97,-94,-90,-1,-31,-98,-99,-99,-69,-95,-97,-86,-22,-98,-99,-98,-98,-98,-99,-99,2,-97,-72,-99,-99,28,-90,-99,-99,-93,-86,16,-75,22,21,-95,-62,-98,-30,-32,-94,-99,-17,-99,-84,-83,-74,-82,-84,4,-93,-94,-98,63,-94,-94,-80,-66,-27,-84,-94,-70,-81,-18,-99,-94,-97,-45,-76,-2,-59,37,-92,-95,-18,-99,94,-91,65,-92,-96,-96,-99,-65,-99,-87,-99,-97,-98,-67,-43,-99,53,-65,-89,-79,73,90,-67,-80,-50,26,32,-98,-69,-91,-99,-95,-92,-80,-48,-93,-82,-80,19,-98,-94,-7,-92,-51,-12,-94,-97,-90,-99,-92,-78,-96,-46,-98,-54,-59,-99,-71,-83,-97,-91,-50,-93,-82,-66,-95,-95,-96,-34,27,-98,15,-98,-96,-81,-14,17,-87,35,-73,-48,-90,-91,-81,-98,-98,14,-69,-85,-93,-95,-94,17,-57,-98,-58,-17,-99,-92,-31,4,71,-95,-93,-89,-99,-87,-99,-13,-99,-96,-98,-99,-96,-31,4,-95,-29,-99,-38,-96,52,-3,-89,-39,-83,-95,-67,-85,-95,-49,-99,-79,39,-98,-72,-99,-38,-69,-98,-55,-39,-94,-97,-97,-52,-95,-65,-81,-52,-67,-26,-97,-93,-45,-97,-99,-99,-89,66,-56,-95,-88,-56,-97,-61,-42,-95,-78,-92,61,-95,-76,-97,-94,-99,-21,-88,-99,-95,86,-91,-91,-71,-93,6,-97,-73,-94,-98,-84,61,3,-67,-95,-97,-21,-95,9,-99,-12,-99,41,61,-94,-99,-99,-78,-70,-99,46,-75,12,-97,-98,-95,-95,-99,93,-93,-99,-87,-98,-99,-98,-44,-95,-92,26,-52,-98,-98,-94,-98,-98,-78,-82,-85,-5,-45,-78,-95,-96,-97,-76,-76,-98,-94,-99,-83,-99,-98,69,3,-99,-65,43,-77,-87,-20,-95,-67,-93,-85,-88,-19,-15,-88,31,-97,-83,-94,-43,-98,-14,-14,-81,-11,-97,-95,-69,-92,-82,-78,-85,-51,-9,-93,-65,-37,-97,-93,-57,-10,19,-57,-99,15,65,-84,-69,-95,-6,-78,50,-30,-91,50,-71,-34,-8,-90,45,-89,-87,-37,-89,-94,-21,-68,-2,4,-89,16,-82,-86,-86,-88,-95,-97,-97,-97,-97,-96,-99,43,-98,-77,-31,-88,-59,37,-93,-21,-79,-94,-95,84,-85,-96,-95,49,-93,20,-95,-96,-95,-99,-92,-96,-2,-80,-64,-99,-83,-99,-65,57,-20,94,40,-94,-91,-50,5,-75,72,-99,-84,-86,39,60,-99,-97,80,-98,-99,-72,18,-26,-87,-93,-99,-41,-98,7,7,-92,-72,-80,-87,-99,-82,-97,-94,-97,70,-81,-98,-84,-98,15,-95,-84,-99,-99,-99,-97,74,-17,-94,-52,2,-53,11,-99,-89,-99,-56,55,-77,-86,-67,-93,-10,14,-96,13,56,-32,-97,16,-96,-91,-1,-99,-93,-96,16,-92,-98,-97,-45,-95,-69,-77,-98,-75,-94,-95,-96,-86,-84,-99,-97,-91,-89,-95,-66,-85,-97,1,-88,-89,-42,-51,-70,-99,-97,-49,-84,56,-67,-57,-85,-79,30,-98,-91,-84,-99,4,-63,-42,-84,99,-81,-95,-60,-86,-69,-36,8,-99,-95,-95,-94,-46,-96,-18,-18,-41,-60,-97,-64,-15,-57,52,-99,-95,-76,-20,-99,-93,-99,-68,42,-26,-93,-11,-99,-96,63,-59,-59,-67,-93,-99,-99,34,-10,-91,-38,22,-91,-83,-87,-90,-19,-88,-98,74,-99,4,-77,-89,-99,-19,-71,-98,-89,-93,-99,-91,-95,-89,-98,-97,-92,-66,-90,-75,36,-99,-98,-99,-99,-90,39,-94,-60,-96,-99,-92,-97,55,-89,-1,41,-90,-67,-66,-99,-73,-99,-99,75,-85,-99,-96,-99,36,-7,-35,-99,-99,-75,-99,-61,-94,31,-94,-61,-98,-99,-25,-5,-99,40,-30,52,-98,-99,-55,-97,3,-93,-99,-85,5,-28,-90,-94,-49,-99,92,-94,25,-99,-41,-87,-95,-93,-89,-98,-27,-95,-93,-99,-95,-64,-91,-98,-93,-45,-15,-94,-92,-95,-78,77,-47,-70,-93,33,44,14,-88,-94,72,-99,-94,-70,93,-93,-91,-99,-69,-94,-94,-87,-44,-73,-61,-66,-9,-95,-99,-99,-98,-95,-97,-99,-96,-68,-96,-99,-97,-92,-66,-98,-84,77,-97,-94,-99,-94,-90,-98,-80,-6,-94,-93,-87,-99,-91,-90,-95,-98,-29,-79,-79,-96,-98,38,-46,-98,83,-99,-88,-99,-10,3,-96,-95,-91,-99,-72,33,-97,-43,-87,-52,-97,-92,-96,-92,-76,-94,-69,-87,-85,-99,86,-60,-86,-67,-55,-93,-97,-96,-99,-86,-99,-99,94,-1,-99,-99,-98,-77,-98,-75,-94,-96,-44,-81,-66,-97,26,-96,45,-91,-97,-97,-45,-98,-99,-69,-40,-95,-98,26,41,-98,-92,-99,-95,-75,-96,-93,-86,59,-23,-95,-96,-55,88,75,-91,26,-77,-22,-98,-96,-19,-97,-98,-99,-79,-41,-96,58,-97,-97,-99,-92,-97,-96,-99,-72,-91,-88,98,-99,-21,-93,-98,-99,-88,-66,-99,-96,-88,39,64,-97,-10,-10,-99,-62,-97,64,-92,-82,-99,-99,-99,-51,-98,-73,-97,-94,-97,6,-96,-28,-63,-92,-99,-99,-99,-64,-43,-96,-96,34,-89,-99,-92,5,-78,-95,-99,-99,-78,-93,76,-93,-49,-82,-59,-96,-97,32,-84,-78,24,-96,-99,-88,-66,-82,-81,-92,-92,-55,-98,-44,-50,-96,-92,84,-25,-23,-48,-10,71,-78,-99,-68,-88,-79,-74,-99,-95,-99,39,-26,-88,-91,-79,16,-16,-60,-94,-97,56,38,-76,-82,-97,-92,-99,-97,-99,-94,-98,-92,-96,-95,-93,-56,-88,-90,-95,-97,-51,-49,-99,-99,10,-83,35,-98,-76,-98,-96,-95,-98,-98,-92,-96,-79,-72,-86,-69,-90,-94,-97,-74,49,-98,58,-95,22,-92,-81,-96,-93,-17,85,-83,5,-99,-87,-99,-75,48,-70,-51,-97,-99,54,-15,-87,-69,36,-95,-96,-32,84,-99,-95,-57,-24,76,-93,-92,-95,-98,-97,-98,-89,-93,-9,-99,-96,-99,-99,-84,52,-7,-99,22,14,-96,-98,-67,-76,-95,-93,-72,-99,-99,-94,-76,-55,-43,-50,-88,-99}
{38,34,33,13,74,90,71,51,53,21,61,11,87,76,26,86,38,73,78,48,34,66,58,14,92,38,52,85,70,95,18,13,3,80,83,43,69,9,64,30,71,23,74,84,69,75,49,54,18,97,55,83,15,22,11,9,59,17,64,88,12,38,41,39,26,36,6,100,50,4,25,74,80,49,40,33,1,12,54,1,28,44,86,27,68,37,64,72,45,32,31,21,44,31,54,24,86,93,87,21,25,65,83,8,96,21,27,12,72,55,50,30,88,63,96,93,7,16,9,61,39,75,89,56,12,62,63,78,11,48,25,8,54,25,58,25,10,75,69,25,41,62,57,15,40,54,82,96,13,97,56,24,10,58,93,68,90,79,3,21,96,21,30,30,53,77,2,60,83,1,52,71,32,51,18,15,17,40,73,19,99,47,36,33,64,19,58,43,24,11,17,54,40,90,43,61,30,38,55,91,63,18,10,4,35,77,50,96,47,71,9,16,1,75,24,52,28,56,19,1,11,20,58,51,7,59,82,39,29,24,37,62,34,65,52,25,46,50,5,95,78,51,52,30,95,80,85,19,57,80,25,55,86,72,26,80,15,43,13,48,16,55,56,34,78,24,18,1,27,66,65,97,27,87,21,38,36,11,53,61,62,4,49,82,56,33,17,44,49,84,44,28,79,86,45,60,74,63,53,97,88,68,60,40,56,64,45,29,26,66,26,31,70,45,33,31,39,96,3,49,99,89,49,12,57,58,23,82,19,8,10,52,98,35,10,49,75,51,52,92,6,2,92,68,5,58,47,49,39,27,45,2,23,94,12,80,94,82,82,60,65,34,75,59,22,90,94,88,62,23,75,45,68,82,76,88,95,98,84,33,45,39,12,24,37,51,96,46,18,38,100,17,98,92,24,89,77,34,40,47,21,16,85,76,1,38,16,93,2,95,70,10,49,88,46,96,23,46,44,67,44,10,75,19,22,46,95,25,21,10,45,41,50,99,47,18,55,67,61,9,82,67,6,36,1,1,36,26,72,34,93,77,4,36,88,69,86,50,92,30,58,88,17,47,46,77,9,47,29,44,94,49,62,50,32,30,72,18,25,46,44,4,26,46,98,90,87,35,27,38,13,38,79,74,44,54,31,20,6,97,94,68,83,100,51,57,15,19,58,69,42,27,58,67,39,63,74,84,2,1,34,46,100,68,15,48,82,49,98,11,93,14,29,23,54,35,72,59,66,24,100,72,54,23,2,71,37,47,32,1,79,38,49,57,17,66,29,20,80,22,92,23,8,24,87,77,87,48,14,94,81,56,33,56,48,40,75,40,58,78,54,46,42,6,82,73,54,67,19,22,15,95,5,20,48,28,89,93,46,22,19,99,98,48,54,6,36,31,48,36,15,61,53,26,79,80,56,4,51,88,58,15,66,79,8,84,84,28,38,73,24,10,85,67,96,6,26,41,85,11,51,49,67,6,57,57,55,96,78,97,50,44,53,25,2,54,93,67,91,70,61,29,15,50,99,29,3,88,94,9,74,2,86,11,20,37,9,90,46,28,32,71,77,86,25,2,5,79,58,66,7,17,74,65,18,3,96,64,39,4,36,12,69,4,67,34,40,30,97,66,3,88,95,96,36,69,26,10,5,16,100,24,15,44,75,5,57,13,37,29,79,50,35,52,35,86,83,74,4,67,7,99,37,50,90,82,45,38,71,34,56,93,45,57,54,63,60,27,32,97,18,19,41,52,76,6,60,2,84,19,72,25,2,75,30,1,44,1,79,48,94,16,22,81,94,4,50,67,59,33,92,53,100,44,5,53,67,22,15,39,93,6,76,80,27,85,71,12,93,34,54,3,39,19,98,100,4,8,76,1,12,42,33,2,68,46,49,8,89,46,30,85,49,56,48,46,34,79,22,42,91,36,27,19,67,7,54,50,86,10,32,60,50,5,26,48,13,22,14,19,66,66,5,19,64,38,62,30,39,43,97,62,64,37,21,18,90,60,98,71,27,81,59,11,17,46,59,63,34,86,95,80,63,87,32,32,17,61,7,19,1,8,78,1,72,59,81,39,32,9,73,16,46,69,67,38,10,31,18,5,76,53,53,61,10,30,57,70,61,84,79,88,20,74,54,25,6,58,47,84,15,95,72,67,68,80,96,14,44,60,82,48,83,43,59,10,48,54,59,4,65,59,7,34,74,69,75,36,9,2,57,78,66,55,85,55,23,75,97,100,45,82,46,49,80,15,52,79,99,2,51,19,76,88,94,34,65,24,46,93,16,57,77,61,55,35,59,26,69,100,45,62,63,40,74,37,80,25,35,75,69,81,15,39,6,21,91,31,3,82,31,67,26,14,50,5,51,24,98,15,52,32,66,22,18,32,70,17,18,9,86,43,66,51,56,62,46,62,92,44,7,24,97,13,97,29,74,53,13,12,76,54,68,62,1,27,60,10,76,16,5,87,99,67,47,55,79,39,5,9,54,97,34,25,72,70,63,98,3,83,91,80,84,7,77,90,85,46,65,93,100,41,9,2,46,93,93,65,1,57,70,23,43,84,32,34,28,83,80,47,78,2,71,10,93,17,19,57,58,93,50,9,61,67,65,71,71,90,7,55,71,64,97,11,6,50,21,74,98,58,94,55,72,58,27,17,50,97,66,91,98,70,12,63,64,49,4,71,1,20,30,98,37,12,22,42,65,1,92,79,10,34,36,99,74,81,7,14,93,29,4,85,76,44,96,27,99,57,12,45,84,49,99,92,16,22,1,86,40,35,43,41,48,82,41,22,88,48,50,94,98,98,23,3,46,39,87,60,66,45,9,36,61,65,7,5,6,80,69,77,92,9,24,95,40,31,93,32,60,78,9,45,41,45,52,97,46,60,23,47,23,30,59,44,47,40,13,50,12,57,33,3,97,12,22,18,67,17,91,15,29,38,22,80,94,54,4,67,37,38,41,67,60,9,97,8,50,2,52,84,2,46,82,17,38,84,63,63,3,56,48,89,7,94,89,3,44,51,54,33,57,2,35,85,97,96,93,13,11,42,93,29,92,41,27,81,31,45,37,13,71,49,8,67,79,66,88,92,33,39,37,35,7,78,58,70,10,82,26,25,66,36,4,19,42,19,60,24,64,54,57,57,35,1,89,55,30,27,4,9,26,54,77,65,59,6,28,34,78,24,94,44,37,6,54,80,94,68,47,33,74,96,37,97,9,74,54,71,98,14,92,38,4,43,34,10,88,91,76,1,59,57,50,93,47,89,32,18,25,22,37,68,40,89,89,78,94,60,5,91,50,69,64,43,84,72,81,36,31,72,8,100,86,30,50,20,59,47,98,52,25,39,3,100,4,16,61,40,36,81,2,19,86,4,94,55,57,60,5,86,72,19,98,78,93,71,41,32,39,90,49,54,5,84,3,75,17,89,83,100,19,16,5,81,63,91,56,84,59,29,33,5,46,55,4,46,63,71,67,53,49,33,25,29,26,56,68,100,10,31,51,53,71,47,48,44,50,80,84,52,66,87,80,92,78,3,10,43,5,98,100,8,60,70,26,6,52,27,17,62,88,81,27,5,3,37,30,66,3,37,53,55,3,38,26,79,36,57,89,29,47,32,96,26,88,78,58,70,36,13,92,62,54,36,70,27,69,26,35,59,68,8,97,49,97,7,17,29,19,78,97,4,65,32,75,80,65,47,10,2,18,63,23,80,53,3,86,30,53,61,74,91,7,12,33,59,38,99,91,63,59,16,89,47,30,19,35,35,24,31,48,54,61,84,17,68,42,87,13,77,81,39,60,99,53,57,31,18,74,81,24,12,63,57,57,81,82,87,75,38,14,23,40,53,3,79,69,55,88,99,17,3,57,90,95,42,84,77,93,23,29,85,13,94,63,96,2,71,29,47,57,24,43,65,98,15,39,17,98,96,86,88,27,80,24,68,95,62,25,100,63,24,43,42,70,12,4,29,18,36,71,82,86,46,37,69,58,2,23,28,16,27,8,6,85,85,52,81,31,87,78,36,66,35,44,36,50,85,52,79,15,93,49,36,17,34,33,73,73,87,3,20,10,59,71,84,27,16,45,41,1,47,69,95,61,66,37,84,3,95,25,43,53,23,18,31,87,79,95,19,33,59,71,24,60,91,34,49,81,11,85,34,21,19,33,25,35,88,24,45,46,65,52,58,16,63,48,96,72,38,50,53,19,41,49,59,72,47,20,51,6,9,86,27,44,98,6,81,3,16,44,49,65,62,61,4,95,24,46,37,67,67,54,57,68,42,88,28,44,40,59,28,34,29,85,85,11,91,61,9,50,20,45,53,44,19,78,21,12,32,6,19,95,80,83,99,77,29,2,39,55,64,61,85,58,70,50,27,10,41,55,68,90,61,71,24,9,90,70,59,55,92,81,81,37,32,44,13,20,22,23,41,75,3,11,10,29,44,22,96,79,65,7,66,45,53,86,39,9,27,96,48,46,88,86,72,91,22,19,98,99,23,79,2,6,73,91,98,88,31,68,61,21,29,2,26,64,45,11,26,12,77,96,92,34,89,18,12,50,33,26,50,15,58,3,94,40,84,22,20,20,55,76,43,47,43,14,80,50,35,94,9,35,10,93,98,9,2,5,84,12,80,11,12,65,55,58,17,54,33,41,1,31,92,62,61,49,79,63,79,24,5,5,96,92,74,33,13,42,29,83,40,12,3,60,54,65,40,97,38,19,9,91,32,50,98,5,11,92,17,87,36,8,80,49,85,68,65,39,2,56,65,93,42,76,66,41,75,96,60,40,66,36,42,45,1,64,61,13,63,35,14,50,91,37,16,13,90,24,33,94,44,12}
Returns: 6.782126103467998E9
{-84,-47,65,70,-98,-45,-6,-57,-41,16,20,-94,-97,-99,-27,4,-92,-41,-2,-99,-65,-94,-40,-98,-99,15,-65,-29,-56,50,-98,-90,60,-19,-97,-53,-78,-92,-99,-87,-99,-27,-80,-54,87,-97,-77,-42,-53,-81,16,-44,-53,-96,-99,-99,-91,-66,-96,-72,-86,53,-90,-95,-99,-98,-98,-95,-99,-88,26,-89,43,-87,-95,-72,-97,16,-62,49,-72,-96,-8,-96,-26,-99,24,-96,-74,-68,-94,-91,55,-45,70,-82,-98,-93,-43,-94,-70,-62,-91,-99,-99,-75,52,18,-62,-49,-89,-41,-86,-96,-97,-36,23,-83,19,-99,-59,-97,-99,-31,-64,-50,-98,-90,-97,-95,78,-69,78,-95,12,-92,-99,-62,-77,98,-83,-93,-93,-96,-97,-98,-68,-49,-9,-99,-98,-17,-49,-65,-82,-23,91,-90,68,-96,-57,-86,-99,37,-71,24,-55,-98,-96,-94,-95,85,-59,-98,-93,-97,-99,-89,-94,-96,-92,-95,-90,7,-95,-16,-70,-78,-37,-99,-91,-98,-70,20,-46,-75,20,49,-98,-81,-98,-5,-69,-57,-94,-88,-92,-79,-99,-95,-90,-59,-75,52,-96,-99,-97,-89,-84,-99,-64,-90,-95,49,-86,-75,-99,-99,-59,-99,-94,-82,-93,-48,-60,-96,-73,11,-95,30,49,-74,-35,-98,-94,-99,15,-47,-76,-88,-70,-98,-91,-55,-92,-84,-3,-92,-13,-40,-21,-90,-75,-81,-51,50,-98,-65,-32,-99,-99,-87,-99,-96,98,26,-98,-47,-99,-29,53,-76,-92,66,-82,51,-97,-97,-88,-44,-82,-94,-93,-98,30,-99,-56,62,85,-11,-92,-78,-59,-98,-99,18,-65,-98,-93,-90,-97,-97,-27,-97,-96,-85,-97,-88,-99,-70,-81,66,-6,-99,-89,-94,-40,-99,-37,-93,-38,-32,-37,-99,-87,76,-98,-94,19,-99,-92,-93,90,-71,-91,-71,-98,-90,-86,-52,-98,-87,-93,-76,45,-98,-97,-99,-98,-74,-60,-69,-99,-99,56,-93,-94,-89,-4,-99,-99,-99,-93,-97,-79,-93,-56,-98,0,-99,-83,-96,-97,54,-99,-97,-25,-98,46,-85,-99,-98,-98,-99,-99,-90,-86,-13,-99,-45,-33,-98,-65,-97,18,-98,-99,-85,-80,89,54,74,-91,-99,88,-99,-90,-97,84,-71,-81,-98,-92,-2,-83,-26,-56,23,38,-79,-20,-76,-98,-98,35,-95,-98,-99,-99,-94,-96,-99,-19,-99,61,-99,-88,-58,-34,-97,-96,39,-92,78,-67,-23,-97,68,-8,-24,-98,15,-91,-62,-73,-29,34,-96,-95,76,19,-99,-94,-7,-99,61,-5,-13,90,-99,62,-97,-99,-92,-99,3,-96,-96,10,-57,-94,-93,-96,-61,-88,-95,-48,11,-80,-97,94,-61,-93,-68,-93,-94,47,-64,-99,-62,-64,-94,-93,-85,-77,-36,-63,36,-98,-97,18,-77,-94,-94,-78,-99,-93,-98,-99,-31,-84,-98,-98,45,-95,-99,-92,-99,-96,-98,-62,92,-97,-98,-99,-91,-87,-26,-93,96,-96,-97,-87,-45,-75,66,15,-96,-71,-81,-97,91,-85,-83,-93,-90,-86,-77,-95,-91,-89,-47,-95,-69,18,81,-17,-58,-4,-99,93,-80,-95,-96,-52,-93,-97,-98,75,-27,-87,-75,-96,-33,-43,-87,-67,-88,-99,-62,-66,-96,-12,-99,-47,12,-72,-86,-98,-28,-95,-92,46,-20,-37,-92,-3,-90,-51,75,-93,-5,-37,82,-89,-87,-27,-29,-75,-86,-98,-60,-75,26,-97,-99,-99,-96,-71,-71,-84,-68,-96,-53,-83,-99,-96,10,92,-38,54,-94,-90,55,96,-59,-96,-76,-88,-26,34,-98,-99,-98,-98,-96,-28,-93,-85,-99,-99,-99,5,-84,-22,-96,-92,-99,-99,-96,16,-97,-45,-99,-80,-13,-65,-96,-96,-88,-98,-55,-81,-78,83,-99,-77,-99,-99,-16,-99,-90,68,-21,-64,-96,-96,-98,-98,-95,-5,-91,-98,-97,-72,-76,-49,-63,67,75,-99,-99,-97,-99,-99,-65,-49,23,-92,-81,-99,-95,-46,9,-80,-66,-81,-41,-82,-78,-86,-58,-50,-77,-80,-88,-76,-96,-96,-91,-85,-79,-98,-99,-99,-77,-98,78,-93,-99,-99,-93,-95,35,-97,-80,-59,1,-99,-87,-87,-97,-98,-99,-77,-98,-70,92,-87,-93,19,-91,-85,-99,-99,-99,-87,-99,-64,-77,89,-98,-92,-40,-92,-99,-98,-99}
{-83,53,7,-76,-90,-17,-80,46,-77,-86,-79,-95,-96,-98,41,-90,-99,85,-99,-97,-20,-53,-94,-93,86,97,-99,-59,30,-90,-98,-89,-82,-95,-31,-99,-98,-97,-80,-1,60,-51,-95,-99,-13,-91,10,-52,65,-93,-11,-99,-56,-56,-90,-91,-91,-94,-99,-11,98,-95,-99,-50,-37,-95,-77,66,-99,-94,-97,-99,-99,-96,98,-80,50,-86,-98,-91,-99,-25,-84,-50,-98,-16,-97,-27,-52,-85,-98,-99,-40,-99,-99,-97,-96,-93,-65,-88,-98,-77,-96,-88,-88,-95,-93,-99,-95,-97,-97,-97,34,-99,-7,-44,-78,-77,-4,-88,-82,-96,-41,-22,-97,-94,38,-97,-37,-79,-98,-86,-87,-72,-98,-92,81,-84,39,-66,-97,27,-66,-96,-15,-99,-99,-98,11,-90,-95,-82,52,-96,-72,-91,-96,-84,-99,-96,-27,-96,-98,-99,-98,-99,-95,-94,13,-97,-36,-98,-99,-94,-32,-91,-84,-45,-1,-99,-99,-96,16,-56,-20,-38,-91,-41,-99,-52,-95,-97,-39,-97,-94,-85,-99,-1,-75,-98,-95,-67,-98,-81,-97,-91,-85,-90,94,96,-93,-74,-98,-96,-52,-99,-80,-80,-31,36,-93,-27,-98,-99,-86,-52,-23,-80,-36,-94,-29,-96,-94,-92,-99,-99,-75,-39,-97,-30,-80,84,-33,-75,-4,-27,-74,-55,41,-99,-63,-61,11,-68,-97,-97,53,-99,-99,3,-38,-97,-99,-91,-49,-95,8,-78,-52,-54,-98,-80,-95,-99,63,-44,62,-49,-99,-69,-96,-16,-63,-87,-43,-26,-91,-98,-98,-97,-98,-92,-39,-98,-95,-95,-84,-84,-4,-16,-82,-88,-27,-84,-74,-92,-95,-72,71,82,-10,-80,-9,-99,-1,-90,-97,-96,24,-99,-78,-98,-67,-1,-98,-96,-12,59,-98,-53,-98,-91,-92,-75,-10,-78,96,-99,-99,-61,-52,-98,-98,26,-73,27,-47,-16,-99,-75,-83,-99,-94,-65,-99,-95,-98,-99,-27,-51,-36,-59,-48,-62,-98,-58,-99,-89,-97,-96,-87,-74,-89,4,-7,-43,-99,-99,-84,-72,-96,-98,-86,-98,-97,50,-99,-98,-24,-85,-98,-98,-53,-98,25,72,2,-93,-89,-84,-53,-78,63,-12,86,-85,-94,-99,-96,-83,-82,-91,-59,6,-96,-99,-93,-88,-53,-94,-90,-79,-99,-17,-95,-59,-57,-99,-99,-91,-97,-99,-99,42,-87,-93,-96,-98,69,-99,-71,-88,-99,-86,-78,-38,-60,41,-41,5,-99,-52,-99,-77,-98,-98,88,-97,-98,-97,51,-96,-99,-88,37,-92,-99,17,-97,-94,-82,-98,-98,-58,-94,-96,-67,-94,-94,-96,-82,-98,-99,-27,-69,-79,-89,64,-92,-90,18,-57,-55,-57,-96,-97,-99,-99,-98,67,-79,-56,-97,-67,-85,-98,-76,-3,-37,-66,-95,-95,-42,-93,-99,-68,-32,-15,-99,-98,-99,-82,-99,-94,-51,-19,-93,-91,-4,-97,-96,-63,-97,-69,-62,-99,-93,-99,-30,72,-99,-99,77,-89,-93,31,-96,-99,-78,24,-72,-94,-94,-92,-96,92,-94,-98,-97,-96,-69,-94,-9,-89,-58,-72,-98,-81,-84,-99,-97,-99,-99,-99,-98,-98,-91,88,44,-98,-52,-70,-80,-99,92,-37,-97,-97,-23,-95,82,-97,-31,-97,-78,-99,-99,-99,-91,13,-42,-85,-75,-87,-88,-98,-86,61,-77,-82,-99,-64,55,-70,-99,-99,16,43,-97,-91,-84,-91,-99,-4,-56,-86,-42,-99,-86,-99,-97,-99,-68,-99,-98,-75,-99,-94,-95,-82,-8,4,-97,-93,-78,-3,-69,14,-91,-94,-25,-19,-92,-97,-93,-83,-98,-49,61,76,-97,-99,-37,-78,-39,-98,-98,-98,-95,-56,-98,-79,-89,-95,-64,43,-85,-85,-24,-20,-97,-30,-97,-97,-76,-96,-99,-36,96,92,40,-60,-93,-98,-62,-98,-99,-94,4,-78,-97,-98,-97,-96,-98,-98,-97,-90,-97,-98,-99,-8,-97,-64,-66,-56,-88,-92,91,-80,-39,-97,-10,-99,-98,30,-21,-95,-63,-95,-97,-87,-64,-77,-65,-86,-39,-98,-27,-99,-97,-95,-99,-99,-99,-87,-62,-89,-48,-93,14,80,-99,-94,-63,-94,-83,-98,-99,-99,-84,-94,-96,-99,-99,-99,-98,-99,-54,-87,-78,-98,-44,-68,-98,-97,-84,-66,-94,-98,61,-7,-66,-98,-26,-99,18,-14,-5,-76,-95,-75,-39,-93,-81,-98,-57,-58}
{-2,-97,-98,-99,-96,-98,-87,-95,-99,-66,-98,-72,-97,-77,-98,-81,-4,-92,-64,-84,-93,-77,-99,-99,44,-91,-98,-11,55,-96,24,-99,-67,-89,-98,-99,-50,-97,-30,10,-85,-96,-65,-99,-65,-99,0,-29,-90,-76,-98,-59,-78,-86,-86,-93,-95,-98,-86,-82,-79,82,-68,-92,-92,-89,-98,-72,-65,-6,-99,-57,-98,89,37,-89,-73,-35,-97,-98,-27,24,-74,-93,-99,-67,-99,-91,-75,-75,10,1,-99,-88,-93,-94,-76,-86,-65,-60,-43,-35,-82,-68,-94,-98,-73,17,-95,-43,-88,-96,-99,-78,-85,-98,-4,-18,-95,-97,45,-23,-77,-98,-99,-81,-99,34,-93,42,-95,-95,47,-96,-57,32,-96,-54,-99,-98,-90,-81,-71,-91,-62,-97,-98,88,42,-94,-99,-61,-68,-69,-74,-95,1,-56,-88,-62,-82,26,-99,-92,51,-85,52,-97,-77,9,-99,-3,-81,28,-89,-86,36,-99,-89,-85,-11,-99,-10,-98,47,-91,-96,75,-66,-89,8,-50,-99,-88,-81,40,-99,-98,-70,-99,47,-29,-94,-97,-75,-38,-79,-99,-97,-43,-99,-98,-90,-7,-80,-68,-69,83,-97,-94,-88,72,-54,-99,-84,-24,-99,-87,-88,-77,7,-61,-98,-99,-96,-52,10,-82,-99,-97,-96,-98,-58,-99,-89,33,-99,-18,-93,-38,-91,-18,-16,86,-48,-99,-94,-33,-99,82,68,-68,-95,-86,-97,-95,-98,-99,-99,-81,6,-71,-78,-73,-33,-45,-88,-31,-99,-41,-24,-90,-40,-65,-90,13,-95,-94,-67,-54,-99,-74,-99,-88,-96,-81,50,-9,-11,-40,-66,-11,-98,-97,-96,-98,-97,-98,-99,-94,-64,-74,-96,-88,-74,-25,-98,-99,83,-99,-42,-92,-73,-98,-77,97,-96,0,-94,-91,-89,-96,-84,-98,-98,-63,-99,-91,-72,-98,-97,-99,-85,-76,-66,-98,-54,-99,-90,-45,-96,-45,-16,-91,-99,-95,-63,10,-93,73,-99,-98,-94,-98,-29,-99,-59,-78,-89,-96,-88,-99,-98,-85,83,-95,-94,-4,-91,-40,-93,-91,-8,-88,-42,-78,-51,-73,-98,-39,-94,8,-97,-97,-60,3,-99,-4,94,-89,-82,-97,-3,-81,49,-85,-58,-97,-65,-90,-99,47,22,-93,-66,-98,-94,-9,77,-95,-99,-66,-63,-97,-99,-99,-72,-96,-93,-68,-88,-96,-89,-64,-95,-31,97,-39,-95,-89,-88,55,-87,-58,-81,34,-63,-99,-76,-97,-49,-77,-85,-72,24,-83,-93,-48,-91,-99,-81,72,-99,-97,-82,-82,30,-79,-95,-92,-88,-59,25,-63,-95,-97,-50,98,-73,-77,-84,-99,-97,-99,-78,-52,-95,-99,57,-97,-99,-93,-94,-63,-82,-89,-71,-96,-84,-95,-96,-90,-99,-72,-81,-96,-58,-98,-97,-99,-99,-80,25,-50,-99,-79,-21,-97,-8,-83,-97,-57,-99,-96,36,-75,-95,-80,-86,-99,-83,-88,-91,-55,-16,-95,-53,-95,-99,-94,22,-97,-72,-88,-87,-98,75,-99,-66,40,-99,-96,-94,-96,-74,-62,-98,-97,-95,-20,-55,-18,-72,-99,-37,-28,33,-99,-99,9,-93,-63,-42,-82,-12,-34,-93,-99,-99,-7,-96,-99,23,-46,-98,-77,-86,-99,-98,-60,-98,74,-77,-82,30,-74,-98,-91,-99,-98,-92,-66,-77,-95,-99,-12,-71,-97,-63,-99,47,-98,-74,95,-54,64,33,-98,-99,98,-94,-99,-69,-98,-86,-77,-96,-97,-99,70,-13,-64,-49,-99,-94,-98,-98,-95,-77,-91,-92,-95,-21,9,-57,-82,-54,-81,-18,-91,-73,-45,-94,-26,-88,-99,-94,-99,9,29,-99,-96,-99,-90,-47,8,-74,-96,-85,21,-98,-78,-76,-92,5,-95,-97,-92,-26,0,-99,-46,44,-99,-92,-80,-99,-79,-90,-91,-97,-97,22,-36,-91,-99,-98,-75,-97,-98,-84,-90,-90,-50,-46,-99,-76,-59,-96,-38,-99,-96,-99,-43,-99,-49,-98,-98,-99,-98,-93,-70,-99,-97,36,-54,-99,39,10,-18,46,-43,-97,-90,-72,56,-90,-38,-80,-84,-91,-94,-97,82,-74,63,-99,-23,-98,-62,-99,-99,-91,-76,-58,-97,-92,-43,66,-93,-68,-97,-90,-58,-99,31,-91,49,-98,-99,-92,-95,-99,-89,-13,-68,-97,-83,-99,-98,-83,-95,-96,-80,46,85,14,-65,-97,-33,-96,-94,-39,-99,12,-96,-97,-87}
{-98,21,-54,-97,-99,-77,33,-82,-98,-24,-92,-85,-83,-98,-57,-34,-28,-99,-97,-46,-94,-96,-97,75,-77,65,-86,-28,-88,-99,-97,-47,-79,-80,-98,-26,-99,-98,-10,-13,-85,-99,-95,-99,-82,-24,-86,-89,68,94,-73,-39,-99,-98,-97,-99,-99,-50,44,-89,-92,-84,-62,37,-96,-82,-99,-94,-78,-91,18,-97,-98,-7,-99,34,-77,68,-41,-75,-20,-99,-87,-45,-82,56,-94,50,-87,-59,-99,-96,81,-22,68,-53,-99,9,-81,-98,-97,-94,-72,-73,-99,-98,-96,-66,-68,-99,-77,14,-8,-99,-99,-94,-90,-5,-96,-87,-94,72,-99,-70,-98,-99,39,-89,-93,28,-87,-98,-97,-94,-71,-99,-67,44,-92,-94,-97,-56,-76,-99,-12,-97,54,-70,-91,-71,13,-79,-99,-87,-99,-88,72,-62,21,-93,-88,-95,-99,-44,5,-92,-94,-9,89,-98,-66,-99,-87,-14,-72,-97,-98,-85,-90,-61,-97,-97,-86,-92,-1,-99,-13,-92,-52,-96,33,-91,-81,-92,-59,-99,-88,-64,-98,-99,-70,-62,-84,-83,-99,-15,-82,-88,-99,11,-88,-84,-99,-99,-78,-99,-36,-81,-56,38,53,-95,-97,23,-51,-30,-99,3,-99,-97,-76,-26,76,-99,-87,-4,-87,-89,-93,-99,-86,41,-93,-97,-95,52,-68,-95,-92,-81,-96,-17,-4,-93,72,-31,-95,-98,-99,-48,-8,94,74,-99,-98,16,-99,-58,-76,-99,-61,15,-98,-98,-83,-89,51,-92,-86,-55,-99,65,-60,63,-99,-74,-96,-99,-88,-96,-91,-73,-90,36,-98,66,-84,-67,-53,-78,-84,-89,-98,-96,-94,-27,-91,17,-98,6,-77,9,-89,-99,-66,-98,-90,-95,-93,-99,45,-87,11,-15,-39,-76,-78,-68,-95,60,0,-87,-92,-99,-84,-80,-57,-76,5,-93,-90,-98,-52,-99,-87,24,-91,-87,-96,-99,-97,-7,-98,-99,-58,-62,-99,13,-63,-21,-92,-99,-99,-68,-99,-24,-79,-92,-17,-98,-64,11,-98,-45,-99,-15,-98,-78,-99,-61,-35,-93,-99,-99,-86,-97,-92,-97,-9,46,-96,32,-84,-97,-99,-42,-98,-78,-73,-79,-98,-95,-97,-99,-71,-97,72,-90,-22,-97,-92,43,-79,-99,-59,87,-99,-98,-96,-97,-41,-92,-87,10,-67,33,-94,-98,-93,-93,-99,61,-98,-11,-76,-66,-14,-89,-99,-19,-59,-19,-97,-52,-49,-74,-93,4,-98,-95,-99,-66,-99,63,-52,-99,-75,-84,-97,-65,58,-29,-96,-36,38,-87,1,-21,-98,-94,-97,-96,-79,-61,81,-98,57,-85,-85,-98,-59,14,-68,34,-92,80,-99,-85,17,-96,-71,-99,-81,-97,-69,-98,-66,-99,-82,-14,-61,-89,-99,-93,-99,-37,-50,-91,-4,-97,-90,-99,-97,7,-65,-13,-72,-81,-71,-98,38,-92,-97,-92,-96,-99,-99,-48,-43,-6,-92,-40,-95,-87,-82,-47,-91,-80,41,-92,-41,-95,-97,-89,-34,84,-93,-72,-54,-49,-60,4,-95,-94,-87,-86,-13,-96,-82,-6,53,-80,-87,-99,-61,-98,-99,-54,-79,-99,-98,-47,-82,-9,-98,-99,-92,72,-77,-98,-49,83,-91,90,-75,-68,-99,-98,-96,-98,-18,-74,-53,89,-94,-93,-85,-90,-89,-67,-95,0,-98,-99,-34,-90,30,-29,-89,-96,-85,-84,-39,11,-94,-29,-99,-69,-44,-91,-68,-93,-13,-86,-99,-94,-76,22,-96,-81,-82,-12,8,-98,-89,-95,-97,-97,-73,-93,-35,-37,10,-45,-98,-97,-10,7,-68,-61,-97,-97,-99,-91,-10,-99,-91,-44,-54,-78,-99,-99,-3,-84,-71,-9,-89,-57,-93,-83,-70,-96,-92,58,-93,19,34,-99,-99,-48,36,-83,-96,-99,-21,57,-98,77,-44,-15,-99,-2,-82,-98,-97,-97,-99,-98,-48,-91,-87,-96,18,-79,-98,-99,-97,-96,-78,-93,-58,-19,-99,52,-92,-92,-93,-67,5,-98,-98,-49,-1,-77,-84,-84,-82,-94,-95,-92,11,-99,-67,-96,-95,-37,-99,-99,-98,-99,-99,-52,-58,-70,-97,-74,-90,-45,-60,-94,-97,-84,-91,-95,-94,-98,-93,39,-87,22,-99,4,8,-41,-96,14,-72,55,-98,-40,-82,81,19,-98,-90,-97,-98,-96,-91,-88,-90,-98,-68,-93,-99,-73,61,10,45,-96,18,-75,-99,-92,-58,-84,-71,41}
{27,5,71,73,69,35,77,69,76,86,27,14,94,29,32,19,68,68,43,49,56,71,64,31,9,23,45,44,15,54,95,94,70,59,38,97,61,40,18,35,87,90,54,42,52,79,53,23,58,24,26,59,74,3,80,78,55,7,46,24,91,74,39,49,85,49,74,84,88,82,44,35,77,6,92,35,36,36,59,84,62,14,24,64,33,96,28,79,89,87,74,52,90,20,57,93,89,21,42,74,74,45,90,85,72,83,23,27,26,22,38,63,35,55,6,76,13,64,31,37,100,77,14,8,88,86,20,27,18,13,68,22,57,38,44,22,10,13,60,98,87,74,41,80,27,69,53,26,97,92,57,34,49,70,70,90,24,46,97,37,54,12,26,33,46,22,15,53,41,27,6,44,9,9,35,94,65,10,6,55,93,26,56,44,34,89,94,37,9,80,73,31,75,50,43,14,14,60,32,29,61,10,47,59,85,6,84,8,68,11,36,36,94,92,19,70,86,70,34,80,64,15,92,13,23,8,29,62,13,96,69,40,64,50,62,57,1,12,50,98,79,63,35,15,45,30,62,98,85,67,8,21,72,4,19,69,9,58,39,69,11,59,90,43,27,2,61,2,58,80,26,66,33,9,36,86,54,63,39,89,1,85,10,30,64,14,34,88,37,22,48,54,61,90,19,6,8,83,49,77,22,26,82,21,37,73,61,85,14,89,74,87,67,33,29,76,31,56,45,1,46,64,62,22,85,95,45,83,82,89,15,74,88,13,53,84,84,10,86,5,57,92,21,56,66,7,3,74,49,25,36,49,91,97,52,44,94,23,35,11,96,42,40,2,81,62,34,14,90,76,34,49,31,86,49,39,49,94,96,65,45,74,23,76,42,23,3,70,22,68,87,35,46,55,43,32,74,85,14,67,57,33,1,94,100,76,54,43,84,7,93,14,78,12,56,43,1,93,3,54,96,97,3,55,84,26,36,57,38,42,28,73,53,72,95,88,74,55,91,52,16,36,32,38,43,25,26,73,58,99,46,17,21,5,82,99,47,59,17,81,5,29,35,39,32,61,4,71,58,14,36,64,63,32,51,59,12,19,10,17,62,80,67,29,99,88,47,20,14,5,82,34,71,84,24,81,63,20,94,17,33,82,69,47,35,12,61,75,85,97,39,45,21,64,93,13,63,52,88,22,87,28,61,11,15,22,40,77,97,24,29,8,55,97,85,25,75,90,53,67,80,52,86,62,23,27,30,81,48,37,39,8,90,7,85,35,43,95,36,48,50,25,9,26,81,88,29,95,25,34,18,23,34,90,83,53,90,84,70,92,74,69,71,48,9,44,68,45,60,75,58,58,14,1,47,75,25,99,55,55,23,46,100,87,44,76,61,48,46,96,18,30,66,40,18,85,38,15,27,10,65,62,43,49,98,32,56,25,33,23,13,70,18,66,70,38,18,6,20,14,21,11,52,17,91,12,22,51,63,35,15,72,74,22,49,94,84,100,75,80,82,69,56,53,11,8,29,93,64,3,17,71,72,27,6,42,22,41,5,20,71,53,84,1,63,41,8,71,17,13,8,78,15,54,74,80,27,10,30,29,95,40,80,36,35,74,72,19,29,33,68,78,71,69,77,93,41,14,9,77,13,55,95,7,83,18,61,24,3,19,32,34,65,84,55,88,92,33,38,71,92,20,15,24,59,79,37,78,44,49,94,47,100,60,9,50,30,62,90,15,10,97,71,91,22,69,67,62,81,68,38,36,44,64,95,90,91,42,47,61,57,8,94,17,77,14,70,59,92,14,31,26,93,50,68,68,100,95}
Returns: 9.74174480472703E8
{-92,96,68,48,-94,-23,-69,-59,-96,-99,-76,-43,-90,-97,-42,-4,-61,-99,-73,-99,-99,-99,-94,-96,55,-99,-76,-74,7,-97,-81,-81,-3,-42,-99,-90,-75,-99,-10,-34,-89,-67,-94,-93,-93,-85,-95,50,-76,-94,-37,-72,-8,-25,48,-70,-94,-68,0,-8,-12,60,-97,-99,-95,-98,-79,-27,-89,-92,-99,-71,-93,-95,93,-99,-69,-99,88,-99,-98,21,-97,-70,-88,-93,-89,-95,-95,-89,-98,-12,-84,-99,-94,-76,41,-83,-18,-54,-96,-84,13,-95,-53,-57,-55,-92,-97,-93,-97,-74,-79,-95,-82,-61,-83,-88,-94,-98,-87,-40,45,-56,-69,-99,-99,-80,-88,-98,77,-44,73,-93,-98,-44,-57,-79,-99,13,-90,-99,-68,-91,-94,-99,93,39,31,-97,-70,-4,-98,-73,-31,-20,-87,-91,-97,-94,32,-99,-99,-76,-55,-98,-27,-41,45,-99,-99,-94,-60,-83,-99,-31,-95,-1,-98,39,-99,-76,-98,62,66,17,-70,-91,-86,-96,-64,79,-98,-76,-96,-87,-7,-91,-45,-90,-86,-96,-5,65,70,-99,-55,-57,-96,29,-99,-47,-89,-83,-98,-82,-80,-74,-49,-83,-96,-11,-97,10,-98,14,-91,1,-99,11,72,-55,-94,-79,-40,-13,-97,-94,-87,-99,-93,25,-58,-97,-59,2,93,-72,-79,-86,-98,-99,-64,-88,-54,71,-98,47,-49,-92,-99,57,44,-96,-5,-95,42,-41,-97,-36,48,-74,-96,9,-98,-68,-96,-12,-98,-81,0,-37,-77,-99,-99,44,-93,-11,-97,-94,-31,-99,-33,-15,-96,-74,-56,-83,-8,-98,-86,-83,-98,-87,-97,-87,-55,-93,-98,-55,-78,-38,83,-97,-99,-26,-98,-37,-92,-92,-98,-98,-30,-31,24,-20,-54,-94,-99,-75,33,-83,-75,-85,-11,-58,-84,-88,-12,-99,-99,-63,-96,-38,26,-84,-99,87,-45,-99,-50,-77,-97,-99,-99,-17,-62,-34,-98,6,-68,-99,-97,-77,-65,-52,-99,-90,-99,-91,-92,-99,-49,89,73,-95,-99,-65,-66,-93,-99,-87,-96,-89,-99,-77,-15,94,-83,65,-99,-97,-5,46,-75,-92,-98,9,-77,-68,-97,-45,33,-63,-88,-94,-99,59,-87,38,-98,-99,-61,-98,-98,-93,-94,-36,-98,-58,-55,56,-97,-99,-99,74,66,-98,-26,-98,-96,-99,-89,63,-95,-97,4,-78,-97,-70,-93,-24,-30,66,14,-64,-94,-53,-87,-98,-98,-87,-96,-99,-67,-97,-97,-87,-27,-76,-99,-89,12,-93,-98,-99,-62,-99,-97,-84,-85,-10,-48,-92,-73,-5,21,-98,-92,-86,-99,-41,-54,-72,-97,-77,-77,-98,-48,-97,-99,-96,-95,-90,7,-91,-48,-90,-90,-99,-87,-98,-90,-64,-86,16,-99,-91,-94,-9,-54,-89,-94,-87,49,-98,-99,-99,-99,-64,-90,-84,-96,-77,-99,-92,26,-98,-97,-64,-56,-84,-99,72,55,-92,-75,-93,-96,-63,-81,-36,-41,-92,-39,-53,-95,47,-95,-62,-93,-93,-95,-42,-80,-80,-94,49,14,-92,-70,43,52,-99,-91,-60,-76,-98,-81,59,-57,-83,-97,-76,-58,-65,-9,-97,-99,-96,-41,-99,-96,-51,-79,-99,-79,-97,-51,-99,-98,60,-90,-93,-37,-68,-81,-99,-98,-3,-98,49,-61,-44,-93,-99,-97,51,-99,-95,-98,-83,-93,-76,-16,-42,-99,-99,-99,-98,-98,-59,-99,-99,-99,47,-98,-73,-21,-96,-88,-73,-88,-85,-98,-99,-96,-96,-70,-96,-97,-99,-8,67,-11,-99,-99,15,66,-88,-99,73,-98,8,-83,-95,-39,-96,-38,-4,90,-33,-97,-99,-99,-89,-98,-91,-99,-93,-97,-90,-99,1,79,-99,-94,-57,-98,-99,-95,52,-99,-52,-67,86,-99,59,-98,95,-83,-36,-78,-74,-80,-14,-88,-97,-98,6,-98,-77,-19,-95,-99,-45,-85,61,-90,13,-96,75,-81,-97,-59,8,-98,-75,43,-60,-95,-97,-76,-93,-87,-21,-95,-97,65,-95,-47,-97,-90,-84,-69,12,-97,75,-99,-99,-96,-99,-75,12,-82,28,-84,12,-83}
{49,-2,-45,-92,-94,-92,-87,-57,-22,-99,-65,-88,-76,-95,-96,-97,-94,-92,-99,-70,-74,-88,-99,93,22,-84,-96,-94,-83,-99,67,-82,-93,-90,-73,-29,-23,-99,-90,-84,-54,-60,-62,18,-90,-27,-98,-88,-5,-72,-99,-99,-98,-99,-99,-83,-99,72,-99,-99,-98,-99,-99,76,-96,-96,67,-98,-73,-99,-32,-48,87,-91,-92,-86,-86,-86,-99,-37,-99,-96,-99,-94,-86,-80,-98,-84,5,-92,-15,-37,14,-99,-97,-21,-98,-98,-39,1,-67,-5,-89,-95,-95,-77,-80,-59,-98,-95,-44,-99,-54,-80,0,-99,-54,38,73,-89,-97,37,-79,-97,86,-86,1,4,13,-91,-32,-65,-87,-90,94,-98,-2,7,-19,-99,58,-99,-92,-84,-83,-99,-50,-98,-38,-7,-81,-98,60,-52,-91,-98,-5,-97,-26,-91,-90,46,-98,-73,-95,-95,-98,-97,-87,-98,-99,-92,-78,-87,-97,-81,-98,72,-99,-99,87,4,-27,-84,-87,-56,-21,-98,-75,-97,-99,-95,-82,-34,-93,-97,-97,-94,-38,-19,-84,-28,-89,-86,-45,-50,-73,-2,-47,-6,-25,-99,9,-77,-45,-90,-96,-92,-14,71,-65,-99,-96,-98,34,-73,-94,53,-28,-86,-48,-98,-67,-96,4,-71,-79,19,-49,-77,-75,-94,-99,-73,-94,-98,-96,48,-97,-99,-39,-58,-53,-55,61,72,-84,-99,37,-58,-76,-99,-92,-96,-99,-12,-70,-73,-99,-96,-30,-91,-97,-94,-98,-92,-99,-99,-99,-46,-77,-96,-99,-88,20,-85,-80,-60,-98,-68,-87,61,-93,56,-99,-99,-70,-76,-39,-99,-98,-98,-92,72,-90,-97,-97,-99,-30,-98,-61,30,-23,-97,-99,-97,-98,-76,-96,-88,-96,-95,2,-32,-98,-93,-26,-95,-99,-30,-54,-20,-96,-46,-98,-92,18,-83,-86,-99,-25,-62,-94,-39,77,-99,-98,37,-99,-90,-94,-48,-98,-99,-81,-93,-99,-58,-62,83,-98,-95,-94,-44,-97,-98,-84,-94,-45,-12,-99,-85,-87,-99,-97,-98,-98,-65,-94,-26,-66,-79,-78,-9,-99,-94,-99,-78,-94,-83,-12,-97,-85,-83,-98,-63,-95,-99,-99,-99,-67,-45,19,-88,38,-86,-77,-15,-90,-96,29,-99,-86,-41,-99,-54,-99,-81,-84,58,-96,-98,-97,-99,-79,-98,8,-74,-94,-90,-27,-81,43,-96,-92,-56,-85,76,-99,-97,-79,-99,-99,-57,-95,-97,-96,51,-56,-98,-26,-8,-55,-99,-94,-95,-93,-3,12,-96,-73,-97,-75,-26,-99,-85,-71,-95,-42,-85,-57,-94,-77,-98,-79,-80,-77,-95,-98,-99,-99,-99,-88,4,-20,28,-94,-89,-86,-94,-85,-40,-97,-60,-92,-99,-94,-96,-96,-13,-87,-57,-95,88,-98,-87,-99,-40,-90,-98,-43,-33,-99,-68,-97,-83,-7,-68,-94,-97,-99,-88,-99,-72,-73,21,-99,-97,70,-89,-84,-88,-99,-92,-10,-98,-95,-86,-98,-96,-8,-43,-99,-93,-92,63,-48,-98,-99,-19,73,35,-87,-97,-89,-99,-91,-96,-99,-96,-99,-99,-78,-54,-96,-50,-43,59,-66,-58,-93,-15,-99,-87,-61,-99,5,-94,-96,-99,85,-97,-97,-89,-86,-13,-58,-99,-88,-73,-27,6,-98,-97,-99,-99,-46,-92,-82,-98,-90,-80,-76,14,-93,-92,-82,-89,-25,-6,-98,-99,17,-36,-90,-98,-66,-84,-98,-99,-99,-97,-81,-98,-96,-89,-79,-96,-83,-99,-94,-45,-98,-68,-76,-98,-36,-98,-99,-95,-96,-77,8,57,-78,-66,-36,-76,-98,-99,-90,4,-58,-86,-34,77,-98,-95,-95,-97,-97,-96,5,-96,-96,-99,34,-99,-86,-98,18,-99,-68,-87,-99,-82,-95,-67,-68,-91,-92,-99,-96,-93,-82,-95,-94,-96,-96,-89,-14,42,-84,-97,-59,-86,-89,-99,69,-51,-98,-48,-96,-41,-83,-96,-98,4,-99,-31,-78,32,-91,95,53,-98,-20,-97,-98,-39,-69,-97,-53,-99,-95,-97,-78,-93,-86,-99,-94,-99,-84,-67,-4,-74,-48,-67,-75,-83,-99,-97,-96,-83,82,-35,-96,46,40}
{-78,-98,-67,39,-84,-87,-99,-74,-99,-97,-97,-99,-82,-85,-10,-83,-99,-84,-97,-59,-20,-88,-92,-88,-95,27,-67,-68,-50,47,-38,-99,41,-95,63,-97,79,-86,-94,54,-45,-96,-96,-81,-44,-84,12,-94,-58,65,-73,98,-99,-13,-87,-93,-99,-35,-57,-98,-91,82,-98,16,-62,-99,-33,-95,-98,-94,-98,-99,-69,-95,-97,-44,-98,-97,-94,-42,-63,-44,48,-97,-99,-9,-98,-99,-72,-99,-88,-97,65,-92,-80,1,-99,-7,-99,-98,-93,-96,-99,-77,-80,-82,-92,-86,-83,-75,-98,-99,-77,-73,91,-99,-87,-10,-60,-91,-93,-38,-60,-99,-70,-97,-98,-97,-86,-95,-96,-88,-98,-99,-33,-87,-95,-95,-73,77,-28,-96,-98,-66,-99,21,-75,-68,-99,-30,-80,7,-18,-94,-9,-99,-77,-46,-62,-22,-82,-99,-30,15,-62,-99,-97,-99,-84,-98,-99,-81,-36,-89,33,-71,-13,-95,-88,-99,-98,49,-45,-98,-99,96,-96,-83,14,-8,71,-73,-98,-99,-98,88,-99,-94,-94,-21,-88,0,-86,-17,-70,-99,-85,-18,-99,-99,-99,-97,-94,-61,-50,-48,-80,-84,-88,-99,-35,32,-99,-99,-98,-69,-72,-19,-62,-89,-98,-98,-84,-99,-37,-16,-8,-33,-81,-59,-99,-52,-99,-99,-98,-26,36,-99,-72,-83,-65,68,-96,-57,-96,-99,-11,-99,-96,-67,-90,-99,3,-59,-87,-99,-79,-76,-94,-96,-72,-97,-33,-91,-61,-62,-96,-21,-94,-82,55,-72,-65,-93,-32,-77,32,73,-99,-90,98,6,-88,-22,-99,-94,-92,-99,-99,37,32,-94,8,-99,-99,13,-86,-99,-97,-66,-81,-90,-47,-99,31,50,-92,-99,-72,0,26,-28,-7,-97,-55,-98,-94,-97,-74,-95,-87,-93,2,-88,3,-20,-99,20,-83,-65,-90,-75,-23,-99,-89,-94,-26,-96,23,-94,18,-99,-99,-99,-19,-98,-91,-92,68,-95,4,-99,-95,-75,34,-99,-62,-98,-87,-94,-90,-99,-90,-91,-86,-92,-75,-53,-96,18,-89,-83,-43,51,-82,-98,-70,-3,75,-82,-99,-72,62,-99,-98,-31,-94,-40,-96,-94,-42,-9,-99,-74,-96,-51,-39,-67,8,-99,-61,-93,-94,-53,-43,-98,-96,-95,31,-45,-99,-85,-17,-67,-94,-99,-76,-87,-89,78,-99,-91,-8,-93,-99,-87,-95,-33,-86,-91,-79,-48,-49,-50,62,-88,-97,-47,-18,-99,-82,-99,26,-95,-99,11,-95,-90,-91,-78,-99,-97,42,-10,-70,-92,-95,-95,-99,-96,-90,-33,-98,-98,68,-99,-98,-83,-70,-68,-95,-96,-95,-99,97,-71,-98,-64,87,-99,34,-71,-66,69,-99,-99,-85,-99,-78,-96,-53,-82,-74,53,-98,-98,-97,-85,-58,19,-79,-30,-79,-45,22,-99,-39,-81,-58,-91,-99,-83,-99,-95,-95,75,-93,-94,-99,-80,-86,-83,-99,48,-99,-22,-95,89,-83,-97,-98,24,-87,-53,-75,-85,-22,98,-12,-68,-96,-10,-91,-28,-74,-96,-98,-96,-86,-97,-88,-95,-98,-58,-57,-81,-75,-99,47,-98,-98,-99,-55,-27,-99,-93,-96,-99,72,-36,-97,-97,-70,-57,-98,-59,-92,-99,-97,-95,-99,-77,-97,-87,-97,-44,-18,-99,-97,-79,-89,-99,75,23,-46,-90,-90,-99,-98,-98,-97,36,-99,69,-45,-79,-12,-58,-37,-91,-99,-99,-98,-73,-94,-87,-99,-99,-91,-99,-93,-92,-92,-97,20,-47,-99,-97,-84,-99,43,-83,-96,-99,-95,-87,-64,-99,74,-78,-99,21,20,60,-74,-77,-67,-88,-99,-39,-51,-99,-84,-99,-87,-90,22,-23,94,-90,-95,-17,-81,-98,-15,55,82,-71,25,-13,-39,-95,-59,-84,-90,-92,-77,-99,-97,-99,-98,-95,-99,-63,-95,-97,52,-93,71,54,92,-84,-85,-29,-99,-87,-99,-56,-95,-75,56,27,-98,-95,-82,-19,-99,-99,-90,-94,-92,-97,25,-94,-81,-98,-80,-99,-98,-87,-90,-97,-95,-99,26,-46,-53,-96,31,-96,-84,-80,-99,-19,-99,-8,-97,-98,52}
{-92,-31,-98,-78,29,-95,-46,-63,-47,-40,-73,-63,-99,-74,6,-92,-95,-99,-4,-59,-96,-82,-99,-77,-93,-93,-99,-56,-57,-77,-98,-98,-56,72,-82,14,-99,-98,53,-89,57,-55,-37,-99,-91,-80,-90,-77,-98,-88,-95,92,-88,85,-4,-95,-67,-99,-75,-62,-98,-98,-67,-99,-84,-84,-99,-96,-61,58,-80,-96,-95,-90,98,-91,-74,-98,-98,-97,4,-86,-99,2,-92,-58,-94,-68,-99,-99,-99,-64,-95,-7,-90,-99,-88,-98,-99,-31,-20,-76,-97,10,-95,-94,-64,-98,-98,-82,-79,20,-98,-99,-98,6,-8,-96,-98,-92,56,-54,-34,-24,-98,-36,-40,-91,-73,-50,-29,-96,-57,78,-68,-84,-91,-50,-70,-81,-96,-88,-86,-99,-99,-85,-90,97,-65,-97,31,54,-14,-32,-95,-98,-71,-70,-33,-95,-98,-32,-22,72,-94,-95,33,-88,-69,-95,3,-98,-29,-94,-99,-83,-90,-98,-47,-99,52,-98,-8,-94,-34,64,-98,-80,-87,-99,-95,-89,-99,-99,-88,-48,-97,54,-98,-50,-98,-97,-88,62,-96,-98,-94,-99,-1,18,-94,-82,-94,-98,-94,-35,-85,-98,-32,-93,-94,-96,-9,-76,-77,-99,-97,-95,-93,-92,-96,84,-99,-96,62,-98,-93,-99,-77,10,40,-77,-99,-95,-25,-86,-98,-99,75,-80,-93,77,-96,-98,-7,-88,-99,3,-90,-9,-76,-79,-98,-32,-28,-99,-64,1,-98,-93,-84,80,40,-50,-40,90,-94,-94,-94,-96,-99,-93,15,-98,-94,-89,-96,66,-99,-30,-99,-50,32,-96,-18,-98,-91,-98,-76,-86,-95,-98,-95,-95,-98,-87,-89,-96,-97,-99,53,-92,33,-93,-81,27,-35,-99,-95,-88,-70,-94,-98,-61,-91,-99,-96,-99,-98,-91,-95,-7,-32,-56,61,-99,-95,21,-81,-57,-95,-60,-91,-98,-44,-95,-93,-95,60,-53,-88,-73,-99,63,-99,-99,-98,-98,-99,-77,-69,-76,-97,29,-82,-98,60,-99,-94,-93,-50,-84,-40,-98,-99,-33,-21,-37,-99,70,27,-94,-54,-99,-24,-98,30,-98,-69,-68,-83,-98,-72,-72,-99,-66,-70,-99,-97,78,-95,-91,-97,21,-4,-66,-86,-1,86,-98,90,-96,-99,-31,-98,1,-99,-99,-98,-54,55,-97,-99,-16,-43,-97,-66,-97,-80,52,-98,-96,-61,-71,-89,-93,-99,-83,-99,-92,-31,-99,14,-94,-98,-89,-54,-84,8,-88,-97,-99,-19,-33,-52,-98,-99,99,-10,-98,-27,-47,-96,-92,-41,31,-58,-87,-64,-63,-83,-97,-31,-60,-98,98,-95,-99,-98,84,-99,-91,-99,-99,-82,-91,-99,-99,-99,-96,-37,-96,-68,35,-90,-55,-90,61,-96,-27,-99,-97,96,-88,-99,-20,-48,-9,-39,-92,-93,-94,-89,-29,6,-70,-98,-41,-97,-98,-81,53,-92,-97,-96,-99,-98,-94,-99,77,-49,-99,-58,-86,-97,-85,5,-56,-86,96,-97,-14,27,-99,21,8,-99,-99,-98,-88,-96,-99,-93,-43,-98,45,-99,-41,-90,-41,-99,-61,-81,-91,-74,42,49,-99,98,-89,-95,-70,-99,-88,-51,-82,-64,16,-98,-30,-10,-99,-52,-93,18,-87,-99,-61,-99,-71,-90,17,-74,-79,-30,-80,-96,-66,-55,-95,-57,-87,-44,-98,-90,-99,-97,-96,-33,19,-25,-99,-22,-80,-91,-96,-99,90,-30,53,79,-67,27,-93,-95,-95,-97,-97,-85,-99,-65,47,-86,-90,-99,-96,-83,-72,-84,-96,-95,7,-7,21,23,-88,-68,-99,-97,-71,-94,-98,-97,-35,-98,-99,-89,-86,-75,-67,-95,-10,-99,-89,-40,-99,-98,-61,-72,-97,42,-99,-99,-99,-81,-36,-40,-76,-91,-90,-98,-99,-68,-28,-99,-55,-96,20,-72,-50,-97,-34,57,-52,-95,-65,45,-16,90,-73,-45,-17,-32,84,-99,-49,-53,-63,-66,-98,-99,-95,-99,-34,-71,60,-95,-99,-94,-29,81,-52,-25,-98,-92,-95,-98,-17,-67,54,-97,93,92,-93,-89,-6,-97,-61,-98,-92,-90,-65,-99,-47,1,59,-92,-58,-98}
{42,28,6,6,86,38,78,96,48,6,31,42,66,10,60,89,53,59,3,40,73,23,15,77,35,16,11,31,18,81,15,25,39,58,79,75,86,69,22,5,30,10,40,26,1,45,59,17,2,60,38,80,81,97,30,67,46,65,60,28,48,8,44,85,98,58,78,50,83,77,17,49,22,74,41,89,26,18,26,65,100,55,81,14,73,13,49,30,18,100,100,58,21,90,24,61,88,78,44,78,47,70,8,76,42,13,3,90,36,83,2,47,79,6,87,62,95,62,93,89,60,66,57,76,14,65,29,28,77,52,15,84,53,68,6,65,44,55,90,35,78,43,64,50,80,65,63,28,72,22,97,4,95,15,27,30,95,81,26,77,87,86,76,65,59,28,11,21,8,9,45,51,54,65,76,5,75,21,88,58,41,47,86,23,15,41,29,6,83,79,94,52,76,72,34,15,98,8,53,79,57,66,2,94,53,13,64,82,13,81,52,29,15,90,87,54,54,34,68,87,46,87,55,3,49,31,26,69,7,39,62,46,90,15,15,77,100,10,13,6,87,68,20,55,66,40,56,71,94,68,38,49,15,46,40,69,87,73,45,80,72,34,60,65,49,90,22,18,41,26,95,4,31,53,23,25,35,92,37,33,85,7,41,78,25,57,74,82,5,91,89,12,100,20,81,2,7,45,25,28,44,88,17,76,38,4,75,59,72,40,38,39,2,41,34,7,85,59,89,3,39,71,46,65,21,88,14,59,84,42,3,5,29,17,95,83,8,61,11,98,93,94,44,2,18,37,99,84,67,21,63,79,46,35,89,20,8,78,68,9,82,78,43,70,24,91,58,72,18,44,52,9,65,25,42,51,5,33,44,64,23,72,77,18,42,5,12,15,27,82,72,66,50,30,1,17,44,28,65,20,13,75,99,23,20,28,80,53,64,36,19,25,30,49,8,3,58,92,76,40,9,72,88,66,76,22,85,92,92,100,61,98,30,30,44,93,88,19,45,67,70,62,66,9,53,68,40,21,23,9,89,58,47,62,58,83,96,25,64,99,93,67,52,72,40,20,12,82,58,50,74,18,56,93,91,85,38,26,97,20,70,13,10,55,24,79,69,68,35,77,4,22,46,43,99,17,22,91,29,67,64,54,81,96,6,59,58,46,33,23,10,90,70,70,76,11,54,77,50,9,72,27,22,89,4,77,48,64,54,49,7,80,96,11,12,86,89,45,12,19,22,11,3,69,90,41,57,100,60,61,88,22,27,7,79,40,77,69,78,68,36,15,64,64,37,40,32,14,5,29,26,12,99,71,3,78,72,100,28,5,73,44,73,63,73,27,78,38,65,3,75,4,32,1,61,60,19,18,22,24,63,35,73,74,56,5,80,74,46,72,78,76,52,29,65,65,82,99,9,95,7,9,34,85,42,10,71,15,14,25,19,78,83,20,20,92,2,70,9,37,57,98,34,94,32,11,87,1,78,76,100,25,66,53,80,3,99,68,66,19,42,6,64,84,20,82,53,3,4,16,54,68,28,24,18,70,100,11,47,74,35,32,3,24,30,43,21,5,85,72,32,64,4,67,92,43,19,89,20,36,52,70,84,30,37,16,18,72,91,26,78,29,87,49,8,70,42,69,20,84,76,66,15,25,50,95,26,27,88,46,7,80,56,26,10,99,28,100,98,65,12,14,8,89,66,44,69,60,53}
Returns: 8.718740473486997E8
{-84,-82,-98,-99,-26,-82,-19,-74,-22,-91,-86,-99,-45,-65,12,-88,-99,20,-41,-81,-85,3,-94,-34,-94,-70,-19,-98,-98,-90,-34,-99,-98,-64,-67,-96,-22,52,-74,-99,-37,-95,-72,-97,9,-76,-52,-73,-96,-99,-92,-96,-33,58,-27,-99,-58,-83,-96,-44,-98,-85,-96,-93,-95,-86,-99,-85,-79,-84,-53,-73,-82,-57,-93,-18,7,-98,-85,17,-89,-88,-93,-94,-95,-66,-7,-99,-71,-78,-96,-95,-99,-69,-87,-95,78,-95,-54,-41,-98,-4,-16,-98,-99,-99,-97,-99,-98,-76,-96,48,84,-90,-86,-64,-99,-17,8,-99,23,75,-69,82,-70,80,-85,-77,-84,-99,-97,-65,-92,-85,-65,-63,17,-76,-81,31,-59,-67,-98,-98,-6,-47,-99,-85,-27,-62,-98,39,-20,-97,0,-86,-94,-17,72,-98,-98,93,-96,-99,-83,-51,25,-99,-94,-82,-92,-67,-99,-23,-91,-53,-97,-97,-88,30,-19,-98,-95,-61,-97,-74,-47,-96,-94,-20,-31,-75,42,33,-78,-48,-95,-95,-93,-96,-94,-97,-99,-92,-67,-98,-98,-97,-94,-94,-93,-99,-98,-85,-97,-92,-30,-97,-93,-70,-97,-97,-92,-99,-76,-97,-97,-46,-99,-39,-91,-95,-99,-70,-92,-99,-95,-97,70,-95,-42,-99,-99,-99,-87,16,22,-96,-91,-99,-95,-94,-97,-88,74,57,-98,-91,-99,-87,-97,-27,-73,-93,-87,-91,-99,-90,96,-93,-22,-97,-38,41,-96,1,-89,-71,55,-99,-99,-11,-99,-93,-76,-98,-98,-99,-99,-99,-26,-90,-98,15,-59,-99,-99,-63,-99,-61,15,-97,-91,-90,-99,-77,-13,-93,-38,-93,-99,-30,-47,21,-60,47,-97,-99,-29,-92,-82,-92,-90,19,-26,-97,-64,-16,-99,-66,-74,9,-66,-96,-71,-43,-60,-96,-99,-99,27,-68,-80,-97,-57,-99,47,-54,-55,-85,-97,-97,97,-98,-99,-98,-95,7,-96,-99,-13,18,-97,74,73,52,-97,-59,-97,-31,-2,-63,22,-62,-99,-86,-99,-97,-97,-89,-97,-18,-92,-80,92,-85,-99,-14,-97,-97,-61,-93,-80,-89,-8,20,-97,4,-12,92,-97,-81,-72,-99,-88,-92,-99,-99,-98,-99,-95,-67,-97,-89,-65,-99,-97,-97,-99,-95,-96,-82,-95,-3,-99,-82,5,-99,-43,-96,-97,-93,-2,-99,0,-96,-94,-58,4,-72,-94,-89,-40,-68,-21,-1,-77,-68,38,-93,-29,-51,-95,-99,-99,-99,-66,-94,-91,-59,-10,-62,-49,-70,57,-94,-60,-78,20,-99,-89,-56,-93,16,-99,-1,60,60,92,-11,-97,-2,-83,-99,-73,26,7,5,-99,-99,14,-96,-88,-99,-99,91,-99,-98,-40,-85,3,-96,-97,-99,-95,-99,25,-96,-94,-68,-93,-99,-97,-59,-92,-97,-96,-45,-99,-18,-75,-99,20,-98,91,-58,-98,-85,17,21,-91,-98,-77,-88,-86,-72,-94,-99,-96,-94,83,-43,-85,-84,-45,14,-97,-99,22,-95,-86,-74,-98,-99,-97,-98,-98,-98,-83,-99,-98,21,-99,-92,-96,-91,-99,-47,-76,-99,-82,-35,-45,-99,-96,48,-99,-92,-73,-40,-64,-96,-39,-81,-92,-99,-96,-93,-82,-74,-43,-98,-94,-96,-41,-98,-81,-99,-41,-89,-91,-91,-97,-99,-93,-76,-14,39,-13,-90,-98,-96,-89,-79,-87,-99,-99,17,-89,-40,-37,45,-99,-72,37,-64,-97,-95,-91,-93,35,10,86,-29,-97,-15,-84,-90,-8,-99,-55,9,19,-92,-94,-69,-99,-96,-78,-43,-97,-81,-73,70,-73,-67,-18,-89,-24,-78,-97,-97,-97,-81,23,-88,-97,-65,-97,-94,-97,-98,-53,-98,-98,-86,-94,-97,-92,-96,-99,-95,-99,-88,-17,60,-96,-99,-99,-99,-99,-65,-98,7,-78,-99,-95,-94,-83,-98,-84,78,26,-93,12,-99,-76,-96,-95,-99,-88,-99,-96,-19,-75,-88,-87,-96,-89,96,50,-84,-96,-21,-84,-95,-66,-57,-99,-90,-17,-99,-90,-98,-99,-96,-52,-97,-95,61,-97,-83,-93,-96,-99,-99,-48,-73,-85,-89,-15,-84,-67,-67,-96,-88,-99,-97,-98,-99,-93,-73,-82,83,-99,-74,-99,-82,-99,-81,-86,-90,-78,-94,-99,-59,49,-82,6,-98,-89,-96,-98,92,-94,-8,-29,-97,-81,9,55,-48,-97,-88,-97,-99,-43,-68,70,-99,-98,-11,-98,-99,-97,-27,-78,-89,-98,-85,-96,-98,-85,-92,-82,1,-92,-73,-66,-99,-82,-85,-62,-73,-39,-83,-98,63,-92,-93,-96,-46,-4,52,-98,-94,-97,-86,-67,-98,-93,-96,-91,-58,-24,62,-99,-12,-80,-97,-85,22,-61,-31,-77,-97,-96,-48,-70,-98,-76,-99,-28,-70,-96,69,-92,-99,-99,-90,-68,-93,-56,-86,-90,-96,46,-72,-94,-99,-99,-89,-65,56,-60,-60,-88,-99,-17,-99,-61,-78,-96,-88,-33,-95,-79,-40,-93,-71,-98,-87,70,-89,-74,-83,-99,-74,-58,-30,-81,-33,-99,56,-96,-99,-93,-90,-99,-99,35,-62,11,-98,67,-97,-87,14,-99,-47,-99,-69,-80,-99,-99,-92,-93,29,-81,-98,-98,-99,-40,-99,-97,-93,-51,54,-99,-14,-83,89,-82,-58,38,73,-94,-91,-99,-93,-93,-31,-83,-50,-99,-99,-91,-97,-39,-97,-96,-37,-99,30,-96,-38,3,-98,-97,-98,-99,-20,-96,-95,-91,-99,-78,-77,-94,-98,-63,-87,-97,-76,-3,-70,85,2,-92,-94,-18,-99,-99,-82,58,-35,-88,-98,-99,-94,-54,-93,-37,-97,61,-74,-88,-99,17,-89,-98,-97,6,-88,-99,-99,-99,-83,-97,74,-92,-94,-99,-67,21,74,-89,-98,-62,-99,-6,-40,-99,-99,-96,-37,-5,-78,-77,-96,-67,-47,-59,-30,-98,-94,-97,-94,-99,-69,-72,-86,-99,-99,-62,73,-82,-93,85,-96,-84,-99,-94,-93,-95,-88,-97,-87,-94,3,-74,-68,-99,-95,-97,-75,-20,-97,-99,-94,-65,-99,-9,-98,-81,-61,-86,16,-96,-84,-99,-87,-95,-99,-95,-18,-86,-38,-99,-99,-55,0,-74,-97,-46,-99,-97,-95,-98,-97,-4,-89,-99,-54,4,-91,-81,-96,-86,-98,-47,-84,-99,-83,-14,-99,-88,-85,-92,-99,-98,-11,-97,-25,-94,-80,-6,-93,-63,-99,-58,-98,-97,-38,-99,94,-96,4,-93,-72,-99,-53,-42,97,-57,-61,-95,-67,-99,-84,-49,-73,-84,-71,-94,-98,-99,-16,-76,17,-93,-97,18,-70,-87,-99,44,-99,-99,75,-73,-99,-75,-97,-93,-91,-99,-98,-74,-94,-98,-98,-82,-98,-87,-98,-92,-95,-95,34,38,-72,-86,22,44,38,-33,-89,-96,-78,-87,-2,-88,-10,-76,41,-98,-20,-95,-99,-36,-98,-99,-91,-33,-97,-98,-77,-97,-97,-81,44,-89,-99,-56,-51,-1,-98,-42,-98,-75,-93,-92,-77,-99,-80,-99,-57,-37,-65,-74,-45,-54,-26,-92,-99,-95,-5,-98,-97,-91,-41,-95,0,-59,-99,-98,-14,59,-83,-96,-89,-69,-99,-67,-86,-99,23,-96,-92,74,90,-94,-99,-98,72,-99,-75,20,-79,-99,-81,-94,72,-99,-83,-87,-22,5,-79,-96,-93,-77,12,-98,-98,-6,21,-35,-67,-89,-93,-92,-39,99,-62,-99,-91,-88,-61,-52,-69,-96,-62,66,-66,-96,-29,-58,52,-79,-68,-72,-78,-87,71,-23,-88,-96,71,-96,38,-99,-95,-99,-69,-92,-9,-19,25,-93,-27,71,-87,30,-59,-91,-93,-81,72,-98,51,-92,-90,-84,-94,-99,-78,-43,-69,-99,25,-77,-72,-99,-95,-99,-49,-95,-75,-98,-83,-29,-99,-64,-94,-72,-84,-97,-94,-98,-85,-99,-99,-98,-73,-67,-99,-97,-89,-24,-98,3,-93,-60,-97,-91,-97,47,-18,-98,-92,-99,-97,-42,-77,53,-94,-75,52,-87,-99,-28,-99,-32,52,-65,-99,-88,-90,-98,15,-92,-99,-95,-98,-97,-32,-96,-98,-94,-46,-98,-90,-97,-65,-35,-92,-96,-71,73,38,-92,-83,-66,-95,-78,-36,-85,-75,86,-99,-94,-20,-84,-81,-99,79,-62,-99,-99,-93,91,-99,-90,-91,-99,-98,17,-85,-97,-25,-94,-99,-98,-45,-82,-99,-68,-90,-13,-99,61,-36,-98,-99,-99,-71,-96,-18,47,-98,-97,-97,-96,-18,-65,-82,9,-99,-30,-72,-94,-55,-54,-76,32,-98,-89,-96,-38,-99,-82,-98,-98,-98,-69,-77,-99,-19,-85,-97,-34,-98,27,-68,-98,78,-7,-61,-56,-90,-95,-97,-98,-95,-85,-99,-98,-91,-96,-93,-65,20,-58,-18,-98,-99,-19,-25,-99,-99,-99,-99,46,-99,21,-77,-96,-88,-95,27,-88,-84,-99,-99,-45,-99,39,3,-99,1,-22,-96,-66,-99,-98,30,41,-78,-57,-99,-93,-89,-86,-99,-98,-94,-94,9,-97,-99,53,-98,-84,-98,-93,-35,-96,35,-82,-11,-79,-91,-99,-99,-59,-97,-71,21,-99,-96,-99,85,-10,-90,-99,-37,-61,62,-67,-95,-99,-94,-12,-96,-93,-39,-85,-82,-16,-38,-98,-8,-97,-55,-58,-97,-87,-58,-88,-95,-96,-92,4,-96,-97,87,-97,-99,53,-89,-71,48,-98,-89,73,-98,-52,-97,-99,-83,-45,-40,12,47,-87,-91,-57,-96,66,-85,-89,-80,-36,97,-99,-97,61,-96,-99,-95,-92,-24,-25,-72,-84,26,-97,-95,-80,-92,-22,-99,-22,-33,-89,-76,-94,0,-82,-97,-99,-96,-96,-98,-97,-95,-99,-71,-99,-79,-80,-96,-48,-54,-99,28,-53,-99,-17,-84,-32,-96,-97,-83,83,17,-10,-96,-98,60,-95,-81,-91,-76,-92,3,50,-87,85,-94,-63,-98,-63,-98,-93,-99,-70,-99,-55,-99,-75,-26,-1}
{-94,-98,-51,-97,95,-98,-96,-90,-97,-97,-70,-99,-93,-95,-80,-99,-90,14,-85,-97,-42,-11,68,55,-83,62,-97,-74,2,97,-57,-27,-99,31,-80,-46,-23,-83,-82,-87,-98,-88,-35,-97,-26,40,-13,-97,-99,-96,-87,-92,-98,-63,-96,-90,48,-96,-89,-43,-21,85,-57,-89,-71,-98,-99,-96,-98,-28,-96,-48,-99,-99,-92,-72,-97,-99,-97,-80,-29,-97,-43,-98,-99,57,-98,-98,-99,-97,51,-99,-98,-93,-99,12,-97,-41,-94,-36,-98,-39,-98,-79,-89,-99,-92,-99,-81,-46,-79,-71,83,-8,-97,84,18,-36,-94,-92,-83,-65,-88,-84,-99,-93,-92,-97,-99,43,-99,-96,-89,-97,-91,-92,-60,-96,-99,-49,-76,-40,-85,-14,-99,-94,-43,-96,-80,-98,-93,-50,-99,-51,-71,-98,-92,-96,-66,-78,-99,-49,-65,-99,-85,78,-72,31,-99,-99,-79,-64,-99,-71,-89,-99,-46,11,-24,-97,-49,-86,-65,-95,-99,-94,-93,66,-20,-73,-12,-96,-74,-44,-97,-99,-95,-97,-98,-61,-97,-59,-15,-90,-97,51,-78,-94,-97,30,-78,-4,-38,30,-98,14,-95,-37,-20,-95,-46,-96,-99,-96,-9,-99,-83,-91,-61,-99,-83,31,-77,-80,-94,-99,-29,-94,-96,-92,-98,-27,-98,-97,-26,-99,-72,-99,-31,-87,-93,-87,-77,-97,-71,-98,-81,-98,-99,-92,26,-84,-86,-87,97,20,-98,-91,-43,-44,-75,-87,-97,-74,-98,6,-99,-99,4,-92,-95,-95,95,-80,-26,-98,62,-66,-99,35,-94,-75,-36,-91,-30,-96,-98,2,-46,-97,-79,-74,-94,-94,-69,-98,-97,-40,-88,-85,-72,-45,-85,-51,-40,-90,-94,-91,-96,-92,-63,-42,-99,-96,-28,-17,-82,-58,-88,-85,-95,-94,-99,-61,40,41,-88,-96,-94,-98,-90,-96,-95,22,-99,-69,-40,-98,-97,-69,-94,96,-96,-12,-99,-99,-74,-62,-34,-89,-80,78,-99,-98,-48,18,-20,-85,-97,-88,22,-13,-99,-98,-95,-30,-95,-99,-99,-91,-84,22,-95,58,-98,-98,-70,-81,-54,-81,-96,-73,-53,-99,-99,-96,-97,-87,-98,-99,-26,-64,-96,-24,-98,-82,-96,-97,-48,-86,-99,-66,-91,-65,-99,-71,-66,-99,-96,77,-90,-34,-87,47,-99,-42,33,-79,-99,-91,-70,42,-13,-96,-88,14,-92,-99,-23,-36,-97,38,-98,-29,-71,-17,-91,-89,-98,48,-58,-99,-99,-22,46,-94,-98,-62,-93,-98,37,-99,-89,-88,19,-86,-95,-37,-87,-85,-90,54,-99,-29,-93,-42,-99,41,-93,-91,25,30,-82,-99,-75,-39,-65,-34,-98,-7,-93,-98,-87,-99,-22,-90,-96,27,-83,-94,-54,-94,-56,-76,-39,-51,-84,-99,1,-52,-79,-42,-86,-93,-96,-92,20,-95,-99,-97,-95,-90,76,-99,-96,-89,-88,-98,91,-97,-94,-99,-99,-44,-70,-70,-93,-69,-75,-94,-98,67,-31,-99,-95,-97,-94,-37,-98,-51,-99,74,-99,-88,-98,66,-91,-98,-80,-99,-50,-90,-97,42,-99,-65,-94,34,-29,-98,-97,-99,-35,-93,-95,-96,-95,-78,-88,-16,-99,-96,-14,-97,-99,-21,-97,-74,-89,-77,-50,-99,-81,-99,5,-96,-99,-80,-99,-92,16,-98,-77,-99,67,-99,-53,-87,-96,-59,-93,-83,-63,-58,-96,-34,-80,-91,59,99,-21,-81,-89,-66,-93,-77,-89,-98,-99,-44,93,-76,95,-8,-95,-62,77,-53,-32,-93,-45,-97,-78,-98,-99,-97,25,-96,59,-14,-88,-57,-97,-92,-68,-90,55,-68,-98,34,-95,-12,-98,-97,-71,-81,-99,-83,-90,61,-30,-92,99,-82,-75,-88,-74,-77,-89,-96,-79,37,-98,-92,-79,-92,-82,-15,-99,-64,35,-47,-85,-91,-11,-99,-79,-93,-44,-96,-60,-36,42,14,-86,-83,-95,59,-96,-97,0,19,-98,20,71,-88,-31,-85,-48,-91,-99,-92,-90,18,-97,-99,-95,-95,89,-49,-42,-97,-91,-98,-99,-78,-98,-88,-82,-73,-97,-99,84,-73,-53,-82,-81,97,-96,-98,-77,-25,-97,-90,-93,-6,-98,-89,-94,-37,85,-98,-61,-42,-83,-82,-71,-93,-79,-98,80,-20,-76,-96,-97,-95,-67,-52,-96,44,-96,-94,-42,-98,-99,85,-99,-1,-86,-99,-92,-61,-94,-84,-29,-96,-92,-86,-99,-97,-82,-79,-96,-92,-98,-92,-27,-82,-99,-98,-99,-75,-34,-96,-98,-71,-99,95,-38,-60,-95,-79,-95,-81,-86,-95,-77,-97,-99,12,31,-77,43,-97,-82,-99,24,-63,-51,-99,-70,-97,-96,-93,-87,-4,-1,-93,-61,-92,-89,-68,-71,-99,-96,-93,-36,-93,-77,-94,-98,-99,-99,-79,-64,-96,-40,89,-99,-78,-76,-49,79,-66,21,-82,-99,-83,-51,-77,-80,-44,-94,-12,-94,-96,77,-99,31,-72,-91,-94,-78,-87,-99,65,-99,-11,15,-13,-95,-52,-96,-93,-97,-85,-91,-62,-82,-78,-43,-24,-79,50,-41,-64,-67,-54,46,89,-49,-94,-98,-58,-74,-95,-99,-99,-86,-98,-16,-44,-96,58,8,-97,-97,-97,-97,64,-87,-89,-99,-70,-99,-95,-11,-70,-80,-35,-96,-99,-97,-92,-38,-53,-83,-60,-49,5,5,-83,25,-21,-99,-71,-97,-89,-99,-79,-51,9,-82,-90,7,-86,-96,75,-87,-95,-40,-84,-81,80,-73,98,-98,4,-99,-33,-96,-26,-99,-99,-90,-66,-91,-96,-97,6,-97,-4,-53,-96,-99,-82,-99,-26,18,-95,-67,-71,-49,27,63,-97,-98,-91,-99,-94,-90,-87,-96,-98,49,-35,-65,-93,-9,-89,-69,-99,-97,-90,-98,-92,-98,-62,-85,-96,-98,41,10,-93,-99,-96,-57,-98,-86,-96,-97,33,-95,-99,43,-97,-99,-85,-15,-67,-98,-61,-95,-73,-89,-88,-99,-83,-95,-99,-98,-77,95,-87,91,62,-21,-99,-53,-2,-99,-22,-90,79,-92,-94,-70,-89,-81,-99,-77,-98,29,-99,-96,-42,-89,45,-82,-80,-90,-22,78,-98,-97,-97,-99,-91,19,-73,-84,-99,-46,-85,31,7,81,-40,-78,-99,-26,-94,-69,-99,-31,-92,-96,-99,-99,-27,-47,54,-34,64,-93,-93,-73,-94,75,-50,-80,-5,-92,97,-98,88,-86,-84,-29,-98,-38,-65,-98,-65,-77,-97,-94,-52,-52,-88,-99,-71,66,67,-97,-87,-39,-37,-88,-99,-94,-97,-99,-98,-20,-88,-56,-98,-99,-98,-96,-96,-96,-97,-93,-99,-99,-99,49,-32,-74,-53,-91,-97,8,-99,-99,-34,-88,-19,-99,-96,5,-85,-98,-81,-99,-93,-7,-87,-4,-86,32,-99,-71,-95,-98,-37,-97,58,40,-67,-33,-44,-26,-43,-53,10,-99,-94,-48,-63,-61,-92,89,-97,-99,-95,-96,-87,-94,-30,-63,96,-31,2,-66,-61,-62,-48,-98,-99,-98,-96,-81,-78,-96,-24,-62,-77,-57,-76,-98,-95,77,-92,-97,-70,-99,-89,-94,-99,-62,74,-76,-91,-70,-60,-93,41,-91,-98,4,-7,-62,-96,-92,-96,96,-99,-74,-60,-57,-99,-97,-4,-98,81,-51,-18,-71,-99,-74,-96,6,-98,-88,-47,14,-92,-97,-92,-99,-91,-77,-11,-67,-98,-99,-93,-35,-99,81,-98,-24,-9,-98,-96,-69,-91,88,-62,-95,-99,-95,-75,-92,-99,-92,-98,-99,-89,-85,-80,65,-94,0,-92,-74,-89,24,-97,-72,-11,-99,-96,-29,-98,-98,-99,-96,-99,-21,-20,40,-99,-68,-90,-87,-48,-69,-91,-80,-94,-96,-93,-69,-87,-94,-75,9,-82,-98,-99,-78,-31,-96,-92,-45,-95,-82,-60,-99,-80,-62,-7,-85,22,-6,-8,-84,-96,-71,-91,-96,-99,-99,-99,-58,-98,-67,-97,-95,-95,-98,-59,-1,-70,-99,-93,-79,-10,-91,-90,-99,-97,-98,18,-60,-77,-75,-98,34,-99,-96,-99,-99,-60,-92,-98,-85,-24,-87,-54,-97,-94,44,-98,-97,-92,9,-3,-42,63,-75,-89,-17,-85,-75,-93,-95,-87,-45,46,77,63,-79,-99,-33,41,-3,-68,-99,26,98,-64,-71,-98,-42,-99,-66,-94,53,-99,-89,-99,-63,-90,-97,-60,-92,53,-98,-99,-98,80,-98,-97,-93,40,-93,-17,-97,-92,18,-67,-90,-89,-63,-99,-67,-94,-99,-96,-98,-54,-71,39,-95,-44,-18,-96,30,13,-99,-98,0,37,-51,-99,-84,-57,-93,-73,-95,-99,-80,-96,-99,-99,-94,-86,-99,-90,-87,-99,-61,-98,-49,-90,-12,-39,-96,-11,-97,-86,-80,-87,-78,-11,-98,-99,-99,-92,-97,-91,-99,23,-99,-84,-98,-95,-89,-61,-98,-82,-80,-99,-63,-99,-94,-93,-97,-85,-24,-99,-15,44,-33,-98,-97,-98,-84,-95,-99,-33,-60,-96,-99,-98,-74,-98,-82,-98,-29,-72,-73,-99,56,-38,-52,-74,-96,-5,-99,-87,-84,-96,-84,-98,76,25,-99,-38,-93,-99,-18,-4,-91,-93,-92,-91,0,-98,-98,-89,-63,-36,-46,-73,-95,-91,-98,-98,-43,-94,0,-33,-99,-90,-32,-96,-98,-98,-94,-74,-88,-47,-5,-95,15,-58,-72,-92,-99,-83,-99,-66,-82,29,14,-34,-90,-39,-12,-27,-99,-43,2,-88,-56,-69,-96,53,-34,-77,-86,-98,-90,91,-91,-92,-78,-59,-26,-5,-82,-97,-99,-99,-99,-98,-79,-68,-85,13,62,-97,-97,-16,-62,-98,-97,-53,-78,-96,44,-63,-99,-90,-53,82,-90,-99,-95,-94,-99,70,-34,-92,2,-92,-99,-88,-22,-97,-21,-99,-94,-98,87,-11,-88,16,-79,-56,-99,-42,-88,-18,-97,-98,22,-99,-96,-99,25,-91,-80,-66,-97,-77,-98,56,-92,-99,-73,-94,-78,52,44,-89,-97,-87,-95}
{-98,-82,-92,-85,-86,-99,-83,-97,-98,-99,14,-29,-99,-99,-99,38,-89,-74,-41,-81,61,-96,-98,-35,-83,-99,-93,-95,-95,-93,-99,-36,-85,-80,-99,-99,-38,-98,-15,-81,-98,-8,72,-73,-79,-53,-85,-99,-94,-68,0,87,-86,-84,-82,41,-88,45,-37,-31,-67,-98,-69,-44,-45,-99,-49,-81,-18,-92,-99,-98,-92,4,-75,-41,59,74,-98,-99,-99,-61,-91,-40,63,-88,-92,-31,-88,23,-94,-78,-21,-48,-96,-77,-98,-87,-97,-99,-22,-88,-62,-92,-98,-84,-97,-89,-98,-98,-33,-69,-43,-8,-85,-90,-76,-57,-98,-43,-97,-80,-97,-98,-79,-5,-97,-91,-87,-63,-5,-81,-99,-10,-40,-93,0,-98,-93,-98,-83,-64,-98,-93,-96,-96,60,-82,-85,-73,-97,-69,-99,-85,-99,-99,-96,-91,-71,-42,-98,-98,-96,62,-28,-3,-97,-98,-99,-99,-52,48,-81,19,-32,-93,-73,-44,-58,-27,-52,-92,-98,-50,-41,-56,-30,-38,-96,-96,-74,-92,-98,-86,-86,-96,-89,-93,-83,-80,-99,69,-83,66,66,-16,9,-79,6,-91,-78,-88,-75,-96,-99,-99,-46,-99,-94,6,-25,-98,-99,-93,-62,70,-99,-85,-98,-80,12,95,-94,47,-97,-93,-99,-72,-55,-81,-16,12,-98,83,-88,34,11,-99,-93,-83,-95,-78,-65,-98,-82,-83,-97,14,-99,-50,-69,-99,-97,-68,-56,-93,-95,-92,-96,-85,-98,-89,-65,-85,-99,-27,-84,-98,-70,35,-98,-53,-98,-93,-74,24,-93,21,-98,-39,-99,-14,-99,-98,-34,43,-97,95,-89,-86,-99,27,-95,-97,45,88,-95,-73,38,-99,-96,-93,-99,-42,-99,78,-51,-57,-99,-64,93,-92,-96,-98,-79,-83,-32,-99,21,-68,2,-98,-26,9,-23,-99,-33,-99,-23,-69,-97,-16,-99,-96,-99,-61,-99,-87,-98,-95,-99,-96,-72,-95,68,-92,-96,-99,-90,-99,-99,-50,38,-87,-93,-53,-21,-97,-87,-62,-51,-95,-99,-59,-99,-85,99,-95,-45,8,-99,-96,-92,-52,-98,-91,-87,-98,-71,16,-99,0,-46,-80,-99,-85,-82,17,-57,0,-99,-97,-95,-99,-20,-96,-95,-69,-95,-90,-78,-59,-32,-85,-97,-98,-93,82,48,-98,62,-74,-47,-57,-99,-98,-5,-96,-26,-98,-29,-93,-86,-98,-84,-62,-99,-68,-76,-99,-54,-99,-99,67,-96,60,-13,1,-96,-45,-97,-98,-99,-99,-32,-6,-60,-97,-90,-82,-81,36,-91,-22,-77,-64,-78,-93,-1,-73,-19,-99,-76,-99,-60,-93,46,-59,-74,-99,-99,-90,-90,26,-81,-98,30,-88,-93,-90,-99,-78,-94,-99,-99,-71,-30,-13,94,-68,-99,-99,-49,-31,-49,-95,-44,-46,-94,-97,-50,-61,-99,-94,-96,-96,-75,-44,-94,-30,24,-40,-98,-97,-91,-91,-96,-72,-30,38,-58,-99,-4,-15,-60,-89,-90,-98,-97,-42,-65,-13,-91,-85,-96,-94,-99,-99,76,-98,-95,-83,-88,-90,-99,-98,-63,-80,-19,-97,-87,30,-82,-88,-98,-93,-47,-15,-18,-75,8,-25,94,-73,-95,-94,-25,51,-85,-88,-89,-41,-18,-82,-55,-39,-17,-83,-76,-77,-96,-14,-97,-95,23,-97,-72,-96,-99,-93,-95,-98,-99,-96,-99,-96,-98,-99,11,6,-91,-97,-99,-64,-87,-52,-19,-86,-79,-18,-69,-99,-99,-40,-95,-98,-64,53,27,-79,-97,-54,-88,-94,-98,16,-98,-85,-77,-38,-16,-67,-3,-19,-99,72,-2,-98,-99,-98,-89,-36,-14,-99,26,-99,-55,-90,-91,-91,-55,-89,-77,-80,-99,-95,29,-83,-82,-89,-82,-64,-86,-82,-97,-99,72,63,5,-58,-99,-99,-37,-20,-81,-61,7,-78,-99,-85,-24,-76,14,-97,63,-73,-96,-89,-97,-99,-85,-81,-94,-56,1,-52,-98,-59,-80,-36,-83,-96,-72,-1,-94,-77,-74,-94,-98,36,13,80,-94,-99,-27,-78,-99,56,-93,-99,-97,-68,-91,-87,-74,-39,-9,-50,73,-78,-75,-97,20,-99,-52,-96,-99,-40,-72,-55,-93,-65,-99,-55,-96,-31,-99,70,57,-88,-93,59,-91,-99,-84,-87,91,96,-89,-99,-99,-23,-53,15,-96,-36,-30,-97,-99,-98,-85,38,-96,-74,-84,-98,-61,-69,-99,-94,-94,-36,-98,17,-97,-96,-98,6,-92,-93,-98,-92,-99,-96,-99,-94,-34,-64,-99,-56,-99,37,-92,-70,-94,47,-93,-99,-99,27,31,-98,-98,-98,-28,-55,-57,-1,-97,-40,-92,-72,-93,-97,-98,-89,-7,9,6,-81,-85,-3,-99,-95,-71,-88,14,-67,85,-59,-99,-88,-28,-90,-97,-19,83,-99,-74,-48,15,-98,16,-96,-82,-45,-95,-95,-29,-96,-87,-84,-99,-99,-88,-95,-98,-75,-95,-93,-86,-38,-99,-87,-92,-87,-67,-77,31,-99,-77,-46,-88,-98,63,-99,-99,-91,-95,-73,73,20,-98,-97,47,-94,-99,-16,-99,-55,-55,-97,-75,-99,-29,-96,-92,-94,-49,-85,-94,6,-66,-93,-52,-81,-99,-97,-80,-15,-79,-85,-87,98,-79,-98,-88,-83,-48,36,-96,-99,-86,-98,-85,-98,-86,-92,-36,-10,-98,97,-15,-84,-99,-60,-96,-85,-94,78,-2,12,-95,-98,-97,-95,-98,-88,-10,-43,-55,-90,93,-99,-80,-92,-98,-89,-56,-98,-98,6,-98,-99,-96,-8,-99,-86,-97,-72,-81,-99,-90,-96,12,-45,71,58,-98,-53,-92,73,-91,-38,-67,-73,-84,90,-72,-2,-98,-99,-92,-48,-97,52,-25,-96,-95,-12,-95,-97,-80,-99,-46,-99,-97,21,-91,-93,-25,-98,95,-94,-96,-99,-63,-96,-97,-99,-99,-93,-99,-53,-83,46,99,-49,-65,62,-76,-72,-1,35,-11,-56,-83,-13,-22,76,39,-16,-28,-99,-69,-99,-40,-98,-97,-95,-85,-8,-81,-83,-94,-96,22,-99,-98,-78,-69,-99,-99,-71,-93,-98,-61,-43,-90,-82,-80,47,-98,-2,-99,-85,-83,-97,15,-33,-95,-99,-94,-96,-97,-97,-85,-93,-84,-99,88,-5,-80,-87,-78,-68,-97,-68,58,-34,-26,-97,-97,-94,-97,-98,-91,-99,-99,-97,-53,-34,-98,-63,44,-76,15,-54,-85,-99,-45,-47,-38,-45,-99,-69,41,55,-77,-98,24,-96,20,-88,-99,-72,-72,-52,-92,-97,-90,-99,-95,-88,-55,-7,-92,-91,-22,-99,22,-94,-98,-96,-27,-99,-42,-71,-97,69,-69,-95,-91,-96,-98,-82,-96,-85,-97,-99,-98,-78,-99,-97,-22,6,-88,-98,-88,10,-81,-95,-94,35,-79,-93,-94,-98,-96,-80,-45,-97,-99,-88,-94,-98,-28,-92,-75,-10,-75,-33,-93,-68,7,-74,-10,-94,-74,-96,-82,-97,-96,61,-96,25,-56,-92,-99,-91,-99,-98,-4,-69,-87,-90,-97,-2,-26,-98,-98,-76,-94,-69,-94,-56,-99,-25,-99,-93,-96,-35,66,-94,-98,-95,-52,-10,-79,5,-74,-79,-99,-34,-96,-45,59,46,-99,-98,2,-17,-96,-99,-98,-94,55,77,-67,-83,-97,-76,-99,73,-83,-99,-94,-97,-58,-88,-91,-99,-95,-72,-27,-97,-65,-77,-77,-99,-66,-98,-15,-98,-98,-85,-90,-99,-94,90,-88,-92,-99,-98,-97,75,-95,-17,-81,-88,-88,8,66,-98,-84,1,-79,-95,-97,-78,-93,-98,-3,-88,-96,61,-99,-62,77,18,-76,-95,-76,29,-77,-97,-98,-97,-70,14,-70,-79,-96,-7,-71,-96,-53,-99,-98,-80,-51,-59,-67,-66,-96,1,-90,-97,-76,-99,-99,-22,-78,-89,-20,-59,-96,85,-99,-99,-92,-91,38,14,-94,-83,-94,25,-96,-95,-93,12,44,41,-96,-89,-97,71,-98,-97,-99,9,-70,-61,-96,59,67,97,-96,-90,-56,-86,-82,-26,76,17,68,-95,-96,-18,-98,-97,-86,-43,-9,83,-65,-88,-49,-57,-92,-99,-88,52,72,-75,-97,2,-79,-93,24,41,-16,-32,34,-47,-83,-52,78,25,-99,16,-98,-74,-98,-73,-74,-98,-96,-95,-98,-98,-28,-99,-52,-99,-97,-87,-96,-91,-15,-28,3,-72,-86,-95,-97,-35,-21,-99,-88,-32,-94,-96,-99,-93,-99,-89,-89,-43,-96,-91,-38,-8,-85,-97,-69,-97,-74,22,-92,-9,-45,-44,82,-94,-94,-87,-92,-99,57,-4,-63,-27,41,-99,-88,-98,6,-67,84,-98,-63,-97,-90,-64,-95,-68,-64,17,-77,-98,-99,-65,-81,-21,70,-71,-99,-67,90,-99,-58,-97,-97,-99,-98,-87,-93,-98,-99,-98,-78,-22,-96,-61,-99,45,81,-58,-66,-95,-92,-69,-46,-99,-93,-93,-73,-99,-73,-98,-99,-97,-87,-86,-89,45,99,-60,-89,-98,-92,-13,-96,-99,-97,-98,27,64,-6,-98,47,-90,-20,-93,-93,-96,-99,-72,-98,1,-73,-24,-99,-98,-79,-98,-97,-49,-99,-98,-94,-53,-96,98,-65,-83,4,-95,-98,-97,-43,-83,-75,44,-98,6,-73,-98,-48,-38,23,-73,-95,-89,-77,-95,-75,17,-20,-99,-78,-57,-98,-36,-51,-94,-98,-99,-93,-91,47,-8,-99,2,-99,-94,-73,-97,4,-75,-80,-79,-99,-89,-24,56,-99,-98,-96,-99,-99,-50,-96,-39,-85,-86,-95,-98,-81,-99,-97,25,-93,20,-99,-79,-99,-67,-74,-91,-12,-91,91,-99,-52,-96,-99,-97,-95,-94,-94,60,-35,-99,-93,-55,-93,-97,-85,-92,-71,32,-78,-99,-99,-84,-82,-70,-97,-99,-52,21,-97,-26,-92,-92,-48,-91,-49,-37,-98,90,5,-9,-77,-98,-99,-6,-72,-37,-98,-68,-94,-87,-3,-95,-67,42,-59,-99,54,-30,-74,-87,-68,-93,-93,-88,-46,-94,-8,-97,23}
{-73,-60,27,-62,-94,40,70,-86,-99,-92,-34,4,-91,-1,65,19,-54,-98,-82,-72,-43,-95,-94,69,-98,-99,69,-93,-27,-99,-97,-67,-99,-98,-81,-99,-89,-95,87,-84,-67,-82,-99,-96,38,11,-97,-75,-84,-86,-94,-81,-69,-52,-92,-74,-96,-52,-94,-96,-98,-76,-60,-95,-27,-99,89,-98,-69,91,65,-84,-98,-87,-55,-97,-73,-98,-19,-98,-11,-77,-80,60,14,-92,20,-91,-97,-99,-25,-84,-1,-91,-99,-88,-98,27,-99,-99,-5,-51,-96,-99,-97,-97,-98,-27,-35,-72,28,-97,-98,-54,-89,-95,-72,-82,-97,-86,-98,12,-88,-98,-93,-93,-98,-52,-98,-85,-99,79,-88,81,-99,-15,-98,-68,-95,-99,-28,-40,-89,-84,-98,-83,-97,60,67,-96,90,-83,-16,-2,16,-95,-98,35,-66,-97,-29,-86,-87,-99,-98,-67,-99,-1,-27,-78,-94,-97,-16,30,-46,-99,-69,-89,-26,-32,-89,-99,-93,-97,-99,-99,-16,-11,-99,7,-14,-89,-50,-89,-97,-99,-99,-93,-95,-97,-93,-99,-95,-63,-42,-69,-99,-92,99,-96,-97,-89,12,-18,-51,34,-94,-7,-98,-97,19,-85,-89,-98,-98,-99,-90,-46,-97,-45,-75,-78,37,22,-79,-28,-92,-85,-99,-65,-84,-99,3,-82,-96,-94,-94,-53,84,-97,-95,39,-99,-2,-70,-19,-95,-29,-70,-98,5,-99,-24,-52,-1,-86,-35,-96,17,49,-97,-99,-45,-99,-97,-97,-99,-99,-69,-75,23,58,-91,-97,-45,-94,-42,70,-68,-97,-99,-62,-29,-95,-69,-90,-67,-19,36,-75,-87,-85,-89,-98,96,-86,-29,-99,-18,-91,-94,24,-94,-82,-94,-89,-86,-85,-84,-99,-12,-88,-99,-97,-98,-99,-77,-82,38,-32,-56,-33,-93,-95,-99,-95,-97,-81,-95,60,-61,-88,-96,-99,-92,80,-77,-94,-94,-97,-92,-66,-92,-99,67,-96,76,-34,-98,-95,-58,-48,-97,-92,-99,-42,91,-88,-98,-28,-99,-73,-72,-98,38,-86,31,12,-86,-77,8,0,-96,-94,-93,-29,-95,-63,-59,-99,-97,59,92,-97,-64,-35,-94,-91,-96,-56,-69,91,-22,-99,-75,-94,-23,-99,-48,-99,-40,-19,-97,-99,-94,-73,-96,-99,34,-48,-98,85,29,-77,-84,-98,-62,-79,-20,-96,-95,-51,-98,-87,-95,-96,-99,-86,-72,-99,-99,-99,-97,-71,-85,-97,-98,-89,-94,41,-88,-24,-70,-98,-91,-97,-6,-99,-86,-91,-99,-97,-27,-99,29,15,-2,-73,-39,-95,6,-91,-99,-99,-64,90,-98,-99,-95,-92,-99,-39,-92,6,-96,-66,-96,-98,-81,-95,-62,-99,-99,-75,-69,37,-86,14,-78,-50,-66,-5,-56,-80,-19,-98,-93,-9,81,-86,-68,3,-58,-97,30,-85,-44,-99,-31,-86,-9,-84,55,-94,-10,-91,-95,-34,-59,-94,-99,-92,-97,-60,-99,-92,-69,-9,-94,-99,-99,-86,-82,-69,-79,-98,-96,-99,-99,6,-46,-98,-95,-98,-96,-98,-99,-96,-96,0,-23,-67,-91,-98,-99,-84,-49,33,-97,-92,-99,-91,-97,-44,-8,-66,-99,-70,-93,-98,-78,-98,-92,-54,79,0,-95,-77,-59,91,0,-94,-73,-92,-97,-82,-91,-2,-88,-99,-90,-99,-27,-99,-92,-18,-94,-99,84,-98,-84,-96,-27,-94,-74,-99,-80,-98,41,-84,-61,-98,-96,-99,-91,-99,-96,-97,-92,-99,-96,-97,-96,56,-96,-94,-61,-89,-91,-95,-57,-97,-88,-71,-80,-72,-91,-83,-99,-97,-98,-90,-99,-93,-54,-80,-91,-89,54,-60,-99,-53,-40,-96,15,34,-56,-99,-97,-98,-7,-99,-48,-49,-36,-72,-99,36,-67,-94,-86,-65,-98,-98,-83,-99,-98,-1,-96,-75,-96,77,-97,6,-87,-98,-98,-43,-97,-95,-82,89,-99,-47,-98,-92,-95,-99,-97,-99,36,-97,64,-97,-26,-92,52,-99,-9,-96,-99,-44,-97,-47,-44,-99,-90,-99,-97,-94,-99,-91,-96,-60,-81,-95,28,-58,-99,-51,-81,47,-25,-25,10,-99,-98,-99,19,-73,-82,0,-98,-99,-11,-68,32,-96,27,-88,-85,-39,-90,-62,-40,91,-95,-99,-27,-88,-96,-48,-95,-77,-93,-87,-74,-88,-96,-99,-85,21,-69,-94,48,-59,-97,-20,-81,-99,-74,-99,-57,-39,-75,-96,-95,-98,-99,-38,-97,-78,-82,-95,-99,-68,-36,84,-98,-96,-84,-95,-99,-90,-33,-95,47,-97,-96,-54,-79,-97,73,-96,-93,-93,-99,-95,-95,-25,-99,-72,-86,74,-79,-95,69,-55,-94,-81,-95,-26,-58,-99,-36,-84,-77,-80,-99,-96,9,-98,-66,-88,-56,-95,-82,-1,-99,-97,-99,-99,-51,-97,-95,-21,9,-98,-99,-68,-53,-94,-42,-86,-6,-99,-94,35,-67,-32,-88,-97,-88,-60,-93,-82,-53,-58,-82,-6,71,-85,-94,24,-97,-12,-89,-99,15,-93,1,-96,-96,48,-31,-35,-99,18,94,-33,11,-87,-99,-82,-81,-99,-96,-95,-99,-44,-96,-22,47,-95,-77,-88,-96,82,-37,-97,-98,-99,-88,-97,17,-98,-99,-99,-91,-96,-90,31,62,-99,-99,4,-60,-99,-75,-90,-86,47,-76,-61,-49,30,-97,-97,-86,-99,-89,-99,-98,-92,-92,-99,31,-94,-92,-99,-45,34,-51,-98,-99,-90,-72,12,-61,-62,1,-99,-53,-73,11,-26,-99,-34,-97,-14,-81,-35,-90,-95,-77,26,-98,-12,-95,-90,-82,-95,-12,-78,-91,-99,-97,-96,-94,-99,-99,-97,44,-26,-82,-99,-99,-99,55,-91,20,-76,81,-36,-99,-64,-99,-16,-30,-94,-98,-56,-97,11,-85,-98,-99,-99,54,-95,-95,-80,-89,-99,-96,-99,-33,-85,-23,-93,-39,-99,53,44,-99,-47,-92,-4,-21,-99,-20,-89,-91,-71,-96,-71,-61,-90,46,-96,-94,-94,-48,-99,-99,-93,-89,-57,-62,19,-48,-97,-86,-99,-15,-97,-49,46,12,-89,-39,-17,-95,42,-58,24,-92,-95,-42,-90,-26,-93,-61,-73,53,-99,-89,-99,17,-95,-91,-95,-96,-16,-92,20,-95,94,-85,-97,-95,-98,54,71,-96,97,-58,-24,-64,-98,-97,-27,-94,-99,-95,-90,-95,-85,10,-93,15,-49,81,-98,-81,71,-94,-99,-95,-99,-78,-91,-95,-96,-58,-97,-94,6,-84,-21,83,-25,-90,2,-89,-6,-99,-97,-54,-90,-95,-99,-11,-98,-96,-99,-92,-63,-94,-44,-1,-98,70,-46,-92,-85,-99,-92,-78,-50,-92,-91,-20,-99,37,-98,49,-30,-64,-87,-99,35,-99,-64,-38,-90,-93,81,83,-20,-97,-95,-82,-99,-69,-63,-98,-42,59,-85,-68,-31,-55,-98,-94,-81,-78,-98,-83,-92,-55,-93,-95,-2,-94,-99,-99,-96,-97,-99,-96,-99,-80,-97,-99,75,33,28,-46,-79,-71,-19,-98,-54,-98,-98,-66,39,-94,-93,-99,-77,-91,-97,-97,-39,-98,-95,-81,-47,-92,-97,-99,-51,-99,20,-18,-55,-99,-62,-78,-86,-99,-82,-90,-96,-99,-86,-95,9,-99,-92,-56,-76,-99,-79,-99,31,-95,-76,-74,61,-99,-97,-98,5,-99,-73,-89,-73,-96,-96,-94,-8,-35,-98,-98,-98,-82,-99,-99,-99,-82,-75,-99,-98,-85,-98,-99,-69,-90,-69,-29,-95,-55,-99,-64,-96,-99,-83,-62,-64,-62,-9,-97,-65,11,-67,-78,-98,-14,36,-98,-68,-99,-23,32,-99,-12,-87,-97,-99,30,-92,-78,-91,-98,-50,-45,-35,73,-99,-99,-85,25,-94,-94,-99,-95,-82,-99,-43,95,-97,-98,-94,28,-96,-99,-73,-82,-94,-92,-64,-92,-89,-95,-99,30,-98,-85,-97,-99,-73,-99,-48,-77,24,-87,-95,-53,-89,-57,-95,-99,-98,10,-58,-99,18,-85,-4,-64,-27,-16,9,-80,-74,-86,-97,37,-93,-98,-99,-75,-95,-89,-81,-94,-95,-99,-95,-55,-84,-37,-94,-98,-58,-99,43,-48,-14,-92,-77,-90,-94,-83,61,24,-63,-95,-97,-99,-97,-91,-49,4,-98,-92,-85,19,-10,-83,-26,-85,-43,-91,-86,-14,-84,-89,-97,-97,-98,-88,24,22,-97,-97,-16,-99,-83,-94,-24,-59,-58,-98,-99,-67,-76,-82,-68,-90,-98,-89,-99,-64,-52,-52,96,-29,-80,-36,-96,27,-7,-99,-8,-99,-97,-85,51,69,-91,-76,-89,-90,-96,-90,76,-29,-43,66,-40,-95,-30,-75,-97,-97,-86,-90,-97,-98,-84,-48,-98,80,-99,-87,-92,-98,-94,-99,-96,-99,-82,-46,-65,-95,3,-92,-99,-77,-64,-97,-99,62,-89,-35,-99,-22,-13,-35,-69,-97,-56,-85,-96,-84,-44,40,-74,74,-97,-97,2,-90,-18,-66,-91,-99,-91,-99,-93,-82,-97,-40,-15,18,66,-99,-36,-86,-73,-60,58,-93,-99,-3,-64,71,-99,-98,-98,46,-89,-98,-98,17,-99,-98,66,-25,-80,-91,-98,-94,-73,-94,-43,-95,-97,-97,-62,-95,-83,-99,-91,-97,-39,-91,-70,-76,-10,59,78,18,-99,-69,-98,-67,83,26,-42,-72,-69,-99,-98,-98,2,36,-99,-81,-87,-79,-97,-87,-99,-76,-81,-97,-93,-97,-89,-85,-94,-97,-98,-88,-71,-93,-97,-92,-97,21,-8,55,14,29,35,-99,-31,-42,94,-98,39,-28,-6,-77,-93,-95,-99,-92,-99,-84,-91,-61,-98,-98,-96,-79,-93,-5,-43,-99,-20,-46,-96,-54,8,-89,-75,-72,-99,-61,-99,2,-93,-95,-98,-96,-94,-99,-60,94,-84,-43,-97,-94,-61,-78,-35,-98,-87,93,-83,-98,-96,-83,16,-99,-96,-9,-41,-92,-55,-64,-85,-99,-92,-77,48,13,-61,-41,-98,-99,-92,35,-95,-82,-94,-39,-72,-95}
{93,32,71,97,7,81,38,90,82,58,61,63,50,68,30,64,47,4,70,70,12,89,27,71,79,4,3,16,61,46,33,41,17,31,85,43,98,82,47,43,44,64,36,91,100,66,12,37,64,86,41,3,51,54,1,84,13,95,20,82,65,66,12,69,47,98,36,99,8,5,50,10,84,2,97,4,67,96,52,58,21,33,53,94,37,52,75,13,30,40,81,40,6,66,38,7,20,72,2,75,71,93,16,35,17,28,1,90,21,84,93,32,81,25,17,98,45,70,50,25,93,28,33,62,78,16,39,12,56,42,89,95,81,92,49,41,94,51,84,72,17,30,95,99,66,67,60,21,75,63,66,28,3,19,64,85,43,70,23,33,43,81,40,59,44,66,17,41,34,51,7,57,84,12,93,29,11,90,99,57,65,46,83,46,78,18,96,28,77,41,99,65,56,6,71,40,67,55,3,67,61,12,17,10,37,23,84,36,39,67,38,38,36,3,98,11,68,84,23,27,44,91,26,24,94,59,29,99,55,51,77,32,81,98,40,52,14,24,29,16,68,66,91,15,63,28,82,86,83,56,62,94,96,50,77,50,49,25,82,29,49,90,4,13,76,37,2,85,40,27,89,10,36,18,31,64,65,88,47,13,58,6,31,9,1,62,39,37,93,58,26,23,76,89,63,56,27,40,68,41,11,1,80,99,53,18,63,18,25,8,31,78,33,20,58,25,87,55,29,79,96,48,24,66,36,87,7,13,60,43,7,56,7,4,58,13,82,45,22,18,34,87,16,12,63,100,4,8,21,32,43,52,64,1,64,52,3,27,29,99,19,71,89,66,32,41,25,73,40,10,94,97,58,35,63,10,52,91,23,98,8,94,24,14,5,52,45,28,59,51,73,75,59,28,97,35,72,44,63,57,26,30,69,83,34,35,75,77,13,37,39,95,15,82,55,33,22,96,88,59,49,30,52,56,72,19,70,4,87,79,89,84,73,22,10,28,84,33,92,96,54,61,50,71,19,46,82,37,24,54,72,26,59,14,7,45,30,84,72,59,17,79,39,37,27,27,52,69,63,49,96,28,80,64,58,5,86,39,61,95,70,52,96,39,30,3,77,92,59,69,84,37,27,100,76,96,49,61,26,100,25,17,59,33,35,58,24,46,68,40,20,15,31,34,60,80,78,53,2,74,35,13,17,48,62,2,23,3,46,79,7,83,17,45,99,12,57,17,46,1,26,93,62,72,84,95,82,73,60,99,52,10,3,70,57,20,38,56,18,55,18,81,88,78,99,6,73,78,63,57,67,40,83,79,84,62,24,42,27,76,48,5,75,85,28,44,31,78,54,77,98,16,39,30,73,95,84,51,90,57,58,37,96,41,98,11,16,78,7,81,73,96,40,41,75,17,65,59,1,39,28,80,8,57,63,99,9,74,9,44,49,4,67,93,74,43,65,51,99,10,12,22,95,36,87,83,13,34,52,48,78,40,59,61,31,21,45,44,27,97,28,27,3,48,100,87,44,41,36,55,73,76,37,17,73,59,50,36,31,88,36,71,63,84,18,3,47,13,99,5,17,8,32,8,49,69,30,84,59,90,75,44,3,71,7,21,33,83,82,88,7,82,20,55,19,13,54,13,14,12,76,21,28,76,88,75,39,86,3,63,12,44,28,96,20,44,21,73,3,97,35,86,31,33,31,58,58,10,35,70,80,13,62,84,89,72,13,30,24,84,77,39,89,21,27,66,91,2,12,8,99,6,87,31,1,54,17,64,60,22,12,16,7,92,10,8,57,76,62,58,9,55,73,18,50,84,11,30,18,36,42,95,38,95,1,11,57,62,72,99,14,6,1,54,38,94,94,28,92,3,51,10,53,74,68,78,30,54,78,55,53,74,13,90,74,26,7,44,25,11,80,68,87,7,100,88,74,47,82,20,56,64,98,18,73,91,96,70,74,49,59,93,48,56,11,27,54,52,5,60,100,50,87,25,13,56,24,73,81,3,43,53,30,42,94,32,87,50,88,47,86,42,18,99,19,36,69,25,9,62,96,97,40,10,97,62,11,92,66,100,28,3,71,54,71,97,91,86,78,41,28,20,10,51,76,78,46,14,59,22,62,47,41,28,100,5,94,26,27,12,88,4,36,65,44,14,78,1,27,80,84,66,38,33,37,47,61,50,93,80,5,39,64,94,39,12,77,73,90,60,3,45,29,92,68,100,94,2,92,86,66,100,7,36,86,69,31,91,84,49,48,98,26,60,54,5,36,70,89,30,95,70,65,51,44,2,35,49,17,21,24,30,65,51,56,92,22,79,85,98,37,39,99,6,100,44,46,35,50,82,77,53,14,13,43,45,69,85,25,50,95,71,94,61,71,23,9,51,37,34,100,21,17,59,27,40,53,60,40,64,37,19,29,91,67,19,10,47,2,11,64,28,53,54,12,83,39,76,3,77,44,2,90,63,80,93,23,89,78,48,55,87,60,85,34,96,40,25,51,52,21,1,97,8,36,94,73,39,72,56,48,75,92,58,10,13,9,62,36,75,70,1,91,37,4,1,56,83,51,46,57,34,18,84,95,53,8,81,81,82,93,30,61,15,95,6,13,10,20,48,45,47,98,77,16,17,4,98,35,12,51,64,36,66,63,78,91,35,88,49,95,88,37,53,38,73,93,35,25,24,84,33,49,15,90,34,77,81,100,48,16,95,43,45,61,71,90,96,31,14,92,69,5,83,70,52,35,7,40,99,54,75,76,71,90,100,49,87,31,15,18,14,97,34,29,81,31,97,9,81,65,64,21,73,29,95,31,40,87,51,7,18,18,61,50,80,98,10,97,98,12,63,80,20,8,74,84,54,70,11,44,59,46,4,58,3,35,41,2,57,45,35,18,8,97,27,41,66,61,42,35,80,10,63,27,58,12,91,49,28,36,30,95,23,69,68,97,80,92,27,4,28,38,28,11,35,16,46,86,61,19,12,38,36,88,21,84,12,29,94,53,66,70,63,25,40,25,89,96,4,39,78,7,54,66,17,22,94,46,35,78,98,84,3,67,18,15,99,33,4,88,67,65,68,58,90,73,80,85,20,55,73,88,99,83,27,7,95,91,11,37,85,36,100,88,46,13,11,24,35,26,76,5,18,56,43,26,58,91,76,6,70,20,37,43,48,70,62,65,84,99,72,70,30,8,4,48,18,57,43,3,85,10,85,84,71,5,95,54,7,5,4,65,67,8,62,50,44,65,66,24,82,26,77,35,28,95,2,64,71,66,21,99,90,86,34,41,66,16,39,19,17,1,89,17,50,63,34,70,99,44,23,46,34,34,19,38,75,1,11,41,87,4,90,61,70,90,17,57,1,62,46,65,83,44,39,76,86,30,79,78,70,3,7,76,26,79,88,32,40,5,68,30,48,76,17,96,42,98,97,55,81,63,7,91,14,6,100,23,2,63,8,84,43,31,20,88,7,43,97,67,28,66,50,99,46,89,2,54,58,58,6,99,9,78,22,67,56,35,39,38,57,48,93,82,33,98,57,45,34,93,39,71,64,43,14,31,4,47,13,43,82,44,74,22,91,29,21,80,43,39,48,60,28,58,64,26,20,79,92,88,46,64,63,55,7,45,72,39,32,62,46,60,71,40,71,79,68,44,98,100,69,99,81,65,26,30,28,22,99,92,90,51,52,74,80,44,85,10,81,17,100,97,8,54,5,43,93,16,79,33,87,69,86,7,5,78,34,71,20,58,63,71,48,99,63,48,89,28,58,99,65,4,44,33,30,11,18,96,55,82,38,83,42,19,31,26,84,5,71,81,75,48,9,57,57,90,27,88,33,43,2,25,57,84,92,54,98,66,73,41,17,46,47,76,62,17,72,80,88,86,86,8,22,4,65,16,87,70,7,48,75,76,21,100,68,2,15,67,16,37,55,6,41,54,29,43,28,27,85,66,21,83,67,27,10,40,49,84,5,77,73,49,5,93,85,12,86,12,5,40,92,85,83,3,56,100,82,29,69,7,50,86,79,84}
Returns: 4.820537126679594E9
{-62,-91,-98,-98,-86,-98,-93,-84,-75,85,-99,-94,-99,-25,-99,-99,-84,22,54,-88,-95,-62,-86,-75,-89,-91,-89,-13,-92,-96,63,-98,21,-84,-98,-98,-87,-99,-88,-35,-96,-92,-94,-99,-97,-27,9,-45,-14,-96,-91,-87,-99,-67,11,-83,-98,-90,-66,-99,-63,21,-89,-46,-92,-82,-59,-81,-94,-54,-99,82,-70,-99,-98,-93,-91,-93,-95,98,-94,86,-99,-91,-92,-99,-84,60,6,-89,-95,-98,-99,-99,-99,-86,-99,-40,-99,-76,-38,-84,-97,25,44,6,11,-67,-40,-93,-99,-72,-86,-74,-98,-99,-99,-78,-98,67,-90,32,16,-98,-22,-96,-40,-63,-73,-99,15,-63,-96,-93,-85,-46,-67,-89,-94,-99,-95,-86,-61,-77,-42,-68,-27,-93,-95,-6,-99,-87,-86,-75,-94,-98,-50,-96,-82,-99,-95,-96,-95,-67,36,2,-97,-47,-98,-97,-99,-69,-99,-77,-82,-90,-76,-83,-92,-44,-91,-35,-80,-81,-28,-85,14,-62,-88,-75,-46,-24,52,-99,-99,-94,-56,50,-57,-99,-84,-99,-51,-62,-32,51,19,-99,-85,68,-84,-32,-80,-77,-88,11,-61,-99,-97,-97,-94,-43,-97,-95,-93,-84,-50,-93,-31,-55,-99,-96,-86,5,-98,-96,-96,-99,-78,-41,-89,-87,-99,-93,-16,-95,-9,-67,-55,-98,21,-69,-14,-92,-18,-94,-77,-19,-99,-99,-97,-77,-48,-98,15,-10,-99,-97,-58,-94,-96,-95,-88,-95,-95,-94,-90,-81,-51,-80,-77,-85,18,-68,-99,41,-93,-99,-1,-96,-99,-51,-40,-77,-99,-99,-98,-87,-94,97,-73,-63,-15,-75,-86,-94,72,-85,-95,-91,-25,-98,-93,-59,-78,-92,-74,-96,-83,-93,-94,-97,22,-92,-97,93,-99,-93,-99,-97,28,-98,-83,-92,-99,-94,-80,-80,-85,-69,24,-34,-92,-96,57,-10,-11,-85,-23,91,-98,-41,-39,22,-98,-96,-73,-99,-65,53,37,-98,-99,53,-81,-98,-80,-99,-99,-83,-83,93,-99,-53,-58,-99,-74,-31,-91,-96,-3,-94,15,-89,-89,-66,-97,-99,-99,-89,-99,-93,-5,-99,-84,-99,-92,7,33,-96,-73,-96,-99,-8,-85,-96,-97,-39,-99,-32,-73,-99,-85,-99,2,86,-81,-91,-37,-18,-90,-99,6,-48,-97,-75,-99,-38,-80,-28,-99,-99,-83,-97,-12,-85,-97,-94,-73,-96,-58,-94,-98,-99,23,-98,-13,-93,-83,-95,-88,-99,-28,-98,79,-83,-62,23,-24,-96,10,77,-97,-61,-95,-46,-53,-94,-95,-99,-83,-85,-35,-95,-98,-88,-64,-78,-91,-87,68,-62,-50,-99,-81,-48,-85,-28,39,-97,-60,-97,-99,-1,-96,-28,14,-87,-98,-95,55,-99,51,-96,-93,-89,-99,-98,-96,88,-72,-62,-89,-96,-95,21,-97,-99,-99,-72,-96,-99,71,-81,-99,-95,-88,-89,-98,-95,81,-90,-48,-88,-78,-96,-98,-34,-92,-80,-84,76,-51,-69,91,-76,-95,-99,-92,-17,-42,-49,-99,-93,-98,-58,-84,-69,-66,-53,41,-94,-83,-5,-97,-79,-58,-85,-67,-56,-85,-92,-80,77,-97,-86,-95,-53,-96,-45,-58,-80,-89,-86,-70,66,-25,-42,-98,-98,-5,-93,-98,-94,28,15,-79,-96,-99,-38,-72,-99,-97,-94,-26,-96,-98,-98,-48,-98,-55,-88,-91,-29,-84,-99,-98,-92,26,-98,4,-62,-96,19,-99,-98,-27,-89,-39,-90,-99,-91,-31,-96,-92,-84,-92,-97,-48,-99,-98,-99,0,-92,-99,-99,-72,-48,-99,67,-97,-88,0,-78,-90,-47,78,-81,14,-52,-42,-53,-95,-90,-43,-85,-89,-41,-55,-99,63,-55,-93,-46,-86,-91,-99,67,-16,-28,-75,6,-92,-86,34,2,-62,-30,-98,-89,-92,79,-99,-90,-87,-35,-98,-99,-93,-91,-96,-98,-29,-96,-95,-98,-97,-43,-92,-94,78,-96,-39,-15,-84,-69,-26,-74,-54,-99,-38,-99,22,-35,-92,-2,-99,34,-97,-72,-30,-96,-30,-78,-87,-79,-99,-98,58,-56,-80,-73,-97,-96,-99,-45,5,-91,-99,-71,-73,59,-84,-89,-87,-92,91,-70,-77,-78,-97,-15,-93,-16,-83,-97,82,-40,-70,-95,-90,-68,-93,-99,-99,-98,-97,-42,33,-95,-53,-93,75,36,-99,-83,83,-91,-78,-79,-91,8,-70,-64,-88,-73,8,-98,-18,-95,-78,-34,-89,-95,43,-96,-95,-81,-97,-87,-76,33,-99,-99,-96,-79,-2,52,-81,-74,-99,-82,-98,-81,-96,-86,-99,-99,-97,-77,-98,-99,-99,-75,-9,-94,-64,-88,-95,-99,-74,-84,-9,-98,-96,-97,-66,-99,-82,-89,-77,-98,-94,-37,-65,-81,-79,-99,-80,-95,51,55,-99,-87,-30,15,-99,-99,-13,-59,-1,-94,-94,-97,-95,-99,-99,-98,-43,-97,-99,-84,-62,42,-98,-96,-80,-6,-84,-99,22,-78,51,98,-99,-86,-99,36,-78,-95,-99,-67,8,48,-99,-68,-90,-93,-99,-99,10,-55,-97,-98,-99,-96,-75,-75,-92,-89,-93,-67,-90,-88,-99,-87,29,-98,-99,-74,-88,-99,-85,-98,-83,-87,-52,31,-69,-60,-3,14,-88,-84,-99,-23,-99,-10,-91,-44,-85,-44,55,-98,-97,-40,51,35,-80,12,55,-97,44,-46,-82,-16,-76,42,-93,-77,25,51,-98,-98,-55,-33,-97,93,37,-67,55,-86,-99,-99,-99,-83,-98,-94,-97,-78,-67,-50,-97,-98,-99,20,-71,-65,-99,-73,-97,-83,-87,-20,-99,-96,-84,-60,89,-83,-98,-70,-99,-39,-99,-96,-98,-79,-99,-89,-18,-18,52,-99,-96,-81,-49,-92,-46,-91,-99,-55,-99,-9,43,-63,-49,-59,-66,-44,-85,-74,-89,-98,-68,-90,-98,-96,-95,-83,-40,-99,-89,-75,-99,-88,-30,-98,98,-66,-95,-17,31,30,-92,-98,-92,-77,-91,-17,-98,-95,1,-57,-81,-99,-59,-97,-97,-23,-94,-99,-66,-64,-81,-96,-73,-61,-97,-92,-26,-99,-95,-97,-95,-95,74,-98,-99,-62,-98,-64,-99,-97,-99,84,49,-77,-82,-99,-98,-92,-96,-97,66,-97,-92,-78,-86,-98,-82,-94,-96,-99,-2,-95,-95,-62,-98,-97,-99,-45,57,-93,-98,39,-79,-29,66,81,-71,-96,-92,4,-98,-99,-99,-96,-94,-99,-94,-60,-97,-66,-95,-87,-74,-86,-12,-43,-64,-74,-96,-99,-88,-98,-89,-75,-56,-77,-98,-99,27,-56,-97,-79,-73,-99,-97,-84,-84,-93,-91,97,-81,-96,-55,-55,-3,42,99,-99,38,-80,-55,-93,-91,-91,-97,-50,-47,6,-36,-99,-96,-92,-71,-71,-79,-99,-92,-83,-79,-93,-74,-98,-99,14,-97,-80,-77,-95,-95,-68,47,8,-99,-87,83,-94,-99,-36,13,-74,-52,-41,-91,16,-98,-88,-97,-73,-93,-79,-9,-7,-40,-32,-99,-99,-99,-96,47,-70,-89,-81,-93,-68,-93,-83,-88,-96,-93,-97,-58,-43,-85,-98,-30,-55,-98,-65,80,2,-96,50,-68,-99,-98,-33,-93,-90,-66,-86,-32,-91,56,42,-23,-96,-98,-99,-94,12,-99,-48,-52,-99,-73,-22,88,-99,-90,71,-96,-63,77,-93,32,-99,-92,-99,-76,14,-87,-76,-49,19,-92,26,-92,-50,-88,1,-88,-98,-92,-31,-94,-98,-99,-58,-99,84,-46,-78,-7,-96,-97,-52,81,-81,-95,-48,-96,-77,-93,-98,-98,-59,-39,-89,-83,-99,-57,-66,-90,24,-98,-96,9,68,-89,-75,-50,-98,54,-33,-99,-92,-71,-99,-59,-98,-90,-87,-92,-50,8,-52,-25,-58,-99,-79,-99,75,-99,-94,-90,-93,-97,-86,-99,87,-86,-92,-39,-13,-98,-65,-29,-46,-98,-78,-26,-95,-93,-98,-85,-34,-99,-4,-98,-99,-98,-58,-92,-96,23,72,-98,-98,35,-81,-90,-90,52,-72,-1,-95,-98,-98,-99,-85,-82,-87,-87,-99,-54,-81,-16,29,-93,-93,-84,-34,-18,-91,-94,-74,-83,-13,77,-87,-94,-70,-82,-98,-22,-83,-8,58,-93,-83,-90,-94,-80,-96,-98,-45,-99,-43,-10,-61,8,40,-97,28,-98,-93,-62,-94,-98,-28,-89,-94,-99,25,-27,60,-94,-99,-80,-91,-78,-75,-89,-91,-26,-99,-31,-99,-97,-96,-99,-99,-57,-61,54,-40,-94,-89,-95,-98,-84,-7,-99,-89,-97,-91,59,-98,68,-88,7,-98,-95,-14,-97,1,-97,-91,-2,-87,14,-41,-41,-92,-45,-90,-96,2,-99,-98,-81,82,-48,54,-98,-99,-98,-94,-63,-91,-43,-75,48,-99,-97,-96,-86,-93,-2,-98,-96,-90,-93,-9,-36,-97,-73,-23,-28,-95,-98,-94,-48,-89,-34,-99,-98,-22,-71,-76,-85,19,42,-97,-49,-78,82,-13,-75,-99,-89,19,-98,-88,-68,-96,-89,-75,-16,-18,-98,-94,-87,-98,81,-96,24,-44,-99,-2,-56,-94,14,-92,-64,-30,6,-35,-99,35,-98,-63,13,91,-64,-98,-72,-97,-71,-96,-96,-71,-95,-97,68,-97,-97,62,-93,-96,54,-27,-97,-97,-77,-99,-97,-98,-79,32,58,-98,-82,-18,-93,-34,-25,-97,-53,-99,-67,-56,18,-81,-73,-89,-99,66,-76,66,-80,-21,-93,86,-66,-93,-95,-98,-96,89,95,-98,-99,-90,-99,-41,-97,-99,-75,-94,-65,23,-78,-52,-66,-93,-97,-22,-97,-95,70,-29,-99,-85,-97,-83,-49,-98,-76,-98,-94,-48,-59,-91,-27,-95,-49,-98,-78,-13,-98,-20,-85,-98,-68,-99,-47,-38,-85,-96,-5,-45,-60,-71,-83,-72,-97,-11,60,-65,-9,75,-13,-10,-85,24,-98,-89,-95,-92,-50,-99,-77,-85,75,-90,-99,-98,99,-97,-88,-54,-95,-92,-45,93,50,-96,17,-98,-80,4,-19,-67,-99,-99,-87,-97,-86,-84,-91,-64,-93,-97,-74,-96,19,-78,-99,6,-74,80,-95,94,-86,-91,-99,-39,-99,-97,-98,-83,-40,-34,-98,-98,-97,-99,-98,-96,-95,-98,-46,-4,-96,-95,22,-91,-98,-97,81,-96,-98,-98,-92,-94,-99,-42,-17,-83,-92,7,46,97,-99,94,-91,-96,-50,-87,-96,-95,-30,-96,-97,-95,-97,-99,-99,-86,-80,-99,9,-14,-78,-70,-95,71,11,-99,-36,69,-99,-29,-97,30,97,-94,13,-97,-97,58,-97,63,42,-61,-91,-99,-99,-87,-86,-92,-94,-99,-95,-99,74,-91,-92,10,-95,-65,-26,-70,72,-98,-98,-55,99,-99,-96,89,-97,-87,-94,0,-68,27,-98,5,-97,-95,-98,-82,-87,-94,-97,-23,71,29,-95,-99,-91,-90,-87,-99,-79,-86,-55,-44,-73,-71,-98,-97,-99,-98,-98,-95,-94,-99,-60,-85,-98,-95,7,-85,-65,-23,-94,-19,-5,-98,-99,-83,29,-99,-78,-18,-83,-99,-98,-86,34,31,-8,-96,-71,-99,-55,-95,-73,-88,-83,-99,-94,-98,-99,-39,-96,-93,-90,-97,-48,-97,-48,-87,-86,-99,5,-96,-88,23,-97,28,-98,-96,-57,-77,-91,-92,-62,-70,-97,-32,-98,-99,-78,-97,-99,-55,-76,-97,-94,-72,99,-97,-66,-73,-84,-98,-97,-99,-51,-82,-97,-98,-72,19,-97,-97,-98,-55,-99,-86,-96,-98,-58,-94,-99,-5,-91,78,-79,-84,-36,-98,54,-99,-94,-88,-13,-85,-18,-88,-93,-24,-75,-88,89,29,39,-75,-85,-9,-37,-98,19,-97,-73,-96,-98,26,-91,45,-93,-96,-71,-98,-7,-30,-52,-50,-3,-94,7,-98,-91,44,-92,-95,-85,50,73,-53,-93,-73,-18,-13,-64,-97,-98,-44,-86,-95,73,-83,-78,-90,-86,-73,-99,-94,-96,8,70,-99,-96,-98,-93,-14,-72,14,9,-28,-87,-94,21,-99,-92,-98,5,-60,-58,-96,-58,-98,-68,-95,-91,-98,-94,-98,-81,66,-95,55,-99,-89,-52,-90,-99}
{-43,-99,-74,-99,-85,6,-70,-85,-41,-46,-86,-79,-96,-93,-91,-99,-38,-99,-74,-95,-67,-68,-91,-86,-89,-5,-60,-80,-46,-99,-28,-94,-99,-99,-98,-95,-83,-92,53,-98,-82,-87,-82,-98,-48,-99,-91,-96,-95,-70,-96,-56,-44,-88,-96,-95,-92,-96,28,-96,-54,-22,-94,61,-94,-99,-50,86,-97,-99,15,-99,-94,-99,-83,-99,-96,-61,-99,0,-91,59,-97,-99,-96,-99,-67,2,-67,-73,-99,27,-92,63,-26,-92,-42,-42,-99,-11,-68,26,-62,-95,-93,-16,-93,-53,-99,-95,-63,-14,-99,-93,-34,-97,-97,-74,-90,-13,-99,82,-99,-52,-95,-99,-91,-99,-82,-27,-61,-99,-87,78,-63,-98,-86,-85,-99,-13,-99,-98,11,-37,-99,-99,-77,9,-80,-98,-66,-85,-44,-99,-90,-96,1,-91,-13,-97,51,-99,-97,-67,-95,-94,-98,-99,13,-99,-88,-10,78,-83,-29,-80,-98,-13,-89,-93,12,-99,67,-63,48,-94,-60,-84,-99,37,-89,-99,-97,-79,36,-94,-98,-8,-74,-51,40,-51,-94,-70,-12,-57,-98,-96,61,-69,85,-24,-60,-99,-97,-6,-4,-22,-18,-95,-94,-77,14,-87,-99,-98,-99,-18,95,-98,-72,-92,-94,-95,-89,-79,-97,-67,-93,-97,-33,86,-66,-96,-64,-85,-63,-56,-94,-51,-97,-31,76,-54,-58,-50,-98,-99,-89,-95,-99,-99,4,-95,-76,-54,-99,-66,-96,-70,56,-79,-99,-99,-98,-88,-94,-99,-21,-26,50,-99,-7,-88,-98,-97,-89,-93,-7,-15,-89,-27,-99,-81,-52,-18,-82,-83,-10,-99,-79,-99,-99,-65,-87,-82,-38,-93,17,-98,-99,-85,-99,-51,-94,-98,-99,-98,50,-72,-88,-16,-99,-77,-98,-99,-93,-99,-94,-89,-87,67,-69,16,-87,-98,-99,-98,-93,-93,-94,-97,-81,-98,-80,-98,49,-89,-89,-86,-60,-15,-82,-93,-89,-31,-92,-28,-99,21,-81,-99,-96,-98,-93,-54,-60,-99,-49,-99,-96,-76,-3,-82,-71,-48,-77,-97,-99,-97,83,-94,-51,-97,-92,-76,-89,-94,-94,-78,8,-77,-78,-4,-93,-8,-8,-34,-96,-98,21,-31,-76,-94,-92,-89,-82,-98,-87,-60,-87,-82,-69,-99,-79,-99,97,-90,-73,-98,-95,-35,-97,-78,-96,-77,-74,-79,-92,-41,-88,-84,-73,-88,-3,94,-83,-95,-75,-76,-99,-98,-7,-25,-89,-11,-86,-77,75,-23,-95,-82,43,-75,-97,-22,21,-56,-90,-95,11,64,-97,-71,-89,-99,-68,43,-69,-98,75,-83,-94,-98,-99,-99,-95,-56,-99,12,-99,-99,-98,0,5,-99,-7,-69,-98,-98,-98,-94,-95,-48,-99,-95,-91,-72,-48,73,-98,-95,-81,-98,17,-79,-99,-82,-97,-93,-44,-90,-80,-51,-66,-89,-16,-90,-87,3,-35,-81,-93,-91,-78,-96,22,-97,-98,18,-94,-33,-91,-68,-97,-96,-96,-93,-95,-58,-37,-75,-98,-97,-95,-89,-99,-24,-44,-28,-11,-99,27,-98,-41,-93,-84,-94,-99,-89,-93,-79,-65,-30,-99,-87,-95,42,-98,-91,-45,-98,-71,-17,-98,0,-66,-96,-32,-99,-94,70,77,-96,-97,-77,-99,-55,-97,-64,-80,-92,-74,-95,-65,-98,-26,-94,-98,18,-58,-68,-77,-99,-64,23,-94,-94,-24,94,-93,-95,-13,-79,-79,-82,65,-44,-99,-52,-70,-96,-93,38,-98,-37,-99,85,-98,-75,-98,98,-81,-86,-99,18,-99,-98,-8,-78,-89,67,-79,-97,5,-88,-77,-94,-93,-77,-91,-72,-96,-97,-92,-34,-93,-99,23,-99,-92,-86,-99,-24,-46,-84,-65,-99,-54,-25,-94,-84,-80,-99,-99,-87,2,-94,-99,-65,-94,-87,-95,-99,-96,-92,-94,-97,11,81,-86,-67,-89,-93,-99,-64,77,-94,-95,-99,37,-95,-95,-93,-86,-32,-82,-72,-90,-75,13,-61,-97,-25,-98,17,-5,-3,-75,-36,-83,-89,-16,-98,-7,-98,86,-29,-99,-46,-99,44,-95,-90,-80,-98,-95,62,-92,-76,-98,-91,-33,-80,-98,-68,-98,-99,-68,-97,-96,-70,-96,-99,-97,-99,-98,-97,-48,-27,-99,-98,-99,-99,-99,-99,5,-86,-93,-98,-99,-67,-90,-97,-97,-84,-94,10,-84,51,-67,-92,-65,-27,-94,-56,-5,-67,-73,-98,0,-93,-66,-97,-95,-93,-97,-49,-98,-88,-98,33,-97,-79,-99,-98,-82,-98,-83,-91,-96,-45,-97,-95,-28,-8,-50,-99,-99,-55,71,-97,-31,-98,-99,-53,-91,-96,-84,-99,-78,-99,-91,-35,-73,-99,-94,-96,62,-98,-96,-49,-93,-95,-92,-93,-92,-40,36,-92,-98,9,-79,-12,-74,-98,-99,-29,7,-95,-98,-93,-98,-75,-96,4,-24,-95,98,-97,15,-47,-33,-60,-68,-99,-92,-45,59,-98,-29,-12,-23,-97,-23,-98,89,66,-99,-96,-99,-97,-98,-95,-84,-86,-97,-81,-68,-98,-98,21,-82,-97,-87,-86,-79,-99,-84,-99,-98,-89,24,-82,11,-15,-65,-98,-95,-88,-95,-95,-89,-80,-68,-69,-41,-96,-90,-91,-97,-98,-60,-99,-61,-99,-81,-99,-37,43,-98,-95,-92,3,-4,-95,-98,-92,-79,-99,-95,-99,-89,-91,-72,49,-88,32,27,2,-93,-86,-99,-57,-91,-99,-43,-87,9,-92,-99,-98,59,-98,28,65,-99,-83,-96,-89,-78,-91,-90,-90,-41,-90,-98,-96,-95,-92,-96,-99,-44,-52,-92,-97,-99,-99,-98,-98,-98,-78,-7,-97,-69,-96,-76,51,-38,-99,-94,-74,-64,-92,-98,-87,-78,-99,-89,-89,-12,-99,-96,-93,-97,-66,-99,-66,-91,-81,-25,-61,-89,-68,-98,15,-75,-99,-76,-99,-99,-99,-41,-99,-92,-94,-13,-72,-92,-84,-70,-98,60,67,-91,23,-94,-90,-96,28,-99,-74,-99,-91,-84,17,-1,-73,-99,-93,3,-99,-79,-77,-94,-91,-43,-98,-89,62,-98,-95,-98,-98,-69,-77,-77,-54,-92,-99,-48,-99,-98,-99,-85,-91,-99,-91,-95,-95,-98,-97,-99,-78,86,-55,-95,-45,-96,-15,-99,-93,-64,-78,-98,-97,1,59,-87,-94,65,-77,-99,-97,-77,-77,-54,-99,-89,39,-38,-95,24,-74,-68,-87,-99,-66,-97,-8,-94,-97,44,-99,-81,-95,-85,-97,-64,-89,-90,-88,-92,-93,-51,-95,-99,32,-91,-96,-51,-60,-55,-77,-73,-66,-95,75,-99,-83,-93,-26,-99,89,-84,-97,-99,-98,-18,-54,-57,-96,-92,-99,-68,-87,-91,-96,-98,-73,-86,-53,-68,22,-64,-96,-98,-96,-77,-12,-74,-23,-98,-30,-83,-33,-99,19,-68,-96,-29,-99,-21,63,-98,-80,-91,-96,-59,-87,-93,38,-99,-91,27,-98,-98,-90,-99,-86,-59,-86,-97,-97,-99,-99,-26,29,-90,-96,-99,-93,-21,47,-99,-99,-99,-94,-91,-72,-97,-87,38,-19,-75,-71,-98,-97,45,-4,-91,-24,-52,-99,-82,34,-65,-87,-83,39,-76,-98,-95,-96,-17,-60,-43,-89,-98,-75,93,7,-92,-23,18,-88,14,-11,-79,-98,-92,-85,-96,38,91,-30,-99,-80,-70,-80,27,-57,-96,-65,-99,-83,-92,-90,-99,-90,-99,-96,21,-74,-96,-97,-94,-42,-90,-98,-97,-93,-93,28,57,-67,-69,-70,-99,-98,-66,-25,-88,-63,-98,95,-97,-97,-98,-99,-77,-93,-73,-94,-87,73,-31,-98,-31,-96,-37,-8,-98,-85,-99,-4,-96,-98,-76,-97,97,28,-99,-89,-98,-95,-70,5,-99,-95,-98,-85,-97,-84,-80,-94,58,-99,-99,-98,-99,-94,-58,-98,-78,-1,-93,-90,-98,-97,-73,11,-29,-99,-54,-23,34,18,-9,23,-93,-40,-98,-80,-86,-99,-96,-99,47,-51,-95,-97,-99,-91,-5,-89,-99,-74,-98,-96,-97,-96,-53,-97,-87,-89,-72,6,14,-88,-63,-97,-95,-85,-98,-83,-3,-94,-34,-43,-93,-87,-96,-81,-89,-53,-82,-90,-82,-99,-99,17,-98,9,-32,-85,-90,-99,-98,-99,-66,-98,-94,-80,-3,-99,-96,-89,-91,-71,-99,-99,-76,-52,24,-97,-86,-99,-19,-23,-68,-99,-32,-65,-18,-96,-87,-21,-97,30,-99,-98,-97,-78,-99,-96,-23,-99,-99,-92,6,-54,-87,-11,-78,-97,-89,-50,-95,-97,-41,-99,-92,-98,-65,-76,-40,-75,-95,74,-91,38,-96,52,-96,-64,29,-99,-91,-99,-96,-98,-65,-99,-78,-30,-71,-30,-97,-99,-42,-49,-99,-80,-95,43,-53,-71,-98,-45,-99,-99,96,-83,-88,-95,91,-71,-98,-98,-93,-15,-96,86,-91,-98,-99,-86,-98,-95,-79,-81,-86,-98,20,-2,-99,-99,-98,-98,-45,-98,-87,-13,-77,-98,-93,-94,-39,-98,-74,-98,-98,-6,-99,-38,-71,54,-99,-71,-37,59,0,-42,-66,-69,0,-96,-72,-98,-96,-66,-97,-99,98,-99,-93,51,-58,-96,-92,-99,-95,-98,-80,-72,-97,-91,-82,-39,-69,-81,-71,-85,-99,-50,-84,78,-90,-42,79,-97,27,-14,-45,-8,72,-96,-6,-99,-99,-46,-93,26,-85,-99,-95,-99,-96,-91,-92,-93,-75,-99,90,-96,-94,-99,-88,-98,-90,15,6,-99,-71,-64,-56,46,-99,-98,-97,-99,-92,-88,-83,14,-14,-52,-97,-99,-95,-68,-34,-98,-93,-97,-99,81,80,-96,-95,-29,42,-96,-94,-29,-62,-99,-7,-87,0,-93,-26,-99,-94,-3,-99,-93,-41,-92,-77,-91,-99,-72,-92,63,-93,-99,-99,13,-88,-43,-64,-95,-97,-99,-72,-73,-5,-93,-84,-57,-53,-92,-76,-98,-98,-97,-98,-98,-96,-90,-94,-96,-95,-54,28,-89,-88,-86,-63,-92,-99,22,-24,-67,-97,-41,-97,-97,-51,-69,-97,-96,46,-74,-90,44,-60,17,-99,-94,-9,-99,-98,-99,-95,-14,-98,-66,-59,-70,-91,-50,-95,-33,-78,-99,51,-86,-90,92,-98,-68,-85,65,-99,-63,-99,-93,-54,-99,-98,-95,-80,82,-94,-96,-95,-97,-84,55,-94,-87,-70,-20,-99,-91,-66,-97,-89,-99,26,-96,-99,-91,5,-64,-50,-97,-49,-99,-92,-99,-99,-5,-69,-96,-99,-19,-98,-58,-41,-51,-98,-97,-81,-74,-86,-99,-99,-41,-20,-70,-83,61,-99,-99,-98,-81,-98,-42,-57,-99,-98,-99,-77,-7,-99,-59,-98,-85,48,-31,-44,-97,43,26,-80,-86,-55,-98,-22,-30,-89,-68,-66,-99,-96,-87,-98,-91,-44,-61,-92,-94,-81,-15,-96,16,-69,-99,-97,8,-60,-81,-42,-76,-99,89,2,-99,-96,-41,-99,-77,-56,-43,-91,-99,-92,-99,-98,-85,-99,-20,-87,-79,-6,-78,-6,-95,71,-99,-85,-49,-75,-95,1,-99,-73,-87,-96,-4,-99,-95,-97,-99,-64,-97,-92,-34,-92,-72,-89,-95,-76,73,-91,-98,-96,-77,-96,-87,-99,-8,-82,-99,-95,-31,-74,-40,41,-97,-96,-99,-65,-82,-85,75,-97,-84,-81,-93,-61,-73,-98,30,-8,-23,-99,10,73,-94,-58,-98,-99,-17,39,-98,-82,-86,66,-97,-77,-95,-92,-91,-84,-88,-80,-92,-90,-99,-95,-62,-96,-34,-99,-97,-98,-99,-16,-99,25,-27,1,-85,-99,-76,-99,-99,28,-96,-90,-43,-84,27,-35,-95,-44,-98,-71,-43,-99,-93,-99,-81,-98,-82,-96,-19,-98,20,-81,-1,-95,47,-42,-50,-92,7,-99,-98,-99,-97,-74,-89,8,-96,-99,-68,-99,62,-63,-99,-98,-94,-80,92,-98,-90,-88,-4,-68,-90,-96,8,-99,-83,-89,-68,35,-91,-95,-98,37,-30,-61,90,-95,80,-96,41,-62,-16,26,-99,-67,23,-97,-65,22,-18,51,-98,-99,-17,-15,-99,-77,-97,-97,-99,36,-98,-69,-96,-84,-99,-84,-96,-81,-89,-85,28,-97,-98,-87,70,-96,-57,1,-30,5}
{63,-94,-17,-99,-97,-45,-86,-4,-16,2,-95,54,10,-96,-92,-77,-94,-50,-66,-99,-38,-98,-97,8,-82,-80,-98,-98,-95,-93,-99,-99,-99,-92,-59,-96,-93,-81,-94,-69,-24,-90,-56,-99,-85,-12,-99,-33,-95,-98,-99,13,-77,-8,-94,-74,-99,-87,-28,-40,-84,-97,83,-55,-99,-99,-88,-43,49,-98,-7,-99,-98,68,-91,86,-89,-69,-98,-99,-58,-77,-50,-89,-88,-48,-11,-97,-79,-96,-88,9,-19,-93,-94,-99,-99,-89,-33,-97,-57,-74,-90,-86,-94,-65,-99,-91,-73,-98,-98,-98,52,-83,-9,-87,-93,-80,-30,-52,-82,-88,-87,71,-93,-86,-99,-4,-93,-99,-49,-91,-83,-99,-40,-94,-52,-96,-87,-94,12,-26,-91,-85,-65,-82,-46,-99,-90,-93,-81,-98,-18,13,-96,-54,77,-95,-97,-77,7,-99,-88,-89,-17,2,-99,-79,-99,-63,-40,-77,-20,94,39,-88,-77,-75,-98,-88,77,-95,-60,-96,25,-99,-19,13,-90,-97,-97,-93,-92,-93,-98,-88,-99,-97,35,-98,-99,-54,-91,-99,-71,-94,-97,-91,-76,-33,-33,-63,-57,-58,-98,8,-96,12,-30,-94,-98,-98,-86,8,-85,-99,-97,-84,78,-40,-76,-25,-5,-92,22,-60,-94,-96,-85,-81,-98,-98,-99,-74,-94,-90,81,-97,-98,-39,-89,-94,19,-99,-99,-87,-92,-98,-50,-66,-98,-87,-58,-98,-99,-98,-92,-99,-97,-49,-99,-74,-47,-98,-93,-99,-96,-85,-82,-83,-93,-96,-99,-96,51,-80,2,-7,-97,9,-99,-94,99,-99,-97,-4,-95,-76,-28,-26,-65,-97,-39,-99,-99,-85,-99,-85,-61,-25,-99,-99,-84,59,-39,-98,-94,-86,-65,-77,-83,-98,-37,-99,-99,-99,-98,-96,-99,-98,27,-99,-24,-99,-94,-89,-63,-77,-94,-64,-64,-95,-97,-96,-91,-99,55,-99,-81,-98,22,-97,93,-13,-99,-98,-32,-96,-92,-97,-87,-84,96,-99,-99,-31,-98,5,-18,-16,-3,-52,2,-96,-90,-99,-47,-99,-18,-98,-98,-36,-96,-81,-94,-99,24,-97,-97,-52,-19,16,-96,-71,-86,-97,-95,-94,-53,97,-59,-99,-17,-98,-98,-99,-55,-85,86,-99,-71,-83,-98,-63,42,-19,-36,-96,-17,70,-55,-60,-76,-94,-72,-77,-99,97,-18,-74,-85,-99,-90,-98,-93,58,-39,-84,-98,77,-80,-96,-97,-70,-99,-98,-84,-38,-98,-98,24,-92,-99,-35,-37,35,-96,-93,-35,-41,-99,8,-66,-98,-97,-98,-99,-91,-93,-64,-99,85,-95,-94,-99,-43,-84,-98,57,-90,-99,88,11,-95,63,-53,-98,80,-86,82,-70,-96,14,-91,-97,-99,-70,-6,-65,-98,-46,-83,-97,-35,-99,-75,-99,-99,-97,-49,-99,-92,-81,-99,-69,-64,-63,-95,-92,-99,-86,-15,-95,-82,-99,-98,-86,12,-97,-88,-94,-83,-87,57,48,92,-28,-98,-91,-93,-99,-99,-84,-97,-94,-26,-1,-30,77,-64,-97,-99,-17,-94,-98,-97,-99,-37,-20,-98,-90,-94,-33,-35,-99,-93,-61,-89,-94,-97,-32,-48,-99,-97,-87,-92,-83,-92,76,-99,51,-76,-95,-21,-97,-29,-84,71,-74,48,-95,-96,-70,-80,54,-97,-24,58,-83,-86,-96,-88,-92,-59,-92,-94,-59,32,-98,-91,-95,-99,10,-93,-56,94,-63,-88,-99,98,-90,-28,-98,-99,-85,-36,-56,-16,-99,-15,-83,-96,-95,-28,-98,-84,-99,-92,-84,-9,-97,-97,-70,23,-91,-54,-94,15,-60,63,-81,-97,-95,-23,7,-60,-62,-83,-99,12,-99,-31,-91,-94,-90,-90,-16,-26,-99,-34,18,-67,76,32,-63,-48,6,24,-99,39,-4,-2,-98,-91,84,-52,-99,-72,-82,-77,-97,-99,44,-99,-73,-11,-24,-99,-99,-96,-99,32,-75,66,-97,-99,-98,-84,71,-95,-92,-99,-73,-77,-97,-86,34,-8,-88,-99,-92,-70,-85,-58,-99,-96,-89,-94,-92,-94,-64,-29,-96,-98,-13,-87,-97,-87,-99,-97,-73,-98,-95,-55,-94,-86,-98,-91,-55,-76,-68,-72,-52,-97,-4,-98,77,-98,-80,-88,-83,-68,-89,-10,10,2,47,-95,-57,-96,12,23,-98,-97,-95,-77,-77,-97,86,81,-91,-97,18,70,44,92,-99,7,-91,-75,-59,-89,17,-99,65,20,-99,92,-90,-95,47,-99,-93,-98,-66,-88,22,-98,-63,-92,-96,-99,-96,39,-74,-99,-99,20,-41,53,-9,75,-73,-99,-71,-55,-89,-93,25,-87,-93,81,-95,-39,-77,-77,-71,-99,40,-98,-89,-93,-68,-98,-74,78,-96,-69,-99,-98,-65,-46,63,9,-94,70,-21,80,-66,-75,-99,-93,-54,-98,-99,-99,45,24,-7,-87,-68,-97,-93,-93,-99,-5,-98,-94,-63,-90,39,96,-67,-96,-98,-65,-70,-68,-99,-83,54,-96,-44,-29,-95,-61,-98,-59,-62,3,-83,-99,-49,-98,-51,77,-85,60,-88,-86,-99,-92,-86,8,-97,62,-95,42,-70,-73,-78,-98,-71,11,-91,-88,-58,-94,-49,-52,-74,-44,-56,-78,-76,-99,-96,-80,-95,-74,-90,-95,-96,-77,-97,63,-63,-80,-31,-93,35,99,-99,-98,-66,-78,-88,-96,-74,-99,-91,-98,85,76,10,-89,-99,-35,-99,-95,-99,-33,-84,-93,87,-76,-94,-59,-48,-76,-60,10,-64,-35,-84,-73,-89,-96,-63,-98,-95,-92,-99,-95,-66,40,10,-74,52,-99,-98,-98,-95,28,-44,-74,-89,-98,-99,-6,-95,-63,-93,1,-98,-97,-86,-97,-99,42,88,-90,-82,-91,-44,-66,-72,-98,-99,-94,-72,-95,-91,-88,-98,-9,-96,28,-73,1,-87,-74,-72,-93,-98,-16,-90,-74,-95,-91,-91,-99,-70,15,-93,-81,-99,-96,-77,-27,-85,-77,49,-54,-45,-98,-95,-99,-99,-97,-15,-84,-99,-99,-92,-98,-77,-97,-94,27,-98,-93,-98,-19,-87,-68,-76,-74,-74,-99,98,-99,-99,-95,61,-98,25,-98,-85,-98,-67,-16,-46,-97,-99,-52,-86,-37,-97,-86,-69,-98,-91,-65,-93,-76,-81,-99,-96,-58,-84,-98,-98,-99,-67,-95,-25,-63,-76,-6,-58,-91,-40,-15,-87,-98,-78,-35,-35,-85,-64,-88,-74,51,-90,-99,-69,-43,7,-74,-87,-87,-56,-98,-74,-92,-99,-99,-33,-6,-42,-99,-99,-14,-94,56,-99,-93,-74,48,-99,-97,70,11,-70,-59,-93,-99,-71,-99,-79,-44,-97,-76,63,-98,-99,39,-59,98,-67,-46,-99,-88,-46,-95,-88,-84,-21,-51,-91,-99,-84,-99,-37,-97,-96,-99,-88,-99,-85,-93,-98,-98,86,-91,-91,31,-99,-38,-46,96,-97,-71,79,-99,-88,-99,-97,-30,-14,-80,65,-81,-98,-98,-72,44,-94,-81,-95,-63,52,71,-98,-66,21,-99,-93,-9,-97,-99,-49,-99,-94,-53,-97,-99,-66,-89,-99,-90,-82,-99,-99,-12,-77,-85,-93,-88,-81,-77,-57,-90,-98,-74,-20,-57,-3,-94,-98,-32,-11,-96,-30,-99,-57,-97,-70,-95,-92,-75,-11,-95,-92,-99,-98,81,-94,-95,-99,-98,-99,-78,-93,-96,-95,-96,-92,-93,-94,4,-87,-45,-94,-98,-99,-91,-89,-78,-84,-15,-92,37,-98,-89,-85,-90,-99,-94,-3,-68,-61,67,-61,-98,-96,40,-98,10,-96,-97,-31,-99,-16,51,-93,51,-98,-98,-70,-99,-93,-99,-98,-91,-65,-90,-86,-98,-98,-94,-97,-12,13,-92,-63,-98,70,-93,90,-91,-69,-97,-99,-88,-97,-99,52,-63,-94,-40,-99,-65,90,-98,-79,-93,-49,-26,-63,58,-79,-98,-99,28,-99,-98,-68,-96,-95,-74,-90,-97,-96,-62,-96,-99,-97,-99,-19,-42,-88,-99,-78,-42,-52,-84,-71,-95,-69,7,-89,-96,-99,-98,-99,-92,-96,-95,-99,-89,-94,-70,-96,-84,-69,18,-37,-79,-99,-92,-96,-98,-92,-71,84,-24,-99,-99,-91,-97,-93,-43,72,-95,-77,-98,-93,-96,-93,-74,-98,31,-85,-63,-51,-93,-97,-70,-87,-98,-94,-15,-99,40,-71,44,-99,-59,-80,-95,-94,9,-83,-71,-99,-96,-67,-99,16,-94,-99,-98,-92,-93,82,-66,-84,-77,-99,-99,-93,-79,-87,-98,-96,-93,-96,-95,-99,-84,-88,-71,-68,-52,-75,-96,-97,-98,-86,-99,58,-81,-84,56,-73,-93,-92,-99,14,-99,-46,-99,-97,-98,61,74,-94,58,-99,-3,-95,-63,-87,-97,-98,-68,-95,-45,-95,-88,-37,-91,-99,36,-98,-92,92,55,-18,-82,-99,-74,-99,-96,-29,-66,-94,-88,-95,-65,-27,-83,-5,-99,-99,-98,-93,-96,-90,-76,-99,-94,-92,-98,-97,-89,-62,-97,4,-76,-22,-12,-75,-97,43,-99,10,-88,12,-88,-39,-22,-99,-44,-80,8,-97,-20,-90,-95,-71,47,-60,6,-65,-42,-82,-92,-98,-91,-99,-93,32,-75,-19,-43,-92,-99,-99,-99,-96,-50,-96,-38,-99,-99,-27,15,-50,-92,95,-94,-52,-99,-59,-26,-80,32,-99,-26,-5,-54,-96,-95,-96,-87,-94,-26,-13,-99,-98,-30,-89,-86,-81,-98,-89,6,-83,-99,-98,-99,-68,-39,-98,-97,-64,-96,-90,-14,-61,-97,-74,-99,-32,-98,-68,-99,-28,-85,30,-94,-16,16,-99,-96,-94,-98,-91,-98,-68,-96,-76,-88,-98,19,-81,-76,-97,-99,-30,-70,-61,-58,-98,-78,-85,-97,-90,18,-95,-96,3,-98,-97,-62,24,62,-96,-93,-64,-86,-77,-87,-89,79,-87,-89,53,-73,-15,-85,-89,-99,-99,-98,-95,-89,-99,-92,-97,-89,-92,-21,-98,-96,2,-18,-94,-99,-99,-95,-73,-20,-98,70,-92,-93,-82,-95,-63,-89,-99,10,-1,-98,-79,-72,-92,-87,-84,42,-90,-93,-98,-75,-98,-97,-93,-87,-42,-98,-24,0,-90,-80,-82,-76,-44,-88,-52,-94,-99,-36,-51,-87,-49,89,-84,-93,-99,-87,-65,-51,-99,-45,-67,-96,-83,-66,-90,-37,-89,-98,72,-84,-84,-50,23,-98,80,-65,93,-60,10,-14,89,-98,19,-87,-95,-71,-98,-97,-92,-89,-95,-97,-96,-80,-99,28,-98,-82,-96,-72,-99,-99,-99,-92,-69,-64,-89,-38,-99,-98,-70,-68,-32,-91,-93,-89,-3,16,-84,-81,-46,-68,-95,-77,-99,-96,2,-99,-90,-96,-95,-55,-32,-91,-11,-93,-88,-84,-74,-98,-98,51,-89,-77,-95,-95,-25,-91,-86,-86,-57,-83,-94,-98,-88,-91,-97,-54,-83,75,-99,-92,5,-92,-6,-46,-61,-97,-92,-98,-99,-98,-97,-83,-67,-99,-97,-99,72,-43,67,-94,-95,-97,-98,-70,51,-99,-95,-98,-52,-55,-95,-73,-63,-93,-98,28,-86,-84,-99,-67,-86,-70,-82,69,-85,-17,-90,-99,-62,-97,-50,15,-20,-85,-89,-25,-99,-98,-99,-64,-96,-97,-73,-13,-91,-99,-98,-99,-99,-99,-85,66,6,-44,-83,-98,-99,-60,34,-87,45,-82,-76,-92,-11,74,-99,-96,-89,-74,-69,-96,-4,-98,6,64,-89,60,-57,-91,-99,48,-65,53,-99,-96,-89,-31,-87,-75,48,45,-98,-94,-89,-86,-68,-89,-34,-99,-98,-48,-5,-97,-69,-99,-96,-98,-36,-98,-63,-65,-53,-98,-27,-95,-9,6,-99,-99,-94,-98,-93,32,-99,-91,-94,-13,66,-80,-99,-91,-97,-98,-96,-91,-78,-42,-95,-86,-96,-97,-67,-99,34,-99,-65,12,-87,-73,-28,-38,-87,-81,-89,-97,88,-99,-17,-98,27,-89,-98,-92,-27,60,-99,-88,-75,-99,-99,-93,-98,-99,-29,-99,-97,-76,-98,-98,-81,98,-67,-95,-18,-99,-75,-97,-64,-78,-87,-63,-94,-99,87,-93,-14,-96,-84,-74,-97,-76,79,-61,-51,-93,-99,-74,-98,-92,-99,-98,88,51,-99}
{-60,-62,-80,-77,-88,-99,-30,-48,-97,-95,-99,-99,-97,-79,39,-20,-99,-92,11,-99,-99,-90,-96,-74,-67,69,-95,-97,-93,-95,-97,-92,22,-98,28,87,-88,-92,-81,45,-92,11,-99,-59,-99,-85,-81,-50,-83,-85,17,-91,-96,61,37,-84,-99,-90,-42,-99,64,-95,-99,-99,50,-36,-90,-42,17,-88,-85,-73,-95,-99,45,-85,-98,-78,-55,-76,-97,-21,-79,-90,66,-41,-75,-50,-46,-98,-95,-60,-82,-66,-99,43,-95,-71,99,-97,-1,-96,-48,-99,-99,-99,95,-97,-99,-81,-90,-99,-75,48,-27,-98,-76,6,-99,-98,-98,-33,-95,-96,-22,-99,-98,-95,-61,-93,-85,-98,-81,-99,-69,-93,11,-99,-88,-97,-99,-59,61,-89,-99,-58,-86,-97,-41,-36,-96,-96,57,-57,-53,-18,-78,-54,-99,-97,10,-47,-47,-95,-99,-97,-98,38,-93,-83,-99,-86,57,-53,-59,-63,-99,-97,-99,-35,-76,-57,-44,-84,-92,-15,-83,-81,-99,-93,51,-98,-99,-94,-94,-38,-89,-65,-99,-95,-99,-76,-84,-97,-81,41,-83,-96,-84,-96,4,-36,-87,-99,-99,-73,-98,-99,-99,-78,-79,-70,-97,-89,81,-90,-99,-97,-97,-87,-99,-82,-99,-98,-97,-94,-94,-70,-97,-98,-96,-53,-87,-78,-99,-95,-39,-91,-96,-97,-15,-60,77,-40,-33,-83,-99,-95,-92,73,-53,29,32,-99,-98,-86,-99,-23,-79,-1,-97,-79,-12,-81,-89,-65,-85,-55,-91,-83,59,-98,-96,-89,-99,-99,-98,33,-99,-78,-98,-98,-97,-99,-84,-90,40,-3,-99,-93,-99,-97,-72,-30,-51,-37,35,-59,-6,-57,36,43,-98,-99,-98,-81,-73,-99,-98,-98,-95,-99,-74,-53,-41,61,-44,-96,-89,-66,-76,-83,-99,-99,-92,-90,-92,-13,-98,-45,-17,-92,-34,21,-95,-94,-99,-93,-98,-97,-98,55,-99,-93,-2,-99,-41,-98,-95,-97,-26,-66,-99,-28,-96,-99,15,-85,-96,-98,-69,28,-17,-96,-91,-97,-99,-95,-35,20,-92,-41,-90,-9,-88,-56,-98,-93,-91,-42,-52,95,-88,-88,-95,-99,-65,-86,-78,-89,-99,-99,14,92,-99,-99,-64,-64,-96,-96,-57,-62,-65,32,-95,-16,-98,-46,-42,9,-72,-92,-94,-85,-99,-95,-91,-86,-55,-50,-99,-83,-95,-85,-98,-78,-97,-94,-73,-80,-39,-98,-54,-95,46,-99,-96,-93,9,-74,-99,-77,-99,-82,73,-99,-96,-99,-96,-97,-87,20,-97,-85,-97,-99,-9,-94,29,-91,-73,-22,-62,38,-35,23,-91,-92,-99,-56,-93,-38,-87,-98,-61,-94,-93,89,-91,-71,-26,-31,-29,-83,-12,-89,-16,-67,-65,-82,-32,-79,-71,-99,-93,-83,-74,-99,-92,-87,-82,-96,-76,-97,-67,-98,86,-98,-95,-94,-82,-99,-96,-79,-70,-97,-97,-3,-99,-97,-83,-40,-11,-10,-43,-98,-67,-98,-67,-34,-98,-99,-85,-88,-95,-99,-83,-95,-98,-99,-65,-99,-88,4,-11,-91,-36,-88,-94,-99,-53,-99,-99,-99,-44,-96,-99,-29,-99,-94,-96,-99,-83,-80,0,-49,-84,23,-46,-98,-98,-85,31,-89,-70,-81,-89,-62,-50,78,-20,8,-43,-22,-97,87,-63,-94,-87,-91,-84,-99,-97,-98,-99,-86,-62,-62,-65,-98,-11,-99,-39,-99,-50,-98,-87,-98,1,-92,19,39,-65,-93,-25,-92,-97,-84,-97,0,-89,-87,-95,-99,-91,-54,31,-23,-96,-67,-82,-99,-50,-92,-67,75,88,-40,0,-47,-99,-24,61,-46,21,-99,-95,-95,-65,-87,-81,-53,-99,11,-99,-89,-66,-43,-97,-81,-67,-88,-98,91,-83,-28,-16,-94,2,-98,-24,91,-81,-99,-81,96,-80,-94,-99,-82,32,-49,-99,-95,-95,-79,-96,30,-98,67,-99,-94,61,-92,-38,-79,-84,18,32,-40,-94,-95,-78,-93,-38,23,-97,-85,64,39,-99,-3,-42,-91,-99,33,-80,-81,-36,-96,-25,-95,-31,-99,-88,-91,-60,-97,-87,-97,-88,-92,4,-78,14,-92,-77,-82,-89,3,-98,41,-56,-91,-95,-87,-79,-88,-91,-99,-52,-79,20,79,-89,-97,-56,-46,-75,-82,-98,-95,-75,-91,-97,-70,-92,-99,45,-89,-95,-99,-74,-11,-21,-72,-98,-86,-73,-81,59,25,-48,69,-98,-96,-97,-56,-49,-83,-49,-52,-99,-96,-38,-78,-60,-88,-88,-71,-95,-91,-28,-96,-91,76,-88,-98,-43,-76,5,-81,-73,-94,-97,-95,-38,-97,-99,18,-22,5,54,-96,-89,-98,56,-99,-66,-47,-97,-59,-68,-90,-99,-93,-96,-99,-53,-95,-99,-1,-97,-97,-96,1,-99,-47,-98,-4,-99,-99,-96,-99,-97,20,-61,-98,25,-58,-99,-95,-32,-93,-93,51,-93,44,-98,-99,-69,-80,-95,-35,-57,-88,-84,-93,-91,-83,-90,-95,-99,-70,-77,-98,-95,-16,-67,-85,0,-99,-85,-99,-66,23,-52,-97,-79,-98,10,-91,-57,-90,-86,-99,38,-99,-98,-64,32,-97,-94,-33,-88,-94,-35,-84,-33,-98,-76,-99,-95,-94,-97,-30,-66,-96,-93,-97,-41,-34,-95,-93,-96,-82,-89,-74,-95,-95,-99,-98,-99,-98,-64,38,-90,2,-99,-99,-99,-82,-99,-99,-99,-99,-26,-99,-18,-92,-96,-89,-97,-99,-92,-81,-85,15,-78,11,96,-99,-95,-23,-62,-43,-86,-93,-98,-78,-86,-90,-99,-96,-91,-91,-18,-95,-84,51,-61,-97,-76,-98,-87,-76,-18,-13,-94,-87,-27,-94,-66,-69,-96,-98,-98,36,-99,-59,-79,-74,-84,-95,-87,-96,20,-35,-92,-18,-81,-77,-36,-91,-95,56,20,-93,-71,-83,10,-98,-67,-95,13,-98,-93,30,-98,-50,-81,-94,-99,-98,1,-92,-91,-18,-6,-97,17,53,-99,-24,-92,33,-82,-96,-98,-96,-96,-55,18,-65,-60,50,-82,-99,-37,-68,-96,-99,-81,-98,93,27,-89,-95,50,59,-85,-96,-67,-97,-93,-79,-79,-99,-82,-68,-97,51,-29,-3,-59,37,-98,-89,-83,-96,-87,-68,-74,-99,-96,-47,-95,-99,-98,11,-27,-74,-94,-77,-67,-66,-97,-84,-93,-99,-60,-69,-76,-96,-91,-56,-98,-64,-16,-22,-33,-86,-73,-99,-77,-92,-95,-81,-98,-98,17,-81,-99,-28,-85,-97,-99,75,-99,-24,-92,-99,12,-86,-76,-99,-97,-92,-98,-96,-97,-94,-89,-94,80,-67,-99,-33,-34,-22,36,-81,-99,-97,-96,-99,-55,-98,-98,-97,-40,-98,-87,-99,-99,-35,-99,-99,-99,-16,-2,-34,-99,15,-92,-75,-21,10,-99,56,-97,28,-61,-56,-97,-98,-99,51,-98,-76,-95,-19,-83,-99,-34,-96,-98,-94,-91,-60,25,-96,9,-96,-88,78,37,-65,70,-91,-83,73,-93,88,-78,-96,-59,-91,-93,-91,-13,-97,-89,-94,-99,-86,70,-99,-99,-76,-87,-97,-93,-96,-99,-91,-62,-91,-54,-96,-99,-99,-93,-97,-77,-39,-66,56,15,-99,-84,-64,-99,-96,-70,-99,-99,-47,-51,-96,25,5,-97,-25,-94,-46,-98,-96,-90,-99,-99,-89,-99,-97,-49,-74,-99,-60,31,-11,-66,-98,-90,-65,-96,-38,-10,-45,-54,-96,-77,-76,-17,-97,-96,-79,-99,-94,-10,-88,-53,29,-82,11,-96,-80,-64,-42,-52,-97,-79,-99,-1,-61,-30,36,58,-95,-98,-99,-99,-98,-8,68,-61,-89,-11,22,-99,-98,-99,-93,-92,-98,-96,-97,-99,-99,-33,-12,-98,-94,-72,-97,-97,-61,-87,-93,76,-99,57,81,-65,-52,0,-98,-98,-99,15,-48,-96,-92,-40,-24,98,-99,-94,16,-89,-9,-99,-94,-49,-64,-74,-99,-87,53,-97,-68,-99,-82,-40,-98,-96,-98,-81,-98,-99,-99,-82,-95,-97,-39,-88,-34,76,-94,0,-99,-85,-96,-99,-95,-99,-97,-66,-99,-49,-76,-80,-90,-10,-73,24,-84,-93,-57,-98,-98,-99,-82,-41,-99,-97,-68,-71,-73,-99,-76,-92,-99,-98,54,-98,-76,-99,70,-37,-82,-99,-98,-99,-97,-96,-74,-72,6,-87,-99,-98,-98,-97,-91,-97,-47,-84,-33,-84,-97,-27,-97,-52,-89,-92,-99,-91,-69,-98,-95,-93,-98,-94,22,-8,-94,-85,-87,-85,-94,-49,-85,-27,-75,-91,-99,-84,18,50,-98,-94,-25,-53,-96,6,-99,-95,-95,-98,-96,-95,-99,-99,-99,-89,-99,91,46,-99,29,-99,-82,44,-88,-98,-21,-90,-93,-83,-85,-86,-98,-86,-89,-98,27,-97,91,-9,-57,-93,-9,-19,-94,-69,72,-77,2,-37,-69,19,-61,-92,-97,-70,-21,-92,-74,-69,4,-98,50,-90,-31,-98,-89,37,-60,-98,-69,-77,-26,11,-61,-75,-99,-84,-98,-5,-91,-40,-98,66,-92,-59,-98,-67,-71,-96,-91,-10,-95,-99,-99,-87,-85,-99,-89,-58,-49,-89,-92,-48,88,-98,-63,-75,-80,-99,-43,-98,29,-97,-93,37,-94,-98,-96,-64,-78,-20,-83,-95,-98,-99,-48,-97,56,-57,-98,-98,-96,-46,-97,-89,-89,-99,-98,-84,-98,-74,-98,-94,-97,-4,-98,-88,-77,23,-25,-98,-30,-80,-69,-98,10,-92,-92,-99,-99,-86,-99,61,-93,-95,-65,-93,-37,-99,-99,-43,-54,-98,-97,-86,-83,-61,-94,-98,-84,-79,-98,-46,37,-90,-81,18,-46,-92,-99,-99,-71,-92,-87,-97,-99,-48,-98,-85,-86,-84,-93,-71,-89,-98,-74,-75,-89,-95,-99,-96,-93,-70,-55,-96,-92,-57,-97,-97,-27,-88,-93,-99,-73,-48,-98,-98,-76,-63,-85,-98,-99,-91,-75,-8,58,-91,-8,-91,-98,-93,-59,-93,-97,-73,-47,-39,-99,-96,-99,-95,-99,-99,-97,-94,-96,-95,-92,18,-5,-56,-91,-96,-97,-98,-20,-98,-34,-83,-97,-83,-99,-99,-91,-76,-99,-44,-99,-94,50,-99,-95,-28,48,-84,-97,-85,-97,-70,-96,-41,-96,-68,-45,-98,-99,-25,-43,-90,-60,-88,-97,-26,-97,-91,-97,-89,-98,-29,-97,-96,-96,-99,79,-63,-99,-99,-61,-99,-51,-82,-78,-80,-31,89,-78,37,29,-95,-98,-57,-1,-99,-6,43,-42,-99,12,62,-99,-98,84,-86,-17,-99,-44,87,-99,-92,-7,-98,-92,-99,-99,-96,-98,-75,-45,16,-87,-96,-88,-47,-79,-95,-76,-95,-31,-99,-31,-41,-20,-98,-34,-98,-78,-37,-96,21,-99,-95,-97,-86,-99,-96,39,11,-83,-35,-79,-58,-60,-48,-62,-46,-99,-67,-89,-98,-99,-97,-97,-30,59,5,-87,-26,-94,-15,-55,-99,48,-80,-94,-81,-44,55,-98,-66,-99,-92,-27,31,-96,-92,-87,-96,-94,-88,-98,21,-54,-79,-49,67,-97,-74,-8,-97,90,-98,-93,-93,56,-98,-82,-93,-92,9,19,-90,-99,-93,35,-21,-86,15,-66,-88,-99,-69,-42,-43,-98,70,31,-98,-84,-94,-92,-97,-79,81,21,-95,77,-91,-96,-5,-99,-43,-94,-96,-97,-86,-82,-88,70,-85,-53,-84,-52,-99,-88,-73,-90,10,-96,-71,-1,-9,-82,32,-99,-94,-92,-79,-82,-97,-85,-98,-97,-97,53,-93,-91,-96,-97,-99,50,-99,-30,-94,-88,-93,-76,-98,-62,-99,-83,-94,-94,-90,64,-99,-98,-95,-99,-98,-94,-94,-96,-84,-95,-95,-89,-96,71,-98,-93,-98,-58,-22,-44,-80,-91,-99,54,-98,9,-96,72,45,-52,-56,-99,23,-97,75,-34,-18,94,93,-54,-97,-55,-32,33,-99,-99,-97,-85,-98,-97,-95,-74,-48,3,-71,-96,-95,-19,-22,-98,-82,44,-55,-97,-25,-85,-97,-94,-96,-3,18,-97,49,-99,-98,73,-90,28,-68,-31,-72,-97,-78,-98,-34,30,-95,-98,-61,-91,-54,-99,-96,-99,-96,-96,-13,-99,-97,-82,-7}
{46,43,77,94,14,64,48,98,30,73,69,4,13,17,86,70,29,73,5,30,11,50,79,51,52,54,48,71,28,71,77,16,76,95,75,10,1,55,31,79,30,21,95,15,72,27,96,49,44,91,39,18,71,11,73,89,36,94,71,95,94,95,74,48,4,54,74,82,45,81,46,77,41,70,90,88,72,13,91,45,90,66,41,9,32,14,66,18,2,20,57,37,66,59,53,67,73,86,74,20,49,78,33,16,73,38,87,33,73,66,98,55,86,7,77,38,65,26,97,62,19,72,35,68,36,98,85,26,72,35,58,62,34,36,34,56,56,2,97,9,46,28,18,18,99,29,64,9,44,90,79,41,95,15,42,48,9,68,51,75,78,63,59,39,50,25,72,98,13,15,2,79,8,9,33,11,57,55,99,34,28,19,49,50,21,28,89,39,13,16,24,20,26,13,52,79,12,55,61,29,66,55,82,89,1,24,53,65,82,48,13,89,54,17,31,57,31,10,37,49,23,90,63,7,13,5,69,32,62,60,37,84,63,2,61,76,75,55,74,18,46,62,53,7,66,21,38,38,99,16,16,100,22,54,48,32,9,49,46,16,59,100,18,39,29,28,83,96,16,39,69,82,57,25,81,86,66,74,86,21,48,18,56,20,81,48,24,72,13,87,82,91,89,94,83,20,47,25,5,79,83,84,2,37,72,35,9,24,82,12,45,67,94,89,52,62,64,54,83,41,21,59,39,60,1,81,81,47,58,49,27,10,76,3,63,56,24,95,52,83,76,92,3,71,13,13,42,46,60,7,59,80,19,95,54,92,71,94,65,100,92,94,34,36,36,77,40,47,85,65,5,75,62,32,65,91,26,19,27,25,38,10,59,60,12,28,82,69,92,75,48,1,18,91,72,91,57,48,99,26,51,40,49,73,59,77,73,97,17,42,99,80,28,93,15,15,64,39,62,63,78,2,86,36,20,26,47,57,31,26,3,13,49,52,80,48,67,100,49,49,75,8,7,38,29,82,55,6,72,22,12,34,12,45,83,92,8,91,45,40,20,30,48,52,71,4,66,29,63,16,64,2,57,43,39,12,35,6,10,96,66,74,43,52,98,50,29,21,35,55,85,78,43,53,29,56,37,16,22,90,27,29,39,28,81,7,33,70,99,16,36,65,22,11,100,49,56,45,53,31,59,61,85,70,2,43,27,80,71,10,17,62,94,100,58,72,37,57,16,31,4,39,68,41,18,11,33,90,28,74,7,97,14,49,68,28,18,25,26,12,19,12,2,71,27,41,16,28,31,30,62,75,79,54,95,58,1,78,86,75,21,49,72,5,20,4,80,65,6,32,46,3,78,78,68,96,14,37,92,39,49,51,75,93,22,91,62,39,82,34,13,58,65,34,96,16,2,27,40,93,64,71,11,3,56,49,20,56,99,84,37,27,48,70,7,52,60,55,95,5,62,37,23,3,1,54,42,50,51,34,13,55,93,10,38,35,56,33,86,24,27,67,1,45,71,24,86,87,29,81,54,9,74,17,45,51,96,24,80,10,98,74,6,81,40,93,49,96,85,3,43,62,17,46,75,51,85,16,81,19,80,6,7,93,58,49,18,24,76,6,89,12,14,85,97,70,67,75,10,70,91,30,74,82,68,80,58,13,52,30,87,98,11,69,35,71,58,37,12,47,91,91,90,56,46,56,75,92,47,88,96,79,17,34,45,32,79,70,59,35,12,65,34,71,20,40,54,39,38,37,67,93,1,8,7,13,60,34,20,17,75,25,77,50,88,63,13,9,99,29,11,8,6,92,24,74,90,67,69,7,36,92,63,67,90,51,46,40,29,37,97,77,20,57,37,16,21,99,50,94,5,73,19,89,11,42,93,51,91,52,48,58,31,3,5,93,100,41,2,19,25,10,83,38,89,71,6,30,55,84,3,15,97,46,28,4,4,15,93,94,13,55,27,30,40,16,50,46,96,3,94,23,56,91,10,10,19,29,30,18,17,72,70,31,25,58,21,68,61,13,6,12,23,15,32,26,41,41,39,100,53,76,23,4,15,14,42,77,100,58,55,44,98,15,5,46,41,59,36,49,60,3,79,28,44,1,34,48,19,93,70,98,66,44,52,9,56,24,73,50,16,66,44,10,69,57,49,45,70,31,13,32,34,100,82,87,61,91,22,51,38,56,89,55,89,92,14,17,1,32,48,49,12,75,13,72,10,69,80,51,10,8,62,33,25,78,98,8,54,70,7,30,34,76,5,78,99,88,46,6,64,83,13,7,89,88,99,92,72,2,98,21,60,18,61,15,82,1,29,48,51,55,46,29,44,76,34,21,77,90,45,44,7,53,88,2,25,74,44,2,60,62,27,46,68,57,73,50,75,89,35,93,13,45,96,72,46,99,64,51,29,77,53,97,17,76,64,9,12,84,11,7,44,18,43,96,1,78,92,90,32,98,95,79,34,1,86,21,31,71,48,54,14,8,60,78,5,84,25,83,33,85,22,100,89,28,30,77,55,14,15,69,6,33,90,31,79,40,23,62,5,95,22,55,15,2,40,1,39,85,2,65,45,28,26,9,19,93,59,22,68,21,34,33,69,81,14,36,34,66,16,10,4,65,43,68,19,42,10,82,97,61,40,7,10,31,79,71,96,37,93,95,80,46,58,91,21,70,12,28,89,16,27,46,45,10,60,70,32,12,9,42,39,86,97,33,25,96,67,25,32,8,16,33,1,22,58,91,35,57,38,15,47,40,47,70,96,55,5,99,19,52,4,56,15,74,69,18,3,43,38,31,26,9,85,9,13,90,34,24,21,35,44,12,51,98,98,92,73,20,9,81,62,37,29,12,92,56,40,87,56,79,71,20,17,52,14,11,93,38,16,48,14,70,85,18,39,85,62,33,59,26,43,73,47,88,38,3,6,73,50,56,22,79,59,64,71,32,75,62,68,75,77,43,95,59,62,100,31,87,25,61,57,47,88,44,80,99,87,39,39,99,96,78,1,3,30,68,90,37,29,49,83,22,84,87,26,15,77,18,28,49,62,50,53,65,22,68,23,97,44,90,24,90,57,27,30,35,78,96,48,72,79,91,3,33,64,57,15,79,18,62,49,81,31,64,20,72,44,52,54,26,21,50,71,54,37,3,71,41,33,12,45,16,50,19,42,39,1,58,13,52,77,23,81,81,3,62,35,77,7,83,54,46,28,22,21,52,45,62,33,63,46,55,98,96,95,94,5,16,56,74,22,58,76,87,65,86,14,36,28,53,95,2,24,73,63,39,23,15,85,70,16,28,5,32,44,97,22,38,70,83,11,46,37,25,36,46,99,48,39,63,53,2,4,3,18,30,10,100,38,97,88,86,74,88,72,40,76,84,49,97,82,15,40,70,16,99,57,50,71,34,93,96,84,42,68,57,5,34,80,33,65,43,52,64,17,80,49,11,4,59,84,31,81,93,2,31,64,75,31,66,14,51,60,65,36,29,97,62,57,96,64,89,95,90,22,84,20,20,64,83,36,41,31,18,53,69,66,48,51,59,77,77,84,97,42,15,14,95,43,16,65,58,16,54,88,85,82,10,76,9,86,99,91,67,14,99,99,64,50,58,56,55,2,96,73,39,36,64,82,13,93,14,70,50,62,87,79,38,84,66,54,74,65,21,29,21,37,33,40,85,93,11,24,70,88,10,33,7,35,84,62,93,89,76,27,67,30,88,2,88,90,43,4,34,95,82,13,89,63,85,41,69,54,3,65,51,100,47,36,26,55,9,52,91,64,92,97,80,10,85,42,6,52,31,66,83,100,53,89,35,13,40,59,54,25,23,63,47,22,71,52,63,84,71,78,57,11,100,53,66,36,50,19,14,4,71,18,4,54,42,2,9,1,37,17,71,81,34,20,90,20,96,58,5,63,60,59,95,78,79,18,66,92,37,84,33,89,36,42,11,13,13,23,71,89,30,6,65,51,74,20,9,26,33,68,56,81,99,10,60,83,81,34,66,48,48,50,57,5,39,22,7,82,29,14,46,59,76,11,39,7,82,19,61,48,51,88,66,8,62,58,70,52,71,38,1,11,23,45,48,79,59,57,75,6,30,6,6,25,45,56,21,90,51,61,93,6,78,96,79,39,1,93,48,94,8,85,94,16,52,91,58,66,99,8,90,78,22,14,68,61,60,82,62,54,4,19,28,95,14,53,10,78,6,37,89,85,42,79,3,26,17,2,82,70,65,65,56,84,100,68,27,52,51,46,53,31,97,59,71,68,71,26,44,31,91,41,50,89,35,34,10,70,56,16,22,96,72,40,72,63,96,70,7,75,51,44,69,33,46,29,47,46,49,53,64,42,96,9,68,99,13,69,28,96,50,49,90,17,73,87,16,94,46,84,41,6,98,67,39,68,80,79,62,57,20,15,98,33,28,38,98,4,40,11,27,58,44,68,29,78,15,45,61,17,88,39,75,47,80,65,41,86,16,97,83,93,49,50,98,91,12,100,83,82,14,38,94,19,78,98,60,17,19,5,12,63,84,68,94,79,89,58,19,48,61,75,52,98,40,77,38,61,82,28,40,14,96,39,17,88,58,48,55,11,86,7,70,25,63,64,80,43,13,53,29,23,42,2,20,78,98,57,41,78,81,44,83,28,52,2,88,74,45,63,35,54,25,52,16,41,94,63,86,48,44,96,7,7,54,76,7,37,26,73,29,16,1,3,58,67,33,26,37,69,64,6,87,50,11,54,31,14,79,58,43,92,16,48,66,66,41,46,85,37,40,33,96,62,38,68,11,78,73,58,88,59,51,53,22,39,62,1,26,43,78,28,86,26,65,83,11,11,96,78,89,83,13,5,13,21,74,100,80,30,9,55,39,51,13,31,35,46}
Returns: 6.985396807981489E9
{-97,-99,-96,-93,-93,63,-62,-16,-80,-94,-81,-93,-94,-97,53,-35,38,-98,-81,-76,-74,-99,72,-43,-74,-86,-87,-49,-8,-99,-99,-97,-98,-99,-99,-50,-95,-45,-93,-18,-96,41,-97,-99,-73,-97,-99,-26,-85,-76,-19,-82,-96,-42,-38,-38,-87,-90,-98,-62,-99,-97,-39,-99,-28,-74,-37,64,52,-98,-99,-37,-99,-95,-47,-99,-33,-61,-99,-99,0,-53,90,-89,-97,17,-21,-98,-99,-99,-54,-7,-46,56,-91,-98,-91,-57,-98,-66,-98,-23,30,53,-15,95,-93,-13,-44,-88,-69,-42,-98,-74,-49,-76,-90,-55,-97,-78,-91,-87,-95,76,-91,-56,-88,-10,-18,-96,-98,-99,-99,-63,-95,-69,-23,-92,-53,-16,-40,-95,-21,-89,-98,-38,19,44,-94,-16,-99,-58,-99,-99,-80,-99,71,86,-59,-90,-87,-99,-98,-99,-84,-99,-90,-99,-99,-84,-99,44,13,-44,-98,0,-61,-77,91,-77,-67,-99,-94,-53,10,88,-93,-82,-33,-31,-57,-97,-29,-88,-25,72,-83,-99,-97,-96,-32,1,-99,-84,-50,-80,-29,-73,-86,-99,-99,-58,-91,-32,32,-99,-93,-95,-99,-95,-97,-53,-28,-96,-80,-97,-31,-92,-99,-64,-91,-54,-85,-85,-99,-60,-89,-98,86,-89,-72,-76,0,-91,-97,-13,-17,-99,-36,-98,-99,-98,-99,-99,-99,-28,-34,-52,-90,-64,-82,-96,94,-84,-15,-76,-27,-58,71,-79,-68,-79,-79,-82,-99,-98,-28,-80,-81,-55,-86,-63,-48,13,-93,-98,-84,-75,-65,46,-58,-42,-86,-95,-59,-84,14,12,-99,-51,-91,-97,-89,-96,-99,-95,0,-95,16,-86,-98,-83,-99,-99,-88,-99,-2,-96,66,-99,0,-88,-94,-88,-89,-89,-99,-97,42,-53,-88,-19,77,-73,7,-7,-34,-95,93,-50,-98,-87,-25,-78,-91,-98,18,-99,32,-93,-86,-84,-99,65,-90,5,-94,-85,-96,-97,-98,-98,-91,-98,-58,-87,-53,-64,-38,-43,-78,-99,-84,-99,-83,-96,-97,-78,-63,-95,-93,-95,-45,-85,-85,-79,-99,25,-83,-91,43,-72,-67,-95,-9,-92,22,6,-42,-72,-82,96,-69,-49,-33,-99,-98,-63,-50,-96,-99,-94,-95,-95,-98,-96,-89,19,-94,-94,22,-91,-95,59,-99,-99,-76,-72,-83,-99,-61,-58,6,7,-72,27,-95,-79,-47,-17,-78,79,-99,65,-96,-76,-91,-98,-99,-99,-87,43,-95,-79,-92,-97,-79,-99,87,-98,59,-99,-96,13,-68,-84,-97,-12,-98,-31,-45,-84,-99,-37,21,90,-89,-95,-85,-92,-11,-28,-90,-32,-95,-87,83,-96,-87,-92,-83,-58,26,-53,12,-95,-99,-96,-83,-98,-97,-57,-99,-97,-42,-18,-95,-99,-90,-38,-78,-94,17,-79,-85,-99,78,-94,-99,-97,-69,-54,-99,-99,-41,-99,-99,-79,-49,-29,-95,-99,-99,-85,-99,-97,-43,-93,-78,-47,84,-26,-96,-99,-90,-12,-94,-99,-99,-99,-92,-91,-99,-95,-19,-32,86,42,-92,-88,10,-45,-67,7,-84,-83,-95,-97,-99,-99,-67,13,-98,-88,-93,31,-96,-89,-98,-48,-55,45,-87,-89,-73,-97,-97,18,-9,-79,-99,-41,-66,-95,-42,24,-80,-94,-5,-51,-49,-96,-96,-98,-42,-99,-81,-7,-94,45,-97,-99,-78,-98,-81,-89,-89,-95,-83,-90,-89,-99,-34,-92,-76,-98,-99,-94,78,-99,-92,-93,-99,-95,-92,-99,-43,30,-91,-86,-94,98,-89,-99,-97,94,-99,-59,-88,-24,-46,-37,70,14,-1,-30,25,-39,-74,-66,-70,-98,-90,-31,-89,51,-37,22,-95,-85,-6,-86,10,-90,-78,-66,-98,41,-98,-92,-87,-39,-98,-92,-99,-80,51,-75,-99,-20,-83,-99,-91,-99,-73,-96,-84,91,87,77,-43,-84,-77,-68,-64,-97,-98,-96,-99,-97,-51,-46,-38,-99,-81,-11,-81,-93,-97,-89,-99,9,-99,-92,-98,-85,-99,-95,-99,-59,-90,-84,-99,-99,87,-88,-99,-35,-95,44,1,-85,-86,-95,88,-80,-92,24,-55,-98,-99,-98,-67,-93,-96,-99,-98,-74,-93,-62,-91,-79,38,-94,-87,-68,-99,51,-48,-73,-99,60,-98,-99,-97,-77,-98,-91,-90,-98,-98,-97,-97,-99,38,-4,-99,-97,-97,-15,-96,-89,-69,-93,-98,-99,-99,72,53,-89,4,-98,-88,51,-56,-81,-77,-62,77,-34,-95,-61,-93,-99,-89,-24,-99,-94,-99,-54,-98,-75,-99,-70,44,-91,-68,-99,-94,-98,-98,-98,-97,-55,-98,25,1,-97,-40,-80,-80,-48,-10,85,-60,-99,-99,5,-86,-98,-14,-92,-95,-84,-94,-56,-99,-99,-99,-55,-99,-99,-8,-92,-23,-99,-96,-65,-99,50,-26,-96,-99,-93,94,-97,-99,-33,-78,-99,-98,-34,40,-90,46,-57,-98,-67,84,-91,-90,-33,-94,-97,-95,-88,-84,-46,-82,-83,12,-66,6,-84,41,-98,-41,-31,-98,-34,-52,-42,-26,-98,-98,-87,9,-92,-71,-98,-99,-81,-15,-71,-99,-96,-23,-63,-97,-98,-99,-98,-98,-91,29,-85,-99,-48,-80,15,-97,-35,5,-87,-88,85,-97,-95,-95,-14,-33,15,-73,-77,-95,-81,-93,-35,-29,-83,-99,-94,-86,28,-96,45,-86,83,-95,-71,-60,-77,-74,9,-85,-4,-75,-65,-77,-81,-46,-93,-96,-86,-72,-96,-98,-89,-48,-99,8,-96,-60,-59,-3,10,-97,-96,65,-82,-11,-85,-99,-99,-69,-98,-72,-57,-99,-99,-87,-70,-94,-11,60,-96,-89,-29,-99,-75,-55,-95,-17,-58,-78,-98,-28,60,-99,40,-36,-96,-86,-81,-86,65,-99,-93,-94,-90,-59,-15,-95,-96,-87,-98,-99,-90,-86,-46,-10,-31,-41,-97,22,95,-86,-92,-11,-86,-91,67,-98,-90,-80,-99,-85,-96,-96,-97,69,-60,-76,-44,-96,-30,-84,-98,-95,-71,-99,-91,-58,-65,-94,-88,-92,-98,-99,-78,-86,-79,-76,-80,-99,-61,-97,-85,-95,-97,-93,-93,91,-98,-92,-80,-99,-99,-13,-8,-89,-79,-72,-96,-15,-95,-94,-53,-88,-91,-99,47,-38,-93,-75,-42,35,-96,-92,-93,-91,-84,25,-97,-58,-4,-98,0,-98,-77,-98,-82,-99,68,-95,21,-98,-98,-86,-30,-98,-99,-94,-97,-3,-11,-22,-91,-77,-59,-37,4,-81,-50,-98,-55,-34,-96,-1,-95,65,-88,-99,-66,-91,-51,-85,-53,21,16,-86,-99,-20,-96,-99,-66,-99,-75,-97,-87,-86,-91,-97,-92,-99,-98,-74,-99,-96,-97,-99,-99,-79,-94,1,-82,21,-89,20,-82,-88,-98,17,-96,-90,-58,-95,-8,-96,-98,15,-91,-47,-99,-97,-88,-72,-37,-39,-66,-56,-80,-78,-66,-86,16,-87,-83,-94,-99,-75,59,-65,-39,-80,-98,-55,-79,-95,-96,11,-98,-84,-99,-98,-86,70,35,-87,-94,-99,17,-72,-86,-99,-70,-28,-99,34,-93,27,-51,-66,-99,-99,-10,-96,-99,43,-51,-45,-44,-99,-95,-87,-89,-66,-18,-99,-97,-99,81,-99,-83,-98,-32,-57,-99,-91,-99,-60,-34,76,-98,-52,-62,-86,-52,-85,-3,-93,-81,26,-92,-77,-99,37,-97,45,-44,-99,-97,-30,16,15,-83,-98,-89,-54,-20,-35,-85,-64,-92,-90,61,-99,-94,-93,-90,-57,-99,-29,-97,77,-73,-51,-28,-98,-99,-97,23,-98,23,-99,-95,-95,-94,-99,-68,-85,-92,-73,-94,-99,-28,-97,-95,-87,-99,-92,-97,-90,-80,-94,-99,-86,-91,-99,-89,-83,-97,-75,-99,-19,-68,-43,-55,-96,-82,-82,-24,-98,-34,-99,-77,78,38,-99,-99,-94,38,-98,-92,-99,-45,-85,-30,-97,-99,-96,15,64,73,-99,-36,-11,-75,-99,-95,-94,-84,-95,-99,-44,-54,-99,-95,-92,-65,-95,-77,-63,-96,38,-85,9,-99,-86,-31,61,18,-70,92,-88,-93,-81,-98,-21,-96,-95,-30,-98,-68,-46,-79,-99,-98,-50,-97,-81,-46,-91,-56,-90,-10,-98,-73,-76,-75,-43,73,-99,-93,-63,-47,-89,-99,-93,28,-70,-80,46,-97,-96,-86,-95,-99,-98,-8,-78,-87,-57,-18,-95,88,-65,-94,-99,29,-95,-99,-22,90,-74,-91,-86,-55,-95,-37,-56,-51,-95,-64,-74,-91,-18,-91,2,-99,-99,-79,-96,-58,-89,3,-98,-24,12,-98,-19,-79,-18,46,-95,-99,-67,-99,-89,-69,-86,-75,-46,-25,-99,-47,-98,-98,-98,-93,-91,-95,-63,-99,-99,-97,-96,-45,-91,-72,-13,-74,-97,-7,-85,9,-93,-99,-41,-98,-98,-92,-83,93,-91,-65,-52,-93,1,-96,-99,63,-99,-93,-72,-75,-88,-51,-92,-98,32,-95,-90,-29,-78,-90,-86,-89,-99,-73,-84,-79,-54,-99,-85,-95,-97,-97,-99,-86,34,-97,-81,-67,-99,-98,-99,-50,-99,40,-46,-79,-78,28,69,-84,85,-99,52,-99,-97,-67,-99,-84,-99,-76,-39,-72,-92,-99,14,-66,-96,-58,-6,-86,-94,77,76,-98,-92,-67,-96,17,-99,-82,-87,2,-82,-95,-56,-99,-65,-96,-83,-99,-99,-99,-27,-63,-98,-96,-99,-96,-51,-47,-68,-38,-93,-72,-96,-99,-53,-98,-84,-37,-74,-69,-72,-97,-98,-42,-98,-99,-95,-79,-62,33,-56,20,-91,-99,-78,-51,-74,-96,-99,-46,-79,-98,-44,-93,-63,-97,-97,-76,-91,-68,-69,-94,-90,-67,-90,-95,-92,-99,-29,-99,-81,-45,-96,87,-99,-11,-98,-67,-64,-99,-85,-96,10,-3,-74,-74,-78,-92,-99,-2,-96,-26,49,-97,-71,-96,-58,-42,-93,56,-94,-98,-96,-96,-98,92,9,-99,-99,-50,98,2,57,-92,-86,-90,-99,-99,-99,-78,-98,-77,-98,-49,-85,-98,-99,-99,-82,-52,-57,-61,-37,-39,-34,55,-57,-99,59,-98,-52,-58,-98,-80,-90,90,-97,-94,-80,-98,-91,-79,-97,-88,-96,-38,-75,-46,-92,-98,-91,-66,-85,87,-30,-89,-23,-38,-94,-3,-99,-80,-99,-98,1,21,-50,-67,-97,-99,-87,-52,-69,-93,-88,-43,-99,51,42,-93,-99,-80,-82,-97,-91,-31,-75,-70,-98,-91,-67,-90,75,-19,-71,-71,-81,-99,-21,-77,-66,-73,-66,-66,-88,-6,-99,-99,7,-99,-98,-97,-93,-98,-99,-99,-99,-95,-65,-98,-96,-87,-1,69,-13,85,-65,44,-98,-99,-73,-27,24,-67,-98,-95,-91,-34,-99,-88,-82,-98,-71,-98,-97,-95,-85,-99,-94,-99,-21,24,-4,-98,-78,-98,-90,-68,-90,-64,-95,36,-99,-69,-83,-55,31,-49,-97,81,-58,-73,-30,-99,-88,-30,-88,-11,-96,-93,52,-72,-84,79,-99,-99,-39,-94,-97,-96,20,-99,-89,-96,-92,-88,53,-99,-80,-95,-92,-42,11,-88,-99,-98,-57,-99,-99,-93,-53,97,-44,-49,-89,-28,-87,-99,45,-83,-71,-75,-82,-97,-76,-84,-78,-66,-99,42,-46,-64,-97,-56,-96,79,-68,-52,-21,-70,-93,-39,-97,-66,-75,-30,-95,-51,-99,-98,-75,-13,85,-92,-82,63,-99,-30,-97,-21,-98,-95,-86,-27,41,-78,-96,-99,-44,-99,-86,-87,-97,-99,-67,-55,-42,-46,10,-48,-58,-78,-99,-98,-98,-85,-99,49,-59,-92,-75,-97,-89,-86,48,-90,-26,-83,-96,-98,-96,-96,-72,-92,-99,-98,8,-99,-28,-80,-95,-88,15,-58,-97,-98,-99,93,-99,-98,19,-90,-45,-58,-96,-95,-98,-62,-98,-81,-95,-94,-81,-99,-84,-40,-74,-74,-19,7,-52,46,-37,-89,-83,-96,-99,-97,-76,-59,27,-99,-87,-56,-97,-95,-23,-96,-85,15,-99,-97,-99,-85,-97,21,-89,-97,-98,-77,-80,-79,-95,-98,-99,-68,-98,-49,-29,-98,-24,92,-75,31,-92,17,-63,-22,-95,-96,40,-31,-91,-62,-81,-98,-11,-97,-94,-82,-99,-99,-53,-97,-62,-92,87,-98,-36,-69,-17,-86,-84,-61,-96,-94,-38,19,-99,-99,-99,-95,-64,17,-83,-60,68,-45,-99,-95,4,23,-92,-84,-98,-83,-97,-99,-96,-95,-26,-65,-77,-27,-78,-93,-67,-98,-96,-84,73,4,-99,-83,-96,-99,-78,-96,4,-94,-40,45,-81,-96,-35,-82,-53,34,-52,-96,-90,-41,-91,-76,-24,-82,-96,-30,-99,-88,-48,-93,-57,-79,-72,-76,-66,-85,-75,-93,-97,-97,-10,-83,-92,-99,-9,-99,-56,-91,-82,-95,-85,-98,-99,-59,72,-76,-99,-51,-97,-32,-8,63,-73,-53,-91,-98,-61,-48,-80,-62,-86,-99,-69,-71,-81,-96,-88,-95,74,-92,-90,-96,-99,25,-99,-96,99,46,-98,-12,-97,34,-94,-98,-14,-95,-57,-61,-55,-99,-25,-99,-18,-99,-88,-92,-94,-92,-80,-62,-60,-70,-96,-48,-86,41,14,-85,-96,-86,-91,-99,-78,-82,-95,-43,-76,-82,-33,-79,-73,-91,-67,-6,-18,-45,-93,-83,-79,-99,-99,-98,-95,-36,-96,-89,-59,-97,-97,-79,-33,-93,84,-44,-94,-93,-57,-85,-35,-19,-41,-94,48,-70,-95,-75,-95,-94,-98,-94,-4,-74,-10,-68,-76,-24,-98,-98,-51,-98,-76,39,-59,-98,-94,-99,-97,-90,-96,-99,-55,81,-85,-96,-95,-96,60,-99,-93,-96,-27,-97,-82,-98,-49,-99,-98,86,57,-5,92,-89,92,26,48,-33,-96,-96,72,-54,-83,-62,-98,-60,21,-97,-97,-76,-97,-92,-16,-99,-15,-99,-74,-42,-66,31,-99,6,-36,-98,-89,-17,-99,-79,-96,-98,-7,-91,-10,-6,-98,-91,-78,-96,-96,-86,-30,-96,-41,-80,-62,-98,-97,-97,79,-59,8,-99,-87,-36,44,-99,-96,-74,-99,-33,-90,-75}
{47,-76,-54,-96,-84,-88,-42,-62,-97,-90,-98,-94,-98,-98,-99,-79,-88,16,34,-93,-99,-69,-90,-96,-97,-13,-76,-99,85,-83,-66,-99,12,-12,-99,-76,-82,-99,-88,-81,-80,-42,-62,-97,-99,-97,-98,-6,-50,58,23,-98,59,-79,-74,-99,-46,-99,-80,-98,-81,-85,-92,-25,-91,-99,-97,92,-41,18,-78,31,-91,-92,11,-97,-88,-83,31,-82,-80,81,-84,-81,-58,37,-96,-99,-90,-95,-65,-80,-31,93,-98,-86,-26,-99,-91,-98,-69,9,-96,-45,38,-70,-98,-99,-64,-99,-98,-75,-79,68,-40,-43,-98,-85,-98,12,-90,-72,-95,-99,-99,-16,-99,-98,-96,-84,-99,-91,-98,25,-74,-99,-12,-96,-98,-70,-32,-24,-49,-97,-83,-89,-84,-97,64,-93,-60,-98,-93,-84,-70,-51,-80,17,-70,-77,-53,-95,-90,-6,-70,-99,-95,75,-83,-93,29,-71,-99,-94,-78,2,-69,36,-95,-74,1,-86,-99,-40,67,-98,-86,-99,-97,-80,-91,-97,-82,-70,-79,-99,-26,86,-27,-93,-97,-30,67,-95,-93,-85,73,-82,-99,-94,-95,-98,-70,-1,-86,-87,-29,-36,7,-47,-70,-72,-97,-15,18,-97,-96,21,-98,-79,-92,-81,-84,-84,30,-83,-84,-79,-98,-94,-7,-98,-79,-31,2,-54,-92,-53,-78,-94,-93,27,-97,-95,-71,-36,-99,15,-53,-86,-91,-23,65,-99,-99,-39,-31,-91,-86,-99,-98,-96,-59,-98,-87,-97,-97,-99,-99,35,-92,-86,-99,-44,98,-69,-89,-92,-98,-97,-42,-63,-80,80,-79,-97,-93,-69,-89,-71,-92,-66,90,-98,-84,-97,-72,-83,41,-78,-99,-89,-95,-52,-89,-97,-99,-99,-91,-54,-99,-83,-98,-90,-53,71,-71,-95,-77,8,-96,-64,17,-88,-11,-98,21,-83,-67,-78,-93,-94,-92,-46,-96,-31,-99,-99,-65,-98,-99,-96,-93,-97,-94,-17,-80,-99,-99,-93,-93,40,-99,-83,-14,-91,-40,-99,-17,-49,-71,-93,-98,-94,-99,-80,-96,-91,-90,62,-38,-16,-97,-94,-96,-97,-99,80,11,-85,-99,-96,53,-97,-99,-80,-98,80,-87,-98,-23,26,-88,-51,-98,-99,-64,-67,-88,-98,-58,-97,-98,-62,-99,-95,-55,-77,-8,-91,-91,-97,-91,52,92,-4,-99,-71,-99,-98,-87,-90,-98,52,-57,-95,-96,-25,-97,-75,-99,-52,-99,-94,-93,-90,-99,-89,-62,-64,-99,-60,19,-59,-99,-70,20,-98,-98,-88,-99,-59,-94,-78,-87,-98,-87,-52,-51,-92,-85,28,-98,-98,-98,-97,-32,33,-97,-75,-98,-95,-81,-99,-91,-40,42,16,-96,2,-98,-94,-84,-88,-93,-58,-81,-95,-31,-99,-95,11,-98,-94,-89,-9,25,-98,-43,-99,-78,-80,-54,-97,12,-5,96,-73,-14,-93,-78,-80,-99,-3,-95,-96,-92,-99,-96,-92,-99,-95,-89,-96,-60,-84,-98,-99,-98,-56,-98,-98,-91,-93,76,-99,99,-96,-94,-10,90,-98,-96,-99,-28,-98,10,-36,13,-97,-99,-95,-74,16,-51,-94,-99,-15,-96,-87,-65,86,-95,-37,-80,-99,-60,-56,-21,-83,-99,-5,-99,-98,-20,-99,-87,-93,-96,-73,-96,-99,-93,-95,-98,-98,-85,-79,-99,-91,-88,-92,-85,-99,-68,-98,-90,-94,13,-87,3,-96,-36,-83,-36,0,-91,-78,-99,99,-5,-99,-85,-68,-94,54,-84,-95,77,-89,-55,-71,-96,-85,-70,92,-95,-82,-96,-98,-97,-23,-99,-31,80,-99,-14,-93,-80,-99,-52,-99,-99,-93,-99,-55,-99,-98,-84,-6,-97,-99,-57,-80,-91,-36,-69,-87,-84,-82,-63,-26,-49,-93,-99,-93,-78,-93,-97,-86,-99,-21,-99,-99,12,-95,-54,38,-56,-84,-87,-60,-19,-79,-91,41,-94,-68,-7,-86,-95,-80,-98,-82,-64,88,-99,-23,-98,50,-98,-94,-97,97,-35,-91,-53,-28,-96,-99,-98,-98,-94,-97,-89,-32,-96,-98,-97,-88,-73,-93,-68,-45,-95,-45,-47,-20,-98,-97,-96,-99,93,-99,-77,-83,-99,-98,-86,-67,16,-81,-7,-97,24,-41,-8,20,-35,-61,37,-98,25,71,-80,-99,-36,29,-87,71,21,-99,16,-96,-96,-82,-97,-83,-97,-38,-94,-97,49,-95,-76,-93,-97,-93,-99,-97,-83,-58,-91,-99,-99,-96,-36,-87,92,-99,69,-99,-98,-68,-91,75,-99,-99,-98,-42,-94,-99,-49,-87,-98,-51,-99,-5,-77,-72,-40,-99,-47,-17,-90,-96,32,-99,-92,-12,-65,-81,-67,-87,-13,-87,-70,-96,-87,-78,-96,-88,-99,-98,32,53,-98,55,-86,-97,-98,55,-98,-88,-7,-95,-98,-99,-99,-99,58,-91,25,-45,-66,-96,-91,-98,-99,-99,-96,-98,53,-90,-96,-93,-85,-91,-86,-90,59,-94,-72,60,9,-33,-91,-93,-64,-96,-92,-99,-69,-98,-94,-92,-99,27,-49,-79,-74,-43,71,-86,-45,-96,-64,-67,-89,-82,-98,-30,20,-97,-94,-97,36,-99,-96,-41,-23,-65,-99,-92,18,41,-75,18,-42,34,-97,43,-97,-93,-92,-63,-88,-99,-46,-81,-99,-5,-96,-56,-96,-74,-95,-99,-88,-78,87,-71,-97,-46,-98,-45,-99,-98,-99,-99,-99,13,-98,-73,-99,-99,-57,24,-97,-8,-26,-86,-88,9,-91,-95,82,-86,-99,-98,-93,-88,-92,-72,-99,-93,-74,-96,-88,-72,36,-99,-97,-59,-90,-4,-99,-79,-51,-98,-98,-97,-44,-81,-95,-61,-88,-65,-10,-99,-99,-92,-98,-93,-65,-96,32,-91,-97,-69,-61,-76,-99,-97,-79,-99,-96,-23,-14,-89,-90,-99,6,-99,-95,-97,-89,-82,-97,-73,-85,-79,-41,42,-95,-97,-96,-86,-84,-75,-52,-50,-99,-99,9,-98,-91,-99,-87,36,-92,-3,-52,-92,-62,-84,-85,-72,-95,24,-81,-41,-19,-98,-99,-99,-84,-99,-78,-79,-99,-31,-40,-96,-95,-80,11,-78,-41,-84,-57,-90,-85,-98,-86,-98,-57,-83,-97,-14,-98,-77,-39,-38,-95,-99,-28,-84,-83,-99,-95,-99,-97,-94,-96,-16,2,-79,-75,37,-73,11,-98,-97,-93,-89,14,-52,-93,-99,-97,-81,-64,-96,-97,33,-99,-88,48,-67,-99,-78,-68,-83,-98,-20,64,-98,-18,-99,2,-99,-94,-5,-89,54,-99,-71,-26,-92,-98,-98,-89,58,-99,-98,-99,-9,-83,-99,-92,-93,-98,-2,-97,-82,-5,14,-98,-52,-76,-86,-97,25,-94,-98,-62,-97,-89,-95,-53,-99,-77,34,-98,-18,13,99,-91,-69,-95,10,-74,47,-97,-9,-83,-99,18,-84,22,-97,-65,-69,-52,-99,99,-92,-9,-97,-98,-89,-59,-99,-90,9,36,77,-38,-98,-53,-99,-97,-97,-81,-97,-98,-99,-43,-96,-98,-91,-98,34,-78,-97,-28,-79,-37,-83,-89,-58,-99,-30,-69,-20,-98,-96,-94,-29,-26,-94,-96,-97,-97,-86,96,-97,-98,-99,-87,-99,61,-68,-81,-72,-97,-97,-81,-92,-46,-99,-92,-54,-72,20,3,18,4,-96,-94,-97,-84,77,-99,-98,-81,-98,66,-79,-45,-54,39,-90,-90,-65,39,-93,-96,-20,-98,-81,-98,-98,-99,-97,54,-97,-4,-50,24,-75,-77,-19,-99,-93,29,35,-99,-97,-82,-79,-81,-98,-95,-72,-98,-93,-74,-99,-98,-87,-59,-17,-91,-98,-49,-86,-56,-78,-96,-99,-91,-97,-98,-98,-93,34,-28,-99,-90,45,0,-89,-54,-61,-74,59,68,-70,-64,-63,-38,-92,45,-38,-97,-96,-98,-99,-80,-60,-96,-95,-53,-77,-90,-90,-96,-87,-90,-99,-87,-89,-95,-56,96,-97,-95,-96,-99,30,-91,-98,88,-33,-58,-29,-99,-59,-86,-84,-66,-98,-99,-97,-99,-68,-92,-92,-15,-98,-99,-52,-48,-99,-99,6,21,-72,-71,-70,-96,-98,-95,-97,-99,-99,-96,-74,-72,-66,-93,-96,-85,-77,-86,-92,-95,-61,56,-88,-9,-98,-26,-99,-99,-62,-51,-91,-98,-80,-99,-99,-99,-98,22,-99,-95,-65,-98,-2,-98,-97,-96,-41,-99,74,-93,-98,27,76,-65,-99,-99,-98,-87,-67,-30,-99,-74,30,-80,-84,-78,-90,-55,-53,-97,-95,-92,-83,-99,-99,-97,-72,-98,-95,30,-94,-83,-98,-85,-17,-55,-96,-99,-71,-52,43,-98,-97,-69,-80,-80,-99,-96,-91,-98,-88,-92,-97,-95,-83,-43,-51,-94,-70,-92,-94,-98,-66,-91,-93,-97,77,-99,-45,-82,-82,-79,-89,-36,83,-99,-21,-20,-94,-42,-87,-55,-18,-96,-92,-99,-78,-96,-7,-70,-89,-23,-73,-11,-99,23,-95,-82,-99,-59,-25,-93,-91,-79,-97,-99,-36,-99,-94,-85,31,-99,-99,-98,-99,-64,-98,-98,-95,36,-88,-69,-80,-99,-47,-92,20,-97,-84,-94,-94,-29,-22,-98,-87,-98,-18,-99,-99,-99,-97,-99,-56,-99,-92,-96,54,-79,-99,-99,38,-73,-66,-77,-99,-96,-99,-55,99,-89,-96,-75,-99,-98,-16,-95,-98,-95,-99,29,-97,-92,-94,48,-94,-83,-96,-98,-99,-50,-39,-95,-98,90,-68,-31,-98,85,-6,-20,74,-56,-80,-99,-91,-64,-88,-2,-74,-98,-43,17,-74,-93,-97,-98,-80,-99,-97,-90,-99,-87,-81,-70,-30,-6,-97,-96,-15,-99,-97,-58,-66,-97,-95,-98,-97,-74,-99,-88,-99,-92,-75,-99,-99,-41,-37,-80,-98,-69,-54,19,-68,-35,-95,-98,-99,69,-88,-23,-16,-87,-97,-94,-88,-94,-4,-93,-58,-91,68,78,-85,-95,-62,-96,-89,-21,-69,-93,-25,-91,27,-89,-97,-84,-93,-92,-76,45,-81,16,-99,-94,-97,-98,-99,-83,-64,-86,-64,-76,-96,55,-55,-70,1,-77,-92,-83,-79,-92,-86,-95,-96,-98,-97,-99,-19,-97,-88,-87,84,-95,-60,-95,-96,-95,72,-96,-94,-76,-67,22,-56,-76,-88,-97,-70,-11,-68,-98,-98,-99,71,-90,-99,-88,-93,-97,63,-68,-82,14,80,-14,-83,-89,-98,37,-95,-77,-40,8,-84,-45,-74,34,-32,-98,-98,-99,-97,-5,-75,-99,-88,-96,-97,-98,-54,99,-99,-85,-99,-58,-98,83,-92,-70,-98,-31,-73,-98,-61,35,-96,59,-87,-99,-99,-97,-91,-98,-98,15,-96,-22,-17,-85,-88,-41,-99,-98,-84,-90,-94,-55,-92,-95,-61,-98,-99,39,-34,-65,-94,-98,-98,-76,-84,50,-86,-95,-99,-91,-95,-62,-38,-90,-54,-2,-80,-99,-91,-72,-7,-98,-98,-98,-99,-8,-46,-29,-90,-99,5,-98,-87,-49,-20,-96,-82,-97,0,-94,-55,37,-84,-92,-12,-98,-98,-97,-99,-97,-80,-82,-93,95,0,-96,-89,-67,-62,-81,-99,-92,-96,8,-77,-97,-99,-86,-99,-93,-92,-88,-76,-80,-1,-64,-97,-76,-97,-99,31,-93,-82,-99,81,-70,4,-2,-97,-5,-95,-93,-66,23,-99,-86,-94,-99,-93,-93,-29,-99,-99,-98,-95,-63,-91,-73,11,-86,-97,-98,73,-64,-91,-77,-99,-98,-48,-95,-74,-52,-94,-72,80,-93,-16,-99,-94,-99,-95,-81,-99,-39,-99,-98,-74,-3,-99,-99,-89,-58,-16,-93,24,-98,47,-14,-77,-96,-99,1,-93,-98,-99,93,26,-97,-97,39,-99,-99,-82,-91,82,-19,-98,-39,-98,75,-90,-99,27,-95,-68,24,-99,-92,-94,-99,-98,-5,-99,-99,-95,-95,-15,-80,-42,-99,-89,70,-98,-37,-85,-84,-97,-94,-91,-72,-75,-89,-59,-73,-85,-98,-99,-67,-97,-50,-55,-90,-96,-71,-47,-86,53,-78,-97,-96,-21,-98,-88,-98,16,-97,-98,-97,-42,-53,-74,-86,-54,1,-59,-55,-99,-84,22,13,-61,-89,-97,-95,-96,-95,-99,-74,-96,-70,-98,-90,-98,-92,-58,-79,-56,-97,-98,-63,-97,-96,-99,-98,-99,-61,-99,-85,-98,-99,-92,-99,-53,-44,35,-60,-99,-22,-99,-99,-99,92,-80,-55,-43,13,24,81,-87,70,40,-99,69,-99,-91,-99,-18,-94,-89,25,-98,-99,-99,-95,-99,-99,-68,-98,-96,-57,-42,-94,-91,-79,63,-98,-51,-99,-94,-77,-82,-99,-89,-32,-99,-97,-95,-70,-68,-83,-87,-97,9,-73,-79,-98,-47,24,-98,-1,-99,-99,-94,-99,58,-57,-88,-69,77,-85,-98,-98,-97,34,57,-80,-66,-99,24,-93,-99,-56,-29,-96,-99,29,-97,-99,-95,-97,-61,-12,-99,-94,-87,-98,-97,-97,-99,-91,51,-93,-99,-99,-79,35,47,71,12,-60,-99,-71,-98,64,-56,-88,-95,-81,-67,-92,-99,-98,-93,-77,-43,33,-44,-93,-76,56,-96,-99,-49,40,-99,-97,-95,-90,-81,-21,-93,-90,-96,-94,-99,73,-94,-80,-82,-98,-65,-88,-38,-34,-90,-3,-98,-96,-44,-97,-39,-96,-90,-85,-91,-93,91,-92,-99,-64,-99,-77,-75,-94,-88,-97,-99,-93,-99,-99,-98,-85,44,-95,-95,-98,-96,-50,-98,37,-23,-99,-92,-98,-98,-80,-82,-99,-92,-77,90,38,7,-99,-97,34,-95,95,-99,-96,-24,-60,-7,-68,-99,-75,77,-99,-44,40,-53,-88,-37,-99,83,-94,-97,-94,-99,-93,-80,-99,-99,-99,-98,-97,-67,-75,-77,-99,-99,-99,-83,-99,-83,-90,-79,-87,-46,-10,-98,-94,-97,-38,-99,17,-99,-78,-87,-95,-97,-99,-96,-97,-83,-96,-86,-78,-99,-35,-99,-98,-39,-96,-48,-84,-90,-99,-99,-46,21,-97,-10,-1,-10,-87,-98,-99,-63,-87,-99,-96,-99,-97,-99,43,56,-99,-89,-87,-95,-4,-99,-11,8,-95,-99,-99,-8,-99,-97,-97,-21,-87,-76,-88,-93,-8,18,11,12,-92,6,-18,-99}
{99,97,25,76,96,98,13,77,70,96,87,98,76,99,18,94,68,87,84,98,66,-70,87,98,66,80,-12,22,86,91,-95,82,-37,99,82,96,99,88,99,14,99,53,-40,99,89,21,15,96,98,31,54,99,91,-84,98,87,78,-14,34,41,94,82,99,98,68,93,95,96,-88,95,98,60,45,78,91,75,97,99,98,94,92,87,46,99,87,99,81,-30,73,94,99,74,91,98,83,-89,14,72,74,80,78,98,93,70,34,96,76,97,82,61,6,55,98,-14,64,93,96,97,92,98,-13,35,60,86,99,99,-79,97,69,86,97,96,98,-40,60,93,89,85,-54,98,8,93,17,99,33,93,93,53,35,89,73,99,69,97,-98,58,13,90,99,-69,98,91,75,89,75,1,19,91,97,-23,96,99,97,94,98,99,95,63,90,99,83,91,30,17,82,-83,-88,8,78,99,-71,98,98,88,96,99,35,99,92,99,78,81,72,62,94,90,55,99,84,95,94,79,99,91,-90,84,99,-50,41,96,91,97,-77,99,85,75,41,99,25,55,91,95,99,99,94,6,-51,69,83,98,93,90,18,98,55,85,40,-10,74,97,96,43,87,45,96,19,60,-70,90,-93,98,94,-13,78,26,56,90,-35,98,78,97,97,4,-2,82,99,-47,-61,78,97,-26,-18,98,95,98,99,90,98,-23,82,-64,32,99,86,30,99,99,-71,99,98,87,92,99,95,41,96,99,86,-80,-26,96,-3,6,97,97,88,78,45,98,88,68,99,56,79,73,98,96,68,98,98,59,44,59,-37,97,74,99,37,60,-85,-44,94,-19,92,47,16,74,74,99,89,63,95,74,95,73,-59,99,97,99,98,85,94,67,88,97,-69,98,99,99,61,89,59,90,98,36,69,99,92,66,61,98,73,37,47,63,98,98,85,15,79,96,61,97,27,-79,95,50,-78,-59,-7,75,83,97,34,86,15,12,81,62,88,-13,99,99,-14,56,96,95,88,70,85,94,32,-69,99,76,98,48,-6,48,-18,14,71,86,94,23,70,75,52,98,85,53,87,98,48,84,82,-46,-37,99,99,47,-17,98,68,25,98,-33,98,-91,98,8,96,45,96,-95,99,97,84,99,94,59,26,88,98,97,50,-74,97,96,89,77,64,96,89,6,72,97,94,29,-63,40,77,-60,68,-99,11,98,75,16,91,42,94,83,92,-60,99,96,47,98,99,97,99,94,93,96,93,98,61,97,78,89,15,85,93,31,99,97,21,52,89,96,99,60,99,99,-44,-74,75,99,99,80,82,66,99,96,95,99,-15,85,93,98,75,95,99,71,-44,42,97,39,88,54,95,96,85,92,99,94,-91,93,69,98,48,86,84,54,99,96,83,97,95,19,99,-95,-51,99,98,95,30,-41,99,99,81,-72,91,78,92,98,99,87,79,82,93,97,99,99,81,26,98,-49,98,33,97,91,85,-20,99,86,84,66,82,94,39,96,96,91,94,48,99,79,90,99,-17,97,71,24,-3,-36,99,99,12,55,12,41,-24,97,37,59,77,97,-80,99,98,75,5,55,80,7,98,86,89,77,98,-14,94,85,52,92,98,84,86,99,96,97,98,98,97,94,99,-26,96,98,80,86,84,76,95,79,95,15,93,43,41,92,36,96,23,99,75,80,85,86,-39,96,35,44,-54,76,92,58,96,-41,85,96,97,-74,97,76,54,43,97,-39,4,39,65,-40,96,99,99,88,98,91,-70,95,63,-26,-98,97,-48,99,93,99,96,89,60,99,74,99,81,85,91,86,23,99,94,86,91,93,96,93,60,80,59,94,88,97,93,74,89,98,80,13,98,91,-40,98,87,78,82,95,-14,88,94,93,93,82,83,96,18,99,94,89,-5,29,99,-85,-2,91,98,90,90,99,92,99,21,99,99,55,85,95,97,97,99,76,52,73,69,90,94,40,58,25,-3,57,9,14,96,92,99,89,98,77,-98,-54,99,-93,99,68,37,38,98,99,99,61,86,99,94,86,94,96,88,99,93,61,24,56,95,99,93,74,91,-39,93,71,95,98,78,25,66,97,-80,73,-54,26,59,97,71,96,46,98,96,93,98,-39,80,97,-77,95,98,99,73,96,92,94,93,29,96,89,94,33,99,95,98,50,89,84,99,96,16,52,99,76,96,94,99,-25,86,99,93,-10,77,99,90,79,87,93,17,70,98,88,97,89,99,97,72,40,92,87,50,-62,79,93,89,-9,-69,95,26,45,96,-3,99,-16,97,99,79,73,93,97,3,-5,-68,99,99,98,94,97,88,53,96,96,98,65,94,99,-22,65,98,-36,96,25,93,-98,73,54,52,98,95,49,93,97,39,83,91,95,94,14,94,99,89,93,76,-49,99,94,64,94,-50,-66,99,-20,86,93,71,-11,99,56,87,97,98,96,99,-53,99,94,29,86,-11,99,94,62,77,-50,98,96,-38,52,94,47,79,99,99,62,80,93,97,99,69,87,66,90,60,84,-93,98,35,95,76,89,99,95,96,99,95,99,50,66,96,-98,99,4,99,-58,47,91,99,98,99,-56,52,87,91,99,91,-92,92,88,51,77,68,98,89,86,49,52,41,99,99,59,82,80,99,52,98,83,98,99,97,-44,85,44,40,17,90,98,91,32,99,59,87,62,89,79,99,58,98,-63,97,99,70,82,99,97,93,99,97,68,-4,98,90,51,-49,80,89,95,66,96,51,90,99,99,96,56,57,68,72,96,96,76,98,-65,73,97,99,92,-28,-48,99,-37,98,-86,93,89,99,89,98,41,95,79,97,46,99,96,98,99,98,50,93,99,-35,96,-74,87,-61,97,94,-5,99,97,37,99,88,-50,-12,76,91,85,87,79,98,-37,37,99,99,-19,55,90,70,99,5,99,-45,98,83,-86,83,82,13,86,83,99,63,97,98,69,96,91,88,97,91,85,99,80,91,2,28,99,86,76,91,49,99,-19,92,99,67,99,97,77,66,94,95,40,-20,98,97,94,99,93,-55,98,94,28,87,28,99,98,-6,97,96,99,47,81,-12,98,98,96,-15,87,93,42,96,99,99,46,3,80,-17,79,97,52,54,60,89,91,1,99,94,46,98,21,99,60,64,80,50,75,91,33,79,78,97,99,-25,94,89,-98,98,-70,73,97,99,86,98,99,81,67,72,-40,76,93,99,99,-26,93,99,85,91,81,-18,96,98,-54,-48,50,93,99,97,96,35,21,99,63,97,76,-3,99,-5,-25,43,98,96,99,93,-97,97,95,97,52,94,26,-34,90,60,75,36,-34,-51,-37,-24,94,96,91,-61,97,-20,97,96,97,95,41,81,-23,83,99,98,95,98,92,25,98,30,70,-42,97,42,34,94,84,82,96,90,67,86,20,96,46,93,86,-69,-29,29,95,74,99,-79,74,95,82,84,53,94,45,49,99,97,97,92,23,95,98,96,95,90,-27,84,98,67,4,99,90,-50,92,99,63,99,95,10,99,84,91,79,83,-48,-40,77,96,-6,86,90,95,96,28,99,98,98,96,74,99,97,6,-15,99,97,97,87,8,95,-46,96,30,80,74,85,93,76,85,91,55,99,90,99,63,36,96,38,-24,94,66,60,76,94,95,92,61,62,38,96,50,96,97,-85,92,99,75,73,95,-26,42,95,57,92,99,50,67,-42,97,99,36,38,98,-33,-5,99,49,89,-1,98,99,-84,88,-78,60,-28,99,87,-14,92,18,38,61,99,99,20,70,-36,92,24,98,98,99,82,99,81,60,99,82,53,-92,-30,98,99,99,94,93,85,94,99,93,98,93,84,69,99,96,92,99,47,79,89,-30,72,87,99,85,99,3,99,97,99,76,-47,99,43,14,99,98,-65,97,87,99,74,51,97,98,92,29,61,98,94,20,-81,97,-50,-30,46,97,77,-44,96,0,93,44,99,86,76,98,-53,4,36,92,94,19,99,96,98,-43,97,80,99,8,45,89,-24,47,99,98,-18,-12,95,96,72,57,79,59,98,98,91,98,91,44,64,98,98,-71,81,71,-5,95,82,84,44,85,-7,94,-2,-59,57,51,70,52,75,97,96,97,-29,51,-89,97,96,91,94,95,77,99,86,98,97,84,-61,33,-80,98,96,16,-7,98,90,-1,98,11,99,-7,-59,66,89,93,90,92,94,99,96,99,46,87,99,-19,91,86,98,-40,82,53,-65,98,97,52,65,8,96,96,99,96,99,86,91,44,99,35,26,-9,72,58,-5,91,83,88,25,31,99,99,73,92,3,78,99,83,93,75,49,99,84,99,-84,-17,55,94,98,-20,93,40,96,72,-92,38,98,65,89,40,82,-66,71,84,45,43,-74,98,-61,-73,80,15,97,84,93,-6,95,99,-58,75,86,99,20,99,99,96,63,79,86,98,92,90,99,-74,80,99,82,-18,-30,95,65,98,72,89,99,43,99,99,83,64,99,-10,57,-96,96,98,63,7,65,91,41,94,-35,76,69,97,4,83,94,-45,-98,90,93,62,73,97,-89,2,29,38,23,99,-40,83,67,83,69,66,-14,99,88,97,98,16,-26,98,89,63,24,-69,-39,76,94,-54,89,99,95,47,75,99,89,97,93,80,97,98,95,99,97,-87,70,99,97,86,47,68,64,99,77,38,-24,99,65,24,46,94,97,98,18,99,99,84,-18,77,-30,27,99,77,68,-62,99,93,94,96,98,97,95,12,98,-82,99,58,-63,98,99,74,54,-53,-4,97,37,95,97,-3,99,73,96,13,84,83,65,98,33,99,92,75,99,91,99,97,84,80,99,19,82,46,76,97,31,84,89,95,95,56,-81,96,25,99,84,99,99,95,-1,15,97,29,-96,23,99,75,47,74,51,65,73,91,63,93,91,88,99,80,88,-9,44,4,97,96,22,77,-55,76,82,99,26,94,-70,94,99,98,-16,42,85,16,54,79,76,73,64,89,-19,93,96,86,92,97,98,99,-72,29,63,98,50,-39,37,-6,-90,78,74,69,77,94,95,93,99,81,77,97,90,64,94,83,-69,99,95,96,70,-46,93,90,85,98,99,98,81,67,91,92,-48,93,85,-46,98,75,88,33,-38,-88,99,59,49,94,91,-39,2,40,99,95,72,36,94,97,99,42,37,99,83,64,-25,83,73,94,62,98,59,98,28,-4,91,-43,89,99,52,51,98,67,98,91,19,96,97,71,91,45,87,92,98,89,85,90,12,47,99,31,99,31,89,-23,96,27,96,98,96,97,98,99,93,72,-64,99,-85,24,86,34,98,91,89,79,66,-97,90,72,90,-67,-95,-98,34,76,93,98,75,97,99,32,-12,90,92,98,93,99,91,21,97,46,94,86,93,68,70,89,12,99,99,-27,94,80,91,58,98,99,87,99,-25,78,82,91,40,80,69,78,69,99,86,99,18,98,1,46,98,22,95,93,94,-49,99,99,57,55,81,-18,94,88,33,59,84,56,97,-3,93,-80,60,63,95,73,-7,84,98,95,56,96,58,88,97,84,90,93,99,89,92,-6,73,44,60,97,97,-89,98,48,89,69,98,81,74,95,99,-51,96,91,65,99,62,17,83,19,91,-16,88,-52,99,95,78,73,61,-47,99,98,-48,89,98,98,85,87,72,-31,-30,97,70,82,-41,37,66,84,67,40,-45,87,4,92,-25,98,95,17,84,67,27,99,49,99,24,90,98,98,-89,98,98,-68,14,95,79,99,96,-29,-32,84,53,43,-44,90,58,92,93,82,96,97,76,98,94,93,99,99,97,89,99,92,64,90,78,73,-74,71,85,91,-91,68,99,98,79,10,14,96,96,95,99,-40,66,99,80,96,78,-67,-28,90,98,-19,58,84,98,67,99,8,99,99,30,89,97,99,85,50,98,54,-60,60,99,78,92,98,-93,79,98,-24,68,43,-66,94,97,-17,34,73,95,-78,64,-45,99,33,59,17,99,99,91,71,72,97,80}
{98,4,-2,39,98,95,99,50,14,78,98,89,98,79,86,99,92,87,94,80,-76,66,86,27,85,93,-13,99,-45,94,96,98,99,46,89,-5,69,99,70,81,-39,62,18,98,99,97,99,95,27,89,77,-54,71,86,95,52,66,81,93,88,80,92,80,24,66,90,-81,-51,-37,76,94,19,56,98,86,91,97,85,-21,88,-60,-65,74,99,98,94,55,-68,-9,99,92,99,74,96,97,98,8,83,96,91,94,99,97,93,98,99,91,5,85,-70,97,-44,98,95,99,97,34,99,69,99,80,62,6,-32,-53,77,99,99,53,21,53,-4,98,57,-28,94,27,99,39,28,99,98,97,98,96,92,99,59,-27,46,99,98,73,92,1,-44,-67,91,76,-27,73,25,88,99,0,90,70,93,-18,94,92,92,99,98,75,84,92,37,98,98,98,42,31,94,94,94,99,86,54,77,40,92,95,84,96,95,97,97,30,55,99,-31,20,58,96,99,99,89,62,97,98,-2,91,99,99,-21,73,-75,99,96,97,94,86,15,78,80,89,97,95,85,93,-2,99,93,85,97,99,90,98,58,93,97,-20,57,40,36,93,96,94,65,-4,98,99,97,99,95,30,92,-10,78,99,-4,15,94,28,97,94,86,44,35,-88,99,96,98,64,-47,94,-76,97,75,99,92,97,-59,96,97,99,-17,99,-52,70,96,49,99,97,54,55,98,94,98,64,72,47,-73,96,99,99,22,-73,52,91,98,-3,51,66,93,99,95,-62,98,97,95,77,-2,-30,99,84,-7,98,61,43,-81,97,25,99,99,97,41,99,70,99,45,32,73,56,99,62,93,62,23,99,20,64,-32,95,97,87,-4,98,77,88,-92,97,87,26,54,76,5,99,70,98,-76,98,86,92,28,72,98,-6,-44,73,86,65,41,18,45,95,97,93,43,-57,96,76,99,97,85,51,26,96,99,97,96,72,98,98,88,99,90,84,32,-55,87,83,60,74,96,98,-51,86,98,65,79,98,99,22,-52,99,97,-84,93,70,99,99,94,33,98,98,-14,-51,73,99,21,99,89,94,67,43,92,88,82,50,27,99,19,57,99,99,73,86,97,43,83,77,-23,-24,99,94,93,81,92,20,15,-2,92,69,99,81,97,99,-23,93,74,-30,94,82,98,99,23,74,78,94,99,88,79,97,31,99,-44,-34,99,95,96,-64,99,6,89,-31,91,41,42,-45,-97,-62,87,99,99,99,-72,35,95,86,99,50,99,-50,91,-36,30,97,87,19,-10,94,63,47,99,-99,89,94,36,77,98,89,61,-5,95,5,92,-46,78,45,46,90,76,99,-20,23,93,-66,83,99,57,98,94,93,97,93,92,98,94,3,97,62,90,-72,97,87,-80,98,60,99,97,87,99,85,98,79,98,95,97,-55,94,-48,96,98,97,-24,-92,-3,-84,89,-15,86,92,99,98,79,-27,93,-42,99,92,75,67,50,98,-97,89,95,87,98,89,14,77,95,92,72,85,85,96,98,94,95,99,96,82,65,68,74,8,99,57,97,98,-52,50,95,98,94,-47,-34,71,41,41,99,95,10,84,-8,99,94,97,53,98,85,65,95,-30,96,59,89,92,99,93,13,99,57,87,97,-48,80,99,33,99,56,8,-27,99,99,51,51,94,-13,94,98,28,-4,42,97,96,90,94,86,79,5,95,13,81,97,97,-51,46,72,-99,-25,98,91,90,97,-14,93,99,17,94,-81,98,98,97,85,91,49,45,-49,93,85,57,-5,94,83,43,98,98,99,73,93,90,98,99,99,83,95,-54,14,98,97,-43,99,73,-56,98,96,89,87,3,96,98,99,87,57,99,-2,36,94,-52,99,98,82,48,39,-28,99,-80,99,22,-4,97,99,94,59,99,93,67,95,98,97,0,86,1,91,98,94,99,-2,99,99,75,92,69,99,95,98,-15,-6,98,97,84,65,93,-71,-3,94,98,-41,84,98,99,96,95,94,-27,90,99,91,96,95,12,98,-60,99,97,92,98,37,76,88,99,94,82,99,65,-7,-64,93,91,77,93,51,40,4,-39,82,87,-86,98,81,73,69,82,99,-6,99,88,16,-14,84,94,41,68,83,97,37,98,99,93,96,87,99,39,17,78,95,84,95,84,94,95,97,89,97,-19,97,99,49,96,-82,79,99,-3,99,99,86,92,85,67,90,25,96,90,98,76,18,-68,-81,88,97,22,99,97,59,99,64,-53,27,98,20,53,94,93,-24,95,97,-16,99,99,16,-25,95,85,-71,96,33,42,81,98,62,97,89,90,99,99,97,85,69,89,88,83,99,86,-23,99,18,95,9,73,-58,60,12,99,-96,93,89,-24,86,99,89,69,95,99,42,93,84,97,82,62,59,84,89,97,-78,93,56,45,59,66,44,93,94,86,93,96,39,97,85,99,99,88,99,93,47,95,94,91,99,99,65,78,86,86,96,93,-4,-76,99,96,65,55,91,98,93,-93,95,19,78,98,98,52,46,95,79,57,5,89,76,95,99,89,34,-10,96,99,2,97,51,0,-79,95,99,81,94,16,94,-4,97,-90,99,73,90,44,99,98,-21,93,99,-31,99,99,81,-89,83,56,87,58,99,94,69,25,97,98,99,99,5,-16,90,98,97,53,99,-70,95,75,-37,74,57,65,73,56,99,-60,99,10,89,49,49,98,99,98,93,95,69,87,83,88,-22,-56,71,92,-73,97,56,99,99,87,91,85,-21,-40,99,75,29,35,73,48,36,90,99,85,67,84,97,93,-49,87,-83,-21,92,98,23,87,98,-55,11,45,42,60,54,94,96,95,54,92,69,72,35,98,94,60,99,98,-4,40,99,75,99,96,85,90,80,-67,97,94,98,75,71,92,-73,98,75,16,85,26,89,86,-59,-29,75,66,3,84,99,94,39,-10,2,91,87,87,7,96,48,97,99,99,65,31,99,99,17,97,91,-90,98,93,98,48,89,98,-44,-70,93,97,73,74,-34,-86,-35,74,81,99,82,98,97,94,95,97,-91,81,90,-50,95,99,94,98,97,78,58,89,7,-11,-21,81,99,83,99,35,96,99,99,98,-87,74,88,98,83,-43,95,67,94,95,97,95,67,95,12,92,2,98,-16,42,77,65,47,99,99,92,85,99,92,61,77,95,92,93,76,96,10,89,85,99,89,98,99,19,96,85,95,93,99,97,99,98,99,70,22,-37,-37,80,-80,74,52,45,79,64,-1,98,-41,98,59,94,70,99,88,99,96,95,73,95,98,-38,98,96,88,90,80,99,4,76,-6,50,99,58,95,93,86,-64,67,98,18,97,-37,97,93,99,-71,71,99,99,83,22,-85,85,-2,30,91,87,84,95,83,99,60,7,99,99,67,-6,98,62,95,-15,89,94,-8,92,82,98,93,94,90,97,51,19,-53,86,95,99,98,-4,59,-18,97,19,71,69,58,-34,-13,51,77,97,-8,26,82,18,-2,54,79,83,78,96,64,57,79,87,72,28,51,99,90,95,81,-45,-87,95,65,90,69,99,99,55,75,99,79,56,92,59,6,84,99,98,39,67,99,99,99,99,-26,-7,65,65,-23,90,82,27,-61,36,-75,97,94,-65,99,92,97,94,90,55,99,99,92,-41,57,90,83,45,-3,99,99,98,97,24,88,97,98,-73,67,99,41,99,71,-3,92,98,-27,15,70,46,86,95,99,48,-30,93,82,72,97,81,29,89,99,45,-51,37,-4,97,-32,-46,96,94,93,98,62,23,20,10,67,83,98,94,-65,11,38,92,99,95,97,40,78,99,93,68,78,98,97,66,-82,90,98,95,97,96,99,98,96,42,-7,3,97,64,43,99,15,-31,55,84,96,92,46,43,81,53,99,99,96,82,-68,99,92,-26,-31,45,99,82,49,79,98,40,-39,78,98,83,91,98,61,89,57,99,96,83,95,59,91,99,-54,52,92,97,32,98,69,69,98,32,-29,97,87,40,83,82,71,62,29,97,98,10,59,48,94,40,81,78,80,87,98,82,93,86,98,3,18,69,-11,96,1,99,50,74,95,76,15,99,92,95,-31,71,98,69,-46,42,32,42,95,99,6,57,99,-91,97,99,84,99,97,-34,42,99,95,45,-81,-16,99,68,99,99,99,91,84,67,33,90,-47,6,55,99,99,99,99,66,68,50,-85,-15,98,88,97,98,72,97,-29,38,74,79,99,99,88,50,37,89,94,72,76,99,88,81,77,84,96,32,97,39,88,89,81,94,48,96,95,74,-35,99,15,88,44,87,97,91,38,95,96,98,52,99,-35,99,79,53,98,99,98,34,98,98,-18,99,-10,92,80,98,63,57,-10,96,95,99,85,-23,99,99,62,99,96,-24,49,89,99,23,-19,-16,97,97,77,-4,95,87,89,33,99,97,98,82,-73,99,90,86,-47,94,99,-59,91,79,21,-60,98,61,73,10,92,28,98,-21,78,74,99,98,-17,99,45,10,52,97,95,90,97,99,94,61,95,96,-2,97,92,94,95,59,39,98,93,-27,86,99,99,49,95,99,90,98,91,96,76,9,89,90,86,70,97,97,54,70,7,99,87,50,97,55,89,99,-58,97,56,12,93,-76,94,64,96,57,80,72,99,-31,95,-5,58,28,98,99,67,32,81,59,99,-52,98,-73,94,98,33,80,75,90,99,96,-71,90,56,74,14,84,97,99,99,91,91,73,14,99,65,99,98,-4,48,49,70,-39,99,93,94,69,97,-33,77,99,97,83,96,99,-51,53,-10,99,98,78,98,69,93,23,91,-22,98,56,99,33,97,91,88,95,94,-61,95,77,74,88,78,-41,80,99,99,80,95,96,99,-10,-28,26,-55,92,20,-26,25,37,99,84,48,99,93,65,98,84,98,98,96,77,91,96,96,96,92,-51,75,-14,53,36,96,48,-93,52,90,-64,27,-94,-20,-1,98,-38,99,-50,48,91,96,96,97,98,99,33,59,32,24,-3,23,94,-45,-55,99,94,88,-75,92,30,-54,-40,87,-75,97,76,14,27,19,5,-1,76,4,92,44,-30,91,95,92,87,87,95,98,98,99,99,78,96,84,-63,94,-16,85,93,-46,99,94,54,-13,93,95,82,83,93,32,86,99,97,-17,-65,30,99,65,51,80,-58,93,96,-46,-93,72,84,99,78,-5,99,96,98,97,85,60,97,-74,99,98,69,-1,99,15,93,8,97,98,34,-56,53,99,97,99,73,99,99,62,70,98,68,77,93,99,91,97,95,7,52,99,92,89,44,20,65,90,94,-63,76,-35,31,69,93,71,62,82,77,95,81,99,95,-52,3,88,70,61,60,99,94,-21,88,93,25,93,84,49,1,86,98,95,39,69,98,90,64,93,93,97,38,84,11,27,-18,96,-84,98,65,71,92,-84,79,94,96,96,99,97,89,69,71,89,69,62,67,51,13,95,98,92,99,-13,96,97,97,91,94,92,99,96,-46,98,99,37,99,-11,99,19,97,97,97,91,69,98,97,99,98,99,-48,51,-5,59,98,60,76,99,97,28,99,98,-30,98,98,99,95,99,87,-96,85,98,65,-9,90,-9,83,87,99,89,66,-54,95,98,96,98,96,98,88,34,49,12,-5,93,-75,78,95,63,99,50,17,75,97,84,99,96,72,98,88,38,83,9,99,90,91,81,13,99,11,91,92,97,-52,93,99,38,97,93,93,82,81,-37,91,98,-60,32,67,99,89,92,-87,16,14,81,-26,43,97,82,77,85,95,99,-75,65,-34,90,52,48,88,96,99,-5,7,-9,97,-76,93,99,90,75,97,90,99,70,6,56,98,99,77,91,99,47,99,-20,22,99,-2,6,99,80,-88,-87,96,98,-72,74,97,89,72,-51,92,95,74,98,98,98,95,99,77,97,-21,67,99,11,99,52,82,89,89,-2,93,-16,99,41,15,57,90,-83,95,97,27,95,94,-76,60,31,82,91,97,99,-51,82,53,79,-23}
{100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100}
Returns: 5.6603954459E10
{-61,-66,-76,-98,-97,0,-65,-97,-92,-41,-95,-2,-99,-92,26,-98,-85,0,86,-96,-98,-90,-97,-88,72,28,-99,23,62,-90,-98,27,-75,-87,70,-93,-57,-70,-43,-95,-94,-94,-84,-79,28,-25,-64,-81,30,-78,-60,-96,-30,-89,-88,-99,-98,-79,-86,-98,-99,-73,-95,-25,-99,-53,-98,-99,19,9,-79,-92,-97,-21,-50,-97,-88,3,-10,-98,21,-84,23,-92,-99,-79,-78,-85,20,-98,-90,-49,-97,-98,-98,-99,-92,81,-99,-96,-99,-98,-99,56,-98,-70,7,-94,-99,-99,-99,-82,-94,-97,-98,-99,-93,-96,-98,-97,-47,-94,-97,-48,81,12,40,-97,-87,-98,-57,-96,-95,-78,-97,-99,-80,-98,-90,-97,-97,-17,-94,-93,-97,-95,-62,-94,-96,-99,-97,-81,-64,-86,-92,-82,-73,-21,-99,-81,-99,-39,-94,-98,-31,-66,-27,-85,-85,-27,-99,-34,-83,-38,-15,-92,-78,-97,-98,-27,-28,10,-84,-84,-96,-99,67,-83,-99,-97,-53,-62,-75,-97,-93,-99,-13,52,-16,-89,91,-99,-82,-99,9,-80,61,-33,-47,-94,-99,-60,-46,-98,-75,-47,-91,-73,-99,-99,-90,-27,-77,-93,-43,-59,-99,-99,-95,-97,83,15,27,-92,35,-3,-68,-53,-92,-86,68,-94,-99,-94,-92,-99,67,-5,70,90,-93,-63,-99,-88,-49,-38,47,91,-82,-85,23,13,-94,-59,-69,-76,5,-94,-91,4,-99,-98,-99,-56,-99,-7,-92,-97,-95,-99,38,-74,-44,-73,-47,44,-77,-59,-88,-38,-95,-39,-81,-80,-91,-16,-61,-98,-91,-91,-29,-99,-43,62,-80,-66,-89,66,-99,68,-97,10,-39,-97,60,-86,-98,-7,-24,-95,-96,-99,-68,-98,-92,40,-93,-46,-73,-97,-44,72,-85,-45,-99,-99,-32,-98,-99,-97,-88,-25,-99,-92,-99,-47,-92,-95,-62,-99,-88,-99,-28,7,-70,-65,-69,5,-85,-99,-95,-83,-86,-92,-26,-98,-42,-30,-83,-95,-94,-86,-76,-95,-98,-94,73,-93,57,-62,-95,-91,-87,-75,-99,-97,-99,-19,-99,-15,-99,-58,-93,-55,-99,-76,-99,-99,-69,35,-54,-1,7,-90,-4,-99,-19,-8,52,-99,17,-97,30,-99,-95,-87,-97,-92,-99,-98,-96,-91,-97,-67,-24,-75,-99,37,-93,-55,-11,-98,-87,-99,-73,-82,-91,-81,-87,-98,-88,-98,-97,-92,-54,-1,33,-84,61,-98,-98,-38,-1,-96,-98,12,-99,-88,-7,-69,-96,-99,-93,-80,-93,37,-99,-95,-72,-95,-97,-33,18,-98,-96,-91,-99,-46,-10,-36,-84,-5,5,-4,-98,-97,36,-45,-98,-89,20,-87,-88,62,-99,-96,39,-98,-74,-79,-71,-98,92,-59,-97,-99,-95,-88,-97,-99,-36,-55,19,85,-99,-99,-81,-85,-54,-99,-98,-91,-50,-87,-49,-98,-97,47,-93,-98,-92,-97,-94,-97,56,-99,-96,-81,-67,-97,44,-92,-98,-85,-99,-69,-59,-90,-96,-71,-96,-98,-42,71,-93,-99,-46,-99,-67,34,-62,-78,-98,-99,-76,-90,-98,-47,-38,53,-99,-79,-70,-41,-98,-45,6,39,-91,-92,6,-99,93,-87,-86,-72,-94,-76,-98,-55,-81,-87,-20,-73,-78,-98,-83,-35,-93,32,-98,-49,78,-88,-96,-27,-14,-96,-83,-76,-96,-99,-86,-98,-96,-97,-56,-88,-67,-84,52,-45,-72,-95,-96,-98,-80,-15,-95,-98,-97,-15,-93,64,-61,-95,-96,-94,-83,-96,-98,-99,-43,-47,-99,-99,-83,-97,-99,-9,-91,-58,-99,-90,-99,-96,-47,-91,-99,-21,-99,-92,-81,-63,-37,-85,-99,-93,-14,-97,-69,-33,7,-57,-94,-67,8,10,90,-98,-94,-92,-94,-97,-96,-98,61,-93,-96,19,-96,-5,-19,-96,-99,-95,-65,-7,-10,-90,-96,-95,-84,-98,-65,-99,60,-99,-95,-74,97,-98,-97,-95,-48,54,-97,-98,-63,-99,-88,-96,-97,49,-92,-93,-98,-93,-48,-24,-92,38,54,14,-74,-99,-99,-52,-46,-85,-99,-93,-82,-98,-78,9,-78,-17,7,-95,1,12,27,-14,-99,-46,-73,-90,-99,-83,73,-19,-97,83,-99,-99,57,-60,-83,-92,-94,-88,-99,-62,97,-97,-99,-96,87,-99,-99,-87,-93,-34,-99,-99,5,-96,-91,-66,-96,-98,-71,-96,-98,-99,10,-46,-21,-39,-86,7,-99,-99,-85,-98,-99,-89,-95,-85,-24,63,-98,-23,-67,-74,-98,-78,-78,-39,-99,-47,-99,86,-62,-98,-65,-92,-84,-84,-61,-70,-94,-72,-76,0,-93,-97,-99,-81,-48,-37,-73,-89,-52,-89,-97,-99,-65,6,-90,1,-93,-88,-90,-93,-95,62,-98,-87,-96,-99,-93,9,-99,-88,-48,-63,-91,-92,-85,-84,16,30,-39,-72,-96,-84,-75,-86,-86,-99,-24,-99,-60,-92,-97,-89,-51,-18,75,-39,4,-52,-82,-85,-71,-78,-76,-84,-76,-78,-69,-79,-93,-97,-1,-85,-98,-97,-97,-98,-99,-99,-8,-98,-84,12,-89,-28,-95,63,-92,-92,-81,-98,-95,-94,-99,-76,-3,64,-79,-65,-70,-95,-92,-91,-93,-96,-90,-97,6,-29,80,64,-91,-84,-13,-95,81,-97,44,-97,-7,28,-69,-76,-97,-65,-96,-97,-92,-78,-86,-92,-42,-97,-28,-99,-82,-79,25,-76,-98,-89,-45,-87,-93,-99,-87,-74,-94,-48,-92,-99,-89,-98,-97,58,-90,-99,-99,-48,-99,-14,-99,-87,1,-93,-98,-43,-78,-99,-88,-94,-91,-97,16,-38,62,-83,-18,14,18,-99,-91,-48,-16,-83,-96,-85,-98,-87,15,-97,-99,-99,-39,-99,-98,-97,-92,-93,-99,-97,-42,18,-71,63,-2,-41,-81,-93,-63,-81,-97,-98,-61,-85,-99,-81,-82,-65,-96,-3,-57,-89,-62,-44,-82,-99,-97,50,-97,-67,-93,-60,-99,-92,10,-98,-99,-99,-64,-85,-88,-87,-73,-20,-99,-86,-98,-90,-89,-99,-89,-87,-97,-65,-78,-99,-89,-94,-99,7,-95,-50,-99,-94,-98,-91,-18,-91,-99,-98,-99,-73,-62,-84,-98,68,-94,-90,-97,-98,-81,-83,-99,-99,-99,-99,-98,-22,-36,-42,-98,-98,-89,-82,-72,-99,-98,-2,-83,-52,-97,-91,-88,-91,-87,-97,-41,29,15,42,-69,-71,-75,-93,-5,-83,-70,-46,11,-99,-95,-94,-94,-70,53,-69,31,-90,-74,-98,-83,-92,-95,-99,-10,-90,-62,-10,-93,43,-14,-49,-6,-97,-31,-92,-87,-99,-19,-98,-88,53,36,-99,-77,-98,-95,-98,91,-99,-69,-46,-98,-99,-80,-21,-33,-16,0,-77,-26,-99,-93,-86,-58,-86,-97,-92,-83,77,-93,-95,-75,-43,-96,-33,9,-99,-94,-96,12,-80,-99,-77,94,-80,-99,26,-82,-74,-13,-99,-76,-99,-94,-76,69,-99,-77,-93,-62,-99,42,-83,-57,-99,89,-99,-46,-88,-99,-93,-22,-64,-92,-96,9,-98,40,-81,-86,-99,-96,-99,-99,-99,-99,-95,-99,68,-96,91,-99,-37,-99,-81,-99,-90,-29,15,-99,-12,-76,-98,-81,-71,-99,-99,-27,-68,-75,-88,15,-96,-52,-76,-85,-21,-97,-97,-91,-99,-89,-86,-98,-99,-4,-79,-99,-99,-97,-99,-99,-54,-95,-87,-99,-83,21,-90,-96,-68,-92,-48,-24,-95,-78,40,-95,-89,-72,-21,-99,-73,-66,-45,-91,-53,-97,-41,-99,-98,-95,66,-93,-95,-97,-51,-81,-80,-99,-64,1,-28,25,-11,-93,-99,-54,-95,-93,10,-94,-90,-6,-57,-86,-89,-61,-61,-99,-99,64,-87,-77,-99,56,-97,-99,-97,-95,-64,-79,-17,-99,-95,-76,-99,-97,46,-99,-72,-96,14,-37,-91,16,49,-75,-40,-77,-84,-94,2,-98,-26,-81,-99,-93,-96,-73,-98,-89,-93,-95,8,-97,-73,-87,18,-97,-96,-91,-95,67,-49,-75,-92,-71,-97,10,-99,-98,-68,-92,-64,-90,40,-99,-97,-99,20,-77,-92,-92,9,-97,-98,-99,-84,-98,-97,-93,-88,7,-56,69,-99,-97,-98,-98,-93,-99,-98,-16,-99,-67,-98,-99,-96,-99,-66,-81,-94,-91,9,-46,-92,-17,-99,-99,-94,-98,-99,-98,-99,-99,-87,-81,-73,-98,-97,-56,-98,-98,-96,-79,35,-87,54,-73,-36,-99,-94,5,-83,-78,-98,-80,-26,-90,86,-95,-89,-98,67,74,3,-68,-93,-38,-97,-97,-96,-89,-85,46,-4,-94,-97,-94,-24,-72,-56,-56,-95,-93,67,66,-97,-66,-91,-35,-94,-79,-99,-98,-27,-69,-96,-41,-98,-38,-59,-99,-82,-82,53,-60,-95,-3,-39,-98,-76,-96,-98,81,-90,-65,2,-76,-96,-95,-98,40,-96,-75,-99,-94,-93,-61,-76,-70,-99,-87,-99,-99,-98,-94,-95,57,-99,-94,-39,92,-16,-95,-87,-70,-97,85,-59,-73,-97,-98,-35,-96,-99,-48,-59,-99,-79,-94,-94,-95,50,-87,-96,-90,-91,-99,-21,-98,-23,-4,78,-3,-93,-7,-99,-92,-99,-84,-31,-89,-99,-96,-55,-99,-97,-67,-86,-48,-50,-99,-15,-97,-96,-99,-99,-92,-72,-97,-98,-80,-99,-51,-71,69,-92,-91,-84,-98,-99,-95,-95,-96,-99,-53,-69,-45,-81,-89,-89,-88,-98,-93,-70,-97,-99,-46,-13,-99,-54,-96,-99,-56,-97,-98,57,-99,-72,-94,-65,-67,-51,-98,-86,-63,14,-99,-45,-98,-55,64,12,-99,-99,-83,-72,-90,-99,-65,-98,-63,-40,-95,-99,-71,-99,-96,-67,4,-57,-94,-93,-99,-77,-20,93,-62,8,-90,-99,-96,-43,-96,-61,-99,-78,-99,-99,-98,-96,-61,-93,-81,55,-15,-95,-49,-85,-98,43,-88,-99,-96,-97,-98,-98,-46,-72,5,39,-91,47,10,-98,-66,-5,-37,94,-99,-99,-99,-54,-93,-99,-84,-71,-86,29,-44,-98,-95,-84,37,-82,-94,-90,-62,-99,-82,-94,20,-88,-55,-99,-99,20,-89,-97,-78,-85,26,-99,-80,-91,-91,-91,-98,-16,-98,-93,74,6,-75,-99,32,-98,-92,-92,-37,-92,-99,-91,-98,-86,-56,-74,-18,-99,-87,-87,-99,-99,-95,-96,-87,-77,-96,-78,-98,-25,-97,-94,-60,35,-29,83,-94,86,-81,-99,-30,-98,4,-30,-64,-33,-95,-98,-53,-99,-67,-89,-85,-98,-91,-99,29,-98,48,-98,-32,-99,70,-72,-99,-95,-99,-20,-97,-97,35,-87,-93,-61,-96,22,-87,-90,-97,34,-58,-86,-69,-84,36,-71,-91,9,-72,-85,-97,-10,-20,-99,-87,-96,-43,-94,-99,62,-15,-99,-16,-86,-62,-74,-81,-84,3,-65,-97,-99,94,-98,-99,-86,-96,-25,-99,61,-99,-86,-99,-27,-81,-73,-59,-98,-47,-94,-98,-69,98,-56,-99,-93,-99,-99,-70,-99,-97,-33,39,81,-5,-95,-53,-82,-95,-76,51,25,-62,-75,93,-66,-98,-96,-76,-42,-97,-28,4,-47,-1,-96,-66,-65,-67,-12,-83,-53,-5,-85,-80,6,-45,95,-98,-91,-24,-88,-96,-99,52,-83,-96,-88,-97,-99,-32,41,-56,-72,-97,-75,-51,90,-93,11,-65,-98,-55,-48,-94,-89,-96,-99,-68,-99,-76,-99,-99,-16,-39,-99,-91,6,-23,-99,-76,-88,-96,-95,-32,-61,-97,-98,-98,-84,-99,-74,-88,-86,34,-39,31,31,-91,-52,-65,-87,-47,-96,-14,-78,-99,16,-87,-99,-63,-85,-84,-71,-92,-41,-83,-69,-88,-95,-87,-99,-99,-42,-97,-58,-98,-93,-99,11,-96,-84,19,-94,-94,-44,-99,69,-99,-65,-81,15,-76,-97,-5,-98,-94,-99,-6,95,-97,-68,-98,-83,-79,-99,-65,-97,-17,-94,-65,-95,17,-92,-83,-99,-69,-94,-94,-70,-93,-99,-87,-89,34,-63,-59,-99,-93,-53,-95,-94,-89,-98,-99,38,-79,66,-98,-98,-86,-85,-99,-58,-95,-88,-97,9,-98,-79,-88,-99,-6,-96,-97,-90,-61,46,-97,-68,-19,-70,-99,-99,-97,-83,-94,-76,81,-86,-99,-94,-94,-78,-89,-54,18,-47,-66,-94,-14,-95,-99,-5,-89,-99,-39,-24,-99,-98,-45,-96,-99,-98,-99,-30,-69,-92,-45,-18,42,-47,-99,-90,-95,-93,-7,-93,-99,-94,-87,-83,-97,22,-88,-99,-76,-93,-95,-98,-27,-89,-99,-64,-46,-4,-77,-99,-89,-99,-82,-98,-92,-97,-98,-92,-92,-97,-45,-97,-99,-47,-94,-7,-97,-95,-84,-19,-97,4,-62,-98,-92,6,63,-99,-93,-37,-99,-7,-85,-94,-98,-95,95,-7,-71,-54,51,-18,-88,5,-92,-90,-97,7,-60,-51,-88,12,-90,-45,66,-97,59,-26,-98,-98,-99,-94,-61,-3,-99,-64,-80,-56,-99,-53,-92,3,-69,20,-77,-32,-21,-51,-98,-76,-72,-97,-99,-98,-99,-96,-89,-39,-71,-85,-97,-54,-80,-99,-97,-31,-93,-83,-95,-98,-98,-69,-90,-25,-93,-71,-75,-95,-94,24,-99,-27,-89,-30,-84,-74,-90,-76,-10,-99,-95,33,-99,52,-81,-99,72,-66,20,-99,-88,-99,-90,-82,-50,19,-89,-99,51,4,69,-85,-82,-34,-79,-62,-53,-97,-96,-99,-74,-99,-89,-47,-85,-71,-98,-98,-45,-99,-97,13,-91,-99,-84,-96,-98,95,-97,-82,-99,-75,11,86,2,-97,-98,-43,-34,-92,-91,-58,-59,-30,-98,-41,-13,-98,-46,-99,-6,-88,-58,-94,83,-98,-45,-59,-99,-20,-48,-98,-98,-99,9,-85,98,-89,-95,-93,-25,-77,13,-89,-91,-2,-61,-92,-97,-99,39,-99,-97,-75,11,-14,-39,-99,-92,2,-98,-74,-53,-85,-94,-98,76,-99,-59,-48,-98,-94,13,-99,-16,-78,-68,-98,-14,-83,22,-96,-12,-94,-99,31,-57,-94,30,-98,-97,-63}
{-95,30,17,-97,-96,-67,-95,65,-72,-99,-55,-99,-93,74,-58,-78,-97,-72,-99,-77,-61,-80,-58,-98,-98,-98,-82,-86,1,-72,-83,-77,-71,-42,-91,-34,-45,-87,-93,-99,-65,-97,-95,-89,-94,-45,-50,-71,-65,76,-89,-30,24,-95,-80,-99,-67,-8,-61,-81,-78,-96,51,-64,-93,-99,-61,-93,-78,-81,-96,-99,-84,-89,-99,-99,-86,-65,-69,-96,80,-75,-98,-10,-91,-99,-94,-71,-89,-98,-99,-11,29,-22,76,22,-98,40,-96,-99,-99,1,-80,-97,-73,-84,7,-89,-99,-72,-71,-95,43,26,-99,-73,51,67,-99,-75,-98,-99,-6,-92,-97,-98,-82,-61,-99,-98,-98,-89,39,-65,87,-99,-98,64,-98,-71,-6,-95,-81,57,-89,-53,-91,-95,-68,-99,-72,-93,-68,-99,-94,-23,-97,-96,-10,-64,-97,-69,-91,17,-49,-99,-56,-81,-86,-98,-87,-98,-93,-89,-90,-97,-96,-99,-95,-39,83,0,-99,-99,-98,-55,-51,-92,-96,-99,-93,-49,-65,-97,-71,55,-99,-65,-51,-90,-39,-82,43,-98,49,-87,-99,-37,-13,-97,-23,53,-58,-90,-98,-50,-85,-86,-99,-84,-73,-44,-93,-95,-92,-98,-98,-95,-81,-20,-86,52,-54,44,-99,-98,-99,-95,-95,-87,-83,-52,-73,-12,-96,-88,-96,-68,-93,-90,-99,-96,-99,66,-96,73,-90,-29,-92,-96,-94,-64,-18,-96,-24,-96,-52,-85,-75,-90,-50,11,-99,-97,97,-85,-93,-91,-97,-47,-96,-98,-66,-92,-19,-30,-53,-99,-14,-99,86,-88,-33,-38,-99,-97,-76,-81,-56,-27,-96,-97,-71,-86,-99,-2,-19,-91,-41,-69,-44,-99,-85,-84,2,-97,-16,-69,-86,-17,16,-89,-7,-20,-73,0,-87,-99,-95,82,19,-75,-91,-70,-88,-88,-98,-84,-99,47,-94,-44,-31,-95,-97,-90,33,-96,24,-92,68,-17,-41,56,-99,-66,-50,0,41,-93,-41,-93,-82,-85,-99,2,15,-86,83,39,-97,-97,-86,-96,-74,-94,-99,-7,-99,-6,-85,10,-75,-97,-97,-61,-96,-97,-98,-98,-52,41,-94,21,-13,-93,-99,-80,52,-99,-50,-98,-88,-95,-70,-72,-93,-92,22,-99,-84,-49,-71,-71,28,-36,-35,-98,-41,-93,-99,-99,-7,-52,-82,69,-57,-15,-41,-99,-81,-85,-49,-89,-85,-94,-99,-99,65,-99,-69,-89,-90,-82,12,-28,-91,-54,-20,-83,-51,-89,-65,-2,-95,-98,-93,-93,12,-99,-54,-97,-97,-94,-91,-99,-99,-98,47,-95,29,-99,-65,22,-99,-99,39,-93,-99,-98,-95,-95,47,-81,-94,-96,-36,-99,-93,-14,-97,-70,-75,-29,-99,-85,-91,-48,-83,-97,-17,-99,-29,-71,-98,-97,61,-82,-99,-70,9,-79,-87,-98,-99,41,-99,-95,-78,11,-66,-85,-97,-98,-77,48,-49,20,-98,-10,-26,-82,-99,-51,-61,-43,-99,-97,-99,-96,-97,9,-76,-77,83,90,-96,-59,-96,-89,-47,-67,-97,-99,7,-96,-22,-94,-88,-69,-97,-89,-92,-99,-69,-98,54,-96,-75,-90,-99,-99,78,-94,89,-99,-99,-88,-40,-38,-84,-80,-88,-88,-54,-44,-48,-1,-98,7,-97,-20,-74,-98,-30,-98,-94,-97,-96,-92,-99,-35,-85,21,67,-87,-99,-98,-99,-88,-99,-99,-98,-26,-46,-36,-99,43,-98,-52,-97,-92,1,-94,-54,-95,-98,-72,99,-97,36,-92,-99,-67,-99,-83,-77,-95,-64,-93,-84,-99,-33,27,-99,-99,-95,-65,-60,-68,-99,-99,-63,-26,-86,-99,-41,-68,-98,-78,-99,-98,-94,-80,71,-96,-95,-92,-6,-96,-90,-51,-4,-95,-3,-35,-93,-98,-58,-87,-99,-71,-96,-49,-71,-88,-42,-87,-86,-22,91,-16,-86,-93,3,-84,-93,-98,-38,-64,-86,75,-49,-98,-14,-96,-78,-97,-98,-99,-35,-60,-45,-90,-97,-93,-82,-57,-76,-15,-99,-83,28,-90,-31,-80,-47,-76,-99,53,-34,-54,-91,-69,-99,-13,-99,-99,77,-99,-45,-71,-95,58,-99,4,-38,-99,-98,-64,-97,-81,-94,-45,-36,-80,-95,-62,-89,-75,-84,-77,-91,-62,-96,-91,-45,-92,59,-59,46,-49,-85,-12,-12,-88,-85,-56,41,-76,-49,-90,-89,-98,-99,-98,43,-87,9,-48,-97,-25,-63,-91,-70,-93,-94,-98,-82,-99,-93,-55,-40,-97,41,-89,59,-76,-92,-80,-60,-94,-62,-96,10,-22,-28,77,-95,70,-80,44,-36,-98,30,12,-52,-91,-42,-98,51,-84,-92,-99,19,-49,-98,-56,-79,-57,-89,-99,-99,-73,-98,-93,27,-45,-71,-29,-24,-34,-29,-99,-91,-70,-96,-97,98,-75,-12,26,-90,-98,-82,-30,13,-99,-32,-92,-65,-97,-68,-88,-92,-28,-95,-89,-83,-90,-88,-99,84,-78,-61,-98,-96,-96,22,-72,-61,-84,-60,-21,-99,-45,-62,-98,-63,74,-78,-99,-98,-99,-95,54,32,-64,-97,-99,-71,-77,-90,-98,-33,25,-78,-84,-28,-41,15,-89,-97,-87,-98,-85,-88,-99,-99,-79,-99,-7,10,-73,93,-96,-90,3,-85,-18,-61,-9,-93,-67,-86,-49,-16,-84,19,-84,-73,-99,-98,-14,-86,-78,34,-86,-81,-98,-70,-19,-81,-46,82,77,-62,-81,-90,-6,6,-87,25,-99,84,-91,-91,-98,-68,-99,-97,-92,-86,-95,-68,-89,-33,-98,17,-88,-96,-95,-83,62,-98,-86,-27,-98,-1,-37,-35,-98,-49,-89,-89,-96,-62,67,27,-99,-93,-75,-81,-73,-69,-94,98,-73,-88,-96,10,-41,49,-13,23,93,-31,-98,24,-56,-98,-98,-95,-88,-88,-91,-82,-99,41,-38,-99,-83,-73,-98,-99,43,-97,87,-99,-84,-94,-1,-90,-99,-97,-21,65,-99,-36,-43,-72,-11,-78,-56,-90,-70,-6,-90,-73,-88,-8,-97,-99,-93,-81,-87,-75,-90,-97,-85,64,-20,53,-79,-99,-98,-97,-99,-96,-27,-84,-98,-80,-80,-87,-91,-4,-99,-98,-67,-99,-96,84,-98,-99,-86,-95,-98,-98,-99,-95,-98,-92,-89,-93,-95,-93,-64,-64,-89,-96,44,-84,-92,-96,-81,-67,-99,-94,97,-78,-92,-99,-84,-97,-10,-98,-76,-77,14,57,21,-97,57,-99,-66,-98,-10,-98,27,-71,-90,-99,-98,-64,-3,-97,-91,-99,-71,18,-97,-88,-95,-98,-73,-99,-98,-97,-92,-81,-99,52,-52,-94,-96,-95,-95,-93,-70,28,54,-93,19,-73,-98,-64,-96,98,-96,-43,-99,-99,-99,-87,95,-53,-46,-99,57,-96,-85,49,-62,5,-84,-94,-73,-97,-91,-97,-99,-99,-89,-92,-99,-46,-98,-2,-89,-64,-92,-7,-62,-84,-85,-85,-71,-94,-92,-91,-56,-88,-93,-92,-98,-98,-98,-94,-71,44,98,-82,-74,-97,83,-37,43,46,-88,-98,-77,-67,-88,-76,-99,-99,-79,35,-99,-95,-97,-96,-85,-96,-86,-98,-99,-89,-99,-99,-99,-17,-99,36,-22,-94,-96,-27,-62,-99,-98,-95,-73,-84,-77,-77,-90,-83,-99,-97,-99,-76,-99,-80,-98,18,-99,68,-97,-24,81,-85,-27,-81,69,-41,-10,52,-97,-39,-81,-98,-80,-89,80,-96,65,-13,-99,-96,-83,7,14,-88,-84,-64,-86,17,-96,59,-16,51,-97,-77,-39,-6,39,-43,-42,-66,-88,-99,-17,-92,-98,-43,-85,-53,-76,-98,-19,-24,-95,-97,-54,-97,-99,-98,-94,-98,86,-95,-92,-99,-99,-97,-47,-6,-7,-80,22,-86,-99,-74,-98,-19,-77,-85,-64,-95,-93,-99,71,-87,-98,46,-99,-96,-96,-82,-99,-98,-92,-39,-97,-97,-97,-69,36,-84,-93,-49,-88,-88,-94,-96,-99,-62,-94,-94,87,25,-95,87,-99,-40,-67,-84,45,-97,3,-19,-99,-98,-40,-89,-50,76,-99,1,27,-92,-98,49,-88,-83,-94,-9,-74,-96,10,-65,-60,-98,84,-92,-99,-82,-92,-98,-99,-73,21,-63,-46,60,-99,-99,-85,-98,-84,-86,64,-76,-92,-94,-44,-60,-98,-99,-11,-97,-99,-85,-47,-21,-89,-89,-86,-56,98,-65,-99,-83,-92,-96,-42,87,-97,-98,-99,-8,-88,-41,-90,-99,-37,-95,-86,-93,-88,-98,-79,-97,-74,-87,69,-83,-98,75,-71,-99,-76,71,-99,-68,-97,-95,-90,-97,4,18,-49,72,-85,-32,-83,-22,-94,-92,-40,-99,-8,-99,-97,-88,-97,85,-86,-54,-94,-97,-91,-96,-84,-86,-98,-82,-97,-99,-98,-12,-95,1,-92,-80,-45,-99,-96,-98,38,-91,-92,-95,-81,-89,-87,-99,-90,-49,-86,-15,-95,-96,-91,-85,-97,-99,-99,-98,-97,96,-38,-73,-99,-98,-98,-23,-99,-87,-59,-96,-78,-99,-98,-66,-88,-99,-89,-98,-98,-82,-99,-38,-88,-99,-84,-29,-94,-99,-86,-82,-97,-91,-98,-99,-65,-55,-44,-99,-95,6,-93,-87,-85,-97,-98,-98,-95,-89,-25,-90,-98,-96,-83,-75,-97,-94,-98,82,-94,-83,-87,61,-80,-88,-98,-71,-90,-98,-95,-99,-97,-44,-99,9,-99,-88,-94,-99,-99,-93,-90,-99,-99,-99,-60,-87,-98,-87,-89,-33,-99,-45,-88,-99,-88,-95,-7,-18,-93,-96,-74,-80,-99,-69,-18,75,54,-39,-84,-81,-65,29,-98,-93,-92,53,-57,23,19,-75,-99,-96,-76,-96,7,-95,-97,-69,12,-97,-96,-62,-98,-89,37,8,-99,-63,-99,-98,-91,-99,-99,44,-16,-25,2,-93,54,-99,-93,94,0,-96,-80,-51,-9,-98,-57,-95,-99,-98,-84,-71,47,-94,-99,-72,-99,-79,-42,-97,-99,-94,-87,-94,-84,4,-98,-87,-98,-52,-97,-41,-99,-91,-86,-94,-97,-90,-95,-89,-88,-99,-86,-99,-98,-98,-72,-98,-41,-94,-66,-94,-83,-64,-87,-61,-98,-98,-64,-99,-99,41,-99,-36,-82,-98,-83,-95,28,-98,-99,-88,-96,-16,30,-99,-93,-48,-94,-88,-26,-84,-96,-75,-78,-98,-98,98,-96,-94,-68,-90,16,-92,-72,-42,-75,-98,-95,-47,-98,-67,-60,-44,-76,-97,-69,-78,-68,-81,25,10,-83,-84,2,-94,97,-99,-35,-13,-99,-79,-77,-65,-97,45,-99,-52,-72,5,-97,-69,-71,-64,-73,-97,-46,-95,-60,-97,-94,-16,-97,-97,-71,-37,-97,-6,14,-87,-97,-53,-88,20,-30,-99,-84,-99,-82,-72,-97,-95,-62,-96,-99,-99,-88,-96,-91,-98,-91,-99,-42,16,-98,-99,-32,-96,-59,-97,-94,-82,-98,-70,-98,-99,-95,-98,-96,61,-43,-96,-52,-92,-99,-70,-29,-94,-96,-97,-52,-87,-99,-45,-95,-58,-95,-97,-55,-93,-88,-75,-95,-81,-99,40,68,-19,64,-97,1,-12,-95,-91,-85,-99,-97,-91,-98,15,-17,-83,-69,-94,-94,-97,-51,-57,-95,-75,-95,-83,-98,-66,-70,-99,-99,-94,-4,-63,-39,-98,-94,-97,-71,-96,-99,-99,-98,14,-97,95,-97,-81,-65,51,-49,-86,-31,23,94,-99,-98,-7,-77,-98,-73,-96,-47,-90,-84,71,-79,-95,-14,-73,-35,-99,-99,-85,-98,-94,-34,-58,-71,-73,-53,-19,-89,3,98,-98,-95,32,-92,-94,-8,-99,-87,-55,-89,-99,-60,-92,-12,-13,-43,-66,53,-99,-50,-85,-87,-77,-40,-98,-78,-98,-95,-94,91,-98,-64,-5,-99,-95,-95,-55,-78,-88,-94,89,-97,-92,-99,-98,-18,-98,-60,-98,-23,-86,-98,-99,-97,-39,-84,-99,-99,-96,87,-94,42,-77,-94,-81,94,-99,98,-92,-79,-95,-96,-99,-97,-34,-99,-99,39,-57,-97,-88,-91,-98,-66,-66,-37,-90,-53,-89,-97,-97,15,67,19,-95,-97,-97,-92,-71,-83,-43,-85,-14,-36,-76,-82,-96,-75,-82,-96,39,-98,-85,-99,-98,-93,-73,42,-17,-95,-38,-96,-71,-27,35,-37,14,-99,-79,-77,-86,-3,-86,-99,-61,-95,-79,-99,-99,-98,-48,-65,-83,-99,-94,7,-93,53,-70,-43,-87,-43,-99,-94,-68,-97,21,-97,-95,-93,-90,-28,-77,-61,-84,-98,-99,-96,-98,-99,-79,-23,-98,-79,-99,-63,-67,-25,-97,87,-89,-88,-99,-75,-92,-99,-95,-39,-98,-90,74,-95,-18,-90,-99,-51,-27,-83,-6,-99,-99,-53,-97,-98,-64,-77,-95,-97,-99,31,-86,42,-92,-78,-98,-98,48,-99,-94,31,-66,-99,-98,-51,8,-93,-78,-98,-61,-73,84,-96,-93,-98,70,-41,-98,-99,62,-93,-64,-99,-90,-98,-98,-93,-99,-78,-77,-82,-99,-22,-1,-86,-69,-43,-97,-71,-99,-88,-94,-88,-64,43,28,-97,27,-89,-98,-49,-98,-64,-85,-82,-93,-93,-99,-85,-99,-99,-86,79,2,-83,-87,-92,-86,12,-86,-95,-57,-98,-88,-98,96,-72,-75,-94,-99,-95,-96,-95,-93,-93,-97,-99,-99,-99,-97,-99,-99,-96,-87,-35,-99,-92,-99,-95,-96,-95,-95,-63,-75,-97,-93,-98,-98,-99,-21,-46,-94,-76,31,-94,-99,-96,-42,-13,-39,-72,-93,-79,27,-95,-26,-96,-89,-57,-43,-23,-93,-88,-98,-77,-54,-83,-99,-82,-94,-85,-55,-94,-97,-98,-95,-98,-28,58,-99,-9,-87,-99,-86,-77,-36,-71,-98,-90,-90,-72,-49,-69,-71,34,-34,-98,-98,-81,-18,-85,-91,-99,10,-94,-99,-53,-99,-83,-98,-98,-18,-72,-97,-53,-99,-96,-88,-98,-99,27,10,-94,-91,-97,-97,-94,28,-81,21,-95,69,-99,-95,-11,-97,74,-4,-99,-90,48,-60,-77,-99,-99,-67,-64,-87,-96,-94,19,-99,-90,-97,-89,-98,-93,-2,17,-12,-95,-97,-66,-57,-90,-90,-99,-98,-93,-60,-83,-98,-6,-97,-41}
{92,99,99,73,92,99,91,34,-49,92,92,58,94,92,-34,44,65,74,-91,63,86,-17,98,97,5,-14,35,-34,71,93,97,97,91,35,84,99,16,95,77,83,95,68,80,25,95,98,94,-76,80,-20,-45,88,89,30,99,98,99,92,98,85,99,99,22,99,98,85,97,95,97,92,96,-72,98,78,79,65,-3,62,94,87,94,-2,99,99,99,-20,-57,95,39,98,81,99,99,98,95,93,99,83,98,52,56,84,98,85,98,86,96,43,99,-46,77,85,94,80,87,25,92,-21,99,88,68,74,93,99,65,42,99,78,97,29,99,-66,28,13,94,-54,55,98,95,29,-99,60,78,99,90,31,88,82,0,97,93,53,98,22,98,90,53,71,91,96,69,-3,76,95,97,-2,87,91,82,66,99,65,-68,9,97,67,93,48,62,77,98,98,43,95,96,63,98,64,99,-57,31,25,79,96,76,99,-71,98,84,61,94,89,69,82,-71,-17,47,59,95,-14,50,70,38,99,21,93,86,37,99,95,95,89,89,99,99,99,32,98,41,96,89,71,98,58,-52,94,95,66,29,89,11,98,-60,-46,99,-40,-80,97,34,95,95,99,97,29,99,99,95,96,-40,17,78,13,95,99,99,-34,55,93,75,95,10,14,46,95,91,28,97,98,97,76,99,97,99,99,97,97,22,12,89,86,87,24,83,98,80,87,98,53,-7,97,31,82,43,99,77,76,97,94,93,30,98,94,-52,-10,97,91,97,96,87,99,95,54,78,28,-81,64,71,31,98,-71,69,-38,54,98,53,-56,98,76,99,92,85,80,-84,96,94,88,-80,-64,74,99,98,99,6,-46,99,-29,8,99,55,93,87,99,99,90,55,65,95,-36,94,89,-72,14,99,75,99,94,-41,97,99,94,71,50,36,97,92,-84,98,79,95,86,18,99,97,86,89,97,83,88,-58,4,98,97,97,-40,-71,97,47,-86,96,91,-41,94,0,69,95,86,84,84,45,73,80,66,98,-88,97,15,-20,98,83,-32,92,44,97,88,18,98,-78,-40,-23,47,62,99,83,96,99,60,-19,99,-5,95,88,68,99,2,88,99,99,74,-60,44,99,-9,47,3,-96,96,-93,99,72,49,86,98,-11,91,99,-38,99,97,95,94,91,36,-67,73,85,42,97,92,-97,35,94,83,98,87,87,-47,99,94,28,11,99,45,-1,99,95,-83,-12,89,94,93,9,93,-10,63,99,62,98,77,94,24,96,96,63,64,81,99,-3,-12,61,96,93,98,83,-38,93,92,86,40,96,24,94,30,98,83,87,97,49,95,-11,80,70,97,87,43,94,-75,80,77,79,84,46,91,99,87,94,98,92,59,80,51,61,98,96,91,74,68,6,96,76,75,-2,82,94,61,71,-10,37,-51,9,49,83,67,41,77,-5,32,98,85,83,96,96,89,73,51,96,72,41,15,97,-42,91,-59,69,99,-59,-16,51,89,-30,96,7,99,99,90,99,95,71,26,77,-25,-56,71,99,98,17,15,65,80,99,93,-5,96,95,25,16,97,96,99,83,99,-24,87,18,27,95,10,88,97,81,85,56,34,98,20,77,29,74,98,92,23,-33,-85,-24,95,82,9,-54,79,47,74,80,99,99,30,-69,99,53,74,95,73,30,9,95,97,2,99,99,60,92,96,-94,97,0,98,99,90,96,96,83,92,-53,99,94,96,98,94,25,86,99,97,96,89,-8,59,38,96,97,80,93,99,80,88,89,99,98,7,98,52,13,89,85,30,89,65,99,19,51,79,-64,36,90,98,77,89,85,99,-57,94,95,38,96,98,78,48,65,97,94,71,98,8,99,44,41,7,-22,99,-26,94,-67,-4,-53,25,47,38,99,85,74,34,88,95,66,67,78,97,95,98,-9,98,80,73,96,99,99,74,99,99,96,82,48,-54,81,85,90,-7,96,71,81,96,80,44,97,97,96,94,-32,97,76,98,84,93,88,99,69,90,5,-30,99,-52,90,39,35,95,-81,22,72,98,87,-88,99,98,40,92,99,15,-16,99,77,93,98,24,97,-3,-46,-36,71,88,-5,76,62,99,99,99,92,-67,-34,83,-43,92,95,-14,99,92,92,62,71,99,96,97,56,97,80,95,98,97,58,99,95,48,99,87,-21,95,89,97,24,-50,99,83,-19,99,94,12,87,89,87,80,99,-55,99,51,76,36,47,77,76,87,91,-94,99,99,-14,93,95,-34,98,83,99,81,29,54,94,95,76,80,53,58,99,41,16,94,88,22,92,-17,90,29,85,54,-17,-17,59,83,57,91,87,81,92,99,90,86,-47,98,1,32,96,99,78,96,-60,43,99,78,45,56,99,98,99,99,-17,91,80,18,92,93,91,57,99,99,68,-62,54,98,64,87,94,98,99,99,-36,95,98,-60,99,-16,91,0,98,61,-16,88,-23,65,97,-11,90,89,63,99,31,24,99,79,98,96,80,69,99,99,99,95,42,98,96,98,27,98,99,95,-28,87,96,87,91,-19,98,94,61,94,86,95,34,45,58,98,90,64,90,55,39,60,98,47,74,96,79,89,91,99,99,93,99,38,96,93,10,70,98,98,64,55,97,93,98,87,29,99,-13,92,78,99,99,47,99,97,99,29,87,-2,41,95,98,94,93,47,83,99,98,60,97,77,51,63,64,99,99,99,-49,22,99,99,96,-60,-92,71,96,99,85,99,82,-14,83,98,77,-10,94,83,92,99,97,87,97,99,89,57,82,11,74,-2,-42,-99,93,96,89,26,94,97,83,69,89,62,96,28,90,91,36,98,-35,91,98,7,96,61,-5,43,90,78,99,99,96,57,98,-47,94,-16,68,84,93,97,97,-21,77,91,80,90,55,98,91,75,-26,97,71,86,49,99,99,93,98,63,26,-65,94,24,99,55,67,82,96,91,88,88,-17,39,87,-30,99,98,16,94,83,25,-73,97,98,97,94,80,99,87,96,87,99,37,96,98,97,65,60,94,99,57,54,-27,94,95,91,-46,98,-99,87,97,99,79,53,42,72,73,94,33,99,99,-54,92,99,98,99,93,-59,98,93,92,15,98,-10,92,98,95,91,51,-1,95,21,99,98,94,98,37,72,25,99,88,-50,-66,72,62,86,88,90,82,99,70,98,82,97,-12,82,99,95,99,76,61,99,94,-46,83,33,29,97,99,95,99,65,90,65,99,99,28,-23,99,83,86,98,39,95,84,96,29,82,73,36,65,39,97,99,97,77,88,95,30,33,97,99,62,95,65,98,99,98,-32,95,-66,69,-50,88,99,96,96,77,55,72,90,99,13,97,-31,71,96,98,-20,98,90,56,97,21,55,95,62,99,66,98,69,-17,74,69,75,99,76,74,80,97,98,94,98,98,99,46,-51,78,91,99,70,87,88,96,-55,-48,78,30,98,98,87,89,99,78,99,-1,69,99,-67,99,47,82,96,96,98,58,-5,98,63,94,12,43,93,98,-37,44,83,95,90,92,28,99,83,98,98,-62,97,97,94,98,79,92,-21,80,-25,88,-96,98,85,79,74,87,99,98,-38,-63,-99,90,99,-16,99,92,91,99,99,99,99,92,81,84,99,93,98,78,98,96,98,-43,99,83,59,81,86,95,94,-71,-20,33,98,75,64,-44,70,-16,95,-95,98,99,40,83,-29,98,98,96,77,-99,97,91,-33,33,31,91,87,-47,45,99,80,92,93,68,81,99,91,97,88,86,-65,67,78,99,42,30,81,-36,-94,97,59,68,94,82,27,95,78,40,-97,96,99,96,72,94,99,91,72,76,99,43,98,99,57,56,89,36,77,90,80,99,99,-51,57,88,96,99,93,94,81,63,85,92,95,-29,99,96,88,99,99,99,42,84,87,85,99,26,90,28,53,75,90,74,-55,97,62,43,77,45,89,99,98,80,30,98,32,79,97,99,73,99,76,80,47,72,83,68,-45,89,83,95,96,37,-54,97,-95,97,96,-74,93,70,-22,64,97,86,70,45,91,95,99,89,56,99,99,92,17,73,-11,98,94,-68,96,67,-82,91,98,9,98,90,59,50,99,48,91,-41,98,1,62,68,77,-71,91,95,96,99,97,97,51,99,98,23,97,49,97,96,83,11,-60,56,99,80,99,99,97,92,35,97,88,98,86,84,-27,66,88,86,94,98,94,58,31,86,-14,99,78,47,83,-67,99,90,93,-53,80,98,16,98,87,49,97,88,91,94,-21,-26,90,73,83,46,98,95,26,72,-64,96,91,-69,47,96,99,97,0,99,49,99,90,57,82,87,86,94,99,1,99,33,86,96,99,98,26,99,-73,-13,33,93,-65,98,95,99,98,-50,94,98,81,88,84,53,94,-99,-4,76,99,96,58,98,41,95,83,88,99,-67,-80,27,15,64,35,85,32,-9,32,89,99,-17,94,97,98,61,1,99,47,75,-1,-25,91,97,55,99,99,14,-44,99,97,65,97,99,97,99,85,63,91,51,70,98,21,93,5,92,5,55,99,-20,57,44,90,95,99,99,96,-75,-45,78,69,79,60,77,90,97,88,96,99,49,53,-73,99,-71,99,92,79,-30,88,98,88,96,98,94,98,-85,80,93,22,69,62,92,98,-74,81,42,53,-91,88,85,98,98,54,-92,95,99,92,17,96,64,52,39,77,87,93,96,98,94,24,30,-77,61,99,90,87,85,88,97,99,94,-15,94,-72,61,99,-59,68,7,93,82,96,95,90,86,91,99,91,99,74,92,90,26,60,36,44,-48,-12,99,85,86,94,99,94,97,-22,98,86,72,50,97,93,-79,98,89,99,87,99,97,93,90,-20,98,84,90,62,92,95,88,81,99,93,86,77,65,99,-60,60,62,94,88,95,76,98,1,88,99,98,78,88,95,97,50,66,91,99,-21,99,53,-11,98,99,85,66,91,94,68,82,99,19,99,98,99,80,91,84,97,94,99,97,-24,34,-31,74,-36,62,2,99,71,96,19,65,82,0,99,59,99,86,99,43,98,98,93,86,95,52,98,-2,68,83,77,-8,13,91,58,98,96,98,98,-50,91,97,99,96,99,99,96,96,93,97,99,93,71,4,-10,84,99,38,94,69,55,93,-37,96,99,21,-67,73,97,98,39,43,-49,57,35,87,64,99,82,13,96,98,96,96,74,92,98,-99,95,85,80,82,23,77,99,94,96,97,99,99,94,91,96,98,91,98,98,95,52,96,-68,-54,83,99,91,89,96,99,85,88,98,9,92,98,99,85,98,99,97,-31,70,99,68,90,51,90,73,95,80,98,-51,93,98,15,97,99,93,99,2,88,78,44,98,95,-77,6,25,83,98,29,96,95,99,1,97,79,-6,78,99,54,69,92,98,41,98,94,98,89,77,91,-75,68,97,73,97,-45,99,19,73,12,99,92,98,38,78,66,-43,73,83,71,79,15,95,-19,93,96,-32,99,60,-70,98,98,-7,-29,51,44,70,99,92,83,83,96,-94,89,68,90,97,96,66,79,88,97,46,2,79,95,94,79,60,32,63,-52,-74,87,96,92,99,-82,91,99,98,95,26,81,-39,99,13,98,98,90,91,75,94,87,97,75,81,99,-36,99,98,99,-9,36,93,91,98,70,64,62,99,99,-66,98,97,40,96,98,91,98,86,93,99,93,99,99,63,68,99,98,98,-63,98,-44,92,-47,56,98,98,86,97,79,99,-96,83,-23,79,99,93,99,73,98,9,34,-5,90,99,94,90,43,92,95,97,89,93,69,87,98,92,82,70,97,15,77,91,96,94,71,92,94,43,97,51,23,36,99,-90,99,86,92,99,84,30,43,99,87,93,91,80,-77,98,-15,5,-48,90,98,71,-79,99,98,99,-67,99,99,68,97,45,-6,94,92,22,92,90,95,99,33,43,91,98,92,84,93,87,99,87,99,91,81,90,99,97,99,56,60,77,50,4,51}
{98,95,88,96,97,-63,-19,92,-79,72,92,98,79,84,97,4,95,57,99,83,88,36,65,95,91,66,95,69,98,99,83,96,-13,92,98,98,97,93,53,92,87,99,91,79,99,71,97,80,98,-24,99,83,29,94,97,99,83,94,-27,98,20,81,99,94,83,-96,73,22,94,98,0,-6,98,95,29,40,99,3,99,21,98,-16,95,98,90,79,74,31,95,93,40,-86,98,55,95,99,70,97,50,99,99,98,-28,94,97,78,52,97,44,95,99,15,64,98,99,-85,-59,99,95,77,99,72,58,39,43,21,97,91,71,97,69,94,98,99,96,95,68,97,88,65,94,-65,92,64,99,69,77,5,96,96,42,13,-30,64,86,53,15,51,93,99,98,99,82,99,97,91,55,-6,95,71,82,86,93,50,88,87,90,85,30,98,16,45,90,94,28,97,62,83,93,77,87,98,20,56,41,96,88,58,-80,98,83,97,-93,95,-54,-92,99,-65,97,56,80,-99,99,99,98,77,96,51,85,76,-60,8,96,99,15,-39,99,-72,70,91,23,96,87,59,99,70,99,99,4,99,94,98,4,99,30,97,68,96,97,98,97,89,58,82,97,96,95,88,99,-87,96,99,97,46,87,92,98,98,93,93,90,99,98,99,-8,89,88,35,87,98,43,95,80,87,88,29,26,59,83,97,87,48,94,87,38,82,66,97,50,-90,83,97,82,46,96,94,86,80,99,90,99,-2,30,-14,90,23,96,73,55,90,76,89,80,-34,-5,85,81,-67,-69,85,-51,99,38,87,-36,70,-58,82,-70,36,95,95,99,78,94,93,99,81,99,-21,49,99,97,99,-31,89,99,45,-47,87,97,95,99,97,-83,98,77,98,91,-12,37,-59,7,88,42,98,87,39,-90,97,83,61,83,99,3,96,26,10,94,70,-1,-62,59,10,90,98,96,96,92,97,49,84,-46,95,69,78,91,95,97,48,-9,91,88,55,21,-45,98,26,99,79,95,19,94,-68,78,96,74,70,-86,-45,43,49,57,99,94,81,95,-34,20,98,-64,-66,99,18,98,98,40,66,92,41,99,-41,99,50,99,84,99,44,62,97,88,-14,41,-20,99,81,86,95,89,84,6,99,-61,46,87,95,-80,55,66,91,87,98,98,99,95,92,71,-94,91,87,-27,-90,64,99,93,-74,97,97,90,55,92,62,99,59,98,-36,97,87,83,47,30,99,-94,53,98,-42,-15,81,95,98,89,93,74,62,74,90,99,96,82,99,-10,96,-38,68,68,99,99,-30,69,96,54,-38,70,71,84,82,99,93,-68,-63,-55,-27,97,47,96,-57,98,96,95,94,63,97,51,-91,81,77,98,56,86,98,91,-18,97,-63,97,94,94,85,96,94,-40,-68,89,91,30,96,-75,-52,96,84,99,83,52,-37,59,17,5,39,93,89,85,78,93,98,98,77,29,75,97,68,1,99,91,93,10,81,72,97,5,98,99,95,49,73,68,93,96,96,99,99,94,87,72,53,25,51,97,-24,42,96,85,43,99,82,80,82,92,57,18,99,98,92,72,-97,56,25,99,97,-13,98,99,78,65,-4,46,77,-43,-92,83,20,39,86,82,93,99,78,87,67,98,93,-11,-24,94,96,60,96,97,-86,98,-39,93,-57,87,49,94,62,89,98,66,11,89,-12,98,97,97,-67,98,-86,99,95,41,44,78,-87,95,70,23,82,90,98,99,38,73,-79,-66,94,98,97,85,-22,76,99,99,96,65,54,0,96,99,95,99,87,99,68,98,92,99,93,72,78,81,98,-82,42,84,98,-65,98,92,78,43,28,96,93,97,99,98,88,94,98,77,96,-92,93,8,66,36,-27,-12,74,89,92,87,51,85,-72,98,47,78,75,90,88,99,95,62,21,66,44,-95,98,91,93,-68,98,96,-66,35,79,99,84,-18,-6,99,89,81,75,99,99,96,57,56,83,99,98,78,44,-51,-92,84,99,96,97,95,60,91,86,88,88,83,99,97,80,-33,38,-71,-75,77,99,92,97,-11,9,93,55,14,-55,86,99,93,75,99,-59,82,98,66,78,96,96,88,97,85,88,-87,-23,-6,40,94,72,98,65,99,99,97,80,90,99,94,92,78,95,47,-18,88,33,41,-18,86,70,77,99,33,32,98,97,97,91,57,97,99,89,99,98,20,19,99,56,91,76,91,91,92,92,59,97,95,99,94,99,55,70,32,74,99,98,87,-43,89,44,87,18,99,-88,99,57,95,94,31,55,58,99,99,98,87,29,80,98,42,8,73,96,76,64,-52,94,71,83,79,95,-39,95,31,-67,-63,76,92,87,76,92,64,-83,5,92,-15,95,99,81,94,90,94,96,86,-2,50,77,-53,60,99,-79,41,-50,67,89,94,56,20,97,98,96,-81,99,97,88,95,98,88,69,89,99,-41,58,99,92,94,83,99,69,99,97,75,77,38,87,-18,99,-1,14,99,97,70,89,66,45,50,65,96,99,88,25,45,99,70,-67,98,0,98,53,94,88,-86,99,76,-1,98,99,31,98,98,99,93,80,62,96,43,99,85,74,20,97,80,93,84,98,-50,71,97,56,-32,79,77,97,92,42,80,98,99,99,95,98,68,-36,95,99,-3,96,87,93,55,95,97,99,18,99,71,92,89,54,96,94,94,-97,99,99,41,96,87,45,98,66,89,56,55,-97,98,96,51,99,68,-44,98,88,32,99,95,93,99,98,98,97,99,-2,58,99,95,80,62,98,99,80,18,81,80,87,18,81,96,97,95,94,91,98,57,98,86,98,-61,95,75,99,99,-62,97,87,-91,92,76,97,58,98,97,2,45,-12,99,9,81,75,32,86,-34,4,96,93,94,97,95,-36,84,91,8,65,76,96,77,93,94,88,91,-94,93,10,37,74,87,98,88,27,-47,85,-40,-6,98,98,98,97,96,95,82,57,99,99,99,37,99,92,-80,52,61,97,91,99,69,20,73,92,86,-94,95,96,98,36,98,49,95,93,97,99,83,8,92,99,75,99,98,85,89,-59,98,-16,67,72,87,74,96,40,14,84,93,88,16,79,96,98,-27,99,69,29,98,99,93,48,-76,64,66,97,-89,95,95,90,98,99,54,94,99,95,28,99,96,97,96,91,89,98,73,99,97,68,93,85,71,99,80,85,95,14,67,41,92,94,98,95,94,36,77,90,18,99,88,89,95,87,64,99,32,85,6,60,-47,96,68,64,99,-52,98,53,-8,98,99,96,20,98,19,97,77,93,-17,79,85,26,69,97,17,82,96,-73,24,68,35,75,99,73,26,97,92,-32,84,80,99,48,97,95,99,90,95,96,-29,2,99,96,99,-12,96,97,81,96,96,96,97,95,98,99,97,-77,-23,99,17,5,98,40,96,99,0,93,90,97,64,-1,35,78,88,64,59,92,26,78,88,92,4,-65,98,-9,-41,-28,80,89,85,11,64,41,70,52,21,77,93,58,-23,98,90,68,81,99,-22,98,98,62,98,95,65,99,35,71,98,96,95,79,11,91,52,-82,71,73,9,0,86,80,97,64,46,94,1,74,98,37,99,82,16,75,99,93,95,85,86,93,98,96,28,93,61,99,88,-85,96,92,98,96,98,-34,93,94,95,10,99,76,99,-1,42,74,93,95,86,99,-3,65,96,-24,98,-40,56,92,97,96,-93,77,-4,93,59,73,74,97,96,97,99,99,96,-62,74,97,67,91,16,99,-36,99,48,-17,65,99,51,93,86,33,-4,-55,66,-65,98,55,91,97,57,60,23,94,-2,98,96,84,99,91,99,95,96,51,37,-4,-22,-14,95,97,1,49,99,94,89,97,99,98,48,97,98,91,28,97,38,90,83,92,78,27,43,26,97,-81,48,75,98,96,-72,90,40,60,94,88,94,93,87,98,-74,21,79,87,91,94,94,-66,93,82,72,98,97,93,11,58,67,23,97,64,98,1,89,83,10,94,99,48,96,61,41,59,89,97,75,99,86,76,29,99,99,-6,86,99,99,67,87,-19,-38,84,99,96,99,94,96,69,99,95,57,96,20,-87,97,57,99,85,28,-63,99,83,47,84,39,57,77,88,75,44,94,87,97,-40,32,97,53,88,82,93,99,68,80,97,91,93,-17,88,97,-94,92,28,70,82,96,88,99,46,-64,54,36,48,96,22,-33,98,90,84,69,99,84,97,96,98,-12,85,85,97,90,96,93,99,95,87,18,37,58,79,51,63,99,94,85,99,96,6,71,30,97,72,99,-23,-65,51,92,87,98,96,84,97,85,95,88,99,99,67,97,-40,96,26,-20,-13,-29,99,99,98,60,76,97,25,81,55,65,-23,84,36,98,32,-13,65,-32,59,57,-22,-13,61,94,97,-27,91,79,94,33,80,98,98,77,71,75,-46,97,99,34,60,97,97,71,98,97,98,93,62,79,99,75,49,95,99,19,96,95,30,75,-1,97,-46,19,-66,73,98,67,75,66,65,99,62,96,76,90,87,23,76,99,78,90,99,99,65,98,99,98,-6,-15,96,62,7,97,9,99,-71,24,99,-9,85,72,99,98,62,99,84,99,98,99,97,73,96,93,-71,-41,84,-33,87,-8,72,85,40,98,89,13,85,99,48,56,-70,-83,97,43,99,85,87,99,47,98,56,60,77,97,99,96,99,76,96,98,98,87,99,38,18,55,93,99,78,90,93,91,-61,52,59,88,99,-99,-3,88,99,54,79,95,87,36,27,90,99,94,89,96,8,86,73,48,98,83,99,76,93,-92,99,74,91,57,91,66,66,95,99,99,97,-10,65,54,50,77,37,97,99,79,38,98,99,99,92,0,96,98,96,-18,85,99,99,30,62,97,78,78,-54,99,98,18,91,90,72,99,93,84,83,-53,93,95,99,97,99,76,47,98,97,98,74,89,79,99,79,38,55,83,78,99,12,61,62,98,90,97,99,99,99,43,87,14,-20,98,98,48,97,3,59,65,8,79,75,66,96,99,92,91,99,96,-12,60,98,49,-53,78,58,7,95,99,5,54,-20,73,98,97,-9,95,93,99,43,99,98,-75,-30,96,78,95,94,67,33,97,-78,-28,78,98,99,-51,98,12,-35,-44,-17,97,99,99,98,79,99,74,87,76,99,27,17,96,52,15,89,97,97,53,87,99,70,89,98,57,93,95,72,41,99,-98,39,-5,98,73,75,33,31,73,57,94,95,-53,95,75,84,50,88,58,9,67,93,-83,85,46,39,98,84,79,99,20,-6,28,10,28,98,99,98,57,90,83,74,99,99,-33,35,90,99,99,-43,84,89,99,79,82,24,96,99,-50,90,79,55,77,64,49,-31,85,-62,87,-59,79,99,43,72,82,73,99,83,-57,95,94,99,44,95,99,98,-29,92,98,95,98,-51,93,66,99,98,-87,98,99,80,22,91,94,99,97,39,39,-10,79,59,60,89,89,19,76,67,88,22,84,-91,97,96,94,95,5,89,53,88,49,98,77,97,99,91,96,96,33,70,99,99,59,99,88,99,98,97,92,70,67,98,92,47,-75,96,96,95,87,91,87,97,58,61,44,99,99,84,61,79,97,76,-1,47,98,99,89,92,8,37,99,11,19,-59,88,99,99,95,99,97,91,90,-94,89,44,27,-19,71,98,83,98,-19,99,96,-74,99,-8,58,70,94,-22,71,97,15,97,94,89,96,-80,99,68,91,30,99,-11,98,-75,97,99,-52,44,92,56,84,-64,95,99,88,15,94,93,99,94,99,51,99,85,99,65,74,-40,90,98,-58,96,82,99,68,35,93,87,97,-92,97,86,99,98,95,94,91,95,97,94,21,64,92,-66,22,-65,90,96,-87,-81,54,24,86,-5,72,-27,71,86,74,98,99,99,83,79,74,90,99,60,96,94,85,61,87,-27,23,83,-37,89,-29,54,98,89,-54,92,81,99,99}
{100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100}
Returns: 5.71059143065E10
{-48,-92,-92,-44,-61,-99,-85,-67,10,25,-75,-97,-99,-97,-90,-98,-98,-16,-97,-67,31,-13,-94,-87,6,-70,55,44,-90,-99,-41,83,38,-97,-49,-99,-97,97,-93,99,-79,-51,-95,-98,-99,80,-97,-93,78,-62,-32,-87,-96,-99,-98,-98,-40,-50,-99,-96,-58,-90,-90,79,54,89,28,-94,-93,-75,-58,-97,-99,-93,38,-98,-85,-83,-99,-83,-84,-96,-92,-14,-35,-97,48,-55,-96,-5,-48,2,-64,-43,-88,-95,-90,-23,-80,-94,-89,-99,-99,-81,-61,-19,-18,-88,-74,-70,-94,-93,48,-75,-63,-44,-4,-69,-27,-97,-96,-91,-94,-84,-98,-97,1,-73,48,-83,54,7,-98,-86,-91,-91,-73,38,-93,-96,-96,-8,-39,-60,-71,-97,-97,-69,-97,-84,-70,-60,-71,-76,15,-96,-92,-85,-98,-82,4,-95,7,-92,-65,-97,-92,-80,-95,-99,-98,81,56,-71,-99,93,11,-57,-98,-10,-1,-85,-93,-94,-99,-76,-43,-56,-89,-90,21,12,-12,3,69,-96,-93,-95,-86,-99,66,-33,-84,-36,-97,-70,-92,-96,-50,-92,59,-92,-39,46,-83,-87,-98,-98,-26,-78,-95,2,-78,-98,-99,-69,-99,-96,-98,-98,-74,-92,-88,-85,-86,-98,64,-96,-84,-95,-98,-94,-85,-99,-83,-98,34,-89,-95,-89,-14,-68,-78,52,-77,-88,-91,-83,-99,99,-73,-53,-97,-87,-93,-93,-76,-97,-97,-86,-37,9,-95,-89,-80,-59,-50,-99,-72,-55,52,-17,-97,-31,-93,-89,-80,-98,48,-66,-82,-99,-99,-89,-99,-99,-96,-99,-97,-91,-98,-11,-37,-89,-87,-99,-97,-69,-40,-98,-95,-95,-65,-94,-39,-94,-94,-84,58,-77,-82,-89,-76,-98,31,-99,-98,-8,-92,9,-97,-73,-93,-37,-51,-99,-77,-77,-24,-67,12,-75,-61,-63,-89,-98,-99,-64,-99,-78,-27,-99,-94,99,-60,-97,-77,-99,-76,-98,-95,-76,-79,-97,-99,-97,-20,-79,-78,-92,88,-10,-86,-94,-97,-92,-99,-92,-91,-99,21,-88,-2,-98,-86,-78,-62,-69,-98,-99,-98,-99,-98,-99,-88,-71,-91,-96,23,-43,-47,-98,-99,-99,-56,-99,-97,-81,17,-99,-97,0,-97,47,-16,-98,-99,-76,-54,-78,-56,-90,-99,-95,22,-36,-77,-99,-59,-85,-90,-97,-94,-97,-82,-98,-99,1,83,-99,-77,-96,-97,-65,-97,-97,84,-9,-88,-81,-88,-85,-74,-92,-97,-27,19,-35,-70,-68,-95,56,-60,-99,-84,-92,-98,-97,-2,-93,-94,-83,-75,-99,49,-99,-30,-98,28,-73,-3,-89,-76,-87,-95,-87,-95,-96,-52,-22,-99,-98,-59,-15,-98,-95,-91,-42,-67,-93,16,-97,-90,30,-88,-46,-99,-84,-92,-98,-68,-91,48,-93,-91,-13,-98,-86,-96,-97,-96,-57,-96,-99,-87,-93,-98,-16,-83,-99,-90,0,-82,-84,-63,78,-86,-95,-99,-96,-40,-61,47,-54,79,-97,61,-99,-54,-4,-85,-30,-99,-99,-80,-42,-99,-30,-99,-91,-89,65,43,35,-94,-15,89,-75,-21,-91,-97,-8,-99,-99,-29,-52,-99,-99,-99,-99,54,-99,-93,-78,-13,67,-99,-99,-96,-71,40,-93,-69,98,-79,-92,69,-97,-95,-81,-88,-99,-88,-63,-93,-99,-94,60,-79,23,99,-93,-99,-95,-81,-98,-95,-86,-99,-99,-93,-96,-65,-7,-68,-95,-29,-24,-68,-64,-94,-94,32,-96,-97,-20,92,-52,-2,35,-99,-99,-99,-99,-87,-56,-95,-80,-93,-34,-89,-79,-95,-17,-99,-99,-89,85,-88,-67,-66,-72,-74,-89,-48,-96,-71,-98,-81,-99,-99,-98,-99,-90,-92,-91,-37,-94,-98,-99,-95,-32,38,-99,-97,-99,-98,0,-99,-90,-93,39,-99,42,-79,-17,-77,-87,-28,-58,-99,-99,-67,-73,-59,-74,-58,-94,-95,-11,-70,-85,-93,-98,-97,-89,-99,-31,-98,93,-68,-98,-98,11,-99,17,-97,-87,-94,-93,-49,-97,-96,-40,-96,-13,-56,-90,-98,-86,-23,-99,-63,-99,-47,-82,-98,-80,-51,-90,39,-43,-97,-32,-92,-98,-86,-62,14,-84,-67,43,-13,-99,-98,-97,-95,-99,-69,-87,-84,-97,-95,-99,-65,-87,-91,-72,-72,-94,-99,-50,-14,-60,-90,95,-17,-1,-86,29,-99,-96,-85,21,-84,-98,-99,7,-86,88,-66,-14,-47,-97,-97,-88,-96,-93,-68,-98,-18,-60,-55,26,-85,-99,-99,-96,-99,-90,-90,-83,-74,-53,-95,38,-98,-62,-95,-87,-97,-97,-6,-96,-84,22,-99,5,-97,-85,-84,-76,-25,-86,-91,8,-99,-5,21,-88,-85,-99,-95,39,-53,-95,-99,-98,-98,-95,-97,-10,-90,-79,-50,-88,-78,-59,-78,-81,-87,-98,-53,-91,-97,-47,-94,-2,-55,-46,8,-3,-98,-98,39,-96,-99,-33,-78,-5,-88,-97,-99,-99,-29,-99,-99,-40,-91,-51,-96,-86,-73,-71,-67,-93,-86,-99,-99,-98,-99,-68,-87,-97,-98,-99,-82,-98,-97,-93,-63,-55,-98,-97,-86,-38,-16,-82,-72,-20,-95,-46,-98,-70,-93,68,-44,-97,-17,-87,-91,-98,-94,-97,-92,-93,-86,-99,-76,-80,-80,-97,-70,-12,-93,34,-98,-96,-79,-87,56,-32,-85,-96,-95,-94,-79,-98,-99,-74,85,-96,-77,-26,-70,7,-94,20,-80,-99,-42,-66,-98,-95,-65,-92,-92,-76,-96,-99,-93,-99,-93,-71,-72,-99,-74,-98,-96,-91,-99,-98,50,-96,-40,25,-98,-53,-95,-99,-91,-82,-97,-83,-99,86,-96,-92,-98,-11,-90,40,78,0,95,-60,-86,-87,-88,-44,-99,-47,-61,-99,76,-93,98,-99,23,-99,-30,56,-99,-11,-95,-77,40,-85,-99,-71,-31,-50,-99,-1,-53,-92,-56,-81,-99,-99,-97,-96,-7,-52,-26,-97,8,-97,-48,46,-39,-97,-75,-98,-97,-41,-98,-86,-85,-93,-94,-99,-64,-98,9,-96,-96,-36,-91,-99,-87,29,-94,-69,-91,-73,-74,94,-81,-99,-67,98,-77,10,-70,-97,-29,-95,-35,-97,-51,33,42,-97,-91,-86,52,-98,-97,-79,-79,-16,18,-69,-96,-83,-6,-63,-80,-90,-49,-95,-84,-72,-73,-38,-99,-46,-94,-25,-85,-80,-98,-91,-99,-99,-92,-96,-84,-99,-89,-91,8,-85,-16,-28,-94,-98,-22,-60,-91,-95,-99,-79,-86,-66,-97,-39,-68,-75,-98,-99,-93,-85,-97,-98,-96,-99,-95,-85,-27,11,-99,-99,-92,51,-95,-13,-53,-74,-98,-14,-78,-87,-95,-62,-77,-87,-42,-78,-83,-95,-99,-7,30,-95,-98,-99,-90,-99,-98,10,-99,-99,-97,-58,-51,-99,-99,-96,-99,-94,-66,-54,-71,-20,-99,-76,-92,-95,12,-71,75,-39,-98,-99,-95,-77,-66,19,13,-78,-90,-93,76,-99,-3,-97,-78,-97,-99,-99,-98,-13,-87,-58,-97,-91,-99,-75,-99,-26,-6,-98,-84,-95,-56,-96,-74,-84,-43,60,-17,-56,-95,-98,-97,45,-39,-94,-85,-99,5,-87,-38,-51,-98,-88,-99,59,59,-36,-66,-34,-96,-56,-88,-47,32,-91,-96,-69,-77,-70,-99,-48,-85,-45,-88,-98,7,-96,25,-65,-97,-78,-51,36,-76,-9,-92,-95,23,-44,-95,-94,-99,-80,-90,77,-98,64,-99,-71,-32,-98,-98,-98,-98,-99,-97,-93,-23,-98,-95,-80,-27,-38,-80,-98,-85,4,-93,-84,-89,-66,-94,-98,-87,-24,-97,-77,59,-99,-12,-90,40,-97,-99,-92,60,-83,-86,29,-48,-80,14,-95,-55,-99,-99,-75,46,-99,99,8,-97,-94,92,79,-4,-92,-99,16,-99,-98,-98,-74,-96,11,-95,-98,-90,-94,-99,-94,-92,-99,-97,-90,-92,-25,-99,-98,-91,-98,-97,-94,63,26,-51,-88,72,-88,-18,-99,-27,48,-53,96,-36,-19,-98,-99,-15,-99,-32,-44,-91,-65,-97,-98,-89,-90,21,-95,-69,-63,-98,-98,-43,-95,-42,-95,-98,-99,27,-64,-68,-99,73,-86,-93,-43,-33,-96,-25,-75,-98,-91,1,-89,-72,-81,62,-37,-73,39,-93,-98,19,-18,-63,-90,-57,-93,-91,-99,14,-95,-99,-82,-93,-96,-93,-98,-90,-83,-55,-98,-99,-42,-99,-73,-97,-49,-31,-89,-65,-27,-88,-93,56,-98,-89,-94,-74,-93,54,-99,-37,-76,-73,-84,-64,-99,-94,-99,-11,-65,48,-61,-97,-85,-52,73,-29,-71,-86,-86,2,-41,-93,-99,-66,-46,-82,-72,-98,-59,-58,-99,-92,-91,-96,-72,-95,-12,81,-87,92,-67,-78,-93,-96,-98,-99,89,-99,-65,-98,-96,-80,-12,-67,-71,-92,-82,-91,-97,-97,-95,-91,-36,75,-95,-99,-86,-93,-80,-91,-50,-99,37,-93,-50,-87,-85,-76,-99,-98,45,-63,-71,-99,-33,19,-98,-99,-30,-99,-92,-90,-96,-46,50,-99,-98,-33,-78,-86,-89,-46,-99,-92,-13,-43,-97,-92,8,-44,-99,-79,-88,-98,-94,-98,-20,-11,-9,-97,-97,-18,2,-92,-99,-50,-99,-28,-92,-95,-98,-96,-97,-57,-47,-88,-85,-91,-96,-94,81,-99,95,-71,3,-70,-41,-94,-75,-48,-86,-74,-96,-95,-92,-64,-92,-89,-39,80,-42,-52,-79,-35,-39,-56,-99,-99,-38,-30,-98,-94,-86,-90,-99,-99,-99,-98,-56,-56,-88,96,-93,-99,-99,-25,-88,-88,-67,-99,35,95,-98,-99,36,-96,-99,-99,-99,-82,-86,-99,-82,-98,-45,-66,17,-95,-67,69,-70,-87,56,96,-96,-54,-19,-55,-97,-97,-64,-75,55,-76,-98,-5,-65,-96,-99,-73,-25,-28,-99,-92,1,-44,-75,-96,-98,-98,-49,-53,-99,-63,-88,-96,-35,87,-85,-93,-48,-53,-79,-98,-96,-99,-98,-30,-34,-99,-94,-98,-26,66,-97,-99,-92,-61,-68,-63,-99,-81,90,-79,-96,93,-94,18,44,-81,20,-99,-88,-98,-85,-43,-80,-83,-97,-85,-99,-7,-66,10,-5,37,-99,-96,-96,-97,-72,-96,-51,-96,-97,22,-99,-99,-99,-99,60,-31,-94,-96,94,-39,-48,-14,-86,-51,26,-92,-94,17,-74,-98,-74,-93,-99,-95,-51,-97,-99,-98,-99,-76,-65,-73,-99,-76,-27,-35,-94,-97,-73,-96,57,-86,14,-98,-85,-37,-16,-88,35,-93,54,-89,-96,58,-99,-98,6,-65,-92,42,-77,-78,-99,-76,-97,-74,60,-85,-96,-84,-98,59,-95,78,-84,-92,-99,-93,-77,-91,89,-43,7,-45,-82,-53,-68,-90,-91,-97,-27,-54,30,17,-95,-92,-98,-48,-93,74,88,-95,-95,-74,-12,-41,58,-63,-66,-98,-99,40,-98,-96,-61,-45,-43,3,-88,-70,-18,49,28,-88,69,-23,-81,-96,-95,-44,-83,-99,-39,-41,-98,-87,-40,-8,-96,-65,-98,-95,-73,-95,-99,-8,-77,-99,-92,-69,-97,-96,-71,-71,-93,-80,-99,-86,48,-96,-98,8,40,-68,77,-99,-97,-98,-14,-94,-61,-68,-99,-68,-95,-95,-99,40,2,-80,-55,-79,-95,84,-99,-99,-10,-81,-40,-86,-99,19,-87,-88,42,-45,-96,-98,-43,-92,-88,-88,-99,-99,-73,-90,-94,-97,-98,81,-98,-89,-41,16,-67,-2,10,-93,-99,-96,-99,-84,-61,-78,64,54,-57,-17,-93,97,-99,-99,-95,-6,-75,-9,-31,96,-80,-96,-86,36,-95,53,-85,-96,-66,-97,-87,-87,-94,-98,-49,-91,-96,-5,-96,53,-86,-88,-73,-56,-96,-76,-17,22,-98,-99,-96,-95,-45,-99,1,74,-32,-65,-95,-55,-87,-94,-97,-72,-96,-11,-31,-87,-90,-89,-98,-47,-99,-97,-96,-96,84,-95,-90,-73,-94,-94,-52,0,-87,-87,-94,-70,-96,-98,-79,-7,-79,16,-99,-99,-77,-48,-79,69,44,-11,18,50,-89,-57,-63,-96,-78,-94,-72,-82,-99,-35,-63,-15,86,-99,-88,-99,-33,-88,-37,-96,-91,94,-87,-95,-93,-91,-58,-35,-87,3,-24,-94,-99,-99,50,-99,-61,-72,-90,-99,-94,-90,-99,-90,-93,-52,-90,-78,-96,-89,-79,-93,-79,-99,-96,-73,-85,-56,-99,-76,-87,-34,-93,-97,-71,-80,-67,48,-65,-99,-97,-75,-77,-95,23,-81,-98,-99,-60,-92,-79,-60,-96,-99,86,16,-97,-88,-96,-94,-98,-99,-98,-90,-97,-83,-99,-95,-99,27,-75,-92,-75,24,-80,-79,32,-60,-35,-77,-53,-43,-87,-97,-80,-92,-92,-95,-69,-97,-91,-47,-89,-97,-13,-50,-71,1,-99,-79,-98,-93,-91,-90,-59,-88,-98,9,44,-99,-2,-97,-99,-97,-98,-99,-93,-90,-96,-99,-99,-59,-99,-99,-99,-82,-81,-93,-97,-98,-51,-99,-66,-96,-96,-75,-78,-99,-99,-98,-98,32,-99,-84,-83,-98,-69,-73,-98,-91,-70,-97,-77,71,-71,-87,-98,-71,28,-35,-40,-11,-85,-67,-92,-95,-97,45,-99,-99,21,-69,-56,-94,-99,-99,47,-83,-14,-94,-96,-77,-85,-97,12,-84,-11,7,-50,-68,-99,-93,-91,-86,-99,-99,-68,-46,-99,-60,-90,-86,-77,-53,-48,-99,-94,-67,-67,-99,-82,-58,-67,-96,-94,11,-98,-74,-97,-87,-91,-17,-94,69,-99,-97,-85,-99,-95,62,-70,-99,-98,-86,-52,-56,-95,-92,-96,-99,-28,-94,-6,-41,10,-85,-37,-13,-56,-15,67,-99,-98,-98,-95,-83,-98,-3,-19,38,-73,-62,41,-87,1,-99,-86,-92,50,-99,-76,-39,-87,-82,-41,-98,-97,-79,-51,-96,-96,-99,-85,-98,-99,-83,-99,-98,-93,-24,-73,-99,-38,-95,-99,-93,-95,-99,-52,72,-98,-93,80,-99,-95,-99,-99,-90,-98,-99,-75,-26,-98,-96,-98,-70,-99,-21,-95,-97,29}
{-36,-93,-53,-98,-92,-30,-99,-95,-91,-98,-97,-95,-90,14,-98,-97,-12,-95,-92,-99,-99,-8,-82,-99,-90,63,-77,-99,-83,-97,97,41,-96,-96,-97,-70,-72,-98,-40,-99,7,33,-99,63,-98,-88,-87,-88,-98,-88,74,-99,-90,-61,-77,-86,-74,58,-96,-81,-81,-73,-99,-98,-84,-99,-91,-99,-52,-84,29,-97,-98,-79,3,61,-82,-50,-77,-99,-52,-96,-97,-88,37,-98,-66,-80,-99,-78,-82,-98,-99,-92,-38,-27,-48,-94,-99,-99,10,-98,-99,-97,-89,28,-99,-97,-72,-99,-99,-6,-99,-98,-89,15,-70,-86,97,-59,-96,-94,-96,-92,-99,-40,-4,-42,-89,-96,56,-97,-95,-93,-96,58,-91,-94,-80,-66,-99,-24,-99,-99,66,-88,27,-98,-82,-93,-87,-82,-95,-44,-95,-88,-93,-77,-93,64,-97,99,15,-90,-99,-74,-68,-46,-27,-83,-32,-98,-95,-89,95,-66,-97,-64,-94,-96,-28,58,-99,-45,-83,-86,-91,31,-99,30,-97,-99,-85,-56,-98,-97,-99,-46,-69,-96,27,-99,-99,-99,-96,-73,-99,39,-63,-99,-98,-94,-85,-34,-78,-99,-95,-12,-70,-81,-9,-19,-99,-93,29,-99,46,-15,-69,-30,-97,96,82,-83,-91,-26,-81,-74,-92,70,-22,-39,-90,-92,-69,-99,-97,-51,-98,-94,2,0,-24,-82,-2,-99,-84,-90,-84,-99,-54,-26,-93,-97,62,54,-96,-40,-65,-98,1,-88,-31,-89,-41,-41,-97,-96,-98,75,-97,-24,-72,-92,-68,-51,-49,-97,-71,4,-99,29,94,-99,47,-90,-88,-98,-92,-92,84,-97,34,-28,-41,-98,-64,-97,6,-55,-55,66,-62,-94,-98,-78,-84,-99,-96,-96,-68,33,-93,-64,-7,-98,-74,-83,-99,-57,-44,-79,-98,-89,-98,-98,-91,-86,-28,-99,-95,-42,-99,-2,-42,48,-73,-55,-99,-97,-97,-99,-96,43,66,-98,-51,-97,-97,-56,-73,16,-88,-95,58,-89,-60,-93,-33,40,-99,-80,-78,-99,68,-98,-39,-99,23,-98,-67,-62,-50,-73,-11,-81,-87,-63,-61,-91,-96,-89,-97,-99,77,-82,-53,-86,-95,-96,-96,-82,-95,-46,64,27,-94,-92,-87,-90,-98,-99,15,-97,-25,-99,-98,-88,-82,-98,-97,-99,-62,-65,-99,-99,-88,-94,58,-76,-96,-98,33,-80,-32,-97,-71,-95,-97,-51,-46,-69,-99,-49,-92,-71,-99,-54,-98,-94,-98,45,-95,-99,6,-97,-88,-95,-77,-97,-90,-75,-18,-21,-99,59,-93,-83,-95,-31,-53,-94,-95,-99,-14,-99,-22,-97,-43,-29,-92,-98,-92,-87,-6,-14,-99,-70,20,-83,-94,-1,89,-51,-70,-98,12,-96,-54,-95,-98,-71,-65,-70,36,82,-95,-94,-99,-97,-34,-76,-97,-78,-98,-88,-99,-6,-86,-99,-98,-96,-96,-16,-96,-97,-29,39,-18,-45,-20,-95,64,-82,-99,-17,-36,-99,-97,-96,17,88,-93,18,-83,-35,-94,-99,-76,51,-7,-84,-79,-95,44,12,88,-94,-10,6,-83,-44,-61,-98,-45,-94,-99,-11,-99,-14,-79,-94,-82,-90,-53,-68,-66,-91,-94,-55,-98,-65,-69,-93,-94,-75,-80,-96,-97,-81,-99,28,-77,-96,-93,-88,-95,-99,-97,-93,-70,-98,-27,35,13,-98,23,13,-75,-15,-87,-87,-96,75,-22,-99,-25,-97,-99,-95,-97,-99,-98,-59,-97,52,-97,-78,-98,40,-11,-95,-78,-36,-90,-82,-76,-94,-98,-5,-92,-75,90,-73,-64,-99,-98,3,-94,-51,-1,-92,84,-97,-99,-90,-88,42,-94,38,69,-91,-90,-98,-99,-98,-20,-90,-56,-99,-94,-89,-26,-97,-99,-74,-99,-78,-96,-68,-97,-70,-99,-99,-59,-99,-99,12,-96,-84,-89,-98,-78,-84,-99,-97,-93,-41,-97,-97,-93,97,-71,12,-97,-98,-93,-14,-93,80,-96,-40,-99,-95,-96,-97,99,32,-39,-65,-97,-70,-55,-95,-98,-99,-38,-97,-94,-71,-97,71,-17,-98,-88,-80,-33,42,-89,-95,4,-98,-94,-99,-24,96,-97,-98,-77,-97,-84,-34,-96,-61,-99,-97,-7,-70,-99,-99,-21,-28,-99,-92,-48,-99,-14,-96,85,6,-22,5,28,-94,-98,39,-98,-99,-86,90,-98,-99,-90,-90,-54,-56,8,-97,-98,-56,-98,-95,-8,-94,-75,-90,-68,-8,-66,-67,-99,-72,23,-94,-64,-94,-49,-97,-99,-81,-96,-99,-76,-96,17,-99,-77,-50,-95,-99,-98,-30,-83,48,-95,-74,-91,60,-41,-96,-79,-64,-97,-97,-82,-97,-96,-26,-96,98,-99,-98,-11,-97,-98,-88,-45,-93,-98,-93,-64,-96,-77,-29,-88,-87,-10,-86,-99,-51,62,-99,-11,-47,-82,-93,-80,-85,-99,34,-63,-97,-9,-99,-83,-75,-91,-61,-99,-86,-55,-44,-83,-97,-93,-98,-67,-87,-33,-96,-93,-36,-99,-91,-73,-35,-86,-18,-71,-73,-98,-95,26,-79,-34,-97,93,-97,-27,72,-81,-99,-69,-85,-97,-97,-99,-81,-99,44,-55,-89,32,-29,-96,97,-93,-71,-63,-97,-92,10,-90,-97,-9,7,-97,-96,-80,-95,-99,-94,-93,-9,-60,-96,-81,-96,-96,-95,-84,-97,45,39,-94,62,-98,-51,-68,-49,-69,-99,-2,-99,-90,-21,-96,-92,-90,-26,98,-40,-90,-99,-18,-91,-83,-97,5,-97,-95,9,-98,-96,-92,-89,-98,2,-95,-77,91,-99,-99,-99,-99,37,-49,48,-97,-65,-95,-13,-94,-84,-93,-98,-98,-96,-83,53,-96,-92,-97,-55,-93,-59,-46,-95,-99,9,-99,-71,-98,-98,-92,-99,-64,0,-82,29,-89,-90,36,37,-98,-64,-90,-39,-78,-95,-14,-80,-99,-99,-25,-99,-97,-68,-41,-97,-37,-80,-92,-92,-71,-47,-99,-49,-70,-67,-84,-48,-98,13,-79,-45,96,-89,-94,-73,-99,32,-75,-99,-69,-93,-95,-88,-91,-86,12,-76,-96,-89,-92,-92,-95,-96,-62,-27,-99,-95,-12,-87,-99,-99,-99,49,70,-53,-83,2,-41,-96,-73,-98,-95,32,-99,-98,-94,90,-99,-42,54,-99,-41,-99,-89,-37,-90,-81,-99,-25,-82,33,52,-13,-99,-99,-33,-87,-78,-61,14,18,-99,-75,-67,-59,-99,-99,-47,-80,-99,4,-99,-97,-97,-26,32,-98,-99,-95,-90,-97,-99,-92,-78,-92,-98,-99,40,10,-96,66,-98,-92,-90,6,99,-99,-7,-98,39,-99,-91,-56,11,-95,-99,-97,-71,-81,-50,-97,-97,86,-99,-99,-99,89,-98,-62,-99,-97,-72,-97,-99,-84,-98,-97,-98,-47,-89,-40,-98,-96,-88,17,-93,-88,88,-34,-95,26,-99,-99,-76,-89,-52,-99,-63,-99,-97,-97,-81,-88,-93,46,-96,-86,-59,-88,-94,-53,-98,-99,-85,-84,49,-95,-41,-99,-11,-45,-93,-99,-99,-51,-50,-32,-81,-69,-99,-99,-77,-52,1,-49,-88,-25,-99,-88,-37,-72,-60,98,-56,-65,-94,-78,-98,-50,-99,-81,-98,-99,-97,-71,-58,-79,-73,56,-86,-93,-67,-67,-61,-96,-97,-96,-98,-67,-94,-94,-99,-97,-92,-99,-99,63,-3,-89,-90,4,-75,-96,-62,3,-62,-11,-75,-98,-98,-99,-85,-13,84,-90,-99,-87,-93,-73,14,-96,-84,-11,-7,-60,-65,-99,-88,83,-95,-97,-81,-91,-66,-4,-34,25,-49,-34,-10,-97,-53,17,-66,-17,-99,18,-89,-97,-98,-25,51,-73,-99,-47,-99,-51,-52,-15,-91,-91,-47,-98,-55,-82,-97,-14,12,-85,-90,-83,-98,-99,-92,0,-89,98,-99,6,-78,24,-94,-97,7,-92,94,-89,-73,-90,80,-98,-97,-3,-33,8,-68,-78,-54,-99,-87,-75,-98,-97,-81,22,-97,25,-89,-48,-54,-70,-81,-86,-99,-96,-85,-73,-63,-48,-99,-96,-82,76,88,-95,31,-95,47,22,-99,-98,-46,-99,-98,-74,-80,-86,-98,15,-99,-92,-99,-99,-99,-95,-98,-43,-99,-69,-99,0,-98,-83,-99,-38,14,-99,-30,-97,-72,-98,-98,-96,-97,-95,-99,-87,-79,-89,-93,-98,-82,-77,-84,-99,-89,-66,-79,71,-91,-93,-44,-43,-99,-21,-85,-98,-98,-88,71,-88,-99,-76,-99,-99,85,-99,90,-33,-34,-98,-98,-92,-85,18,-97,-76,-92,-99,-41,-84,-99,-56,-99,-70,-60,-99,-56,-98,24,-84,-54,-96,-98,43,-82,-98,-69,-81,-21,-56,-61,-78,-92,-77,-94,-46,-89,-99,-89,-98,-82,-98,-87,-97,-98,-45,-99,-92,-73,3,-96,-98,-96,-11,-93,-99,-36,-97,-98,-43,-83,-99,-55,-75,-99,-89,-99,-79,-90,-98,-98,-99,-70,97,6,-97,-99,-90,-98,30,-98,-88,39,-98,-98,-96,-42,-93,-22,-98,-96,-99,-99,-99,-98,-92,-96,64,-80,-98,-92,74,-98,-99,-94,-76,-99,-31,53,-93,-98,25,-98,-92,-14,76,-6,-71,-79,-98,-98,-11,69,-2,5,99,-94,-91,-98,-99,-84,-93,13,-46,-32,-64,-83,88,-86,-92,-48,-98,-90,21,-52,-23,-99,-96,-34,-98,-92,-98,-96,-81,-97,-99,28,-63,-99,-99,-69,-99,-90,72,-98,-99,-32,-94,-57,-96,-42,-81,-97,-98,-93,-47,-75,-97,-97,-95,-94,-98,-83,-48,-94,-95,26,-98,-94,-64,-95,-97,-86,-83,-97,-32,-98,-67,-97,-96,-84,-12,-99,-53,-85,-97,-6,88,88,-88,-88,-77,-92,-83,-70,-15,-89,-43,-94,-73,-62,-99,47,-88,-20,-99,-96,-98,-97,-89,-55,-99,-87,-23,-93,-76,-98,-84,-55,-90,-86,63,-37,-99,-1,-99,-85,-87,-48,-99,-91,-98,-79,-99,-98,-98,-76,-98,9,-85,17,-21,-99,-47,-17,-79,-96,-83,-99,-81,-80,-98,-88,-99,-89,-87,-65,-44,-96,-85,-99,-95,-29,-90,-99,-36,-52,48,-75,-98,-42,-96,-12,-58,-50,-91,-50,-64,-56,-97,-19,-97,-29,-94,-93,-63,-85,-84,13,-94,-76,-92,-27,10,-90,-53,-97,-99,-32,-81,-86,-25,0,-99,-99,8,-99,-93,-43,-99,-99,-44,-92,-29,59,69,-62,-84,-98,66,-98,-96,-83,-84,2,-97,-93,-98,-82,-95,-68,-39,-97,-92,-88,-99,-57,-92,-82,-99,-85,-98,-31,-67,-99,-97,-98,-98,-57,82,-96,-85,-97,-65,-98,-83,-99,11,-54,1,-99,-74,-99,-69,-77,74,-83,-87,-87,-94,2,-95,-74,66,-46,-84,35,-79,-99,-94,86,-65,-41,-98,-99,-52,-61,-99,-80,-11,43,-33,1,-75,-93,-99,-97,-97,-98,27,-99,-54,-98,-95,-12,-80,-95,-76,-96,67,-57,46,-58,-98,-95,-81,-5,-94,-99,-69,12,3,-95,-97,27,-99,-53,-98,-80,-24,-61,75,-99,-42,-57,-92,-77,-93,-90,-21,-98,-87,79,-99,-88,19,-98,-99,-91,-99,-95,-4,-43,-93,-28,-96,-94,-89,-89,-99,-93,-99,-94,84,-77,-93,-96,-26,-80,-83,-99,81,-7,-81,-99,-97,-95,-93,-76,-96,28,-58,-89,-25,-81,-93,54,-29,-98,-99,-87,-99,-96,-90,-99,-83,-96,4,-88,-61,-63,-85,-75,-98,-71,-92,-97,-64,50,-73,-99,91,-60,-86,-51,-36,-26,-45,-98,-94,-85,-59,-41,-98,-72,-98,-90,-92,-98,27,-67,-91,-96,98,-98,-78,-90,8,85,-99,-98,-20,-97,-99,-85,-99,-31,-98,-99,-26,-92,-69,-98,-42,-4,-98,-62,68,-93,-67,-58,-44,-36,-98,-78,-99,-92,-95,83,-85,-97,-54,-55,-95,-81,-64,2,-96,-89,-79,-42,51,-77,-99,-98,-95,24,-74,48,-99,-93,-98,3,-48,-64,-56,-96,-91,12,-60,-98,-45,3,-19,-96,-17,22,35,-57,-6,-91,-91,26,-58,66,-89,14,-96,-31,-78,-44,-42,-93,74,-95,98,-85,-91,-75,-96,93,-52,-72,-82,-72,-20,-72,-40,-84,-90,-96,-98,-84,-89,-96,-99,-98,-93,-98,-77,-79,-69,-97,-79,-99,-75,64,-92,-81,-67,-92,56,-81,-40,-80,-99,-99,-97,-97,-99,-97,-40,-93,-99,84,-53,-94,-36,-30,-96,4,-87,-99,-7,-94,-82,-71,-1,-51,-18,-98,-97,-78,-97,-99,-87,-13,27,-33,-98,2,-99,86,-99,-76,28,-99,-34,-90,-90,-98,-99,-88,-96,99,-68,-95,-6,-94,-93,-70,-72,-3,-96,22,-76,-96,-99,-94,-99,-97,-63,-20,-54,-95,-90,-98,-97,-42,-99,41,-98,-93,-99,-99,-96,-34,-98,-98,-80,-96,-98,-99,-95,-98,-95,-39,42,-93,-45,-81,-10,-99,-99,46,79,-82,-70,-73,-91,-95,-47,-17,92,-91,-99,-10,-39,-94,-72,-60,-51,-98,-51,-99,-78,17,-93,-85,-94,-95,-93,-91,-95,-3,-87,-97,-80,-1,-98,-97,-96,-98,-96,-74,-90,4,-77,-99,-51,-85,-98,-81,-52,-95,13,-77,-87,-86,-6,-43,-92,-60,-84,-94,-79,-82,-43,-85,10,-32,-58,-96,-30,-62,63,-96,-98,-81,-89,96,-97,-99,1,-74,-38,-93,-90,-98,60,-99,-99,-98,-93,-95,-80,-54,50,-65,-57,-74,-97,14,-96,-85,-96,-99,-98,-73,99,-80,-49,-97,-93,85,-42,-79,-29,90,-67,-98,-87,98,-95,-93,48,-65,-97,-96,-87,-4,-99,-93,-99,-58,-91,-89,-72,-87,-98,-15,-98,-81,-43,-95,-61,-83,-75,2,-88,-98,-96,-74,-98,-89,-90,-99,-99,44,-96,-98,-10,35,-38,-94,-98,69,-26,-98,-99,-96,-28,-95,93,-97,-90,-75,-97,-95,-90,-42,-83,-96,-74,-67,-44,-69,-99,-79,-98,-99,-88,4,-97,-98,-99,-94,93,-99,71,-99,-99,-54,25,-62,-96,-98,10,-9,-92,-99,-63,-50,-93}
{-2,-3,36,91,-17,91,90,91,98,59,77,34,-15,98,70,98,69,96,-27,-22,19,72,98,75,70,97,98,-15,80,97,99,21,97,-35,99,98,98,46,93,93,99,81,-24,-95,96,95,99,99,37,96,78,16,91,99,99,78,98,68,97,41,82,98,-8,97,-40,98,86,99,54,98,83,-41,79,-99,84,79,96,-5,68,99,-29,98,82,99,84,90,79,98,31,7,28,-16,-48,96,-34,-2,88,87,97,98,97,87,35,92,99,96,90,88,99,93,98,98,88,65,83,28,-95,25,99,68,-67,87,89,72,-94,98,96,96,77,99,99,87,-86,-11,83,-28,99,98,97,98,82,89,96,95,83,23,98,91,96,-54,-10,92,87,99,89,59,93,91,28,94,90,76,98,99,98,99,75,99,95,89,64,97,99,73,30,72,51,87,8,57,62,35,77,94,12,99,99,93,67,98,99,98,98,92,98,85,-28,92,91,73,-96,74,80,-80,89,95,99,60,86,44,-31,86,83,92,97,93,69,98,27,-27,-13,0,87,85,-35,81,88,-24,99,58,89,99,96,49,17,61,84,93,-15,81,83,41,99,84,-65,97,85,99,89,-35,77,98,76,99,78,96,76,97,45,92,95,7,-25,92,75,27,3,33,94,84,96,-55,90,65,-27,84,72,95,94,2,50,73,96,90,-46,-57,45,90,89,93,78,-24,99,-22,72,94,95,99,99,92,97,93,2,49,54,-45,99,78,-32,96,98,99,98,97,99,-13,99,81,99,-37,78,73,14,99,-76,93,95,20,79,-43,-1,98,74,90,90,75,-82,-7,98,57,97,99,56,91,98,-22,-28,69,-13,61,93,99,59,91,87,87,79,-1,-71,97,91,76,86,98,83,82,79,-89,94,92,96,55,61,-76,92,98,76,93,94,70,-18,7,47,95,96,93,75,97,99,49,84,-14,96,79,69,94,99,91,62,96,98,99,84,95,17,87,97,84,40,-67,95,87,92,88,99,78,20,99,59,90,86,96,15,87,84,99,4,99,99,80,97,97,99,96,98,90,3,81,64,90,29,82,90,75,-24,91,65,4,85,76,98,86,80,-45,15,98,94,94,88,56,94,93,94,54,99,-18,88,-1,-56,44,96,39,99,-69,86,62,24,54,99,98,-65,97,97,99,81,-28,-79,90,-39,90,71,-19,-30,83,94,67,53,-60,90,99,9,93,43,98,-12,83,98,95,95,80,75,95,95,93,74,58,70,-46,-26,14,6,77,53,64,90,82,99,98,78,60,98,96,49,22,89,-97,50,-49,5,-16,77,84,75,75,78,92,96,90,96,95,90,96,58,99,-5,99,98,63,82,-44,92,15,-26,-30,94,92,62,43,95,96,98,26,98,99,-74,-37,97,88,62,-6,99,96,68,99,-55,-48,10,-62,-8,99,95,98,52,99,97,99,96,99,59,90,98,90,99,16,59,94,92,99,-31,32,84,93,79,86,89,98,99,39,99,-34,97,-76,85,96,98,-61,95,91,61,-86,64,95,95,76,44,34,51,-80,54,86,52,-28,-25,88,67,23,98,99,99,99,98,55,95,75,99,98,95,60,47,93,99,95,99,-34,84,98,33,89,99,79,77,59,94,92,80,52,-73,89,92,97,99,64,97,55,93,35,-50,52,93,70,96,95,95,89,99,91,95,36,-75,45,15,99,96,58,51,57,92,81,74,97,86,98,64,93,-65,55,-13,98,38,94,61,57,99,96,97,34,82,-83,77,62,99,99,50,95,23,98,6,92,98,82,98,99,64,99,98,-63,84,-77,-30,81,92,98,-64,98,97,44,99,35,99,78,94,96,96,98,92,84,92,99,3,87,47,-16,-82,49,8,99,99,90,99,87,80,79,99,18,99,69,-97,7,96,86,97,99,32,99,79,62,29,-84,-84,89,94,99,99,98,89,95,80,77,-57,90,95,85,14,88,97,89,-64,91,97,81,36,97,99,98,89,93,80,68,55,-3,98,93,-42,99,99,98,99,-15,98,29,90,-60,97,90,71,97,-36,-16,-27,-39,98,93,98,86,99,85,22,94,98,42,96,-18,97,84,99,-93,1,94,-59,80,97,97,96,96,98,65,99,99,83,-6,-30,82,-46,97,88,99,-60,36,99,22,99,99,-80,96,60,86,94,91,82,99,66,99,97,94,21,98,89,99,99,46,91,98,91,78,94,88,-4,74,87,99,-54,73,97,33,37,99,34,30,96,94,6,81,98,55,86,98,88,87,74,92,-99,3,-25,-58,97,76,76,97,-22,98,86,98,94,89,92,63,79,91,94,28,86,32,-40,76,5,99,89,96,43,64,89,99,-24,79,-14,67,15,-11,88,98,43,99,-72,49,87,96,99,97,7,62,-82,98,98,99,99,99,92,99,-55,74,93,14,99,88,57,98,85,43,67,97,31,98,-38,81,99,85,13,-49,99,90,79,99,93,97,98,-7,-3,-94,99,99,-72,97,78,-55,97,60,50,59,97,99,-39,99,99,95,99,91,94,-57,98,-11,90,56,91,-95,99,99,81,85,97,3,99,29,73,72,-2,96,5,74,80,69,-48,99,81,95,90,66,-20,93,87,65,74,94,39,-91,99,63,-52,92,-46,98,98,99,92,0,96,-9,16,99,99,91,99,96,69,41,94,65,70,92,99,70,-70,-9,87,58,73,98,99,49,-73,-26,92,82,94,94,-94,-90,99,79,96,53,-54,65,85,10,99,87,88,74,68,-56,99,97,98,98,35,-21,98,1,60,97,-98,-5,76,10,91,96,82,99,92,96,56,82,95,72,81,96,62,98,99,15,98,-60,23,95,78,86,95,88,94,99,16,-51,68,-55,99,49,-78,-80,96,-7,99,98,27,64,99,45,82,99,99,70,92,92,59,62,99,99,69,89,-24,87,23,62,14,43,98,97,81,99,96,-98,68,99,79,16,89,84,60,85,12,97,99,76,27,95,91,75,92,99,97,47,99,-89,69,85,-51,84,82,78,89,97,-48,68,97,47,99,80,28,5,98,92,99,-6,99,96,95,97,-1,97,97,87,-27,99,93,88,-46,96,97,-71,32,97,97,98,99,88,99,97,95,79,55,-26,65,96,84,59,89,31,95,88,89,96,97,94,98,59,99,32,37,95,12,-61,62,86,99,95,96,4,-8,86,99,59,94,-30,98,46,97,4,93,85,87,92,92,-3,-50,-89,-87,86,4,97,86,11,95,-92,77,-93,86,76,69,98,94,75,95,96,99,38,58,97,44,99,47,39,-71,25,12,95,81,51,60,59,88,20,99,95,95,-40,79,30,-39,97,99,37,83,94,77,97,85,99,-84,68,78,98,95,5,-13,27,94,30,98,99,-75,99,69,-33,99,99,83,-98,36,98,99,94,59,38,94,99,98,77,97,99,99,99,65,93,81,98,99,51,91,73,-68,99,98,81,-53,99,99,89,-15,99,99,98,-24,72,63,87,99,88,99,-20,-22,70,25,-7,97,94,-39,86,63,86,83,90,-50,99,-54,99,99,99,71,85,-21,9,-20,-92,53,99,97,82,-60,95,84,96,66,93,49,-26,58,90,93,98,99,99,97,-23,74,35,-28,67,81,98,99,-25,93,96,93,99,86,93,99,99,94,75,-13,88,-43,-90,99,97,97,42,99,92,84,94,88,84,90,99,6,99,99,99,68,96,95,40,57,72,98,-93,78,97,32,75,16,97,-45,95,95,80,99,99,94,99,89,-37,92,53,52,55,-68,98,99,98,96,96,99,-74,31,46,-88,99,98,-6,72,29,99,99,95,-5,91,45,95,91,98,89,99,65,98,97,52,99,91,-44,95,97,11,58,-45,-93,99,98,-93,94,84,88,72,97,95,6,99,87,-67,78,98,90,95,14,52,99,98,56,99,65,98,99,98,97,68,24,89,97,35,62,-34,-92,57,87,99,99,96,97,90,96,98,24,-29,77,94,70,95,-77,98,88,99,-44,99,29,34,98,98,98,58,92,99,31,97,95,-54,57,53,98,17,-28,35,-36,97,89,11,21,79,99,-40,37,85,55,-82,99,-69,72,95,-39,11,93,97,65,37,90,85,96,99,99,22,49,98,98,42,99,37,95,47,90,98,98,-56,84,92,21,99,97,64,-8,98,94,76,93,71,97,90,99,-12,90,10,84,96,-37,20,-62,91,-5,-84,29,99,97,-13,98,99,84,89,-53,87,-10,93,99,81,91,99,34,99,99,99,-68,99,99,99,92,-55,37,88,29,96,92,92,-10,97,56,79,42,-50,99,-78,-7,82,86,2,62,97,99,96,81,96,64,99,-10,99,91,97,51,32,-64,98,94,42,93,91,88,98,-91,94,82,73,88,74,98,99,54,13,98,90,51,-36,-26,42,16,-74,42,97,51,99,99,93,39,65,-49,19,-11,-16,-20,-20,93,51,82,41,92,96,95,66,99,88,98,96,37,97,86,98,80,94,10,21,51,99,83,84,86,97,89,28,-86,1,51,99,76,97,14,59,96,96,55,97,99,98,98,99,82,83,32,20,98,98,99,58,-91,-23,41,89,-32,91,84,77,53,46,33,59,97,99,88,-18,98,41,99,95,-26,61,-91,89,99,98,36,99,99,76,97,-73,96,99,61,4,98,83,29,99,95,68,90,99,98,99,63,62,65,95,-43,99,83,91,99,-5,11,97,9,43,99,96,65,92,98,88,99,89,74,67,60,89,69,-60,99,85,62,98,95,98,94,-26,78,81,1,-47,91,95,99,32,-53,88,98,81,94,99,-75,70,68,53,87,19,98,39,-2,98,98,98,96,91,75,83,99,99,99,66,6,17,82,83,80,85,99,82,73,96,41,-26,-62,-78,99,7,99,90,-95,91,87,-28,55,85,96,92,-62,96,99,99,61,98,59,48,35,99,99,97,76,96,77,88,92,95,78,99,51,99,-7,-86,-28,29,86,84,96,99,93,58,96,98,90,99,90,98,97,57,84,17,96,99,6,-99,99,65,90,-41,97,61,98,38,97,-23,87,-91,-5,94,-39,78,91,94,93,99,99,90,99,53,79,65,90,-60,86,95,75,72,95,99,-58,85,98,27,96,-49,-52,2,-10,84,97,33,95,-52,64,96,75,99,73,95,8,69,98,95,-43,28,46,90,22,98,18,97,98,65,77,-4,93,91,19,99,-79,71,9,96,63,55,99,98,-31,-58,73,-18,95,88,48,98,-77,-76,94,97,97,21,98,99,-28,-74,-79,99,35,83,94,97,36,83,24,73,99,99,51,94,-45,98,95,-75,91,98,99,-9,99,97,43,97,95,-14,98,99,45,97,-15,61,88,89,49,99,99,98,83,54,63,91,98,-46,88,90,-88,-96,-52,96,98,66,92,-13,47,74,95,89,82,-1,53,98,36,94,99,-77,93,58,97,-28,91,96,96,73,99,72,98,99,85,98,-66,94,10,95,76,99,75,20,9,-21,76,97,20,99,99,99,98,91,98,94,91,99,20,-11,81,99,54,98,83,92,99,37,36,94,96,98,97,3,20,96,92,-19,98,75,83,99,10,96,82,-99,69,81,-47,52,96,87,54,80,29,81,99,74,96,99,99,44,28,95,-93,8,7,96,96,84,23,98,70,94,-56,26,98,98,75,90,11,-94,-84,5,99,77,99,99,89,83,96,43,-61,88,88,93,37,34,97,96,-8,52,85,78,95,69,91,45,99,94,42,47,6,92,92,89,86,9,90,99,-40,-29,94,63,99,96,-91,99,93,-29,-40,95,-31,-61,98,99,90,96,93,99,84,99,98,95,88,96,94,78,99,95,75,97,85,21,26,39,99,90,-20,75,99,49,-3,47,97,99,54,-74,99,99,91,54,86,98,-36,49,94,99,99,69,71,2,93,96,81,92,29,-54,31,82,99,85,-6,99,16,98,73,67,93,99,84,38,92,40,85,-16,89,93,-29,99,-47,33,-58,-71,60,76,98,25,53,-35,81,79,99,73,93,94,87,32,99,98,99,30,99,89,98,99,86}
{96,74,89,95,99,35,50,99,9,65,-73,62,92,61,92,-33,95,56,58,63,-48,45,74,99,27,98,99,89,82,58,99,99,72,96,85,91,2,98,3,64,56,99,94,99,98,95,89,91,-78,81,84,-18,98,93,91,93,90,68,21,75,22,37,55,-29,-34,97,98,93,95,82,82,99,95,77,14,89,92,47,97,58,-55,50,97,97,98,46,73,18,63,99,75,98,57,96,61,60,96,98,6,99,99,83,44,23,58,94,-6,95,-1,-18,61,17,99,84,52,96,97,99,89,75,95,98,91,40,-14,96,98,11,40,-2,95,99,66,17,-26,29,93,93,24,82,65,99,99,-43,59,96,38,89,98,92,85,81,99,49,-14,97,99,99,94,-2,97,99,44,25,96,99,-38,5,89,96,75,49,-42,93,-31,99,38,82,32,54,97,48,92,-25,93,91,81,99,95,34,55,24,79,53,67,-19,92,99,75,96,96,25,15,96,91,89,99,99,97,71,96,54,98,91,47,98,66,99,77,42,19,53,99,-92,92,22,60,40,90,96,98,96,97,47,-56,33,84,99,96,83,94,98,92,-46,98,93,92,97,43,99,75,99,99,86,95,-40,87,-86,-22,79,82,91,97,-14,53,-63,42,16,92,50,67,78,-81,99,63,97,31,91,1,1,85,95,30,-38,92,99,-42,71,-90,93,98,95,47,78,58,26,85,28,97,7,87,-69,39,94,96,83,98,84,86,-12,99,92,55,98,95,-9,99,98,95,99,85,93,44,98,93,96,97,8,97,48,95,94,98,51,83,40,84,99,23,-69,70,91,93,83,94,94,-20,27,92,-36,-9,61,63,41,84,98,66,99,40,92,96,98,89,93,37,99,-90,99,99,98,42,99,25,99,79,83,-10,-87,55,99,-96,24,76,15,6,-3,24,98,58,99,85,96,54,69,-18,98,66,96,86,97,99,93,90,99,94,67,70,64,99,12,85,60,32,52,24,84,99,97,99,39,86,98,20,76,73,99,88,99,31,97,98,99,80,82,88,99,99,97,96,-12,47,74,-83,97,75,91,96,98,93,96,90,9,92,-17,57,95,66,93,72,39,93,31,91,2,34,56,99,57,98,99,6,66,99,99,93,97,96,98,93,99,98,79,41,98,42,97,95,84,-12,84,69,0,13,84,99,90,99,61,92,81,-25,50,30,97,99,83,93,85,94,82,54,-35,99,-51,56,98,45,99,5,92,53,90,98,96,-94,-66,98,99,97,-80,42,80,85,97,-5,-15,17,71,97,88,26,38,-11,97,74,99,97,96,78,98,73,98,95,88,7,89,85,87,48,52,97,-55,96,-1,91,47,-97,11,99,95,98,77,98,-60,90,84,99,91,96,99,18,47,93,95,99,-67,81,94,72,94,95,-64,15,96,94,48,99,82,98,-35,-93,99,17,97,-5,44,96,72,96,99,66,98,99,94,-34,94,95,99,92,99,99,-8,50,91,99,77,95,-23,98,-11,60,6,90,94,90,7,40,94,99,19,31,99,95,39,-55,-78,-59,93,70,98,95,93,94,99,92,95,98,89,99,-98,95,90,62,70,99,89,62,99,99,89,-34,99,71,95,66,99,-38,-11,98,98,-24,70,-11,37,99,94,62,90,87,88,98,95,48,3,55,97,-30,92,98,79,99,-37,-10,94,66,22,93,84,99,11,88,78,-23,99,98,65,86,84,83,99,94,36,92,-31,98,71,19,91,54,98,99,80,98,98,67,77,99,98,97,86,89,80,11,-31,98,-29,98,50,99,99,92,95,-7,62,-17,59,96,98,52,99,96,95,99,99,73,98,90,89,22,66,93,98,98,91,-22,20,-24,93,99,62,98,-9,92,99,64,76,95,99,99,-63,96,97,98,87,99,96,99,72,77,59,98,0,69,81,94,92,98,96,86,99,97,98,95,80,60,98,97,97,58,73,75,82,98,88,73,69,98,-17,-83,94,44,84,87,89,92,99,63,95,97,-69,6,66,99,99,86,-28,98,89,31,-57,-16,98,94,-85,-70,-70,65,98,-95,98,73,5,99,91,53,96,95,-96,-42,96,79,73,96,93,99,59,57,-66,94,98,71,75,99,-19,-54,99,98,97,71,92,91,2,98,95,72,99,93,84,58,91,-24,91,96,99,87,87,-72,24,97,82,88,99,98,96,95,99,99,67,-47,96,42,96,-67,78,82,64,88,87,95,84,31,93,81,49,99,-49,-90,86,61,95,98,99,-87,97,22,75,96,55,99,96,88,90,98,82,-62,93,-13,99,93,40,99,95,81,97,93,89,42,93,86,31,7,80,99,81,98,99,78,99,21,93,99,-91,96,99,1,53,96,89,90,91,95,83,95,37,80,97,99,92,31,98,17,84,8,52,25,6,-62,75,92,10,-49,41,-49,96,97,-87,89,28,96,90,95,91,4,99,86,99,98,79,95,58,99,17,-22,64,93,78,-61,97,96,94,94,84,86,-91,96,63,99,84,82,-17,70,88,94,77,99,97,99,44,99,96,99,24,99,93,99,88,98,93,99,99,96,4,94,89,96,91,20,99,99,84,35,97,99,-42,99,53,97,80,97,96,72,28,99,69,97,13,87,-66,-33,99,72,-56,99,-37,-28,99,95,63,82,28,99,99,99,91,25,98,97,86,41,92,98,89,93,86,55,99,91,60,96,-33,38,74,76,-39,78,-88,93,41,93,-8,-73,89,36,46,69,-19,94,61,99,90,99,99,-59,-33,54,76,98,74,22,68,98,-35,83,99,-94,-89,49,66,98,92,-26,98,71,90,99,-34,90,52,52,97,96,-53,79,96,97,34,82,95,86,91,99,55,99,51,79,-64,98,6,-10,70,92,-37,-84,94,-11,89,77,85,96,83,-27,64,96,21,-50,98,-20,93,-40,98,87,89,42,89,85,-23,37,-87,87,99,92,51,16,80,71,99,4,94,98,-6,90,40,95,86,95,17,99,83,99,97,99,53,98,-56,84,83,95,66,25,98,91,99,72,96,-2,79,90,99,41,98,66,-62,99,98,59,98,-69,73,49,91,97,81,96,92,5,98,91,84,-40,-99,74,85,82,-14,99,70,-70,98,95,81,92,75,90,60,87,72,93,98,97,1,91,84,-8,81,-5,80,99,97,56,-30,90,99,98,96,98,99,83,97,97,85,75,-4,-18,93,97,58,48,-37,90,37,93,66,97,67,95,90,95,99,-36,82,94,92,96,65,94,41,-49,98,96,90,97,80,96,21,46,96,99,98,97,97,82,-15,91,98,96,91,97,94,83,82,99,99,89,89,99,92,86,99,27,68,86,99,96,94,58,62,99,99,87,-95,96,92,69,-23,80,79,98,98,89,61,-34,34,92,-46,96,99,97,89,79,82,97,-37,80,5,87,99,98,34,99,99,-14,96,-36,-3,98,98,98,99,61,93,-41,48,20,90,-33,14,98,41,99,98,99,-44,64,94,83,88,69,99,96,96,-79,91,91,11,51,81,87,80,72,92,99,21,-51,93,97,80,82,43,-92,99,77,76,-63,91,98,97,52,89,-49,0,-56,99,47,99,20,94,-72,99,96,97,-67,88,-29,72,73,98,44,96,81,62,54,80,75,95,99,98,85,99,70,69,99,-84,98,99,73,-56,49,97,99,94,56,48,98,97,98,99,69,79,64,81,87,97,97,88,38,63,96,-60,98,99,99,35,36,88,71,-59,85,98,99,97,98,98,95,95,99,20,90,46,97,45,85,89,96,64,88,-26,13,99,63,99,-3,35,53,95,99,-30,99,84,49,73,6,98,97,96,80,88,72,-68,93,96,91,99,66,92,61,99,67,76,97,95,97,40,91,84,90,80,87,29,91,-93,99,-32,-95,84,99,61,96,31,-11,75,28,53,92,95,95,-29,-11,58,99,96,53,98,98,97,88,97,85,-74,-62,96,98,99,98,95,60,-61,10,99,66,99,11,14,98,9,91,-66,62,92,93,-68,70,82,54,30,91,34,39,99,68,30,97,99,90,55,67,98,20,86,67,84,92,93,98,99,78,98,60,52,93,95,99,99,94,23,95,93,88,89,66,88,90,-43,81,83,99,84,95,84,69,95,85,85,-52,99,96,98,87,93,73,93,99,78,14,85,96,64,-71,46,97,94,51,43,-29,-78,94,95,53,99,-29,39,30,83,86,98,97,98,59,72,97,95,96,52,62,98,-32,97,93,93,97,97,95,99,32,57,79,75,85,-3,79,-16,87,-57,87,86,98,26,84,46,80,-66,88,54,98,99,99,-54,-82,69,97,62,27,39,73,94,99,-61,90,98,70,94,99,95,15,-75,-58,99,97,80,87,99,83,99,-90,85,99,83,99,-50,98,95,97,27,-33,97,99,99,70,37,84,79,61,-15,99,-13,94,97,97,87,89,88,70,99,25,75,65,96,63,99,69,79,76,93,55,35,49,99,96,90,98,98,90,96,11,99,99,81,-26,93,99,-53,-40,64,-24,92,88,71,15,99,88,86,99,94,22,-4,4,-82,96,95,89,94,30,-15,95,33,78,97,64,-6,96,85,99,99,95,-16,83,83,99,86,48,99,-31,80,97,36,-1,88,96,5,96,94,96,98,91,91,99,99,99,99,55,83,78,90,91,95,68,98,97,32,90,-99,93,92,96,35,50,91,95,86,98,99,27,81,-93,67,99,96,93,59,57,96,99,99,-46,96,95,96,97,-87,92,99,46,52,91,-69,-35,99,-35,95,57,99,28,78,90,-44,98,99,57,96,99,84,99,99,48,-93,68,97,99,99,62,97,-91,36,-5,28,61,83,70,-85,77,77,98,85,12,84,96,28,96,-27,-96,29,95,91,99,43,98,31,93,48,97,99,75,-2,98,74,-55,60,90,65,80,64,96,91,97,96,91,71,-80,99,41,99,61,97,98,64,-59,97,98,51,61,-9,96,73,99,36,72,98,98,93,94,-2,99,27,75,99,99,75,99,85,-55,94,97,95,99,58,-20,-14,91,92,77,91,44,39,99,50,93,84,62,96,-54,32,92,99,-24,98,99,99,99,99,94,28,-90,99,99,98,96,95,79,99,98,99,94,10,90,83,19,64,47,57,98,99,99,93,97,84,-51,50,99,78,22,87,-13,29,99,77,-50,87,99,98,99,99,-29,74,99,58,84,94,68,93,98,90,97,6,80,99,65,91,72,99,79,96,23,88,21,98,98,98,98,99,99,99,-98,5,98,80,-40,25,97,36,69,45,87,99,95,93,98,92,89,88,99,66,95,98,99,81,84,99,99,65,75,65,99,99,85,-17,96,98,79,-33,-48,94,35,89,-69,96,48,73,78,-10,94,98,91,99,-52,34,79,-16,99,96,93,90,93,99,25,44,78,34,36,66,74,61,95,93,-2,65,43,99,98,89,-50,61,95,59,-93,80,99,44,98,83,40,-66,86,98,94,14,-45,90,99,19,96,1,99,-62,88,99,51,94,98,87,75,50,98,84,98,76,93,23,82,49,99,98,99,97,28,-21,70,88,88,85,20,81,53,97,98,97,89,-38,59,71,91,94,94,68,47,37,99,95,97,98,12,81,85,98,65,93,38,73,97,-4,83,90,98,74,97,99,79,85,98,99,95,91,92,99,83,96,98,-32,97,84,90,83,56,82,89,85,61,-50,74,75,-63,96,99,75,90,7,47,63,92,98,99,85,95,92,99,99,64,95,48,98,98,25,-4,84,98,97,6,52,88,88,99,89,-75,54,67,52,-88,67,96,90,99,97,99,57,36,99,79,99,83,93,64,97,98,46,30,73,74,98,98,99,96,98,97,99,-90,30,-1,96,96,80,97,91,26,99,-85,94,51,92,95,98,96,99,85,17,71,99,99,24,93,-85,45,-98,85,-65,95,94,98,82,77,96,95,99,-46,60,98,-8,85,61,55,98,85,93,44,87,91,72,99,99,97,94,97,99}
{100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100}
Returns: 5.8369086946E10
{-99,-56,-78,-92,-97,-94,-93,-51,-83,-1,-44,-98,-99,-80,-98,-66,-92,-98,-94,-81,33,-91,-99,-67,49,-16,-93,-99,-96,-95,-16,-92,-96,-99,-57,7,-97,-99,70,-96,-85,-74,-83,-94,-31,-97,-70,-97,85,-77,-7,-93,-99,-79,-96,-77,-22,-95,18,-99,-97,-95,-76,-26,-91,-29,-82,-99,-84,-99,-98,-54,-67,61,-49,-96,-98,-3,-74,-99,-82,-52,-97,-99,72,65,-91,-84,0,-98,-98,-95,-81,-98,-99,-96,-99,-63,-95,-99,53,-93,-99,-42,-98,-99,70,-99,-65,-85,-95,-88,-99,-99,46,33,-76,-93,-94,-60,-41,-99,-99,-94,-96,-8,59,-74,-97,-7,-99,-83,-96,-48,-83,-90,-63,52,-63,-76,-96,-48,6,-67,-98,-94,73,-99,-97,-63,-97,-75,-99,-57,-97,-86,64,-99,16,-70,-22,99,-93,-96,-83,-99,-41,-18,-92,-70,-86,-20,-81,-57,-90,-99,-94,-65,-83,-99,-94,-41,9,-88,-98,-97,-99,-20,-84,-68,-37,-82,-94,-95,-99,-57,-96,-99,-99,-97,18,-81,-43,-98,-56,-91,-98,-98,-98,-72,-4,-17,-22,-78,-98,24,-88,-78,-99,-38,-23,58,-63,-93,20,32,-99,-64,-94,-85,-99,-96,-32,-92,-97,-99,-93,-94,-28,34,-97,-99,-97,-97,69,-83,5,11,-14,-95,-11,-99,-98,-80,0,-57,-73,-95,-86,82,-34,-44,-99,-17,12,-73,-98,-96,81,-98,-97,47,2,-99,-87,42,-96,-99,-88,28,-95,-72,-99,-22,-99,96,-98,-35,2,-93,-37,-96,71,-67,-81,-89,-88,-99,-69,-45,-99,1,-82,-99,-95,50,-93,-88,-98,-69,-77,-88,-99,-60,-94,-41,-36,-97,-92,-68,-91,-96,-92,-93,-99,-98,-89,-60,17,-44,-99,-82,-96,86,-98,-87,61,-85,-77,-94,22,-68,-91,-46,-68,-99,-97,-99,55,-21,-92,-51,-99,79,-57,-92,-76,-99,-46,-95,-91,-96,-63,83,-99,-97,-98,-83,-95,-98,-30,15,-99,64,-87,-85,-96,-68,-39,-39,-20,-24,14,-82,-99,-72,-86,-64,-76,83,-98,50,-97,92,-98,-97,-99,-97,-97,-93,-87,-99,68,-72,-98,-90,-76,-94,-56,-93,-99,-81,-2,-92,-17,-48,-42,-80,-99,-79,-85,-88,-65,-48,30,-69,-86,16,-86,-79,-94,-87,-47,-47,57,-40,-99,-4,-98,-99,-99,-12,-97,-91,-3,-87,-99,-95,-98,-94,-96,-73,-42,-46,-90,-71,-36,-90,-92,-98,-99,-97,-99,-83,-88,-77,-93,-99,-98,80,-80,-80,-95,-77,-85,-65,-95,-69,49,-98,-99,-99,-97,80,-92,-97,12,-84,38,-99,-89,52,11,66,-99,-81,-97,67,-67,-64,-97,36,-99,-91,-98,96,-47,-75,-99,-96,-65,1,-99,-48,-10,-99,-99,-61,-99,26,-98,61,27,-97,-91,-98,-91,-95,-97,-94,-90,-50,-99,-26,-3,-92,-97,-97,45,-56,-99,-99,-94,-87,-75,-56,-14,-92,-16,-96,-91,-67,-85,-93,-99,-99,-94,38,-99,26,9,-25,-99,-72,8,-78,20,-29,-99,-79,-97,48,-63,-76,-67,-99,-97,-99,56,-99,-95,-96,-94,-99,-86,-31,-83,-98,-98,-93,-17,-59,-33,-51,-77,23,-97,-98,17,-99,-43,13,47,-94,-62,-92,-69,-98,-53,-92,-91,-87,-72,-82,-71,-92,-97,-92,-78,-75,-99,-98,-88,-92,-34,-51,-73,-96,-97,-41,-31,61,-99,-90,-98,34,-96,85,-34,-97,-74,-98,-54,73,-62,-16,-63,98,-91,-96,-80,35,-94,-94,25,-88,-93,21,27,39,-99,-79,-8,-94,-1,-5,-96,-59,-69,-94,-96,-99,-96,-53,-89,-14,-96,-49,-98,-85,-75,-98,-84,54,-58,-96,-10,-48,-94,-97,-31,-99,52,-80,-14,-99,-44,-88,3,-99,-96,-64,-61,-35,-98,-98,-63,91,-89,-94,-35,-20,-23,-93,-72,-22,-99,-99,-99,-95,-64,-91,-99,-83,-99,-75,-78,-93,-30,-30,0,-85,-99,-98,-79,-86,-96,3,-97,-98,-95,70,-63,-94,-93,-28,73,-98,-39,-98,-48,-66,-62,-69,-98,-97,-39,2,-62,79,-64,-96,-99,-98,-95,-95,-50,49,-99,98,-74,-27,-42,-99,-88,-78,-99,-88,-77,-72,-97,-99,-94,-99,-93,47,-95,72,-93,-91,-83,-98,-90,-92,-87,-95,-99,-95,-90,-86,-94,-96,-37,-74,-28,-92,-99,-99,-99,-99,-38,-86,-99,-98,-94,-99,-99,-79,-95,-96,-60,-99,-82,-94,-89,-13,-33,-95,-49,-68,67,-85,-88,-97,-87,-99,19,3,-79,-99,-95,99,-84,-35,-90,-85,-81,-66,-86,-28,-98,-99,-97,-86,-69,-72,-69,-99,23,-80,-99,-98,-89,-40,-99,-95,-56,-78,-67,15,-98,-77,-92,-97,-91,-94,-98,-99,-89,-98,-87,-38,-83,5,-90,-68,-99,-22,19,-99,-55,-99,-22,-99,56,-97,-87,-62,-94,-93,-44,-84,-21,-98,-95,92,-81,-86,-26,-85,57,-71,-25,-38,-75,-57,-97,-96,-97,-70,-40,-88,-70,-34,69,-81,-58,-99,-97,1,-97,-98,-99,-55,-75,-97,-88,-95,17,-81,-87,-93,-96,-72,-76,-64,-99,-99,20,32,-97,-98,-89,-68,-81,-49,-95,-94,-47,-46,-9,84,-97,-74,-97,-36,-34,-10,-93,-2,-41,62,-96,-96,-97,53,-96,-70,-66,-91,35,-11,84,-94,70,-93,48,-37,-98,-72,-61,-99,-73,95,50,-94,-99,-98,-22,-96,-90,-98,-71,-91,-97,-78,-85,-19,-71,-99,-75,-90,-86,-78,-96,-95,-76,-85,-97,-93,10,-96,-37,-99,-96,-95,-99,60,-78,-95,-39,-92,-99,-99,-98,-90,19,-99,-88,-95,-93,10,-75,-99,69,-88,-62,-97,-70,-99,-69,-54,-82,-95,-97,-38,-99,-68,-16,-36,-90,-99,54,-79,-42,80,-91,99,-92,82,-99,7,-82,-17,-71,-95,-73,-87,-61,2,-96,-76,-31,-99,-94,-92,-49,-97,-7,-99,-65,-99,50,-97,-52,-66,-97,-88,-87,-85,-90,-82,86,-95,-75,-94,-56,-25,-39,-92,-95,-96,-2,-93,-99,-94,-36,-99,-94,-32,29,-95,-98,-92,25,54,-53,-91,-62,-29,-97,-98,-97,-96,-99,-5,-89,-91,-99,45,-99,-98,16,-17,-96,-86,-98,-99,-96,-88,-85,-99,-90,-90,-93,-96,-76,79,-98,-99,-99,-78,-97,-98,-72,-15,-97,-80,-2,-3,-98,-98,-28,-87,21,-97,-47,-29,-98,-98,-99,-93,-96,-99,-68,-74,-97,-97,-13,30,-93,15,-78,-92,-97,-48,-47,-97,34,50,-99,-58,61,-89,-97,-65,-93,-99,-66,-99,-98,-53,-97,-94,-99,-99,-99,-98,-96,-38,-88,-73,53,-52,40,-69,-85,39,-76,-3,-42,-10,-32,58,-99,-97,89,-38,-95,-89,11,-66,3,-93,-97,-19,-97,-94,-99,-99,-82,-5,-99,67,-82,13,-91,-39,-62,-18,-99,-94,-39,-78,-98,-84,-99,-96,3,96,-88,-98,-98,-98,-92,-99,-95,-90,-94,-99,-90,-98,84,-74,-83,-19,-89,30,14,-79,-10,-99,-95,-99,-99,-95,-96,-90,-99,-99,-99,-97,-95,-83,-50,-86,-74,-89,-89,-97,-93,-97,-57,-87,-81,-97,24,-94,-98,-94,-99,24,-53,-47,69,-80,11,-71,-45,-94,-99,-99,-96,38,-95,-99,-85,-98,-97,-44,-88,-84,-97,-86,-98,-99,-88,-99,-98,-93,-97,-8,-96,-82,-96,34,-99,-95,-77,-81,-54,-98,-48,-97,-96,-95,-91,-99,-99,-35,11,1,-93,-65,-51,-94,-91,-99,-80,-99,-98,-97,-92,-91,70,-94,-92,-95,39,-21,-96,-83,-26,-99,-31,-98,-58,-73,-44,-64,-99,-27,-81,42,71,-94,-91,-91,-96,-99,-99,-77,-80,-25,-99,-99,-99,-64,-99,-79,-80,-99,-89,12,-70,-84,-99,8,-96,-38,-51,69,-98,-77,-97,-86,-64,37,-99,-75,-76,-39,-68,-99,48,-82,-82,-84,-99,55,-82,90,49,-41,-32,-90,-90,-97,-98,-95,-39,-97,-98,-91,32,-65,-40,2,-55,-98,-96,-94,-65,-94,-91,-98,-97,-98,-77,-89,98,-69,-4,-85,-26,-86,-83,-92,26,-96,-88,96,65,-98,77,-75,-53,-97,-98,-58,-92,-96,76,-98,-66,-18,-74,-69,-93,-95,28,-71,-49,-92,-66,82,-60,-92,-31,-91,-92,-92,79,-98,54,-57,-77,-98,-78,58,-61,-2,-41,-53,-24,-97,-91,-99,-98,-93,-97,-81,-28,-80,-88,-92,-96,-82,-99,20,-96,-99,-97,-99,-20,-99,-57,-74,-96,80,-70,46,59,-86,-91,-99,-94,-62,-88,-52,-11,-57,20,-74,-43,-95,-22,-99,-13,-89,-99,-42,-96,-81,-91,-98,-25,-91,6,-98,-96,-81,-98,-99,-90,-91,-67,-90,-80,-79,-97,-11,-98,-90,-16,-5,-95,-75,-84,-45,-99,-99,-64,-91,-57,-97,-84,-96,-97,-98,-29,-94,-98,-22,-8,-88,-18,-58,-25,-89,-48,-80,-63,-60,-97,-95,-36,-99,-98,-99,-97,-95,-67,-58,-92,-83,-63,-98,-49,-99,-99,-53,-19,50,37,96,-99,-95,-93,-88,-7,-88,-86,-76,9,-99,-98,-78,-77,-94,-73,-60,-88,-99,-24,-3,75,-50,-98,-98,-94,-95,-99,-99,-11,-89,-86,-28,-80,-21,-82,-99,-96,64,-99,62,-97,-93,-99,-99,-92,-84,-99,-99,-98,-58,-99,-97,-99,-48,-34,-16,-93,-94,-70,-99,-99,-17,-90,38,-22,-82,69,-90,-99,-98,31,-89,-85,-96,-73,-99,-99,-90,19,76,-98,95,-98,58,-98,-71,-96,20,-94,-54,-76,-98,-98,-82,-98,-63,-53,1,-86,-80,-87,-98,-85,-99,-74,-87,-99,-99,-50,-29,-22,53,26,-99,-89,32,65,-92,-66,-34,-78,-94,-98,-99,-94,-99,-15,58,-95,-29,-54,-87,69,-14,-93,-95,-98,-99,-99,-96,80,-98,56,-32,-74,27,-95,-99,-93,-51,-99,-26,-85,-87,-95,-98,-98,-94,-97,-91,-93,99,-83,-95,-74,-90,-89,91,-87,-87,20,-89,-52,-97,-77,-92,-65,-69,-97,-95,-89,-99,-82,-17,-95,-92,-82,-87,-98,-34,-98,80,-87,-99,-99,-78,-99,-97,-76,-73,-99,-92,-90,-98,-11,-99,-99,-8,-99,-23,-96,-97,-93,-99,-88,-98,-38,11,-86,-43,20,-94,-23,-92,-99,-35,26,28,-71,-89,-91,-89,14,-97,-62,-98,-55,-96,16,-70,-90,-95,-99,-80,-94,9,-42,-74,-85,-93,-98,-97,-95,-21,-86,-93,-99,-83,-94,-43,-90,-92,-95,-99,-97,-56,-89,-99,-97,-68,-99,-94,-21,-5,-85,-76,-42,-99,-69,-99,-96,-99,-97,-99,-97,-81,-32,-81,-91,-68,-98,-78,-46,79,6,-92,-54,-72,-92,-98,-22,-87,-72,-92,-97,-77,-85,-25,11,-81,-74,-38,-67,-95,-73,15,-98,-97,-69,-98,-99,-99,-81,-98,-94,-97,-96,81,-77,73,-98,47,-99,-98,-9,-98,-98,-99,-99,43,-93,-93,-79,-67,7,-73,-93,-80,-89,-99,51,-87,-98,-85,-99,-97,-17,-90,-96,-90,-98,-97,93,42,-93,-57,86,-97,-86,-99,-97,-98,-91,-70,-96,-99,-99,-97,-63,-98,-96,-99,-97,-99,-43,-16,-92,-95,-97,-98,-99,-96,-73,-99,-98,-26,-86,-99,-16,72,-95,-48,-96,-83,-19,-67,-99,-92,-90,-84,-95,-90,-80,-50,-53,-62,-99,-90,-81,-42,-34,-67,-8,14,-99,-99,-96,-98,-96,-99,-94,-88,-86,-95,-68,0,-70,27,-23,-77,-97,-85,-98,-99,-85,24,-82,4,-76,12,-98,-98,-97,-56,-99,-41,-65,-37,-97,-84,-70,-99,-91,-90,-97,-65,-19,-86,-36,-93,10,-99,-95,-90,-99,-70,-42,-9,-97,-70,-68,-95,-91,-99,97,-92,-78,-99,-94,-99,-31,-99,-87,-73,-98,-71,-32,-98,8,-70,-99,-99,8,-22,-86,-12,63,-52,-68,-70,-90,-94,-95,-97,-82,-94,-23,-93,-93,-97,-94,62,-94,-98,-86,-91,-99,-93,-77,-97,-76,-21,-89,-37,-98,15,-30,-70,-99,-99,-39,-38,-99,-99,-92,-89,-87,-99,-61,-98,-99,-98,-91,66,-33,27,-94,-52,19,-93,-77,-50,-49,-74,-89,-95,-27,9,-98,-57,-52,-99,-44,-99,-97,-76,-93,-75,-60,-97,15,-99,-82,-84,74,-73,-50,87,-98,-67,-96,-3,-30,-97,-81,-76,70,-81,-32,16,-92,-86,-99,-67,-95,-73,-98,-21,-81,-94,-92,-86,-93,-57,-85,25,-75,-72,-99,-86,-99,-99,56,-42,-98,-13,-78,-76,-98,-98,-90,-68,-98,-99,-99,-90,-82,-89,-72,-99,-87,-93,81,-98,-92,-50,-36,44,39,-91,-85,30,-97,-94,-97,-91,-81,-52,-64,-98,-41,-91,-99,9,-92,-97,47,-54,-87,9,-99,-84,-45,-97,-81,-97,-96,-34,-88,-99,-86,-99,-21,2,89,62,-87,-95,-97,-37,-97,-97,-81,-99,-99,42,-99,-99,87,-97,-12,-89,-69,-44,-6,-3,87,-74,-74,-93,-74,-99,-99,-95,-38,-93,-97,-66,-99,-98,-97,-89,-7,-98,-99,-5,-52,-66,-99,-79,71,16,-98,-99,-98,-97,-90,-25,56,50,-74,-29,35,-96,-92,16,-42,-97,-98,-93,-91,-95,-90,55,33,-99,-87,28,-98,-78,-99,-69,-86,-43,36,-88,-88,-89,-57,-97,-92,-96,-67,-96,13,-95,-93,-98,-89,-78,-98,-99,-87,-99,-94,-77,-28,-99,-99,-67,-59,-97,-95,-95,-95,-92,-94,-82,-91,37,-98,-25,-98,-98,-98,-91,-99,-85,-58,-99,-29,-99,-45,-96,-96,-22,-58,-87,-99,24,-74,-25,-49,-55,22,-98,8,-91,83,-87,-93,-37,-68,-99,3,-97,-25,7,-64,-65,-32,-70,-97,-58}
{-87,-98,-37,3,-19,-92,80,-82,-8,-61,-98,-31,14,-99,-98,-97,-34,-24,-82,-92,-96,-41,-98,-88,-68,-96,-95,-1,-93,-96,-99,-86,-98,-87,-99,18,-75,56,-95,-60,-4,-39,-67,-27,-93,-98,3,-99,-86,-63,-58,-93,-99,37,-99,-96,62,-93,-98,-99,-97,-88,-94,99,-99,-47,-45,-90,-86,28,-90,-70,-99,-86,-92,-98,-3,65,-77,-98,-99,-82,-95,-65,-26,-77,-92,-88,67,-79,-98,-95,-97,-98,-44,-97,21,-98,-92,-40,-3,64,-89,14,-34,-95,82,14,28,31,-82,-64,-67,-99,-71,-99,-74,-97,-97,-50,92,-90,-81,-63,-73,-88,-47,64,-96,-97,-78,22,-84,-86,-17,-98,49,60,-69,-70,-99,-99,-93,-99,-94,-99,-94,76,-89,-96,-88,-98,-30,-29,39,-99,-88,-93,-99,8,-85,-73,96,67,-67,-3,-98,-82,-99,-99,-64,-60,-12,-98,-97,-96,-38,-99,-97,-99,-90,-44,-76,74,-97,-34,-99,-53,-86,89,-59,-86,-93,2,-51,-52,-38,-71,-98,-99,-91,57,-99,-92,-93,-90,-99,-99,-89,84,-99,77,-76,-87,-98,25,55,-94,-99,-85,-99,-77,-96,41,-94,22,93,-89,-99,-93,-99,-90,-57,-77,-76,-30,-18,-71,-94,-91,-66,-81,-98,-99,-38,-97,22,-95,-46,7,-87,34,-96,-71,24,-99,-99,-93,12,52,-97,-88,69,-23,-77,-99,-48,-86,-94,-95,-45,-86,-87,50,-77,33,2,-95,-86,-11,-54,-98,-75,-62,27,-99,-97,-99,-44,-89,-73,-7,-64,-96,-65,-96,-40,-14,-93,-29,-96,55,-93,-77,-99,-5,65,-89,-96,-97,-92,-95,57,-78,-51,-84,-49,50,-95,20,-68,-30,-18,-96,-95,-84,-26,-98,-98,-99,-96,-99,-92,-98,-99,-94,-98,-97,-81,-34,-85,-5,-97,-40,-94,-89,-91,-98,-44,-97,-76,-95,-71,-34,-98,-84,-88,-99,-99,-15,-88,50,-96,-88,-53,-99,-29,-91,-99,93,-89,-96,-94,-80,-16,2,-31,-20,-98,-88,-91,94,-99,-99,35,-99,-94,-96,-84,-94,-79,-73,-24,-47,-99,-77,-96,-99,38,-98,-95,-94,-98,-90,-26,2,-97,-89,-91,-96,39,-97,-99,-85,-52,-99,-58,-99,87,-37,-32,-94,76,-99,-41,-20,-98,6,-95,4,11,-52,-90,-99,-99,-52,-50,-99,-97,-92,-95,-97,-73,-75,95,-99,-94,-88,-99,-84,-98,-84,-79,-98,-98,-89,-78,-67,-99,-28,-81,-77,-50,-94,-99,27,6,-25,-89,-87,-99,-53,-97,-97,-99,-96,22,-44,-89,-96,-99,98,-98,-99,-89,-98,-44,-92,-65,-4,-91,-76,-99,-98,-60,-37,-98,9,-86,-99,-46,-93,41,60,39,-35,-76,-46,-56,-92,-91,-79,-98,26,9,-37,56,-80,-86,36,-95,-88,-92,-99,33,-95,-99,-97,-75,-99,-65,-99,-99,-26,-9,-62,-96,-98,-99,-57,-30,-99,-99,8,-96,-99,-80,-19,-97,-4,-99,-65,-54,-84,-35,-10,-89,-99,67,-94,-37,-16,-51,-59,-43,-97,-93,-89,91,-84,-11,30,-29,-65,-95,43,-99,-61,-56,-99,-96,-99,-95,-94,-99,-13,2,-83,-70,-89,-94,-91,-99,-99,-78,-86,-96,-74,-67,-17,-85,-75,-20,-98,-68,-84,-97,-84,-93,-73,19,-96,-97,-97,-99,-88,-94,-99,-95,-75,-62,-73,93,70,-61,-96,38,-53,-78,-80,-98,-40,-99,-99,-92,-90,-11,-40,-99,-67,37,2,-75,89,-37,-38,-97,-94,-77,-99,-93,-99,72,-64,-85,-75,-82,-94,-29,-96,-64,91,-13,-97,56,-21,-99,-66,25,-85,-41,-99,-76,-96,-94,54,-96,-99,-99,-96,-96,-98,-96,-21,-98,-74,-80,75,-52,-90,-96,-66,23,-29,-60,24,-95,-71,-85,-98,-97,-89,-99,-86,-83,-73,-99,-69,-81,-96,-89,72,-90,-86,79,-50,-83,-81,-99,-99,89,-1,-82,-99,-51,67,-97,-80,33,-99,24,25,78,-51,-29,-94,-97,-59,-76,-99,-91,-41,-95,-90,-99,-83,-99,-82,-29,-98,-4,-42,-87,-8,-99,-22,-68,-51,-91,-98,-98,-99,-86,-78,-87,79,-63,-99,-99,54,17,-99,-98,-99,6,-23,-42,-63,-20,-72,-39,-92,-87,-73,34,-57,67,-97,-91,-97,63,-82,-84,-79,-92,-97,-67,-65,-90,75,23,-99,-37,73,-97,57,-85,-73,-99,-62,76,-99,-71,-91,-94,24,-50,-98,-98,-92,-90,-99,-86,-96,-96,-99,-66,48,-30,-52,-67,-6,18,-95,-86,-99,-42,-99,6,-97,-87,-83,-99,-96,-96,-19,79,2,-53,38,-99,-93,-81,-66,-90,-27,-99,-3,-78,0,-79,-95,-44,-16,6,-98,-95,-65,-95,-96,-99,-60,-59,-89,-91,-97,-99,-99,-61,-95,-29,-60,-70,-56,51,-98,-39,-68,-95,-65,-97,-87,-95,39,-98,-81,-71,-94,-93,-64,32,-60,-97,-85,-44,-97,-77,-67,-95,-92,-92,-95,-99,-99,-89,-99,-96,-97,-97,-98,-92,-58,-94,-99,-84,-41,-45,-77,-74,-94,-15,-77,-77,23,-95,-99,-26,-35,-86,-98,-99,-95,-65,-94,-99,-97,66,-97,-95,-76,-62,-94,-96,-46,-96,-81,-75,-96,-65,-99,-6,-91,-97,-97,-73,-97,-99,18,-93,2,-96,-89,-99,-94,-98,-86,-96,-99,-70,-97,-91,-95,2,-18,-91,-71,-94,-94,37,64,-98,-41,-99,-5,-99,-91,-40,-94,-93,-66,-10,-96,-98,-99,-96,-99,-99,-99,-99,-84,-96,-23,-71,2,-98,-92,-36,7,-89,-34,-99,-81,63,14,-94,-91,12,-95,19,-90,-50,23,-98,89,-80,-99,-98,-98,-98,-97,-34,-89,-88,-98,-12,-57,39,-90,-94,-71,1,-87,-97,-96,-86,8,-95,-98,61,-93,-38,-99,-99,-94,56,3,-24,-61,-78,-99,-75,-96,-75,-99,-96,14,-97,-99,-71,18,-83,3,-98,-97,-97,-93,22,3,-81,-96,-99,-97,-98,-88,-62,-92,-88,-93,-85,-99,-98,-95,-73,-55,-78,-90,-93,83,46,89,-32,-95,-97,-36,-21,-34,-97,-98,-41,-70,-86,-79,-99,-96,-98,-38,-58,-24,-91,-76,-70,-98,-99,-98,-27,-11,-97,-77,-99,-83,-99,-84,-59,-98,-27,-88,-93,-90,-95,-37,-89,-40,73,-54,-83,41,-71,-96,-90,-48,-92,-71,-60,-41,-71,3,-99,-73,-85,-93,-99,-95,-99,-94,-71,-78,-91,25,-80,-97,-56,-2,-83,-99,-48,-99,-99,-35,-94,-6,-97,10,-99,-99,-98,-85,-99,-98,48,-73,-96,88,81,-62,-89,-91,-96,83,-51,-99,-96,-6,-65,8,-85,-97,-81,7,-66,-96,-51,-93,-90,-99,-93,20,-99,-98,72,-99,-93,-93,-51,-88,-83,-8,-70,-98,-96,-94,-53,-96,-4,-74,-84,-99,-37,-65,-97,-99,-97,-87,-93,-96,-4,-72,-23,-94,-97,-94,8,-68,24,-24,-98,-62,-65,-96,44,-84,-94,-84,-33,-99,-73,-59,22,-81,-11,1,-98,62,-69,-98,-86,-84,-99,-99,-88,-91,83,-89,-85,-95,-98,-98,-98,-94,-99,-94,-98,-59,-98,-32,-99,-98,-48,-62,-97,-81,-34,-77,-31,-95,-75,-99,37,-66,-97,-84,-38,-94,-99,-64,-98,-97,-98,-99,-68,-88,19,-93,-99,-40,-99,-43,-98,-98,-96,-96,-79,-99,89,-68,-13,13,-96,-60,-99,-95,-96,-45,-6,-95,15,-87,-99,-97,-93,-93,-44,7,9,-42,-99,-39,-98,-91,-11,-71,-89,-94,-87,-40,-99,-36,-98,-40,-63,-65,-99,-45,-99,-73,57,-68,33,-98,-99,-88,-78,-89,-94,-98,-89,-91,-1,70,-97,-86,-97,-96,-95,-99,-89,-10,-98,-19,-91,-99,-32,-96,-58,-5,31,-98,-98,-99,-88,-11,-95,46,-73,-94,-98,-71,-96,-88,-98,-94,-68,-99,-98,-99,-94,-39,-95,-77,-96,-99,-82,-97,-88,-80,-98,-98,-94,-64,-86,-98,-95,-92,-47,-82,-90,-99,-99,-99,-99,-97,-4,-91,-31,-81,-31,-72,-20,-99,98,2,-98,-98,-35,-70,62,17,46,-89,-97,-88,69,-92,-93,-99,-98,-95,-87,-22,-42,-60,-89,-92,-81,-97,-98,-92,-89,-99,-27,-79,-73,58,-99,-72,-13,-92,-92,-20,-98,-99,94,-95,-98,-12,-73,-23,83,-34,-96,-72,-94,-30,-94,-93,-7,-70,-94,24,-58,-95,34,-76,-60,-74,-97,-97,-96,13,-35,-98,-97,-97,-99,-80,-99,-44,-97,-77,-98,-26,-98,-99,-87,-97,-93,-98,-94,-37,-90,-84,-40,-65,-99,77,-72,-88,-99,-82,-97,-73,-99,-98,18,-33,-13,-96,-48,-99,-98,-99,-95,-91,-56,-99,-59,-99,-72,-99,-98,31,-99,-9,-99,-99,-83,-60,-84,-81,-98,-95,-98,-98,-81,-90,-8,-11,-82,-42,57,-99,-81,-96,-99,-99,-76,-36,11,-97,-57,-98,-79,-91,-87,-72,-97,-93,-96,42,-98,-98,-13,-81,-92,-94,-91,-95,-91,-94,-74,-94,-94,-85,-99,-99,-79,-98,-79,-87,-99,-99,34,-83,-99,-99,27,-98,26,-87,-91,-96,-95,-8,-14,-58,-99,-10,-64,-97,84,-99,-98,-97,-95,-98,-86,-96,-20,-69,-99,-46,-54,-99,-34,-99,-93,-90,-98,20,-91,-48,-98,-95,-97,67,-87,45,-98,-4,-95,34,-3,-93,-45,-43,61,27,85,-95,-96,98,-79,-95,-87,-95,-27,-99,-99,60,88,-96,-97,-93,52,-96,-97,-99,-86,29,-97,-99,-75,-99,-94,-95,-84,89,-96,25,73,-98,-75,-87,-83,-87,-96,-99,-90,-96,-91,-76,-91,-42,-47,36,-94,-99,-98,-74,47,-67,-58,75,-47,23,-99,-79,-94,-97,-43,-88,-84,-66,-99,-73,-94,-81,16,-99,-94,-96,-37,-93,-99,-94,-71,-20,-98,-55,-99,-82,-90,-51,-99,-97,-46,-64,-83,-39,-90,-97,55,-91,-92,-93,-66,-31,-99,-63,24,-75,24,86,-92,-48,-23,-99,46,-91,-47,-89,-95,-99,-68,-74,90,-72,-81,-81,73,-89,-99,-98,-80,-71,-81,14,-99,-95,-94,-5,-98,-97,68,-99,-81,-89,11,-78,-23,-99,-87,24,-40,-73,96,-91,-75,-40,-93,-90,-93,-83,-63,-96,-62,0,-52,-99,-99,-81,-99,-97,-97,-98,-30,-75,-94,-84,-19,37,-93,-60,-24,10,-96,-92,-80,-53,-97,-78,-92,-61,30,46,-99,-65,-97,-43,-89,-65,-98,-88,-65,-59,-98,-99,-92,-99,-78,-85,-41,-97,-44,-97,13,-67,-60,-54,-91,-15,-78,-67,-82,-97,-92,-86,25,97,-72,-98,-97,-93,-58,-97,-98,-83,-69,-91,53,-97,-99,-99,-86,-85,-84,-3,-93,-87,-91,-98,83,-99,-94,-99,-65,-36,-98,-99,-55,56,76,-49,36,-48,-55,-95,-99,-79,-97,-77,-80,-94,68,-81,-2,-50,-97,-2,-82,-93,-98,-96,-30,-67,-96,-97,36,-74,-98,-99,-70,-72,-99,-71,-87,-62,-92,-88,31,-89,-5,-61,-95,-12,-81,-92,-91,-74,-94,-96,-85,-99,-99,-95,-87,-97,-98,-93,-94,-98,-96,-66,1,-96,67,-66,14,-99,-41,-88,-44,-99,-65,-95,-87,-98,-98,-99,-93,-99,-96,-80,7,-97,1,-93,74,-87,-76,-34,-24,-98,-14,-89,-99,-97,-39,-81,-96,-72,-78,-72,82,-72,-99,-62,97,-97,-91,-77,-61,-99,-53,-94,-89,-98,-96,-49,17,-98,-98,-63,-99,-98,-86,21,-90,-97,-82,-87,-90,-99,-91,-35,-90,-97,-99,-99,-97,-78,-84,-82,-88,-21,-92,-32,-91,-94,-99,-93,-92,90,-62,-98,83,-77,-94,-99,-98,-60,-82,52,-89,-95,-99,-81,-32,-78,-84,-99,39,-92,-97,17,-61,-51,-33,48,-83,-86,-3,33,-99,-88,-93,-86,-75,-98,-98,-99,-90,-48,-48,-61,-59,-87,-94,-37,-99,-95,-83,-96,-70,-99,-87,-95,-99,-99,-97,-92,-46,10,-94,-78,-98,-99,-98,-84,-79,-72,67,-96,-95,28,-85,-98,30,-89,-79,-98,-75,2,0,-92,-99,-79,47,-60,-99,-99,-91,-96,-99,-33,80,-73,33,-55,-92,-88,-89,-99,-99,-98,21,-87,-71,19,-45,-99,-98,-89,46,-92,-77,-96,-79,-99,-98,78,-36,-99,-29,-95,-94,-96,-74,-3,-72,-98,-59,24,-99,-83,-56,-36,-96,76,-83,-85,-91,-80,-69,-96,-94,-97,-83,-97,-10,-91,-92,-99,-11,-76,-75,-90,-99,-98,-79,-84,-97,-94,-96,87,-99,76,43,-84,-47,-33,-41,-79,-81,-98,-63,17,-94,-97,-99,-98,-88,89,-75,-97,66,13,9,-97,-79,-95,-3,-94,-45,-99,-97,45,-99,-99,-61,4,-94,-96,-59,-99,-82,-99,-78,1,-84,-44,-97,-92,-36,-98,-79,-83,-32,-2,-7,-99,-40,-98,-55,22,-68,64,-96,-25,-95,-30,30,-74,-59,25,-81,-62,-18,-93,-66,30,-58,-84,-12,-98,-87,-80,-93,-82,-92,17,-83,-97,-86,-92,-94,-98,-72,-85,-78,-88,-92,-47,-84,-97,73,-50,-73,-99,-70,-81,-80,-98,-98,-99,-97,-98,-57,-9,-98,-84,18,40,-77,-98,-65,-99,-99,-97,-85,-87,-99,-30,-23,-98,-43,-86,-98,-98,-56,-96,61,-98,21,-50,-93,-99,94,-68,-97,-88,-15,-76,-94,-28,-90,-89,-8,-78,-98,-39,-82,-2,-68,-97,-32,-21,-42,-85,-38,3,36,-40,-70,-51,-98,-98,-56,-93,30,-97,-99,-97,-58,-97,75,2,-75,-88,-99,-57,-99,38,-34,-96,-98,-86,-92,-81,-92,-66,-96,-99,-75,-95,30,-70,-45,-71,-76,1,-91,-90,-2,-95,-84,-98,-90,-18,-95,-53,40,-24,-89,-98,10,-61,-99,-83,76,-71}
{96,98,88,99,74,98,99,29,76,99,0,27,99,97,86,95,92,97,72,14,92,97,30,98,54,-20,-96,96,88,17,62,65,97,83,81,74,51,99,98,98,81,76,95,94,98,-50,31,16,65,53,87,8,95,97,87,99,-97,-22,99,61,98,14,89,65,51,35,46,87,87,92,56,87,92,96,78,92,98,94,97,98,98,-69,98,97,75,99,99,93,49,95,99,96,82,46,99,94,50,97,99,98,99,-75,79,44,-98,-94,98,84,37,99,45,99,84,-99,84,79,90,96,65,92,85,95,97,-25,99,88,85,50,8,98,98,65,82,76,-74,96,77,38,-39,94,95,99,79,97,99,71,78,11,88,97,96,67,-68,99,93,7,99,-11,69,-18,77,97,99,-68,89,96,96,93,82,98,91,99,25,24,74,90,33,51,72,62,-75,63,5,94,99,17,81,-13,92,96,99,99,-72,77,99,97,91,89,95,91,98,-97,99,99,-22,-30,-14,85,98,56,96,99,98,66,95,61,15,-17,92,42,99,97,99,99,95,-15,98,-27,98,77,64,34,-2,97,47,89,98,-43,95,99,99,95,15,-97,21,50,69,19,65,62,33,19,97,95,88,58,94,52,81,96,57,-53,89,95,83,95,7,74,80,40,69,59,98,69,99,-7,98,93,99,54,35,96,-17,-66,-8,62,73,82,81,96,98,99,99,71,98,-42,98,83,97,94,89,78,38,67,99,91,99,75,-94,65,55,89,96,68,95,52,99,94,53,97,67,98,97,90,88,-41,99,86,1,32,94,93,93,-25,97,96,89,86,96,96,-2,97,91,53,72,11,68,33,55,-43,31,77,82,61,-10,89,99,17,93,-85,49,86,96,89,82,99,27,99,92,66,99,99,-55,94,50,74,80,64,99,80,92,53,99,95,96,99,95,98,80,13,-86,22,83,21,99,70,96,89,32,63,96,73,97,96,59,83,96,80,-78,82,90,98,39,-5,84,59,88,91,99,68,-38,99,77,83,98,98,91,6,3,99,-98,6,77,96,99,77,99,99,96,67,97,87,93,90,91,-16,-75,50,23,99,95,37,99,95,58,69,83,44,94,73,84,99,94,82,98,96,81,-30,50,44,93,99,68,82,-9,75,95,92,-47,89,-39,95,98,80,99,99,99,39,10,20,91,98,35,96,73,98,63,43,95,99,-36,53,53,99,95,95,-26,56,-36,99,98,87,91,90,97,77,9,-6,70,99,14,77,99,82,99,52,89,34,96,94,1,50,99,98,97,87,99,37,91,72,98,99,96,20,97,86,3,49,96,80,-59,77,88,11,-49,86,99,28,78,93,76,85,99,97,-29,95,98,81,45,89,79,97,99,99,89,-84,96,98,99,98,81,79,1,52,5,74,95,-23,46,99,96,45,-25,-64,49,60,99,92,-85,99,56,69,98,64,99,86,29,97,99,99,99,84,97,90,56,37,95,98,73,-84,89,35,96,95,78,84,91,99,90,43,95,96,75,99,91,95,84,90,82,97,-10,78,97,91,87,69,99,76,26,99,-96,82,96,91,89,91,22,99,73,91,99,96,92,11,92,66,1,93,97,79,49,43,94,91,86,98,75,70,79,98,73,-6,-23,82,78,76,89,74,81,99,91,25,89,99,90,99,72,60,78,98,98,-46,99,-31,71,50,-36,31,55,98,94,84,98,53,-61,2,99,98,-38,85,60,93,54,94,78,93,65,94,2,99,55,62,93,81,98,95,90,77,95,99,50,36,98,26,99,97,-78,95,-37,68,95,67,82,99,80,16,25,42,98,97,81,-92,99,-23,94,88,81,64,99,95,90,92,72,58,93,57,-62,50,94,-49,50,65,-59,57,84,79,-25,-3,75,76,91,99,99,73,93,99,71,-78,22,56,20,98,99,-50,-10,22,81,99,93,1,68,75,-22,99,98,-16,99,94,92,97,66,70,77,95,74,94,-63,82,99,99,99,98,92,97,-4,98,97,99,99,42,94,99,91,55,0,75,-73,53,99,94,68,86,96,99,81,96,91,99,39,83,74,96,97,-57,-15,88,56,60,60,63,-52,9,98,37,96,96,93,99,82,-20,62,53,84,31,-29,93,-15,70,17,76,28,89,-36,81,93,99,39,97,99,-98,64,75,94,-26,-25,93,93,99,99,-24,87,83,-76,-24,-14,99,99,93,98,81,59,10,99,99,-18,85,93,96,97,6,97,-74,78,-44,32,54,-68,22,53,72,99,99,-31,79,99,-1,89,99,78,97,85,-11,86,77,99,94,-19,99,46,23,19,80,73,-91,85,85,64,99,99,94,95,96,96,96,99,86,42,73,-71,68,85,32,89,59,-40,-55,60,95,88,-2,38,95,98,74,7,99,98,90,71,99,97,92,99,16,51,99,41,96,28,99,79,38,97,72,-37,99,78,-43,71,91,97,53,-11,-39,99,60,80,86,97,-4,97,97,91,42,96,78,41,6,-64,83,64,56,85,97,99,88,72,-35,99,96,1,92,99,90,96,94,25,82,25,96,66,99,-84,96,-48,98,-7,-15,99,96,91,99,85,84,99,74,92,-15,81,75,99,77,99,72,74,84,31,27,99,-16,85,94,76,77,95,98,92,28,32,-60,2,-39,84,97,95,-17,93,97,99,97,20,99,97,84,-28,91,51,5,99,93,99,79,96,56,97,98,97,15,-32,82,70,-1,45,-52,-51,84,92,69,85,57,-21,3,55,34,87,81,99,55,70,61,52,72,98,-47,92,-53,99,99,-31,99,92,-24,97,-21,51,84,71,99,99,99,87,98,48,93,99,53,94,64,-76,99,-70,-25,93,95,97,88,97,4,84,91,74,81,96,73,99,99,53,10,99,82,71,99,89,68,93,82,88,76,98,84,-65,90,97,87,99,82,1,49,86,85,94,76,-15,93,96,94,94,48,58,99,22,80,87,19,15,80,-42,99,18,93,93,46,-48,94,93,97,56,99,93,88,93,89,-39,86,99,63,43,79,14,99,-61,99,98,5,60,81,66,65,79,31,74,99,61,83,-99,52,-41,15,96,9,-51,99,96,98,92,84,54,97,6,-20,92,50,68,97,98,95,75,92,96,99,97,98,70,74,52,88,93,94,-57,-93,87,13,5,-44,98,31,99,78,99,99,96,90,87,99,70,91,-27,85,8,29,95,41,5,-63,88,95,88,74,64,36,82,-98,56,99,99,-46,97,99,96,92,90,95,98,84,-82,97,89,98,99,94,86,99,76,-11,77,-85,96,98,54,7,93,8,85,90,99,98,97,99,85,35,97,99,78,94,98,52,94,7,69,79,82,-90,83,4,0,-19,82,85,-22,16,-13,89,87,96,95,98,71,94,94,31,-85,35,94,-8,77,98,-45,-98,-23,9,95,74,88,99,79,51,98,84,81,75,99,95,-83,-32,80,60,99,63,88,99,85,96,19,98,65,96,97,99,63,98,88,98,-37,97,85,96,39,-22,99,98,95,42,98,85,-4,99,-4,77,92,95,99,98,95,69,-78,99,67,94,99,95,99,82,98,76,96,97,93,58,99,99,98,95,30,-12,55,71,18,95,-23,-46,90,96,65,98,76,90,-5,68,99,99,36,54,92,98,85,64,-31,-59,89,98,83,-7,87,37,57,89,35,-14,97,92,99,47,93,87,66,-99,56,-83,85,98,89,84,99,85,-40,79,31,99,81,84,-91,99,96,89,97,92,87,-35,99,80,58,99,66,-98,97,-14,99,97,65,-56,56,99,98,84,97,96,78,61,71,98,-55,-65,98,98,98,98,99,78,94,90,80,97,98,99,99,32,88,6,56,99,29,94,72,94,87,97,-4,49,35,97,24,74,-36,97,77,99,96,94,93,-16,65,43,96,94,82,-42,96,32,74,-93,18,56,78,69,80,81,80,85,27,-31,72,15,91,57,68,80,96,99,-50,98,91,5,82,93,92,17,89,-91,83,9,98,99,-55,30,62,99,-83,88,88,-17,99,87,97,98,99,92,97,98,92,83,-52,92,98,99,57,99,86,97,97,81,94,-40,69,89,97,94,95,89,43,67,18,87,57,92,89,91,44,-35,94,-78,75,87,99,99,99,72,79,94,98,-31,98,-42,69,96,94,97,85,49,35,-7,42,84,88,94,99,15,71,99,95,70,74,14,83,-5,57,91,97,81,65,61,3,76,-68,60,93,19,74,96,98,99,94,99,76,83,88,99,98,97,-15,56,27,-84,85,0,80,28,52,94,99,20,98,88,34,99,56,95,99,7,99,99,21,-5,97,88,71,69,94,92,96,64,91,91,34,34,98,99,20,64,51,-21,85,94,50,86,92,98,65,99,4,-14,88,99,66,85,99,93,96,99,87,73,98,67,98,99,11,14,99,99,92,74,51,49,94,92,39,66,-20,98,71,6,39,-20,84,98,84,54,97,94,78,96,99,84,-11,27,76,99,88,73,98,77,18,98,92,61,99,98,74,-1,-77,98,90,-22,99,66,97,98,-17,71,99,78,2,98,45,98,81,99,99,80,98,93,-71,95,-37,97,82,88,96,83,98,97,-59,35,60,99,99,88,-28,98,94,88,73,95,-6,91,97,88,23,98,99,98,28,92,92,-39,63,95,44,60,55,93,-45,92,99,94,0,36,99,-93,92,80,98,95,-71,92,99,81,92,75,0,-69,-9,53,99,80,93,57,81,9,92,98,65,55,31,89,99,99,89,99,88,88,89,71,99,98,99,97,-47,75,93,-88,73,34,96,98,74,99,9,32,-99,-94,23,87,90,92,65,77,13,92,82,99,90,98,93,97,73,93,98,-21,98,89,96,-32,98,98,99,99,52,73,97,87,99,83,46,79,73,-81,-81,89,29,99,75,94,88,-4,99,55,94,-61,89,76,96,96,85,90,93,95,98,97,99,89,12,-16,32,99,99,-86,18,56,84,88,-27,34,91,23,92,99,9,93,89,64,21,97,99,96,96,94,-86,-48,96,-29,-57,98,61,49,29,84,59,-73,83,99,76,72,94,21,91,-88,74,32,89,55,60,-81,56,96,95,49,94,87,74,8,-63,82,88,97,79,83,92,58,17,99,96,-91,94,96,94,97,98,99,82,94,98,95,86,94,-41,99,98,99,-7,95,95,96,87,14,95,96,94,-46,99,94,93,99,-88,95,93,91,98,68,98,27,94,56,99,25,94,25,64,98,87,87,14,58,98,98,88,7,94,97,86,95,94,95,66,91,51,94,81,99,84,84,58,-75,4,75,14,99,94,-7,-7,62,99,83,93,-87,92,-12,93,85,99,-13,6,65,91,-75,93,93,80,92,97,-59,99,99,93,43,-8,76,42,63,98,87,32,63,-11,97,82,96,96,-99,89,95,97,64,53,54,96,-28,33,23,60,90,85,90,99,99,90,-77,80,85,12,10,98,93,31,-77,87,98,93,-55,52,88,-7,96,75,53,98,96,71,-33,98,95,-4,0,11,63,14,96,83,71,98,99,-78,98,67,68,87,69,93,99,99,78,99,99,99,98,80,98,91,8,-5,98,87,99,99,69,-54,99,60,56,22,21,99,-41,99,99,72,75,-82,65,69,79,95,-7,6,32,87,26,99,84,-52,85,95,86,91,91,93,70,-3,99,69,12,98,50,33,74,83,-69,75,42,84,26,92,-10,95,99,99,98,95,99,74,25,97,99,50,89,87,22,99,97,93,64,97,99,63,99,41,98,27,83,40,97,96,45,78,92,77,98,93,-38,58,43,7,97,98,98,99,-29,84,98,96,99,87,98,87,94,88,85,30,78,93,98,96,97,90,84,-42,99,98,91,93,68,97,89,91,68,65,89,96,93,92,70,96,92,89,98,93,85,69,56,98,-85,-66,71,-91,-18,83,98,94,56,96,71,12,95,92,89,95,99,95,17,99,91,-49,37,78,98,46,91,96,97,75,97,58,84,7,98,98,87,-83,90,95,25}
{53,-32,94,97,75,97,60,84,82,-37,51,89,98,96,98,65,88,51,47,65,83,-61,86,-62,69,80,-10,87,-57,94,14,-70,96,99,78,99,96,85,99,-4,6,93,91,83,77,80,41,80,-87,98,53,98,98,71,94,97,98,-65,99,95,91,99,96,50,77,86,-67,96,98,96,64,94,93,92,-3,72,97,-73,86,31,61,94,60,98,27,45,-26,89,87,98,98,98,84,99,39,96,-6,99,61,8,97,85,15,-70,70,51,48,99,96,0,-5,-90,97,94,95,-1,81,78,25,-74,65,99,88,-41,99,63,56,93,84,66,5,99,98,71,99,95,58,59,99,97,92,96,1,99,47,90,97,98,-16,84,98,3,99,82,73,70,90,98,84,79,98,85,-24,92,33,68,99,79,94,79,98,89,98,80,94,99,76,96,99,54,93,57,95,81,82,98,95,99,74,84,61,54,52,99,95,82,89,96,-96,-24,67,98,97,97,39,79,48,91,99,88,-76,99,63,28,62,47,93,40,-30,97,86,47,99,65,97,96,85,92,86,91,98,2,14,1,98,46,99,37,-40,-7,49,99,56,81,1,99,98,80,-13,69,98,99,84,-34,95,97,97,92,99,97,95,14,33,97,97,91,84,92,91,-3,93,79,90,52,-72,98,-2,-14,95,-99,99,87,78,99,88,96,28,86,-39,-97,96,48,94,98,98,99,76,76,71,-6,46,85,76,73,97,81,98,-85,96,-62,86,86,95,96,87,95,85,57,77,99,94,82,91,81,80,98,99,99,53,57,91,95,59,94,56,97,99,-3,61,89,92,86,92,-86,-58,79,-27,98,80,98,68,97,-37,82,97,61,99,-92,-37,12,98,91,66,43,25,95,90,98,6,64,47,87,93,98,85,-21,95,-70,94,96,-2,-28,89,94,99,44,42,81,99,99,94,99,98,-39,79,40,56,99,97,96,98,69,-9,-76,4,90,83,55,82,18,14,-21,31,95,47,86,95,20,12,99,2,99,72,99,93,96,89,88,82,-42,75,98,96,95,98,75,65,99,99,84,77,95,88,85,-44,90,82,-12,90,99,8,28,97,-6,93,62,33,99,47,60,65,65,-28,59,81,84,86,19,1,97,79,99,97,77,1,71,92,55,88,90,-90,93,76,98,95,89,99,95,99,98,97,91,74,-74,98,-72,97,-95,98,99,-73,98,66,85,73,95,98,-19,89,56,98,-6,-98,9,83,72,98,98,63,-8,97,-19,66,89,96,-4,98,99,22,94,75,90,86,21,87,78,13,91,-64,95,96,94,95,-31,-83,99,98,94,97,-56,97,-16,98,83,96,91,90,82,-88,99,-19,95,81,99,50,91,89,84,-27,99,-97,-21,99,95,96,50,98,29,60,96,94,91,75,60,99,62,-70,-47,96,95,74,81,48,99,96,68,57,98,96,94,-38,41,89,90,96,65,39,59,-54,83,99,8,37,91,83,99,93,95,83,99,84,-56,36,-2,81,24,99,97,87,92,99,-29,88,98,99,74,89,55,98,94,66,96,98,-86,16,72,97,56,89,39,99,42,76,98,98,-51,38,99,89,-41,60,-56,-38,92,96,81,99,96,35,97,95,80,83,95,-86,99,99,73,85,-18,95,97,6,92,-98,96,3,87,53,81,83,42,97,70,83,-3,97,6,84,-71,97,31,72,98,-37,99,73,95,21,-95,97,98,-77,96,98,92,99,79,7,99,91,83,-83,88,94,97,97,96,95,-57,93,-20,-88,89,97,86,29,99,99,78,83,4,48,99,98,49,58,12,5,98,99,97,53,41,97,-15,21,94,98,78,93,98,32,9,-6,72,59,87,88,99,87,99,-63,81,12,-60,79,31,-87,96,85,54,72,77,67,96,93,92,77,99,56,98,90,-31,84,81,95,97,79,20,76,97,90,76,99,75,30,98,-42,91,99,76,86,96,-10,98,99,86,95,52,92,99,92,92,-10,10,96,96,94,99,74,88,93,99,13,41,38,-15,53,99,56,-26,25,98,89,99,90,59,95,-2,10,-21,-21,99,71,26,89,-39,95,69,-31,79,-76,94,99,99,62,24,99,98,98,42,8,24,75,97,99,98,-31,99,64,95,87,82,17,94,99,-71,33,99,95,74,86,86,53,93,81,-30,94,92,99,55,0,69,25,99,93,-1,94,90,99,53,89,96,99,93,76,92,42,99,99,75,82,-40,-44,96,63,78,45,-34,-55,57,41,94,99,45,-7,99,99,67,-35,18,97,58,63,-31,-63,-33,99,91,80,92,64,43,98,78,90,96,93,59,94,-1,99,-21,90,79,84,8,62,14,54,-81,-54,98,-76,76,-34,91,97,77,95,99,93,74,-69,92,1,58,99,78,92,29,82,99,23,62,-60,99,90,99,99,90,62,90,-23,95,99,-70,90,29,94,-9,92,13,59,88,99,44,33,80,-71,62,7,95,46,51,69,97,91,86,99,91,-36,97,98,81,2,99,95,-33,83,37,10,-13,93,-6,99,84,15,98,76,-56,55,18,98,96,81,93,98,97,93,98,-36,92,15,97,17,42,-26,87,79,-75,98,-49,83,99,95,99,22,65,35,99,-4,63,-45,95,97,61,-48,53,48,92,98,72,99,69,95,63,99,85,5,98,35,98,63,98,61,96,97,69,5,99,98,-66,55,88,20,99,92,92,32,34,97,99,78,24,81,-4,63,99,-92,41,98,78,97,96,98,91,65,-33,91,96,99,88,89,88,69,-70,57,-5,95,-44,73,99,93,11,51,-40,49,86,98,99,99,61,96,96,85,66,77,92,56,77,10,93,34,97,-63,81,57,99,7,-55,83,14,84,97,98,98,97,94,13,45,96,-98,69,79,25,-63,98,-58,87,99,-95,47,99,30,95,91,28,60,14,84,83,8,78,99,89,48,75,92,89,36,81,-13,-96,94,91,99,86,92,99,99,20,32,-44,54,99,78,99,91,99,98,86,57,92,-18,97,53,67,99,90,94,90,5,76,35,99,52,98,85,99,65,93,-12,99,98,39,-91,44,99,6,95,98,87,81,58,-90,99,99,99,89,-76,84,86,89,61,83,58,88,99,74,20,97,48,99,94,69,-69,94,65,98,99,99,99,81,99,93,72,78,96,99,42,98,-32,97,6,94,-31,-13,95,91,80,-1,97,64,98,67,32,93,98,97,96,84,-37,84,94,49,81,97,97,95,87,99,97,92,99,99,90,-35,-18,89,99,97,-97,61,67,99,97,84,44,90,89,-3,36,99,65,59,91,97,88,16,81,91,56,84,91,86,99,35,-6,90,98,-22,83,84,-45,76,-63,69,-87,94,90,82,99,93,53,95,70,85,96,97,97,92,96,-6,67,88,-45,96,-9,98,94,70,99,70,91,99,98,91,36,5,99,84,96,99,94,98,0,33,78,99,99,-90,65,79,25,97,-70,-67,99,-73,80,-81,72,13,-36,-7,88,95,99,-73,89,97,96,93,30,99,93,99,-8,88,96,96,75,99,99,-4,-22,77,78,95,96,81,52,97,84,95,-76,-70,46,84,98,98,98,-14,73,99,61,87,-88,79,94,99,92,23,69,99,97,95,85,99,91,93,99,98,96,91,88,-25,99,99,96,99,34,99,93,83,73,99,98,-71,58,72,99,99,84,91,64,60,93,94,7,96,97,2,-34,30,36,89,89,-92,99,65,66,99,67,50,72,70,19,-26,69,50,80,98,87,93,81,97,87,47,92,25,60,98,11,93,97,93,99,96,99,84,97,95,95,43,8,84,94,-23,79,99,91,92,95,98,87,98,97,63,6,89,97,87,-54,99,94,94,96,-11,-6,85,99,86,98,95,75,91,82,90,99,-68,99,-21,-40,46,18,95,91,48,99,97,93,87,42,76,88,98,-82,98,86,-62,98,96,55,83,98,69,91,71,-35,98,99,95,93,93,99,-18,23,99,95,46,98,46,54,89,61,43,98,-11,-2,99,44,85,99,83,-3,24,98,58,99,77,97,33,66,80,86,92,82,77,55,99,92,3,99,99,-39,85,-53,99,97,27,97,94,91,31,-60,91,99,98,70,90,-31,93,99,97,81,23,76,99,96,-1,-10,96,-19,89,72,97,98,96,14,92,38,47,25,99,-9,78,81,-92,99,86,58,57,92,85,96,80,32,92,96,92,-25,0,99,88,-68,75,79,97,72,99,96,97,62,99,93,25,96,66,77,99,3,92,68,36,13,62,85,99,96,5,41,97,87,-71,11,19,-76,91,99,83,72,94,98,96,79,97,24,91,90,77,21,74,83,99,63,96,73,1,91,70,89,99,80,90,-88,98,99,98,99,90,96,19,99,99,94,45,98,56,99,45,98,70,73,-1,81,92,33,98,99,80,98,-41,96,38,99,99,99,85,93,99,56,83,13,46,98,97,93,45,-60,-35,21,57,73,99,27,96,81,90,99,96,-62,92,45,-28,96,97,66,89,89,95,98,56,99,22,16,26,99,97,8,34,40,64,49,86,98,82,64,91,11,-51,99,79,68,13,96,94,96,98,-86,74,15,-24,99,97,-63,-38,49,74,81,99,-51,53,99,61,51,98,97,-49,95,-93,94,95,91,93,96,95,59,97,30,99,91,42,-3,98,22,54,94,80,14,95,-3,83,99,-4,95,90,-31,91,79,96,99,89,69,43,97,98,78,87,94,85,99,96,-37,79,10,99,93,19,94,97,44,94,47,97,-12,93,98,97,99,81,38,-90,66,74,87,75,49,99,97,50,79,97,91,92,-88,5,27,89,72,32,-43,95,94,90,98,29,77,0,52,87,97,5,-52,95,60,77,96,99,99,93,94,99,87,87,92,88,-39,89,-26,82,29,99,90,97,62,65,68,95,95,97,93,92,78,99,62,98,89,-85,99,33,-22,89,94,99,97,95,46,64,91,92,99,46,85,93,-47,-44,84,98,88,-50,-89,10,99,68,42,99,95,99,97,96,58,72,92,45,-17,99,98,99,98,82,96,95,81,78,-40,98,-90,-12,36,82,85,6,98,-19,97,74,99,99,91,97,99,65,-66,93,89,97,97,97,57,82,60,29,91,99,76,89,98,64,60,14,92,98,99,91,90,99,-40,80,99,-40,92,97,98,42,85,33,99,28,35,82,-60,89,11,97,97,48,97,20,-61,7,-43,98,90,97,99,76,32,99,74,95,65,91,71,55,69,-72,75,95,97,90,40,85,-65,81,76,19,-16,76,98,89,67,80,0,86,92,99,96,71,91,76,99,99,96,97,76,96,88,17,97,96,71,-96,92,98,99,71,97,90,88,57,89,99,94,86,62,97,21,99,92,-65,67,73,99,94,99,-7,93,14,98,48,78,95,99,65,98,79,91,92,90,96,68,89,-2,93,97,86,72,28,99,36,78,94,96,37,99,83,86,98,94,-32,-43,-10,86,-16,45,75,99,13,99,23,-19,-70,99,86,-77,44,88,99,97,34,82,70,57,92,-98,-88,57,96,77,93,98,79,48,93,83,94,97,63,99,-62,61,85,-23,68,99,-43,10,99,-12,92,26,88,33,-30,17,99,99,81,90,91,46,90,99,96,99,40,99,-4,98,69,94,98,89,76,96,80,99,70,-33,99,95,99,96,74,95,97,16,11,89,73,60,-97,96,57,96,98,21,66,92,99,89,90,99,81,97,76,65,68,42,99,99,99,-75,79,99,90,97,90,95,82,-60,58,92,79,99,96,74,81,-27,59,-41,96,99,36,11,50,77,38,20,81,67,42,-69,88,99,99,90,-48,81,99,42,99,47,72,98,-19,95,78,57,79,99,59,84,-97,96,99,91,-89,-74,82,90,38,98,98,66,26,-57,70,-96,95,96,73,-78,-70,99,72,91,72,-36,99,99,96,98,98,-7,89,99,98,42,85,-72,95,99,98,66,83,88,92,-36,99,93,20,98,96,60,97,95,55,94,88,56,89,85,39,-80,24,-1}
{100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100}
Returns: 5.6575016289E10
{-94,37,-77,-75,-97,-67,-96,-97,70,52,-91,-98,-52,-78,-92,-70,-94,-75,-99,-20,-83,-86,-98,-35,-65,62,-99,-87,11,-28,-98,-99,-98,-97,-67,-78,-90,46,-97,99,-98,-37,-99,-68,-70,36,-91,-87,-99,-98,-99,-75,-37,-75,-97,-33,-95,-99,-97,-95,-18,-98,-90,-95,-98,-99,-94,18,69,-42,-49,-85,-99,-91,-98,-59,-97,-52,-1,-2,-81,-93,-81,31,20,-98,-99,-99,-99,-81,-97,-95,-80,-97,-80,-39,-99,-89,-97,-90,-42,-88,-74,-99,-97,-95,-78,-86,-28,-65,-49,-36,57,-97,-98,-83,-96,-86,-95,-80,-54,-77,-94,-74,-99,-72,-98,-98,-96,-50,-94,-94,5,-99,-95,-99,31,25,-90,-1,-87,-92,25,-23,-52,-11,-43,18,-85,-99,-82,-18,-76,-97,-98,-34,-63,-97,-97,-87,-50,-99,31,-72,-98,-97,-97,-99,-96,99,-95,-82,-98,-97,-73,-92,92,-82,-80,-98,-99,-99,-89,-67,-81,-99,-99,-59,-84,-69,-92,98,-91,-99,-99,-28,-92,-99,-99,-97,-92,-98,-88,-7,-99,54,-95,-96,62,-96,-78,-14,-89,-99,-46,-72,-99,-83,-96,-35,-17,-24,-88,-98,-63,-10,-44,-99,-87,81,-84,-75,54,-88,-99,-88,-98,-97,-59,-93,-50,-99,-93,-99,11,-97,-69,-76,-96,-95,-93,-84,-89,-67,27,-95,-71,-98,-70,-85,-99,-50,-44,-84,-72,-43,46,-78,-99,5,-99,-70,-94,-99,-99,-99,-48,-97,-91,-80,-96,-27,-99,-98,-94,-97,12,12,-47,40,-99,-64,-96,-30,-99,-99,-96,-72,-87,-97,-99,-87,-61,-91,41,-95,-95,-69,-93,27,-95,-62,-61,-97,-73,-76,-97,-99,-89,-57,-42,-12,-91,-94,-14,-98,-86,42,-99,-99,-23,-13,43,-85,-99,53,-94,-90,-98,-97,-63,-99,-61,-71,-80,-79,-96,-17,-66,-93,79,1,-19,-91,-66,-82,-96,29,-99,20,55,-95,-99,-98,2,-95,-95,-99,19,44,-83,-98,-99,-95,-96,-98,-94,-97,-43,-98,-98,-80,-31,-98,-5,-98,-97,24,-77,-78,86,-84,-97,-65,-95,-90,-35,-65,-98,-98,-96,-98,-99,-75,-95,-89,95,11,-95,-94,-96,-98,-40,-80,-98,-15,-97,-99,-96,-99,-2,-97,-66,-95,-69,81,-99,-91,-96,-93,-98,-67,77,-93,-60,-99,-61,12,-76,-93,-99,98,-98,-89,-47,-87,-80,-97,-82,-96,-67,-45,-88,-80,-61,-83,-71,-99,-6,-93,-99,-96,-94,-96,-73,-99,-60,-98,-3,-95,92,-85,-96,-98,-77,95,-80,-98,-10,-99,99,-99,51,-95,-96,-99,-36,-99,-76,-94,-97,-65,-93,-95,-68,3,13,-73,-49,-99,-97,-7,-87,71,-99,-97,-78,-76,-98,-42,-98,12,-86,12,-22,-87,-95,-99,-43,-89,-54,-97,-31,86,-98,-99,-99,-88,-90,28,-60,-72,-99,-99,-89,-99,73,-90,-93,-69,-95,-98,53,-82,-87,-97,-69,-59,-95,-19,-32,7,18,-99,-25,-75,27,-95,50,-86,-98,-61,6,-96,-68,2,-97,35,-48,-99,1,-99,-80,28,-36,-98,-41,72,-95,31,-99,-71,10,-97,32,-64,-84,-99,-99,-98,-92,-96,-5,-53,-85,5,-88,-73,-97,-75,-99,-93,-87,-94,-99,-99,-98,-98,-73,-92,-95,-68,-92,-91,-72,-89,46,-95,-87,-99,-57,48,-38,-22,-66,-90,-89,-76,-72,-56,-97,-10,-28,-99,-99,-87,-68,-69,-99,26,-97,-86,-99,-96,-99,-62,-97,-86,-98,-81,-96,-98,-93,1,-96,-46,-92,-41,-98,0,-97,-85,-99,-34,97,-15,-92,-97,-22,-98,-51,42,-94,-92,-68,-86,-96,-96,-70,41,-26,-79,-96,-13,-98,-75,-90,-66,-62,-98,4,-89,12,28,-83,-99,-44,-87,-93,-96,39,-84,-98,-98,-99,-99,-92,-96,-24,-79,-96,-83,-96,-59,-99,-87,82,-97,38,-81,-90,-99,-98,29,-98,-99,-86,-99,68,-12,-99,-84,-89,-59,-95,15,-99,-99,-98,-62,-95,-41,-87,-95,-57,-98,-92,-87,-90,-94,-70,-73,-63,-97,-87,-97,-71,-91,-98,-43,-95,-96,-52,-92,-98,-77,-23,-98,24,-92,-68,-93,-1,-82,-22,-72,-88,-99,-89,-95,-92,-73,81,-97,-82,72,-92,-28,-99,-14,44,-99,-48,-95,11,-57,-77,-99,72,-80,11,-99,54,43,-36,34,-99,-68,-94,48,-97,-8,-97,-92,-90,-98,-84,-31,-85,-89,41,-97,22,-98,-8,-81,-99,-79,-31,-99,17,-45,-73,-95,-93,-12,-74,-94,-4,-99,-81,-57,-17,-99,-98,-76,-93,-97,79,-99,-98,76,-63,-97,-94,-99,5,-44,-89,-67,-95,-81,89,56,-93,-49,-68,-93,-87,-99,-92,-99,-94,-99,-99,-82,-34,58,-99,-20,29,-94,66,-48,-99,-98,38,-33,-62,-96,-99,-74,-94,63,-80,-98,-91,-99,-99,95,-79,-12,-90,-84,-83,14,0,-97,-98,-93,-97,-98,-99,-84,20,-70,-94,-97,-95,-98,-98,-34,-63,-13,-91,-94,-4,-55,-71,18,-93,-41,-99,-77,-83,-97,-70,-96,-96,-99,-79,-55,-98,-95,-25,-83,-87,-98,-97,-97,-99,-94,-74,87,36,-90,-7,-43,-99,-92,-92,-97,-97,-96,-34,-55,-78,2,42,-96,-61,82,-97,-78,-13,51,-94,-99,-97,84,-99,-99,-13,-80,26,32,-83,-91,65,-51,-98,-94,-35,-72,-75,-82,-98,-93,-86,21,52,-98,-99,-39,-80,-75,-99,-33,-17,-68,-94,-94,-94,-54,-77,-98,-97,-96,-66,-97,-98,-99,11,-84,10,-97,-99,-90,-97,-99,-96,-70,-98,-96,-51,92,-94,-10,-92,27,-70,-98,-44,-96,-93,-49,-94,-99,-69,-98,-99,-90,-82,-99,-91,-94,-88,-96,-99,-99,-86,-63,-98,-39,-99,-94,-96,-91,-65,-91,-97,-24,-69,-92,-96,-84,-99,-88,-99,-98,-89,-47,-74,-58,-86,-95,-99,-84,10,42,-94,-41,-97,-97,-97,-99,-99,20,-74,-71,-97,-84,-99,-99,-57,-90,-99,-99,-96,28,-85,-96,-97,-63,-98,-99,-31,-99,-99,-96,-98,-99,-79,-15,-88,-64,-99,-98,-94,-97,-86,25,-98,-87,-99,-60,-92,-87,-91,-27,-99,-58,-98,-99,-56,-95,-85,-99,-48,-96,25,-72,-88,-80,-20,-99,-17,-98,14,-98,-98,-98,-99,-97,-73,-95,69,12,-99,-86,-73,-94,-97,-94,-97,-47,-95,-88,-66,-94,-54,-99,-90,-99,-66,-48,-98,-93,-99,-98,-78,-87,-99,-60,7,-60,-99,-96,-42,-81,-98,-94,-97,-95,20,-66,16,-10,-78,-98,-91,-84,9,41,-98,-89,-97,-99,-82,-98,-95,-96,-93,-99,-98,-99,13,-99,-70,18,-65,-98,-91,-99,-80,-72,-46,-71,-92,90,87,87,-99,-98,-98,-98,-91,-99,-93,-97,-31,-53,-98,-99,-86,-99,-99,-7,-99,-10,-75,-99,-99,-85,-98,-50,-94,-96,-97,-96,-97,-98,-99,-97,-82,17,-90,15,-95,-99,-82,-99,-99,-88,-89,-98,-97,-99,-97,15,-55,9,-94,-66,-77,-82,-42,-48,-48,-98,-57,24,-99,-40,-27,-24,-79,-90,-98,57,-80,-97,-1,-96,-96,-93,-3,-91,-98,-84,-80,-83,16,-97,-87,-21,-97,-23,-93,-91,-84,-94,-52,-53,-98,-94,-99,36,-96,-96,-14,-97,-80,-89,-98,-99,-98,-27,-99,99,-80,-73,-68,-98,-99,-89,-99,-96,-70,1,-99,-99,-79,-97,-6,-91,-99,-97,-85,-94,14,-99,-94,-94,95,-96,-98,-98,-97,-82,32,-65,-96,76,-97,-99,-39,-71,-88,-93,-94,-99,82,-26,-80,-88,-85,-96,-93,35,-64,-51,25,98,-10,-98,-92,-99,-82,-41,-99,-99,-97,-88,-66,38,96,-98,-98,-95,2,-91,-98,-91,-36,80,53,6,-98,-97,89,-99,-96,-93,-97,-76,-88,-98,-98,-10,-99,-96,-99,-97,-97,-81,-15,-99,-96,-43,-99,97,-64,-84,-75,-98,-86,-70,-98,-93,-60,-56,-89,-98,-51,62,-47,-61,57,-89,-36,-46,-98,88,-99,-50,13,-96,-98,-69,-74,-76,87,-74,-50,-93,-13,84,-52,-55,-99,-75,-98,44,-93,-90,-99,-19,-98,-77,-68,-69,-99,-72,99,-9,-79,-88,-99,-66,-99,-99,-9,10,-90,-88,86,-85,-73,-8,-90,-75,3,-87,-52,-97,-70,99,-98,-95,1,-75,-35,-94,34,-98,-99,6,-95,-68,-97,-6,-33,-96,-99,-97,-1,-95,-96,-56,-65,-99,-99,-99,-70,-98,-73,-99,-98,-57,-90,-93,-88,-48,5,-91,-82,-78,-41,-85,-94,-92,-19,-99,-99,-98,-90,93,-95,-67,-86,-63,-98,-87,-74,-99,77,-98,-29,2,-54,-93,-96,-79,-99,-62,-84,-98,-97,-87,-97,-94,-96,-84,12,37,-93,-95,-88,-68,-52,-91,61,65,-41,-99,-93,-86,-97,-19,-84,-97,76,62,-97,-99,-97,-99,-94,-1,-99,-99,-89,-99,-98,-85,39,-97,-90,-67,-91,-49,-97,-55,36,-98,-96,-93,-83,-82,-92,24,-97,-94,80,-97,-90,-95,-7,-56,-96,-46,-97,-96,-7,-53,-99,9,-70,-96,-66,-96,85,-40,-21,-99,-81,-97,-94,-98,-97,-90,-24,-82,-14,-99,-50,-86,-64,-98,-82,-17,84,-1,-70,-21,-66,-99,-95,-59,-68,-97,-98,-99,-95,-84,-93,-84,57,-90,-23,58,-11,-64,-72,-91,66,-76,-99,-43,-98,-92,-98,-85,-79,-89,-91,-54,88,-88,-72,-95,-76,-91,-95,-99,-99,-76,-65,-73,-82,48,-77,-99,-88,-95,-98,-99,-41,-44,-27,57,-94,-90,-86,-98,-62,-85,-56,-82,6,-79,-98,-85,-93,-57,-93,71,-97,-98,-25,4,-60,-97,-59,-14,-51,-80,-75,-28,-29,-87,-99,-82,-17,5,-90,-99,-72,-82,-97,-19,-50,-34,-73,-71,-58,-99,-61,-4,-97,3,57,-99,-83,-94,-78,-93,-55,-78,-99,-97,-98,-15,-41,-93,-13,-98,-99,-14,9,-59,-95,-72,57,-77,-97,-97,55,-84,-36,-30,-93,-92,-99,-81,-99,-25,-67,-99,-95,-75,-71,-41,98,-88,48,-59,-40,-92,-88,-62,-3,75,29,-87,-39,-96,-97,36,-99,-99,24,-83,-1,-65,-90,12,-70,-95,-98,-81,-61,-97,-99,-6,-99,-90,-94,-87,96,-75,-98,-89,-8,-19,-96,-86,-88,68,-97,-98,-98,-95,-34,-90,-96,-25,-88,-76,-96,-99,-98,-97,-99,-99,-96,-59,-82,-98,-98,-99,41,-99,-95,-98,-96,76,-92,-58,-57,-65,-97,-15,-70,-14,-73,-65,-97,-99,17,-93,21,58,35,-88,-63,-81,-86,-98,-64,-46,-93,-55,-92,-37,-98,-39,-98,-91,-98,-46,-98,31,-68,-79,-97,-97,-95,-71,-94,-96,-91,-93,-99,-65,-93,-67,-98,27,-95,1,-71,-97,27,-98,-98,-22,-97,-99,-10,-40,-96,-53,-86,-94,-48,-66,-99,-99,-99,-59,-87,-99,64,-41,-58,-97,-99,-12,42,-67,-95,-46,-87,-75,-79,-88,-39,-99,-96,-50,-99,-31,-99,-95,-94,-52,56,-99,60,-90,-47,-99,-98,-59,50,-54,-95,-96,42,-89,-99,-99,-78,-79,-99,-66,-88,-24,-70,-82,-92,-92,53,-97,-55,-98,8,-99,-98,-85,-49,-91,-77,-98,-95,-85,-99,-93,-98,-75,-99,-96,-99,-97,36,33,-99,-96,-72,-97,-93,-74,-98,-64,-14,-49,-76,-75,-96,-92,-96,-88,-94,-99,-33,-66,-99,-73,-98,-97,-97,-51,-99,-23,-84,-64,7,-95,-84,-32,0,-34,-96,-96,-98,-82,-51,-91,-97,-95,-53,-12,-98,-87,-61,-97,-96,-59,-98,-46,-92,-53,-79,-13,-95,-77,-93,-98,-96,-66,-75,73,45,-49,-93,-76,12,-90,-92,-99,-39,-65,-83,-97,-84,-90,91,-90,-91,-90,-94,42,-85,-98,66,76,-99,-99,-74,-99,46,20,-96,-41,2,-97,-98,-99,-69,-39,-79,-90,-49,-99,-86,-99,-85,-32,-95,-99,-99,-90,-8,-84,-63,-29,-52,-89,-99,-55,-88,-97,-72,26,-75,-62,-74,-99,-94,-96,23,-76,-89,-75,11,-95,-83,-57,-99,-98,-93,-96,-27,-99,-60,-86,-95,-99,4,-78,-99,83,-81,-99,-96,-66,-97,-97,23,-31,54,-61,-33,-68,-90,43,-91,-99,-73,-76,-99,46,-73,-95,-96,60,-68,57,-97,-99,-91,-84,99,-99,-90,-63,-87,-65,43,-61,-93,54,-82,42,9,-83,-99,-96,-90,-93,-1,-24,5,-71,-91,-36,-98,-86,-41,-10,75,-98,-99,-85,-21,-71,-92,82,-98,-77,-75,-99,45,-55,-98,-99,-97,-98,-95,-28,-78,-95,38,-91,-91,2,-58,-98,91,-87,-99,-99,-65,13,-34,-96,10,-66,-92,57,-84,-98,-91,-96,-92,-56,-88,-88,-71,-69,-99,-97,-99,-60,-66,71,-98,-99,-51,-48,-76,-24,-91,-44,-50,-94,-88,-66,-89,8,-93,-99,-93,-89,-97,-23,-93,-99,-62,-95,-98,71,-76,-6,-72,-43,-99,-99,-95,-98,-99,-22,-92,-98,50,-71,-99,-97,-43,-59,-80,-98,-26,-95,-87,-99,-98,-94,-95,-70,-99,-99,-99,-87,-98,-94,-95,-89,-99,-80,-75,-66,-98,39,-96,-43,-97,85,-70,-16,-3,-73,-99,-95,-94,-95,-94,-99,-3,-59,-99,-34,-95,20,-90,-96,-82,-89,27,-53,-64,-89,89,-99,-95,-84,-87,47,-99,-81,-38,-97,-91,-93,-21,-98,92,-82,-99,-84,-98,-98,-99,97,-88,76,69,44,55,71,8,-97,-55,-70,47,-99,-99,-8,-99,-97,-50,8,-91,-90,-73,-97,-83,-80,-98,-16,-13,-98,-15,53,-2,-99,29,-54,-99,-92,-76,-98,-65,-99,-95,-91,-89,-29}
{88,-99,56,-98,-75,-42,-99,-98,-88,23,-96,-97,-91,-85,70,-92,-96,35,-54,-97,50,-24,-99,-95,-50,-94,-99,-99,4,-82,-99,-91,16,-92,-94,-97,-99,-99,-93,-57,-86,-92,-57,-96,-99,-99,91,-99,-97,-74,-98,-99,47,-80,-53,-85,1,-86,40,-97,-93,-90,-97,-59,-81,-97,-98,-98,-98,-46,-86,-37,-80,-46,-95,-97,-97,39,-89,-90,-98,-90,-77,-98,-66,-72,18,-74,-97,-85,-99,-99,-98,-77,23,-91,-93,-86,-87,-95,-96,-99,-95,-98,58,-85,-99,-92,-99,-77,-98,-96,-92,-97,-98,-16,-11,-25,66,-99,-85,-93,-92,-79,-69,-95,-94,-97,-85,-99,-99,-99,-72,-97,-92,-99,-40,-36,-99,-96,-89,42,-70,-93,-97,-15,69,-99,97,-95,-80,-81,-2,-15,-79,-56,-60,-58,-96,-68,-99,-42,-99,-91,-81,-99,-86,-94,-85,-95,-63,-95,-85,-35,0,-99,-94,-94,-97,-86,-87,-99,-64,-99,-99,-99,-92,-95,-35,-32,-98,-95,14,-71,96,-90,-95,44,-99,86,68,87,-99,-99,-52,-35,-97,-98,-93,-99,-99,-35,9,-94,-12,-6,-97,-56,75,92,-44,-99,-5,-75,15,-98,-99,-97,25,-96,-90,-99,-97,-89,-97,-99,-96,-89,-64,-97,-99,-93,-92,-98,-85,-25,-46,-76,-98,-90,-48,4,-65,-98,-94,-94,-78,-69,-53,-86,-91,88,-75,73,-97,-99,-91,-39,-93,-85,-94,59,-97,31,71,-98,-96,-89,77,-96,-81,-97,-99,-8,63,-9,-99,38,-99,-72,-99,-95,-92,-99,34,-89,-99,-98,-46,-98,-96,-87,-99,-57,-97,-99,-54,-9,-38,-98,-99,-14,-94,-98,-69,10,-29,-99,-45,-88,-21,-93,-96,-82,-83,-17,-71,-72,-97,-97,-56,-62,-99,-81,-72,-81,-80,-99,-87,3,-81,-98,-76,2,32,-60,12,-68,-38,-50,-41,-86,-98,-24,-80,-98,-69,-99,-26,-96,-94,33,-65,-91,13,-80,-82,-93,-99,-93,-20,-89,-43,-96,-98,-77,-99,-28,-67,-90,-51,-99,-96,-71,-81,-71,-19,29,5,-42,-88,-72,-45,-64,-60,-12,1,-89,80,-96,-56,-91,-99,-58,16,-71,-63,-99,-17,-82,63,-96,42,-60,-59,-66,12,-69,-95,-91,-98,-90,-99,67,-99,-99,-72,-93,-94,-49,-98,-94,-94,-42,87,-98,54,-93,-70,-60,-28,19,-83,-97,-90,-99,14,-22,6,-92,-64,-98,-21,-75,25,32,12,-95,-94,-87,-97,-89,-84,-94,-99,-98,9,-45,-61,-98,-93,15,-78,-36,-17,-97,-34,-77,-19,-95,80,-99,-98,-99,-53,-8,-89,-51,-97,-70,-90,15,-98,-98,-33,-99,-95,-96,88,-78,-96,-99,-82,-99,-85,-93,-98,-55,-33,-85,-92,-98,-93,-90,-99,-96,-96,-94,-99,6,-73,-85,-28,-99,13,-97,-83,-35,-98,97,-96,-83,84,-7,65,-99,-69,-59,-98,29,-41,-13,-84,-98,-95,-84,-42,-57,71,-57,-43,10,-60,-64,53,-98,-94,-78,-12,-70,-86,15,-99,-63,-90,-98,-80,-98,-99,-95,-88,-98,2,-81,-89,-99,-72,58,-97,-54,-99,5,-86,-88,-98,-75,-98,-58,-92,-90,-95,-8,-62,-98,-97,-98,-16,-91,-46,-98,-99,-81,-70,-70,-46,-99,-91,-72,-88,32,-40,-96,-80,-84,-91,-4,84,-98,-99,-99,-98,-95,-97,-58,-35,-94,-66,-98,-87,-92,-5,-88,-88,-76,-94,-99,-90,33,-91,-76,-86,-96,-98,-54,-93,-86,-29,-92,-90,-66,-94,-31,-69,-84,-99,-99,-96,-48,6,-90,-43,-65,80,17,56,-97,-35,21,-87,-42,-94,-91,-99,92,-86,-61,-38,-73,-83,-91,-99,-48,-96,-41,-96,-76,-97,-28,-99,-57,-69,-76,-99,-13,67,-88,-60,-88,-89,15,-94,-83,-96,-98,-64,-80,-92,-95,-99,-56,-39,-96,-95,-99,-94,-58,-98,-97,69,-98,-96,-46,-81,-98,-99,-97,-55,-99,-54,-27,62,-89,-99,61,-98,-95,-99,-99,71,-48,-34,-16,-31,-25,-57,-99,-96,-60,-97,-94,-84,-86,-96,-99,9,-90,-42,-30,-55,-97,-69,-95,-96,-56,25,-98,-82,-97,43,-96,-92,-70,-93,-16,-97,-31,-98,-95,-67,-69,-74,-93,-33,-28,41,-98,-55,-99,-84,-97,-33,-43,-65,-93,-97,-82,-99,-13,-47,-88,-90,-16,-49,-94,-98,-99,-94,30,-44,-82,-99,-99,-48,-1,-3,-88,-86,-99,-95,-94,-24,-93,-98,-31,-35,-95,76,-99,-95,-98,-98,86,-67,-99,25,20,-40,-71,-11,-29,-96,-92,-85,22,-99,-94,-99,-99,-99,-89,-28,-97,-97,10,-66,-44,-96,-79,-97,73,-95,-89,-7,-76,-93,-50,6,-74,-98,-97,-63,-92,-63,-93,-80,-98,-92,-91,-98,-51,-74,62,17,-97,-98,-99,-92,-96,-87,69,-98,67,-99,10,-92,1,-98,-97,-97,-62,24,-99,-97,-81,-98,-48,-67,87,-86,-99,9,-98,-99,-97,-98,46,-73,-97,-94,-94,-60,-97,-98,-95,-98,-95,-99,-99,-50,11,-27,-98,-93,-95,-71,4,29,-63,3,-53,-42,85,-89,-45,-99,-69,-94,-90,-98,-64,-78,88,-89,1,-99,-76,-96,-67,-18,-84,-96,-80,13,-99,-47,-75,-75,-21,74,-53,-95,-39,-97,-99,-37,-98,78,-21,64,-98,-88,-48,-93,-57,-99,-99,-64,-99,-53,-98,-86,-99,-90,-78,-97,-99,-38,-47,-98,-99,-96,-90,-66,14,50,-35,-83,-71,-92,-7,-97,68,-57,-85,-33,-60,-98,-94,-96,54,-95,-97,-99,97,-94,-24,-38,-52,-99,-81,59,-99,-99,-94,-99,-61,-96,43,-61,-93,-99,-98,-99,-90,-88,85,-83,40,15,-84,-63,47,-83,-93,-98,-11,21,-99,-98,-99,-91,-80,-91,53,-95,-99,19,-92,40,-99,-98,-97,-96,-81,-63,-84,-15,-88,9,-62,-99,-99,-84,-98,43,-89,-99,28,-98,-87,-9,-98,-53,-99,-52,-79,-99,15,-76,-8,-51,-94,-19,-81,-54,-96,80,-97,-72,-96,-99,-96,-61,52,-93,-79,-43,92,-94,-62,-89,22,-88,-99,-51,-96,-89,31,21,-98,-49,-44,-99,-67,-46,-93,-96,-64,-82,-45,-99,-85,-88,52,-88,-26,-13,-41,-11,-99,-97,-72,-99,-90,-98,28,-95,-99,-3,-71,-41,-75,-99,-97,-98,48,-75,5,83,1,-50,0,-78,-94,-99,-97,-99,-50,-99,-97,-52,-99,3,-97,-56,-98,-96,-75,42,-91,-97,50,-93,-99,-88,-91,-95,-54,-91,66,82,-50,-99,-93,-13,-96,-33,-95,-95,35,-94,-65,-99,-99,-95,-93,-98,-82,-68,-90,-95,-16,-70,-61,-99,-95,-91,-52,-97,-99,-83,-97,-80,-98,-28,56,-99,87,-98,-22,-89,-40,-98,-69,-96,-94,-19,-69,97,-86,-85,-44,-90,-96,-70,-55,-98,-86,-92,14,17,-95,-22,-98,-67,-84,12,-96,-7,36,-72,-58,-99,-98,-98,-89,-93,-28,-54,-92,-93,-94,-97,-74,-65,6,-72,-88,-38,-98,-43,-83,-53,-99,-98,-95,-87,-90,-99,-95,-87,-50,-76,-79,-98,-99,50,-97,-98,-98,-80,-76,-52,-97,36,-51,-96,-78,-98,-21,-99,-95,-37,54,-87,-99,-99,-90,-87,-45,72,-8,-83,-85,-97,-99,98,-95,-94,-89,-71,-98,-90,-98,-99,-49,-84,-63,-99,-96,-81,-98,-82,-99,89,-99,-96,-79,-24,-1,-89,-46,-93,-95,18,-87,-49,-25,-99,-81,-68,-94,-84,51,-80,-78,2,-46,91,-95,-88,-99,39,6,-67,-99,-61,-49,-56,-99,-79,-99,-99,-61,-89,19,-90,28,-99,46,-94,-50,-62,76,-96,-66,-99,-84,-99,-79,-18,-89,-84,-84,-97,-65,-47,-68,-22,-97,-76,-77,-17,-69,-97,-85,-98,-12,-18,-98,-66,-43,-23,-84,-97,-97,-98,-61,-94,-99,-96,-96,-19,27,-86,-99,-64,-59,5,-29,66,77,-82,-9,-98,-69,-82,-10,-75,93,-75,-95,-98,-99,-98,-98,-39,-94,-65,-68,26,-49,-71,-93,-99,-83,-83,-98,-90,-85,-74,-52,-63,-79,-99,-93,-98,-24,-99,-97,-72,-73,-86,-88,-98,-58,-83,-87,-94,-92,-99,38,-91,-91,-98,-82,-99,-38,-74,-93,-85,-89,-98,-86,-99,-99,-59,-99,-62,-99,-75,-74,-60,-84,-99,58,-91,20,-96,-96,-32,-97,-82,-94,-94,-28,-97,35,-79,-94,-53,-94,11,-97,-51,67,-78,-91,-23,-99,-94,41,71,-99,-99,-96,-96,-95,-59,-98,-1,-50,-98,-75,23,-97,-99,-84,-84,-94,15,-99,-94,-5,37,-13,-99,35,-99,-96,-99,-99,-98,-99,-96,34,35,30,-99,-55,15,-11,-99,-93,-88,-77,-93,-93,-96,-85,-50,-99,-98,-93,-99,-63,-99,-86,-91,-79,-99,-99,-81,-87,-76,-98,-86,-59,-89,-79,-99,-64,-98,83,-76,-99,-88,-98,-99,-28,-90,-88,-93,-95,-65,-97,-26,58,-72,-98,-82,-98,-90,43,-99,-70,-69,-91,-61,23,-95,-50,-67,-11,-65,-99,-68,-99,91,-99,-22,-96,-38,-69,-42,-99,-99,-94,-81,-65,-99,-99,-98,89,-99,-41,-72,-91,-89,-86,-50,-72,-6,-90,-74,-97,-99,-74,-99,-98,-95,54,-89,-94,-96,40,-94,-85,-98,-32,-97,-90,-86,-66,-92,-92,-99,-87,-98,-76,53,-86,-96,-82,-75,9,-99,-81,-62,-99,-95,-21,-13,-5,-99,-90,-99,-99,-96,-80,-96,-95,-98,-84,17,-93,26,-89,19,-97,-79,-56,-17,-44,7,-98,-34,-97,-98,40,59,-98,-94,-51,-99,-60,-47,-87,23,-95,-99,-99,-98,-27,-97,-99,-86,-91,-55,-91,-99,-52,-99,-98,-36,-99,-93,-94,-97,-54,-98,-55,-66,-92,68,-28,-29,-98,-94,-87,-96,-99,-3,-97,-89,8,-47,-48,-59,-99,-56,-45,-99,-84,-83,-71,37,17,-66,75,-90,19,-68,-57,22,-80,-99,-10,-91,-99,-41,-80,-98,16,-87,36,-66,39,-96,-95,-84,-45,-97,-94,7,75,-92,-89,-82,-91,-87,83,-99,-96,-86,-86,-99,-99,-81,-94,-31,-97,-97,-99,-71,-99,-98,-97,82,-96,-99,-27,-96,-23,15,-21,-99,-98,-75,-66,-99,-99,-52,-73,-86,-99,-98,-98,-99,-35,-95,-79,-99,-39,48,-96,-96,52,-96,-94,-77,-82,-98,-34,-93,-97,-50,-95,-24,-98,16,69,-96,18,-49,28,-75,-96,-98,-99,-19,-23,-90,-43,-21,-92,-99,-72,-98,-82,-94,-14,-97,-83,-88,-29,-64,31,-81,-92,-36,-88,-96,-99,-61,4,-99,-92,-99,-98,-96,-99,-91,43,-84,-41,-61,10,-65,-97,-50,42,-92,-45,-50,74,-95,-98,-68,-20,-84,-98,-95,77,24,-92,-89,-70,-96,-99,-83,-81,-99,-99,-79,52,-35,-16,-13,-94,-93,-54,-87,-95,-91,-91,-94,-36,-99,-99,-97,-15,-99,-49,-51,-63,20,-58,-98,-93,-95,6,-87,-26,-50,-96,-96,-90,-81,-69,-99,-21,-37,-26,-97,-68,-96,-97,-64,-81,-97,-42,-78,-97,-47,44,-47,-98,-35,-95,-99,73,-57,-58,9,12,-97,-82,-97,-48,-99,-72,-61,-96,-92,-99,-99,-94,-71,-41,-94,-98,-93,-99,-93,-98,-98,-98,-91,99,37,-91,-53,-92,-94,-75,-91,-70,-87,-98,-77,-98,-98,-87,-85,-76,6,-75,-73,-92,-94,-97,-60,5,-4,-99,-99,-42,-6,-62,-98,-85,-96,-68,-90,-88,-90,-81,-10,-93,-97,-87,-99,-84,-98,-99,-99,-99,-96,-34,73,-78,92,49,-32,-96,-91,-91,-76,17,-39,5,-99,-12,-88,52,-89,-74,-81,-51,-75,-57,-95,-92,-99,-57,-76,-96,-90,70,-32,-98,-61,-99,-83,-96,-64,17,-99,-90,-92,-41,92,-99,-86,-99,86,-81,-99,-98,-98,-99,-60,-81,-78,-93,-78,-23,-93,-78,-99,-92,-77,-76,-89,-97,-80,-17,-12,50,-89,-87,-93,-91,-97,-91,-61,92,-61,-88,-99,-63,-97,-58,-28,-83,-96,-84,-94,-95,-66,-93,-68,-82,75,-28,-98,-88,-90,-74,-99,-99,-99,81,-92,-76,-92,-99,-98,-90,-68,35,-70,-66,-98,-83,-64,-87,-93,90,-91,-87,-98,-12,11,19,-47,55,-92,-23,43,-5,-99,-30,-97,-97,83,-8,-84,-85,-66,-57,-99,-96,96,-89,-99,12,-52,-95,3,-69,-96,-97,-90,-99,-77,-99,9,14,-55,-97,49,-47,-86,-67,-57,26,-98,-3,-29,-89,-99,-77,-54,-99,14,-94,6,-95,41,86,-94,65,-96,60,17,-95,-35,-95,-93,59,-14,-87,-78,-75,-83,-98,-96,-95,-84,-99,71,-77,91,45,-99,-92,79,-99,-90,-97,38,81,-51,-98,-88,-18,-83,-89,-98,-97,-91,-1,-82,-98,-87,-97,-96,-77,29,-94,22,-84,14,-39,-37,-92,-72,-89,-86,-88,-99,77,-92,-51,-87,-86,-53,-96,-95,67,-72,-69,-44,81,-99,-99,-95,-85,-92,-96,-78,-86,-48,60,-89,-84,-99,-91,-95,-94,-95,-96,-99,60,-58,-85,-8,-97,-1,-63,-83,-15,-84,-90,-95,-54,-73,-91,-77,-96,-69,28,-98,-99,-98,-98,-72,-66,76,-82,-97,-97,-99,-93,-83,-97,-53,-89,-91,-99,-96,-94,-58,49,-82,-92,-98,-95,-93,-99,-64,-88,-99,-90,-45,-86,79,-88,7,-97,-92,2,81,-73,-79,-96,41,-98,-99,56,-99,-72,-61,-35,-93,-81,-96,-93,-78,-60,-90,-91,-98,-90,-98,-30,27,-53,-95,10,-54,-52,-65,-21,-95,88,-25,-75,-97,-88,-98,-99,-36,-16,-98,-99,-85,-98,33,-74,-91,-32,-98,-93,-96,-81,-97,-97}
{81,82,99,-2,76,92,-92,98,92,82,80,98,94,88,93,72,94,94,92,54,19,77,99,90,26,-35,-39,95,-10,98,97,51,21,97,32,0,99,99,99,98,22,93,16,99,44,83,90,-32,75,61,96,87,71,99,97,99,99,85,58,71,95,75,98,72,96,99,99,12,31,99,55,92,95,36,97,99,20,25,41,95,91,97,77,43,40,97,41,4,62,99,93,-17,29,73,89,66,94,28,9,98,10,98,96,99,93,33,62,97,-55,96,36,58,38,78,99,-27,8,96,99,85,-51,90,99,99,-42,-48,93,99,99,98,46,67,-6,97,82,98,94,99,86,99,67,-21,80,94,99,88,14,99,52,72,99,7,94,99,94,-29,85,98,99,98,99,19,88,99,80,99,80,99,62,-58,90,98,99,97,61,-18,91,95,79,99,97,-51,49,68,72,99,12,98,79,-73,99,12,66,27,71,94,-26,33,94,69,92,22,95,89,93,99,92,31,98,72,65,4,97,64,85,41,19,45,80,98,62,97,98,71,97,82,95,99,20,78,-81,99,-28,70,78,-65,98,95,-24,40,95,97,99,84,74,-29,56,87,58,98,70,96,88,-13,98,-34,97,48,78,33,99,39,8,41,99,15,91,97,98,74,99,64,99,-64,89,87,98,90,58,97,92,95,22,78,90,62,90,95,37,63,80,98,99,69,95,99,99,95,-3,87,30,90,95,80,96,64,99,96,15,99,99,93,97,98,95,91,99,95,98,91,98,55,89,-96,43,95,89,94,33,-34,94,33,99,-81,79,99,61,97,95,57,97,-52,43,94,99,97,-20,79,37,44,97,70,98,99,-60,97,23,99,99,51,79,18,96,-33,99,98,4,68,81,-71,74,89,95,6,94,98,98,98,97,83,99,-46,98,81,65,-17,-89,98,76,96,97,95,-9,81,97,98,63,-19,40,99,98,95,99,49,93,39,89,22,54,-11,88,99,-52,82,94,97,64,91,84,75,96,-9,90,93,94,-52,-41,64,93,89,91,58,95,34,88,96,92,91,99,92,28,89,99,58,51,98,76,-46,77,79,35,44,97,65,29,30,96,83,5,85,92,95,86,91,93,-49,23,88,97,46,99,99,99,99,99,91,0,51,-14,98,77,42,73,43,78,62,-28,2,86,98,-31,65,90,98,54,19,-99,-58,73,99,51,39,0,85,99,99,6,97,98,-26,95,76,95,18,98,-61,99,69,97,96,96,64,91,31,14,-78,92,97,39,98,82,73,95,77,95,85,83,70,67,98,81,97,94,-57,-13,94,37,97,97,75,85,91,65,97,96,91,99,42,96,51,71,99,-20,66,60,59,-40,-4,-9,90,74,-32,92,-64,93,97,99,98,99,87,78,-19,-3,29,-35,92,84,95,97,99,24,93,57,97,94,10,53,82,96,81,24,88,98,48,86,51,94,99,87,98,72,52,88,96,80,-22,94,-30,-36,97,97,98,95,-14,91,99,-92,91,26,94,64,99,-49,95,83,99,31,-36,-67,92,-41,98,98,-50,52,90,89,99,96,91,99,53,22,-75,48,90,36,98,73,-64,96,99,98,-22,93,51,-35,81,99,72,64,82,62,87,29,83,7,84,80,-73,93,75,90,94,-23,99,83,63,99,98,96,94,98,-15,52,18,66,98,47,82,98,46,93,89,99,98,97,-35,93,97,23,43,99,89,99,98,93,48,60,99,96,97,-88,99,99,84,84,75,21,36,84,88,99,93,99,44,76,-27,16,92,90,18,98,98,96,-60,99,98,99,45,98,81,-51,99,28,91,48,97,29,77,16,33,96,89,90,92,31,99,98,-76,68,98,60,40,5,94,64,31,41,93,86,-47,75,98,69,-50,99,74,99,59,50,96,97,52,99,36,55,95,99,99,84,79,99,30,94,98,99,98,58,81,58,99,99,99,-42,98,99,98,98,87,-71,84,74,97,-71,96,10,63,20,86,94,1,61,95,99,52,81,-33,88,73,98,-91,95,99,99,98,40,63,45,87,58,29,33,75,96,97,73,99,57,93,72,95,92,97,93,99,75,98,99,67,49,33,-17,75,83,95,75,96,65,64,99,80,96,58,-65,99,30,83,57,95,-83,94,91,99,-2,96,61,37,97,99,-67,93,90,71,99,84,28,-8,92,10,50,96,91,92,95,88,40,99,90,73,93,80,-61,-37,32,93,99,79,99,-99,99,-5,-28,99,46,94,-77,82,97,97,87,56,83,79,94,93,69,87,99,77,31,99,97,99,55,-80,80,-42,-28,99,87,97,99,88,91,90,95,-27,99,88,98,85,96,58,98,99,34,96,93,92,99,90,96,73,77,88,97,99,98,95,99,-53,-47,57,14,77,89,86,97,60,91,54,55,98,93,70,42,98,94,-13,18,50,99,92,38,75,58,-6,75,83,98,23,76,31,99,81,97,63,94,76,92,74,68,99,-86,99,54,78,-13,99,57,92,-42,89,96,98,80,80,83,78,-1,93,99,93,56,99,98,-9,90,96,-9,95,99,95,89,99,99,96,99,95,73,59,99,85,71,99,99,78,83,98,79,74,75,59,98,79,82,-22,94,92,78,76,79,96,80,61,-65,63,80,-84,68,99,80,98,98,92,49,67,90,91,76,98,99,47,98,-16,93,99,26,47,99,97,-50,91,92,91,80,72,87,67,91,60,99,89,96,97,99,96,-39,55,99,-32,92,99,99,65,99,-44,99,99,39,-9,28,53,69,98,79,93,98,99,71,-4,60,91,95,-62,25,97,61,-22,99,87,33,-88,97,89,35,86,98,-12,93,88,81,58,22,99,75,98,62,98,71,99,89,80,-60,44,73,99,56,99,92,79,81,99,98,89,98,97,67,91,97,59,99,48,77,90,69,90,71,87,99,99,99,77,99,69,73,96,68,95,99,79,51,97,88,-13,99,69,78,95,99,49,87,97,48,94,92,99,93,99,5,85,97,-3,86,98,96,95,50,98,62,99,61,-51,87,40,97,69,24,98,-5,92,96,-80,-85,80,72,94,83,75,93,98,93,98,98,96,95,70,30,29,-38,96,58,60,97,45,99,-34,99,82,-37,-84,97,95,77,91,91,85,98,94,-34,91,95,99,98,92,15,79,67,6,96,76,75,99,16,82,79,-18,98,-13,84,99,55,68,-79,99,10,43,22,91,-91,82,97,-86,98,36,97,92,99,83,95,25,-84,67,89,94,99,99,98,-51,93,71,98,-60,96,-81,-12,-39,71,99,60,98,81,99,28,7,-71,99,99,-17,-27,71,32,77,87,99,98,90,-21,97,96,60,93,97,75,96,31,53,-76,32,46,97,94,81,94,80,92,31,97,98,99,-51,91,89,80,95,52,56,97,79,99,90,-9,99,96,80,99,71,6,56,94,21,28,17,90,62,22,96,61,96,99,-95,47,92,-68,92,62,91,97,63,85,30,94,94,98,-8,97,99,95,97,94,99,89,95,99,87,-51,-12,91,-13,77,99,98,5,20,84,89,84,78,99,81,96,95,89,74,94,99,56,99,97,98,97,93,-91,88,-4,36,88,99,62,-8,99,99,87,42,98,90,45,-75,6,99,98,96,41,91,26,72,53,99,-41,56,92,-60,97,86,99,99,53,97,-85,30,99,39,-9,97,99,70,79,-88,-8,67,63,7,-66,42,98,37,99,97,45,89,33,99,99,99,39,98,99,99,92,70,71,97,98,96,99,94,95,78,-20,-37,94,33,95,54,66,80,94,-79,97,64,95,15,91,99,97,96,76,74,97,99,78,99,99,55,51,96,88,82,65,92,99,99,-36,98,-91,55,43,-4,95,84,-96,86,85,96,98,-20,99,-24,64,81,-89,75,96,97,97,67,81,80,97,88,-9,94,86,77,91,80,99,99,17,95,-23,67,99,97,27,53,97,9,52,93,49,61,5,11,99,89,-59,99,88,88,40,95,79,-57,82,92,-26,-40,95,96,83,99,87,96,-95,65,98,64,97,-72,82,10,99,99,-14,82,99,60,99,99,99,70,5,99,76,24,94,94,99,98,-15,98,1,67,99,98,55,96,91,-64,81,-59,82,83,97,41,-21,96,93,12,24,61,98,99,38,-33,62,-30,70,62,78,85,-69,96,65,96,3,89,74,-2,93,-36,76,-27,41,76,62,99,99,11,92,61,55,99,90,97,71,97,89,99,93,87,93,90,99,99,93,11,93,94,95,88,91,39,96,90,76,98,-71,94,88,-25,94,93,-87,30,99,99,-95,98,82,93,37,97,94,98,94,99,99,96,45,99,70,77,-63,97,34,-54,88,86,88,-94,65,99,60,-64,5,96,57,95,56,88,99,58,63,70,3,-28,83,-54,77,25,80,99,68,84,6,96,-10,97,60,54,89,39,86,53,98,91,94,-5,99,60,99,93,87,94,-62,99,93,95,74,80,97,92,97,77,98,99,98,81,-94,95,68,93,96,-93,11,99,49,67,98,23,24,94,97,55,99,53,95,67,96,-37,99,69,91,85,71,97,92,80,98,91,1,89,98,69,33,65,90,98,98,99,99,76,92,97,75,-11,51,99,92,99,-8,99,94,15,73,97,18,-98,31,31,80,48,92,75,98,88,97,99,8,95,73,33,-90,80,99,-66,-88,-97,-29,90,-13,85,-45,98,84,96,53,94,96,84,95,68,-49,38,64,7,73,98,-55,95,-1,-91,95,97,98,50,72,23,85,91,73,63,98,72,99,73,97,90,86,99,99,86,50,59,79,97,95,95,85,96,-12,78,-85,92,-61,78,44,-35,99,99,99,84,97,98,98,98,-13,-80,55,98,93,82,74,90,93,99,92,76,-80,98,89,92,-2,99,97,98,-42,80,96,99,99,70,-68,60,61,97,-78,83,70,92,83,99,93,98,95,78,99,40,98,-58,96,99,97,77,92,42,98,98,99,-44,-26,48,99,77,72,82,99,91,59,73,99,-55,-86,-3,89,77,22,98,-67,1,98,73,31,71,73,-46,70,11,94,45,97,92,96,98,99,88,-18,89,-18,91,83,99,89,13,99,86,-72,94,97,15,77,93,69,91,94,97,48,97,75,-59,67,94,-15,39,91,97,98,88,95,96,53,73,52,73,98,98,-17,-39,91,71,34,91,-37,99,99,99,67,97,97,99,68,96,96,-38,97,94,-29,66,84,99,56,95,53,15,83,38,98,83,60,78,86,97,76,-11,81,68,99,87,99,99,99,99,97,99,73,-71,64,85,90,-1,95,89,98,55,90,97,83,57,88,83,-9,-7,96,-10,32,87,15,97,97,96,46,97,96,79,49,88,44,47,99,62,90,70,34,96,-31,48,93,90,99,92,99,46,33,99,45,58,10,95,97,-64,-7,97,21,87,95,99,-71,98,9,59,79,91,99,96,94,96,99,59,-96,97,97,99,97,84,-17,98,71,99,98,-74,99,-13,70,99,99,84,97,82,94,99,99,98,98,38,94,-49,51,99,33,9,-10,-29,81,23,95,28,97,92,96,95,29,82,91,97,99,-96,35,-83,92,58,21,81,92,99,99,99,25,98,83,99,80,63,98,78,86,87,93,97,99,5,-99,81,26,22,99,35,-67,93,67,99,78,92,54,99,93,48,99,89,-81,-25,99,92,99,92,94,99,-82,-17,96,88,10,-93,84,61,96,45,91,88,98,98,96,88,40,89,99,93,97,87,97,80,89,95,93,99,87,62,-35,68,99,98,94,-19,94,-38,19,93,98,98,88,91,74,99,79,95,28,48,-83,65,-15,-39,96,90,98,95,89,55,90,63,-70,91,-60,90,89,93,98,60,99,-88,15,35,95,99,93,99,44,84,-43,93,88,99,-50,63,87,94,76,98,-29,92,86,97,95,86,91,53,90,91,97,33,49,-60,87,95,-99,92,94,-4,97,88,52,95,94,97,99,79,87,55,7,96,70,84,86,92,94,97,98,99,66}
{89,-68,-90,84,98,97,99,99,99,-25,98,99,54,97,99,86,81,96,99,97,98,96,97,-24,98,3,97,-22,93,67,99,-6,78,96,92,68,-46,18,86,99,-12,-14,64,82,98,95,29,95,96,96,99,81,99,-42,97,72,61,98,74,85,97,99,98,95,96,99,38,98,67,94,91,72,99,2,89,50,98,91,78,92,-79,-37,81,59,45,33,83,-29,90,99,32,30,99,16,98,99,72,-34,99,-46,91,88,-66,79,-42,77,-24,-28,87,95,-5,63,97,-20,98,97,99,63,80,12,1,93,75,98,-78,64,35,89,82,-44,95,84,93,73,98,96,98,35,29,64,28,92,93,91,41,99,97,98,99,99,46,86,39,89,94,22,83,17,94,92,84,99,82,79,90,61,53,95,-56,99,53,81,-3,-20,-88,-8,84,84,26,90,94,83,-64,96,-12,27,26,21,98,5,92,99,92,97,98,99,89,30,8,85,96,94,67,15,-16,48,98,-29,97,97,90,96,-5,41,99,93,71,-48,93,66,32,-44,65,99,88,82,75,95,95,92,78,-58,99,99,-1,75,99,96,95,99,98,34,95,93,-24,55,-40,73,98,87,55,-13,99,92,99,7,-15,66,99,-1,79,76,98,89,99,-94,99,99,93,84,33,85,-97,72,30,2,-80,94,98,85,35,77,94,99,-23,85,97,70,97,96,96,5,99,41,-59,97,65,82,81,96,51,88,59,99,98,99,99,51,93,-19,-17,87,97,88,37,-39,99,89,98,99,92,88,79,97,96,94,99,20,99,77,95,83,96,22,96,95,97,99,7,90,49,96,-75,91,61,94,68,-28,99,69,-94,94,69,93,75,-49,99,-39,20,98,83,98,92,-62,-11,17,87,-66,41,-20,98,18,99,8,99,86,26,87,95,44,67,97,95,-87,99,98,70,88,89,73,97,98,69,99,95,88,99,88,73,-61,97,88,98,98,89,94,73,98,-34,70,85,87,99,14,87,89,-9,98,86,79,59,76,71,97,84,97,96,87,97,28,86,-30,98,99,99,48,98,99,96,87,73,78,92,74,86,70,95,90,-12,98,10,96,46,-50,79,99,93,96,99,59,92,66,68,-23,54,63,99,98,47,87,89,74,79,99,7,82,73,76,-87,98,-74,83,40,98,14,49,98,95,21,64,94,98,84,84,-13,92,85,-48,64,87,-30,75,99,74,82,28,15,95,97,-89,99,6,44,82,76,30,-31,92,79,96,77,98,75,66,3,68,99,87,93,-76,19,94,-83,95,16,84,63,99,96,86,99,98,97,6,98,99,-59,73,91,97,82,98,92,52,31,99,98,86,99,93,52,99,13,98,99,93,92,80,99,15,-54,91,96,78,84,89,97,89,99,26,96,95,80,63,98,-63,95,82,-94,94,97,99,99,45,97,-81,64,-23,99,42,79,93,8,79,90,99,86,93,94,-90,97,73,98,85,-82,95,91,90,5,98,94,97,65,88,75,99,-49,98,24,98,77,64,39,67,77,94,-7,90,94,93,94,99,-9,-4,99,-19,88,50,-20,82,93,87,91,99,98,94,93,97,52,76,-19,94,95,90,94,98,98,-71,-77,99,96,99,91,66,94,62,99,97,27,92,76,91,63,98,61,-88,95,99,93,97,-23,98,97,99,93,99,76,97,99,73,-22,-31,98,-1,42,-37,93,86,99,-37,43,86,17,98,7,62,96,99,89,96,99,99,97,97,62,88,87,99,97,98,98,-94,75,98,90,49,42,80,83,95,91,-63,94,98,61,88,97,95,85,97,73,73,-98,99,99,81,87,96,71,-83,92,99,49,-19,-76,94,97,93,94,-67,98,96,91,94,94,37,54,98,78,76,57,95,99,94,98,99,99,86,90,89,97,62,99,81,-18,97,96,98,-8,95,78,96,94,96,38,55,5,49,19,97,96,-10,96,86,98,84,57,-13,96,95,96,68,92,79,97,99,81,97,-73,57,90,23,84,13,97,99,0,99,89,96,90,93,98,99,99,99,98,14,12,48,40,2,95,86,65,99,92,47,32,35,90,82,66,88,94,-78,67,81,-28,39,95,45,-52,-59,98,38,99,-75,98,80,95,-8,93,93,94,91,55,91,0,6,95,97,91,94,98,77,67,44,20,98,85,96,69,4,94,98,71,83,54,88,93,34,85,99,97,56,59,85,87,23,86,35,97,97,95,83,35,98,98,96,86,57,91,97,88,88,98,-18,59,88,50,99,47,-16,68,96,83,69,44,30,79,83,99,2,-50,99,-50,87,97,6,86,99,97,94,86,75,80,86,46,0,53,99,-4,84,89,96,96,99,93,82,86,60,51,75,98,98,81,-61,89,71,99,85,96,47,-99,-21,99,62,65,-98,93,97,95,96,53,94,90,96,-62,96,-71,97,91,64,32,86,98,74,97,14,79,99,6,73,83,-67,-12,97,95,92,-64,71,97,93,90,60,86,95,99,86,94,91,99,98,65,96,53,97,88,91,99,96,99,96,95,97,95,79,96,99,97,-19,41,94,96,67,50,93,99,52,92,98,95,65,14,76,91,96,-64,66,97,78,-2,76,97,97,94,-41,87,99,99,98,95,90,82,97,98,-47,98,92,85,-79,99,99,86,91,94,72,84,99,99,-27,99,12,51,87,95,81,52,89,3,96,93,96,97,90,99,50,99,-14,-19,99,97,81,99,99,99,93,98,64,91,46,96,96,38,43,97,84,98,99,96,99,77,97,99,50,99,47,-30,-95,99,31,90,94,98,98,13,1,90,97,43,29,97,92,97,97,93,99,93,97,99,44,96,97,48,94,99,91,-29,94,98,78,-55,84,-69,99,3,99,86,97,99,96,-6,99,98,-60,78,61,-10,93,92,99,96,93,97,92,98,-65,43,86,85,99,89,92,21,39,-80,99,81,22,1,70,98,57,28,98,99,96,99,83,80,17,96,93,-45,98,89,84,86,3,99,0,14,40,-99,31,98,80,98,96,-46,99,75,92,95,52,92,98,71,-95,99,90,34,88,-69,95,88,-91,64,98,38,95,37,85,-85,73,97,99,86,-91,86,64,-28,20,98,39,79,98,80,-79,99,89,99,-11,92,89,95,90,20,87,99,97,41,98,93,94,26,64,86,10,74,98,62,96,61,65,67,83,94,95,-20,94,-7,-32,90,89,97,62,-87,70,96,35,99,99,-74,93,95,96,-95,47,-50,83,92,88,62,58,99,77,95,72,84,-5,64,44,97,99,75,94,9,60,51,78,93,-9,96,72,61,79,51,97,96,90,39,-69,91,98,69,94,98,37,-31,98,92,92,-93,98,99,92,84,97,39,43,-16,90,99,98,80,88,92,99,99,-44,-46,82,48,99,79,-9,99,66,-81,36,85,68,83,40,97,99,-23,10,-9,99,82,96,99,29,95,97,87,96,95,-55,96,85,66,81,17,96,99,-4,-49,57,67,-32,78,88,99,-55,57,97,30,94,90,-16,90,96,92,-35,79,33,-86,-87,95,72,99,85,89,81,97,-61,95,99,32,-94,26,-29,97,81,99,98,65,-29,92,82,70,72,98,82,96,99,-28,99,97,96,99,92,87,98,-30,97,81,-94,33,63,98,82,99,30,56,89,82,-85,92,-27,99,78,93,87,5,93,93,91,98,99,50,98,99,89,59,-57,27,94,95,85,93,13,-15,97,62,99,96,89,99,97,52,51,98,-18,98,50,71,97,98,68,95,-49,-68,81,-25,-67,99,97,43,98,75,86,94,64,85,96,98,99,99,98,98,93,68,-30,98,83,84,99,15,96,23,88,95,98,52,23,91,75,88,94,95,96,99,68,75,85,30,98,-25,89,55,99,99,-35,95,63,92,79,95,-24,-65,99,59,-32,99,86,97,49,98,98,-6,1,98,-60,95,77,99,94,57,64,94,72,95,69,45,87,98,31,99,19,-42,64,59,-47,67,99,98,98,97,95,-3,81,99,99,38,99,-38,96,98,71,89,99,91,97,59,64,28,90,93,53,96,23,98,94,97,97,6,11,97,47,93,83,67,11,12,65,-8,99,73,78,98,97,-25,99,29,-57,95,90,-52,46,71,-95,95,-74,85,-52,55,-30,43,80,60,98,-7,85,96,24,98,-31,31,82,99,94,99,70,98,9,98,99,92,66,16,-42,-31,23,89,99,99,99,98,92,93,99,95,-22,90,29,99,77,8,49,84,93,-18,89,41,83,80,98,-17,99,67,92,50,91,36,99,13,99,-3,26,86,35,33,96,98,66,91,99,99,80,95,95,96,99,70,97,93,88,78,-72,70,85,-41,95,86,98,38,99,87,60,81,93,66,99,20,53,98,99,98,51,96,78,67,13,95,76,-68,99,83,3,92,99,66,75,96,99,28,98,99,83,30,97,97,-3,92,-28,99,98,49,91,40,91,25,94,-53,89,21,67,-9,86,-55,97,90,-52,99,94,97,99,74,99,73,37,98,86,94,86,-44,93,94,95,60,79,1,-95,94,98,30,80,95,95,-36,97,74,35,97,98,98,96,93,67,-46,21,-24,63,36,54,93,84,-84,99,50,93,79,-14,6,96,91,46,98,93,99,99,77,84,80,-59,74,95,1,75,99,-17,33,64,24,5,-49,85,99,98,99,68,47,98,99,96,96,-3,99,85,87,85,6,94,99,-56,29,79,-80,79,99,69,94,91,90,19,99,99,96,99,88,99,96,98,98,99,87,99,85,94,41,-62,23,97,99,52,96,97,91,99,99,34,94,89,76,99,0,88,94,58,91,74,99,65,73,97,97,19,98,84,78,88,98,95,82,91,-79,78,-13,84,99,28,89,95,76,57,60,71,84,98,98,-32,99,99,99,99,91,25,95,6,97,99,91,10,-52,85,98,94,99,69,99,77,84,99,93,86,62,-1,-18,85,96,97,59,85,66,98,34,-6,85,-27,90,91,97,96,98,27,99,94,97,95,30,82,40,54,29,99,93,99,81,79,-49,32,47,47,98,90,87,94,-45,-87,34,-72,88,45,-29,52,-84,89,49,-40,-48,82,99,73,94,88,98,72,94,99,73,96,97,98,78,84,26,92,72,72,98,81,-58,30,96,85,-81,88,57,99,72,96,95,64,-55,99,99,-37,88,88,97,-62,96,98,85,23,93,94,95,49,97,-58,99,99,73,58,98,89,89,93,97,82,99,94,95,99,93,98,98,99,98,90,98,26,46,98,92,46,72,76,-42,81,80,94,4,90,79,17,24,91,99,-54,2,81,75,98,44,73,-60,-26,99,95,39,76,99,-81,98,59,65,98,1,99,94,99,94,99,95,99,95,37,99,89,-32,92,19,95,98,98,67,10,-91,-72,34,45,89,82,-17,3,-58,-2,94,97,97,20,81,93,88,99,-35,90,-26,87,96,95,82,3,94,98,1,98,31,99,67,82,51,-83,98,10,53,-98,97,65,93,-89,98,-16,99,99,25,43,27,98,-31,95,-4,98,99,-49,43,99,90,0,85,48,76,3,83,69,87,44,-16,94,32,99,96,51,94,90,95,59,91,40,-29,57,31,90,-30,88,94,88,21,96,-14,95,37,63,72,63,81,98,94,97,95,-56,98,98,96,95,98,49,92,28,-34,91,96,35,92,90,96,98,94,81,88,-59,94,95,86,80,38,98,-43,92,90,96,99,77,-59,93,88,-61,54,97,-27,14,99,99,60,-33,40,97,30,97,86,33,63,-84,98,-83,99,88,82,-52,49,98,90,98,89,99,97,43,88,98,99,59,97,-12,57,75,92,98,98,-85,23,97,99,11,72,24,97,38,97,96,91,88,86,87,27,93,43,98,76,90,98,99,99,99,-74,9,-32,-40,94,95,87,28,-15,92,60,98,99,96,73,71,-96,85,71,77,-10,99,75,61,99,53,98,-94,74,19,98,-28,87,30,94,72,90,-28,84,99,23,69,99,98,99,54,90,92,98,97}
{100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100}
Returns: 5.80749892605E10
{47,-99,-25,-100,-13,-99,56,92,-99,-99,-38,30,59,-88,-12,-43,-31,-18,24,-51,32,-38,-95,49,-89,20,-94,34,-93,96,-58,-28,-70,-66,87,35,17,-100,95,56,-40,-44,-83,-48,-85,-57,-43,-37,94,-100,-5,-84,16,-97,-47,-93,-22,-98,81,-61,88,7,31,-17,56,-97,-29,-90,-80,97,30,-31,-76,51,85,-88,41,-92,-60,-100,-67,-42,-60,-98,47,95,-74,-30,-85,-80,-17,-30,-50,-100,-62,-40,-100,-99,-91,68,-90,-35,-74,-67,-50,-92,45,-17,85,-59,-99,-6,-72,-48,-9,-63,-37,-52,-100,-67,-46,-97,32,-4,-20,-79,80,-98,-30,-56,-97,20,-100,-27,60,-40,-41,-21,-85,-81,-64,48,3,-46,-84,-94,-30,28,68,44,-6,-89,49,56,-60,-28,-57,-45,-59,-86,35,81,-98,45,-25,39,-20,-95,-19,19,-88,-100,70,70,43,-100,-79,-79,-36,-81,63,-28,-70,-26,3,-12,-80,-61,-57,-100,25,-93,66,-95,-37,-51,-94,-100,44,-14,76,-51,-65,-78,32,-69,-100,15,-13,-74,45,-70,94,-79,-98,70,-69,-21,-45,-8,61,-21,92,-62,40,-68,41,2,-62,-82,-97,-92,-90,73,-83,82,-95,68,60,-71,43,-17,-29,30,93,-24,-50,-30,-76,-11,-81,-63,-60,28,87,-63,-66,-55,76,44,-100,22,81,-39,10,-9,-19,-100,-100,79,-1,-32,-47,-100,-99,73,-98,-84,-100,-56,-14,-88,-96,-99,-97,-88,-29,-90,-34,95,-79,-63,-63,-76,-71,-99,-77,-76,-93,-99,54,56,6,-48,-80,5,-86,-88,-70,37,-70,-44,15,-38,-100,-100,-64,-6,36,-53,82,0,-98,-76,-42,24,-91,-98,30,-82,-21,4,-40,-51,-92,-71,-100,-89,-50,-97,-98,-95,-86,19,-57,45,-98,58,-9,43,-92,-5,-12,-84,-68,-93,-90,-97,-92,-75,-48,-26,-2,-98,-99,-36,-63,-79,-95,33,-41,41,13,-36,-97,-69,-95,-98,-74,-11,8,20,-31,-19,-75,-94,72,85,-12,-91,-34,39,-87,-75,5,-100,-97,22,-99,-51,-78,73,39,21,-99,65,-60,-91,-76,53,42,-61,50,-75,-96,-94,-46,32,78,50,98,-41,55,44,-71,-99,-87,-100,-78,65,41,-66,-52,-98,88,-100,-66,-98,-99,-75,-81,-69,50,-95,55,-99,-45,-95,-100,-99,-76,-43,-74,-71,94,-83,-95,-32,-100,-100,-88,-94,-91,-28,76,85,-53,-98,-88,42,88,-98,-94,93,-20,2,-42,-99,-71,10,96,74,-100,-73,-99,-99,-74,-93,-73,49,-93,-7,-85,89,-8,-67,22,-35,45,87,-99,-39,-100,-93,-98,-14,-100,-89,-93,-59,-99,15,-4,-66,-16,-94,-99,4,-21,-51,-93,-68,-22,4,78,-12,90,-97,-21,85,0,-88,-56,-26,-88,-100,41,97,2,5,-12,-10,-15,-40,-100,17,-91,-98,-4,37,-75,-96,-82,-14,29,61,-64,38,9,-69,-50,85,-69,43,-62,27,-87,-11,-77,-88,-67,38,-61,-52,-100,60,71,62,-41,-5,-54,-26,-100,-78,-87,24,-24,-44,-78,-19,-76,-1,-100,-89,2,-28,88,-100,40,-75,58,14,-55,83,-100,63,-30,-86,-84,-99,-64,-76,-38,-91,-46,-100,-99,-7,-26,-94,4,-54,-100,-77,24,-20,60,-73,62,-73,60,98,-88,-48,10,-37,-35,-62,5,-84,71,48,-75,79,-100,-78,-79,78,-93,-93,-66,-28,-75,64,-97,-55,-95,-4,57,-88,88,-98,-23,-61,-92,-99,-35,14,42,-5,78,-52,64,-89,-75,-2,-36,-100,-23,-89,-67,-26,-63,83,-88,13,58,-53,-99,-51,43,-97,-94,-73,61,-93,-88,-4,-95,-98,-84,-99,-100,-86,-98,-97,-95,-80,-22,88,-94,-96,-69,-60,30,-88,-69,-39,-99,-29,-78,1,59,-70,-77,18,80,-84,-20,-19,-98,9,-54,83,-11,-96,-100,-100,-43,-66,-66,-61,-10,-73,-85,-65,-33,-100,44,-92,-89,5,48,63,-97,97,87,-72,-86,-49,-39,47,-83,-22,10,5,40,-92,24,90,85,-99,-59,-84,-92,48,-56,-6,-95,-71,77,44,-100,-31,-39,-99,49,-4,-84,78,21,20,-9,46,38,-93,-100,-43,-97,53,-48,-10,-54,50,-84,-36,-98,68,31,-75,-100,-100,37,-100,-15,-100,-97,-36,-95,-37,-25,-75,-90,37,43,23,-54,-97,-94,86,22,56,32,98,41,34,-66,-8,82,-59,67,-90,-39,52,-88,-96,-100,19,-79,77,-41,15,79,-73,46,-97,-98,41,-94,-51,-99,-99,-90,-53,-22,-21,49,77,-48,1,62,-41,28,24,-60,-9,-39,-100,-42,90,-84,-58,-100,-44,15,-40,-79,-99,70,53,51,89,-26,2,16,81,-89,-100,-99,29,55,-100,-96,-91,12,-54,78,93,93,43,-19,-16,-86,-35,-62,-53,-98,-47,49,-77,-12,-86,-40,-48,-87,92,-34,-82,-19,-36,-13,-63,-94,-98,25,-49,-66,-95,-24,-76,-95,-76,-82,44,-31,3,11,-98,98,-70,-12,-21,-74,-100,-26,-97,-60,-100,74,-83,96,-100,-66,-60,-76,-13,31,6,-93,57,-81,19,59,-93,81,-79,16,-65,97,-49,50,-48,-35,-45,-8,-80,-69,96,57,-88,-13,-21,-47,-87,-80,-59,45,61,-72,-100,41,52,-80,-68,-94,-30,-49,-73,80,-38,-91,-63,-44,-66,93,1,-95,6,-100,4,-94,-93,53,-59,-53,-100,-100,-8,-98,-92,-68,-85,-80,21,37,-51,-59,-85,19,70,-21,82,4,-38,-93,-100,-100,-74,13,-45,-69,98,14,-60,85,-98,-37,-56,60,46,-94,79,-83,48,73,-94,-22,-28,-94,-31,-100,73,-46,-95,-33,86,37,-95,49,32,-60,-34,-14,-75,-100,-87,21,-100,-79,-98,64,-74,36,-41,-100,-88,-9,-80,-100,-100,-42,68,29,84,17,-36,-71,71,0,-92,-33,-51,-70,13,-25,-84,-9,-34,-96,-97,-99,55,-89,-26,-31,41,-73,-68,52,-98,-100,-48,-52,-77,-96,-100,-74,-21,-86,63,-84,-99,49,-99,-100,-35,-22,-39,-47,-77,-34,-98,79,92,26,-7,-80,-7,-47,-34,-100,-68,56,-90,-100,-42,24,22,35,-51,-97,36,-88,-41,-84,78,-8,-100,-14,14,-95,99,-91,-82,-100,93,-98,-90,59,12,23,-71,41,-68,-23,67,22,77,45,6,-98,31,-94,-31,54,-54,-8,15,-94,40,-30,-95,-79,-82,-98,-23,-88,-79,-49,-32,-98,-10,-5,-99,36,-44,-98,-70,-29,-98,-13,84,37,6,-11,35,-31,29,34,-51,75,-33,33,24,-97,-79,-17,20,11,96,-68,-94,99,-77,-90,-97,-14,-78,-93,-91,13,-58,45,83,-22,-85,53,64,31,-81,-81,-43,-95,-39,-100,6,17,9,-83,24,-84,-64,-100,-96,-96,-46,-67,82,-95,20,-95,-17,-96,-100,3,-4,56,58,-68,-90,-100,74,15,-97,-74,-46,-88,2,-61,-77,-37,-6,-71,12,-92,-86,-44,-8,-100,-100,-62,-1,-60,43,27,49,28,-100,-16,-91,-15,-4,-94,-92,-93,-100,-100,50,-85,81,-53,45,-88,-46,60,-95,-27,-100,-69,-99,24,-99,-95,-21,-45,-78,-11,-98,14,-91,25,-94,-28,-49,-96,87,0,-71,-3,86,-98,-93,3,64,56,-36,38,-19,-100,-100,-50,-96,-67,34,-87,-3,-97,-9,-18,67,-62,77,-59,-83,22,-96,-18,-78,-71,-100,-96,28,42,-100,-96,-73,-54,36,-71,55,-100,31,-37,-100,-78,-46,8,80,12,-61,34,-87,-88,-90,2,-89,-37,-5,-81,69,-60,41,57,42,2,-24,46,42,-52,10,-88,-55,78,-80,86,-77,-61,-92,29,31,-92,-67,-100,-99,11,66,-46,-21,-22,-88,-100,-83,-4,-87,70,-95,-64,-92,-98,-59,-100,-92,-96,-76,17,-55,2,-40,-98,52,-88,42,-2,-100,-37,-5,-54,-89,45,-98,12,22,-50,0,-98,-62,3,32,0,-45,17,52,-73,9,-3,-64,12,-79,-13,92,-62,-99,-100,10,84,-100,-82,-62,-98,-12,-95,-19,26,-98,-99,-100,48,-83,-59,-61,-97,72,89,-28,-21,-100,-73,-25,78,16,77,-28,52,-6,-95,-32,-8,-52,47,-25,5,-100,-100,-99,86,-95,44,-100,-77,79,-49,-94,-92,-100,98,-51,21,-6,50,68,-99,-72,-4,31,75,90,33,-80,-90,-100,-94,-31,-56,59,-90,92,-81,-56,96,25,-4,-73,-94,5,-19,-54,-70,-40,43,-99,-20,76,10,-28,-100,-47,-85,54,-6,-47,-35,-89,-83,-90,-72,-99,-36,-17,-51,90,-79,-73,-68,-78,1,20,84,-97,-69,69,-69,9,-10,-46,-14,-97,-95,-49,79,-42,-24,-72,-52,-89,-81,-41,-55,-15,-6,-61,19,-100,-94,61,-90,-33,-48,-30,-81,-83,-29,-93,-87,8,-28,-3,-66,-51,-100,-100,86,-97,-60,83,-100,43,11,-29,-97,61,-41,-72,-86,-34,-63,0,-71,-92,-19,64,-49,-82,23,79,-54,-58,77,55,-81,-100,47,-28,-100,49,-97,-6,-99,-10,90,-15,-13,19,-73,51,-54,41,53,31,65,-74,-42,-100,-71,-73,-97,-53,-31,-36,-9,-84,-55,81,-97,-95,21,-82,-97,-98,-39,-34,-100,-33,-96,-57,43,43,-100,63,25,-23,-75,-94,-100,-90,-78,-7,-33,60,-100,-89,-100,-24,-87,13,47,-75,-13,67,86,48,-80,-73,4,-50,-37,-86,-40,-100,-19,39,23,73,-2,57,-17,-76,-97,-8,-56,-80,60,-13,-15,-100,50,50,-100,-95,55,40,-96,82,29,18,-12,2,-97,-11,-25,-45,-61,60,49,-98,-51,-83,54,-11,-100,-15,-55,-52,70,4,-19,-91,-91,-43,-89,-2,93,79,-89,-89,-20,-29,-100,33,66,5,-14,-34,-58,-99,18,-38,-84,-63,-94,-100,99,-36,-4,-53,-5,-100,-74,-100,-99,82,18,-74,73,-96,-86,-94,-32,-89,-86,-97,-23,-13,84,-5,-78,61,-36,-56,-86,-58,29,-81,-66,-96,-99,24,-98,-96,-96,91,-47,-17,-2,-98,-72,65,-82,38,19,-79,-100,-74,20,6,60,60,-73,-82,-55,16,-93,44,-98,27,16,-95,-97,-43,-98,-100,-76,-89,-70,-97,-68,-98,-90,-100,-78,-99,-99,-1,-51,-54,-100,-82,-28,-78,16,-100,81,-84,-38,29,93,-79,17,-99,-20,-100,2,48,-25,45,-77,14,-89,-39,-67,41,-72,-94,75,-25,88,55,3,-87,66,-100,-97,-92,-100,-80,90,68,-11,-88,-4,32,-100,-4,-98,39,-51,-96,57,67,-41,0,59,-93,42,-62,-99,-96,-43,27,34,-39,-44,-99,-90,23,44,-87,49,-98,-10,52,66,31,-41,8,-87,-28,-91,-66,29,-74,29,-78,-100,-84,-95,-84,72,98,-97,80,79,-98,-58,-3,-100,71,-26,-28,-76,20,-100,-100,2,-65,-96,24,-43,-20,6,43,14,57,-98,-91,90,-76,-14,-59,78,-83,35,-61,10,52,-8,-100,32,-100,-45,-96,-65,-91,56,97,-69,-62,-95,-87,12,96,-100,7,-95,-93,72,-100,-12,-4,-30,-44,-80,74,-83,72,-54,-88,-100,77,74,-63,-90,-55,-75,-80,-100,-33,-39,70,-34,-97,-76,-84,-24,53,-74,-100,81,-52,-12,94,-21,-12,83,74,-11,98,60,-20,-41,43,-79,64,-77,-13,-74,-61,-100,-45,-12,-83,-73,-100,56,70,-47,-84,78,-30,-66,-49,-41,38,-71,-35,-25,-94,-57,41,-83,-82,-26,-84,-15,72,-83,-90,-47,-23,-34,-98,60,-14,-92,-63,16,-33,-99,-97,-64,-95,-54,95,-67,-41,-84,30,-71,-72,73,-95,68,-45,55,-75,-52,33,-65,-71,60,83,-9,-100,-94,-77,-85,-84,-93,78,-63,53,-98,86,93,-36,-12,-93,11,-90,-73,-91,-47,-82,-51,62,-98,-43,55,-87,-84,-57,-100,-81,-17,-56,-43,21,-52,1,-68,-6,98,20,-93,-76,-73,3,-99,61,-58,20,-19,52,-10,-9,-96,90,-78,13,-100,-98,-86,-10,-63,-92,98,-26,-23,-43,41,-100,-95,-4,-86,-47,-93,-96,68,-98,-100,-71,-100,-64,-69,-16,46,-68,-59,-99,-84,-6,-57,-80,-66,-100,19,-100,-5,-99,-38,-11,-100,-92,-58,-40,64,-95,-41,-80,-93,-96,-95,14,81,-53,-60,90,29,-91,27,-45,-98,-78,-100,-79,-54,-39,17,-78,-21,90,-100,-86,-43,-100,-55,-85,98,-76,-50,42,8,61,66,-38,-56,-100,59,-32,-100,-22,91,22,-90,38,-43,-60,-82,40,6,4,-69,46,-57,-78,-66,-87,39,-81,-21,0,-90,41,-100,-99,40,-100,-93,30,-100,90,14,-82,-100,-87,-29,-54,-15,2,-75,-18,-92,-39,-89,-92,49,20,-100,-61,-100,0,-2,-38,-90,96,39,-43,7,28,-27,75,-29,-99,-32,15,-59,-99,-100,-99,-12,45,-26,70,60,-89,-81,-100,-76,32,-44,-87,-81,-8,81,38,77,-97,-79,-17,-91,-70,66,-60,-93,-82,-97,-91,-82,-91,-99,-47,48,-39,-34,-100,20,-32,-94,0,-70,-49,29,-100,-78,-85,-86,-86,-20,-92,-96,-79,-51,-40,-93,-14,84,-35,-78,25,-100,28,-19,-53,-100,-100,-5,-92,-40,-42,-46,-96,-100,-29,-34,-52,-1,-69,-88,40,-44,-80}
{-93,-100,-61,-70,14,60,-41,72,-78,54,-90,21,-71,-16,-96,-28,45,-89,-82,-100,-95,-97,-31,-34,43,52,-82,95,-100,-62,-94,-93,35,-93,36,95,8,-41,-84,-95,-68,33,7,11,-98,55,-45,-100,-85,-55,-69,-90,-84,82,-85,-100,-47,-98,-100,-35,-93,37,-97,14,-72,-22,56,-96,92,-85,-19,19,-85,22,99,-100,-61,45,60,-53,-33,-100,-19,43,69,-85,-58,-97,-85,-67,16,78,-80,27,4,-99,39,-33,-98,-58,-96,-43,58,-95,-11,81,-12,-91,-4,43,-100,-94,-98,-85,-2,66,-2,-87,43,-14,25,-100,-22,-95,-79,-24,-80,-51,27,-4,-86,-26,-99,-82,-99,-98,-100,61,-64,-69,-99,26,-64,-98,-49,-58,20,-19,41,84,-98,34,-100,-91,-66,19,-74,5,-25,81,-7,-70,-5,55,-60,-99,-86,-61,-52,-89,-97,-72,-91,-27,-69,-97,-31,28,-54,-27,-73,61,7,17,93,0,-76,-81,36,-19,-83,-5,-93,-60,38,98,-48,-96,32,95,-76,-38,-98,-22,-21,3,-89,-98,-72,-24,-100,-95,-19,91,92,-99,-52,-100,-100,-100,-4,-95,67,-98,-100,44,-100,-97,-74,-100,-89,30,-76,-41,27,-17,44,68,20,-52,-56,36,-21,-96,-100,-31,-81,-13,-61,-81,3,27,-100,36,-100,85,32,53,-49,-92,-91,-69,-99,-27,-31,-69,-33,-29,-51,-71,-98,-97,-29,-15,-95,6,-100,91,61,0,-96,-53,-8,-45,72,-43,-48,-23,-76,-62,21,-59,-100,3,-98,-59,-51,-56,53,-97,10,98,-13,-95,-56,-29,-99,-21,-87,53,-58,-97,94,-73,-100,-62,-83,-40,-78,43,-100,-10,-100,-92,-68,55,14,11,-98,-91,-51,-43,83,70,-79,-71,53,-18,-30,-45,-85,-73,-79,-99,-84,-85,8,70,-67,-19,-83,-31,-27,23,-99,66,-19,-52,34,-74,-23,-86,-88,-100,-11,-68,-99,4,87,7,-100,8,-100,-100,13,40,-51,30,-17,-55,-75,-47,-92,-94,-100,-97,-91,-58,-96,-13,-67,-95,-99,69,16,-60,2,29,3,94,61,-53,-54,-98,-100,-90,-53,14,-32,39,-94,76,43,-41,-83,-12,58,-33,-23,4,-99,-100,-98,-8,-49,5,-22,-100,-5,83,23,59,-24,-96,53,-90,-42,59,-31,7,-17,35,70,96,-86,-14,29,-50,-43,-99,59,-79,-99,55,-54,-100,-99,-64,-2,-40,-27,-4,70,-78,91,36,77,23,74,-90,-50,-3,38,-79,-11,48,92,-42,53,-68,-99,-53,22,3,-30,66,-6,-96,-8,-99,8,-4,34,-13,-79,59,-100,78,1,-83,-15,68,-74,-58,-53,24,-30,-79,59,-100,-6,-52,-89,3,-85,-60,-100,-2,-57,-87,3,-41,-92,-19,-90,-71,-50,-34,0,83,-94,97,-100,-52,-34,28,-41,-38,12,71,-89,92,40,-7,-47,-100,44,5,-58,42,-78,-45,-100,93,-63,67,-13,-35,-84,48,-54,-79,-93,98,8,76,-23,17,-95,-94,26,-57,-20,47,84,-79,3,-21,-100,-93,-36,-94,-100,-100,-69,64,62,-46,-28,-6,-99,82,-24,3,-17,8,62,-35,-97,-86,-20,58,85,5,-70,-88,-24,-98,-23,-46,-96,94,-23,-83,-97,76,-12,-86,58,-85,-99,10,-68,-85,-65,-51,41,-21,-91,-96,-92,60,-46,-61,-85,-57,-100,-97,-65,-97,81,-30,-66,-100,67,-90,-95,-100,56,47,-83,-64,44,-74,-37,-86,38,-67,-93,93,21,-84,91,97,-100,-98,-100,-23,-92,-24,-64,-69,-32,81,-94,-40,-74,-46,-33,-77,-95,97,9,-52,44,-98,8,-76,-85,-34,-97,-94,-84,-100,-64,99,31,80,-46,39,-43,41,8,-75,-100,-44,-55,72,-74,-62,-70,-99,92,-72,72,-69,37,98,-93,-89,6,-4,-88,-99,-22,-11,-58,97,-48,-74,-100,-96,-98,-93,-67,43,-100,65,32,-5,74,-57,7,68,-13,-83,-89,24,-80,-73,29,-65,-100,-50,1,-5,-46,-99,-92,-39,-83,47,74,90,82,-2,-36,-92,-8,-66,-93,34,-100,-100,54,-77,-93,90,-39,-5,24,69,28,77,-30,-49,75,-98,-30,48,-24,28,-100,-100,-64,-70,40,21,26,-10,-35,-56,-66,-81,-88,-12,-69,-62,-88,-85,-68,-80,-100,92,19,-70,94,75,-52,-5,-39,-100,-88,13,76,-100,92,-40,-79,-98,13,-100,-94,-95,-25,77,-40,61,-28,29,-68,-30,-86,-91,-100,-97,69,-93,-86,86,-87,-67,4,-100,-76,53,-23,26,-56,-59,-99,41,-100,-61,-10,-97,-100,-77,-49,-97,-87,7,2,85,-92,-34,-42,80,-35,-98,-93,-95,44,-30,10,-41,-94,71,-100,-100,-77,68,-59,-100,-59,-3,24,-35,-100,-86,-26,-95,-48,-1,-56,-45,-7,61,-32,-96,75,94,34,-87,-87,37,-30,-91,-39,-100,-99,-94,-98,31,-92,-76,-98,-52,-98,-9,-57,-95,54,-85,-100,-100,-93,-96,-6,26,7,34,-99,23,-76,-100,19,-98,30,-100,-2,73,88,21,-99,-45,-27,83,-81,-98,-58,-96,-97,71,9,-61,-9,68,81,-81,-100,-97,33,-100,-87,43,-93,-34,-96,-87,92,-74,-83,8,-63,46,-82,7,18,8,-76,-81,-7,-98,-33,95,-97,40,17,-55,35,-79,-97,-76,38,-40,-82,-70,-79,20,-100,-23,-51,51,23,-35,-14,25,29,-79,-97,4,-27,-55,-42,-97,-95,-33,58,-34,-61,-75,2,-13,-46,-98,-97,-99,-54,-84,47,97,-52,87,-46,-99,84,6,14,-79,-99,-5,-77,17,84,90,76,-29,-81,-83,-80,7,-15,-75,-74,-19,-88,-95,51,-66,-60,-99,50,-100,-92,-15,-89,83,20,97,-67,41,21,-95,-93,-53,-67,31,-69,-83,-99,49,-98,-37,-25,-71,-25,-78,-98,-73,-22,-100,-46,-92,-54,-68,-76,-100,-75,-7,-67,-92,11,56,8,19,-100,-58,82,-47,10,-86,64,-91,-69,-100,-41,-10,68,1,-86,-96,-70,71,-95,-37,-91,-5,-97,-91,32,55,-32,-98,-51,83,-96,-92,-80,-22,7,-84,-99,63,-5,15,-94,-55,-36,-91,-97,-100,-100,-100,-1,-9,20,-88,-35,-71,-62,28,27,82,-97,-73,-68,-45,-100,-100,-84,-100,-70,-73,91,-89,-100,76,66,15,73,-54,-43,-27,-95,-44,-98,5,-13,-37,33,17,11,-89,89,-2,36,90,36,-80,-100,-79,-96,-27,1,-6,86,-25,40,-100,-77,-74,-63,-77,-99,-59,50,-83,22,84,-82,-84,-97,-96,-85,-97,90,-93,-65,14,-7,45,-86,-99,-78,-18,-50,10,-93,-61,-100,-97,-14,83,-97,-83,61,0,11,-74,-44,-49,51,-94,63,-74,-66,89,-97,58,96,-90,-35,-94,1,-42,-100,72,4,15,-63,-73,-42,-32,43,-96,-87,63,-96,64,-57,51,64,29,82,17,-79,-63,-75,99,-50,-100,-51,-8,-95,85,-48,-93,-100,-29,50,-100,-87,-36,35,-75,-82,-60,-62,-51,82,-16,55,41,-11,63,-29,-81,-91,-36,-100,-67,-100,-91,-31,-55,52,4,32,-74,15,-100,-33,-9,-48,-78,-97,82,-2,-40,-97,-97,1,-49,-67,-79,-61,-100,-43,-97,-97,-72,-83,16,-97,-75,-5,-18,-2,-72,-3,73,-50,88,-39,-82,-100,79,-58,-65,-99,30,-82,13,-28,-94,-27,14,-14,-68,-3,-100,-15,-79,-89,-14,-76,-5,-82,-4,-61,-100,-68,-85,-99,-98,-15,-69,-44,12,-54,-21,-85,94,-70,2,-74,71,-100,-44,1,-85,87,-89,-100,-56,91,-18,-69,-88,-31,1,-100,79,33,-43,-21,-18,-84,-44,82,-53,69,42,-62,-87,-57,-67,-80,-97,-84,58,-67,-87,-93,-97,53,-69,-55,-71,-72,-64,-95,-14,-86,70,-94,-99,-41,-91,-100,-99,23,60,-100,-51,91,-57,2,-87,-22,-77,-49,-100,-18,56,-61,16,-48,-61,8,-99,-84,48,-93,83,-35,7,-100,-87,64,-94,-27,-96,39,-40,-59,-88,-16,-32,-98,64,36,-85,28,-66,-83,-69,-53,-87,-100,-93,-91,-93,3,-34,-7,-79,-88,79,-22,-77,89,84,22,-33,-94,81,-97,-88,65,-49,-77,-15,-30,-77,-94,-58,-61,35,-34,-31,-100,-95,-52,-90,59,-79,-99,40,46,78,-100,31,96,17,-100,-61,-72,52,-6,9,-42,-100,-100,-94,15,-90,-14,-80,20,-83,-60,-31,-78,20,-97,-100,53,-90,-100,-87,37,-92,-95,20,-88,-45,51,-13,64,76,87,22,-48,-100,-94,-56,-30,37,-36,-100,-87,-31,-36,-90,-84,-36,65,-92,-99,-14,-45,-26,-70,36,7,15,-70,-100,-99,51,61,-55,19,-76,-99,-95,34,-100,-81,-70,-94,23,-99,77,-19,-98,36,-10,-94,-13,84,-80,-95,-100,-3,-82,-80,-16,71,-39,-38,-32,-99,-28,73,-30,-89,-77,96,-67,42,69,-36,6,27,-98,-76,-91,-89,-45,-38,-14,-99,-8,8,12,-90,-36,87,75,-99,-95,18,-39,90,-38,-36,-67,-96,68,75,-7,54,38,-12,-23,34,-6,-67,-100,69,38,36,72,-80,-44,-100,-34,-66,-88,47,-92,50,-100,-63,-62,-70,-80,-16,-91,-94,51,-45,-13,-98,48,-17,-100,-100,-16,15,-38,-51,24,-99,-99,-84,66,69,-79,-30,-91,-82,43,-86,-56,-74,-15,-98,-66,19,95,92,-81,83,73,11,-92,-49,-15,3,-94,-98,-95,-97,-44,-95,-82,-93,-93,-12,5,-99,-76,84,-100,71,-85,-27,-40,28,-100,-93,-31,21,-89,-2,-75,-78,73,76,98,29,4,-10,-100,-98,53,-81,-87,10,-53,-52,-59,-24,-36,-82,-100,52,-31,28,17,-78,-78,-99,-86,-100,-50,-7,20,3,-19,-69,-97,-92,-85,-93,-57,0,-87,-99,-89,-67,-91,-70,-54,94,-98,-74,-26,-29,-3,41,59,-96,-99,-94,-52,-66,-99,9,76,-76,-77,-59,61,-42,95,-94,30,-92,92,-55,-21,65,-100,-91,-16,71,-99,-7,-13,-76,-85,8,-77,89,-49,-67,88,-19,-24,-82,5,22,-13,-63,-95,-99,72,-66,-86,-84,-18,-67,-42,88,83,83,-54,-86,-91,-42,-64,-9,36,9,-50,36,-86,-100,79,-98,-100,-78,-32,-56,-95,-92,-47,49,-94,4,-44,-31,56,-79,11,-84,-15,-74,-85,-79,43,-62,-34,-88,-80,9,-98,-94,77,62,14,-66,-5,-40,-90,18,-99,-79,-100,-93,-98,86,24,-41,-78,-98,39,20,-95,-2,-67,-37,-83,35,-4,61,-94,53,51,-59,-43,-100,-27,-94,-47,32,-28,-92,-91,-73,-35,-87,84,-84,-100,-56,45,-82,-17,-99,0,51,74,-58,-79,-100,-100,67,-61,-63,-67,-7,-75,-90,-21,-92,-38,51,-100,-100,92,-45,31,-99,-9,-20,-49,54,80,-67,73,-88,44,-3,-71,-7,83,-31,-34,-25,-94,85,-76,-48,-99,-62,-94,45,4,-86,43,51,82,-61,-96,6,64,-49,-38,-99,-40,-10,-86,32,39,-50,48,-57,-60,-38,-100,-98,-92,-14,3,-71,-99,-3,-76,-27,16,-38,16,91,-60,-74,-63,-13,-75,84,-35,-100,73,67,-89,89,-90,70,-73,-88,-20,-69,-16,-62,-100,-100,-33,-100,-98,52,34,93,-44,8,-97,-86,-65,-67,-99,-55,-77,49,-86,-73,79,3,47,-99,27,93,-75,-27,-68,40,-23,7,82,-22,79,-100,-100,-72,40,-23,-56,74,-100,87,-15,-89,-65,30,-32,-68,-91,22,-53,42,-92,-68,-27,-67,-32,-75,-50,-96,-83,63,-20,-60,54,-98,61,-91,-38,-13,-72,-76,-25,-77,-97,52,-76,-48,-84,36,-32,-32,-92,51,-73,-99,-67,-94,-95,87,-36,-20,-79,-73,-14,-99,62,74,-61,-83,-35,-77,-73,-55,-100,7,-8,21,-97,-99,-64,-56,-96,-40,-53,-97,-17,-58,-85,-69,69,-91,-70,-85,-97,-97,-43,-73,-19,44,-45,64,-5,58,-95,-52,-91,35,76,-89,-42,-74,-77,-100,-27,99,-20,49,59,-66,-61,-87,67,-99,-60,28,-14,-100,50,-66,-8,-52,-100,-36,-100,-28,-37,-100,-99,-96,-62,82,-93,-69,-50,68,98,-98,-73,-25,-88,-89,-60,-53,-80,49,-7,38,-74,-61,20,-33,12,11,64,-100,-94,-89,-93,78,-100,61,-100,50,-94,-8,-26,-82,-41,-42,-45,64,-100,-37,-47,31,-55,-28,-42,-66,-63,46,-27,69,-99,89,-22,-32,87,-24,-48,31,-9,56,-36,-85,63,-35,52,45,-19,-91,-100,-95,58,-23,-96,35,-92,6,-90,-3,-87,-98,39,33,-100,-59,-16,-39,-100,-51,-100,-100,4,47,14,-92,-93,75,-31,-99,-99,-59,-97,37,-83,3,-100,-100,-65,79,-87,77,-93,-31,-85,41,87,-98,-80,-97,-99,-11,61,40,-92,-100,-75,76,-15,-98,81,74,-6,-86,24,41,-98,90,-98,-92,58,-72,-90,5,-47,51,-49,60,-48,-60,87,-70,55,-78,-52,63,77,13,-37,82,-84,-100,-99,-74,55,80,-50,-89,-32,-79,-100,60,-72,84,43,-66,-17,-64,-38,-32,18,20,-91,-36,-97,5,-36,36,-92,4,-17,84,-80,25,-65,-49,49,76,-93,-99,-54,17,-10,-84,77,-98,-93,60,-14,8,42,47,-100,-14,-31,-25,-100}
{-81,66,65,-3,100,-59,87,75,99,96,-45,-32,-48,58,8,47,-30,97,87,51,35,86,39,100,36,78,-52,-26,23,73,-89,44,97,68,59,-31,-75,-4,74,6,79,97,-17,69,-57,100,-48,100,88,-13,1,16,21,-18,56,56,43,100,97,31,97,13,26,80,-10,2,33,-57,80,98,-34,-69,-32,-59,89,41,82,57,-23,-45,95,48,99,-24,60,98,-78,60,-63,35,-56,9,-14,-9,81,8,89,86,45,97,-96,90,79,-37,100,-94,-64,60,74,96,-15,31,98,9,89,70,-10,-5,95,70,21,84,2,43,7,15,91,98,-77,97,41,57,-32,72,100,56,48,50,84,-40,77,48,62,-70,12,16,47,30,13,42,93,43,10,88,65,-21,71,100,30,71,99,-55,98,-2,86,99,81,44,44,-62,84,52,-59,60,90,78,98,98,-98,100,-79,-31,88,-68,42,-33,90,84,34,86,-57,-74,83,75,-35,99,92,30,83,-74,51,99,-93,-96,23,99,-73,100,50,75,97,-75,80,97,99,36,98,88,100,29,57,1,100,85,100,-6,11,-57,-56,68,85,2,87,14,32,-11,-68,4,6,100,-27,-87,48,70,97,10,-24,100,23,8,89,40,96,75,-41,-56,2,5,67,67,91,86,-57,100,-39,37,-4,89,100,-94,98,-23,61,17,-99,-88,89,-29,-3,100,99,85,80,95,71,-1,99,93,56,-93,84,92,81,80,-17,-16,83,-38,-76,35,58,51,3,31,100,78,-86,40,92,-19,-9,46,1,5,86,-23,53,-27,90,-75,-53,98,-90,54,89,59,72,-22,-96,16,61,94,66,77,44,9,56,21,-69,74,23,-22,4,-73,-28,-11,-27,57,31,37,-58,23,78,68,-14,-41,100,100,97,99,-72,3,97,-53,-21,94,97,79,-58,76,83,76,-29,86,97,39,-18,75,100,28,100,64,83,69,100,95,-94,93,100,19,8,-4,53,9,-27,97,98,65,19,83,58,60,45,-1,11,64,88,76,62,-2,76,-38,87,95,97,100,-76,89,-15,100,83,49,26,81,80,97,0,47,100,2,86,53,-88,98,73,-13,-55,-85,94,-68,32,-11,39,95,63,-77,48,79,67,-16,-56,10,66,15,92,49,40,42,83,36,-6,31,-61,-46,-40,95,57,-78,87,95,67,1,-19,-18,91,76,-84,-4,79,61,43,97,100,81,33,12,33,-68,94,41,94,-1,-60,39,100,29,74,24,96,88,67,96,45,49,72,62,77,34,-35,-27,-11,-68,94,89,90,13,-27,33,100,92,-19,28,58,37,-5,93,-85,39,91,19,41,-3,25,66,94,92,-56,-74,91,85,84,11,-98,32,-97,100,47,86,64,100,21,58,69,-6,96,61,84,10,97,-55,95,27,-41,84,100,32,80,-4,56,70,39,77,-49,98,64,-64,-45,95,-57,-85,-84,11,100,-14,-20,29,100,97,98,55,-35,-93,100,49,-60,-45,-77,56,15,85,-19,33,-52,60,43,40,-17,47,63,99,50,35,100,-20,-15,100,-6,-35,58,-53,-89,77,98,12,98,42,100,21,20,77,70,-45,-86,-47,97,-5,93,28,7,-99,99,87,98,-37,14,91,93,79,-44,43,-83,12,100,51,-88,38,75,100,98,2,99,63,93,-77,100,78,34,15,74,-81,39,-78,-67,26,-28,27,-44,37,46,-37,63,93,71,-8,91,98,6,-24,75,59,-54,-40,92,-10,63,48,72,80,-75,95,96,62,47,88,90,78,-34,75,85,49,65,-20,21,26,-45,77,26,100,40,-61,87,-89,59,31,92,100,26,88,44,-96,-11,99,64,71,-7,19,99,-51,-60,-30,73,51,94,93,-68,79,-7,-13,54,12,-10,100,-89,-59,89,28,86,87,97,100,83,76,-96,3,75,93,-79,54,98,96,26,-68,47,8,100,100,-8,98,-47,45,83,71,47,89,-4,21,-74,93,67,-20,87,13,100,70,-97,0,100,93,87,-39,-21,99,98,99,15,100,-53,69,63,-19,100,100,100,-22,32,70,-4,-27,-46,93,13,63,77,-45,100,41,42,78,51,-7,95,-1,30,72,100,41,-98,7,-48,66,63,84,-78,94,-31,48,-26,-44,92,28,45,-89,64,60,87,58,-16,74,87,0,-48,51,-46,15,-29,74,-1,94,100,-17,-16,-38,7,100,-34,55,14,92,100,-13,13,63,56,-40,95,-8,92,-85,74,62,87,49,-48,97,-2,48,88,60,15,77,-85,97,93,87,83,77,100,88,14,-2,64,65,82,-16,82,40,89,68,26,94,77,27,-96,-44,50,100,96,52,58,55,95,95,-58,35,93,53,47,67,60,92,89,38,12,100,-34,86,100,95,97,42,73,86,-94,72,69,63,100,42,27,60,100,47,80,-65,-68,89,96,98,-47,88,94,98,-28,17,-10,51,72,95,30,97,-23,87,75,-88,95,26,85,-66,90,97,-44,62,86,-53,94,-15,100,84,-40,76,36,100,26,-74,51,88,-41,2,-41,-63,-19,31,90,-89,99,100,71,58,-70,40,17,95,48,52,-86,80,92,-1,84,-9,-23,92,86,-6,10,-83,76,92,52,-45,86,-79,96,-74,38,-61,-13,100,97,39,100,99,35,33,-52,8,25,33,-85,-26,40,-1,-53,-21,-65,-4,81,67,33,72,-94,93,18,-89,53,6,-94,-46,69,85,71,64,-1,-68,-36,98,-61,69,-1,98,100,45,100,-12,93,-61,-76,99,87,95,94,66,100,-68,-58,92,85,44,82,83,65,100,68,92,99,67,100,48,46,-64,68,100,83,31,41,46,97,-84,-4,-15,100,-21,-14,16,8,82,99,100,34,13,50,32,85,97,-34,39,12,25,100,85,93,97,81,43,90,-33,56,-1,-1,100,90,95,87,-13,26,72,57,94,-78,-78,100,79,13,49,53,47,-69,-43,61,98,3,73,17,-1,1,97,-9,74,33,95,90,84,-76,-96,100,100,100,86,-37,36,29,45,88,0,98,100,-32,77,93,29,-59,96,0,74,-78,85,-29,30,100,95,19,84,100,64,100,87,-5,-25,100,97,-24,30,43,-85,79,-72,-34,51,-17,92,96,95,70,100,-72,-20,-19,100,63,-65,-21,19,57,-7,-17,-12,-64,21,96,68,-83,-46,-35,5,-54,33,7,62,100,34,80,31,76,14,-45,-44,-22,15,-85,65,-53,53,12,16,91,87,54,98,25,-92,27,-16,9,26,100,-90,-43,-15,97,41,94,98,-57,31,-2,96,27,95,-94,63,84,64,-92,6,-88,10,-55,-71,58,72,100,94,60,-11,-89,77,6,-82,48,100,95,86,100,-8,43,-73,99,98,47,79,52,-97,52,30,42,39,35,85,100,59,-79,-75,-85,93,-61,100,100,54,34,65,-23,61,31,67,100,-77,55,94,100,100,72,-28,-1,100,32,-5,-57,-37,98,-35,100,-70,84,22,54,76,-91,-89,71,-58,88,22,17,90,86,-48,-96,76,-17,91,-57,48,44,-28,-83,9,74,19,-20,94,59,70,-64,21,87,-35,-6,-70,-32,98,-30,98,-92,0,17,20,90,93,99,88,83,-92,100,92,-10,94,95,90,91,92,52,3,71,-96,83,84,8,-21,-15,-77,98,61,-44,-24,86,76,20,100,-89,54,-13,76,100,58,53,54,75,35,-45,76,97,17,93,10,48,100,-85,71,89,87,-12,89,-69,80,82,62,60,1,-17,72,100,71,77,-47,65,-62,3,-99,20,-18,82,69,100,99,33,39,47,100,-67,-55,20,74,64,-19,16,70,99,74,19,37,-1,5,-51,60,29,3,92,83,31,16,63,71,100,-76,85,77,4,91,40,67,20,99,-52,11,-5,94,81,-72,85,-64,-48,-18,94,100,-13,-2,25,99,76,97,-44,-16,100,0,25,6,66,-83,100,58,-80,100,24,-22,-64,39,-10,32,100,83,51,-57,51,-60,21,11,85,47,-90,85,88,78,48,45,76,-49,76,47,83,49,99,-10,95,86,97,-2,58,-37,-55,14,-11,-4,56,77,-68,95,85,87,-35,36,95,23,90,39,-4,9,93,93,-21,-47,81,96,22,93,-88,-87,85,95,96,34,81,-73,75,80,-49,56,67,30,79,13,67,84,95,-33,86,28,-37,64,-93,-61,-94,88,-71,72,-40,-42,-57,84,94,-55,-24,86,25,75,-35,76,75,-52,79,59,58,-8,-11,73,67,60,-83,93,17,13,19,-68,78,92,53,97,75,96,-58,-64,29,90,100,98,-10,98,-13,-1,-91,-97,47,-62,33,59,40,25,-61,-21,-6,-71,100,74,16,100,63,85,88,100,28,7,77,48,25,25,85,6,95,18,97,-9,-1,-42,-82,-70,-26,84,97,100,31,-13,77,42,2,82,50,62,78,63,15,-97,64,91,93,57,-3,98,38,-7,80,100,77,93,82,-93,7,53,14,-35,94,100,100,84,30,74,91,-90,84,100,-95,24,-54,-57,-90,-62,68,-16,100,77,97,78,87,54,69,48,77,-1,-86,-88,11,17,-52,91,70,-30,83,100,73,-18,35,25,-91,25,25,-8,-18,-19,9,89,-73,-5,-80,89,22,94,55,73,22,40,8,-38,-95,59,96,99,81,100,52,33,10,66,35,-71,61,98,98,-71,98,46,75,100,29,-18,46,58,-20,80,15,71,2,-79,100,46,60,65,80,100,27,-67,-79,55,93,11,55,-98,82,100,64,-17,6,55,18,94,85,-23,100,96,89,58,-63,95,-5,87,82,13,-27,-42,-41,-46,-12,99,-47,84,29,88,98,-34,-7,86,100,84,68,-44,100,-29,63,-23,4,10,70,100,71,36,40,-82,80,61,96,-93,66,95,-30,86,-38,80,61,100,-41,90,-37,90,37,86,42,88,100,100,86,25,81,100,75,96,-60,93,100,99,38,80,-21,92,83,84,33,100,98,23,-10,69,25,100,27,90,-29,36,99,69,100,9,48,71,94,71,89,-10,7,94,23,-89,-86,-69,100,73,-49,75,-98,-68,100,91,-14,99,62,52,94,15,100,22,69,96,43,-12,58,99,98,-89,55,-21,66,94,89,89,-33,92,-11,70,65,30,-15,23,-17,37,100,100,-86,-3,87,22,15,85,-90,-15,0,40,92,40,-61,93,34,-49,63,14,84,-90,-65,-61,64,93,84,-60,88,28,81,78,-25,71,74,-41,-30,-32,4,-29,8,80,-55,-29,93,43,-21,-79,100,100,85,73,100,93,-80,96,84,-14,99,7,15,-29,13,77,80,77,56,-91,100,44,96,92,100,37,26,97,-88,94,72,84,63,-55,65,96,94,33,91,56,99,40,75,-77,72,-3,79,-32,-65,57,95,9,33,99,98,-20,-41,-36,-41,-5,92,17,-17,90,100,-6,83,-71,3,59,50,-48,63,98,79,35,4,19,100,-42,-51,-19,-91,41,100,79,81,-48,99,79,75,79,-90,-97,-40,-56,87,80,46,-78,-60,-88,91,85,94,-76,100,-82,26,93,-11,96,-29,-65,100,97,55,34,-88,-72,-99,23,56,64,85,72,-51,-30,-21,35,61,78,-19,33,-43,84,84,26,54,-20,100,95,-21,100,93,34,100,100,-4,20,-18,-45,58,70,-83,10,-24,66,67,29,29,18,-47,-40,29,-18,26,-79,-1,96,47,98,92,65,69,34,95,92,-43,61,88,96,95,59,28,65,87,22,-66,-49,78,-20,52,90,100,-38,-6,100,77,100,1,17,77,-2,89,81,58,87,29,-68,-99,52,-24,91,-75,81,14,-41,-64,7,100,49,88,-50,-5,97,-73,32,-2,-90,7,60,85,96,-7,10,97,98,61,44,75,11,37,65,100,92,-72,-21,99,20,88,86,-98,80,100,-17,-75,98,-25,-21,25,100,55,-36,-78,-21,80,97,-42,-41,26,-51,-58,-4,80,37,36,-50,97,83,-90,73,75,82,-93,-46,-2,76,79,-44,-29,86,32,-47,63,43,-1,100,94,57,-5,86,43,100,100,81,97,-27,99,14,-90,-76,38,89,89,-65,63,-72,31,80,98,75,96,99,-1,31,100,-31,80,23,26,48,97,92,-28,66,100,30,39,96,-33,77,-27,93,94,90,85,80,77,53,45,78,97,55,89,-9,98,-47,-6,95,-6,-96,89,91,75,100,-90,-99,-29,-27,-14,11,80,-36,1,100,73,0,-66,97,-30,-24,31,78,-54,1,86,16,92,76,86,100,-47,-16,80,65,-5,53,-39,97,9,-1,27,18,77,88,35,97,93,98,29,-5}
{-19,-22,-60,95,33,86,-55,-96,70,49,57,-39,32,-85,82,-90,100,15,-43,-49,-79,81,99,-57,99,77,79,43,-53,-70,-97,-86,100,-22,5,65,9,69,86,11,-28,56,100,-61,-85,13,15,100,90,84,-55,71,99,-12,-46,60,8,-89,48,74,7,100,70,95,22,74,-2,30,54,-74,74,32,63,80,-5,99,-7,-43,-69,40,94,80,93,-20,-95,53,87,57,-26,100,100,-47,100,100,66,87,98,49,-27,74,98,99,73,96,62,43,-57,69,100,39,100,78,-73,19,15,-98,43,-19,80,81,-2,43,91,-1,-24,84,-92,81,35,100,3,87,13,36,48,100,-15,0,-77,-43,54,90,-88,-57,99,98,93,99,69,83,93,-95,54,-60,97,29,100,48,57,97,42,96,92,54,19,-25,100,87,-64,49,67,4,89,74,74,-37,65,-64,40,-3,99,96,-27,-13,74,35,100,-80,-5,75,96,81,87,35,46,100,21,43,53,84,99,-59,100,-38,15,75,-27,55,-25,-75,88,-31,90,-90,14,100,33,-60,91,100,100,-20,-80,77,89,61,-26,100,89,4,95,-7,51,32,94,59,-83,23,-93,13,85,-1,-29,25,93,61,100,55,90,95,99,92,55,-16,84,96,-98,-50,100,57,89,73,-75,-97,-84,-25,37,-96,90,-99,71,-21,31,77,91,-62,-27,-65,63,50,44,-90,76,50,-11,71,76,1,99,45,98,-14,100,95,93,81,3,96,100,88,14,78,100,95,4,-33,10,60,63,76,-85,-19,88,-32,24,71,65,100,51,100,76,32,83,95,82,-4,96,100,60,-77,-75,-55,100,69,49,26,-8,46,44,-21,79,39,52,95,64,-63,94,-33,96,-25,-87,50,47,-48,21,-94,-87,32,83,98,-30,26,88,-95,64,-76,63,89,95,100,40,97,99,38,20,-69,78,83,100,40,100,57,-31,-95,-50,92,-68,92,80,91,92,-55,-19,67,50,99,81,97,-53,40,98,95,75,8,33,78,96,-84,6,93,99,11,98,83,99,-58,80,95,-24,76,54,81,49,100,25,69,43,84,11,95,89,-16,98,95,95,100,-47,0,26,28,99,32,-77,73,64,79,80,-66,8,-57,100,35,99,72,96,100,-80,11,-7,17,43,99,81,73,-50,75,-10,99,37,38,90,68,-1,100,68,100,-98,-69,96,82,94,85,88,100,97,44,-70,87,100,-26,71,-65,-9,-83,28,-94,41,-40,7,18,62,88,100,82,76,-22,17,56,92,59,78,81,93,70,28,49,83,39,95,85,54,40,70,69,-61,88,-58,67,100,43,-30,99,97,80,94,100,44,97,51,39,62,75,-55,-48,74,99,100,91,88,92,-33,59,-46,-54,97,95,22,67,100,-81,-20,53,-75,40,86,70,3,-3,100,-92,-83,-63,-76,80,43,42,-10,-91,64,-83,74,-26,14,71,-97,98,14,61,100,-15,99,100,74,75,-45,-36,1,70,86,-30,57,3,-94,100,-65,-39,59,-18,66,55,46,58,18,-87,-31,70,92,66,98,82,32,23,37,-57,-92,91,47,89,97,-85,71,95,51,92,43,53,-61,-62,97,87,92,80,63,-90,-62,-22,52,89,-58,41,79,40,-30,5,-97,-57,14,28,39,-76,-44,96,-8,49,-22,82,-43,16,69,100,15,-5,-14,97,-76,96,93,100,100,90,71,-18,-36,-72,-31,17,-32,23,-70,-6,-85,78,-37,75,-44,-94,37,83,-93,86,1,32,100,-35,-6,70,-16,98,56,0,99,72,100,98,-68,47,16,100,74,32,-7,99,98,-52,100,52,-77,97,76,-27,26,17,100,99,100,77,71,43,93,-48,41,100,88,-91,57,-34,97,68,99,73,88,-94,32,92,-64,-96,-36,63,99,-76,-51,-40,100,-60,-92,99,100,6,80,69,-73,-40,91,91,15,76,81,100,-53,24,42,40,-56,-38,-74,25,75,75,99,4,47,82,83,92,53,54,-61,90,99,43,50,-40,94,-28,-15,100,99,-49,-70,-43,77,86,66,63,82,90,-36,91,90,76,-69,71,70,20,10,100,10,100,100,78,-14,-35,43,12,100,-73,43,86,90,95,56,68,5,-98,51,-5,88,-92,-30,-22,100,-23,94,74,45,-3,13,12,41,74,69,100,74,-73,93,-19,-72,93,-88,57,98,-15,80,59,65,23,-10,97,52,68,100,7,91,-67,-60,3,20,-67,57,10,78,-21,70,67,92,97,96,38,-15,-64,1,98,-77,7,32,100,99,99,87,16,73,68,-17,-94,-16,20,95,79,21,53,100,84,-45,24,94,99,19,85,100,38,-4,11,100,-37,100,31,-83,57,98,41,40,82,19,-27,-42,4,-10,-92,95,100,80,85,17,-75,100,100,7,67,37,-30,-14,73,-26,68,38,100,98,-91,-31,52,98,-77,-91,-68,50,-60,-10,85,67,-46,63,39,90,32,78,98,16,98,11,-90,99,-50,-51,-28,83,-7,95,-26,-37,-3,47,-39,97,48,43,83,-87,80,17,56,73,100,60,98,-20,85,95,68,54,100,99,71,48,-32,50,87,-9,28,96,27,60,-31,100,-48,66,-26,-32,38,69,99,-44,85,99,83,61,100,22,89,91,-78,54,15,-13,93,59,-61,84,67,-81,98,12,100,-73,70,-9,39,84,-20,87,-26,81,-69,68,86,39,99,65,13,79,-71,94,-62,74,58,98,89,75,90,8,98,70,24,69,98,97,100,48,-12,84,81,17,-67,53,-42,100,99,76,98,56,13,94,78,-83,74,71,70,64,100,96,-74,63,52,-14,96,52,97,73,99,100,36,18,-28,-34,-22,89,-95,91,87,-22,85,77,82,67,99,-2,63,74,88,97,20,93,11,67,57,-44,-73,-6,-37,99,-37,45,96,-50,99,4,34,100,8,2,93,67,98,92,87,54,-47,100,42,-99,90,61,49,55,86,33,85,13,83,-83,45,-69,100,84,17,0,18,53,64,92,-15,100,57,-7,100,-14,58,-21,-78,77,100,72,5,93,-58,100,-3,82,58,-3,-16,-15,-33,-91,59,100,73,83,-97,92,86,92,95,58,75,92,87,59,77,57,89,-7,95,-21,90,-98,91,-4,75,-36,-96,6,65,70,79,85,69,91,78,40,72,71,-93,-7,-5,93,19,65,15,97,89,23,82,-25,-51,5,-78,37,-63,100,82,99,9,91,48,-79,-25,41,80,66,-66,-46,17,99,-14,67,82,10,36,24,100,-13,98,24,-28,-61,69,98,100,76,80,73,92,-4,-30,100,84,-23,78,92,-85,74,-39,-87,54,98,-1,39,100,86,93,72,23,51,70,-9,99,21,-21,99,60,66,100,49,97,81,99,74,97,91,100,22,38,-75,69,95,-17,40,-17,86,-95,94,-58,26,-27,100,83,99,95,49,4,54,94,48,73,91,-27,-79,-1,75,-62,61,-49,12,76,45,-66,14,85,62,-19,-15,-68,39,98,-21,100,97,95,5,-5,-71,43,100,80,52,100,86,100,-83,-63,97,40,8,60,73,71,31,58,85,28,-32,-54,-54,71,-71,67,73,86,77,96,-56,20,72,-24,21,-1,-55,84,38,55,-84,63,-5,-88,17,7,100,54,48,-31,75,83,-70,96,-88,100,-31,-22,24,97,93,90,-80,48,-59,33,-41,-10,-17,-89,20,54,98,29,37,99,92,96,70,44,10,9,-60,79,-3,62,-70,82,19,98,54,-61,73,84,-97,21,-21,37,0,74,-63,92,81,73,16,77,-82,85,81,-69,94,-93,-18,96,-97,-3,28,45,53,100,-55,100,-50,68,72,25,100,100,40,-85,-26,69,99,100,10,-50,20,7,100,-49,96,10,-59,22,62,61,53,56,68,57,-44,10,58,-43,99,87,90,33,37,100,97,-82,61,99,-7,61,92,-23,-98,76,6,99,19,-83,-3,32,100,-42,-53,-14,22,90,61,11,72,-68,26,80,28,38,-37,0,72,89,77,-43,-30,31,81,100,-26,4,93,96,-98,-17,-53,27,-20,-66,57,83,-77,39,100,-58,22,97,100,56,100,98,100,-21,12,-51,84,68,-56,78,-70,22,-7,-38,39,33,-19,76,100,41,100,-94,-28,100,-70,99,-87,40,80,2,90,39,21,59,68,-60,-89,72,91,-88,46,-84,49,55,-76,100,60,-46,-86,86,88,96,-48,-49,80,92,100,-21,-51,88,99,95,-93,22,16,99,71,-70,100,99,40,-55,-59,93,89,-22,-93,46,77,90,57,-4,15,100,100,-22,87,94,-45,65,78,82,-22,-1,42,62,-11,-12,52,31,-2,3,20,77,20,67,66,98,96,100,-30,-53,-7,99,100,100,-25,19,-29,94,27,25,100,77,88,11,4,96,94,16,99,71,-74,95,27,56,-87,93,92,39,-78,66,97,91,-2,7,99,39,34,62,42,-44,-49,-39,98,99,32,84,-81,74,69,-40,47,6,68,-6,69,19,100,100,45,87,-58,20,93,44,100,-90,70,40,85,100,100,96,41,-36,27,53,53,-28,100,87,-30,-68,52,95,-80,78,100,-79,17,85,83,100,46,6,50,-39,61,-5,87,77,90,100,-75,42,96,92,73,-88,-63,13,22,94,-49,-93,-8,64,-75,96,99,99,-54,38,-38,71,10,69,31,-82,68,20,100,-98,87,92,-32,65,86,72,98,99,-75,99,87,82,77,-26,-42,-43,-94,61,9,84,58,99,36,30,-95,31,28,-65,97,97,34,-22,100,27,-53,-16,81,33,-8,81,-89,-50,21,19,-64,91,64,-21,-76,11,88,-18,-93,51,-92,83,1,54,96,50,3,62,99,-84,25,28,54,100,58,77,-45,99,99,79,100,88,-63,-65,54,-63,100,-31,100,98,35,-38,-27,97,14,75,71,94,52,-56,100,-24,82,-1,99,50,-94,100,15,91,1,14,99,-9,64,88,100,-52,61,-85,60,93,-7,-24,63,14,38,60,70,95,-51,61,57,-24,-12,-36,74,76,12,-32,-77,74,59,62,-8,100,31,47,-99,93,-47,94,99,99,58,91,11,23,47,98,-7,-12,98,34,60,88,89,9,2,16,39,14,55,-70,74,69,70,94,98,75,79,70,40,39,42,45,24,-45,24,75,-30,91,77,-88,34,88,-63,-97,80,36,-24,97,-89,-30,46,99,91,59,50,-64,98,66,72,77,43,32,-27,83,41,78,-61,53,-60,-27,26,65,97,82,41,69,31,80,42,73,-11,74,14,93,91,-95,89,-16,97,80,39,-87,100,-7,-14,97,-67,59,99,-65,1,-83,0,71,-39,-74,94,18,-37,48,85,89,8,95,-55,91,-55,73,61,100,56,-38,95,98,90,84,100,10,-48,26,66,-85,97,100,90,94,-50,34,95,89,82,-68,97,44,80,-55,-55,-3,93,-11,-61,-17,-6,82,29,24,98,59,-56,-48,78,25,7,-58,-33,-95,-97,-8,5,-70,91,-20,77,89,8,-69,-74,61,18,-35,-88,100,-18,-21,29,76,19,-38,-24,9,-4,68,-4,16,51,42,93,100,93,45,51,89,69,-80,93,99,-69,98,-7,25,89,34,42,78,78,71,-70,-22,96,97,-70,88,65,32,2,45,9,80,2,2,3,30,-49,-77,80,-31,99,97,75,90,70,-52,-61,44,21,92,-85,-96,100,-29,-65,-45,66,96,91,78,75,94,-81,73,73,14,9,-84,2,73,-8,84,33,8,58,34,-14,38,75,38,53,12,77,98,95,64,-30,59,74,97,-6,50,37,61,-71,100,40,60,61,92,66,-58,90,-76,96,85,81,62,-50,92,72,-74,81,96,-74,20,53,94,96,-49,81,99,90,70,34,-91,88,14,-75,-93,38,79,79,95,87,-94,-93,-13,47,77,95,91,28,17,-53,-22,-3,92,-83,100,78,96,17,45,93,33,-63,29,100,86,-44,56,95,-51,72,-13,73,40,98,71,73,65,100,13,30,-93,64,-58,95,100,1,39,1,74,75,25,99,-78,64,-1,8,100,-14,37,31,88,100,-54,-11,94,-4,68,88,97,68,54,94,74,-42,-29,63,-87,35,69,0,-11,-87,98,74,-87,-14,98,33,-5,100,-20,91,73,58,47,-75,25,-4,10,82,99,-86,-29,100,68,100,-58,-53,59,-64,-76,88,100,-12,-2,-43,87,-45,-64,42,97,-95,97,42,48,-86,3,-51,-26,26,4,75,73,92,33,77,90,56,-29,-11,83,19,88,77,93,94,-17,96,70,-56,-49,99,80,97,99,36,71}
{100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100}
Returns: 4.92291914555E10
{-76,-17,-66,-85,-63,-100,-77,-61,-28,43,-96,-100,-62,7,-28,-82,63,45,-42,2,71,-94,-89,-42,-10,40,68,-14,62,-43,-58,-4,-90,-83,-6,-85,15,-99,-6,-92,-99,-100,-93,-39,-29,-16,-66,-25,-85,-44,-33,-32,-7,-53,-85,-11,83,-85,0,-100,-17,-72,-100,-22,44,33,13,-59,-96,-16,-9,-70,-40,-82,-100,6,99,-94,2,-76,66,5,-87,-100,-98,-2,7,-100,-36,-63,67,-79,-23,56,-58,60,3,-83,99,37,-93,-96,46,74,-32,43,-99,-67,-85,-97,-74,73,-98,-96,-100,39,12,-99,87,-59,74,-94,-5,30,-65,56,39,-100,-30,-95,-48,43,-95,-67,-1,50,-35,63,-62,-98,-10,-93,-86,-34,-23,-93,-38,33,-95,63,-90,-97,-64,73,61,13,-52,82,1,-91,-17,-88,38,-94,-59,-88,-83,-93,16,-100,13,-99,-72,95,48,-38,-69,-4,-100,-59,-97,37,62,-95,93,-32,-80,-94,-92,-99,-99,-66,58,-100,87,3,-39,-38,-92,-99,-54,40,38,-28,-91,-78,26,-15,-8,17,29,-70,-100,-54,-100,-69,79,30,-99,24,-99,-42,21,-91,48,-68,-16,43,-100,-65,-9,-88,-18,-12,22,-37,-42,25,80,61,-84,-100,-75,-74,20,-83,-94,-71,-91,-49,-77,-96,-82,-98,-100,-81,-41,-98,35,74,62,-21,-100,1,-60,58,-80,-79,-75,-65,-17,-39,-95,-96,-80,-78,-67,-25,-77,15,-36,-28,-87,-95,-40,-67,-75,-99,-40,-92,-67,-98,-89,-68,-80,-28,-64,-90,-79,20,6,34,-98,-75,-94,-87,62,52,-16,99,-76,7,-81,96,-95,15,85,-32,-23,-49,-44,-99,-79,-80,86,-80,-87,-68,-21,-77,-7,-22,-62,-67,-93,90,-92,-95,-46,26,-94,48,-78,66,-97,37,-100,45,-65,-92,-64,-96,55,-95,1,-53,77,-37,-73,-76,-96,9,-78,-100,47,82,-72,17,-70,-70,-7,-100,-71,-85,-40,-80,-91,-100,-100,-44,-99,-64,-10,-28,-18,1,-58,-98,-79,-71,-71,-99,37,55,-30,-73,-98,-78,87,7,0,-17,-99,66,-79,-99,-70,4,-34,59,22,-48,-97,-74,-64,-98,-6,33,83,-100,-97,26,70,-21,-83,-39,3,-72,-58,-32,-37,21,23,-47,-99,-90,72,-90,-7,-97,8,-75,-94,43,29,22,-100,-75,-96,16,-99,-78,-100,-37,-67,-59,-95,-49,6,-66,82,-95,29,-94,73,-72,-96,-91,-59,-78,-90,-17,-45,92,-98,50,-2,94,-69,-20,-99,-35,-50,26,-29,-68,-92,-100,-45,-83,-55,-99,-79,-48,-79,-84,-60,-31,84,-87,-92,-31,-37,-62,-88,-31,86,-72,-89,84,-4,-97,-61,32,-99,-91,-75,-57,-100,-83,2,-62,82,-100,-96,18,-100,-32,-93,78,-74,-100,-55,22,-100,-98,-100,91,4,-97,-58,24,-97,-19,-94,-12,31,-83,-20,-100,2,52,-86,15,51,83,-93,49,-66,35,-77,-78,44,-100,19,-7,-100,-93,-79,64,-100,-56,-100,-82,-100,-84,5,-91,-33,-30,-88,-50,61,85,-94,-100,-57,-96,-97,16,-43,-33,-50,-6,-97,-100,-87,-27,-10,82,-100,-74,14,-72,-20,94,-79,9,-14,-100,-21,33,-19,-34,-68,57,-69,29,-34,38,-73,98,13,82,82,-95,-99,69,-54,-85,-83,-61,-67,-100,-43,-36,-92,-98,74,-43,-25,89,86,-80,-93,16,-43,13,-43,-23,81,-99,-89,-60,-99,-41,-89,-32,19,-92,-82,60,22,27,-66,-97,46,-100,-100,-93,24,-13,-52,-89,-97,52,28,-100,24,-77,60,-83,39,66,-70,-70,-19,-1,85,-98,78,98,-97,-48,6,14,-58,-90,-95,-28,-47,-37,48,-62,44,-7,-93,-10,11,76,4,-81,-6,-39,14,-30,-68,7,-78,-100,31,-95,-29,47,-73,-33,90,-55,-94,-7,-75,-98,-16,-76,-46,-24,-30,-72,-100,-27,9,-38,-96,-30,-47,84,-24,-92,2,-33,55,84,58,-10,48,-20,-97,35,-68,-32,-27,-100,-64,-67,-72,-35,-97,11,67,-66,43,14,-86,-90,-41,-100,-97,89,-100,-49,12,99,-100,-100,-87,-65,-96,-29,-95,-81,90,-62,-60,12,-62,55,-61,-30,70,14,-60,88,45,-94,-94,-97,-7,-58,-65,-76,23,78,-79,-100,89,50,12,26,-46,39,-98,32,-100,0,29,-84,4,-96,-68,10,-100,38,2,-24,-76,67,-48,-88,-34,-35,-24,20,40,-100,-83,-100,-95,2,94,-4,-79,56,78,-72,19,-96,82,-86,-84,-100,52,-91,73,-46,24,54,82,-91,-33,-13,-23,-22,40,0,-91,80,-62,-99,-90,-89,2,2,-100,-22,-13,-94,-96,-20,-48,-100,-41,-12,-99,-87,81,-99,-91,-100,-99,-97,-81,70,-100,95,21,-46,-61,-87,-29,71,-94,-59,-76,-28,-46,-65,-87,-23,26,-54,18,-78,-89,-97,-30,-43,-94,-99,-90,-92,18,-95,37,41,-64,-100,8,54,-100,-99,-98,37,77,88,20,64,-94,-53,70,-19,-75,91,-80,-70,-23,82,-68,26,-41,-80,-97,-21,-34,-66,-87,-68,52,-61,34,-78,-79,-69,-69,95,-100,-56,-72,76,32,-38,-47,-79,-100,-95,71,-100,75,-94,-97,23,-95,27,87,-90,75,4,46,-100,71,-69,-57,-90,-23,-26,71,99,-36,-62,-72,83,-74,12,-86,19,-71,65,-23,-61,-100,-45,-31,-68,70,-92,-48,-63,-26,-87,-82,88,-99,-59,-96,26,-67,-73,-84,-17,-61,-96,-74,-33,-99,0,1,-97,-86,-95,-99,-46,-50,43,-46,-99,-73,-57,-71,-89,-59,-87,-79,-97,-53,-72,-66,-41,87,-14,-14,71,43,65,-98,-51,83,99,76,99,-87,-46,-87,-91,-44,36,-14,-62,17,-25,-52,-48,-64,-100,-55,77,10,-80,-100,51,-93,-98,-72,-77,89,-51,-35,-71,-90,8,-100,82,-98,-100,-92,-23,-8,76,83,-89,-57,59,6,-43,41,-94,-86,-27,-95,-90,-8,76,-10,-36,60,-66,92,76,-83,-98,-69,-53,10,-60,-44,-86,-92,-50,-70,-19,-96,-55,-50,-98,53,43,50,-86,-54,-33,-97,-42,-75,28,80,85,64,-58,-89,-55,51,-98,-88,-71,-46,49,-87,-54,-95,-100,96,33,-55,26,-61,-90,24,-86,-83,-68,14,-86,36,-99,-3,16,-95,-78,7,-18,19,25,17,-94,-81,-43,-12,51,-77,-78,-94,34,49,-51,10,-94,-56,-86,35,-89,-46,-80,-67,98,-100,-90,-100,-100,32,-94,87,-91,-100,-53,-70,-81,-62,-15,23,-100,-21,-36,-61,-98,61,23,-34,28,15,-74,-47,-75,39,-10,-42,-89,-72,-75,72,-50,44,-100,-70,-99,29,39,-71,67,2,79,-41,-42,-21,-99,-78,-82,-93,-99,76,-89,-100,-96,-50,-91,59,-48,-76,-100,6,-52,68,-100,95,-92,-98,-34,-51,7,-94,-88,-37,-89,-33,-45,-53,-87,25,7,83,-48,65,28,-47,-75,-1,-65,-54,-100,3,42,44,-91,-52,-4,-86,-99,66,-63,-34,82,25,-97,-96,-68,8,-94,-84,-60,67,-26,18,-18,-3,-87,43,-10,11,79,-41,-5,-100,-85,-83,52,-78,-69,60,-92,97,-96,-84,-22,52,29,91,72,-49,-62,-25,28,44,-82,87,-65,67,0,-27,42,-20,-14,-69,-86,-69,-42,-29,74,37,33,-87,78,22,-61,-12,81,-100,-92,34,52,13,38,-83,-82,56,34,-75,-71,-99,-1,36,-100,-4,-96,-86,-31,-12,18,-12,3,18,-50,-81,-75,-98,-99,0,-92,-78,-74,28,89,-14,-39,-54,-99,36,-34,-96,-98,-55,3,48,-64,8,16,-100,-95,-78,26,-62,-84,-73,-90,-99,-91,-28,64,58,83,-94,-100,27,-100,73,31,60,74,-27,-75,-95,58,-100,9,-54,-99,-54,86,-89,-89,-90,-99,34,-25,-50,-26,-41,-77,-76,-100,50,-40,-82,10,-100,-40,-85,-69,-69,-98,-96,-27,-87,7,-29,-91,-91,-99,-89,40,-80,-100,-30,99,32,-100,-95,-100,-22,-92,13,-47,-58,39,-99,46,-97,-18,-99,-37,9,-72,-51,56,-100,-47,-1,-94,95,30,47,70,-96,-74,-57,-93,79,22,-85,-11,-34,2,4,97,49,-96,-99,-99,61,-97,-66,-99,-18,-79,-96,-18,28,-59,-100,-6,58,-28,44,-84,18,-93,-91,-71,76,-95,-33,95,-48,-80,-100,28,-97,-32,70,-93,-100,93,-95,-26,-100,58,-7,-92,-9,28,-30,-67,-75,-23,50,26,-68,36,-66,-82,-30,-55,86,-87,-90,-81,98,-91,64,-71,-92,32,-22,63,-32,-87,-13,-97,-17,-100,-97,29,85,-27,-54,75,-74,4,-4,-98,54,67,88,-38,63,-53,-84,-62,-79,-100,-73,13,68,17,-100,-88,68,-63,14,-82,-19,-93,-13,56,28,-89,-28,53,-50,-47,-89,87,-100,48,30,-67,-91,-49,-81,-11,-78,-94,-51,33,90,-65,93,-95,-66,84,-93,-96,-5,-97,-11,-98,-20,-73,-94,-15,-74,58,-81,-98,-47,-92,-95,-96,-100,-74,-34,-78,-87,-100,-50,41,92,-68,-100,81,-49,-71,-2,-59,51,-14,4,57,47,44,53,-91,-77,-98,60,-99,74,-71,-80,-96,-99,78,26,-67,91,-69,-35,2,-83,-49,-89,8,-83,-32,-62,24,-96,-92,89,63,-100,-94,64,-79,47,-38,71,-40,-100,-65,98,-59,-96,41,-91,-99,44,-87,47,-2,-75,66,20,-78,-90,-29,10,-27,-40,-82,43,-77,-74,-3,-18,93,-88,-37,25,18,78,-67,-6,-51,22,-56,74,-13,59,-65,-11,-70,-92,-28,-73,-71,-99,7,-92,-48,-63,-77,94,-80,-45,83,-59,80,80,-64,-99,-73,53,-93,-72,82,-78,-60,-62,-50,-95,-30,84,82,-83,-100,-45,15,-97,59,74,32,-93,-33,-61,-31,-21,-68,36,-14,84,16,-18,-72,42,-73,-63,83,-94,-90,-59,-55,-66,-9,-100,-23,-36,-98,-93,-93,-9,-95,-99,-80,-100,-74,-97,-50,-44,-88,-9,-81,-56,-100,9,-61,31,-50,17,-51,-91,72,-100,-58,93,-88,-15,-69,1,-81,-20,-96,-10,-9,-8,-74,-86,-19,-51,-94,-78,-10,90,-90,32,-72,-17,-69,96,-41,-89,-99,-29,-48,-1,-92,72,-68,85,-100,11,-93,-39,97,11,-11,-29,-97,-69,-1,-53,-100,-95,-96,-29,-60,-16,-13,-75,88,-58,-27,-78,-2,-1,-98,-73,-70,-60,2,-86,-70,31,-100,-51,-75,-72,45,59,-95,79,-92,6,-82,-93,-93,-67,-26,-74,23,-23,44,88,62,-99,71,-67,-8,27,77,-50,-38,-26,-19,-90,1,-60,20,-75,95,-79,-92,-86,-75,85,-88,61,-95,-24,-100,20,-88,-96,65,-100,80,-97,-72,-39,44,45,-21,4,-22,19,-85,21,-100,15,-30,-49,7,-97,-94,-18,-52,12,-96,-29,-43,-72,-100,-100,83,-94,6,-87,-100,-77,-69,-4,-100,21,58,-40,-1,-52,89,-83,-99,-91,-99,-22,6,-98,-43,-19,13,-66,38,-92,-94,-19,4,43,-84,-94,-72,80,-100,-88,70,-99,71,19,51,-18,0,79,31,-64,36,-55,36,-1,76,33,20,13,-97,-91,-74,-84,-99,-90,-39,34,-71,51,-71,60,-94,-99,1,65,47,22,27,-50,77,-57,21,-2,-92,-13,-70,-72,-88,-93,-88,-88,-12,38,-100,-87,-83,-91,-4,-91,8,-50,-100,-49,-67,72,4,26,76,-27,-46,-71,-15,-48,-48,40,-90,-88,-94,-16,-82,-84,-93,-84,-100,99,-65,94,77,-43,-87,49,88,-78,68,-98,41,-99,25,-44,-100,-94,-75,-62,26,65,-87,-84,-66,-90,-30,34,-30,-77,-100,-85,-97,-52,-99,-48,23,16,72,-84,70,-69,-35,-44,-62,22,-37,-100,-90,-95,-96,-98,-100,-82,-97,-100,-54,-66,-72,3,25,-100,66,-48,-82,-82,-100,-99,20,-84,42,-93,77,-53,-23,88,99,-100,-17,2,-82,9,-28,16,-97,63,-43,-12,-83,-96,-81,-95,-74,-100,-47,-100,-74,-99,33,-62,99,-22,-10,-98,-59,-62,89,-100,-76,66,-100,9,18,1,48,-25,-87,-62,95,-18,-100,-96,-99,-17,-71,52,-99,-22,-90,52,-24,-84,30,-100,90,-79,15,-22,-76,-98,42,18,31,89,57,25,-79,44,-100,-72,-100,52,-10,-22,-72,-81,-16,5,0,-58,-24,78,28,-97,-89,-81,37,-99,-98,-1,-100,62,-100,-99,90,56,-99,-94,7,-100,-74,-63,-58,-48,-38,-7,-76,-95,-100,99,63,-67,-100,-98,-36,-89,-12,99,-12,81,-100,-20,83,-82,8,-87,3,25,-38,-73,-54,-2,23,-88,51,-100,-56,77,-93,-47,74,-4,-73,-99,-96,-99,65,88,-5,-24,-71,-32,24,66,28,-55,-99,43,23,-75,-96,-88,-93,-71,-100,-69,-80,-64,3,-65,-100,-6,-66,-88,-100,54,-100,-88,29,-89,-81,-79,-1,-34,-75,-98,-8,-95,-98,68,-96,-80,-54,-71,-32,-26,-5,-29,-78,78,-21,-14,-96,97,95,-43,-60,-72,-99,-50,-9,-82,-79,21,23,-10,-77,-33,30,-84,-56,11,72,-52,-82,-32,-58,-71,-67,-94,-95,2,-93,-98,-91,72,-97,-93,-98,77,-98,-46,-99,37,83,-95,-100,-94,-75,-45,-41}
{19,-75,-1,-33,-100,-97,13,-97,31,-100,37,-91,58,-100,8,-100,-21,23,-97,-57,-34,-78,-93,1,-99,26,-18,-74,-10,-40,-93,-15,-14,3,-62,-83,21,-96,71,62,91,-97,-45,38,70,-44,87,-47,-30,-83,-77,55,-100,-98,-85,-53,-47,72,42,-84,53,-59,-68,28,-72,16,-86,-14,-85,-90,-30,91,-97,68,29,-89,-97,-75,7,-45,-25,-67,56,70,-85,-46,-70,-98,-49,-75,30,13,57,-100,-80,-78,-69,-20,46,-29,-54,-63,-85,-54,-100,-98,-92,28,-55,-100,65,-31,-100,-14,-89,66,58,-58,-95,4,-71,-23,-100,68,-37,47,-61,-83,-100,-69,-98,-42,-95,-37,-78,27,-13,-83,-100,-54,-18,-100,70,-76,-99,80,30,5,-97,43,3,44,0,13,26,-88,-90,94,41,-13,-62,-87,-73,34,-80,-100,-100,-96,-100,-56,-90,-30,-79,32,-21,-47,37,-69,-7,36,86,-97,-81,-24,18,-72,47,62,-31,-63,-4,56,-95,-100,17,-75,90,99,70,-63,-70,17,12,16,20,-90,-57,88,39,-65,7,-35,-60,-100,-80,-93,-71,-96,-93,-84,59,-65,-100,-17,-52,26,77,-34,-98,14,-88,-87,-19,-48,71,-94,-25,-68,26,-94,-30,-99,39,12,-79,-37,-65,-50,63,-68,-95,90,-70,-22,3,48,-65,95,69,-35,87,-79,75,-80,60,-50,-91,-100,53,-52,-36,41,54,-12,-60,-73,67,-90,-100,-97,-55,-100,39,20,96,13,13,79,-3,-52,-84,-42,-59,-77,-34,80,-57,-42,-94,-71,-80,80,-93,3,-53,-42,-69,3,-93,-39,92,-31,-33,-13,-36,-99,-94,-76,5,-78,-95,-95,-31,-64,88,-94,15,71,81,-93,3,60,88,73,-19,43,-93,-89,52,-19,-92,47,-49,4,26,-99,64,-40,-91,46,-25,-89,-81,-39,-100,46,-78,-82,-19,-33,-14,35,-44,-82,71,96,51,51,79,31,16,-99,-22,-93,-69,-65,32,29,-19,34,-36,68,13,-13,-95,39,-85,-81,-100,71,10,-99,-90,62,39,24,-67,-100,-63,0,-77,-73,-95,65,-13,-24,-60,-37,1,-98,-95,15,-44,79,-98,-16,-81,-100,27,-44,37,45,-100,-98,-36,-54,-76,0,-100,-73,-77,-64,-81,-100,-94,68,-96,3,-95,-89,-54,-100,-99,11,-90,73,28,37,-83,-33,-98,-93,-91,-25,-76,-47,77,-100,-45,-27,-44,-63,-91,-70,-98,27,78,-96,73,-80,-10,-95,25,91,-100,-84,14,-53,28,-97,-98,39,-43,45,8,37,-4,-41,-66,-69,-100,-63,-93,-95,-6,-20,-49,-90,64,-66,-60,-53,90,-67,-100,-98,44,57,-31,-94,-100,51,-96,-90,-100,-100,97,40,-79,-99,-56,-96,-78,-100,-82,-98,81,-49,-90,6,-71,-97,-19,28,-79,-77,-59,-53,37,-97,-84,-99,-63,67,-94,-66,-54,23,-88,-35,-1,-85,73,-98,93,27,-91,-35,8,-35,-8,-47,-77,-81,-100,35,84,37,87,-99,-72,-99,-65,-32,20,-85,10,5,79,-94,-97,-12,37,-79,-100,-100,-47,41,-100,-100,-71,5,69,4,-64,62,-100,49,-100,-9,-21,-87,42,48,7,-64,-97,45,-2,61,-61,-71,-29,42,25,-35,-100,2,-99,-100,-94,34,-90,-29,44,-5,-90,-84,15,85,17,-78,31,-72,-19,-58,-36,-100,92,-67,-99,-100,32,8,-89,-43,-25,32,-55,-78,-92,-44,43,-97,-88,-94,-11,-29,55,-98,-14,-96,97,47,-64,-3,-39,76,-38,-97,-47,57,-91,54,57,-92,-1,10,-82,62,-57,39,-30,-27,63,-99,80,1,-30,-84,19,-77,13,76,12,-99,-56,-33,-72,4,-41,-69,-99,53,83,-97,61,-100,-55,-95,-94,-41,-25,25,-39,-48,-11,-85,-60,45,30,-76,-20,-50,91,-100,-87,-97,18,40,11,-91,14,-2,71,-66,-77,-77,-97,-5,46,-30,-64,-68,-56,-63,-77,17,-19,-71,67,-100,-9,-55,28,-87,28,-52,-97,-100,-100,-66,-90,-10,-90,-83,-86,86,-64,13,53,-100,-94,-55,69,-71,-93,59,75,-23,-38,-96,-96,-100,-93,-100,17,-90,-99,-11,21,-4,-100,-84,-3,-84,-52,-64,-52,1,-77,-34,-47,-28,-77,47,-82,-88,-64,19,92,31,5,-50,-51,-100,1,84,79,87,-96,97,-97,-93,-72,-25,59,-38,-51,-97,-9,-100,-19,-62,-100,-33,-48,-59,-85,-64,-62,58,-100,-48,-43,-99,85,-17,51,8,7,-79,-86,-29,-29,-99,49,-97,-81,63,20,-85,-76,-77,45,-99,-53,-67,-97,-100,-91,-99,-46,-80,-100,-34,-85,48,-28,-88,37,47,18,83,-97,-80,-94,-90,55,36,-86,-50,58,66,-52,88,-73,-72,-88,-98,-97,-98,70,-60,-15,-7,-99,-100,-93,-99,-97,12,1,-75,-51,-98,25,85,-100,-22,-50,35,-85,-68,-99,26,22,-40,-53,-55,41,-1,-53,-18,10,-67,-71,-17,-91,32,22,-57,33,-72,-80,-17,75,-5,22,23,95,3,-100,-42,-20,57,-85,-91,-98,-55,13,-78,-50,27,50,-77,51,-83,87,6,63,-3,-76,-21,-22,50,-99,-20,3,-40,-60,-87,6,23,17,-99,-88,-99,-98,-100,-74,-9,-42,-70,36,-29,-6,79,62,97,21,-80,-78,-30,30,23,-34,40,-83,-100,-73,-100,-34,-100,20,-18,-100,88,23,21,-53,-100,-76,-25,59,-40,-11,-100,-79,51,-10,-87,75,81,-93,-100,5,-15,-73,-64,-47,-100,52,-1,-87,-87,-100,-24,-38,56,88,-26,-89,-59,-97,-37,-28,-71,-81,-96,-23,-100,-81,-84,-90,39,-12,8,-19,-11,-83,-95,-77,68,-67,-39,-100,90,-68,7,-1,92,-91,-78,97,19,-49,-98,-43,-22,49,40,-27,-97,-38,-43,-91,-19,-29,65,-33,-68,-77,-96,-80,-48,-62,-98,-98,79,47,-95,-42,-92,-61,-55,-68,30,10,81,-89,46,79,5,-53,9,-77,33,-8,-50,-100,-94,69,-88,-37,-67,-94,-92,80,-98,-85,-22,-47,68,3,92,-90,-94,-40,-100,-28,41,8,-56,-35,-80,64,-93,-30,-29,-91,-77,56,-91,-72,-73,10,-49,-83,-3,-100,-90,-60,-69,-98,37,21,-99,-99,-78,-22,-100,-28,65,-18,73,-80,-56,-66,-80,-83,-28,-94,-74,79,-64,-76,48,-88,-50,-77,28,-24,-97,87,-99,5,1,-16,38,-96,53,49,-31,-51,-96,-53,-94,18,-100,-92,-22,39,-25,18,35,-98,84,-62,-93,-94,-100,-79,-43,-36,21,60,-4,-8,41,-63,-60,68,-60,-2,-80,-100,-91,-84,-69,-98,-12,-96,-22,-44,-38,-53,-99,27,68,-84,67,3,5,17,-55,69,96,-12,-68,13,-20,-64,15,-62,-89,-90,-76,-100,-75,-69,77,-98,-86,75,-55,-54,41,12,62,15,42,-29,-39,24,35,-98,-79,-62,-92,67,38,-22,-25,-70,-100,-21,-99,44,-3,-43,17,-32,-32,-88,-96,-7,49,-21,61,23,61,92,-58,-60,39,73,-99,-46,21,-68,-44,-22,-49,-35,-29,-100,-87,50,41,-92,-97,-82,-100,-76,82,-98,17,-32,-98,-100,-100,21,-68,76,-21,47,-99,-66,59,13,-29,-20,-100,-55,-21,-71,-95,66,-76,42,78,-72,-88,-2,-100,-42,-85,-100,0,79,-41,-37,-41,-84,-60,-100,-25,-39,85,-20,-4,-64,79,28,-72,-59,-99,-32,-80,-90,94,-11,-78,-86,-2,-32,-26,-96,-79,-93,26,-68,-96,-48,68,43,-100,-54,-42,-100,-81,10,-30,-61,-100,71,-67,3,-21,50,-48,-80,-63,-92,-49,-78,48,-26,-81,-66,-19,-61,-44,-64,-72,42,-43,68,14,82,-97,84,-61,-47,-88,2,27,-92,-68,5,-53,20,13,-100,-5,-5,64,-59,-37,1,-47,-95,95,98,11,-100,-75,-61,-62,93,-71,-97,-9,-50,-52,-52,-100,-98,-85,-100,-87,-32,-100,-13,-98,-22,70,-37,-50,-95,-94,52,-70,-74,-99,96,-39,43,-94,-10,-65,90,-99,-100,-82,-76,-96,-77,-76,-2,-13,-93,-99,-11,-3,47,-60,-24,-99,-36,-9,-100,79,-97,33,-100,-32,-69,-54,-91,-32,-92,-79,64,-19,4,-65,-13,-34,-46,-68,-97,-100,-16,73,-53,-55,-96,-87,-92,58,-98,-83,-73,-52,29,1,-97,-89,-93,65,31,23,-98,-8,18,61,-78,-60,-72,-32,-97,87,-67,-87,-100,71,28,-96,-62,99,6,39,45,-99,-96,-7,-100,-49,-93,-68,13,9,-79,-21,-98,-62,-6,-10,-86,38,21,-99,-100,-38,44,51,54,-53,91,-93,-3,-62,-62,8,-38,-86,-95,-17,-33,65,-18,14,-40,-81,-56,79,-92,-97,-83,-7,-7,-89,-82,22,-82,40,-87,-22,29,65,-26,-4,-95,-64,-46,-80,-93,-77,-55,-98,-12,76,16,-88,-100,-36,-94,-94,-50,-96,-69,52,-93,-99,-38,-100,6,-89,-69,99,-98,-97,-71,-13,23,26,-72,-97,-85,-86,-98,81,-67,-95,8,-78,17,-56,-95,-88,-92,-79,51,73,49,-95,-9,-91,37,44,0,-100,-43,36,-94,-55,60,-30,-97,-10,-55,18,65,98,-90,-89,94,-68,72,-4,-29,-6,-100,22,21,-100,-63,28,32,55,59,-37,-88,-70,-82,-21,-55,-14,-94,-47,-68,48,-57,90,30,-99,-16,-19,16,-43,53,-49,-98,-100,-17,87,29,-100,20,65,96,-1,-68,-58,65,30,-67,8,58,45,42,-26,-78,-21,-100,-87,-94,-66,-87,-3,89,-59,-98,85,-100,-82,-12,-100,52,-71,-21,-35,-98,-85,-17,-61,57,-36,-96,-9,-98,-98,-99,-90,51,39,-83,-77,-42,-100,-100,47,-86,8,-67,-79,-100,-95,-40,-83,-100,-98,-34,13,-80,-78,-30,-98,-74,-69,59,-75,-100,-82,9,-89,-89,-61,-26,-13,-50,-8,-4,-93,-75,-85,-85,4,-64,17,-100,-87,1,-89,-88,-87,-56,-95,-100,80,-51,-42,-95,-76,72,99,-84,-62,20,59,-99,88,67,59,-3,-97,-20,-100,-39,-100,8,-89,-34,-48,57,-100,43,-100,99,-78,94,-20,-29,-97,59,-58,-69,-79,92,-83,62,23,47,-93,-83,-89,-100,-36,80,61,-71,-89,-48,-80,-75,-98,80,-94,25,-59,78,-35,-88,13,-29,0,76,-52,75,-80,-78,56,-66,15,-65,-43,-44,71,-43,93,13,-99,-80,-54,98,-94,-95,-93,-49,-81,16,-70,-87,-100,-75,-21,20,-95,67,-82,-94,-75,28,-99,-100,-12,-94,40,20,-32,-57,-99,-72,-68,17,-99,31,-28,36,8,-45,32,56,50,-77,-41,-8,-49,-5,13,-93,-98,-89,71,-4,96,-100,79,-75,-94,-18,-76,-95,-53,-11,-97,-15,-77,87,-83,2,-8,12,50,-91,-58,56,-25,31,65,-68,-60,-91,-100,-78,-19,-67,4,-50,-80,-100,16,-21,-96,-98,20,18,49,-81,-24,-98,-35,-27,-89,-79,-4,-55,8,50,-100,-94,-85,74,-36,-100,31,-18,-59,49,-87,-62,-17,-43,82,27,-83,-93,9,-89,32,-14,49,88,-95,1,-54,2,-99,-100,98,62,-79,86,54,84,-38,95,-100,-66,-93,-95,-7,-83,-97,-100,2,-5,-89,-98,61,-72,-90,-29,-88,-95,-67,-100,-97,38,-87,-100,-89,14,68,-94,70,24,-96,84,-95,-77,-87,-33,-15,24,-14,-72,-95,-48,-4,-82,-88,27,-98,-5,-99,-98,-40,64,-3,-63,3,92,-65,-94,-100,-99,84,-39,-21,-59,-72,-94,-13,1,-99,54,-46,-94,-62,-37,61,23,-81,-86,-90,-100,96,-76,-66,31,3,20,1,-49,62,83,-12,28,-47,-8,-50,-89,-97,-35,-86,81,-100,-99,-86,-92,33,66,-93,-51,-78,27,-88,-37,-81,80,-87,-58,-66,-49,-14,-94,-92,-95,-58,-91,93,-32,-86,-99,-80,-90,-87,-95,-98,90,56,70,-100,-81,44,25,55,82,-83,-95,21,-81,66,-98,-57,30,80,36,94,18,-53,-99,12,-17,-37,49,-48,-89,72,-24,-29,76,-94,-68,-100,-69,-99,-95,-45,-56,-33,-13,-57,-97,-98,-98,-98,24,94,-100,-86,-64,9,-65,-28,-68,-59,11,-42,0,-17,-91,-56,-91,-58,-71,-44,-99,-70,-81,65,-100,-61,-44,66,-16,-95,12,-59,-96,-61,5,66,-49,-97,-98,-77,-100,-99,31,-86,-26,-98,62,-96,-94,-66,-24,-64,-83,-97,-82,91,-52,-47,-97,-37,-98,30,-82,-100,-100,32,-68,-72,-64,-22,42,-5,82,-60,28,-16,68,47,-74,25,34,-86,-53,96,33,-83,-94,-47,86,-91,-98,-62,-46,-83,-73,21,-91,-95,-99,-11,-95,17,-95,-64,-100,-41,-95,98,81,97,89,-7,-43,-93,43,-45,-45,-31,-22,58,-19,-62,-100,-100,-7,40,-68,21,-48,-92,81,-31,-98,-87,67,17,-60,-7,-78,-38,-100,-92,97,93,-94,93,-98,-92,32,6,-100,-100,-52,-41,-81,-31,-76,-96,-38,72,-76,-52,-100,-92,-100,86,44,99,-53,-99,-85,-83,-93,92,-100,-15,-86,61,-18,-93,-89,-100,12,56,-65,-34,-64,-84,23,-68,18,-77,11,-100,-99,-28,-37,-99,-51,-72,-100,-3,-86,70,-33,-96,-30,-10,-36,52,-85,87,-54,-97,-45,-39,-44,-2,-89,-96}
{59,87,100,91,69,99,100,-42,57,39,80,85,48,76,-78,92,38,25,81,58,-39,-63,87,-93,53,90,76,63,-17,-78,6,-45,100,80,-97,-57,98,100,88,92,1,-20,100,44,79,100,40,48,64,83,-51,25,-34,5,87,54,-75,94,70,100,0,95,-7,-60,-1,6,-17,94,69,-44,85,6,76,45,71,97,100,55,45,32,85,57,40,-35,37,40,-24,24,-55,93,83,86,10,90,53,100,48,-59,-97,-82,57,51,-83,7,-68,96,-22,100,80,99,87,23,98,94,-71,99,-68,35,-16,-29,5,25,13,-98,100,43,23,-94,92,-91,95,-89,88,-20,47,100,-72,-86,10,53,12,-73,97,43,94,100,-30,94,83,100,76,78,90,-78,-35,-15,-41,5,100,88,90,-55,92,-72,-62,79,99,94,3,100,-22,99,-29,97,-34,49,19,85,67,80,2,-85,99,91,85,92,-35,-30,31,54,-36,73,-63,100,88,-29,74,-63,60,-9,70,-75,-27,-8,100,58,-22,-25,71,-22,-35,97,100,90,91,81,91,59,4,75,74,99,83,79,-86,76,-9,64,82,-67,-84,96,79,94,91,73,98,97,98,-13,95,-40,9,-45,50,49,84,13,-77,21,-81,99,97,31,44,93,84,98,-9,81,85,93,-30,0,45,67,48,97,-55,-86,46,96,-87,-11,98,-24,36,-20,-97,99,100,31,77,-86,75,29,-88,100,-43,27,50,-3,100,100,54,-15,46,89,56,-17,-26,13,15,2,29,-41,-74,-97,-30,-82,83,98,87,66,-52,96,-26,82,77,92,100,39,85,-96,71,61,51,91,69,97,-48,91,89,63,24,-46,33,-12,98,89,87,-29,-13,-92,98,-93,100,72,24,16,-36,48,100,99,70,98,-3,-4,76,86,99,29,84,32,89,-36,-14,-46,87,-53,67,93,-67,99,98,100,-38,-22,79,73,-4,-33,60,95,26,-40,39,34,45,93,-19,74,-91,29,79,93,60,-36,2,100,96,95,73,-63,45,-76,92,66,28,-83,100,13,81,-69,-16,51,90,83,62,69,31,87,94,60,26,85,-73,100,77,94,13,85,39,100,50,57,32,33,-87,-14,-65,24,97,31,-8,-96,-13,88,100,60,55,55,6,17,68,60,-36,-50,100,76,9,-99,-74,100,57,-31,5,-96,25,95,-47,64,88,66,4,36,33,94,-99,-67,17,12,-82,94,56,-92,13,100,100,-55,73,30,94,28,-3,100,19,-70,-74,-26,3,-92,65,-36,100,78,84,34,-93,88,100,58,42,-22,81,95,20,42,-26,64,-6,41,-20,53,39,29,97,-54,-80,-71,87,-47,91,-23,96,100,-63,-16,-15,-80,90,89,92,92,75,50,-1,69,85,86,-5,-83,73,53,69,58,19,90,44,56,100,75,-70,46,-67,43,30,45,-46,-26,90,72,30,51,89,100,-94,100,-46,35,35,99,93,88,74,13,70,85,-57,-88,-93,-15,93,100,-42,61,97,88,13,41,91,-28,73,95,70,-36,0,-10,99,-53,100,25,11,69,3,100,70,41,-30,-71,99,75,98,-43,72,57,81,-21,78,96,86,93,59,90,-57,-10,76,100,81,-31,-39,99,33,43,-32,-52,-22,81,-81,35,0,-7,86,99,97,86,7,-22,-69,12,-65,98,94,92,79,16,84,59,96,52,36,90,-54,47,97,50,-16,55,61,90,93,-27,40,-22,-99,80,100,44,-67,44,-14,-54,96,85,99,6,77,98,-59,42,81,75,2,-3,23,48,-25,96,66,-11,-63,-52,-71,-50,-31,42,-15,73,75,-67,61,100,-43,-36,43,-85,-75,78,61,22,100,67,91,43,-32,97,4,-12,-87,92,-7,79,41,-55,-76,95,-53,-10,6,62,14,49,79,-49,-44,-3,85,-35,22,-5,-70,99,-6,96,48,83,81,98,8,73,-26,89,-46,-9,95,66,37,84,95,44,42,-13,-25,49,7,33,100,100,100,87,-9,-68,31,94,96,83,26,-66,39,100,98,73,13,-23,48,65,62,65,59,6,50,-41,-56,-63,98,-15,84,-11,82,93,100,100,2,76,91,-52,-54,-48,32,7,-12,95,-12,94,100,10,12,-92,23,99,13,22,-18,100,36,63,-95,39,58,96,-87,35,86,85,98,-64,93,-27,99,40,89,98,96,99,-95,37,42,33,67,-15,35,29,-68,72,-18,-38,65,9,20,8,96,79,99,24,-65,54,72,82,53,93,-95,81,62,70,65,73,9,-15,86,-50,98,32,-68,99,93,23,76,75,91,-44,98,4,78,84,15,75,79,100,54,7,-22,-52,12,98,12,99,76,60,100,-34,79,15,-30,-28,34,-71,49,94,-26,25,-59,68,14,54,29,46,23,99,-68,-39,94,58,-72,26,100,-51,-58,93,-3,-47,100,89,1,97,-42,38,60,98,-82,-57,59,99,-89,31,96,100,100,87,55,82,59,95,84,61,26,16,100,-42,17,94,53,29,10,-36,85,95,-21,77,66,99,100,-41,21,25,81,79,-77,30,83,-73,-46,-73,34,-59,84,93,84,45,69,100,76,12,93,-37,-45,-44,94,98,44,-8,45,7,91,-25,10,36,100,85,-72,-4,100,-87,48,-11,36,-37,93,24,77,97,100,-99,-57,-86,28,-25,72,72,78,-35,-17,59,46,76,8,-43,67,92,-16,93,-16,99,39,-10,49,99,70,65,23,-36,42,100,93,-46,59,96,14,-87,97,-69,83,98,40,18,47,18,66,70,-9,79,100,52,62,99,60,-48,18,-40,-76,21,93,88,7,-79,-70,41,20,92,28,52,24,84,83,90,89,73,-97,-81,46,83,45,97,100,97,100,100,-96,20,95,40,37,99,100,-99,40,-11,88,77,-7,35,68,-42,16,-7,33,10,24,63,100,52,-11,80,-5,68,23,13,-52,86,78,-36,-4,-88,-44,48,-27,61,100,82,98,23,75,-18,64,-8,71,83,-88,78,80,72,-1,45,83,-36,-17,-50,74,29,34,-74,94,10,51,1,21,76,45,99,-2,-72,75,-48,86,64,80,81,45,61,12,-20,59,-21,-95,-44,-56,4,94,-36,94,-95,-36,37,24,99,-5,94,88,8,92,-4,87,-52,-66,-70,66,53,92,39,-46,-79,78,-35,50,-16,48,49,100,47,56,100,-78,86,100,90,85,89,78,-31,98,73,88,13,21,95,70,42,78,18,100,-76,-71,-96,67,70,59,-25,-74,-30,28,100,85,-90,57,78,60,-26,12,95,-68,47,64,53,68,56,99,8,-24,98,8,99,67,71,99,41,10,43,89,5,76,46,15,-27,1,-80,-2,-69,79,49,-16,-67,-60,75,91,-73,-31,-19,-6,67,50,6,99,53,93,71,9,100,100,-33,80,-69,100,72,62,96,100,100,88,96,28,-10,-72,4,-96,46,20,75,72,77,100,100,33,89,91,97,-97,58,30,100,-13,-43,20,98,60,-28,-5,77,68,-4,-82,71,35,99,-97,66,-61,51,63,80,73,54,-88,-29,90,94,95,52,73,-32,-83,4,60,98,-3,-43,74,-55,75,100,85,84,-91,77,100,39,24,67,89,39,-18,9,88,21,-82,58,30,98,-81,-46,32,89,97,-49,-92,98,98,9,62,27,100,-98,47,-85,-82,67,74,86,-70,58,-8,64,91,88,-24,92,58,13,2,-56,65,76,56,80,-77,-24,99,45,-83,67,-67,76,71,-59,96,1,60,90,69,97,77,100,5,87,100,-3,66,0,25,49,-23,-18,84,98,25,-28,91,-98,42,100,100,19,39,28,86,14,93,100,11,32,-58,-70,-11,1,19,-35,17,-19,-30,98,97,79,-11,100,50,-34,-16,81,60,67,71,-32,20,49,-62,-78,82,-33,-54,92,62,64,0,34,-25,99,82,-78,45,45,-8,64,51,-17,-69,-25,-27,81,55,89,-50,-1,36,100,80,-14,-10,84,5,92,-69,45,72,87,99,-7,40,16,-29,90,99,95,94,33,69,99,99,-15,38,19,100,-71,26,-93,-8,-12,85,-96,-39,76,87,-60,92,99,72,-5,93,42,74,100,99,-94,100,-42,12,48,73,-4,1,-25,-51,89,4,99,88,37,83,-30,81,92,-49,69,-19,70,12,31,80,63,-40,7,-85,47,30,59,-45,-44,-45,41,-21,99,58,89,-53,67,-52,61,47,94,-11,55,100,31,5,92,56,100,68,53,100,100,30,7,-39,-48,88,89,36,100,66,-92,-81,12,-88,-22,75,100,100,2,82,84,90,29,96,51,-31,83,-51,-15,100,68,69,16,100,60,-37,93,19,100,-30,83,98,-81,24,88,-34,72,42,41,33,9,-55,-14,76,-65,89,-27,99,59,-39,-66,54,-7,100,81,82,100,100,84,66,57,100,-38,97,42,31,30,-31,32,90,98,-31,-2,65,8,87,27,33,76,5,68,-46,42,39,37,-20,-77,-43,-26,-44,98,100,50,99,-75,0,97,7,96,58,100,99,97,36,70,4,43,-83,94,87,-27,70,-37,24,-21,75,-20,-15,73,48,53,63,54,0,3,-80,32,-97,100,-60,97,-13,88,87,-85,-20,71,98,43,-51,59,23,24,-87,32,-27,39,43,55,32,3,-26,-99,89,95,47,100,-11,100,99,91,-40,-64,95,39,94,-47,71,4,-54,87,16,-94,-68,74,-83,93,98,52,-82,30,-23,-57,71,100,-69,100,-78,9,100,-30,59,8,67,62,-61,61,16,93,46,100,27,44,86,38,95,92,22,37,28,97,42,-23,41,30,-79,89,67,26,45,49,74,6,55,40,-2,94,69,100,92,-71,-67,55,-77,46,82,100,81,-11,93,-91,89,76,63,32,20,86,94,72,79,-38,-24,88,-76,85,79,-29,87,99,99,-49,7,79,43,63,26,97,44,43,16,-89,80,79,8,100,74,-17,19,53,100,100,35,-98,57,80,-13,33,100,98,76,-88,65,-49,100,-76,46,-19,19,16,-11,45,65,26,-25,33,81,100,84,-98,67,40,62,94,94,100,-65,-19,-27,-63,-87,-69,-31,100,100,15,66,-22,76,87,-47,42,-27,21,-8,27,43,43,32,86,89,-4,-16,80,-12,47,61,100,-30,57,28,100,95,-47,-47,31,55,100,39,-37,92,92,22,18,-75,78,-7,-70,-36,-20,37,70,47,81,58,80,97,43,83,-63,98,45,-96,25,63,83,79,74,26,-26,84,-4,-1,65,-38,47,72,99,-76,36,-12,-70,2,95,-99,66,70,100,22,97,-56,51,87,100,98,-38,75,91,99,41,-77,20,63,-9,-18,74,98,100,98,14,-80,-49,-79,98,-64,28,-31,15,100,25,-27,69,55,-10,39,98,-8,84,22,77,19,55,-3,47,-37,100,-16,41,69,73,-78,23,83,-94,35,0,-47,99,92,59,91,46,58,3,40,92,-68,-29,1,95,11,62,92,61,56,96,0,-82,-82,90,40,-66,-60,84,24,-7,45,80,43,-39,11,91,-87,-34,-10,-70,96,-29,-31,-48,-19,20,56,-95,-16,-4,-12,-1,86,100,96,79,59,-37,9,-2,100,39,-69,-98,100,47,78,0,-35,69,75,100,41,-39,64,86,30,48,1,100,46,-64,96,-77,55,-24,24,35,92,26,38,100,-24,-43,-31,-7,30,87,35,13,89,30,96,-75,100,93,98,89,-99,97,100,97,29,60,33,78,92,-33,91,-83,26,-75,65,97,94,60,95,93,-81,-27,-67,1,79,100,-54,75,98,-54,97,68,47,39,-32,100,-83,55,2,11,44,50,-52,73,-67,-35,99,88,12,58,99,9,-41,-73,96,54,-15,-15,87,83,-19,-14,54,87,96,-65,-17,-95,38,-47,-15,-27,82,30,95,43,-34,-91,-41,85,84,90,86,70,-32,94,4,100,100,56,90,47,91,43,90,-60,74,99,88,-6,-33,48,40,21,100,93,86,94,6,65,78,-95,84,12,-25,-56,83,-5,84,54,-72,91,48,79,25,100,-42,-59,66,15,49,37,89,-80,10,67,-56,100,97,58,100,72,35,28,100,-10,-99,-32,-56,21,-24,-31,96,93,70,24,83,21,-79,33,-36,-76,81,-6,68,98,100,91,97,-11,-63,28,74,74,87,17,97,83,-20,-61,-62,91,74,97,78,-43,-7,93,100,99,89,60,95,46,-24,100,99,70,4,-9,24,-61,49,-43,-79,29,70,100,-58,100,100,94,93,-26,-41,-86,82,93,83,84,-40,51,7,-47,99,-37,45,40,5,-95,15,84,6,11,19,23,85,29,100,86}
{-48,-38,77,55,95,33,77,-88,66,65,88,75,46,47,-83,100,44,100,-69,100,-95,62,78,100,93,92,-61,-74,59,100,76,86,-34,88,99,97,96,-56,94,-14,74,-11,-88,96,99,-66,96,99,71,79,-21,-86,-85,64,-93,23,-53,100,93,100,-74,-99,99,-79,-51,81,58,100,-48,44,-82,100,99,52,99,-76,-88,87,5,-32,98,99,95,78,100,-46,65,-4,-73,-61,63,55,46,100,-87,65,-49,40,96,15,86,35,-87,97,-95,64,1,95,11,-91,39,100,-34,-9,53,61,54,96,99,86,-44,54,73,-93,23,89,40,85,100,88,-71,-57,26,93,-40,75,67,77,100,97,27,40,4,3,33,28,-51,100,98,-27,91,30,53,-50,-41,95,-2,19,77,94,-46,100,18,62,-7,-66,73,96,80,-70,93,97,87,100,-10,96,-53,100,-9,46,96,91,53,-95,67,-55,97,100,98,2,99,1,85,50,52,-92,27,100,-2,99,86,-35,100,19,50,-36,-78,59,65,-3,12,-59,49,-7,23,61,55,-40,18,100,-62,50,76,74,100,47,58,78,97,88,0,76,22,100,4,-92,89,29,75,94,96,25,55,89,97,-86,55,13,14,51,-32,100,87,66,85,-90,76,91,100,-88,90,-4,43,88,100,79,-94,100,86,24,84,84,51,42,32,100,0,78,85,77,97,85,85,-54,-59,-81,-14,89,-17,4,88,-6,99,98,30,91,-92,68,92,83,73,93,-94,71,-81,48,24,43,34,-64,97,10,19,-11,85,100,-15,-69,15,45,75,-5,-16,-27,-9,97,20,-60,100,12,93,93,3,57,29,95,-19,99,89,95,-69,66,-20,99,100,82,82,31,98,-16,65,-99,99,-29,52,-84,-54,96,98,43,-56,-3,28,24,69,76,77,100,100,100,88,19,93,26,35,78,100,95,100,94,8,92,-63,-59,52,63,89,100,-58,96,-58,19,10,-80,66,-1,61,-37,-81,85,-72,95,-80,-56,-26,-26,-21,21,46,36,51,12,91,98,66,97,50,18,1,-6,96,-83,-99,-38,-81,78,-21,-69,-18,63,71,-60,92,10,-10,52,-91,20,100,85,-4,87,61,9,92,29,100,98,12,-14,6,68,25,24,-55,100,50,40,-99,84,17,-91,-13,67,100,78,-81,85,100,90,94,69,-17,92,100,40,-38,61,93,-30,49,61,35,51,40,98,0,-13,38,81,-41,-93,87,32,48,72,-83,87,-81,96,-35,65,96,-59,29,50,-36,49,87,10,52,98,94,-96,100,-79,12,88,100,-61,84,-85,99,97,25,-65,-68,73,92,-18,50,88,93,79,83,-23,100,6,-8,100,98,61,-15,75,77,-32,98,-60,74,-73,9,52,54,81,89,-30,24,18,4,92,94,33,77,91,93,93,-66,8,99,97,16,4,95,95,74,94,77,88,92,4,83,47,-31,-60,46,-6,2,72,56,87,100,73,87,95,100,-65,99,64,-81,42,41,-23,100,-23,62,-54,-29,31,30,28,-33,97,93,45,68,94,32,53,-72,100,88,100,22,-6,-24,59,96,94,-21,-63,100,1,-39,97,8,-13,80,-50,51,83,92,73,99,-68,-53,32,-31,-19,99,77,100,48,-30,93,68,58,73,6,63,100,26,44,-1,96,99,64,92,51,98,42,-52,87,-55,-38,-39,68,27,29,15,80,60,69,46,84,-45,26,-65,83,73,30,38,-58,96,99,-89,-93,66,97,97,100,-27,42,11,36,98,-22,-31,35,30,93,-87,-43,-82,96,65,-8,77,78,61,-66,-2,-28,-78,74,60,93,-96,88,23,20,0,38,-84,97,48,59,51,31,98,85,-32,71,34,96,100,-63,58,-2,99,-6,94,4,-52,53,-33,-75,63,-14,97,-59,-69,88,-31,80,99,-37,-8,14,60,58,-72,-2,100,40,1,69,-12,85,10,69,30,17,24,19,96,87,33,94,31,65,90,100,100,67,99,79,-97,91,62,-96,100,-82,43,96,85,36,-58,100,71,99,96,88,91,-89,84,36,90,77,64,100,-66,66,100,36,13,98,80,-59,16,97,-31,95,88,-26,53,-59,100,84,99,100,49,53,98,70,52,76,11,31,-49,-83,96,43,100,25,100,-9,-26,13,92,39,99,100,5,-40,94,-52,98,35,64,94,100,99,96,94,97,99,-21,95,65,-23,100,-92,83,50,-14,-42,66,79,-31,19,96,86,5,32,69,100,-51,44,89,37,100,81,-70,86,86,96,-18,33,99,-35,-23,95,100,-46,60,-23,42,62,77,-45,65,99,51,-30,17,44,-21,48,98,99,97,-12,88,50,85,97,64,69,88,99,89,90,82,-56,97,-8,-57,39,23,100,60,100,100,100,-60,61,-1,-46,40,-61,21,18,-20,52,-67,-15,100,23,-20,99,38,94,94,44,-14,17,73,-58,70,-70,99,-9,29,-7,72,98,-99,-47,92,97,-42,53,63,100,84,-52,100,-91,-93,36,87,-64,-10,93,22,97,78,60,61,75,73,-30,78,91,-54,16,90,17,75,79,90,96,100,5,52,87,5,95,-8,-48,78,83,99,38,68,95,-80,-65,98,44,100,-48,93,100,-6,59,-52,-61,27,-15,35,98,96,-20,-36,28,18,-26,-45,38,-47,98,16,46,70,-4,50,-20,89,-11,-3,41,62,-76,-24,17,41,49,96,75,100,-66,-8,96,71,99,49,-30,4,36,-7,94,92,-51,-85,55,88,100,68,3,5,87,83,100,98,73,49,23,97,46,100,58,93,34,100,-89,78,-3,29,57,-52,-54,-42,87,46,70,97,81,-47,28,96,98,89,-28,12,99,-53,-28,92,22,74,99,25,89,13,90,-21,-52,13,40,27,18,65,-1,-90,9,58,-88,50,-8,-94,80,-99,45,71,3,-29,71,96,7,28,96,85,-18,-78,42,100,43,72,81,-14,51,97,-50,44,86,95,17,-76,95,-19,-55,3,-84,91,-19,77,-14,48,83,61,68,-52,-58,100,-78,22,34,70,-49,-73,29,53,6,94,-89,59,-2,-80,-6,14,94,98,58,82,95,98,74,69,100,74,74,98,6,50,80,98,-42,46,14,33,-81,-25,-30,93,-33,5,95,-77,88,-23,100,-69,34,35,96,36,-17,80,-96,52,-3,-62,100,62,87,72,34,22,-45,-13,89,76,-61,51,-83,-66,-15,68,75,-39,75,-34,-13,11,90,9,89,94,63,79,78,97,28,100,31,-37,-12,96,42,95,98,-94,96,87,72,-80,68,-55,58,-62,-4,100,76,-44,-29,-29,57,78,53,65,58,85,98,57,76,-69,81,70,-39,-27,91,30,89,-64,98,99,99,-27,42,87,100,-75,41,49,98,43,-64,-4,44,-85,84,93,-59,100,75,8,73,41,-93,6,14,42,80,85,47,-95,38,71,51,98,6,96,92,-96,84,-63,92,-58,-12,97,87,-42,100,95,-45,80,-91,33,-21,85,34,-9,58,-50,97,45,98,51,42,82,-22,81,84,-27,-21,98,-59,-95,100,-93,49,100,100,-23,-40,90,97,50,40,53,18,98,94,79,49,-72,14,91,28,-10,99,7,100,83,83,98,5,-66,68,16,45,-76,40,88,-61,-92,88,85,100,95,77,80,52,64,91,54,90,98,-58,-18,-70,29,19,67,-44,-49,-59,74,100,100,-12,100,-2,96,63,29,98,96,39,99,59,88,17,-93,100,-67,-64,86,25,-73,52,82,84,91,-64,-88,-21,70,77,88,71,52,-40,-44,-77,-2,97,100,-1,-70,98,44,86,84,85,-94,88,-17,-72,-34,-61,100,22,99,35,99,-26,84,37,-8,90,100,34,-14,-55,92,100,88,44,34,42,62,-76,98,-40,-89,68,85,58,98,67,32,65,-2,100,97,-45,86,2,-34,91,71,-29,94,63,28,-85,81,-77,-15,98,42,73,86,4,29,-72,-80,37,70,-99,-15,99,-44,-35,84,43,86,91,-46,100,-53,47,-51,-4,-53,-75,45,-51,-2,79,-76,100,92,74,46,-7,-93,-17,-35,-95,-23,-50,100,-41,44,67,97,77,94,-32,-27,-81,92,-3,60,-71,91,27,82,95,3,-22,28,94,35,-12,91,43,-5,72,58,98,55,-16,98,87,94,-40,-4,91,-58,92,-51,66,-44,46,-95,-30,74,97,-25,47,-59,100,64,-59,73,-19,-79,79,93,93,44,65,-59,81,82,3,89,-96,-70,65,58,-44,-70,68,94,83,96,17,100,94,100,86,92,73,-66,53,62,-47,-1,-98,71,-55,85,69,-95,37,-59,60,28,95,9,98,-52,100,67,58,85,44,-20,86,84,18,59,87,-73,7,22,78,91,100,99,94,-41,63,35,-74,25,-15,-98,93,77,65,-24,-79,90,5,98,60,52,38,35,-94,65,-50,15,-69,93,92,13,99,34,-9,33,2,-70,48,94,-23,97,81,-16,11,-14,81,100,-69,94,99,93,39,85,47,100,-3,84,73,100,35,44,-85,75,97,-46,50,84,94,92,100,81,66,88,100,-42,9,19,-2,22,51,29,100,72,39,85,32,51,58,-20,8,-33,100,-46,88,85,79,94,71,-7,-77,89,100,67,100,93,-7,100,90,-21,100,42,-83,53,-46,44,78,11,66,-14,-74,46,58,13,76,39,69,62,100,100,86,100,97,57,-22,94,-30,100,-19,77,100,-15,42,17,100,94,62,72,16,-2,-52,44,52,-67,-57,-63,99,-58,-41,-23,86,-65,25,84,99,63,-81,-46,34,84,87,-87,91,-82,97,12,26,-24,47,51,97,20,-97,56,81,78,87,39,74,10,74,-64,89,15,78,97,100,84,60,-24,52,-31,95,-76,95,-32,97,42,96,-29,88,25,42,15,92,83,-28,19,-57,82,4,97,20,100,100,53,100,-1,-85,61,98,94,98,-62,-71,-2,-41,72,52,100,-3,98,100,100,79,73,-21,92,87,-63,92,-50,22,100,-94,97,-8,3,74,-21,8,40,-44,96,-5,12,99,96,92,100,93,19,-22,98,50,33,80,83,34,40,-35,65,97,44,-66,93,59,16,71,67,-43,100,82,-3,-76,100,-41,22,80,7,-58,24,-52,45,-97,97,-80,85,-30,-9,-88,-7,28,-68,-5,-95,-29,-80,100,-90,-6,22,14,-36,-42,-81,12,-20,100,30,-17,-19,96,48,-23,100,79,92,-26,-69,-15,-42,98,73,98,100,100,70,19,93,88,44,-35,39,-61,-82,98,-54,97,100,-74,-21,65,31,98,76,-58,85,66,-48,64,67,76,-79,80,-4,-91,93,95,9,17,60,-48,-93,100,96,100,-50,-42,5,72,-47,30,95,-74,-92,97,5,83,-42,94,69,88,37,-6,96,-65,81,-18,79,-32,97,100,80,-86,3,82,-57,58,-99,99,74,9,91,-82,99,33,21,23,100,-55,100,18,86,100,99,100,94,100,-57,87,72,5,91,75,100,89,52,41,-49,12,66,-57,98,95,64,4,96,42,45,-50,94,88,94,99,-16,73,-62,29,67,100,43,-25,18,44,26,-92,39,58,33,56,100,93,3,99,99,10,-85,89,83,73,17,79,30,-39,92,66,-82,14,46,31,88,-28,97,-84,37,95,38,100,70,79,-33,45,-73,94,100,53,75,-32,50,99,91,-12,-56,100,78,81,51,13,-43,-94,-77,17,-8,59,-96,43,3,-51,63,70,82,64,95,98,96,100,-10,76,99,81,92,78,-63,49,86,83,-92,85,100,-87,-36,43,38,-78,83,60,-10,23,-88,100,47,100,-26,36,68,98,4,74,23,-49,100,23,89,60,36,-35,70,5,-76,98,22,24,81,98,58,58,-66,0,40,99,96,98,98,7,100,85,97,32,94,97,98,96,90,-10,27,75,-6,-18,99,92,-79,93,2,64,-2,100,-70,55,70,99,53,88,29,61,-49,55,100,33,-90,-4,73,96,82,74,-66,81,98,0,32,100,65,-5,-44,90,-92,79,31,-74,95,76,-93,98,93,-4,88,-96,86,93,100,100,100,96,-82,-1,84,100,-23,-89,-7,63,22,-62,-32,-4,22,-78,15,90,100,53,77,48,91,-69,-34,7,-53,-12,40,53,100,100,3,73,10,41,-45,-43,59,-72,100,44,50,40,43,92,17,100,0,97,42,27,-36,-12,-77,52,96,90,45,9,3,46,-36,77,57,56,39,100,79,81,97,-30,95,98,97,50,70,-68,91,97,39,48,34,67,5,3,-3,97,100,100,81,-26,-29,-11,92,-4,79,95}
{100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100}
Returns: 4.95922667165E10
{-92,-94,-17,21,-91,19,-100,15,-71,-32,68,-31,-98,-99,23,-19,76,58,30,-98,-8,90,-77,48,17,-87,-100,-78,-92,-98,-94,-100,-100,-71,11,-32,-99,-6,11,-54,-36,14,55,15,-37,-55,-95,-97,-96,-87,-85,75,74,55,-33,-89,18,40,-67,-100,7,-38,-100,46,12,-45,-98,-36,25,-57,-98,49,-64,-86,-43,6,-99,-80,-90,-62,14,-98,-37,-91,-19,34,59,93,71,25,-10,-14,-98,-97,69,94,-100,55,46,-54,-17,-54,-73,-80,-89,43,-89,-11,-85,70,-95,66,-100,16,-70,-24,32,-55,-100,58,-17,-27,-62,-98,-100,-77,51,-44,-83,-86,-20,-90,77,34,76,-15,-60,7,38,-70,-42,-94,-91,-76,64,-98,-100,-87,-51,-30,-40,-99,-93,-61,-90,90,-99,28,99,-24,-99,-72,-33,39,30,-87,-89,-86,47,-80,-70,-8,-5,54,-65,-51,5,-37,-98,-68,-94,-42,-100,41,-41,-69,89,-72,-45,-99,20,-43,18,-77,-26,11,-84,-52,71,-41,-96,-100,-76,49,47,-93,-32,17,31,-94,-92,-82,-46,-94,-81,-32,-45,87,-9,-85,-81,80,-19,-99,-59,-43,60,-78,-16,-39,-85,-41,-22,-73,24,-19,-21,-50,-54,-90,55,-97,-89,-71,-79,72,-100,-91,-96,43,-71,61,-34,-23,37,-97,-94,-19,-17,-19,-100,-29,44,66,-95,-60,-100,-96,-59,-74,-74,36,56,-62,2,-35,8,-97,-73,-9,-90,55,-74,-71,7,-36,-47,-29,-81,72,-99,-67,-95,28,-67,-100,-52,-60,-74,-82,-84,41,-17,59,-100,29,-67,94,-10,-21,-90,-8,-85,-78,-40,25,10,-78,-97,-67,-86,51,14,-75,-25,-23,-100,-48,-10,-33,-84,-74,-57,-100,64,43,-93,56,-91,28,-33,-26,-87,30,-32,-71,-90,-84,-22,6,78,80,-69,64,78,-18,81,-88,-6,5,34,-95,-16,13,58,14,-98,-94,-87,-9,-83,-71,-76,-6,14,24,-29,48,98,-31,-89,-93,88,-15,-93,-48,-49,-5,-63,-80,-26,48,-98,-100,-80,-97,-71,14,-100,3,-97,-91,-63,-4,-38,-87,-100,-100,-46,-87,75,-16,-83,-53,-100,38,-6,-46,41,-96,32,57,-56,-100,-100,-94,84,18,-74,33,-97,-100,-13,-45,1,62,62,-99,48,-59,-91,88,-99,-19,-18,-34,-100,30,-96,-8,-96,-93,-67,-22,-63,-11,20,-49,-97,-100,5,-75,-83,-80,-100,18,-77,-83,66,-97,-72,-57,-86,22,-100,-97,13,25,-2,-86,-100,-62,86,-100,-58,-81,-37,-86,-94,-98,-41,-84,94,-91,-90,-96,-91,1,33,-67,70,-8,-100,-81,-70,-18,-99,-45,-43,-90,-68,43,-100,-100,43,-37,-5,-41,-51,-90,-44,-39,3,76,-6,-15,63,65,51,-69,-82,-66,-87,-26,40,-23,-100,-21,-95,32,-79,-70,-97,-100,30,34,-62,-19,-96,-7,-73,-99,43,-51,5,17,-100,-13,-89,-93,-79,-99,-89,12,4,-100,-99,-96,-96,-91,-55,-57,-94,-97,94,-94,-92,11,4,-100,-82,-99,79,40,-65,-30,-84,-53,23,-58,-98,-40,66,-68,-87,-100,-87,-88,66,60,-45,19,-98,-12,-74,9,-12,-100,-26,-87,-54,-87,-76,-34,-100,14,-48,-27,-99,-28,-63,-83,-34,-61,-49,47,-87,-97,89,-44,-53,-81,82,-84,84,7,-96,-65,-69,-99,54,-82,-98,78,31,-96,-86,-94,-76,17,-81,-60,-41,-55,-83,-50,-77,-61,41,-16,-85,18,-90,69,63,-68,-100,47,41,61,-100,1,49,-14,-36,-90,-73,74,10,6,-72,-66,-37,-40,-60,-25,-81,-100,-100,-28,67,-49,-72,70,-75,-100,-69,-25,-4,-100,-100,-79,-86,-99,-100,-52,-10,28,80,-63,-59,11,7,47,26,-95,-98,-93,-100,-20,75,-66,-34,35,-100,58,-3,94,-98,33,-29,-89,-100,-60,-53,-41,-48,-95,-33,-51,-100,80,-34,70,96,-51,1,-98,-82,-78,-70,-73,-24,-100,-90,-100,-80,-33,-6,-99,22,-100,-64,72,86,-100,-73,-79,-100,-84,-39,-100,-80,-77,-96,-88,-96,-93,-79,60,86,28,-72,37,7,-70,-100,-61,-95,-85,-6,-60,10,-76,-93,-3,-83,-70,-98,-83,-14,-100,86,-100,-69,89,86,-94,57,68,14,83,50,-79,10,-9,-100,-100,-80,-43,-48,-90,-51,11,44,-81,-14,-87,-50,-46,9,-98,-95,11,-41,-92,-100,67,24,-100,-100,-36,-81,-82,-48,-99,82,-71,-11,-52,43,-93,-96,-59,-96,-96,-33,-87,-100,-26,-65,-100,10,-41,-91,-22,60,-99,-88,-63,-2,-12,-88,-96,27,-81,-85,-45,-59,-91,19,-52,-37,-13,-11,54,89,-7,-70,-95,25,-46,-100,1,56,-96,-73,71,-89,-48,-87,-6,29,-64,-93,-98,-99,28,24,-76,-98,-62,-89,34,-94,86,-15,-15,33,21,-78,-21,-95,-92,-26,-100,-81,-100,-30,-94,-65,41,76,1,-98,-85,-33,92,84,-72,-26,36,77,32,13,-94,11,-35,-96,13,-17,-100,72,-99,-83,-84,-2,-98,64,-100,63,21,-94,-98,-97,-21,7,-90,5,-90,-98,94,-98,-82,-99,-77,-96,-75,-39,-88,-75,27,-82,-78,-87,-83,-100,98,82,87,59,-100,-81,31,-21,-25,70,-99,-88,-100,-79,-66,-40,11,-36,96,-99,-90,68,6,-89,-92,-26,-94,-44,-100,-76,-94,44,-25,5,30,-10,-6,94,-99,-100,-29,-94,-100,-69,-99,-67,-49,-99,-100,-10,93,-92,-98,-100,51,-93,-45,-35,-76,-82,-51,27,7,-96,-94,-96,-6,69,94,-6,-66,26,-78,-58,-17,96,-43,-34,-35,-93,21,-99,-39,-74,-41,65,-45,-96,6,-5,-54,-83,-98,-30,-85,-46,-62,-73,-59,82,-6,-60,-84,6,-75,-100,-51,-100,37,-49,-30,-98,-99,-80,-14,78,16,70,29,-98,3,65,-89,8,-100,-85,93,-28,-100,-98,54,-81,-51,-53,-42,-41,83,-85,-98,-88,-85,-8,-24,-100,-100,97,7,-99,-24,7,-32,-59,61,-21,73,-68,-3,-85,-23,62,-100,-62,-100,-27,4,-70,-48,-23,97,-95,-14,-41,-100,-71,-97,53,10,-98,2,-95,36,-92,-91,-81,-38,67,23,66,-89,-44,-42,-100,-73,3,-98,-20,-98,-37,-81,-100,46,-93,47,-98,-97,71,-18,51,-5,7,-79,-55,-60,-66,-57,-93,-48,79,-27,-85,-77,-75,67,-86,-90,88,98,0,98,45,-72,-15,14,-65,-86,-56,-94,-96,-21,28,-78,82,-28,-88,-18,96,-11,55,98,9,-37,-13,-85,-36,-87,81,44,-77,7,-86,-34,-43,-79,84,-90,29,6,82,10,-94,-31,-88,58,77,-16,46,-28,-19,-93,-35,25,-99,-80,-59,-92,33,-95,9,-95,57,27,4,-26,-60,79,-51,64,23,-100,-79,-68,-72,-62,-94,-63,-71,-2,-87,37,76,-98,-91,-23,26,-77,-46,-10,-90,-85,-22,-55,-29,13,-40,-91,-62,-34,-100,-47,-97,-100,-6,63,-32,-96,10,-92,-97,-71,25,-30,-65,-96,-93,26,-99,-46,13,-57,-85,-30,-61,-73,-14,-95,-15,98,-100,-26,5,-95,91,-41,-10,-34,-16,-35,-76,-90,-99,-88,-99,-8,43,38,-97,-99,-67,95,49,-22,45,65,-46,82,89,16,78,-69,-73,-77,14,28,-88,-86,35,96,-97,-18,99,-100,-73,-41,-86,-78,18,91,-97,36,-88,-91,-67,10,-8,-32,-15,-83,79,34,-92,-82,-74,-100,83,-100,-97,-98,-84,58,-79,-11,38,63,-14,-89,-40,-39,-79,-78,-100,-66,-55,-75,-99,-50,61,-40,-84,-98,-53,40,-94,66,-96,-98,54,-92,-100,-79,-7,-76,-63,99,83,-100,60,-78,37,-48,-80,-46,-95,39,4,41,-89,-56,77,-42,86,13,-84,-65,70,33,13,80,-100,-67,-61,9,-81,-92,-97,54,-48,-98,-95,-76,2,-81,-56,-89,-98,-32,-98,-92,2,-95,-18,-30,99,-78,-78,-59,-66,-70,98,-58,-73,-83,-25,-97,-43,3,-87,-33,93,-78,31,-98,11,91,-100,-7,56,36,-88,-92,33,-78,-27,29,-62,-87,0,-55,-71,-75,1,-86,-98,-11,33,-100,-62,-53,39,19,21,-85,54,24,50,-8,-57,-90,-74,16,-76,-98,-19,-57,31,-80,-89,57,-37,-72,-66,-4,-96,97,-10,-44,-76,-11,13,-22,-85,-97,-100,-82,3,-92,-96,-92,4,-75,41,-86,22,-72,-30,-18,-51,-32,12,-55,-65,-88,-81,-4,-21,27,77,-75,-40,-98,-100,-94,63,-88,-8,-97,64,-84,21,-3,-81,56,76,27,3,-73,-93,-40,-88,37,-78,-67,-3,-34,-11,-77,-43,-91,30,-28,-94,41,91,26,-9,-3,24,-18,-72,68,-89,-18,85,-77,9,-51,-97,-32,-99,19,-72,39,-73,-24,-59,-20,14,74,-66,-92,58,-57,83,-66,-87,-19,-95,-60,-99,98,39,72,35,-99,-65,-8,-95,-25,85,56,-78,-77,-39,68,-64,-84,-63,-97,-33,63,-58,-56,-38,59,-63,-64,-86,-39,37,-55,43,67,-72,-71,-75,-96,-54,-91,-33,-98,-22,-96,99,-42,-23,-94,-2,38,-80,-97,-88,81,-96,91,-94,46,-100,10,-73,-48,-59,-20,49,-85,-68,-98,-96,1,-81,30,6,-27,-8,-99,41,72,17,-100,0,-100,-86,-95,-30,-69,-92,34,-24,45,-56,81,-86,-88,78,20,45,75,15,-56,-91,-66,87,-84,30,-65,26,-75,-63,-18,41,29,-89,-21,-11,-9,86,21,14,-88,-100,-9,-94,-99,-1,-94,-86,-97,90,32,-97,-68,30,66,-89,-97,52,-100,89,48,-68,79,99,-100,-45,25,-95,-11,-71,3,11,88,11,-65,-81,-28,-78,-24,5,64,-12,-93,2,-4,-100,-80,-9,-58,-56,21,96,-70,96,-100,-39,-71,5,-84,78,-29,44,-100,-17,11,9,16,0,-38,71,-97,-64,-92,-4,-79,-100,-50,84,87,56,-98,-50,-44,-98,-65,35,-100,-99,-74,-37,-37,-91,-47,90,-100,-76,-95,70,-62,-83,-97,6,-88,-100,-99,-50,-89,-91,-97,-3,-73,-99,-95,-72,-100,-100,-90,83,-80,47,86,-80,-89,-100,-50,30,-88,-72,2,-100,-100,-19,-85,-95,-71,10,93,9,29,-90,-99,94,-55,86,-27,-73,-83,-93,-91,-95,-97,-81,1,93,26,-85,-84,76,-94,-86,-99,-48,-100,19,17,13,83,-44,-79,-98,-99,-12,-78,50,-97,-25,-88,-87,-100,-100,-42,-60,-90,-100,56,6,-48,79,-93,44,-65,-82,22,79,77,-83,-81,-92,54,-17,-72,-64,63,-37,26,-13,22,75,70,-91,5,23,56,54,-100,74,-100,-32,-4,-14,-91,-48,-99,-69,33,-68,-100,0,-98,62,-95,-77,-72,70,-17,-34,-93,-92,-40,-96,65,70,12,-23,-25,-35,81,-75,-10,-70,-99,-62,-41,-89,-84,-87,57,-88,27,92,-42,-41,64,50,75,38,-74,-75,-100,-81,-75,-26,-23,79,-6,-32,-99,-100,16,84,-70,89,-16,9,-99,19,-96,59,-21,-94,-79,-70,-99,-100,-72,1,-26,-93,-99,-91,61,-52,-56,41,-38,-69,-100,-94,-88,-32,-34,-58,87,-26,-72,-4,-58,-15,23,-94,-93,-64,-87,-27,-30,-8,-51,-99,32,76,-65,-100,87,83,-91,42,-58,17,89,-99,-56,-78,33,14,83,-3,-19,-14,-98,26,1,56,-100,-84,-60,-100,11,-41,-50,-11,68,-94,-81,-87,31,28,83,-12,18,-98,3,-100,-16,-100,-52,-83,-68,5,-44,86,9,-75,-60,20,84,56,-3,-72,10,-95,39,-31,-20,30,-93,-24,-70,-50,-78,-94,-83,-77,-3,-91,-41,-56,21,-3,41,-64,-20,83,65,30,-72,-99,-44,-96,13,-52,-83,-60,-78,-11,-21,-84,-85,-60,-72,-21,7,-97,-96,99,-84,-66,-74,81,24,-25,-42,-87,74,-89,99,-80,38,-94,-50,-97,-29,-62,33,32,-15,66,-66,5,-97,8,-18,41,-100,-55,88,91,-5,-100,-26,-98,-23,42,-100,-99,-100,-90,-79,-78,-56,-56,-3,-71,76,47,69,-22,69,-88,-63,-92,-56,-88,-100,-99,-32,62,-84,13,-100,41,-95,82,-11,-6,12,-99,-36,61,-37,-66,56,-24,-100,53,94,-47,-98,41,-13,-46,-56,-75,-78,70,-51,-100,-65,-21,-87,7,72,-81,-19,-97,-97,-34,-91,-100,95,28,-69,-74,-62,72,73,55,-60,-95,5,71,87,0,-88,-97,-84,-49,-95,-100,16,-54,-27,56,14,-100,82,-60,45,72,-97,-32,-64,-75,-68,-39,-71,-100,-7,-85,36,-27,-89,-100,69,-61,-81,64,-99,-58,-99,-34,11,-94,13,-25,68,-83,-93,6,-80,-86,59,-95,73,-76,-90,-46,-90,65,-61,-100,53,-100,-20,-78,-87,7,-96,33,-65,-98,53,-96,-70,47,-81,67,21,-79,-3,17,96,-33,-67,17,70,5,99,40,-78,45,-91,-100,-65,-31,-95,41,-84,80,-34,-85,-98,-100,29,-85,45,78,9,2,-98,-89,-74,-14,34,74,-100,-94,54,-31,74,-94,13,-98,-96,51,-77,-86,-84,-96,-100,-99,-82,41,-81,-24,-100,-74,55,-96,-84,-41,4,-24,-84,-80,-100,-76,49,-56,-83,-53,-84,4,-74,-64,-98,-60,37}
{73,80,-9,21,-94,58,-90,-96,-92,-92,-1,-36,16,-95,-72,-79,-94,-29,-84,-83,59,-95,-24,55,69,-52,-10,-91,-100,-42,-94,72,-17,86,-99,-49,-94,29,-7,-46,87,-96,-9,-80,-87,95,25,2,15,-50,14,17,-100,-92,-49,-100,-97,-40,-94,-96,63,-65,47,-86,-82,25,66,-100,36,35,-48,-92,-64,73,-92,-99,-100,-54,-78,-98,-50,-8,41,50,-66,-94,-99,-64,-99,-3,-69,-28,62,-14,-5,-99,-64,-55,-51,-100,63,-18,68,-97,-99,-93,-49,56,-34,-73,-96,47,-79,44,-97,89,-74,-51,29,-94,28,-81,40,25,19,-25,-50,-51,-87,48,-97,-22,20,15,-100,-100,-79,-34,-100,-62,-40,-28,59,-91,-20,-26,-53,-55,-71,-86,-75,39,34,-100,98,-100,64,73,-87,-100,-99,-99,-53,33,-99,-32,-75,-92,-40,-27,33,-87,-36,18,22,-25,-86,-43,-100,-99,-83,-100,-34,75,97,-88,-95,-87,-41,-36,38,-85,54,-91,-87,-28,18,35,-98,-34,-35,-20,-8,34,58,23,-100,74,3,-49,-41,-77,79,52,-22,-8,-48,-22,-44,-98,-91,-97,91,-98,-100,-75,-99,-100,-85,-99,-91,-98,-86,-94,-89,-100,-54,38,-31,-91,-35,-80,32,-59,-100,-70,-56,58,-95,-98,-35,21,-65,-65,-24,5,-62,5,-2,17,-100,19,-73,-86,-54,-70,9,-100,-79,-43,6,-43,-89,-48,-27,-80,-94,-49,-40,-93,47,-99,-28,-45,-49,-88,-78,-81,-100,-93,-72,-49,-76,-93,-86,87,-97,64,-85,-98,90,-67,-57,-99,57,-58,-27,31,-61,-100,7,-53,-67,-18,-16,-90,67,-52,-97,9,-100,88,-41,-96,-99,69,-91,-43,-13,33,-79,76,-76,-47,30,-7,-9,2,3,-77,14,6,-53,-16,-45,-64,-43,-88,-36,-66,-66,-32,-96,-30,2,43,-94,-60,92,-98,-18,89,-66,-99,25,-60,-70,-88,-92,-29,-23,-18,59,-45,-75,-60,-97,-67,-88,-40,-39,-92,-85,-67,-78,-97,-12,-66,-100,-100,24,-95,-7,-51,-98,15,-74,-57,-70,37,-92,-100,-45,31,-39,-100,-26,28,29,-100,-48,-100,-100,26,99,-88,-83,-15,32,-100,-84,30,-1,-72,-32,-31,-83,3,-68,81,-25,-10,-49,-14,-89,-26,10,-85,-90,-95,-14,26,-10,-94,-51,79,20,-66,-100,73,67,-90,-3,-92,-95,-6,6,-45,-44,-33,-80,-99,66,-24,-84,-97,-65,-100,-74,4,-99,-86,-87,-32,13,41,-100,-47,14,-59,21,-64,77,45,-48,-43,30,-23,0,79,58,-87,-12,30,26,14,-61,21,-96,85,-98,-52,-78,-99,81,52,39,-66,-91,-100,-84,-60,34,-50,-86,-1,59,46,-43,46,-88,-68,50,1,-67,85,-81,-83,-71,-75,1,-52,-45,52,-93,80,-72,10,-17,-94,35,-39,-69,-46,-98,49,-100,-99,-15,-98,39,-100,-77,-99,-22,68,-51,15,-95,1,76,-92,-33,73,-58,-100,38,-97,-90,-82,-68,47,-96,-25,-32,-30,-10,-81,88,23,-86,-47,-76,87,-20,81,-55,-98,-10,-59,-95,-97,-32,-36,20,-48,-32,-94,-38,-64,-87,-77,72,-39,-70,-18,31,-68,-41,-7,-100,-95,-98,-96,-9,-3,-99,48,-35,-90,-50,-85,2,77,63,-94,-75,-97,-79,-51,-84,-95,-26,-88,87,25,-80,-54,7,14,25,-99,2,-11,75,37,-57,-79,40,-90,67,9,-4,-21,46,16,-85,-97,-91,-65,78,71,-91,-73,-88,-97,35,60,-91,-94,-89,-100,46,-81,-28,-65,-28,-86,-1,5,-65,14,-37,-50,-16,-52,-85,-54,46,59,-97,-100,66,24,21,-85,29,-86,-94,-28,-100,-98,-93,-100,-96,-16,21,-93,-99,-67,-81,-22,-100,-62,-98,-99,-88,-97,14,-1,20,13,-100,-100,-45,32,37,80,-36,5,-91,66,61,-95,-61,50,56,17,51,-40,6,-100,77,76,-64,52,-71,-94,70,-100,15,-71,-30,-79,-48,-95,18,-74,-99,-83,13,-86,72,-93,-27,-60,-100,-89,-96,79,-93,-87,-5,15,-100,-75,-65,23,-55,-67,77,-97,-78,-10,-100,-61,-1,-92,-64,77,35,-89,-100,-49,20,-45,12,-100,32,-100,-88,-35,-97,-100,2,71,-91,-97,-69,28,67,-87,90,-98,-88,-97,39,-91,-91,43,-59,81,34,-96,-85,-78,-54,-76,25,77,-100,-99,-84,37,53,-90,-98,-93,3,-91,-41,-58,-96,-82,57,-93,-75,-100,-95,-69,-55,70,-32,-10,-41,-26,-20,-45,-95,-85,-47,-25,-32,-100,96,-12,-90,-68,-100,-100,-79,-45,-50,-44,-84,4,24,-98,-92,-100,60,75,-89,-80,-93,-46,-28,-85,10,-2,-15,-91,-5,-79,76,34,30,-100,38,-77,36,-2,-70,-43,-83,-52,-100,-100,-77,-93,97,-98,-75,53,-68,98,-67,-41,-65,-95,-85,-65,-97,6,-100,-99,78,84,-90,-82,-33,80,97,-90,-95,-97,-60,-75,-100,71,-80,45,-29,-15,-78,-70,-100,-86,-50,-95,-92,-100,5,-20,79,-19,-86,-28,-65,-52,-73,-100,-87,-99,97,64,-76,-19,-69,-13,-98,32,-69,-88,-100,33,-89,-95,-41,-75,-58,-93,-98,-98,-71,-81,5,52,19,8,-91,64,33,83,-58,31,-37,49,69,-93,-97,21,-87,96,-94,-88,-100,-91,-30,79,-48,-93,58,-100,-1,-99,-16,-78,5,-31,-100,68,-59,-65,-4,-100,12,-6,-93,76,-92,-84,-99,-64,-67,-44,-33,-33,97,28,3,-63,-96,-60,-98,-91,-14,-92,-43,-3,-65,-45,4,-100,-100,-54,-100,-89,-100,-40,46,30,-93,-27,-82,-63,22,-90,-86,-82,-100,91,-4,-80,-50,44,-53,-94,-12,42,-61,45,-74,-29,14,-56,-76,-37,-91,46,-68,-71,-100,-76,-98,-99,27,30,-83,43,-36,-57,-82,-100,-33,-9,8,-7,-96,-96,-13,-98,-94,-69,-85,14,33,-65,-69,-97,-99,26,-2,-48,51,-85,-93,-86,-91,87,-81,-37,-63,-100,65,-12,45,-50,-23,-21,1,-42,-87,51,-90,92,-69,-98,97,-61,73,85,12,-14,-100,89,26,-100,41,44,16,-81,-29,8,29,-98,-60,-100,-96,-29,-76,24,-47,-81,-64,50,-87,-64,-99,-85,-1,-86,-100,-32,-100,-92,75,-89,-97,22,43,-44,-84,85,-35,54,-97,-79,-77,53,-95,-20,-37,90,66,32,-61,-88,69,-94,-8,83,56,49,1,-98,-97,-98,-90,-98,-94,-100,-100,-100,5,34,12,55,-94,-36,-97,-18,71,-47,-20,-87,67,5,-98,-91,44,64,-37,43,-70,14,-90,-92,-86,69,18,61,-74,-100,96,-26,8,38,-53,-51,-99,53,-96,-56,-90,81,-90,22,-100,-77,-97,-100,77,-59,-39,-3,3,-38,-100,-71,71,-92,-9,28,36,-10,-88,-86,-34,-47,81,-100,-13,-15,-67,59,-82,-83,-100,14,-58,-100,51,-99,48,90,-57,-4,57,31,-70,-55,-98,-98,15,-20,-99,17,-48,81,-85,10,-79,-44,77,-99,-11,-100,42,-14,52,30,-82,-100,-84,-36,40,-81,95,-100,-19,-100,-93,-62,93,-100,-96,2,-99,-90,-88,-63,-100,18,-79,-27,93,37,57,47,-96,-90,72,-53,-76,-65,-99,82,-14,-3,17,63,47,95,52,-78,-21,-15,-92,-100,-72,32,-48,-9,8,-49,48,-80,69,84,29,-98,-16,46,-82,-99,34,-80,-95,-100,81,-25,12,-77,-87,-76,-4,-24,-93,84,7,-10,-20,79,-100,-66,-96,-100,-99,2,-86,-97,41,52,-44,73,28,-18,-44,-56,-71,-87,3,89,29,41,-83,-70,-86,-22,-93,79,-81,-52,-68,45,-58,86,8,-53,-48,38,-55,-100,-89,64,16,-63,89,-83,-88,77,-67,41,-99,-49,-41,35,-75,-98,-83,-74,-99,-92,-100,-100,-99,75,-100,-79,-87,49,-19,79,4,-99,-69,84,-84,-83,-70,22,-79,-97,83,30,-80,-64,-60,-42,-94,-38,-38,-52,-96,61,-84,-19,-94,-70,-76,-55,-77,-46,-45,-100,83,-85,-37,-64,-59,92,-94,-89,-48,92,-90,22,-97,-80,-93,-96,-49,-80,-91,-26,-45,-100,-96,-100,8,-99,-73,87,-71,-30,44,-33,-89,-45,-12,-89,18,-77,41,-87,-98,-39,-30,-93,-96,-79,-88,-97,-99,-69,-87,16,-43,20,-33,8,-96,-19,42,11,2,27,-98,-68,-88,85,-58,-100,31,-2,-90,-94,-73,-3,-40,20,10,-50,12,23,10,-89,-82,-92,-80,-63,-96,-86,-97,60,33,-91,88,-57,-99,-100,-98,-10,67,-74,-58,-94,54,-26,-100,-99,59,-92,-100,-51,-32,-91,64,-100,-35,-69,-22,-96,91,-99,74,-61,-60,-30,16,27,-28,-95,-62,-22,37,-10,-74,-82,-42,-87,-96,-60,-94,-99,-100,-56,4,-77,-91,-68,-95,-82,67,-87,56,-97,35,-43,-98,-61,-39,-64,-61,-83,-16,48,4,49,-23,43,77,86,-65,-99,-69,-94,-65,-92,41,-81,-54,63,-39,49,-7,15,23,-59,51,-93,-10,-44,33,-95,-21,39,-53,72,84,-30,19,68,46,85,-79,-26,75,25,-98,-35,-95,-100,44,-65,-77,23,-100,79,-74,-97,62,-30,-99,61,-65,-100,48,-87,45,-38,-97,-24,89,-84,-75,-57,41,67,15,-49,-78,-98,-40,-90,-89,-81,-87,-41,-35,-57,90,-62,13,-6,-96,-95,-86,-13,-88,-28,43,-29,-8,-60,-56,-100,-72,-61,-85,-58,45,-97,63,85,48,-93,98,85,-62,-16,-73,-55,35,-83,14,-100,1,-96,-90,-48,-82,-92,-100,-91,27,-90,-80,-92,-55,-14,-67,14,65,71,12,-99,-41,-51,46,-13,63,-95,-65,-97,-76,62,-56,-99,40,-21,-89,-100,-98,-5,-95,-81,-45,46,-80,-88,65,89,40,-98,-84,96,-10,-47,-52,-69,-99,-26,-80,-62,-96,-83,66,-11,-7,-88,-60,-56,3,-79,63,-94,-21,-92,-95,-67,-89,-100,49,59,-30,-31,-93,-100,-72,-93,-97,13,76,-89,-100,-95,-84,-48,-6,-71,-16,27,-96,73,-91,36,-16,29,56,-28,56,15,-85,-55,-100,-76,-100,-75,-98,-89,8,7,18,-97,-82,24,-89,-26,62,-91,40,-20,-38,-22,-89,-89,-81,-61,-97,-69,-42,3,-27,-60,7,-16,-66,15,48,-99,-46,-33,-81,-22,-91,-96,-14,-99,-24,-96,26,-92,66,-54,-81,-72,-99,-66,10,-35,-96,-48,86,21,-96,45,-100,-38,-84,-83,-16,-3,38,-95,-98,-17,-28,-99,-91,-9,93,96,-100,-77,-46,-73,-54,32,2,-75,32,-100,83,-20,-98,-14,-33,-40,42,-19,-42,-58,-81,-59,-38,-100,-14,-50,-50,22,-68,-100,-79,-88,35,-45,-89,-84,-39,-60,-50,-96,-100,-68,-100,-11,-52,37,55,90,-15,-80,-90,45,-100,-98,24,66,-94,6,-87,-21,-57,-99,-100,-96,-42,69,16,-91,-63,-65,-71,-14,-100,-57,82,-12,-29,-39,27,-84,-74,45,-81,-89,-76,-58,45,9,-91,46,-26,-100,-59,-81,-37,-38,-97,-68,-78,18,-95,-27,-99,-79,-10,-99,36,31,-77,-81,92,-46,-81,-64,2,31,-36,-100,-85,33,-79,27,-48,-99,-72,-64,48,24,-25,-83,-70,-98,77,98,10,-83,-57,-97,-44,-17,68,-53,-73,92,-57,-52,-24,19,-79,-91,97,-16,-97,-47,-87,-95,-22,65,-4,-42,-100,-80,-56,-94,-79,-81,-10,-8,-90,60,-35,-36,42,-84,31,45,51,-78,89,-99,-53,-83,8,51,-27,70,28,-82,-13,-47,13,-91,-78,33,-68,-100,9,61,-57,-94,76,-58,-100,-43,-88,83,84,-98,-74,84,-80,-30,-90,-95,20,-61,-40,-100,-70,-68,71,-99,-94,-68,94,-92,-6,-52,-91,32,-81,54,74,-32,17,-100,-61,-93,-71,-6,-42,-96,22,-94,-63,67,46,-98,-69,-79,-70,66,-100,-31,-82,-11,-82,-2,-95,-90,-69,-90,-42,-77,-86,0,68,-54,-1,37,82,17,83,28,-68,-55,-84,75,-75,-99,-89,-48,-71,-22,-92,-59,1,-41,-64,-82,77,13,7,-100,-57,77,-75,-91,-27,-76,-77,20,-53,-46,-32,-41,-18,-48,-96,-98,22,-100,-100,-82,-47,40,67,-97,-65,25,-79,95,-45,65,-100,8,-63,-69,65,85,68,-88,95,-92,-26,83,-48,-35,-95,47,-12,-82,-67,-94,-81,-16,-97,-12,41,52,-63,73,-91,-95,-87,-42,-99,-46,-96,-18,-100,-99,-97,12,-95,97,55,-100,71,-1,63,52,-97,-95,-87,72,-24,-98,-37,-12,-100,35,-55,95,-100,-65,93,-67,40,-3,-90,55,-21,94,-94,-23,-100,-73,-92,-98,-83,18,-80,-88,-98,-100,-85,-69,40,-46,-86,-3,-76,-81,-100,-47,-66,-57,69,-76,-56,-85,-100,67,-99,-16,-69,-78,-24,64,-66,-50,39,-94,80,35,-84,-76,19,-61,-78,56,-94,-100,-97,-63,-49,46,-28,-75,47,-2,82,46,39,2,-96,-96,-60,24,25,-15,-92,-62,-90,9,-93,-25,-28,59,-97,51,-52,-43,-83,-4,-99,31,57,-16,67,82,-37,91,19,9,39,-87,-100,-63,-27,-84,-97,-28,-92,-95,-34,29,-78,-98,-30,25,0,40,-56,-41,-50,-99,-37,1,-77,-30,-84,-12,-63,22}
{-71,81,100,31,-28,77,94,-20,30,75,67,76,32,37,-47,-30,100,73,98,28,88,76,-4,-23,-52,79,80,57,99,74,69,-90,96,16,100,96,95,-62,85,80,42,99,-21,5,100,17,-80,100,-9,63,44,61,-52,3,90,-22,100,78,-17,70,90,14,98,99,61,65,-49,74,94,-44,-10,-41,98,10,97,-41,33,-91,81,-85,-25,-20,45,-53,100,-14,87,3,13,2,17,80,59,82,81,100,-11,-89,50,61,44,68,68,99,0,93,88,45,52,-46,94,-67,-26,-61,-65,99,15,41,-43,59,95,-17,7,-42,-95,-87,38,-59,-97,-5,66,53,-41,83,42,-53,-46,35,82,-74,99,83,26,-64,42,100,-87,13,89,31,-76,97,93,46,72,95,80,95,99,81,82,-24,79,-21,74,100,28,34,92,47,60,76,100,27,100,62,-50,67,-59,52,-42,-26,-8,99,89,93,87,73,83,55,-69,3,48,-38,79,71,-52,45,94,-36,-54,-1,1,100,88,86,100,39,-17,11,54,100,0,18,83,91,15,100,72,-86,59,100,61,100,-49,91,96,-91,-29,14,86,45,-89,87,98,59,38,-91,73,98,-13,2,100,17,100,39,73,-6,-18,65,99,27,23,92,-60,8,100,77,-17,-60,18,46,14,99,67,75,100,58,94,100,87,79,55,28,-2,54,100,35,47,-45,78,99,100,97,-8,31,73,9,71,83,91,55,34,30,-9,-41,-79,91,-91,96,100,-60,-81,24,30,-68,7,87,98,88,62,100,92,-22,77,-27,-66,90,-77,100,72,-6,18,19,70,83,61,-56,47,86,93,23,33,100,55,36,-48,95,99,44,62,-29,30,96,85,-94,82,-47,-30,100,98,41,67,-77,23,2,24,-12,58,-86,-12,30,100,94,38,-99,4,85,44,44,-50,97,-12,45,100,67,25,100,-77,89,94,35,64,49,-9,84,-8,59,-69,-35,-2,-15,-22,26,87,16,67,-38,33,-64,-74,-74,-81,-67,80,63,56,-52,-75,65,98,22,-8,-86,65,99,-11,-23,70,50,-12,68,98,79,80,-97,25,98,18,34,-17,63,73,90,-5,26,89,96,-6,-16,87,82,3,12,92,96,-17,30,66,-97,-51,-28,89,-69,57,-56,-71,-53,-26,4,41,96,80,-3,92,4,-2,98,-85,97,90,-14,-40,71,91,46,11,82,7,85,99,97,10,44,78,97,-23,-6,32,86,45,-21,96,60,-19,-34,90,-38,45,-66,100,-77,-55,26,79,-68,57,20,95,25,28,96,64,62,100,97,91,95,7,46,52,-19,-81,76,64,10,63,51,81,83,100,-10,93,100,92,-98,90,100,30,3,54,93,99,96,7,-39,-60,10,-70,-13,96,-9,98,57,85,15,-25,-64,-61,100,92,92,-42,27,51,22,17,21,39,71,80,-87,83,80,-80,11,94,-9,8,74,88,-29,54,66,53,97,22,100,-10,-94,-41,86,-1,31,-82,-68,100,-13,94,26,-13,-9,59,-11,60,-63,-10,99,100,90,-64,61,-64,95,36,98,-17,5,93,88,-51,34,100,-58,100,95,-6,-95,64,-27,93,100,-57,86,9,96,35,93,76,-19,98,66,28,91,-62,15,83,93,100,-41,27,41,100,50,-19,-97,82,81,100,1,90,99,44,-49,100,-7,54,97,-58,-13,-66,89,68,100,96,71,93,80,81,90,75,100,34,36,-53,75,98,-46,16,75,-45,52,-43,-27,-55,-98,97,99,52,-3,79,14,100,41,73,79,74,17,34,100,-96,-23,100,3,-12,96,64,78,-72,-97,98,100,14,49,91,98,74,13,41,87,-73,37,-38,-95,99,-93,-6,92,-29,53,-42,99,13,67,82,42,-50,60,94,80,-55,61,100,92,11,99,32,24,74,100,23,90,70,8,-77,46,100,-93,58,37,78,85,95,45,100,-35,-59,73,97,78,93,89,17,79,-59,-86,-56,56,58,-92,9,-87,-62,75,-37,59,16,-2,92,83,100,-73,-80,31,-9,95,99,64,83,-85,-29,100,16,25,53,21,-24,-21,36,0,-82,-35,-25,76,-50,-55,-37,-69,57,-63,55,70,-57,76,-42,-19,3,92,-19,100,-94,87,95,100,53,57,100,90,-56,100,-68,-63,88,-57,41,92,-45,-28,98,86,-13,-24,-11,96,93,55,-3,-22,89,100,60,-44,-79,-33,36,98,72,76,74,90,23,-8,100,21,67,62,-76,63,91,-56,88,27,81,97,42,-22,-37,-88,74,88,100,93,83,7,46,59,-42,-88,-83,-8,94,54,74,29,99,13,75,-72,88,16,-23,100,-14,-88,92,-6,-80,-85,27,98,59,-32,-35,-13,100,59,63,90,-77,29,87,39,54,75,87,93,-28,-60,94,-54,72,86,49,6,88,30,-52,19,-19,84,-23,16,16,4,65,-13,-59,-72,99,33,-29,81,63,99,89,-40,75,48,99,35,13,100,62,-51,68,-69,100,67,66,23,-75,-77,-26,-94,-53,49,-15,100,-41,13,95,-33,54,-48,3,100,52,-20,-88,12,100,-2,-94,-36,24,-33,-4,90,2,-36,91,-56,95,33,90,55,-66,75,81,94,100,86,75,-12,43,-33,39,-36,24,61,84,-71,100,-38,-38,-63,85,99,71,-79,62,-6,-18,100,-50,42,99,99,92,96,-16,-76,12,-61,57,14,15,93,89,84,-52,78,89,-76,74,-52,27,95,84,62,16,-40,-87,-13,-7,87,78,89,84,82,-80,95,-53,18,6,-77,6,60,45,73,63,70,95,91,24,88,-7,65,-88,-34,20,15,100,-41,92,-23,83,-57,98,-44,80,97,73,-66,17,100,85,100,94,97,-98,93,90,63,99,71,62,100,84,97,26,-46,87,86,42,94,-99,-7,-11,-96,7,92,76,17,79,96,-1,95,92,81,-37,58,66,73,78,83,86,87,44,100,-22,53,86,16,93,76,-90,24,98,43,81,64,71,-97,72,62,98,88,-90,-92,34,-30,75,-55,84,96,50,99,-21,96,59,-84,100,13,-92,-56,-40,19,-12,99,45,63,89,100,40,96,-20,25,46,-23,48,50,-19,84,38,-8,97,97,84,100,100,83,37,-49,-2,-25,15,0,19,-58,-5,58,-47,59,98,100,-73,41,-93,-44,94,81,-4,-31,-6,95,-66,10,10,55,-89,78,-42,95,70,-60,100,70,-20,97,-55,53,65,33,92,90,59,-93,75,-60,45,-25,99,54,0,100,72,-9,78,77,98,86,-23,-54,44,100,87,78,94,99,55,9,-32,84,63,21,99,-80,35,79,16,-75,87,13,60,76,-74,45,74,-2,85,79,-50,97,75,48,12,11,95,-35,3,55,-21,84,-95,-12,98,17,-17,16,30,100,-21,-38,-36,96,-19,-76,98,25,100,-59,-89,78,73,96,65,100,-9,40,-50,-50,98,54,97,52,-48,86,50,75,12,-8,-45,-7,85,-45,64,49,97,98,72,96,5,95,100,22,87,-92,-25,90,89,100,89,35,-72,13,95,-20,19,-22,54,90,93,-6,62,-6,-60,83,-27,-83,-14,39,24,11,-88,-6,86,3,-3,87,41,85,-68,-34,-74,12,-36,-88,-8,86,71,15,89,-19,-3,85,100,-2,45,15,60,85,-52,90,93,25,10,21,17,91,98,90,50,89,78,100,93,1,99,-1,95,20,75,-13,-67,98,-43,60,100,98,77,100,95,4,-6,-43,-25,-60,8,66,7,91,-60,20,-68,100,17,-93,100,26,88,-3,-21,92,27,-32,43,-24,-57,93,-23,45,88,-16,2,100,-79,-4,35,17,94,96,-92,49,3,-41,59,79,19,36,59,68,96,-32,7,63,-44,100,93,-35,17,97,83,64,54,56,-43,-75,99,-46,32,86,94,9,-96,69,-8,88,72,97,100,-34,83,94,100,47,-18,53,43,100,52,100,66,27,-92,96,32,99,29,-23,68,86,70,5,95,100,98,33,62,-63,100,91,-71,1,-59,70,-94,-89,100,93,92,-4,95,43,90,-49,-16,99,44,77,8,85,100,41,-86,-70,97,90,-70,72,81,66,54,-85,-19,96,85,79,1,94,-67,94,99,-68,99,8,76,19,66,94,96,65,85,2,91,3,-48,-30,-16,89,-44,98,99,99,25,47,91,81,45,-45,73,65,67,86,-95,-31,70,-94,100,-51,96,25,-14,-57,100,88,-50,92,34,99,-87,93,-43,-40,98,89,94,99,51,92,69,66,-51,-89,-13,96,82,-42,-54,49,14,-11,65,-20,97,-42,88,6,61,72,91,32,45,-49,46,88,-66,-88,72,34,-73,70,96,83,90,100,-48,86,59,-38,-18,72,9,-78,100,50,29,74,59,93,-88,-55,69,-64,98,61,68,-58,95,-81,57,75,-6,98,-2,98,81,-94,-33,-92,62,81,38,18,64,95,44,47,50,97,100,56,70,25,75,100,48,55,47,40,-16,33,-29,65,100,53,100,48,-14,-11,19,-84,9,96,89,84,-10,-45,26,96,-40,64,72,95,99,-10,70,51,99,98,95,-97,90,71,100,2,96,93,36,86,94,38,82,-45,96,72,-1,38,-92,85,96,78,95,93,-60,58,-13,100,55,43,54,38,100,-47,81,15,64,15,95,98,65,62,30,-63,100,94,4,75,62,40,85,-8,96,-18,-15,43,-4,-69,65,45,95,-1,15,-54,80,-49,-69,79,-45,98,1,55,93,-61,97,5,1,56,15,100,67,-84,100,99,95,64,100,71,78,13,-27,97,-14,14,100,-63,32,90,94,97,59,74,-66,97,54,99,-89,-8,-50,-2,5,-13,82,92,-26,48,-37,88,83,72,32,2,-34,-68,18,98,100,52,86,72,-60,-86,100,51,-32,100,61,100,46,63,52,-85,-60,-17,-60,9,-93,42,4,97,67,100,-70,34,54,72,100,95,-21,100,-64,-40,99,42,64,100,-32,95,7,60,-51,-5,67,87,97,9,-20,74,63,83,79,97,92,89,-57,90,-64,-86,7,-41,100,99,76,57,-95,86,86,24,54,65,73,45,51,82,-14,-22,10,22,90,30,-17,100,20,-57,-21,-27,-46,98,17,-82,80,-44,56,44,72,-49,100,70,-56,73,27,100,31,70,94,100,-22,87,-85,-77,59,96,96,-21,59,63,94,60,100,32,87,51,-20,30,96,20,61,100,73,70,35,-89,58,100,-80,88,91,5,-45,24,-30,-92,-80,44,80,24,70,99,81,100,18,51,96,-85,-10,53,93,26,-21,65,68,28,100,69,74,97,56,34,-43,-55,-7,-52,8,88,90,36,-40,10,-49,16,99,-14,45,98,38,49,10,60,-32,78,15,-68,-1,98,-86,-2,63,23,6,9,-85,87,99,82,81,-13,-3,94,31,-12,51,-88,-37,95,-15,95,100,-58,-63,-1,52,77,-80,58,95,-60,84,94,16,-35,100,75,100,-91,85,-40,35,29,-83,59,45,99,14,35,100,-14,-3,81,-9,35,100,-33,53,100,-83,19,78,92,99,36,97,42,82,-93,79,73,76,-3,43,-45,-99,-90,1,74,83,19,100,81,83,9,25,100,4,-72,43,94,64,15,100,93,94,-24,10,-55,-49,5,82,-69,76,68,-42,13,98,76,50,-78,100,89,50,85,72,-21,96,87,93,78,-41,21,-49,54,74,-44,-46,0,45,83,70,-58,76,59,-22,1,81,32,8,100,96,64,31,-35,28,62,25,22,-35,-24,-68,90,84,82,98,79,20,100,-16,89,61,-53,61,100,0,29,60,91,-16,91,65,68,55,71,98,-47,-6,-35,71,99,4,42,31,-18,-65,61,100,82,-63,100,95,5,-83,-57,100,34,10,58,66,-81,97,100,-17,100,-67,74,87,-54,64,-56,100,40,96,84,-77,82,20,100,-55,74,39,100,73,75,-72,33,56,87,100,29,80,88,-36,36,36,82,-12,95,90,15,37,-69,74,-2,100,94,20,-74,89,8,98,54,95,99,56,76,81,91,49,32,-1,91,-46,-70,83,32,100,96,19,70,-99,11,1,-10,66,-32,-68,35,74,82,34,77,76,99,16,94,85,1,91,73,8,36,-40,25,32,8,-69,-62,-30,95,76,98,-96,-38,-29,32,71,-64,4,97,85,31,100,-28,100,-21,19,-19,44,1,95,52,-71,-8,-28,-54,-68,-14,100,98,30,-68,-22,-90,-55,59,98,84,-66,41,69,97,18,-31,76,100,67,92,98,84,75,53,14,13,58,72,-19,-45,66,-37,57,-9,20,58,92,63,7,59,82,4,37,22,89,100}
{5,77,68,-76,-95,84,88,100,-94,-49,-76,13,-54,100,75,81,84,95,-31,32,-9,93,-22,90,99,-35,-83,76,39,46,-91,89,-28,3,25,74,-80,13,22,62,1,62,100,86,46,89,33,62,94,100,31,79,61,-54,82,91,100,76,97,69,-15,61,63,71,-56,37,78,83,100,79,47,87,100,-73,100,-25,99,39,100,50,94,75,93,69,65,100,92,81,48,32,74,-12,-76,99,78,64,100,100,34,74,50,26,33,71,78,-16,-8,-47,43,-14,78,-35,98,30,87,100,94,85,-33,-28,-16,100,-11,45,91,60,71,81,68,84,100,36,32,79,2,24,91,-68,96,55,98,72,-44,-85,-99,-68,84,-14,-91,50,-57,-36,57,7,69,4,-50,100,36,-40,71,98,94,88,-58,87,95,-58,-26,100,-42,80,-34,60,33,94,-71,24,58,-28,100,33,82,95,67,23,98,100,90,96,-3,15,-85,97,-76,79,85,-20,-88,32,-17,17,99,87,-75,55,68,97,-91,-9,-20,97,-26,-44,97,89,84,99,91,95,100,36,76,15,67,100,90,-30,-57,-35,42,91,-50,-97,73,94,-82,0,53,-39,39,-98,76,60,-74,16,-37,74,-32,11,-48,87,-17,71,-2,49,97,96,100,58,57,99,42,83,28,17,87,100,16,23,-93,-34,-49,-69,99,25,-81,98,-30,85,100,-6,85,72,30,97,98,51,-35,99,33,-43,-55,68,100,56,93,3,73,100,56,8,-96,19,-3,86,69,92,46,89,97,-65,-54,95,45,29,95,92,54,25,-68,-44,-43,44,-85,49,-44,-75,-22,99,4,67,97,81,-6,42,42,12,52,72,-53,93,36,74,99,74,66,98,-90,69,94,-42,95,94,87,36,46,-61,89,100,-70,94,98,-78,50,95,-94,67,20,45,40,100,53,-52,-28,92,93,69,28,17,-22,-40,98,-21,43,-86,5,90,10,100,0,93,89,18,93,92,6,19,-30,-93,0,93,67,100,100,-2,-85,-88,-62,47,100,95,70,99,-74,66,65,99,15,-95,72,-68,92,-98,66,53,90,-21,65,38,61,82,16,76,69,100,69,-14,71,-70,9,-46,-6,-10,22,44,-22,88,-87,58,-29,-12,88,61,60,22,69,61,50,-23,8,89,40,69,43,13,67,100,65,-78,28,100,37,71,70,-18,37,-84,-82,28,-11,90,18,78,29,8,29,53,-42,42,-48,-4,46,5,28,88,-67,6,82,-62,84,5,28,65,86,97,-53,77,100,52,100,95,15,70,50,91,-9,-52,99,99,-44,-81,57,56,90,96,24,-98,81,100,59,90,38,6,79,47,50,2,61,-87,76,15,92,-44,100,46,-16,56,39,-70,-37,95,-57,99,-42,24,15,-31,99,75,100,-16,26,78,74,-85,59,95,38,-54,56,62,80,-22,-27,-56,96,-36,78,100,86,100,51,98,100,-53,94,-89,-41,-25,95,75,99,100,100,-83,-28,93,75,55,97,1,79,100,62,21,96,99,4,70,72,85,44,-32,89,36,74,50,-42,70,-59,63,99,85,13,-99,-6,73,21,86,67,98,62,21,37,-74,63,89,22,52,-28,-11,87,55,9,97,47,76,-28,99,95,-24,99,-19,-83,-41,70,-98,88,-18,94,99,61,-30,50,100,79,-53,-86,100,-85,97,96,25,-28,99,79,-43,89,40,-66,-46,49,59,93,84,40,10,81,-65,76,-42,42,27,41,97,-22,-19,-95,99,21,75,-36,97,76,-83,-13,-19,95,66,96,-82,91,52,50,30,93,-56,28,-96,-25,-40,94,11,-96,92,100,55,-87,54,99,61,93,-18,20,100,23,88,52,100,-89,-14,57,11,25,6,19,98,100,94,90,34,-42,100,33,-23,10,93,-2,71,99,62,48,-59,99,90,24,62,18,-97,100,-29,-88,49,-5,100,99,-99,-98,11,-36,-82,23,-78,21,-66,-17,37,49,24,67,-89,-38,90,-32,97,96,100,96,16,-9,45,93,41,78,65,-80,26,8,-80,78,-87,98,-76,-86,-34,90,-4,99,-35,72,74,7,-20,97,69,-94,50,24,68,84,-77,88,100,97,70,100,100,100,-54,8,74,78,83,26,-22,13,-36,16,-74,94,12,35,65,-51,1,100,63,82,93,79,-7,19,-25,92,-19,100,5,-32,-15,87,35,99,-76,96,79,-79,81,-15,62,97,84,85,29,63,54,81,78,20,-90,46,23,86,-39,74,56,95,-9,96,1,29,-14,67,2,75,97,90,95,-49,100,19,95,16,-57,-46,-56,82,-1,-52,68,8,84,88,97,87,-53,41,-51,65,82,-52,29,-83,12,12,7,86,95,85,23,40,-43,-87,100,15,16,62,96,3,-42,5,28,-62,-81,21,-67,100,-21,-7,35,71,81,77,9,-80,96,98,-2,89,49,25,-21,89,98,-55,79,96,-71,-1,87,-5,57,94,40,-82,-54,86,96,86,-48,-17,94,93,78,96,-46,95,-54,84,66,1,82,14,-21,98,-39,62,77,-62,67,-58,74,-21,32,81,99,51,55,72,65,70,6,-41,-58,13,89,85,67,100,14,93,-2,-52,78,-11,-48,73,95,83,-41,100,84,85,78,62,61,100,-11,48,97,95,58,100,92,-35,79,74,-60,78,-74,83,-68,86,-93,16,100,96,12,19,93,8,76,4,11,95,80,10,33,92,30,-58,-84,40,-84,93,98,-34,28,99,84,100,31,100,72,-57,63,-50,-69,69,-17,42,-57,42,-60,92,93,-50,26,87,97,76,95,86,1,100,-33,76,52,-99,16,61,-1,-62,34,74,-88,-67,-10,-8,100,-9,56,29,72,100,-87,92,-94,97,-11,62,74,98,-9,98,100,-32,47,100,18,15,-29,-21,71,83,-53,97,100,21,-82,38,-91,100,-54,80,60,97,3,85,-16,0,-57,-55,35,-5,-62,100,-45,76,-36,12,87,47,25,81,96,35,91,94,-31,-42,27,11,-32,28,97,30,84,-6,79,19,87,93,68,-38,100,11,88,66,84,-45,7,90,-16,78,-71,44,43,29,79,89,-85,86,97,11,43,-32,100,87,59,12,-57,93,-61,97,-6,39,72,-23,62,94,70,83,69,-40,-76,6,91,-43,100,61,71,100,4,95,59,-47,24,78,-4,100,95,89,94,-39,17,70,52,-96,97,55,62,-72,56,42,100,99,-28,100,96,56,-3,70,-23,67,-36,91,-82,-84,-42,100,-51,53,-23,-68,-78,-60,91,0,-41,0,44,90,100,88,36,-16,97,-7,-6,100,69,32,-21,97,99,93,85,20,44,99,67,99,-45,12,43,89,79,-93,60,29,99,100,32,77,36,81,97,99,40,-45,-33,92,-15,-3,-29,88,82,5,0,32,100,-59,87,99,76,63,41,100,30,-85,-81,67,55,21,74,-97,100,9,-97,36,-4,-66,47,40,61,70,-76,-82,84,-56,49,-21,-44,97,4,-7,98,53,100,-47,100,88,100,8,59,-55,29,67,83,67,25,90,100,77,49,-30,16,100,62,100,42,-2,-71,73,-56,86,93,39,100,63,-82,9,91,83,-42,-14,-47,98,63,61,47,70,47,27,68,87,-25,6,67,99,62,100,94,22,40,99,26,50,54,-86,64,96,55,-35,69,65,-14,24,26,26,40,83,100,-68,100,81,65,57,98,62,20,57,-91,-89,95,73,-83,29,54,-69,-80,42,34,68,88,94,88,-18,100,-96,37,99,64,47,69,48,96,100,82,11,45,8,54,97,82,20,-12,100,10,96,30,100,96,42,47,-4,49,26,-23,26,-36,4,32,68,-68,86,59,100,-99,45,68,-93,79,57,-60,100,72,-76,86,62,77,58,42,80,-4,-6,99,49,27,6,31,-48,99,90,-78,73,99,-42,100,-88,100,83,-52,9,98,29,61,84,18,-90,100,48,95,-35,34,59,69,72,87,73,-13,29,89,-45,89,21,-59,100,95,69,-1,99,-25,100,31,97,91,92,69,65,99,49,-17,86,28,49,-96,86,65,36,32,-26,100,75,100,77,9,31,43,94,100,-85,16,93,98,47,82,97,87,41,100,91,49,-3,-8,-18,87,72,-9,80,99,-5,98,-82,30,89,-52,-28,2,-15,-74,0,10,1,100,86,100,100,100,85,99,99,87,54,100,96,-33,63,97,-20,76,37,23,67,80,-50,88,57,30,-67,6,69,59,-61,-64,64,40,-13,66,60,-64,-38,-50,-28,72,90,-34,-87,81,25,-91,14,100,76,91,78,47,-4,98,94,85,73,54,95,69,69,26,79,100,93,10,97,-10,30,61,-20,92,100,80,69,92,73,99,-83,95,27,60,10,85,44,7,30,100,-49,100,82,-31,3,-72,100,-6,100,15,2,40,91,-95,-93,71,-43,84,58,11,41,97,89,-2,84,-25,31,79,-83,100,57,-75,70,73,-52,16,-31,-50,7,92,22,-74,83,-21,8,-43,72,-76,34,59,-84,-17,100,74,40,73,98,49,100,47,59,86,-21,93,-6,23,60,99,93,99,-20,94,-21,89,-67,100,-99,6,92,96,44,84,3,60,64,98,33,44,55,-4,7,94,22,59,10,23,86,38,-75,94,-64,-85,30,97,98,95,98,-94,88,-45,40,39,8,-93,-76,-24,21,66,100,-11,-4,-17,61,28,-38,67,14,74,-83,95,18,20,99,-66,74,80,-96,93,-58,44,-30,-92,92,74,82,-24,96,61,98,-76,93,78,43,-16,-18,-64,100,100,100,-29,18,38,11,-91,36,-73,55,99,23,-25,-56,90,-26,-61,7,-81,-68,50,-76,66,98,92,-79,84,3,55,42,100,100,-59,19,-23,42,95,55,-70,-46,64,100,72,77,100,-13,-82,-51,-3,37,-9,68,87,77,-99,95,100,-20,71,100,70,98,-93,40,-10,6,100,100,99,-16,-74,86,88,52,64,90,96,-43,-38,93,90,100,89,69,38,89,100,-96,97,93,24,40,100,38,42,92,-15,100,-97,3,-32,45,98,71,100,-38,-41,-78,8,98,69,13,51,-26,70,-81,40,99,63,60,94,70,-23,100,-3,88,-53,98,14,4,52,44,100,61,86,0,-5,9,-47,-19,51,84,100,67,-20,-83,97,65,39,-76,-21,-70,-51,100,66,1,100,27,5,99,90,81,89,46,-46,57,78,25,65,-44,-35,-99,67,89,47,40,33,43,89,26,-40,29,62,-31,60,28,-52,100,67,96,54,100,99,80,98,70,90,16,-68,50,66,97,-94,56,-34,2,92,96,99,-67,72,95,16,96,-12,73,77,63,-23,95,-96,-24,98,59,20,100,-54,24,42,87,94,90,51,88,52,63,5,96,-82,56,-22,2,62,90,51,18,53,-10,99,14,19,89,35,75,43,45,76,96,91,-7,43,96,-83,-30,44,95,16,23,-25,-87,25,54,88,-21,97,80,9,99,27,86,30,-75,3,96,85,71,-81,-87,87,83,-36,-27,51,81,99,83,88,47,59,34,97,-46,-8,35,69,21,-19,51,100,1,90,100,62,25,97,52,8,95,-99,39,2,94,-67,92,25,-11,-99,-98,78,62,77,89,8,52,58,42,-7,-66,69,-13,100,80,-52,10,3,98,71,-18,96,-96,76,6,81,18,-64,4,14,33,13,-58,3,42,92,-25,74,59,8,-47,99,88,100,20,-87,95,-69,65,-23,48,-43,-44,59,-13,54,86,86,98,71,25,-55,70,30,82,100,96,20,-2,89,73,54,97,76,77,66,95,34,-33,73,66,8,45,-4,9,34,11,-11,-30,-28,75,83,60,95,-28,88,-33,-16,-38,56,96,-92,80,-26,-53,-16,89,40,-97,-12,65,-29,88,77,43,95,90,-30,74,18,-24,-69,73,71,31,65,75,17,54,-31,96,42,56,27,46,80,60,96,-71,100,-15,32,94,23,-21,68,100,9,-2,98,98,74,84,62,31,-65,76,87,30,93,91,93,15,8,98,66,90,2,77,30,96,75,-16,10,100,45,96,98,96,-7,100,1,61,30,-37,93,78,30,88,-51,67,-32,55,58,96,-90,24,89,-55,-73,13,81,54,86,-48,27,-24,87,98,52,-10,7,32,-54,-36,38,48,39,52,-34,49,92,18,82,90,54,95,80,99,-47,41,100,-37,-22,25,-42,29,-20,100,38,21,-29,83,-54,-89,98,-28,81,75,94,55,99,-40,76,-75,-71,100,36,-29,98,26,-22,43,-85,23,99,-86,63,26,71,-73,64}
{100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100}
Returns: 4.9949547877E10
{-92,-77,-68,11,-98,95,-9,-52,-49,-89,-82,5,49,-80,33,74,74,-81,-89,-99,-85,99,-100,-10,-39,61,4,-73,-8,-99,-67,-35,52,-86,14,-89,7,7,-100,61,-29,-100,-6,-82,36,-2,-22,76,-92,41,-93,-34,-84,-84,-32,75,-89,74,-49,-93,96,-75,-98,-28,-78,-81,-55,-70,-100,-92,-38,57,-25,-71,-100,-100,-14,-83,-89,44,50,-99,78,-96,-67,-92,-58,6,-49,-90,-16,-99,-58,-83,-64,-22,-55,-39,-40,-40,-58,96,-93,-78,-63,-66,-40,-34,-93,-41,93,-88,56,-90,-94,48,-94,30,-56,-60,-91,-60,-9,-72,51,-72,28,-85,-19,-98,-50,-96,-100,-100,-52,-98,-32,-26,78,-62,-54,-62,-46,-99,-98,-90,43,34,-67,-55,-93,-100,-91,-74,-38,84,17,4,-28,14,-87,-1,-9,85,-52,40,17,-50,24,-16,-94,-21,-5,-100,34,-63,-35,28,-100,-99,54,9,19,-100,-48,-78,-68,-67,87,-86,-1,-93,35,-55,7,-33,-16,90,-51,59,-12,-47,89,-62,-89,-90,-71,-71,-100,-100,-92,3,-85,-74,77,81,-31,-100,-69,-52,-76,-95,-75,-86,-100,-100,-67,-91,65,15,99,-11,2,57,-85,-44,-91,42,1,-73,-3,40,-73,-79,-58,-1,-80,-33,-100,-33,94,41,44,-63,-88,-100,-86,29,-48,-3,-96,-90,-79,-69,-29,6,-96,-88,91,34,-100,-25,-53,-89,65,-38,45,-84,78,-100,-62,-44,-76,66,13,39,64,-100,-95,-51,-94,8,26,-75,-61,-90,-34,-92,22,-92,-98,29,-80,47,-98,-92,-74,-100,-94,-14,-100,15,-62,-23,-100,-93,-92,-99,-89,0,-11,-100,-71,-64,-97,-44,-21,-30,-84,15,51,-98,-48,63,-70,-78,-2,-83,-34,-42,-60,-57,-98,-19,-96,-70,-100,-23,91,-93,-65,68,-98,-56,-1,-100,57,-88,-97,-99,1,-43,-98,47,40,3,-45,-100,-9,-88,-99,-81,-98,30,-96,11,8,-92,0,-77,-50,-94,93,46,-6,-53,-84,94,-97,-98,-99,-5,-63,78,-98,25,-98,-20,-98,-98,-2,87,16,17,-40,34,-90,-100,-81,-45,-36,-29,-97,66,-95,-96,-97,21,-95,-97,-89,99,-8,-98,-98,-33,-82,-75,-20,-80,-22,8,-100,-10,-19,-77,24,-48,-89,-57,-100,-75,1,88,-17,-80,-52,-94,-21,80,-5,-84,-75,-35,-35,-43,-92,-79,-58,54,-97,-42,53,82,-99,-74,-99,-15,-63,53,-100,-96,-64,-100,54,30,-100,12,-15,8,94,-40,-75,81,55,89,-45,-54,-100,4,-98,-15,-96,-96,-59,95,-95,-56,-91,46,61,-93,-56,-100,-99,-91,-26,72,-21,-15,-30,45,-99,-70,11,-74,-78,26,-77,-100,56,-31,-67,-85,-2,-65,-56,-2,-23,39,-64,-81,43,-9,-78,-14,-51,-98,-2,-31,-99,-57,42,64,-46,-98,40,5,-60,-83,-100,-98,-8,62,-91,-92,-97,-49,-42,-79,-99,40,-74,-56,66,-89,13,-95,-99,92,60,-14,-93,22,-97,92,-33,89,-57,14,-49,51,-95,-62,-40,70,-70,-34,-77,-87,91,-60,97,56,-100,94,-16,-9,-65,-22,5,71,35,-99,-45,8,-89,-56,-74,72,-98,-66,56,11,-24,-98,65,-38,-72,-79,-99,-85,-83,-88,-54,-100,-100,-97,10,66,44,-36,-93,36,-93,-30,-56,-11,-99,80,-87,72,45,74,76,90,-61,-100,-7,92,-100,-56,-15,-97,64,81,-75,-100,-27,-63,-56,-13,63,24,-95,-25,-91,-19,-52,-100,-99,-88,-35,-54,2,-99,-100,-19,-100,-98,25,-48,-32,-6,39,74,-97,-27,-65,-66,75,-44,-67,-89,-33,-73,-88,21,-75,-32,-9,-41,10,47,-51,-57,-99,-4,89,-83,-61,-95,56,9,-95,-96,83,-99,-74,-100,-100,50,4,-77,-71,-16,-100,-100,-73,-99,-92,-93,-57,-35,-49,-54,-85,-93,-53,-73,-66,10,-83,-7,-79,56,-93,-24,-77,-74,-22,-100,77,-98,-72,-58,-4,78,82,-48,-65,-16,-1,-85,3,31,48,71,-25,-6,-20,-36,49,74,-67,-100,-56,-63,-89,4,79,-98,-91,69,-90,-10,-6,11,-41,26,65,-17,-100,-100,-29,-4,84,-95,-9,-92,-74,-82,-23,30,-7,-91,-97,40,-99,-100,-98,-33,-89,37,4,-86,9,-96,-1,-86,22,-77,-79,-96,55,67,-98,-44,61,79,30,58,-56,-55,-56,-91,-61,27,-3,15,-94,-59,-94,-28,-74,78,-90,33,-38,-27,46,-66,40,-83,-64,-100,14,2,50,-43,-92,-93,81,0,-98,35,51,-84,-53,-58,61,-82,59,-84,75,-37,-46,38,33,8,37,-85,-78,-87,76,-88,-39,-100,-62,-16,-95,41,-45,-65,7,-66,-95,-64,-94,52,23,-45,94,-100,29,-88,20,74,-20,-99,-89,-97,32,-53,10,-87,-37,-83,-12,3,-59,84,-82,63,18,-60,-100,59,46,-67,-4,-58,-100,-99,43,-100,-67,-92,-98,-57,-91,-100,84,14,-94,46,76,-99,-96,52,-95,-100,-93,-67,-72,2,-27,-29,0,-50,-7,7,-97,-3,44,-69,-69,-66,41,-89,-5,96,-44,-23,-82,94,-32,0,-93,14,-99,32,63,-97,-83,-100,-96,-89,-88,-99,-91,-2,-22,-86,-66,-97,-18,5,-88,-53,53,-99,-98,-45,-100,-89,99,-100,-66,21,-35,-98,29,9,-51,-62,-91,-95,-83,-98,-55,-21,65,59,-43,-99,-18,-90,-96,-92,-17,2,-95,3,-1,-33,40,-93,44,-32,63,-96,-43,-77,-64,-26,37,20,-95,-32,28,-28,63,-57,-80,-44,40,-99,-72,-17,-8,-99,-33,-90,4,-94,-41,7,72,-97,9,-92,-69,-70,45,76,-82,-32,50,-86,-94,-96,-9,31,-53,-71,8,-55,-62,-19,-98,13,-69,-92,-89,-53,-10,15,35,-59,98,40,40,-19,67,-99,3,33,-100,-98,-8,-7,-60,-57,63,-98,-80,-94,-99,-25,68,52,-99,-75,72,-1,-19,-95,-90,-73,-75,-93,-100,-82,-99,60,81,-72,-97,-3,14,-85,5,71,-100,51,-23,44,-22,-79,-100,-5,80,30,-90,12,-95,97,-35,-74,79,-98,-59,0,17,83,71,13,-45,-100,-50,15,-67,-74,-69,53,-34,6,-38,-81,-100,39,-92,-61,90,94,-65,84,-70,81,6,99,-93,-89,85,-28,57,-93,-89,-53,-53,-11,-31,-49,-21,1,28,-66,-27,61,13,68,-93,-60,-99,75,-97,-85,-100,-87,-40,-65,-97,-52,65,-95,-34,-93,54,-94,-26,46,-100,63,-33,70,-22,37,27,4,11,-53,-58,-18,-79,-100,-46,-94,-60,69,-4,79,63,60,31,-11,-34,64,-66,-35,-39,55,23,-79,-10,-73,-53,46,-69,-1,-85,35,-70,43,-73,14,-58,-95,-100,93,-89,46,-92,-79,31,-50,-15,78,-56,4,44,69,-4,-82,-70,-33,77,-54,18,-16,-94,-68,0,-73,-35,35,-100,16,-24,-93,-97,-100,22,-86,60,99,35,-91,-17,7,-96,75,-39,-98,70,-100,68,-92,-100,-17,-90,-100,-94,71,70,-3,-100,-87,-31,-32,-80,-90,40,-74,-84,-68,-99,-74,-100,-80,-90,-98,-92,-99,36,-56,49,-95,73,-3,-84,0,-97,-85,-44,-86,-96,-97,7,2,-17,-100,-71,-26,-24,14,-100,-23,30,-71,-17,-97,91,15,-93,-88,-95,85,-44,87,-38,-1,23,-21,-33,-43,-58,25,-85,-56,-93,-49,-45,-54,74,-30,-62,26,38,2,61,-30,29,73,-48,-98,89,22,-100,-68,90,-39,-93,-52,-18,-64,-96,-44,26,27,-61,55,-24,68,-4,47,-9,-92,-97,52,-22,-57,-95,-73,-5,-88,-14,16,-98,-100,-97,-99,-94,-93,-47,-10,-93,-77,23,-63,-16,-73,20,45,64,1,-63,30,-67,-68,-100,-34,-47,-59,81,-61,41,-86,46,-94,-23,-19,-80,-20,-91,-95,-19,-93,-36,-83,60,84,-70,-55,-61,-45,-100,55,28,-96,30,-50,-20,-85,51,-98,40,-18,9,-38,36,-30,-100,-5,-30,-100,-24,0,-14,-34,-52,-35,15,34,37,-84,76,-88,-40,-19,41,-27,-63,30,-100,99,23,-100,-2,77,-15,-100,-56,-96,-26,-40,-12,58,-100,-65,-80,-72,-77,7,-96,-81,-3,28,-23,-78,-1,-12,91,-1,-100,-43,76,-46,9,-38,73,-6,0,-88,-100,-78,-3,-26,-98,-90,-96,-9,-100,75,-61,33,-92,-91,-76,-17,-51,-96,-81,-27,14,-100,82,77,-53,11,-44,-42,84,-97,-91,-2,-33,2,-13,-58,-9,-99,24,-57,-98,-75,-26,21,-32,78,2,-93,-87,-72,-91,37,13,-30,-98,11,90,-85,-58,-61,-100,-91,-84,-6,-51,10,18,-89,35,-13,-78,-68,-98,4,89,-95,32,73,-47,62,-35,-37,65,-69,23,-12,32,22,-100,-80,11,-20,-100,-48,-25,-90,-34,-100,-60,-87,-35,-2,-70,-100,18,-27,-100,-100,73,-87,2,59,-28,72,-72,-77,-76,-29,-97,58,58,3,-92,75,-95,-37,-27,-87,-99,-27,21,55,-36,-100,-21,-89,28,17,47,-93,-72,-43,-89,28,32,-69,-90,-96,-82,-99,-67,-99,-99,-68,-94,-60,82,-75,-7,-96,-94,48,-90,-15,-71,-85,94,-87,-92,-96,49,-36,-98,-100,64,51,-100,57,-100,-49,36,-25,-100,75,-92,68,0,-23,-81,-99,59,-77,-26,-93,-18,-15,-99,-94,-100,-54,7,-96,-72,68,88,-92,-9,-85,-35,51,99,-83,-28,-97,-74,-87,-100,-80,90,-46,-57,-91,-1,-69,-31,-81,-52,-97,-99,2,-28,37,-35,-100,33,22,-73,-100,-99,11,-99,-96,3,41,-88,-100,-91,95,-100,-85,84,-63,-93,-23,-97,-96,86,-20,-76,-74,-95,4,10,-85,-75,-17,85,-17,-98,-94,66,-75,-100,74,-66,-65,-100,-77,-95,-79,-49,-67,-72,-15,-76,-88,-100,-91,-17,81,-18,31,28,16,28,-22,-70,-39,-50,-73,-45,-100,-88,-11,65,-100,-90,98,42,-94,-65,-94,-100,69,44,-40,-25,23,-6,-5,-89,-77,-21,-62,15,-95,45,-44,-98,-99,45,66,58,-97,-29,-100,-64,-15,41,-91,-87,-66,37,16,-93,-63,-78,50,-50,-4,1,-99,93,-76,-18,-71,59,-72,-78,21,24,70,-93,-92,-100,-9,-73,-88,-98,25,-75,-13,-97,-7,-96,-36,83,-98,30,-83,-28,-54,-100,-22,60,-69,-32,31,-92,-50,81,33,-37,26,15,-71,-95,-33,-27,-85,-99,-18,-66,-76,-91,-41,-37,-60,-73,95,-94,-84,-98,-91,-87,-25,-93,-57,-13,-100,-95,-96,29,-44,-29,-57,-62,-91,-97,-49,69,-59,-99,3,-43,-56,-98,74,-60,-99,-74,-22,-53,-99,-42,-85,-82,-91,72,96,-73,38,-81,-46,30,-85,-29,92,-47,16,-11,-82,0,21,2,-62,13,-68,-54,53,-67,-36,42,67,-83,-100,23,-74,-94,-65,81,-100,8,-90,-100,-1,-80,-96,-47,-98,17,-77,-98,-26,-28,-49,-99,60,-57,69,-63,-63,-44,-71,-100,-91,-69,-91,-79,22,-99,-91,-100,23,35,-93,-30,-85,-100,-43,-41,-96,8,-6,-91,15,-93,99,-58,74,-36,9,-84,58,65,-50,-94,-1,8,-95,15,74,-1,-98,-90,-100,-61,41,-32,-98,-97,43,-82,29,-82,-67,-76,67,93,29,-63,-66,25,-89,-54,-90,-65,28,-95,88,-34,84,-42,-99,62,16,-5,-75,-96,30,-75,-59,0,-29,-77,-49,-56,-17,37,-58,-35,-100,-98,20,-76,-58,12,32,13,8,45,58,73,-40,-100,-69,-65,-99,-67,-100,-46,45,60,-86,-76,-16,52,47,-63,-100,-40,-21,-96,33,-5,34,15,-76,-29,-78,-17,-91,-83,4,-89,-83,-30,-96,-100,-83,-58,-31,-34,9,58,27,-99,14,0,-73,49,55,60,-68,-94,-68,-89,16,-100,-87,92,-100,-61,25,-73,-56,-83,25,-68,-82,73,-43,-65,-47,-35,-75,-100,-73,-48,-77,-47,-63,-56,-36,41,-19,-71,99,11,-46,47,1,-90,-98,45,-100,-15,-53,-63,65,56,-90,-97,-55,-100,-99,87,-99,-25,-48,-93,-49,-86,-37,29,-84,-78,-57,60,-91,-73,-87,-45,-74,-85,-56,81,-99,-56,-80,72,-97,62,-2,-49,-79,86,-46,-10,-62,-82,-89,-81,-76,-100,56,-82,78,84,67,23,-5,-100,-93,-51,-84,-100,-12,-53,55,-85,39,-2,-100,80,-90,13,-100,-83,-45,-45,64,-88,-16,-41,-61,11,42,-31,-77,14,32,5,41,-98,-25,-15,-62,-87,-100,-73,66,-88,-37,-90,-78,-9,-48,15,51,-26,38,-100,-98,-73,14,-90,-12,20,-92,-100,-22,-67,69,85,-100,-22,-93,-18,-66,-93,-83,-60,52,-97,-81,6,-42,-20,-92,-94,46,28,-94,-62,-98,77,-41,9,-94,-99,-85,-33,87,-29,-81,-46,53,-76,-44,-51,-58,-100,-100,-38,-89,-77,-100,-33,-17,-85,85,-85,-100,89,-55,17,-96,-67,-82,-95,8,-99,-68,0,-50,-24,-100,-12,44,-54,78,-53,-1,-87,48,11,-94,-83,46,-100,-51,-89,-10,95,-37,-32,-92,-46,-68,-59,-92,-95,-91,-25,-9,43,-52,-84,71,-28,-98,-75,-48,-89,-12,-78,-54,36,3,-100,-32,98,-18,27,92}
{-84,-98,52,-98,-81,-97,-82,-97,-96,-72,-96,75,46,25,-99,56,-61,-29,-46,-74,-99,94,-15,-92,-97,-98,-99,-94,-53,-68,-10,-100,5,6,-50,-98,55,-98,-82,7,-21,65,-89,95,42,-48,-63,-97,-65,-72,95,-89,11,-62,4,-21,-37,-42,-47,-16,21,-95,-100,-27,-81,-14,-54,-57,-80,-95,11,18,73,-5,-81,-99,-89,83,-51,58,-79,-90,31,-86,-99,-95,-23,-35,31,88,-84,-93,-90,85,-23,-98,-36,-16,-78,-95,-34,-96,68,-5,-100,-79,-38,-1,-100,34,69,-82,-90,-55,36,-100,-86,-92,-7,-82,67,-77,58,-50,-94,-89,-44,-70,46,-69,-52,-9,-94,87,-63,-61,0,75,-91,-64,-57,-29,-100,-43,-61,-98,4,17,-92,-94,-62,88,-100,83,-94,-67,-99,91,-5,-82,90,-87,87,17,-86,90,27,-38,93,-95,-100,-86,-22,-82,-98,-95,4,-99,-80,-98,-100,-73,34,-80,-65,-97,-59,5,-100,78,-100,32,98,-93,-87,11,12,-20,-91,-55,3,-54,72,-98,-8,-73,-87,41,1,79,-99,-10,-96,52,-34,-20,19,-98,37,-76,-81,-84,-35,-91,-78,-100,-44,47,54,-75,-11,-98,-44,-8,-98,-54,-99,45,-100,-96,-7,-14,89,-91,-100,-94,-100,69,-7,-94,31,-23,-61,-78,-92,-8,-99,59,91,80,75,-20,-90,-2,75,-8,-98,-62,-94,51,-28,13,-57,-9,-73,64,-100,56,42,-71,-63,-96,-95,76,-86,-13,-93,91,-19,71,-40,-71,-88,-68,-19,41,11,-40,-61,65,76,-86,-76,31,-11,-79,-56,46,-45,-8,-46,-97,-100,70,-100,-27,-62,-72,-88,-44,-63,-87,29,-91,-67,-8,-99,44,0,22,-93,-98,-99,-33,-89,-36,-97,-74,17,69,-96,-26,-40,-99,-64,-58,-95,73,-100,0,48,-18,-97,-89,-98,-23,22,-65,-75,-79,-66,36,-100,-84,-77,-94,42,-86,-17,37,43,13,1,-34,-88,-93,-97,60,10,-27,-30,29,1,-100,53,55,-100,-39,-89,-18,-100,92,-64,45,-53,4,-100,7,-68,-82,58,-97,-63,-99,-22,-100,-12,81,53,80,-100,-83,-97,23,-57,-24,78,-36,-100,-15,-97,30,-95,-4,-7,29,-78,72,19,63,-86,-34,-15,-71,-16,-86,-48,-95,23,98,3,-29,-59,-52,4,-100,25,-61,-47,-100,-81,-61,-39,-61,-100,51,-95,-14,-71,-95,2,-88,-55,-96,-82,-100,-30,-99,-100,30,86,-98,-87,81,-93,-19,-99,61,-32,-100,28,-15,-100,6,33,99,-87,93,5,83,-61,-97,-11,-65,-14,-97,-58,-21,-99,24,-97,-88,-22,-64,-93,-63,-45,-57,-47,-92,-53,70,-76,2,-19,-87,-93,93,-100,-64,-78,-30,-49,94,7,-24,-95,37,98,97,4,-73,-96,38,-92,49,-99,-96,23,-28,-97,-26,-15,-87,-21,-77,4,-7,65,-78,38,-36,-70,35,-86,-36,-99,-89,-61,-98,-91,-50,-95,-96,-4,97,-81,37,-82,-28,-62,-59,-92,20,7,-100,60,-78,-4,-12,-73,-100,-100,-99,-69,-36,38,46,-100,37,-12,-100,-81,-2,-7,-46,-70,-52,-89,-95,-57,-50,-57,-85,66,79,-97,-98,-90,-59,-99,-76,-10,97,-87,-38,45,68,-9,5,-68,-84,-25,34,-98,-96,64,-100,94,63,-31,-74,24,-100,64,-40,-91,15,-40,-100,64,40,62,-100,-80,-96,-76,-88,-65,72,56,70,37,-87,30,45,81,-48,61,-15,9,-70,-89,-100,75,-99,14,-31,-100,-81,-10,-58,80,7,-79,87,-90,54,-90,-91,-84,-18,-21,-84,51,46,54,-94,-100,50,-65,-76,-100,-9,-38,-58,-100,-96,-100,-70,34,-59,-90,-62,92,-55,-29,16,84,-35,-36,-20,36,-74,53,-89,55,-34,-92,-99,-17,-76,-52,46,-90,-82,26,39,76,-100,-95,8,66,-72,-90,-48,-82,-4,-93,-34,-92,-42,60,-76,-51,-93,-73,-43,-73,-52,32,-100,-94,80,-97,1,22,-97,38,-94,12,-99,-46,-36,26,-70,-58,-82,-90,19,-92,60,-40,-97,66,6,96,26,46,-93,-46,-8,-60,19,29,-21,-59,-35,-20,-99,-99,82,-32,-43,-79,-35,-98,-100,-87,-87,-12,-35,-100,-63,-66,-100,-100,4,-26,-60,-39,19,-100,62,-100,-6,43,-18,61,14,21,-98,0,-10,-28,-88,6,-100,-99,-90,-50,-10,77,-68,-74,-83,-77,-96,-81,-94,73,-82,57,44,-98,-39,-93,-49,-94,-96,28,-100,-95,-48,-100,70,-86,-38,-95,-100,-83,-97,51,65,63,-90,-97,-68,-58,-100,-83,-57,-5,65,-63,5,50,43,-85,-96,75,-100,-94,-25,26,-73,-83,-46,55,-63,70,-35,-56,-9,-77,89,-89,-98,-97,-95,-89,-74,-40,-91,77,-100,-94,-63,16,-90,-72,54,-51,-100,5,-33,-99,-80,-49,90,-78,59,-100,-54,18,4,84,-90,-100,-100,-33,-69,-59,-85,-97,-55,-63,-35,91,77,-54,-100,7,-9,-10,76,-94,-84,-52,-44,0,-93,-96,-16,-72,-100,-95,-70,39,-62,3,-17,-100,-57,-59,40,-62,-100,-86,-100,-86,-10,83,-23,-73,57,-95,-54,13,-91,-73,92,-70,-66,11,-100,81,-90,-97,-28,-70,-100,79,13,-5,11,-21,-100,-91,39,25,44,-100,-92,-8,-94,96,-98,-86,47,-100,-100,-99,73,-94,-62,73,-100,-38,87,-38,55,56,-51,-97,-34,-56,-87,-95,38,85,-98,11,-82,-96,-88,-89,-45,-99,-79,46,96,60,60,-69,-8,29,-100,1,-100,-24,37,76,-64,-97,-66,63,-38,-100,-25,-100,-26,-64,-93,-15,-54,-28,71,-97,-30,-78,-82,-38,37,68,57,-100,-36,-88,-7,-83,55,-86,36,27,-65,-36,-93,-100,-82,-54,-95,-95,7,-59,66,-56,-33,-59,-94,41,-62,-93,-91,-89,78,33,81,-41,-92,-88,-50,-73,-63,-2,-40,-74,-35,-63,-55,-75,31,-27,-66,-99,-62,-100,-92,-54,-63,3,-33,-100,-69,41,-45,-5,-74,-85,49,-41,94,68,-60,-29,-86,25,-49,-53,79,-79,-29,-75,66,-88,8,-47,86,4,71,-61,-85,-32,-89,-74,-46,-89,-95,-30,-10,91,-43,65,39,12,22,-64,-85,68,10,42,-100,81,-69,-46,-100,-100,-91,-65,68,94,64,93,28,63,-99,52,-85,-37,50,7,-77,58,-38,-54,-93,20,13,-99,-88,-99,-5,-78,89,-98,-94,-85,-99,-98,64,-90,57,-89,-83,-89,-68,61,-79,-65,-55,29,40,-59,-78,29,99,70,-85,-100,-40,35,37,-91,-85,16,-85,76,-100,-100,15,-31,-96,-75,-78,32,-97,16,5,-96,-92,24,-62,-11,-19,-73,72,-98,-61,31,-35,-93,-48,-45,-24,51,-85,24,-52,-54,-88,-19,90,-2,-77,63,-2,-85,-94,-15,-60,39,78,-84,-59,-7,-81,-81,35,38,-82,-100,-37,-22,-36,-70,-26,80,74,-99,-82,-71,-90,3,-39,-32,25,-12,23,-100,82,88,-83,-96,98,-40,-57,-28,24,-41,-57,78,-79,-78,15,-58,81,92,38,58,24,7,53,59,-75,10,-91,-95,62,-73,-74,-100,-98,-74,-80,-99,-45,-33,95,-100,-50,-90,-13,51,-64,-83,73,-98,-97,-49,-88,92,31,94,-72,-95,-77,-100,28,-81,-30,-95,-100,-98,-100,88,-60,-70,-96,-100,-83,-89,-82,-98,-69,-84,1,-77,-31,77,-100,-79,75,86,11,-98,28,1,-5,83,1,-86,94,-74,-57,73,-51,-34,-90,18,63,58,50,-59,-35,-49,72,-95,20,-95,16,-92,-63,7,-62,57,5,-32,-100,-92,-49,35,-14,-84,-83,-66,-41,36,-100,94,54,-72,-57,-100,-100,-100,-24,-52,-96,-100,-88,-84,88,-89,19,89,-58,-93,-98,-35,-97,-58,-55,-69,-29,-35,-100,-94,-93,-46,62,-4,-35,-41,-10,-61,-100,-79,-80,-74,-96,-48,-31,99,-54,70,-100,-49,19,-99,-20,-45,79,-11,-97,-96,86,-66,-83,-73,-95,-91,-100,16,80,9,-92,-31,-100,-86,-100,-77,-100,-94,-98,-69,30,-77,31,-43,-78,-97,-4,-94,45,75,-69,-38,-97,-28,4,-78,-95,54,-37,89,63,27,-24,20,-29,20,-23,-39,-94,-51,-78,32,-60,16,-99,17,2,-100,-100,-10,50,-100,-83,-9,-96,-98,-98,-100,-87,45,-100,-91,-28,-67,-44,-99,-50,95,-100,-92,-84,-96,-62,-73,61,25,-15,-60,16,59,-46,-100,75,-71,-100,95,-17,92,5,-92,-66,-19,9,-95,20,28,-97,-74,-43,72,25,-100,-92,-36,-97,62,55,42,-98,-23,-55,-76,-77,11,-51,-79,-98,-56,-98,-51,4,-100,-55,92,-92,-98,-89,18,57,-35,7,-70,62,-96,-7,11,-12,-100,45,35,-95,-14,-94,-76,-85,48,-84,-18,-98,77,-74,-30,21,-3,-91,-94,-97,-93,-7,45,-35,-83,27,-100,-100,1,-51,-90,-97,-52,12,-100,98,-100,68,68,-75,98,-66,-87,-93,-20,-94,-46,-100,-57,6,-14,-74,-2,-11,37,-63,-36,28,49,52,-61,11,-60,-100,61,92,-42,88,-87,-98,-86,-3,44,-19,-82,-92,-100,-71,13,-87,61,-100,20,-84,24,81,-62,7,69,-98,-4,25,60,-57,-92,88,-64,-6,-86,-23,-76,-56,-95,-24,45,86,-78,99,81,83,-97,-88,-75,-100,66,-72,-76,88,-76,-63,-8,-38,-94,0,-90,-54,-47,51,-100,-91,-100,35,-96,-98,-54,93,-98,-62,50,43,55,-37,-78,-42,7,-51,16,-100,-95,-15,-69,-92,-47,65,50,-90,-96,-55,-32,-98,19,62,-71,-89,-94,-100,-98,36,-34,-93,-99,-84,-38,-88,-60,-85,-63,-49,68,-33,-86,-63,-100,-13,-87,-49,-26,-100,-97,-76,-96,-95,-55,-100,-14,-100,-4,-11,-100,-93,-59,20,65,-99,27,-66,84,-63,-22,-98,-9,20,-18,-47,-100,29,72,-88,-94,-34,44,23,84,-79,-43,-99,-30,45,52,55,-27,-88,69,1,-94,-52,-32,-100,52,-95,6,-96,-97,-94,-99,-63,-24,30,-100,3,-97,36,76,-97,-20,30,-100,-86,84,73,-69,-100,-82,-14,99,-83,-91,38,-67,-100,-97,-39,-96,-71,-63,-98,-74,31,-67,84,-89,-7,-100,-39,57,-61,-24,-100,-87,-87,-54,-19,-92,-34,-65,-96,22,-16,-37,-95,37,-94,-84,-57,-86,53,-62,-20,-32,-72,-96,63,67,6,-34,-15,-84,49,-43,-99,-100,-94,-100,-97,-47,-75,-87,-70,39,-100,86,-75,-79,73,-69,13,-7,-28,-59,99,57,-85,-86,-97,-63,-91,-23,23,-84,-92,-9,-4,8,36,-92,-77,-99,49,-64,-97,51,-45,-13,-79,-70,-18,-92,-11,-2,-78,-75,-99,-84,-35,96,-3,-75,-57,4,-87,-86,13,33,-99,-38,-91,-1,-98,15,-91,-52,-52,-5,-43,46,-33,33,-99,-48,-46,-100,15,48,-76,53,-100,-65,-91,-100,-95,-67,-93,51,-65,-89,-76,-26,-82,-24,-5,-93,-32,20,-23,-77,-95,-50,74,-78,-98,61,-26,90,46,-97,20,-95,-96,-98,-99,-83,-97,-41,55,-98,-100,-100,-100,-6,94,-64,-59,69,52,-56,-42,-33,-69,-84,-38,-65,-4,-33,-71,-85,-51,-29,-80,12,-61,14,88,1,-98,81,-64,76,88,-38,47,-99,-76,-55,29,-29,-32,-100,-90,-53,-22,59,-90,-72,-100,-30,50,96,-76,86,-69,-89,87,-95,-47,-8,-98,-82,-13,44,78,-70,31,3,-96,0,-69,-42,-100,-19,-100,-58,-47,-50,45,-13,-94,-91,-80,-100,90,-28,18,-77,-99,-57,-73,-99,5,-89,-89,64,-96,-94,-66,-46,-26,-39,-31,-57,-25,-86,-95,-76,-100,-39,-92,-53,-40,-27,-95,-89,-92,-99,-36,-82,-45,-17,-73,-97,61,8,-100,74,-38,-99,-85,-100,-77,-96,-96,-38,-7,-32,5,61,40,12,80,-17,-100,4,-96,-43,24,85,-13,-40,-24,-94,-100,-86,24,21,65,83,-38,-96,59,-95,-14,29,-95,-5,-89,-70,-17,-66,-16,-82,75,-31,-87,-53,22,-52,-91,75,-93,-41,47,-98,-69,-22,99,-93,-83,75,13,-88,-5,-37,-100,-21,-83,92,-93,-91,-96,-2,-86,-62,-12,16,41,-92,88,-100,55,-100,-59,94,-10,-97,10,-52,-100,30,-17,-1,-100,-100,-82,7,53,-42,-91,-41,8,-97,-83,-89,-43,-95,-99,-93,-82,-92,88,-66,-61,-67,62,-94,-61,-90,-98,-97,32,31,-10,-93,-99,-84,-97,12,-51,-66,-84,-45,-100,61,57,-28,-21,-84,-41,-80,84,18,-43,-48,-62,21,-45,-14,27,-85,-28,45,76,-69,99,47,-18,-81,-96,-97,-71,-38,-48,-75,-100,-86,-39,-97,-10,-25,-94,-100,-96,-85,-77,-87,-95,53,-67,-97,-98,-100,-93,-85,-38,-17,-100,-63,-7,62,68,62,-10,-72,12,-84,10,-24,-99,61,-49,-50,-84,-92,-12,-17,-10,-68,32,-38,-37,-28,-77,-49,-10,71,80,-19,-87,46,-79,-87,58,-100,68,-79,-95,-96,-40,20,-99,32,18,-25,-95,58,-44,81,-83,-49,25,-63,91,6,90,-97,62,98,-94,45,-84,-54,-92,-80,86,99,-99,-98,73,-71,61,-97,32,-98,-93,63,-98,-43,69,-72,-7}
{95,67,16,-91,42,73,-19,85,64,100,-23,-46,40,99,83,85,18,-18,98,95,82,93,-93,90,100,94,-53,2,-56,71,78,69,46,1,100,-21,85,86,32,53,93,88,-38,49,-54,3,63,89,79,-10,98,97,25,-75,97,60,16,28,99,89,79,78,-74,-18,-91,29,90,81,38,36,90,61,-49,-38,65,-25,-40,-24,99,-39,88,13,94,5,93,95,-8,84,91,-40,-82,28,48,-3,34,-32,92,89,38,80,-20,78,70,35,69,-51,70,18,41,48,-75,96,98,99,-63,100,97,99,68,97,59,97,18,93,96,100,-66,67,70,19,39,17,-7,97,62,87,93,70,26,100,78,100,17,92,-81,9,-47,29,-64,-89,42,100,87,98,63,88,98,46,-97,3,9,41,94,-44,40,53,57,32,66,32,-54,-21,60,91,47,-80,90,-26,90,89,100,81,-84,96,13,24,94,81,-12,25,11,-21,-88,39,97,-99,-30,1,57,79,51,92,100,-45,100,100,26,31,86,96,-34,-15,-31,89,-4,95,-92,-14,99,100,46,6,87,26,-54,50,80,-15,-71,-62,-39,96,-97,83,72,33,88,46,-94,97,-22,-38,93,43,92,96,90,78,87,91,22,100,-17,-97,56,95,-92,100,-39,-7,-40,87,99,96,29,100,91,69,-61,9,86,96,-34,34,96,49,85,15,31,49,-71,-29,-82,32,-33,-64,42,-65,84,17,-53,-99,-49,35,-25,46,57,97,-37,9,-84,97,63,-44,-32,89,70,73,12,8,93,53,-9,83,85,45,78,74,10,72,100,53,96,-88,-49,100,-58,38,-13,-76,37,-68,15,82,-31,71,-95,44,49,100,81,-62,32,20,-83,58,13,50,-55,32,13,94,42,100,71,58,20,94,100,-70,65,66,92,99,28,-1,68,77,-79,100,98,86,47,70,41,-14,-16,70,100,-14,-18,100,-44,98,12,23,92,-99,41,78,48,99,83,-76,20,84,81,27,66,30,38,38,77,-17,92,46,62,95,-76,100,68,59,98,-9,88,27,99,91,95,66,59,-98,-75,100,76,48,10,23,-49,-17,100,82,100,78,54,91,61,98,-40,99,-29,100,58,94,91,49,-92,69,94,6,100,13,-38,16,-4,74,84,94,89,76,-56,27,57,89,71,99,-91,-40,91,-43,78,93,72,-34,91,-6,99,-64,-64,65,-57,100,47,-59,95,-35,60,74,82,-16,-2,85,-12,44,90,82,-50,-48,33,100,65,-63,12,36,-32,-24,99,100,83,99,35,100,99,92,-19,-22,25,78,28,28,94,-3,31,73,100,48,11,76,100,79,-33,62,94,-58,100,2,99,100,100,23,98,100,76,85,-97,0,-25,98,-54,-47,43,23,38,70,79,13,88,-68,-21,93,-1,90,15,-69,76,-87,-26,-67,-53,-87,73,-36,-23,99,-43,-38,-70,-77,39,38,72,15,-1,-68,53,66,51,70,-10,20,91,-82,59,93,56,89,89,86,97,-78,-33,24,100,-37,99,57,34,13,85,53,21,-42,22,19,95,94,88,68,96,70,-89,71,35,43,99,14,90,22,-2,40,78,-29,-47,-2,100,44,88,48,-52,81,-31,-10,-94,-92,-52,21,90,-21,69,-57,54,4,-71,81,-80,55,20,93,-73,-25,66,99,100,-57,-90,74,45,-47,-80,4,100,80,100,-25,99,-58,100,-66,48,57,100,52,16,54,-40,-43,1,-85,72,-70,83,99,86,-48,-53,80,99,-35,92,88,0,96,-8,-42,96,46,97,91,-13,-90,97,70,56,70,-85,95,96,-22,47,97,88,77,-3,-81,81,-58,83,33,91,33,85,61,62,66,-6,21,-14,100,-9,65,-72,35,97,79,-37,-84,90,-25,4,25,14,24,58,87,60,9,14,-84,9,76,-84,15,76,56,83,77,3,96,82,98,7,100,89,-93,82,97,84,-8,69,1,91,97,45,77,80,99,100,86,-23,53,12,29,97,96,7,-74,-9,74,59,100,42,70,-88,66,99,40,99,52,84,30,63,69,100,87,60,39,68,85,100,-4,99,7,-24,-90,12,100,-3,48,-62,-73,78,-12,93,93,94,85,-20,60,-16,-68,99,94,61,13,-60,96,4,96,-52,95,-83,67,39,-79,84,68,-51,76,-40,-3,97,89,-55,57,100,100,-97,100,-36,-3,100,-79,25,27,100,-97,55,41,-23,96,98,-44,71,-37,-77,44,90,-68,-21,87,77,-73,-46,94,-4,83,-93,93,99,100,4,39,-16,15,60,74,98,92,45,81,100,32,32,40,48,44,-61,61,-45,-27,-50,-39,-11,22,18,30,-13,11,-39,12,100,97,20,-32,6,76,94,47,70,78,-10,79,90,54,-82,100,-28,80,39,29,96,-64,-84,-22,89,-69,39,9,40,100,-15,93,-88,64,-44,-30,-84,28,-71,95,-68,-17,5,35,-60,96,60,74,-66,-4,84,92,-8,82,64,52,58,80,1,-14,100,-2,66,2,14,53,-58,80,56,63,96,99,89,23,100,59,76,-18,56,-83,-63,14,-5,61,-79,99,31,75,46,-5,97,91,80,95,96,-47,-7,30,83,-64,33,-34,-1,14,100,68,-51,70,76,96,60,-13,8,68,100,74,94,37,67,76,89,-2,-34,-7,100,78,44,100,35,78,52,69,98,66,95,96,93,-57,3,9,-51,-17,-92,-16,9,-29,57,100,55,53,65,-31,22,100,98,-8,54,80,100,84,15,64,-76,7,35,44,83,100,36,89,98,39,98,98,95,-28,-30,0,100,-74,66,-18,-59,48,4,70,92,98,30,76,100,-73,97,-18,47,-15,27,70,-86,19,-7,62,97,37,-39,95,86,54,15,10,26,22,95,82,87,-91,67,65,100,92,30,-54,100,-90,24,-33,94,-94,-12,35,98,79,66,-49,15,97,-38,90,50,58,-63,-69,90,14,-47,100,-32,100,-90,-94,60,-93,83,99,73,99,82,98,-50,23,70,-18,98,69,66,89,96,69,-18,-96,90,-77,100,46,49,4,93,62,28,25,79,6,86,42,56,63,45,6,89,98,28,29,-91,-16,89,11,-11,-5,23,78,93,-13,87,64,73,-48,52,-78,88,-63,21,-39,-61,27,94,-30,47,-7,51,76,-64,84,-74,37,46,16,36,97,-99,79,-31,99,-34,100,47,5,100,78,16,-29,22,-33,84,83,28,78,73,50,75,94,-44,70,100,57,35,96,83,78,-86,-48,-93,41,14,54,99,75,-47,100,44,82,97,-16,-22,40,-96,20,98,89,-1,74,21,-43,86,-11,-2,77,87,56,-37,89,67,86,27,90,100,100,-71,87,90,-57,32,85,77,40,25,-40,95,78,77,-76,100,27,100,79,84,98,26,76,-81,-91,98,79,43,61,-99,-8,32,-45,-25,27,-91,82,-32,72,24,39,80,70,74,-32,89,97,2,18,94,15,87,79,20,-7,94,66,100,86,60,-70,-61,79,95,97,-87,96,45,91,99,100,77,60,52,-14,-11,8,-10,39,42,100,96,52,27,-74,-2,-46,-8,98,85,-96,-16,36,85,-23,100,23,99,81,93,38,-61,-88,94,97,54,68,-2,76,99,87,-31,-8,-99,47,79,98,-51,-25,48,35,100,73,-66,-20,91,81,-40,35,-72,92,80,-22,98,81,38,-44,-91,98,-51,-32,91,97,31,44,100,98,0,-24,46,96,4,97,72,91,4,-63,100,9,89,-13,62,-89,16,24,-49,96,47,27,-48,46,95,-4,4,17,75,-19,66,81,78,-91,100,98,96,97,-26,47,99,-86,-9,35,63,-36,100,84,-65,100,-17,97,16,-36,81,99,77,10,39,-61,-30,80,93,-58,80,61,4,-46,100,100,-18,-66,87,40,53,83,64,-69,96,95,-1,37,76,45,62,87,96,99,23,-27,20,-43,-85,-25,74,-47,-22,39,57,-97,-21,94,-39,66,-83,100,18,31,-33,52,-81,100,19,7,-19,80,-4,98,66,100,28,40,99,-36,55,-99,79,98,25,69,28,49,98,84,-22,65,-81,-72,-33,-35,-4,69,53,-81,23,11,-6,-8,49,57,86,93,57,-17,100,80,90,8,40,81,60,96,99,-19,47,10,97,-64,-67,-7,87,76,100,89,-56,87,37,42,11,-58,-87,-81,100,20,72,-97,-26,-85,94,59,57,98,-62,-9,65,-62,-73,52,-56,-74,61,1,51,95,2,-86,-65,84,95,81,90,-19,-3,24,27,96,93,100,-46,-34,70,100,19,37,100,14,-31,81,40,89,65,72,74,98,91,-19,-22,2,-19,65,99,50,-73,63,78,99,-82,13,77,-4,33,-55,62,-18,95,-6,87,97,76,43,100,44,-32,-57,85,5,71,78,100,-41,97,65,82,-51,98,63,97,100,99,-50,100,99,-61,-40,-76,94,74,11,-91,62,12,77,-33,95,88,95,70,86,21,99,69,71,62,-77,9,65,96,42,96,23,100,100,-15,43,82,99,67,98,16,32,93,23,-1,100,-65,77,-14,73,47,-11,-52,-54,90,40,72,80,-47,17,-48,2,47,-11,74,87,-15,51,98,-92,79,-55,-3,90,-20,87,-43,-69,19,85,92,-81,64,85,92,91,93,33,-10,15,67,100,92,91,-41,-56,42,42,95,93,-91,71,51,5,-83,29,83,15,96,68,-52,-52,51,42,71,7,100,87,97,-47,63,100,96,-12,88,93,99,16,-96,15,99,-7,16,70,29,64,99,-33,-89,95,-83,-25,69,-44,100,91,-68,96,58,85,85,88,-8,91,-9,-21,76,88,48,68,99,-59,100,73,-83,75,100,33,97,77,-71,-57,-10,-10,37,-80,38,100,-71,94,-46,84,-7,10,-56,92,21,100,32,51,100,95,38,94,43,98,99,96,100,57,59,74,12,63,97,-35,94,48,-59,31,-77,-5,-33,-61,95,-83,-33,50,99,-52,60,8,15,-24,100,59,85,50,100,6,-78,3,79,55,-35,96,90,77,12,91,71,85,5,7,87,49,-15,-73,89,83,24,-77,-33,13,83,82,-43,90,100,4,47,9,-41,-62,57,30,95,66,93,68,63,96,84,86,-61,43,-27,18,61,-16,-60,100,43,100,98,97,-24,21,77,54,90,-11,-2,21,75,8,100,97,-24,80,99,88,39,100,54,98,76,81,71,24,79,42,98,95,-51,47,-4,43,96,58,-98,-19,36,93,-19,96,-19,-36,11,70,12,51,-40,-40,20,-26,57,61,95,-16,95,63,64,97,43,83,61,34,-23,84,97,67,98,35,-91,-45,95,71,80,-26,98,82,78,87,0,17,-86,76,36,-87,73,-21,9,-54,24,88,83,70,86,92,100,92,-62,66,15,-50,-26,-55,45,-56,-31,66,18,88,-71,-92,-10,-19,-71,31,62,4,-1,98,98,-82,-36,-35,97,80,96,99,100,89,93,68,72,100,94,99,32,47,65,-43,97,81,75,3,20,89,23,6,-12,68,7,86,100,51,48,35,100,3,50,-33,27,70,52,93,97,-94,-18,51,55,-24,-32,-35,96,18,-55,100,-19,31,-24,22,94,69,-37,-5,76,100,73,-41,100,-61,36,50,38,-74,38,26,54,69,11,97,90,77,61,99,74,96,-17,97,31,5,-71,-86,14,58,80,75,97,100,85,2,96,75,9,66,32,-47,91,-82,38,58,38,97,49,-4,95,98,86,60,79,66,99,-34,4,-56,-23,98,-3,98,80,96,50,84,-10,98,-70,100,55,37,70,26,96,15,95,100,22,73,100,99,100,-80,96,-22,-3,-97,33,60,25,99,99,-77,91,-64,94,70,99,28,100,91,39,-34,77,-83,100,-53,-66,93,-33,-68,60,96,22,75,34,-8,74,43,-15,97,30,100,94,100,76,18,100,82,100,3,77,-56,72,-86,92,45,7,-29,-49,-70,0,10,71,-10,73,82,60,66,-4,-64,86,17,-25,34,95,98,19,30,93,-59,93,100,59,42,8,76,-17,68,-55,54,-63,90,98,69,99,53,58,86,99,100,-46,-20,69,-49,71,70,87,78,-18,83,8,-85,97,60,41,66,40,100,56,-58,100,92,96,86,-90,81,-31,100,-76,-12,31,79,100,76,81,91,75,-53,-55,100,-31,90,28,-39,-57,-83,69,16,-58,-21,4,70,39,28,25,-60,-1,74,-93,81,-41,4,93,-7,16,-76,-91,97,49,-13,-67,100,98,6,-95,94,-43,21,57,-36,99,95,85,36,95,-97,93,59,18,-10,54,100,24,96,96,91,-41,-27}
{83,-51,19,98,87,100,67,-74,-1,97,3,-84,86,4,100,98,85,-19,99,100,-14,-42,-20,23,89,77,-25,94,20,-21,-15,93,51,46,100,34,14,96,89,34,-1,23,-17,70,-84,94,98,39,-97,12,-57,57,13,-40,-32,92,100,-32,-47,99,100,99,44,-2,-21,84,85,-58,-2,97,45,91,60,-75,46,97,90,22,-72,66,87,97,100,67,75,22,69,-89,-5,5,57,-2,78,86,82,-56,92,100,100,42,90,70,49,79,25,28,72,95,66,84,-29,-11,-70,66,83,45,75,18,24,95,79,82,-30,86,100,96,39,-76,-57,100,69,-30,0,70,-37,70,100,59,-7,35,-37,99,-15,88,13,32,-14,-8,68,27,-21,24,-35,-36,83,98,-99,51,13,-76,82,-91,64,-85,91,65,-75,81,99,-97,89,100,64,31,-6,-72,-85,98,-29,100,-50,-42,70,6,-59,91,56,-88,3,-15,-3,99,100,73,-6,-18,68,52,-1,-98,-19,-79,75,-19,22,83,-94,100,65,-35,44,15,54,-44,67,33,100,59,96,68,-20,-43,25,85,41,-66,48,92,-23,43,76,81,-30,96,97,82,59,99,-45,70,88,100,80,81,91,99,-24,-40,-25,-90,-48,69,-7,82,78,-85,53,75,-26,63,79,-31,57,95,71,35,91,100,-58,100,23,32,100,-58,4,-68,55,100,93,98,38,65,53,79,-71,10,43,92,-77,47,-53,100,89,22,46,-78,66,-15,92,27,54,85,-18,-70,-39,92,68,69,44,29,100,97,94,32,95,98,-34,99,75,-95,96,39,100,25,100,88,66,99,100,79,98,-34,90,64,73,87,84,95,-28,-23,94,60,26,100,95,20,49,19,57,91,51,-37,69,49,20,90,-9,99,73,100,96,-42,94,31,13,-82,-38,92,81,33,66,28,4,100,-50,-54,-96,36,-68,63,90,84,43,34,98,100,99,5,12,94,99,76,11,-71,-71,86,88,-90,-22,24,-18,88,-31,63,-91,9,-58,82,14,-78,79,35,-35,42,54,54,74,39,34,22,-86,-15,99,100,55,36,64,92,-90,89,81,88,48,11,8,-36,100,32,100,13,37,-42,99,-46,54,-27,29,40,74,79,10,100,-36,79,75,71,-94,-8,-41,51,90,71,69,-4,13,-50,92,75,50,-8,96,91,37,99,98,90,48,72,53,99,51,94,80,-46,-6,-8,87,45,-36,92,92,98,-59,66,34,-12,98,27,18,100,-41,45,98,9,80,12,79,62,-93,94,72,40,70,95,100,86,100,5,23,-55,-33,14,58,100,-10,54,-69,41,77,-16,94,-15,86,-48,36,-83,-46,43,86,-89,-15,99,-3,28,78,12,57,28,12,72,97,71,95,100,-12,99,100,-43,92,40,75,-99,100,53,85,57,-58,94,65,50,100,91,0,37,-92,61,-66,33,-93,-92,71,61,-78,95,-69,100,-84,80,75,96,74,72,100,19,-18,100,76,61,48,-82,39,54,44,-52,93,42,-7,69,-67,-80,-19,100,-50,96,22,64,4,94,54,61,-28,-60,94,100,23,-44,-90,57,-30,99,72,-53,65,-82,13,23,-41,42,-81,-5,55,10,-96,-35,71,-43,92,27,26,24,86,-64,87,92,91,88,52,100,100,-87,100,-75,-5,83,68,9,92,100,54,100,30,4,57,39,85,94,38,32,25,-6,48,11,98,55,99,-35,100,65,95,57,89,72,-72,99,100,79,-68,14,23,-52,62,99,67,-70,97,32,61,99,63,97,85,100,66,77,92,99,-66,78,34,79,25,90,95,54,52,-11,57,97,47,74,88,93,-90,94,100,-76,100,56,54,67,-11,98,100,100,89,94,-48,-21,-41,6,-87,64,-6,77,84,82,-44,100,100,72,91,93,3,72,99,63,90,100,97,68,-15,-98,44,60,96,89,-5,73,20,97,-5,-79,77,81,96,94,-9,-5,72,96,9,100,100,94,50,-30,69,-43,36,90,94,99,49,-18,-50,100,-74,99,3,100,40,1,-40,87,98,69,92,98,48,75,97,59,98,48,-88,-92,100,96,45,100,95,-29,58,100,43,85,-86,-5,97,97,57,-66,16,-45,0,96,78,-50,83,68,-12,21,40,90,98,28,-44,99,-17,-9,57,100,-12,4,33,100,91,67,60,65,-59,93,36,99,-27,-22,88,-76,46,-54,83,70,75,96,78,65,100,80,-51,91,61,90,71,68,100,72,13,98,-3,70,-72,28,-78,70,-4,94,4,-43,98,31,55,100,65,-51,-44,82,5,2,43,48,99,93,100,39,32,-5,90,-83,-6,87,62,100,-21,-84,-64,44,100,26,94,99,79,22,47,-82,94,-10,58,97,5,-17,25,-53,87,-8,77,100,-14,99,-54,57,74,-87,-15,100,92,77,-83,-20,62,88,-8,100,98,65,-74,50,10,-77,54,69,-96,-65,-42,87,-79,-27,49,-75,58,-88,-77,56,33,15,100,97,43,-75,5,46,61,90,78,9,100,12,9,5,97,38,-47,100,-9,-37,-56,97,-36,-84,98,-61,-55,53,99,-52,-95,60,-16,30,-25,-1,86,45,100,100,66,-71,61,96,84,83,17,87,100,36,-17,8,89,71,85,94,100,99,-26,27,84,-93,93,90,97,-8,57,99,-25,81,-87,-30,93,-93,-45,-7,99,48,90,-80,99,91,100,69,88,78,90,-17,94,88,-35,-53,31,-50,67,-55,15,75,30,-67,-68,-23,98,100,91,90,100,29,11,-64,100,15,100,-35,96,89,73,-85,90,38,-59,96,-67,89,89,-61,69,-48,90,61,100,35,-14,96,87,72,99,91,98,-11,51,22,-92,6,70,89,21,25,14,59,-22,64,96,89,99,92,-89,28,32,-80,80,96,100,54,-99,100,100,34,27,100,-20,-14,-76,-40,76,100,95,-93,-8,97,47,-79,-73,-89,83,32,61,95,36,-2,57,85,67,100,99,-17,85,-22,99,100,-71,-27,100,-18,67,64,-91,99,-32,100,100,-56,-9,39,99,51,-92,100,77,99,8,47,89,22,-20,27,-37,94,-41,77,20,87,92,66,-90,-8,-37,-87,63,74,17,100,91,99,-2,25,97,92,83,21,-82,87,-68,67,-6,-70,64,-59,52,84,73,-55,100,-27,81,-1,100,-70,82,-60,37,-59,64,45,3,-23,-91,91,0,-2,94,86,-90,31,97,-10,50,100,78,28,67,-70,95,100,-60,89,-68,12,92,17,99,-92,87,61,92,24,99,-97,-72,-82,-46,1,99,17,24,-41,100,-51,85,-49,-64,88,-25,-40,50,63,97,24,-12,-86,-2,84,-21,100,55,87,62,-46,49,-84,-48,-79,-30,-74,-53,67,-44,82,-69,49,35,58,-5,8,-32,10,89,-95,40,-86,97,-34,-55,48,2,-12,47,-71,81,82,88,-11,92,99,99,62,100,36,-53,11,-46,86,31,-5,51,-19,-59,98,-14,96,55,94,-23,-89,89,-29,8,96,44,38,74,-69,-7,100,100,33,-35,-99,100,94,-60,97,-65,42,73,99,84,61,89,77,100,-38,-15,98,-42,100,-60,94,-72,-17,83,94,80,97,7,94,-37,10,73,-45,100,85,99,-18,-10,51,94,37,100,-49,7,-5,100,-54,-81,-57,96,-84,96,93,85,50,89,73,93,-6,43,47,58,5,98,11,-2,100,-27,93,61,54,93,100,98,-81,2,-4,79,12,-22,49,-30,-78,80,92,34,46,0,93,24,-77,97,-81,55,83,41,-14,56,100,96,71,35,40,81,-28,29,99,-5,98,100,100,-46,2,-72,72,-75,-47,65,56,52,78,50,-31,21,-3,34,-93,24,44,-66,78,19,-34,53,82,71,85,93,96,3,75,-90,83,25,100,-2,95,100,-32,99,-72,33,50,-29,-26,-1,53,71,-54,80,90,67,-63,89,-47,-66,-81,37,98,-59,19,-52,69,-31,-51,40,98,0,84,-21,-21,1,99,92,99,8,24,-89,19,61,-2,49,-55,100,97,38,75,-16,10,-86,65,29,87,-50,55,-88,8,15,65,77,29,72,-6,-6,-7,99,100,-33,70,23,-44,54,98,-93,46,-38,100,69,40,93,96,37,79,95,26,-83,71,71,96,97,-87,-8,-33,97,64,28,67,-99,96,100,-77,69,-56,-64,98,-42,14,-97,91,66,96,-75,67,80,-10,29,94,18,-55,21,79,76,65,1,-59,-41,96,-6,-60,60,93,98,59,-10,12,35,-43,100,-90,-13,76,93,-9,-45,-67,26,72,50,41,63,72,79,84,100,53,99,50,68,9,20,-65,-29,-41,-76,81,87,34,-16,1,89,79,94,-8,63,69,-14,-48,-39,100,-44,-64,-68,-50,-13,-4,-50,60,91,-46,6,31,61,100,51,61,-31,94,77,100,56,57,-54,-68,74,42,64,42,54,-18,78,97,-69,-17,100,97,-8,-57,-54,100,-24,-9,22,1,44,-71,37,93,100,68,97,88,-59,-51,48,-27,-37,49,-45,99,92,81,41,49,41,-78,8,97,-19,3,-8,29,-39,-34,25,-48,50,-23,65,43,-46,32,4,72,94,75,68,35,93,-45,-3,-25,100,72,74,70,36,-25,62,-7,65,97,-20,91,100,94,99,-61,73,100,-54,-40,69,60,64,-14,61,99,77,77,99,58,24,-60,9,68,-32,-5,35,6,4,18,-70,-51,48,40,90,99,64,-67,-96,87,69,87,95,-81,-16,55,100,88,-4,-84,86,84,91,-91,-31,-79,-79,4,-44,-13,-61,40,99,94,79,47,86,98,100,-15,-15,60,17,-73,35,19,100,93,-84,54,-64,57,96,100,-98,99,98,46,-89,54,17,-44,97,26,72,100,63,58,-80,78,9,-21,36,67,90,75,-26,90,-40,90,-29,4,-21,-34,84,100,90,97,-73,15,12,81,29,-26,-72,99,68,39,99,61,69,-72,92,-32,-87,56,-9,100,-54,46,97,-25,37,99,32,-46,58,32,88,61,96,91,-96,-6,51,-47,86,77,64,34,99,-54,41,-88,80,59,16,60,100,58,99,62,92,19,-98,70,100,50,-6,100,-62,-5,94,100,100,98,90,54,-79,-75,82,31,79,78,-74,59,3,47,99,-41,16,98,51,64,48,-30,99,72,37,88,-53,-25,82,97,80,25,98,55,100,86,99,96,28,-47,-98,17,-13,26,70,-35,38,86,-25,-91,-41,100,-29,-3,-45,16,100,-51,100,100,-40,26,80,73,93,57,-55,92,-73,21,100,-31,33,87,97,66,66,95,90,94,96,90,23,-49,27,57,86,24,46,73,-15,100,71,26,95,-28,43,8,70,96,-79,82,-54,12,66,-30,17,63,21,38,6,-35,90,100,60,57,-49,73,31,-24,84,91,-52,63,-26,-55,92,95,37,95,28,34,99,27,90,78,71,-83,96,-30,-41,-20,31,68,-73,0,18,-67,-64,-37,-40,86,85,-34,93,-73,11,25,66,88,100,93,83,44,82,-54,-24,36,-46,49,-21,27,95,100,21,38,89,87,100,81,32,81,42,46,24,93,100,82,82,-34,-90,56,57,82,55,-53,59,99,71,82,-66,-3,89,79,13,100,1,99,82,-54,86,12,-2,-7,-12,69,58,-92,98,53,-89,-82,98,92,7,28,100,-18,87,5,29,75,-26,-66,74,2,95,92,73,-28,12,-67,-18,-85,-19,-86,83,72,100,17,-28,100,73,-21,96,77,-35,89,-27,68,13,-77,20,87,23,82,-49,-13,64,94,42,-54,-28,100,-2,32,-21,9,83,98,97,-74,59,-16,71,52,-32,97,66,91,7,-89,79,92,59,63,78,99,68,99,56,37,66,94,-63,33,4,-47,47,72,-59,98,69,29,98,9,99,99,-37,90,-27,63,90,-68,53,1,96,37,-70,-40,-49,71,92,-65,6,-93,-52,83,-43,-82,-73,-8,86,-56,57,75,74,96,-67,100,-2,100,-14,-68,87,69,-92,62,36,90,-46,-90,-52,82,85,-95,-86,-97,26,94,91,-85,-36,97,-71,99,-52,98,33,81,85,100,-45,74,63,68,-71,100,39,73,92,-33,-34,-7,24,67,90,86,52,58,46,27,78,86,-19,58,97,99,64,64,86,-18,94,94,-34,100,58,100,-53,-53,67,-48,80,25,14,94,-45,40,-25,6,100,6,82,-38,99,96,82,91,-10,-3,-31,90,-15,53,88,48,-74,91,77,28,-12,19,-99,76,77,88,34,32,92,76,35,27,91,3,-85,42,-32,23,81,-24,96,84,71,-13,98,-81,100,75,99,40,96,61,-62,93}
{100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100}
Returns: 4.98145307765E10
{41,-53,-90,-1,-92,82,-87,70,-26,-89,-91,-100,42,-80,35,-100,-90,-4,-17,-87,-38,-95,-95,-90,-76,89,-57,28,-30,-80,3,-19,57,-99,-98,-63,-87,39,86,30,-90,13,76,-8,-97,-59,9,-50,-86,-6,-98,-87,-48,-93,-75,-29,-16,83,-92,41,92,-100,14,29,-100,90,-100,-34,-60,-82,-77,-61,-100,-99,-36,-96,-97,-6,-88,-42,-93,58,-95,-75,-76,-52,-92,57,-83,58,-9,-73,72,-41,-85,94,-35,33,-78,-78,25,-83,-99,55,58,63,-66,45,97,-2,-81,-75,66,-99,-8,-55,-98,-21,-7,-100,-6,-38,-29,-70,64,27,-41,-96,-83,-50,-100,23,5,-19,35,-26,-56,0,93,-19,48,-32,-98,12,-85,-62,-95,77,67,-33,79,-65,-74,51,-100,-36,-100,56,-4,-17,-88,39,-19,-87,-81,-59,-54,-98,16,8,-95,-38,89,-59,-96,86,-40,45,32,-49,57,5,-86,-78,-89,-57,-72,-39,0,-91,-59,-19,27,-62,-68,-100,0,-2,8,-12,88,-89,-2,24,56,-70,-18,28,-100,-52,32,-26,-96,-100,-93,-99,-99,-31,-98,-30,-42,-100,-97,57,70,89,-54,-100,44,-100,45,-76,-20,97,34,36,-100,-38,-100,83,98,-27,18,56,-94,-2,84,42,-80,-90,-66,-81,-61,-78,33,-2,22,-42,67,-87,-63,70,-6,-70,94,-100,-89,80,-69,-18,73,-13,78,-32,-48,71,-59,-49,-97,-47,58,-57,-25,32,-99,-16,51,-94,-48,-69,-100,92,-98,66,-100,-10,-38,-19,-79,68,3,-56,-97,-49,71,-86,-99,-81,-94,-96,-45,67,-25,-98,93,99,-54,-41,-19,-7,-86,50,-92,-72,87,-83,90,-42,-99,-26,-38,68,-34,77,-100,-37,-86,-46,86,40,-59,-89,-69,-94,-19,-40,45,-97,75,-100,-62,-31,-43,-43,-60,-52,-94,73,-100,40,-48,9,-94,16,-100,-95,-95,11,-48,-100,-13,-100,-35,57,31,-63,-96,71,63,-4,-95,-59,20,-88,-5,-7,40,-78,-100,-82,19,-91,-42,-34,-92,-77,-89,49,-98,-68,-39,-83,-73,-100,-27,-79,-79,6,-66,-61,9,-65,-10,-77,31,-91,19,86,8,-84,-97,66,-62,-13,-100,-69,-43,-78,11,-100,-34,-94,-98,-98,-100,-65,-89,73,60,-93,85,-100,0,-15,-60,43,-99,15,-36,-74,-56,2,18,33,-86,-83,-98,-51,-55,-97,-53,46,-5,-97,-78,90,-37,-47,46,-64,-100,-58,-98,-93,88,63,36,-92,-45,-37,57,-77,-92,57,3,-49,-69,-65,91,-20,-73,-99,-62,33,-10,-99,44,72,-69,-100,53,-77,-89,-80,2,-96,29,-7,-25,-43,-27,4,-96,-82,-100,-99,-93,95,39,35,-37,37,-34,58,-72,-96,-14,-94,31,-17,-93,-1,-80,7,-21,-8,-98,-92,-93,-34,-43,40,50,87,-97,-85,-59,-100,98,-98,24,-84,88,-81,-16,-78,50,-57,22,53,-69,7,52,-75,-11,-96,49,-9,-69,-74,-25,-35,43,-81,-17,-95,-100,38,57,-66,-100,-94,-94,-63,-67,33,22,-89,-35,-12,-40,56,-57,-85,47,-97,71,49,-80,-97,64,-94,-96,-23,-90,43,-100,-100,72,-85,-23,92,-100,24,-66,0,-86,-100,-52,-11,9,-99,-65,-21,-50,-11,-31,-100,81,-83,-55,-90,80,69,10,-53,80,38,-100,-100,99,-99,73,-56,-77,54,-55,8,-44,-69,-35,-77,98,68,-13,38,15,-15,-86,1,-100,18,-29,-67,28,73,39,26,-89,-95,-95,51,-20,-23,-59,-98,-62,-97,-96,33,-80,-100,-84,-72,-75,39,-61,-75,4,-18,53,-72,43,-57,-18,-44,78,-90,-97,-72,89,-44,-96,-14,-77,93,35,-88,-99,-40,-33,10,42,-98,31,-92,-51,70,-93,-79,15,-85,-67,-95,-88,-19,-68,-79,-40,-68,-8,40,-49,77,19,36,-99,-84,-43,-95,-88,-89,-99,42,-63,-96,64,33,-86,32,-93,-55,-100,-91,-68,-22,74,-99,78,-100,-91,2,-92,-71,55,-48,-88,-99,42,-100,-99,-78,64,-29,-97,-86,84,96,58,-96,-52,-98,-64,15,29,-87,-7,-61,29,30,-88,-74,97,-52,-12,60,-94,-54,-25,-34,-75,41,-69,-4,-74,-38,-4,-45,-65,-23,30,48,75,97,-10,-92,-26,-40,-75,-50,62,-98,-97,-30,-39,10,-100,-88,-92,-54,-55,-52,-88,-78,-78,-74,-15,-88,6,-81,37,-48,57,-92,-21,-93,48,-100,-94,-89,-99,-98,-60,-13,-65,-100,12,-100,-49,64,-78,-98,96,-9,-82,-75,-2,-53,-85,30,99,-49,-83,-99,-90,-85,-74,-98,-10,99,-90,-88,-36,-42,-92,-99,-82,21,-81,-46,-36,4,-2,-20,-99,-8,-100,-66,-81,-70,-96,-57,-99,-49,-66,-60,6,-56,-60,-95,-71,92,2,-81,-78,19,-100,-41,-99,-68,44,-42,28,-100,-35,-98,57,84,-79,-79,-71,85,23,65,-2,11,53,-62,-81,-96,20,-38,87,57,-93,-79,-3,-48,6,56,99,-75,-99,-100,-33,80,-100,-38,-41,-72,41,-93,-95,-82,26,43,-93,-51,-79,29,-78,-30,-100,-99,-63,3,-45,56,-100,-58,-97,-9,-57,-86,-69,-72,-94,-100,2,-29,-98,69,84,-41,31,-31,-36,50,-75,69,-54,17,-82,-88,-85,-77,-62,79,36,-99,-74,36,-64,21,-65,-16,-64,29,-100,66,-85,-96,26,-5,-47,36,-44,-89,-90,-45,-57,-76,-50,2,24,-97,-13,-99,-97,-98,-28,-25,69,-100,11,-100,-100,27,-91,-62,-56,-17,-60,-53,-60,-97,-38,-100,79,-86,55,-7,-43,40,-33,-89,-14,-48,-52,70,-89,-8,-92,-100,-78,75,96,-92,-36,89,-74,-99,-89,27,56,-46,-83,-49,-68,-11,6,91,-100,-99,60,82,40,-75,-54,76,-55,-92,-59,-96,-52,-79,32,3,72,-87,-28,32,-45,-97,47,-97,92,-79,45,-17,76,75,-52,19,-91,-86,80,39,-65,-100,-89,-73,-89,-95,90,-66,17,14,-17,14,-49,16,-71,-100,-94,-45,24,-63,-100,64,-90,62,-94,-96,61,-75,-92,-48,-90,-59,50,43,-86,-17,-98,-75,-68,-74,79,56,88,-92,-59,-24,-44,-90,-30,-82,-100,-43,-6,-89,-41,-67,-100,-61,-100,-98,79,-78,-17,-93,5,-96,-61,-93,-95,-88,32,6,98,57,20,-100,-98,-100,68,-87,-100,-98,84,-7,-57,-39,-8,-42,-58,-6,-96,-8,-96,92,-99,-23,-67,-95,-20,94,-66,-93,-97,-91,-30,-97,-96,-71,-53,38,46,-60,-74,-98,-76,-98,22,40,-90,-13,-27,-8,-82,80,93,-81,-97,-42,-80,-48,-71,0,-65,-46,-9,43,-99,80,30,53,-21,-10,-53,-70,-22,-96,10,41,-100,-17,8,-99,-52,-32,9,-98,-100,55,-95,-85,-91,-100,44,-88,-100,-100,-99,-41,-33,14,28,-34,-93,-100,-58,24,-95,95,90,24,88,-98,-93,-76,19,-24,-98,-100,-64,-86,-33,-88,28,-13,-100,-73,-81,-57,-70,-100,-46,-82,-34,69,-86,-100,37,-5,22,-98,-100,-100,-65,-91,-3,-23,18,85,-92,-99,-52,-10,-73,2,-21,34,-98,-9,-100,-7,-84,66,-91,-86,-94,90,-59,-22,-91,46,-83,-61,-100,-41,-98,-78,-49,-48,28,91,12,-9,-88,18,61,48,-93,24,-79,27,78,-34,39,-100,52,-100,34,90,-90,-89,-88,-59,-91,-33,17,10,32,-100,-92,-100,1,-22,-37,6,-56,24,78,-100,-86,-46,5,46,4,-36,-86,-100,-6,31,-39,-100,-52,-85,-95,92,16,-99,60,34,35,95,-94,3,-5,-96,89,61,62,43,90,-56,-31,-26,-56,-96,62,-86,-98,-64,-78,51,-76,-81,-67,-92,27,-68,-98,-96,-98,81,-50,-57,-72,-76,-80,-100,-69,-88,-10,-38,-7,12,-18,-38,-90,-96,-95,-72,-61,-81,-24,-96,-80,-100,-48,5,-14,-26,52,-61,-100,62,-89,-15,-87,-60,45,-99,-88,-97,-100,46,22,-95,39,-87,69,-30,54,28,-16,-98,-67,-100,-92,-98,-100,-84,-68,-100,35,-85,-31,35,-35,-42,-100,-73,31,-100,-99,-78,-83,-99,-100,43,36,12,-32,-100,45,-98,-97,76,32,-42,-94,-100,-68,12,-54,3,67,69,-47,-75,-33,68,-99,-46,11,-93,57,-56,-99,-68,-39,-73,-95,-91,-17,-26,-75,-96,-57,-28,-29,-77,24,26,-88,-72,-100,-92,-51,-86,-88,82,-41,-11,16,35,-81,-95,50,-29,3,-90,-82,-46,-98,-92,-82,2,-68,82,14,-27,53,-22,-85,94,-78,-100,-99,-92,33,-7,77,-62,38,-84,-79,-57,-37,-83,-94,-98,97,-88,75,-78,43,-93,-88,-50,-88,72,-91,-39,-100,15,-100,-38,81,1,59,-91,13,-97,31,38,-100,-14,-95,56,-51,-100,-97,73,-99,-70,19,-64,-2,-90,-26,-94,-93,-92,-100,17,48,-73,-66,-59,-54,-97,-9,-79,27,-36,-5,-59,-66,-99,-87,89,48,-57,-34,23,35,-91,-97,-54,56,-100,-97,8,-39,-80,-67,-99,-99,-15,-23,-12,-87,41,-52,-42,-80,-47,42,-90,-60,-34,74,-32,-91,-43,-56,80,-100,-50,50,-98,-84,-91,-23,65,-100,-97,-100,-100,80,79,-98,-60,-23,-81,-68,-100,-100,95,-100,-89,37,-74,34,-87,-90,90,38,-99,-63,-99,-99,36,-24,0,-16,-73,-100,84,-43,-90,-95,-46,97,62,-86,-51,56,-100,2,-34,61,-31,-40,-6,-100,-92,-92,42,38,-70,-77,75,-80,-67,19,-31,-55,-94,3,83,-59,13,-99,-16,40,-12,34,-53,-51,-40,-86,41,-72,-55,-80,33,39,-47,75,-92,-94,87,-98,-46,-20,-70,-65,-100,-86,-56,32,35,-87,-84,-94,71,-15,92,-10,-50,25,-42,55,68,-8,-53,-93,-78,98,-8,-2,-100,9,-51,-53,-72,-80,53,65,-13,-50,-62,75,-11,3,-99,-15,29,-96,71,-99,-98,-59,-53,-38,-67,-86,-93,-48,-11,-97,-85,-26,-45,-61,-99,-84,84,-29,-29,-78,35,0,-51,-97,-95,-45,-82,-72,-65,-89,77,-60,-1,14,82,44,-53,-93,91,91,46,10,95,-98,-85,-68,-57,-64,8,-8,-94,79,-35,-73,14,-19,98,-98,-1,-98,-13,35,-31,97,-96,-95,-44,42,-85,-9,-98,-98,-30,4,37,47,-90,-86,-85,-99,-45,-100,-3,7,-43,-97,1,64,-64,13,-65,51,-61,7,-37,-52,42,-82,93,-69,-54,64,-100,43,-52,-99,-28,-7,-60,58,33,-92,-99,88,-54,-83,-93,-89,-92,49,-83,81,-98,-15,-81,-100,79,-66,51,-99,-1,-17,-89,-98,-100,-52,-24,77,-15,84,-68,-93,46,-97,71,-75,-96,90,-70,-87,-27,-62,-98,94,-81,-76,-90,-38,12,-87,-53,-98,-74,0,-88,64,80,28,-85,1,43,-97,-81,-85,30,-27,-53,-1,63,-93,-100,81,-85,-77,-59,23,-100,59,-27,-40,-18,-98,41,-75,35,1,-94,26,-78,-64,-100,-25,25,-52,56,47,-98,-100,-72,-60,-100,-100,-95,-40,-85,-100,-4,-100,-33,7,-7,23,90,-56,71,-98,-80,-100,-91,-100,7,-45,92,-73,-78,-82,-88,35,46,29,-100,-57,51,-81,-97,-97,-82,-96,29,-52,16,-55,-100,19,-100,-72,29,-100,49,-7,-100,14,-85,-6,-84,-92,-85,-100,-98,-95,-6,-95,-51,54,-41,-81,-97,-73,52,19,-34,-20,-96,36,-76,-87,-17,1,-99,7,78,-87,12,-97,-46,-100,88,-100,-74,50,-88,-99,72,-100,-30,-99,-40,-52,86,-68,34,-67,-100,-58,1,17,-25,-100,8,20,-31,-91,-68,8,-38,-100,-53,9,65,87,-45,-5,-99,-69,91,-82,-93,-100,-95,85,90,-98,81,76,76,-22,-5,88,-85,22,-41,-97,-69,98,-18,21,-98,-100,-100,-62,-96,-100,-79,73,21,-97,80,-89,48,23,-87,-77,-73,-54,-100,53,95,14,-5,-52,60,-30,25,0,-100,-97,-100,-88,-52,81,-83,-74,-69,-97,12,92,-89,-67,-40,-89,-20,-86,-77,62,-14,-73,69,63,-10,-99,-100,-4,68,-89,-92,-99,24,-9,-50,65,-78,31,24,-73,39,-86,-98,0,-2,-22,-91,11,-95,-76,47,66,-63,-70,-97,-18,37,-87,-73,-67,11,-100,-83,-97,14,-74,-15,-61,-93,83,-93,-77,-97,-100,-74,-85,-79,17,-44,-55,-100,-99,7,-86,-74,-98,-62,-10,-86,-54,-42,-70,-100,17,-76,19,-52,-55,4,-9,-96,-100,42,50,0,-82,-47,-94,-94,-100,31,56,-64,-87,-95,-77,-65,-35,41,25,-11,37,-10,80,-79,-98,0,-95,-74,-100,-98,-100,-3,-99,-89,-98,-83,-87,-69,-37,-72,62,-100,46,18,-90,-12,-98,-68,40,29,-39,10,47,-41,75,-2,69,-86,70,-100,-94,-100,-59,50,24,60,72,-9,-39,-20,11,-35,56,88,-10,-100,51,-75,-44,-15,-99,-9,-100,-22,-59,-93,52,95,-95,-88,26,-100,51,-74,-100,-32,-100,-65,-75,14,38,54,-100,-32,-85,-39,-90,95,74,-46,-98,-99,-12,-70,38,-43,80,13,-69,-100,36,-90,-63,-100,21,96,-28,-82,31,35,-95,28,-64,-84,57,-73,-27,-44}
{-56,20,-40,-71,24,-63,-5,-62,-73,-6,-63,-32,74,-96,-94,-75,-49,-18,-61,-100,-100,55,-92,-98,28,97,-76,-86,72,-93,-42,-74,-98,23,-100,-95,-98,-5,-32,-100,-68,-66,-72,-23,-19,-95,-80,65,-100,-88,-6,-27,-97,-7,16,-99,-50,-93,-49,-64,31,-99,-100,-79,-22,5,46,-74,-53,75,-98,-31,18,-23,-53,92,-42,-88,60,-100,75,-50,-85,9,-74,91,-100,-65,5,95,-95,42,44,-62,-8,78,-72,89,-100,-79,62,-84,-38,-65,-61,-70,21,30,-100,-80,-98,18,70,-70,42,-44,-74,-43,-81,-100,20,77,-8,-46,-98,-99,-72,-32,-97,-95,-11,-100,3,-96,-97,-10,22,61,81,-69,-69,-26,-100,-83,-44,-68,-100,-38,-84,-45,69,-6,-2,-96,-53,-97,10,-67,-94,-72,29,-100,-43,-100,33,-1,-6,-42,-100,-30,89,-43,96,-59,95,-55,-56,-100,57,-34,-33,-24,-82,-29,-62,94,-82,94,-59,1,-64,-78,-81,-55,-74,94,82,2,-6,0,-89,-36,71,-97,-95,-74,-64,-34,-91,-56,-28,-69,88,-75,-3,25,-91,-94,-27,-85,-69,-100,-95,12,50,86,99,90,-71,-63,-74,-100,90,-90,-98,-100,45,-78,50,-81,35,-36,-80,-99,-4,27,72,-86,-93,-100,-74,-36,-94,62,-1,36,-67,-100,84,-70,-2,69,-95,-27,59,-93,-65,-94,-96,-72,-94,-99,-100,-100,-72,-70,-100,-74,-52,-25,-76,-100,-100,-53,-97,26,-33,-37,-82,-84,-90,90,97,-50,-61,4,-98,-62,51,66,-82,-72,-100,-37,-33,-100,-12,-73,55,94,48,41,-15,-43,-20,17,90,-82,-25,66,-81,-90,-84,-98,-95,-44,-63,-37,-100,5,-47,-21,53,-98,29,-80,30,-12,-81,-75,-100,-61,-100,-63,-65,36,-46,-66,-56,83,-78,-97,29,49,-71,-78,-38,-69,-69,23,-75,-90,-45,-28,-96,-34,-78,81,-58,-98,-30,-99,-88,-100,-64,-3,-100,-62,33,-89,-32,-98,-28,-54,-93,-97,-98,-92,48,9,-99,-53,-86,-58,-45,-99,41,-38,-65,-80,31,42,-99,-97,-25,-74,31,-80,-19,-18,-46,-38,11,-95,-57,-100,-15,39,-95,-86,-95,93,-63,-68,-99,-71,-92,6,90,-65,-94,-100,80,92,-98,-24,-48,-29,13,-91,-18,-89,4,-93,-69,89,-81,43,-98,-15,-76,-69,-74,-100,-48,-72,93,56,-96,-99,-98,-95,53,-92,-68,-98,-76,-100,-47,-1,-97,-36,16,-36,-100,-2,29,-47,-87,-68,-67,-43,78,-81,8,-70,0,-100,83,-76,86,-42,12,16,50,-39,79,-92,10,-35,-26,-96,72,-93,47,32,-68,38,-98,55,15,-95,19,-84,-95,-70,47,-93,-96,14,-94,-22,-25,-65,-100,-5,64,-42,-3,40,5,-82,0,7,-73,-100,18,-47,79,-84,-14,-68,-55,-50,-43,-71,90,-1,-10,72,-61,48,-59,-96,-100,-82,-45,15,-21,85,-62,-9,-32,-99,-71,13,-95,-91,-56,-74,-80,-5,-57,-97,-61,36,-99,-99,-96,-80,53,-100,-35,-100,-100,-77,48,-11,1,-96,-82,-2,-92,-95,-98,-76,48,-78,-98,8,-53,-94,-99,37,-98,-59,-64,91,-100,27,-52,40,-46,99,-98,-94,-27,-83,26,3,-99,16,44,3,-97,-44,-35,-83,-88,-99,77,-97,-51,-85,-50,-98,18,-96,-39,51,44,-31,-56,-95,61,-52,-14,-100,-31,-19,-8,-47,-100,5,-99,-78,-46,77,22,-78,-100,67,-82,69,-86,66,-59,-78,-57,-64,-93,-75,-88,-98,65,-25,-21,92,-41,29,-21,-2,-90,-81,-34,-89,-94,9,-96,-100,-32,3,33,-89,-95,-68,25,-99,-2,-22,-10,-54,-99,-69,-59,-21,-99,-97,-100,-69,16,-90,-69,77,47,-94,43,-23,-37,11,74,-40,-51,-52,-80,-84,-77,26,-14,-25,-77,-3,-98,-98,12,-65,-87,-63,77,59,30,-95,-96,-48,-34,-36,23,48,-92,-17,9,31,-14,-63,-26,-15,-32,8,-78,-47,5,-78,-42,-78,15,-17,-100,87,-53,-76,14,-100,7,-60,50,-92,-95,-59,-74,44,-99,-100,-13,-83,-97,61,10,-38,-49,-29,-76,20,-100,-3,-50,-98,-90,-92,-97,-29,14,-21,24,49,85,-18,-100,-70,98,-83,-2,21,45,-72,-92,90,-52,97,56,-27,-38,-78,-7,-68,34,-51,-7,-76,-90,-100,-42,-100,-70,-100,-69,47,-84,-98,6,-95,-58,-100,-53,-100,-100,-100,71,31,31,-85,36,-96,15,-90,-90,68,-94,75,-84,-63,-60,-79,-31,-66,-18,-95,-85,-53,22,-92,-96,-83,-31,-66,-98,-43,17,-19,-100,80,59,24,-99,-5,76,-100,-76,45,-65,55,87,-93,-40,74,96,-92,-96,-99,-100,51,-15,-50,-100,-90,-84,-100,92,93,-81,-58,9,-100,-71,-85,-100,-90,-90,0,57,-78,-96,-68,35,-4,-52,22,10,43,-18,-100,-100,48,-72,-84,-58,-91,52,-59,-94,-100,-93,-73,-24,-43,-99,-14,-61,-100,17,30,-45,64,-76,-41,-30,-93,-99,-93,-87,85,65,29,-92,-80,-100,-81,-26,50,36,-60,-88,-95,-90,32,-54,46,-33,1,63,-64,8,-30,-77,-29,14,-74,-95,-70,33,-36,9,21,-100,2,-26,-12,73,29,-97,6,35,52,-79,-95,-100,-96,-76,-100,98,-99,80,-97,-36,23,-26,-87,-40,-93,-88,60,37,-75,32,6,-9,-55,26,-8,-50,-3,-58,-79,-100,-60,-55,-34,-15,-91,-10,-100,-96,-52,-97,-48,-62,-67,63,-97,-90,-93,-63,83,-83,-90,-67,-74,-97,71,-14,-42,-72,-97,-25,-78,-42,84,-82,60,-46,-98,57,-41,45,-96,-59,-73,-100,64,-72,-10,13,-98,-82,-58,76,-52,57,-56,72,-97,-59,-98,13,-91,-100,-100,-85,-25,28,-93,-27,-87,-97,-75,-52,-39,-100,23,-57,-45,-77,-19,79,-85,99,-96,44,26,-65,-57,-88,1,-99,-48,-100,95,57,78,63,9,-65,-100,49,22,-86,-24,55,-70,52,-78,-21,76,-98,-70,-97,91,63,-99,-48,-100,-21,-100,-82,-53,-9,49,-13,-2,-72,70,-97,-12,-58,-69,61,86,-97,-100,-80,18,-75,-55,-33,-98,-100,-51,-100,61,-23,-60,-97,-10,-61,-100,-99,-88,-88,-71,-87,-82,-41,-91,-91,53,-18,-78,61,-98,-100,-70,80,1,-81,-89,-78,-72,20,-43,90,70,-93,-65,-94,57,-87,-29,-88,62,66,-16,97,-94,-94,-100,35,-64,83,-81,29,-20,-32,-85,-80,39,45,-96,40,75,-100,-95,-98,-94,-28,-52,-95,-40,-82,-41,-60,19,-100,-96,-96,-95,91,-100,62,-32,21,-93,10,-84,-48,-96,-91,-78,-89,-75,-92,-78,-93,-51,-83,-82,-60,69,16,-100,-89,-100,-12,-90,22,-99,-100,23,-100,-28,-99,8,-92,-83,0,29,-97,-35,25,-93,-100,-98,-89,-64,-60,-28,26,86,84,-59,-100,-82,-98,-72,97,-53,-100,-68,-97,8,-42,27,-99,-43,-19,25,-56,-16,5,-1,33,-17,-19,-71,-98,-58,-96,-71,-43,-13,-92,-80,81,-26,-68,-82,-35,10,-93,-99,-79,-14,-22,52,-18,-80,-9,-84,20,-98,-75,-98,-78,67,-12,34,-68,-59,-75,-19,-56,7,-38,-59,-70,65,-56,-89,24,-56,10,6,-13,-98,-7,95,-76,14,-94,-12,12,-24,33,16,-58,-96,-96,57,-80,37,-26,-72,-92,-18,-60,97,81,75,-97,84,15,-100,-43,-84,-96,42,8,-96,-100,7,-27,-90,-29,-88,74,-88,-56,-16,-36,-82,-93,-85,-99,-65,73,-49,-83,93,-70,-76,-31,-41,-100,-36,6,-97,51,-86,-97,-62,-85,-42,-15,-100,-50,-28,-100,-72,-96,-77,-87,-4,-93,52,30,-94,-43,51,17,-71,-97,-94,-47,-63,-57,86,20,-68,-74,-91,-43,-68,-97,-89,-99,-51,41,32,18,43,-79,-52,-99,-43,-71,-58,-79,27,-100,11,-90,-84,-99,-48,-58,49,-27,-79,0,-61,-91,81,-100,29,-91,-75,28,-88,-35,57,-100,-79,24,-16,-66,-83,51,-87,-58,-68,-97,53,-52,-69,-2,-67,-54,-50,96,-54,-7,-4,86,-71,-5,-36,56,10,-88,-87,73,-88,-95,-2,-84,60,-96,50,-76,16,-74,10,-86,-86,15,19,-90,-98,-100,-82,68,50,16,-7,-95,-31,-98,82,45,15,82,-94,-75,-39,7,-40,59,-84,-90,-89,44,37,60,86,-19,97,50,29,-78,-61,92,-5,-69,-28,78,-77,18,-38,-46,-100,63,-12,-63,75,-9,13,88,84,-25,-30,-83,-64,-8,-100,-97,7,-27,-95,14,-61,45,-40,-89,64,-73,36,-56,-46,21,-93,38,-72,71,-85,-89,-25,-50,-70,74,-49,-94,-90,-35,-31,0,-57,-91,-47,-69,-86,-93,-9,47,22,-97,-10,-97,-83,-79,40,-100,-46,-95,-100,-94,52,-77,-40,77,-95,9,-45,-95,-52,-100,-47,40,-88,-65,-94,81,-12,12,-86,87,63,-66,-100,-98,-90,-99,-14,-56,-88,-46,-30,42,-78,0,-7,-49,19,-100,-21,-85,-100,27,-87,9,-100,-58,37,-99,-73,-100,13,57,-47,-72,-9,6,-71,44,-63,-88,-55,3,69,7,-34,-95,-94,-82,62,61,-59,99,-33,42,-100,43,-97,-100,40,67,-99,-100,-22,-91,14,-92,81,-7,-66,-15,-90,-32,-7,-32,-38,-74,-95,-52,-87,-62,-28,-41,-3,-75,45,47,-57,-29,-87,9,-91,-65,-54,-92,52,-51,-91,-22,57,-71,-60,65,-47,-44,97,-67,42,-92,-88,19,-78,0,31,55,-75,-100,41,-63,57,69,-77,90,-94,-63,4,83,-11,-47,-97,31,53,-15,76,-90,-91,-99,-8,-24,-100,-90,-6,92,-75,-44,-94,53,-86,25,-89,-57,-97,87,-11,-66,75,5,-89,-90,-73,48,43,-60,49,-3,12,-56,-100,-41,58,9,59,-24,-51,44,-69,-98,-97,-81,37,33,-96,34,-77,-98,-88,-52,35,-63,12,38,13,3,-64,-94,7,-83,-53,95,48,-94,-14,-34,-97,44,-61,81,-41,58,-95,35,-100,31,-99,-88,-87,-91,-59,-89,-32,-8,-33,-93,-53,71,-11,-93,76,-85,-98,-92,33,-100,-96,-13,-20,73,-100,-100,92,-94,-69,-97,35,74,-94,-44,-48,-100,51,-74,84,-52,-97,-78,47,-86,-88,-98,-70,-90,17,-73,-100,-100,-96,75,-53,74,-51,12,-75,-98,-67,-39,-73,-95,-27,66,-70,-100,-65,-43,-47,71,4,-99,19,-100,-95,-96,-25,-63,46,-20,-94,-58,36,0,-53,15,-60,-91,-72,46,-85,20,-99,66,-79,11,-1,-69,14,96,4,-54,-41,-39,86,52,-68,-61,-98,-99,-67,-84,14,-68,0,39,44,-95,-81,-65,-8,88,67,33,-51,25,-99,-67,89,-95,47,-80,-87,8,-100,50,-51,-6,63,6,97,22,-11,-79,-98,9,79,-95,-97,-100,-78,-69,74,-97,-33,-79,-41,15,-31,-59,43,24,68,-38,-27,-89,-89,-97,-55,-98,7,-93,67,-95,66,-90,-68,-91,32,-88,-60,38,1,56,-93,-100,6,-100,-98,-64,82,-100,18,63,-58,-53,54,-11,47,-10,-100,-100,-50,-29,-95,82,-39,-100,38,36,-64,-89,70,-40,95,-96,-53,-24,-100,-12,8,-19,-54,-23,62,-88,4,-92,55,-91,-100,-55,-23,-94,-99,-2,-100,-99,-51,-59,-84,-73,22,-97,-73,-45,7,-99,4,-69,44,-19,-7,-81,-36,9,-85,78,-88,77,-61,-90,-21,79,-76,-39,-53,40,-27,-91,-1,9,-99,-68,87,-95,-85,37,-67,-26,10,-89,-63,-22,-94,-46,82,-80,-88,87,28,-96,97,-98,-100,49,50,-65,-97,38,-73,-63,-100,-97,-100,-86,-8,-35,92,13,-37,-95,1,-90,-98,66,61,37,-94,-100,-97,61,-60,23,-71,-50,-36,-27,-87,85,-92,-98,-24,-95,-65,-99,-17,-46,84,-62,-98,-33,-93,-7,-1,49,-95,-95,26,47,-83,66,-97,67,83,61,87,-29,29,-20,-81,-98,-69,-99,-2,-61,-100,-51,49,-46,-92,88,-79,-24,-63,-32,-34,-50,-96,-60,-100,-96,39,-76,-50,-100,-67,-61,69,46,-8,-93,91,-44,20,26,-2,-79,-100,-88,-12,-84,-68,61,-91,-60,-62,-93,-100,99,-56,-51,-77,-91,-100,-93,-100,-48,-99,-76,34,54,-99,-80,-98,-100,-100,18,-81,-21,-81,-100,-92,-23,-22,-94,-42,-56,-42,-84,-97,-14,-91,-95,-66,66,-87,-95,-48,27,-45,40,-57,-40,-12,-100,-60,73,70,-95,92,49,3,-90,-99,-55,25,71,-11,-14,-15,-100,-28,-68,-95,-86,22,84,29,-42,96,-83,-100,92,85,-63,17,39,45,-98,47,-95,-84,-59,-91,-52,72,-37,-14,-20,-86,-36,73,62,96,-91,-95,-53,12,44,21,-100,-21,2,-98,-43,-100,-66,28,-68,20,44,78,-39,-29,-92,-29,97,-99,-91,-100,-31,-87,-16,-14,-85,-22,21,-24,0,-2,51,-75,-99,-85,-41,-42,97,-27,-26,7,-31,-100,-91,-98,-11,74,97,-84,-77,31,-45,-70,-35,-100,3,-66,37,96,-60,-78,-55,-30,-56,-89,-100,-99,26,-78,66,-21,-50,49,-18,-23,-19,-32,-57,-97,5,-62,-24,-64}
{14,66,-28,-56,-17,53,55,76,68,29,-21,-3,-39,74,-63,50,-88,93,56,95,78,-47,10,86,17,47,-80,93,37,86,22,-84,48,94,97,2,-81,52,59,34,100,62,100,-8,0,-55,63,81,79,98,83,6,-14,100,72,25,-91,-84,-19,-91,74,10,59,-57,35,77,56,-77,-59,81,12,83,-28,90,77,-62,52,74,100,94,76,90,43,9,-4,-46,100,100,-46,100,97,100,68,100,87,93,100,33,46,-34,95,90,85,92,-36,54,100,27,36,86,72,88,52,-99,96,61,18,-20,23,-16,43,61,-47,-30,80,86,85,7,99,64,10,-14,98,79,34,-1,70,-59,81,96,-57,11,-47,99,94,48,49,93,-15,93,48,-39,97,-87,-56,-70,79,77,95,55,11,92,92,99,-27,95,100,-19,91,9,63,6,-26,93,1,-48,100,97,93,74,-35,-27,-86,-42,25,30,-20,-68,8,15,59,-47,89,82,-20,-89,75,11,-29,-99,96,98,-28,29,97,86,100,-1,73,66,100,93,-81,100,90,42,93,26,10,99,72,-97,64,84,-65,12,100,7,60,86,100,100,98,79,39,-63,46,35,90,54,-70,97,35,41,-31,-63,-1,-37,-32,100,69,12,98,27,99,5,-23,41,20,-86,99,79,-83,100,88,63,84,99,100,-10,-8,29,-44,-10,75,-93,-91,100,51,100,-79,73,-40,98,57,46,57,100,21,54,70,-22,33,-20,-79,-58,67,-15,99,100,-75,75,-45,89,-88,-81,100,98,24,-73,100,85,6,65,33,-49,62,95,95,99,5,33,-4,88,-64,100,-27,-24,-11,62,-22,59,-33,96,-70,-26,88,24,87,98,75,60,97,68,100,33,-22,95,100,93,96,49,-39,-90,74,-48,97,97,73,100,-3,91,71,94,-69,59,-17,56,44,-44,100,20,64,16,95,-13,70,89,81,92,66,38,-11,100,-59,29,83,-59,85,95,64,72,91,46,-79,100,0,-79,80,87,40,69,67,-23,99,-28,38,45,50,64,97,45,-34,-57,-93,91,83,95,-68,96,90,-61,-6,99,-99,-15,52,100,-4,28,36,99,96,86,100,43,89,14,50,91,75,-31,-56,17,84,100,99,-93,-67,61,43,-57,98,4,68,-30,69,-54,83,97,20,-61,9,87,-15,32,59,89,80,-90,-76,77,35,-38,-45,-80,88,100,85,-46,92,0,100,100,-17,15,47,95,92,94,70,74,27,82,63,100,94,-7,72,53,50,82,-23,62,-70,95,100,-37,51,-76,-31,94,42,44,-8,28,52,100,-75,92,-54,72,80,96,-46,-89,-54,-12,43,-4,95,95,100,100,70,83,96,70,53,100,72,59,87,14,-42,-15,-26,61,97,-61,63,81,-83,-65,97,44,49,-5,87,0,47,-25,-11,-34,-37,30,85,65,100,-77,99,55,83,75,100,94,59,-15,63,95,87,100,100,83,-8,53,12,80,17,87,97,-40,-52,81,28,96,37,98,99,-20,33,86,90,-26,72,73,85,-43,90,-70,-6,82,-30,-84,38,-15,92,-69,-99,7,5,29,-43,89,95,-53,96,-76,29,100,-53,-18,-24,84,97,-31,59,86,11,89,-67,68,38,-46,-6,12,28,-6,93,95,87,-59,-73,-43,97,97,-6,2,86,100,51,68,55,55,88,99,98,-13,87,92,-73,100,-16,97,-18,-58,99,-63,52,58,-45,21,23,81,68,97,100,100,-81,89,97,-2,19,-11,80,97,84,-25,91,-78,-58,79,84,16,69,100,22,39,81,82,-3,33,85,-16,46,11,-79,-22,97,93,-2,100,87,83,98,-95,76,-42,86,-42,95,13,49,36,91,44,-64,40,49,87,5,62,48,62,58,-34,93,31,41,-58,-53,95,94,-42,-57,-61,-50,100,84,31,98,75,64,82,81,-23,39,91,88,70,-45,98,94,85,8,4,56,-81,62,78,-63,-71,87,-58,-3,100,59,38,98,-21,99,61,98,-43,29,-11,-6,99,-2,-90,-36,49,78,17,67,-32,-8,92,-49,47,30,-32,83,-17,-13,0,89,84,53,44,-88,43,24,100,100,97,99,100,-60,65,85,24,74,75,78,-12,-76,-86,92,98,72,24,-29,-54,20,-55,54,-51,31,92,23,-59,79,67,-6,67,81,34,-58,96,78,69,-5,49,100,72,30,-56,-27,-10,85,93,-42,-72,43,-25,-30,-34,32,94,78,2,-85,77,100,97,68,-6,-2,63,-52,78,-79,65,42,-46,-34,-21,93,49,88,19,30,56,73,-14,80,100,87,-62,-68,-67,-16,85,26,85,85,96,90,-29,100,27,100,79,94,-95,63,84,99,51,-8,-29,-30,83,68,99,-20,78,-13,87,-36,92,-80,-93,99,19,48,96,91,-15,94,67,79,35,99,100,44,82,-64,25,42,60,-16,26,48,70,-48,65,88,69,-18,22,-35,-23,-68,74,-83,40,51,100,-62,-27,44,100,-64,45,44,55,91,97,100,-59,91,100,55,20,60,-30,10,75,82,-95,97,86,73,98,87,-13,93,100,23,82,69,81,98,-95,92,-48,21,-39,96,-35,42,1,-79,-87,7,-59,46,100,-66,100,-67,49,94,100,-94,-26,89,48,-24,40,-7,100,93,21,-13,73,70,-35,-33,-68,96,-16,-93,-1,-77,100,-84,66,58,-24,97,46,-91,100,-49,26,70,30,-60,-30,98,-79,87,100,-40,23,100,-35,51,57,76,-14,69,-48,70,60,20,14,98,93,98,-95,3,97,-92,-54,-88,27,19,38,94,100,58,100,81,51,-42,89,77,98,2,-31,95,49,98,60,100,75,-33,98,-60,69,-75,-38,66,18,-68,68,19,90,68,38,69,44,-1,-23,-96,-61,-38,81,-42,97,-49,81,100,31,30,76,81,99,-98,56,-57,-24,-30,89,75,-59,55,100,98,-83,30,-87,-27,68,69,-33,-74,-97,-68,48,90,92,75,48,-80,100,81,90,74,100,100,51,-9,58,100,49,-84,-2,57,-8,-13,29,95,20,34,-22,-56,-55,95,94,73,-2,80,61,99,100,4,87,56,95,86,91,-65,-68,26,-15,50,93,70,100,53,87,84,48,91,99,-90,91,-62,-28,97,100,52,57,100,32,-37,30,-28,-4,13,43,100,99,100,-71,-38,49,54,84,98,99,-46,86,83,96,79,100,-2,81,87,34,100,83,-22,-26,36,-72,-12,-8,22,86,-36,100,60,97,72,-71,-56,64,99,28,-29,88,-26,91,100,-38,98,98,15,2,-41,-16,58,26,79,91,100,36,90,89,-12,65,55,96,12,95,86,45,37,-51,47,63,77,-20,-43,-10,82,2,99,18,5,95,-41,99,100,93,65,100,100,-54,-56,94,25,100,96,47,62,83,94,-26,63,-10,95,58,86,-44,38,95,-56,100,-2,97,-79,99,87,80,21,90,49,-42,8,88,-68,99,71,89,98,100,100,-41,-30,-9,46,-6,87,-66,80,100,68,78,-59,-24,-33,30,96,99,18,68,8,-11,85,78,-17,99,21,68,99,63,82,-3,71,-2,43,100,88,-2,30,-78,84,-47,-81,7,27,88,100,89,80,-82,100,-33,10,7,98,81,76,-82,90,97,100,-35,31,88,100,-69,-81,93,14,48,46,81,97,20,79,44,60,96,-31,50,14,-54,73,92,100,92,7,-85,70,92,-59,-21,85,-97,94,67,97,75,-19,57,-23,-24,87,86,80,28,-40,17,87,-67,83,89,-5,-13,10,89,98,84,-53,70,-16,30,100,33,-28,-28,78,-88,-24,-52,-76,12,62,84,67,-4,64,85,-77,100,-18,98,-39,92,-45,-73,99,-17,28,39,-70,69,59,85,100,-55,77,48,76,-32,68,42,-88,-17,100,86,6,20,-91,100,68,99,69,83,55,-1,-22,98,11,97,100,80,-32,47,100,99,32,-43,-81,93,-10,89,-35,90,30,-70,-99,93,100,11,37,99,-4,-14,92,-82,-38,6,27,50,-22,-47,4,-79,-69,84,53,-97,74,69,39,78,-3,40,-70,75,28,-4,-50,-3,9,98,95,83,-36,94,92,-36,97,-31,-64,85,59,55,56,68,-65,-16,-81,-29,-46,72,-45,-22,-56,-76,76,-96,-89,8,82,-40,100,-99,-20,-54,-89,42,-40,73,32,100,94,94,93,12,64,99,-56,79,94,93,98,100,60,-34,93,44,26,99,91,-93,-56,72,-94,40,90,-33,-77,100,0,40,-78,90,52,45,-71,24,91,-79,-17,6,-58,-66,51,25,90,32,96,-8,81,100,100,53,81,7,71,-26,81,-8,58,88,22,-41,76,88,71,84,84,10,-86,1,-86,94,45,87,-17,66,-93,0,81,-47,-3,42,99,-88,-50,38,-91,51,98,100,-54,6,-43,51,66,100,100,34,99,95,84,44,88,85,91,-36,76,-48,83,93,-69,-70,41,42,86,22,98,54,99,84,27,86,99,32,37,100,42,85,-3,85,100,31,18,-37,-67,72,100,54,-65,100,8,39,-73,-15,-91,32,-53,-31,-22,100,85,99,46,10,-7,-93,5,98,47,-26,74,-89,-20,-66,-60,81,96,-37,79,31,97,91,-73,92,93,75,-89,77,70,100,100,11,38,-14,64,99,36,100,-39,81,76,-35,39,97,100,88,97,79,-7,91,-4,49,-31,100,-26,98,-53,59,-20,64,89,90,-89,46,61,-90,99,99,92,54,33,17,76,99,12,48,90,1,2,61,-47,-55,-33,82,99,60,-32,13,88,73,-7,68,-86,92,100,-16,29,64,100,89,100,12,-89,-71,61,85,86,-33,98,48,31,88,78,4,41,-9,98,81,55,-22,35,98,82,98,38,60,80,-83,34,93,51,-22,84,74,84,34,-23,-20,-20,19,-36,70,-72,56,-90,99,19,48,10,-85,32,71,77,12,76,95,99,99,53,-24,-42,70,73,51,8,89,100,22,34,21,69,25,99,94,-42,89,91,73,81,-3,63,89,-64,-82,-7,9,4,-39,39,97,73,100,100,99,6,-12,-55,78,96,-99,96,-13,87,-43,5,0,47,-9,100,94,86,25,97,21,100,59,81,92,-54,-97,100,-94,28,11,48,51,97,-63,40,-70,16,-94,84,70,-36,33,83,-62,50,-81,100,80,-70,37,98,7,56,57,-98,-54,91,57,-77,91,40,54,100,85,-83,-60,54,44,88,100,-42,-47,33,98,74,94,83,-28,100,-21,-46,84,89,-11,96,36,87,95,99,38,-41,50,44,21,100,84,100,98,100,84,69,-26,44,55,-64,-78,69,100,96,62,57,100,38,77,-30,-43,-67,-94,32,100,68,-47,98,-66,88,19,60,62,95,60,-35,63,35,84,100,-28,86,88,58,100,97,-37,76,67,71,-48,-78,-69,57,57,93,-29,43,87,96,69,53,23,5,-51,-35,-14,24,94,-10,51,77,98,21,50,-60,0,56,34,40,93,-24,48,98,91,53,63,-88,99,92,83,-10,43,100,4,95,79,-44,74,42,-14,96,97,82,100,99,70,79,97,99,100,100,79,-31,-14,-89,-95,100,77,1,75,-50,23,14,44,-68,-1,78,-39,21,-82,52,6,83,33,53,-9,-25,100,-55,59,61,57,21,-52,-16,82,79,61,98,75,46,77,94,-56,47,60,-23,94,100,27,65,-1,-33,71,92,89,87,-27,97,81,4,-30,32,-77,-25,57,89,-50,43,-64,19,90,27,-95,-42,2,-60,-10,13,51,-87,94,-80,23,89,-81,-81,-93,97,-85,97,11,17,71,57,-40,-49,96,78,97,-98,86,46,70,95,52,28,-94,-3,-84,-40,75,61,-31,85,97,100,89,75,-76,85,-10,99,-62,78,-42,44,99,65,79,99,-91,-88,9,100,65,29,14,40,53,-41,-20,98,50,60,94,-55,-72,51,95,100,50,57,69,54,69,76,-74,46,59,-69,97,88,-98,20,63,60,27,100,51,16,32,-73,91,96,22,-58,92,100,96,51,90,-2,27,99,97,90,45,-5,76,45,97,28,-58,91,94,71,91,-85,-56,-66,100,42,79,32,94,79,28,97,80,86,8,37,68,41,92,64,28,-87,77,5,-44,79,46,22,-63,85,-67,73,43,-15,-79,98,53,39,-7,10,96,51,-72,-4,-10,51,-5,-80,98,100,99,67,31,-23,57,8,14,-85,71,54,48,99,89,80,78,63,17,-94,58,100,80,-93,92,84,66,50,91,-44,-11,98,29,98,-40,86,-97,98,86,42,100,46,99,22,77,72,83,32,100,29,21,-79,10,-16,-68,100,81,43,96}
{-19,-60,97,50,74,62,100,98,-7,100,-65,82,100,88,90,89,73,-45,-77,100,64,40,-24,91,98,-7,-80,0,79,-7,-79,2,-58,54,64,60,-33,70,76,92,83,-9,100,-76,26,43,-18,56,100,99,-46,75,30,-93,35,37,88,89,99,49,59,-47,100,41,100,18,-69,80,42,63,85,0,-41,24,-74,79,81,18,-41,43,75,-14,-78,100,99,100,-72,-99,100,97,86,80,-91,96,62,-26,99,14,100,-93,100,100,-72,25,59,12,39,45,98,78,-88,20,98,61,47,42,85,93,-58,-5,39,88,-34,97,96,65,99,97,95,80,13,35,-17,-63,51,42,45,35,52,-81,81,80,29,-89,100,94,78,46,98,22,66,13,-30,88,-94,-76,100,83,91,-94,-79,98,-94,-30,76,60,-9,88,100,94,66,100,72,75,72,26,-52,89,-39,-66,-14,-59,47,30,-63,32,100,99,-83,-97,99,100,56,38,98,19,56,95,-20,66,89,94,3,97,-44,24,-12,47,-99,99,28,97,77,54,15,33,97,-81,70,-6,100,81,88,-76,93,-77,88,100,58,-32,100,25,77,97,73,5,26,79,-17,-65,-31,-20,99,38,100,-20,77,39,54,-30,57,-9,-87,-52,100,98,89,95,98,85,-64,-79,21,24,-9,20,86,-1,73,20,96,-33,-16,75,28,86,76,89,100,89,82,88,96,16,65,25,99,99,-71,-65,68,-91,26,-23,11,-58,87,-26,66,74,66,1,28,-69,53,-9,46,100,10,-44,78,85,84,99,100,-94,98,41,29,-96,42,100,-19,100,-15,88,93,76,-17,-87,-1,-71,30,97,69,27,94,8,-17,61,99,-25,94,23,5,92,39,-37,41,-11,95,99,76,82,-47,86,76,87,99,72,100,3,-47,-84,40,39,94,81,89,99,46,20,65,73,10,95,-17,97,10,34,-51,28,62,-42,-51,97,20,20,-45,81,76,98,9,-80,55,-4,92,54,100,99,93,52,91,-10,43,90,-53,21,53,-50,38,100,-93,81,-19,98,67,-55,100,44,95,84,21,-63,-15,36,39,-38,43,55,-20,60,-31,-69,-9,100,-60,-8,-77,-3,52,100,10,36,-62,19,96,35,-28,91,-25,64,-17,52,-76,97,98,-98,99,92,50,51,26,68,50,-42,-74,94,75,-5,52,53,81,97,100,-70,73,-54,72,67,57,-10,47,3,96,-99,11,92,83,89,100,93,78,47,-40,-28,-98,53,84,43,91,70,87,-93,-33,91,-18,-7,-4,96,41,84,19,-76,99,-14,46,95,-47,-22,15,99,77,100,100,67,-93,-74,93,77,-71,98,39,55,-88,96,-65,8,-55,-3,100,-53,5,35,-71,85,95,70,9,49,4,76,14,42,33,51,-96,100,98,79,78,-93,-43,65,2,-8,59,-68,48,75,82,-79,76,52,-19,-3,100,16,94,72,91,11,87,-73,55,24,67,-38,92,-6,77,-34,68,100,73,-1,97,33,100,9,-13,-57,93,74,42,50,-41,100,-71,100,80,77,-93,-30,43,97,-33,90,35,-60,83,-2,-17,-63,-8,45,-53,50,58,100,93,-35,62,87,66,28,-80,4,53,33,-32,79,-57,-47,4,97,10,68,100,66,100,28,98,94,65,84,-89,79,-19,85,-15,-77,74,1,-12,-2,68,100,31,18,42,64,-85,23,-78,-33,-66,5,54,47,80,-44,61,32,62,83,16,-6,96,100,-4,58,98,78,95,-9,92,-20,97,100,47,59,-99,100,80,53,97,100,93,57,93,73,35,46,2,98,100,28,13,99,98,-53,97,5,69,93,4,-29,-53,22,57,44,65,-17,90,100,37,6,-17,100,45,17,59,-92,-78,1,-82,88,9,18,77,-3,92,98,-32,88,70,78,91,-50,-36,5,25,-47,48,-97,64,100,72,100,91,88,100,91,26,-12,100,94,-4,81,100,-37,77,-72,99,50,100,-38,-98,26,100,-57,-38,55,-96,0,26,-37,87,99,-79,-4,59,63,-15,-14,95,-89,74,0,81,56,-87,36,74,-67,-60,100,-22,49,-45,79,41,-78,76,12,91,52,46,-93,-48,-36,-20,73,-82,100,97,51,32,26,25,-4,56,-10,-47,21,-15,-24,-9,98,100,-82,98,-89,-14,21,2,61,68,-44,11,93,-99,73,12,100,-14,74,99,21,86,83,-29,81,79,98,16,-18,79,-63,91,31,15,-84,52,99,-26,7,39,98,0,58,-69,61,47,91,-99,-76,-37,76,-75,-54,-28,30,93,60,50,-77,67,29,72,63,75,38,71,98,32,45,-43,-53,26,-67,98,99,-8,49,100,65,86,18,11,92,93,84,51,46,6,66,35,0,99,-2,100,92,-30,-78,-87,-43,67,-29,86,96,33,97,64,-38,47,15,-57,99,-38,56,96,-51,-33,82,98,82,77,35,3,-43,66,100,-84,-15,95,24,13,32,92,-46,-87,100,71,68,20,-19,91,14,81,100,-82,95,31,-69,30,99,-49,69,83,86,40,-80,83,36,-40,5,15,15,-88,83,54,-73,100,91,30,74,70,16,90,100,-64,-24,100,-10,95,16,-40,100,3,-5,-16,99,59,93,97,-96,-19,91,100,-41,25,92,78,-26,12,51,94,62,-29,-91,60,23,83,1,88,-5,57,62,81,37,-19,89,63,75,-36,-99,7,99,62,-94,6,51,-10,-15,-96,96,95,-59,61,-86,51,81,1,96,99,50,99,54,79,73,68,74,90,24,100,-13,-32,-78,-93,-59,3,93,98,57,63,-50,28,77,50,100,92,49,-54,-26,79,66,98,-70,23,-62,-88,100,40,58,92,76,99,75,92,-79,24,53,71,-54,52,66,72,69,82,87,-23,-27,82,57,9,-88,100,63,-10,7,20,82,80,-18,-66,-59,100,-73,96,-48,22,10,92,-8,67,54,33,76,-57,-51,45,38,89,92,84,-69,-4,-27,100,-88,-4,7,94,34,20,-32,81,46,-45,64,100,-99,-59,92,97,56,100,-3,-67,69,98,53,45,100,83,42,76,3,100,-88,80,86,100,60,76,28,82,99,68,100,89,92,72,84,-3,-91,45,-43,44,27,95,-40,52,78,92,53,-88,-17,30,-9,-81,61,47,100,100,-41,83,-56,100,-85,99,61,83,-90,37,-91,26,-68,41,-93,-40,-37,-16,71,49,-46,96,81,47,97,66,8,-74,90,59,-35,94,-98,51,57,100,67,91,84,-61,100,-7,83,100,-59,-30,-32,-22,84,-51,0,19,24,-74,100,85,99,85,7,99,58,58,90,89,44,84,99,-44,79,51,-23,96,7,97,-55,-29,74,95,91,79,-69,62,92,30,88,4,40,-43,72,22,41,73,14,13,-76,10,-99,25,36,100,96,11,-8,91,87,0,47,-23,83,3,69,96,-31,13,100,-20,-3,-60,-57,66,48,98,100,-14,84,22,28,26,34,100,51,90,-3,-77,-47,90,-47,-79,99,-18,76,-68,54,62,55,30,57,100,-18,67,99,66,82,99,61,-53,41,92,100,77,100,97,99,6,72,10,77,19,-10,-73,-26,18,83,83,63,100,56,100,92,37,8,-28,60,66,-40,94,47,-12,64,11,-67,100,-54,-16,70,0,77,85,15,12,-36,3,18,-31,15,-93,97,33,94,-25,64,89,88,-57,-58,90,39,58,61,-37,-95,100,94,36,-68,99,21,39,83,65,23,100,63,-28,97,-44,15,-30,-10,77,-78,-38,24,100,-98,42,2,81,12,55,87,84,-67,-18,76,-64,-42,60,-63,45,90,60,-4,98,79,95,90,66,71,51,66,-30,80,95,-81,23,7,-9,62,75,-24,-22,64,40,83,50,21,70,89,-1,99,77,34,100,17,-77,-79,95,33,68,92,93,100,-39,-2,19,-20,17,100,-47,97,90,-35,20,14,99,7,85,62,54,-22,-8,-72,1,34,95,98,-66,-77,-70,-98,72,64,95,55,-92,95,99,68,18,20,89,4,100,98,-79,100,54,72,-50,97,-2,14,95,38,95,-41,89,-62,53,-69,-81,96,92,90,-39,-41,100,57,4,97,9,75,-95,20,35,-17,47,84,23,-90,73,100,-54,82,61,100,89,89,40,91,95,55,-76,43,-96,-37,-85,94,-72,64,-13,43,100,21,100,-88,-58,65,59,52,77,95,98,32,61,78,98,80,4,100,-83,91,-26,63,-46,0,91,-57,93,77,25,49,64,-92,96,83,80,64,92,100,-70,-31,96,-16,-4,100,83,-11,84,71,90,99,-25,-25,100,72,85,-8,94,92,-9,100,32,27,-87,66,-63,38,24,-47,100,-71,100,20,87,100,45,100,20,73,60,18,86,-4,100,10,100,68,-88,-66,22,27,63,72,79,96,98,72,100,92,100,-78,39,55,92,-64,-79,97,96,14,93,37,54,29,99,72,-29,-4,19,97,-6,-4,11,96,-67,92,95,63,6,82,-91,98,81,98,88,63,70,-1,-91,98,75,22,16,95,-67,-11,99,-18,-64,51,50,100,59,99,-88,51,96,87,78,96,38,100,29,-73,-53,-12,-27,-93,-87,97,54,-6,89,-59,72,-5,59,-3,32,87,-57,100,30,-3,54,-11,97,18,97,95,81,85,-5,25,12,97,25,31,95,-35,16,78,-80,-56,52,79,79,-58,-14,4,68,58,96,-88,-90,100,94,98,78,-19,-70,-17,79,99,-13,86,92,93,36,62,100,33,10,-57,46,98,99,-5,88,95,60,100,95,99,73,-18,-36,-69,-19,99,79,57,-52,-47,88,43,69,-12,87,99,-99,98,73,63,87,72,42,70,99,100,97,-31,70,82,37,100,90,76,10,54,66,68,52,98,99,-87,26,-22,49,-35,-34,100,1,38,72,-98,79,88,82,93,-45,-74,-55,98,91,95,-88,-52,85,-47,-61,-35,43,-95,80,31,94,47,-79,100,94,100,99,60,39,70,32,57,54,-56,96,-13,85,63,83,-14,99,100,84,94,95,-12,49,25,64,-12,100,97,83,94,76,5,97,-49,-82,94,82,53,91,100,96,-79,0,18,51,100,91,32,11,10,100,9,100,99,98,95,100,47,38,33,85,44,85,49,74,-9,8,100,21,-87,-41,68,97,-90,64,43,-6,-21,100,49,45,-86,-13,94,98,99,91,4,92,88,31,-5,91,-52,13,78,100,-39,-66,56,58,74,87,-63,92,90,70,84,71,100,91,-7,47,89,51,100,-69,-73,3,-25,7,49,99,100,93,69,95,-44,-5,0,-56,38,51,100,26,68,94,-13,77,94,65,-88,41,93,25,38,-21,29,98,-60,40,89,100,93,-61,48,92,44,-31,9,36,72,-64,87,100,-97,-17,-33,100,-17,-82,48,-88,13,100,86,-74,62,18,83,99,40,-73,-99,73,58,9,-74,56,30,-11,7,95,39,99,-52,100,43,-85,-1,57,92,68,73,92,76,65,0,-97,-2,-91,45,21,70,72,58,82,-98,100,91,-63,23,77,37,77,90,89,-29,85,-7,9,93,63,30,98,8,60,-70,100,-49,90,3,95,96,-45,25,79,-96,60,63,-91,97,-35,45,49,10,76,68,87,50,90,-6,-11,100,84,98,-27,52,45,15,35,98,-20,29,-62,100,78,91,-52,15,-71,98,42,97,-89,60,88,99,91,96,60,-3,47,64,-17,94,-60,-93,-27,43,69,91,85,34,55,96,84,-77,33,88,-18,86,92,-88,1,18,-11,68,53,-86,64,-48,83,-92,96,62,-1,98,98,-92,40,-99,100,-64,53,100,95,38,92,30,8,61,9,23,92,-53,36,66,8,98,97,100,-24,-30,59,79,-22,85,-31,100,55,76,68,30,59,95,86,90,93,29,-61,99,89,-79,8,100,28,-93,-13,94,92,96,72,33,26,-58,-90,84,85,-23,5,-17,92,-53,11,-37,90,80,73,97,95,100,-33,64,37,61,100,100,66,49,100,24,28,79,80,82,99,5,-11,98,53,-28,-8,67,76,93,-50,36,-83,38,67,-38,-93,74,-6,56,99,62,94,31,-50,9,70,55,84,82,-4,-36,-55,-7,89,89,79,97,-10,1,83,67,81,-33,92,92,80,73,97,44,100,-88,100,-31,-88,100,63,-76,-58,100,88,60,98,93,95,100,52,100,100,9,-20,100,59,-79,-43,-17,27,91,100,-93,93,88,49,-76,78,19,91,-20,93,61,71,4,-46,-86,100,1,21,-29,81,-61,-55,-80,80,5,90,26,-73,99,91,-62,62,39,34,76,-45,86}
{100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100,100}
Returns: 5.06122967755E10
{4,-84,-52,-88,92,-100,76,-98,82,-45,-57,-99,-33,-64,-58,-97,83,-65,-27,-97,92,92,-94,32,-60,-62,-100,51,-100,-61,-33,-68,85,2,-94,-5,-95,-61,-48,-86,92,-89,-84,3,42,-15,77,9,-79,40,90,-100,-100,7,-4,12,-73,-57,-76,-32,26,-60,-35,-79,-1,-12,-63,-90,-96,-90,-17,-97,-51,-92,-87,-97,-77,80,-27,-45,-35,-94,-77,-78,-99,24,-59,-100,77,-88,-97,44,-30,-67,62,20,-71,-37,35,-95,13,35,-86,87,-89,2,-37,5,-83,-15,14,21,-37,43,57,1,-21,0,-65,-71,-88,-57,-100,-81,-14,-100,-97,-38,49,39,-91,-87,47,75,-65,-83,-96,93,-30,-74,-75,-59,90,35,-28,-39,-16,-85,31,-44,-94,59,-50,-96,33,4,-81,13,-100,-95,-88,66,5,65,-13,-89,-98,-99,-100,-72,1,73,-7,-77,11,-18,54,90,-99,-81,-59,-100,-68,-8,-86,-17,73,-100,-24,-95,14,-100,94,-67,33,-41,-96,-91,-82,-53,-82,86,-91,-100,-90,21,-78,20,-95,-40,21,-79,-96,-96,-52,-88,-100,-3,53,-5,-82,74,-59,-96,-94,-24,19,-80,37,-85,-76,-57,-57,-83,-35,71,-84,-96,66,-57,33,-31,-24,-79,-35,47,-36,57,87,65,-96,-69,78,39,80,-31,-92,-92,-80,-100,8,-96,-58,-100,-96,-64,41,54,-81,-63,84,-100,66,-24,74,-66,-95,-99,-14,-70,66,-74,-75,30,-73,-100,15,18,-53,-93,-35,-94,-11,-50,-38,-43,91,-93,-57,-46,81,-97,51,-52,18,81,-97,-48,86,68,-98,-100,-3,-44,-50,4,-71,-4,-72,-32,-17,-95,-96,-12,-12,23,-76,-96,-76,12,-91,-18,-74,-55,39,-50,-22,-39,-67,-59,-2,-91,-82,-25,-23,-61,-14,-66,-21,0,8,82,25,2,-21,-97,15,-70,-21,38,-14,-77,-68,-96,16,44,95,-62,-26,-98,54,-85,-93,-87,-29,-92,-88,-99,15,-89,38,44,99,-34,-98,-91,-94,-99,82,-100,49,-84,-16,-78,-74,-79,-91,-58,17,34,74,-70,17,9,82,21,-46,-34,-63,96,4,-48,-94,-100,-41,78,1,10,-51,-100,-54,-90,97,-73,-99,-52,-94,-85,-4,-83,-39,72,-74,33,98,-97,-100,-90,-93,-88,-41,-85,27,-33,-100,38,-89,-27,-2,-85,72,23,-87,-58,-48,-30,-32,-51,-11,-5,-70,-82,-37,0,72,-80,85,-78,-93,-90,-100,1,-100,-9,-95,-92,8,-67,63,-8,-49,-92,69,-79,-10,-100,17,-100,56,11,-33,28,-87,27,76,59,50,-63,-33,-100,-95,-73,18,44,-89,96,16,-95,-100,-58,-98,-24,-53,-100,-11,-36,-45,-51,-40,-84,-98,-74,-99,-21,33,-92,-94,-69,42,-28,-42,-51,-73,-95,-61,-17,-87,8,-64,-99,-79,-33,-93,-92,6,-78,-100,-32,-82,-68,60,84,-47,-52,-49,-57,-94,68,6,87,-67,35,55,87,9,-77,-100,-97,-67,-100,-92,-32,-86,25,-60,49,-95,83,-23,-100,-16,-100,-96,-99,-83,27,-86,-32,-65,-38,57,-100,-2,-60,13,-99,36,-86,-95,-31,-25,44,87,-24,62,-70,-8,-99,58,-44,-70,16,-98,-44,-80,-100,26,-84,-96,-88,-100,-75,65,66,-67,-84,-58,-100,-95,25,40,-100,-90,-91,-88,-100,-3,92,82,-80,6,-97,-98,48,-97,-67,-36,-27,58,-84,6,76,43,48,-66,-98,87,81,10,88,62,-96,38,12,-100,-100,-72,-28,-100,23,-30,36,-98,-81,-77,-5,-86,-100,-98,-89,-24,22,-97,31,75,51,-100,-100,-100,-62,-79,-99,-15,-84,-100,-36,-32,-100,16,31,34,-91,-62,-99,-99,-90,-12,-72,5,-59,-87,10,-99,54,98,-60,-100,-27,-97,20,-92,92,-6,-68,-24,-83,-82,9,-35,-5,-38,-45,-48,-8,-76,-91,13,-92,97,-57,-100,19,-4,-100,-27,-22,-7,43,-98,-95,-90,-58,74,-97,-98,-93,77,-92,-100,-40,13,35,-55,-59,-92,-21,82,24,14,-76,-85,35,-98,-89,-99,-97,-98,-100,19,-22,-100,-92,-97,-70,15,-99,81,-55,-78,88,46,92,60,-91,55,-100,-99,56,-11,32,-96,-23,-63,39,-63,-100,61,1,15,-74,19,-45,-7,38,-12,33,23,-78,-92,41,69,-7,-26,-11,-100,-57,-95,-61,-96,-94,75,-100,-50,86,-58,29,-40,-100,-62,-55,58,-24,-99,-96,-73,49,-47,31,-75,-64,-87,-54,-72,-98,-74,-98,-98,-93,-79,-94,-100,95,12,-82,-94,35,62,-21,42,-99,-93,-100,-98,-76,-84,63,-92,-92,-68,-73,-100,-99,80,-54,-84,-61,-93,-99,-44,-66,34,-61,-74,-35,-71,-17,98,35,-59,2,-50,-91,-68,-100,8,-4,-54,-85,-100,-43,-64,44,33,-22,39,-74,10,-88,-66,-73,-75,-93,-14,-99,73,-83,-66,76,89,19,73,-96,11,-72,39,-63,-69,-19,-95,-83,-68,-84,-2,-38,-41,-69,12,55,-91,21,-100,7,-43,-41,16,14,-27,-95,93,-73,-55,44,-72,-97,-77,-91,66,-100,88,-43,-98,-87,69,24,-87,-9,-8,10,-37,-99,-1,-67,-49,-100,-67,-21,-37,-96,-97,-3,-85,61,-45,-99,-49,-27,-80,-85,93,-69,-5,67,-32,3,21,-2,-97,-72,-92,-100,-88,-41,-100,-65,-56,42,-55,-99,40,6,-77,59,-82,-100,-69,-100,-75,-91,89,-77,68,64,-32,-56,64,4,-38,5,31,-91,50,-97,-96,-100,-49,95,-95,58,-64,17,35,-52,-32,-25,59,8,-66,52,-91,-57,-98,-100,62,-100,-99,-71,-99,-85,-83,-46,19,18,-22,-2,-48,-97,24,-62,24,-88,-67,-42,-40,-97,-69,-98,73,73,-99,-66,8,-97,-50,11,-45,78,65,30,34,-99,14,61,-60,-42,-76,-75,-85,-59,96,3,-96,-65,-41,-42,-58,-70,-62,51,63,17,-70,8,-67,65,-7,-6,-99,-77,-84,-7,9,-37,-100,-89,-82,-100,25,-32,-97,38,-100,-94,-14,34,2,-48,-90,-24,-18,-28,-25,-51,-68,41,-94,-67,57,-80,-94,-45,-87,9,49,98,-87,-93,-88,-79,24,-98,13,54,-84,-45,-46,-59,-37,-50,61,-6,-9,-24,-91,-54,-99,-28,-74,-90,-81,76,-60,0,-70,23,-80,-99,25,-24,-90,-74,0,-39,-68,30,-70,-97,-95,60,17,3,-94,-100,-29,-73,-62,-63,-68,-100,42,-62,-29,-33,15,-28,-25,-89,-78,-11,-69,14,-96,-93,-93,-96,-11,-60,-64,-59,69,-59,-34,5,-98,-95,25,-89,-97,80,-18,-15,-63,-91,-33,-98,-64,-88,-65,66,-61,-10,48,-12,92,73,-100,76,-47,-35,-90,50,95,-14,-37,35,46,-100,-97,-20,96,-88,95,-75,-37,23,-86,-26,36,-99,-90,-100,83,-74,17,61,-97,-95,-33,-99,-34,-69,-100,-33,-24,74,-13,-1,30,-100,-61,-87,-40,-91,-73,-90,-93,-34,-99,-100,-93,-89,-100,-64,1,42,-37,-57,-98,-20,52,-59,-12,-66,-77,76,-39,-38,-67,-73,88,-99,-98,-3,-54,-18,-41,48,86,-16,-74,71,-2,-93,-80,-82,-100,12,45,95,-76,-100,-17,-60,-28,-67,97,60,6,51,-50,-86,-44,-97,-98,-90,-100,7,-66,13,-25,-76,-100,41,19,-45,-94,13,64,-87,83,-96,-67,-79,-96,-98,-91,23,-34,18,-92,0,-41,-3,2,-66,-100,46,75,61,-20,-99,-18,-88,32,-66,-14,-100,10,72,-37,-80,0,-74,-83,48,-69,-56,-16,-100,-100,-90,-75,-98,-99,-56,54,-19,7,-14,-97,8,-67,-26,-91,-82,-99,-96,-90,77,17,-85,-98,-98,-50,12,-98,-87,-35,-98,56,7,-49,-35,-79,-82,38,33,51,73,10,-81,-78,-81,-25,86,-80,-88,-3,-90,-100,4,-30,-99,-47,29,-28,-87,84,-94,31,-100,-45,-90,-57,-95,4,31,-85,-46,-25,-89,-67,67,-81,-12,-98,-100,-92,-79,-23,-12,21,-8,-87,-87,52,-47,-4,-96,-100,-52,-98,26,47,-85,-99,-87,-42,-100,-72,-77,90,67,86,-100,16,-33,-79,36,-100,-97,55,-10,-37,-97,65,-81,42,-35,-8,-12,96,-19,-48,-10,-98,-63,28,71,-73,14,-26,-13,42,-27,98,-97,-85,-33,-99,-95,-12,46,41,-86,-100,5,-66,1,-70,79,8,85,-13,-83,-12,-56,93,42,-85,-77,40,-71,-90,-71,-52,-79,-98,38,-32,-91,8,-93,-98,-19,-8,-96,-93,-100,-82,-75,8,-100,-25,-84,40,-88,-67,-89,-53,-79,-66,-85,-84,49,29,-98,-95,38,34,-99,-99,-41,-71,-9,-10,-84,-97,45,89,-87,57,-74,-24,-27,-93,-62,-61,-40,33,-70,64,-18,21,41,9,-84,94,-56,81,-91,32,86,-31,76,-33,14,-4,-96,-49,-100,-35,-41,-17,-98,7,-100,-86,-65,69,51,-75,-100,-96,-100,-93,-57,-100,-43,-48,63,40,26,-84,-97,-82,-100,-98,72,-52,-76,47,-87,-72,-100,61,-51,-56,51,-21,-69,39,-95,-72,-21,-90,-98,-27,-94,-60,-87,-51,-63,-98,-95,-6,-79,-97,-98,-100,-89,-49,-97,-41,-18,-100,-1,-8,-51,58,-74,-77,47,20,-35,31,-7,-98,-11,-92,-99,-100,-100,74,61,65,-31,-33,-96,-96,-64,-96,21,-2,-39,73,-95,11,63,59,65,78,-13,-82,-99,-54,-50,-98,98,-8,-87,21,-97,-100,88,-53,-79,-98,-23,59,-91,-77,-97,-67,-76,-89,-59,-70,93,35,-8,-1,-68,78,75,-100,30,-91,-100,-54,65,-99,-42,-77,-100,-35,-99,-53,-29,-68,71,-85,-74,-16,-91,46,-53,-73,-38,-44,-100,-41,92,-93,24,-83,54,20,-96,-68,1,-77,75,-89,-96,93,-19,-47,-33,-90,-78,-19,-68,42,-86,-93,28,-4,-20,-24,71,-1,42,-93,-87,-89,-39,-59,-62,2,25,-52,-99,-100,-34,-22,13,97,-78,76,61,-57,-99,-60,-43,-100,-85,31,-24,-27,-20,-93,-26,8,50,-74,-83,-10,-21,-94,25,-27,-58,-98,-90,-10,-62,-79,-85,-91,38,-97,-94,-92,-11,-99,-100,44,-71,15,28,-77,-64,-25,-31,60,-27,-31,-86,-14,-62,87,-30,-42,-39,-61,44,-30,-43,-81,-44,-8,-96,18,88,-5,67,-56,-34,-89,-23,19,53,-42,-100,-10,69,-94,-71,-99,-99,-73,-96,34,-60,96,-98,35,-98,-35,75,81,76,-61,48,-71,-94,5,-53,-15,-98,20,-33,-84,-100,42,6,-40,-94,10,-95,41,81,46,-91,-94,-22,-96,85,-15,-71,-14,-41,45,-24,6,-28,-100,-86,-95,-100,-82,-100,-20,-90,81,-6,-93,-30,-87,-99,-2,-7,91,-92,-93,-95,-95,-99,-65,-90,-44,-55,-99,-90,44,-10,-86,32,-85,3,-16,21,-24,60,-3,86,-69,-98,-65,-97,-85,-48,-100,36,-87,-71,62,-28,-99,-19,-83,73,-27,95,-48,-95,-82,0,72,5,-83,0,3,28,-70,-94,-100,75,-92,-28,-98,-81,-50,-45,-100,-88,77,-40,-39,-46,-100,-47,-78,89,-89,72,-58,-72,-14,-12,-36,-21,-66,-99,93,-83,-71,-55,-41,-30,-90,-19,-11,4,-76,68,-68,-89,36,53,-1,31,-98,-100,-46,-82,43,-19,-100,-12,-93,39,-95,-75,14,-42,0,-35,62,42,70,-51,-100,-61,-26,-99,-90,31,-68,43,-30,-59,-100,-100,-80,-33,23,-73,-99,64,34,-26,-99,-95,-95,-100,-93,-99,-38,-59,-10,-76,25,-70,-29,7,-92,85,-96,-27,-25,-86,-77,-70,-13,-65,-80,61,31,20,-97,-73,-90,86,-15,23,-98,-100,-45,15,-22,85,67,95,-96,-52,-40,1,-83,-5,-9,-96,-88,-61,-60,-98,85,-86,-100,-49,-99,-88,-57,-97,28,-90,96,42,-55,-78,77,-46,-4,-91,-2,13,-100,-100,-95,-73,-75,-20,-100,-98,-28,76,-31,77,-82,-80,-41,-58,-90,26,-29,-4,-100,-53,-19,-49,39,66,0,-47,19,-37,-38,-100,-35,-90,88,90,41,-20,-15,4,37,-99,-99,80,-87,-21,-44,-79,-55,-96,-84,-100,-90,-47,-9,-86,-95,-47,-99,-52,43,-100,-81,-99,46,-100,-42,36,18,4,-27,-15,66,-81,-55,97,92,-34,-45,-64,-33,-56,61,-100,37,-98,-100,-49,-46,-7,-32,-47,68,58,-93,-96,-5,-16,-60,-84,-37,-99,3,-94,64,32,-82,-99,54,-98,15,-82,19,-89,-100,-100,17,-15,69,-87,39,88,-80,63,-87,-6,-96,-83,-98,-93,-44,-100,-98,-79,-17,-27,-64,-69,-92,54,-53,-74,-99,-59,-98,-56,-73,-100,-91,-100,21,-85,-99,-58,18,-62,81,-84,-48,77,-77,-88,-69,-29,-98,36,-83,81,-70,-30,-90,-18,-26,-81,-88,-80,-100,-95,64,-89,-38,-29,-94,-81,-27,-52,-3,30,-20,-80,22,-74,85,-99,-92,-100,-6,-36,-52,43,-100,-100,-66,-93,8,55,-82,-48,-99,78,-92,-99,-34,-8,-95,-11,24,-7,-76,-80,-41,38,18,-27,-77,82,-26,-96,-96,-100,54,3,99,-93,-37,-82,-12,-90,-73,-84,-97,-100,-98,-63,68,-100,14,98,45,-95,54,41,20,-93,64,-32,-81,-31,-99,-60,-97,-52,-99,-93}
{-97,83,-75,-90,-67,-91,-25,-84,-49,-66,-36,-7,24,-1,27,-79,-100,-100,-100,97,28,-88,55,-63,-98,-100,-67,63,75,-76,-97,23,66,-99,-17,-35,-75,-86,-60,-42,-24,-86,40,36,77,-92,75,-72,34,-89,-91,-25,-88,0,-57,-99,-40,47,-74,-20,-100,92,-97,27,-28,-72,-100,-78,-22,-82,-100,-18,15,-7,25,39,46,15,69,-99,27,-70,-63,-58,67,31,-25,-93,-68,-97,31,63,-100,-21,-98,-50,-62,-71,-9,-88,13,-98,81,-85,-96,-41,-33,-80,-92,74,-96,-67,-84,-97,85,-97,-100,-89,34,-94,-96,-83,69,-69,-11,-15,-84,-38,-96,-91,-74,-74,-36,25,-87,79,-88,15,-48,-64,-35,-55,-58,-73,-36,-29,82,-81,35,-89,1,-31,52,48,-9,6,-100,87,-73,-11,-17,7,38,39,-77,-26,-23,74,-85,-12,-94,77,-69,-67,-96,-76,-91,-94,-73,-94,-92,-99,63,12,-68,-63,-24,-91,-54,20,-83,-46,-99,44,-78,-100,-94,86,50,-40,-100,6,38,-3,-94,-74,-88,-24,12,-46,-92,-96,53,-22,-99,-32,25,-100,52,52,-99,-43,-98,75,-100,-92,-60,69,-13,0,-17,-28,-100,-54,-100,-91,90,-95,-98,-96,-63,3,64,18,-41,-79,-72,5,90,27,-71,-3,77,-95,-96,-83,-100,-100,-95,-60,17,-16,-60,-97,-23,-3,-56,-29,-100,-2,-97,-12,-59,54,-100,87,-56,-80,75,55,-4,-51,-64,-95,-49,-46,-69,-91,-87,-91,-95,-29,94,-77,28,-64,-8,35,-92,-22,38,89,42,59,-88,41,-74,-53,-90,35,24,-63,-12,52,-72,97,-99,-98,-90,-60,-45,28,-62,-81,6,-98,15,-94,-71,-11,75,-92,-90,-57,-95,-95,-97,-95,24,-36,7,41,78,-84,-100,36,-6,-95,-1,-100,-87,-99,-28,-60,-100,55,88,-77,-23,-100,-89,-76,-8,89,78,6,78,-95,-97,-70,-100,76,-52,-100,6,-100,91,91,-95,-95,-92,-90,-49,68,-25,-62,-82,-50,-96,95,60,-82,-65,-57,-16,-95,-85,-91,13,95,-93,-42,-88,89,-96,28,-69,-97,20,-50,-57,-37,-36,81,46,-94,38,2,54,-99,-83,-75,-42,69,-86,-45,-70,29,-100,-71,67,-57,-69,44,60,-95,-88,54,90,31,40,-95,46,-13,-51,-60,-15,-66,-21,-82,-32,-69,-57,-96,-64,1,-97,-18,-96,-100,20,-100,27,-17,1,18,-100,35,-89,24,-74,-13,-92,-10,-92,-25,-88,77,-14,-15,12,63,-99,-85,-77,9,-100,44,-63,-58,-55,34,-90,37,-76,-16,22,-90,-4,-100,21,42,-10,46,-91,-95,-87,-20,5,46,-92,42,19,21,89,-80,-95,-12,-33,-29,62,-74,-94,13,-100,-81,52,-10,-100,-99,-24,23,-91,-84,40,-53,-65,-99,-97,-46,24,-87,-33,-49,51,51,-98,-23,42,-58,70,-84,-92,50,-71,-86,-2,35,-99,-82,-93,88,-95,-34,-72,-8,-58,-94,23,-90,-99,-65,50,-23,8,-8,24,-95,-96,65,-71,-18,-74,-43,-2,-77,74,95,19,60,-75,-100,-33,-96,-41,85,-27,-34,65,72,-99,-100,-62,42,18,3,-96,-100,-99,-77,-63,37,-46,-100,-92,18,-48,71,-100,-73,-78,54,-79,-97,-82,61,-93,-35,-100,-67,-13,-88,-29,-98,93,67,20,64,-100,-67,-24,-28,90,-41,-26,-94,16,64,31,4,-97,-30,1,10,-24,-34,-93,63,-43,-82,86,-18,64,-56,-100,-96,-74,64,92,-39,-20,-84,-83,36,35,-39,20,-79,-37,-74,-71,-90,-100,-2,-69,-93,59,-64,-91,-99,60,16,78,-93,-68,-68,3,63,50,90,43,19,-98,62,-100,76,-24,15,-81,-87,45,-85,-63,-100,-91,94,-84,88,-96,-76,-98,-51,-7,94,-54,-99,-38,-96,94,-53,-61,-92,-99,-73,-87,-80,-98,-46,-67,28,-81,-10,-82,-100,-23,-15,-13,-23,-96,-49,-88,-68,-95,3,47,-74,-57,-83,28,-90,59,97,75,42,-16,-99,-9,45,-65,-5,6,-22,-29,-12,94,39,-72,79,-49,-38,-83,1,3,-99,-60,-92,-29,48,-13,-100,-96,79,-97,-87,-27,35,-91,-100,-84,16,-58,-91,61,-80,34,-40,-29,89,-62,-82,-83,-13,-35,-99,16,-15,-99,-97,-87,-60,-56,68,-98,91,-92,78,55,-44,-26,-71,70,-96,-94,64,-29,-94,58,48,76,20,-8,-61,-77,-99,-43,-100,-38,-27,77,-77,-39,37,88,81,-4,-90,45,40,-75,33,10,-54,-88,-96,-86,-92,-5,-100,-27,-22,-23,-89,-97,-74,-78,79,80,-41,29,-43,-70,-29,-100,-76,-95,-96,46,84,6,-66,-100,-88,-16,53,71,-79,-23,-99,-84,37,-38,68,-100,3,-82,-55,-88,-96,-58,56,-53,-96,-44,-98,-14,-88,-50,22,-100,-97,-78,-18,64,-18,37,54,-100,-76,-98,-95,-100,-63,-85,-26,-2,66,5,-99,-60,-31,-34,34,73,-32,-53,-87,82,-99,-8,41,-100,89,-94,-100,-36,28,41,-87,1,70,-43,-99,34,7,-29,-65,-59,-98,15,98,-99,-51,48,60,-99,58,-100,-31,-100,-73,-22,-28,-99,74,-89,-100,-75,-40,-97,-89,-99,76,56,-97,-81,83,-74,-94,-55,-23,-18,-34,6,-99,-69,-100,-100,63,-41,-100,89,-8,24,-34,-89,-5,-32,-67,-41,93,-99,-10,-62,65,36,-100,-81,-89,-87,-74,-99,-27,22,34,-90,-51,-52,-70,36,-89,65,-34,32,-3,-17,-15,67,-39,-75,-90,44,95,-64,-47,-35,-20,-62,-83,69,-60,-100,54,-100,78,-78,42,43,27,-16,-65,-54,-29,-98,-13,-94,9,-51,-51,29,-99,69,42,-93,-100,8,-36,-44,-98,-93,-86,-97,-85,9,-99,-100,-42,92,-38,-11,-46,13,-89,-85,-81,-5,-46,-23,-63,-58,-91,73,51,-84,-92,-2,-100,-80,-67,-55,-4,-89,-100,-3,-44,-23,-100,-92,23,92,-28,-93,-91,-42,-91,-82,-96,6,-86,-100,-6,11,-86,-100,19,25,-63,92,55,-84,-16,47,-36,29,-98,-99,14,26,-99,-58,-85,-53,-47,-88,-75,-80,28,-90,-78,48,-63,-67,50,-92,-37,-100,-96,-100,-26,-31,8,48,-76,36,-78,-100,-5,80,-100,-52,-22,-65,31,-99,-92,-100,-52,63,-27,-78,48,-5,-14,-26,-86,-100,76,-94,-41,-99,50,34,47,99,18,55,-100,63,74,-43,98,-62,-99,-100,-25,-22,-31,9,-26,38,20,38,-100,-69,18,15,23,68,19,30,-52,16,-13,-5,-22,-93,-78,30,-98,-50,-25,-21,-81,-51,-86,-95,37,-91,-37,22,28,38,-37,-75,-91,-30,88,-38,64,-97,59,59,-15,-39,-73,-93,27,-31,37,30,-93,-49,98,-40,-98,-36,30,28,-90,-36,-94,-100,-98,-47,-95,23,98,-60,-73,-100,52,-91,6,-31,-95,-79,-100,40,-100,-87,56,74,-74,68,80,-51,40,7,-100,-100,-91,-40,-100,51,11,-75,33,-86,-78,-100,-4,-61,-96,-16,5,-99,-86,-22,-30,-77,-29,46,-7,10,-77,-100,-78,-98,-68,-18,63,-26,-100,87,-99,-72,-76,49,-97,-53,-92,-100,-78,-49,-97,67,91,1,-98,-100,59,-6,-53,-70,73,-92,-38,24,-26,-86,-66,-94,-71,18,-79,-20,-70,-92,14,-99,5,-89,-78,-78,-43,31,-100,14,-95,-87,56,66,-44,-74,-31,-76,-100,47,-35,-100,-2,-91,33,-80,61,-100,-4,-15,-60,-79,31,-84,90,-94,-83,-41,79,-44,-86,-2,-17,-24,-91,-87,-44,48,-90,-100,3,-88,17,-45,-96,24,-6,-78,-97,-18,50,95,-33,-93,-47,60,-93,52,16,-100,-79,-75,-30,38,79,-29,2,76,-65,-62,80,-100,-58,-41,-88,3,-59,-99,-81,-97,-99,12,37,-88,-27,-98,-60,12,74,-99,-100,-11,-34,-4,-98,27,-77,-100,48,-99,-38,-98,-51,-83,4,-51,-100,-98,-1,-96,-47,68,-86,-66,-78,18,26,55,-75,-44,-33,-75,-100,-5,81,-98,-100,-98,24,-96,-98,21,-14,78,-98,76,-100,-37,-63,-3,-58,-89,-88,-98,-73,-63,-24,49,-100,-9,-99,-57,-93,-12,42,26,-32,93,-100,-26,-99,-98,-89,94,-17,-52,-100,19,-43,-78,18,4,49,67,-69,-55,65,-29,-67,-63,-83,-95,-16,-81,-30,-27,-11,-49,-90,-45,-54,-81,-91,77,82,3,-6,-23,-96,26,-35,-92,-87,-17,-100,19,46,-50,-81,-95,-98,1,-87,56,10,-46,3,-29,55,26,-90,67,-78,-72,-97,-34,18,-55,-51,-56,-82,-100,26,-88,-92,-66,-30,-93,49,-100,-93,-37,-74,-72,-81,61,-88,15,-92,-61,-100,76,35,10,-100,-72,-46,-91,-99,66,67,5,-90,5,-83,-63,-71,70,8,-68,-34,-77,58,-65,-10,27,0,-17,-93,-40,-91,-98,25,-16,-34,5,-20,43,-100,71,-42,17,1,-97,-89,-61,-99,93,13,18,-96,41,56,65,-92,6,-55,-23,96,-99,47,-86,-36,12,-73,-67,-95,-20,-70,-100,-14,-51,-13,-100,-21,-93,80,56,40,-99,-78,-89,-55,-9,-50,-94,-54,-77,-78,-38,-4,-99,-92,-74,-100,-100,74,-98,-70,-51,-80,65,-70,-43,-9,-67,5,-84,-82,-28,37,2,-64,-39,81,-18,-85,-100,44,-4,-65,-61,-86,-100,-57,17,60,-29,-56,65,-74,-100,-89,-54,-97,31,-19,75,59,27,32,-98,-96,76,86,-78,-90,-98,21,1,15,24,-88,-44,-87,3,-100,-18,79,84,36,-76,-100,-78,73,-86,40,45,19,86,-2,-3,-99,-92,-91,-93,-88,-73,-41,-67,-98,83,20,-68,-7,-100,21,-55,9,-78,-70,-62,85,0,-100,43,-30,-99,71,29,-98,-82,-61,-84,-31,-34,-69,99,39,-31,-100,-74,-100,-64,-32,-35,-98,94,-97,-39,73,-34,-83,-53,-40,-22,-48,-47,-39,-98,72,-46,-84,-12,-62,-95,-16,-26,-99,56,-7,-81,-61,-95,-97,-81,-83,-81,87,-93,23,15,-64,72,-96,-89,6,88,-68,-87,-91,-100,-69,69,4,-79,-26,-38,9,-54,37,-44,-24,5,61,-71,-11,-86,73,-34,-54,-24,-36,-81,-89,-48,-6,-87,-95,75,-100,-17,-88,-6,-100,-36,74,-100,-85,6,83,-51,44,-95,91,-21,-99,-80,-97,-45,-87,-47,-27,63,-100,97,19,84,-100,-19,-77,-64,65,40,-100,41,-94,-41,-96,-81,-91,32,34,-13,7,-85,-45,-63,-15,-39,-53,-82,18,68,-83,-95,-79,-44,-96,-24,97,-92,-99,-13,-66,29,-60,-98,-79,-43,-97,-15,-100,23,-87,-45,-68,-59,-20,-71,7,22,-69,-58,97,78,82,-99,29,-91,68,-100,-15,-98,-62,-100,-71,5,-21,-85,-98,-94,-71,-67,-48,2,56,-86,-79,-25,-4,-100,68,50,52,-73,-100,-98,-93,-98,-44,18,59,-41,-89,-18,-36,-89,-58,4,-74,45,-47,-14,-72,-25,18,-85,-48,-100,-100,-75,23,-99,-79,-95,-100,-99,-93,-53,30,-96,-41,-48,-81,-57,-93,-95,-95,-23,41,20,-62,24,-97,-36,-88,-93,-100,-45,61,-63,-15,-8,-28,-93,94,-99,-79,5,-78,-92,91,-86,-30,2,-90,-99,-50,-55,91,30,-84,71,-73,-45,74,98,-20,-72,89,46,23,-38,-92,43,-27,-71,-58,56,-35,-98,34,-95,27,18,-100,-90,-98,-94,-77,-74,-40,-39,-73,3,-74,-86,-97,55,13,-72,-56,-84,-97,60,-50,-37,-58,-62,2,36,36,1,-91,94,88,-47,-98,-72,31,21,41,-79,-79,53,97,59,-57,-56,-76,-26,24,-79,-93,94,-12,4,15,-68,0,-6,-88,-71,-100,-4,-100,-86,31,-60,-89,-99,-28,-99,-89,-15,67,-69,-99,-80,-99,-12,89,48,-52,-62,15,88,-31,-3,-82,-62,-15,83,-58,50,-88,-66,1,-100,-58,-67,28,-90,-18,-9,-94,-4,-22,87,-10,-92,-23,-64,54,1,-100,-61,-100,-95,-15,-9,-49,-94,-35,43,-87,-89,11,-100,-100,-38,-71,-93,-100,-79,-35,81,-80,-68,-84,-42,-100,-44,-55,-7,-84,90,-99,-85,22,-26,-71,29,-100,4,-99,-93,82,-96,24,-82,-59,-99,-99,44,-77,-75,-64,55,-92,-97,-85,-85,-86,5,-91,-92,71,32,-91,91,-91,-100,-31,44,-82,-95,71,28,-72,-80,-72,90,-100,-76,-98,-92,-60,72,14,73,-85,-26,33,62,-100,-19,-100,-69,-61,-34,-45,58,-74,-50,-95,22,-96,-88,-5,-54,-90,-100,-80,68,-51,53,-86,5,-74,-20,-100,-85,-81,-77,-48,-79,-51,2,-61,-81,-100,62,-69,-99,-94,-41,-100,-26,62,-81,-95,-90,13,88,-33,64,-87,11,-99,-50,-94,-2,-91,-85,72,-100,-95,-43,-16,-62,-88,72,-62,-100,-6,-100,-94,-80,-48,-60,-58,-69,-5,15,-43,-75,40,-52,-87,-34,-36,-30,-85,48,28,-95,-54,-62,21,-17,13,-100,0,-15,63,-36,-100,-56,-89,-96,1,56,56,3,23,-91,-5,-96,-80,-97,-39,7,-92,-35,26,-55,19,96,-97,-73,64,-79,-98,-71,-100,-98,25,-100,-24,15,-20,-84,-72,-45,-100,-85,-97,-94,-92,6,52}
{23,66,-33,96,81,88,-73,98,-57,94,-99,96,71,100,87,100,97,98,94,4,98,69,-65,-50,-45,39,-25,-2,-63,38,28,84,6,32,72,-4,100,44,88,73,57,4,71,-89,22,97,-7,98,98,55,71,100,79,-30,75,63,83,98,-48,89,-24,28,36,-50,-73,-30,-55,96,-1,100,-91,24,38,83,86,-8,-97,-25,-53,56,72,92,100,100,-30,87,11,-2,34,-43,73,-27,96,7,-89,85,-79,25,-82,45,69,94,79,45,96,83,99,100,-65,-67,-2,53,97,-26,21,21,26,81,81,46,86,100,96,-30,95,100,82,28,-4,77,-41,99,88,-93,41,-22,18,100,80,99,-61,-68,68,48,81,49,31,-1,-80,-85,91,-35,11,90,-65,95,95,85,100,15,84,63,97,23,55,100,45,-2,90,73,-69,-29,61,-96,6,-10,100,81,-49,24,-46,88,-93,100,-37,93,76,16,99,43,41,31,23,-70,-4,84,14,-32,-6,92,14,-7,93,31,98,33,36,54,-58,100,68,81,99,100,62,44,-77,24,22,21,92,79,0,4,-17,87,99,49,83,-41,85,-21,92,100,-32,-2,-73,96,85,43,-89,-11,100,100,76,100,74,73,-56,-6,-91,-84,94,100,93,52,88,81,10,86,27,20,77,100,-34,-93,99,-59,-81,95,59,-82,3,64,42,99,14,80,54,76,99,86,15,97,92,50,60,100,-6,16,2,35,28,48,-28,79,18,-62,60,100,95,75,34,-85,95,-53,100,98,100,49,-18,88,43,1,100,-11,28,-84,12,45,-52,99,99,95,75,-28,99,52,7,80,68,82,24,94,12,95,18,-42,30,89,39,-70,-60,75,88,2,92,98,60,99,94,99,47,68,0,43,32,86,84,95,-23,92,73,64,-2,21,89,-92,72,59,-91,-41,86,53,100,92,-7,-42,82,89,13,74,-88,-47,100,55,-33,98,64,-36,22,100,-38,89,99,93,-66,96,56,71,30,-46,-51,81,-50,100,-26,21,-44,30,-8,-71,94,-31,42,74,99,57,-37,-35,50,64,100,13,92,59,97,81,45,-89,9,-30,-8,98,95,90,87,100,31,-88,-70,50,93,86,51,-5,-72,100,79,71,87,2,90,84,-62,99,52,100,16,68,-53,44,-89,73,100,73,41,18,50,100,100,20,100,6,100,88,78,-56,100,100,0,-44,-81,-94,77,82,48,93,58,50,57,81,21,86,90,79,86,87,70,-13,-91,99,-2,-40,0,41,95,2,-2,-56,82,79,-35,95,37,83,-7,-8,97,100,90,-48,79,17,62,26,88,-12,-14,43,-32,-5,-39,-94,84,23,41,0,33,55,97,-21,85,98,39,46,85,98,54,96,-16,41,-18,70,61,31,-20,93,87,50,16,-98,100,-27,16,19,22,98,49,86,-41,-42,99,-77,-81,88,-81,28,-20,46,96,29,100,95,33,70,83,-71,99,66,43,66,60,22,100,15,73,100,75,100,96,88,75,95,-14,93,-70,96,66,81,56,92,76,100,83,85,14,86,20,79,99,98,70,-18,-21,100,79,100,55,76,17,42,92,81,100,-38,98,94,100,-46,100,-33,-91,16,43,99,100,55,0,-71,-27,-74,54,20,76,-83,68,-93,100,49,66,100,95,100,57,0,79,69,100,-84,100,74,77,-38,-38,19,99,-37,71,93,28,83,89,99,-5,100,31,58,51,48,87,-14,86,15,72,22,-34,44,97,100,-31,-76,-94,93,100,96,57,-93,50,98,88,34,99,90,83,59,93,52,14,100,95,-56,-48,-15,3,58,100,28,31,96,60,92,100,-74,93,92,84,72,62,48,97,-78,94,7,1,39,87,89,42,79,73,93,91,99,100,55,98,27,-41,97,97,-78,-76,48,85,35,100,3,100,100,-61,84,-37,95,-58,-33,99,63,22,-22,83,5,100,-43,93,54,52,4,99,72,7,82,5,87,-40,-84,-6,-64,36,-2,-22,-37,81,99,100,67,-49,93,77,-80,12,78,-6,-91,-74,83,31,10,-81,97,100,-22,16,66,68,22,97,80,75,83,-59,22,93,100,61,95,96,87,91,-27,-14,-79,94,98,100,84,-55,62,57,5,37,-27,97,77,17,58,-2,91,-76,-34,-28,46,95,-81,37,39,37,93,-85,2,-43,36,-32,98,40,36,52,95,81,93,97,70,-37,30,36,94,97,-60,-74,30,90,100,79,96,75,63,100,24,-78,48,34,-29,-25,-10,77,74,100,-83,66,26,66,92,91,99,0,95,-52,83,95,14,100,23,8,99,99,96,-87,73,87,79,37,25,70,16,-54,47,100,77,87,97,6,80,40,-32,-70,48,-79,100,22,96,39,66,-32,-9,-47,100,44,-39,96,94,72,100,99,-52,67,45,30,-69,100,74,99,40,100,94,-98,89,42,-49,7,-78,69,55,54,98,98,71,21,14,83,-48,100,88,100,91,99,47,-31,75,91,-88,99,61,35,20,53,100,-42,100,89,79,83,67,-68,83,94,12,45,-5,-36,98,100,1,89,-87,-66,67,47,-53,-8,72,93,100,36,18,84,88,8,32,91,-14,100,16,48,11,50,83,-91,100,97,19,96,71,-19,89,-6,99,88,44,58,-42,77,99,-24,47,100,7,-47,41,100,-43,2,100,92,99,-6,-6,-6,76,46,35,24,-59,79,39,81,27,-59,83,-39,61,100,21,98,62,-70,10,-76,-19,-6,-84,-10,65,100,48,38,52,16,-8,73,82,81,88,18,16,41,48,100,75,-38,100,99,11,-14,-4,67,90,76,-29,51,3,90,40,98,73,99,13,58,-39,98,32,36,98,64,-9,74,96,99,-48,-45,-30,-74,48,46,58,-26,97,89,-36,100,20,100,96,-33,49,91,95,100,94,2,-9,96,-18,89,100,35,88,83,-3,89,99,56,12,0,93,84,100,-63,-53,73,99,18,-73,89,73,11,-89,-17,-93,19,100,-36,62,63,50,-23,76,85,-36,68,-72,51,-97,-47,-64,-38,92,95,88,83,6,36,31,-3,67,94,-64,64,99,94,97,81,-19,22,-74,-24,100,100,-90,57,-56,67,98,-68,77,100,-58,56,89,5,99,-54,100,92,-80,45,-50,-76,-19,88,92,-99,-43,1,-16,-74,72,99,75,85,3,97,-81,67,100,-34,-31,-56,-8,-52,27,53,-87,-6,85,100,21,37,37,100,-14,99,31,57,83,100,99,22,-7,86,-62,-87,71,62,8,9,-55,8,97,-6,-78,97,32,-95,-69,-38,84,96,-34,95,-48,-24,100,90,100,68,-21,24,78,-62,4,-42,-23,98,35,-54,98,-14,44,83,53,52,86,79,-94,82,99,100,100,42,26,68,97,100,-88,99,96,79,85,78,-94,-28,-33,78,98,71,84,-44,90,-27,-66,92,86,30,-40,-14,-84,77,44,86,28,73,59,94,-40,95,87,90,86,-35,95,-25,9,-93,-70,92,33,93,99,71,24,96,-23,79,-64,-67,45,32,99,87,87,100,46,-70,-39,18,100,94,89,11,68,97,90,67,-98,-6,-20,-76,77,93,78,97,29,96,1,-63,100,100,35,25,-4,100,50,93,97,26,91,-23,-29,85,54,68,-21,100,-58,-57,63,90,-83,69,98,-62,-53,12,66,84,91,22,100,1,56,76,46,57,89,-12,79,83,93,75,64,43,24,93,-93,-72,-2,-57,40,99,100,66,49,14,-4,-73,-16,61,78,99,34,21,100,77,81,95,-96,85,23,-40,-89,-83,86,-37,55,33,90,82,94,-91,61,97,-92,21,3,-22,95,100,35,40,86,73,52,69,-76,-10,96,97,-31,84,83,-53,100,58,85,99,71,89,-59,91,18,-41,60,72,-19,25,91,100,99,85,-95,73,74,100,97,-20,100,98,21,90,27,-95,-64,-65,100,29,21,10,-14,65,78,90,32,4,98,81,75,93,99,94,45,82,14,25,79,76,15,95,46,50,49,90,18,89,100,32,99,-51,35,91,-88,-36,-69,49,96,-99,82,57,-20,99,96,98,60,-5,89,87,-1,66,3,78,-70,-17,56,-43,79,-21,91,89,100,11,30,57,65,34,81,92,-38,70,-27,97,37,16,-14,-56,-43,-35,96,97,27,96,77,59,53,98,89,93,88,-1,87,-4,76,15,-31,45,-57,43,100,100,44,-53,-53,73,68,95,50,97,100,42,31,-9,26,100,88,84,-28,-92,-64,71,65,91,20,63,-47,71,32,79,99,-41,87,93,-14,84,82,75,100,-90,64,-37,90,-17,-34,73,100,84,99,5,9,100,56,52,-46,42,86,22,100,93,64,77,29,10,-36,68,97,-78,43,-37,57,89,78,96,83,-34,18,69,58,79,89,72,87,63,2,21,81,94,52,-84,50,80,97,50,-34,81,35,78,93,19,94,-53,92,-1,69,3,-60,91,94,-59,86,74,23,-53,66,20,93,72,78,68,84,82,51,81,95,59,62,65,-46,92,84,-23,16,-92,97,-41,100,-54,-4,12,-64,63,-21,71,-84,-25,78,-76,-2,65,44,-79,-19,-27,100,25,82,-98,-82,38,75,24,-61,-59,94,86,91,96,-85,25,98,78,-49,93,68,89,96,84,65,2,-10,57,99,-99,-66,97,-90,54,49,-18,44,-98,98,-4,97,88,-90,100,-33,-20,13,87,-25,77,90,82,99,98,-86,-32,67,23,80,77,30,66,45,98,54,99,99,88,99,-10,-35,42,61,-41,6,47,-92,65,-46,-20,100,44,100,73,100,95,-68,98,-1,82,97,61,-96,92,51,60,-1,-76,100,-75,9,-34,70,31,19,30,99,-65,96,78,60,95,-51,61,94,71,-27,65,54,59,99,99,-25,77,-70,90,87,-46,-7,61,-27,-28,-93,-32,-1,-13,97,-17,99,18,100,-11,27,97,0,28,-17,-14,91,-85,52,97,51,100,54,4,90,91,38,85,-6,-46,-79,100,86,15,-2,69,64,10,-25,-61,-31,65,98,100,98,100,51,15,95,79,-28,96,94,53,-4,69,-7,-78,72,48,63,74,47,-68,70,17,9,-4,-56,26,96,72,58,46,-92,100,-61,-60,45,28,98,95,90,82,98,85,57,-88,86,-8,92,-81,-24,52,84,95,93,-17,-8,69,1,100,54,80,55,0,82,47,70,-6,63,83,95,95,2,75,48,-42,64,92,-87,94,45,8,-67,-2,59,86,100,93,0,70,94,97,45,-25,-10,52,73,-42,100,57,51,-2,94,94,8,43,-49,96,14,100,-15,99,46,-13,86,75,48,89,-10,99,97,97,94,89,29,94,1,-33,100,95,96,100,91,66,72,1,-39,85,-62,100,75,-19,94,-15,100,-14,99,6,70,32,42,16,44,-34,-71,100,100,-93,-11,-71,92,2,100,89,100,97,-69,59,-86,89,100,-40,-88,74,70,67,-90,27,99,76,-37,52,44,73,100,99,-82,0,100,-35,-48,61,-82,99,75,62,66,21,-83,77,96,54,100,99,52,96,61,-66,60,31,75,-80,100,82,91,26,100,-50,70,90,88,-2,37,-10,74,100,59,96,100,-14,-34,29,92,100,-8,4,100,-1,-41,-21,-40,3,31,-80,28,91,72,77,75,65,64,92,60,31,100,44,100,50,66,77,71,-26,55,91,81,40,74,92,-14,100,85,72,26,97,51,-29,44,89,98,91,37,-33,99,-20,21,100,59,3,35,62,100,83,66,100,86,34,-77,72,-13,72,-1,-47,7,68,34,95,52,78,-16,69,91,-46,72,55,91,-26,-46,55,-42,65,23,33,100,41,17,27,-47,69,100,-12,100,100,66,67,47,29,69,97,25,76,-4,92,-23,78,37,100,-3,85,94,98,-13,48,-30,-92,-39,96,69,33,58,-46,53,85,38,100,84,91,86,-8,86,-11,-10,39,89,73,100,100,-81,35,100,99,-41,-24,42,100,95,-77,96,91,84,85,84,100,18,3,-45,-1,49,84,87,-43,-87,3,100,19,11,-6,77,9,-10,-8,100,-55,-8,37,-9,100,-2,92,94,22,100,-52,83,40,70,-50,95,68,99,49,14,9,100,69,57,4,81,53,1,49,100,29,2,79,99,-26,-4,-69,72,72,-48,99,69,92,98,52,88,-97,100,93,92,86,-12,66,92,100,99,-33,100,15,90,-90,27,69,-9,49,67,68,31,58,100,26,64,81,43,-57,84,33,-32,97,100,99,-20,69,52,6,81}
{100,-39,100,99,-15,100,65,100,9,-38,21,-2,70,77,22,-26,48,86,26,61,26,-9,39,70,-59,96,90,86,87,85,-10,99,93,88,82,70,-34,91,96,-36,15,55,-88,-85,30,87,76,-49,78,-70,33,-9,-12,55,-44,-80,50,-84,38,-25,94,-80,-88,49,100,100,98,-32,45,64,-5,93,-36,-86,100,-10,-8,35,20,97,64,61,96,4,93,39,47,84,-85,86,32,65,98,98,32,94,66,-62,-70,-37,-3,88,57,14,-41,20,96,88,7,72,-67,74,-41,-70,-19,57,68,80,74,66,32,100,60,-14,64,28,22,95,99,100,98,67,99,98,85,96,25,74,-45,59,-79,-12,20,18,77,80,100,22,-25,-36,69,83,-5,43,88,-18,90,76,95,-68,98,93,99,95,96,68,16,76,8,81,97,32,52,94,98,-48,45,51,78,-74,87,26,64,9,-14,36,26,-48,26,76,-28,50,-11,7,-5,-13,68,-18,-94,96,-33,-75,49,-32,-2,89,15,20,85,35,-53,80,100,27,100,79,79,88,49,92,76,-73,76,98,67,99,-73,58,-47,-12,99,44,-65,92,66,93,-13,64,-41,69,65,64,-93,94,-47,70,-17,64,-41,-35,80,83,-28,80,-41,-18,100,50,41,96,4,35,100,41,100,96,-99,-55,-92,73,92,-17,8,37,38,-54,99,19,72,89,93,-14,95,-29,100,66,-14,79,-2,99,55,74,89,84,-98,18,-90,45,-93,35,-23,89,100,97,-35,98,-48,54,46,-40,3,100,-19,96,63,20,82,-24,58,9,86,31,99,-5,96,99,-49,93,46,-65,-62,92,31,78,57,46,98,91,50,-32,99,87,65,89,8,80,16,88,45,-93,-88,87,47,74,-23,35,-70,-41,52,80,14,-53,45,-73,97,99,-51,0,-80,52,3,2,100,94,83,-59,89,-6,47,87,78,100,-58,-22,55,41,-91,-41,40,99,24,-54,48,46,37,87,-79,99,67,34,-49,-72,-21,54,100,78,40,84,-6,100,90,90,95,84,12,93,-75,56,97,92,50,-85,-47,-32,-11,92,31,33,92,22,-67,1,24,-65,-81,-17,95,22,43,-58,75,32,100,-17,20,77,100,-68,87,70,95,55,-75,21,100,10,93,42,88,-28,10,88,-90,89,8,49,84,58,79,98,20,47,44,-39,99,-40,90,68,-14,76,62,75,98,91,96,-43,22,69,6,12,3,77,100,5,85,100,-55,99,-93,100,30,91,61,-16,82,66,55,76,95,-24,26,33,71,60,-97,12,86,-30,6,71,92,0,83,81,87,100,91,-40,76,100,-55,-93,63,94,95,18,95,94,37,-92,39,4,33,75,56,92,-59,-32,88,90,-14,-17,89,38,40,-83,7,98,-13,91,7,-72,92,7,80,-21,84,43,-98,43,42,89,-19,89,75,77,71,84,67,-51,100,0,91,-81,75,-44,84,70,-5,97,55,98,71,-20,37,81,37,80,60,77,82,95,88,-27,97,-9,100,30,98,65,88,-39,97,83,-27,62,97,91,97,51,84,16,-99,99,44,35,91,94,68,-34,11,-64,-5,-20,86,99,-22,90,98,86,83,31,98,65,99,77,71,-40,90,-22,93,95,85,20,47,15,5,97,28,94,80,53,-1,6,-22,78,94,100,-36,89,-5,18,-11,59,-29,94,10,30,100,94,-9,-68,-78,-13,76,-75,9,-58,97,95,100,24,17,63,-14,11,-38,72,92,77,-6,-43,100,82,86,100,10,-60,-93,46,84,60,-47,91,47,-4,-84,-68,7,84,92,48,-3,95,74,19,81,43,77,20,-83,43,-92,-70,96,11,2,-13,95,91,-71,-71,13,70,4,-24,100,13,31,76,24,-46,100,-31,99,95,91,94,71,98,75,-70,37,-15,-87,9,-30,7,90,73,-16,41,-68,-18,54,42,66,6,54,61,81,35,99,53,38,91,90,97,100,6,-49,-82,89,87,-78,50,97,62,-42,-39,-67,12,99,94,-42,86,-62,45,31,-3,74,3,42,-64,-90,39,64,48,22,56,81,100,90,69,7,90,70,5,77,8,35,75,43,100,88,6,86,89,94,25,-33,67,95,52,100,83,5,-19,-6,70,92,33,100,69,68,29,-68,29,70,100,31,84,49,-4,30,79,36,37,-60,8,92,51,29,87,11,83,91,92,72,81,49,100,27,100,-35,82,-87,100,91,90,7,39,-41,98,76,73,16,87,75,98,86,25,78,78,65,90,14,95,20,-29,32,97,-2,-63,21,97,97,85,43,96,16,96,29,57,93,4,92,2,-48,28,98,37,-6,94,72,100,95,46,-55,90,-21,80,99,21,67,-35,100,15,-95,62,62,90,100,-73,30,91,87,69,100,83,-22,100,-49,52,18,100,-62,-72,13,46,91,79,99,-8,100,63,95,87,41,-50,0,48,26,9,92,73,99,-32,-47,38,50,71,65,-75,-32,61,-38,-1,-14,85,24,98,95,100,95,9,95,38,-10,-68,100,-29,100,100,-20,81,47,84,40,66,-44,98,3,27,42,-19,91,-29,82,-47,-58,29,3,99,60,-32,60,38,21,-18,100,48,91,-15,53,-40,-44,98,45,8,-16,97,80,81,24,-92,92,80,49,-87,94,-88,76,-40,-55,-94,99,60,-27,100,25,96,87,-45,98,100,-52,-6,30,98,100,99,63,96,-89,-28,51,97,30,54,5,2,-85,-58,32,-68,99,100,65,-32,21,55,34,-84,82,96,84,99,93,54,43,32,79,86,100,-97,-13,-47,33,-13,100,95,-84,-28,-66,72,-97,42,99,63,-10,-11,95,92,43,-26,48,37,100,49,5,100,97,63,26,-78,-3,97,-16,-79,99,70,78,54,33,-82,-35,-81,8,88,56,-20,-42,82,-69,78,2,-56,44,100,-81,-35,94,100,96,-54,-31,100,-69,-26,67,55,68,71,83,93,100,-64,-80,-85,46,10,91,-61,100,93,44,82,83,-3,47,83,59,98,11,70,73,71,45,100,18,99,-23,-43,22,99,44,71,80,-37,91,-83,62,97,97,-30,89,59,-2,45,7,-67,34,87,99,100,98,70,50,-29,84,32,65,88,80,-1,91,68,42,69,-11,-87,4,87,-69,69,-40,-81,26,61,31,84,7,81,67,51,39,93,27,-47,84,-37,100,85,75,84,8,46,100,60,-89,100,16,47,86,-25,-40,-5,-21,-1,100,100,95,-61,93,79,87,98,71,68,27,23,-87,22,-47,-75,63,-14,-66,83,64,31,92,-55,27,-20,14,91,57,94,9,96,85,-81,98,99,100,34,99,-15,38,-7,31,90,-66,-23,-94,-60,99,-52,-38,20,-86,17,97,88,-23,46,40,92,-13,95,99,100,-61,-3,-27,13,100,2,-95,-85,30,73,-48,-63,40,57,100,23,100,-33,7,100,-60,72,89,-35,30,15,97,98,-60,91,81,-98,-83,74,36,65,59,49,-55,7,-15,-59,19,-27,46,-37,52,26,86,82,100,72,87,90,-47,100,40,99,-4,-10,99,100,61,96,33,-7,89,84,68,81,63,97,29,-33,72,65,99,3,61,52,43,64,-46,-9,99,86,-15,76,66,-43,-33,55,36,-20,-33,-18,-72,-73,-48,-9,-60,44,91,-28,9,78,74,74,-32,52,33,67,-7,-5,99,69,-33,54,-78,97,39,40,91,26,-71,14,41,86,72,100,-24,63,-37,37,95,-36,30,78,38,86,64,73,63,16,-35,49,100,97,96,92,3,61,25,-78,43,-78,26,10,62,49,-89,-69,-63,97,74,-54,89,52,90,11,18,100,100,8,-44,51,-47,66,45,3,-62,-57,-55,89,77,-43,-57,23,-5,12,99,90,97,-3,96,-34,43,72,76,99,88,15,70,76,48,29,-15,74,79,85,-46,2,88,100,53,-49,-15,86,-40,91,99,20,90,-49,44,100,80,94,99,100,47,-54,-54,-44,89,86,96,99,97,95,2,95,84,44,87,51,59,7,43,-34,19,99,63,87,69,55,69,12,100,95,47,27,77,34,-53,100,98,81,27,-90,88,-78,87,3,16,4,41,-54,4,100,30,81,13,-75,99,-4,-5,100,-44,-5,98,-80,35,100,16,-8,-30,34,51,25,100,44,96,-8,94,10,86,80,85,78,65,59,100,10,98,2,12,1,98,-74,15,12,-56,100,6,64,66,15,39,-13,-32,67,66,-94,64,5,-23,-42,99,-82,65,46,9,100,95,99,100,27,100,-7,35,8,96,-25,90,-36,-72,100,-84,69,100,0,-86,-12,57,48,95,60,92,100,99,36,96,-36,96,100,100,73,76,50,-43,7,-37,-76,66,-90,69,-77,100,-19,75,97,81,76,94,59,86,68,93,-16,97,78,-52,-43,17,-47,89,90,100,28,28,53,-8,27,92,-18,-17,32,74,59,-55,27,97,15,11,11,99,78,33,58,27,73,-54,-77,15,-7,100,94,80,54,51,100,68,-4,70,-9,-9,98,69,3,78,-57,-51,-1,95,89,85,92,100,8,90,5,56,98,-15,-4,79,94,43,84,80,21,82,92,47,46,60,-37,47,36,78,44,50,20,-93,94,-50,9,-58,-44,-31,-73,-12,91,-32,83,29,66,-62,94,97,-35,47,100,-59,75,100,-2,-38,13,80,80,13,95,99,22,-21,-49,15,37,-38,-40,93,6,81,64,-52,76,36,-69,97,99,99,99,30,70,100,100,-47,91,89,-44,56,54,-66,51,26,90,-17,61,38,-64,85,100,82,-59,-50,63,30,11,88,-63,69,100,100,-18,-72,92,14,100,73,-51,-96,-61,-85,49,-29,69,73,69,-97,-34,93,-58,-15,75,-31,80,33,3,77,-5,-89,31,-60,-74,98,-57,95,-70,99,65,65,39,100,56,-28,-98,96,92,84,99,-62,-2,-70,-87,-60,-2,39,84,55,-92,-75,55,76,-45,-99,93,29,100,-97,-24,88,99,46,48,97,-86,18,14,99,65,-44,-44,64,46,84,96,65,-45,77,30,76,51,-38,-81,98,41,-63,85,57,-97,91,-7,54,88,80,-71,11,86,18,35,58,18,62,-52,77,66,11,34,64,7,100,-23,-77,77,15,96,93,100,42,100,64,95,100,39,83,70,84,-27,97,-43,34,7,30,-19,-32,-93,-51,3,88,80,-57,-30,100,33,80,96,-70,95,100,94,2,5,96,-46,9,75,44,68,9,100,79,-98,93,40,96,56,-65,97,50,65,96,60,72,88,53,28,33,100,100,50,100,98,59,31,-13,75,100,88,-17,-89,-16,17,26,67,-49,78,69,-42,-39,100,97,89,-62,79,98,50,34,78,-6,-3,46,-24,7,-43,-21,-5,53,60,-39,88,-68,93,87,15,65,-88,70,100,29,67,95,100,70,49,100,93,92,-13,83,75,-43,-97,49,34,88,-8,58,95,-8,96,100,48,97,53,100,25,99,-25,95,99,-2,83,65,80,91,19,95,-77,98,65,-56,-24,47,73,53,51,77,83,90,-30,89,5,100,0,-69,-1,97,-49,-48,48,46,-70,71,8,-63,80,-17,-3,-87,91,57,-67,66,100,57,100,84,24,67,85,94,57,35,-3,100,-16,47,34,-46,-38,94,-39,77,98,100,52,13,83,60,74,-18,0,100,16,25,14,54,-43,81,99,42,100,68,98,-38,-36,71,-13,42,87,78,22,90,79,-73,36,54,73,-21,82,80,-30,96,8,100,83,-71,-21,30,99,100,-75,39,100,-46,64,12,88,41,98,-43,81,93,-56,0,56,98,100,71,-50,-63,79,14,84,-54,-37,62,82,-56,75,61,-34,-13,79,81,-30,40,42,59,-49,90,100,9,-19,47,-45,-57,-73,19,-71,69,-54,100,11,-32,24,98,80,99,13,12,-98,-95,-73,43,-34,86,-26,-70,99,-25,68,77,86,100,33,100,-9,-54,97,-8,98,86,74,70,20,80,99,-16,99,77,-64,-72,-59,72,81,50,100,78,-65,52,45,90,-83,100,-42,88,93,28,84,94,100,100,77,83,84,100,68,90,50,86,65,40,68,-66,100,96,87,82,58,-55,-97,-11,36,90,5,-80,60,100,52,-67,20,62,96,26,-12,100,-36,-73,91,-2,22,61,-10,60,-35,-12,-22,28,97,-43,-7,98,12,84,100,69,-36,-50,-23,66,-63,61,70,44,-76,59,53,90,-28,97,-8,-73,-4,10,3,-92,-79,100,78,53,86,83,-39,31,71,90,-55,-79,-56,65,87,92,-26}
{21,98,43,2,95,39,87,6,12,30,1,7,5,7,3,19,33,79,63,2,4,42,1,39,49,7,7,2,2,71,19,1,9,3,22,1,87,3,2,1,3,1,46,54,13,2,51,2,2,1,8,1,11,17,18,4,9,73,28,7,82,20,3,3,1,4,4,21,16,2,6,85,1,8,42,1,1,1,3,16,9,19,25,1,4,3,45,53,19,5,2,1,5,14,73,3,7,16,33,1,69,19,7,58,7,15,12,3,1,3,25,30,73,2,32,58,30,1,7,1,9,5,4,51,15,35,8,2,3,2,2,1,4,1,55,9,1,1,11,4,18,66,1,93,1,4,2,3,48,19,2,17,4,23,2,2,8,2,85,11,46,8,10,11,17,30,5,1,18,41,11,3,1,3,3,20,41,5,7,50,1,1,41,14,28,11,26,2,38,67,69,12,77,80,84,4,57,4,5,10,1,39,3,1,46,1,14,11,4,15,22,20,1,91,6,9,7,6,15,35,48,6,2,1,50,4,5,6,1,12,1,3,3,44,3,95,4,33,16,11,2,79,1,1,29,64,1,4,63,3,1,2,2,6,15,35,8,52,4,13,4,1,6,8,6,87,34,7,3,43,1,41,34,1,3,68,2,23,6,56,69,13,6,4,34,26,2,4,46,68,32,1,5,67,84,4,78,12,5,3,18,2,5,1,22,16,69,1,12,85,1,2,9,92,1,3,2,8,9,46,39,52,16,1,93,72,2,1,2,3,5,83,3,5,18,25,43,6,20,76,18,7,26,21,94,1,26,11,2,13,8,1,1,1,1,2,42,8,13,23,1,12,38,5,5,1,54,3,1,9,1,7,37,1,23,31,10,6,79,2,12,3,51,42,1,10,17,55,42,6,35,1,6,5,5,6,15,22,42,31,2,70,27,2,3,1,51,15,16,30,41,4,2,2,75,42,1,62,54,16,1,8,1,15,25,87,1,4,99,2,2,3,45,1,36,87,21,3,20,8,1,16,46,68,3,18,3,3,4,70,1,3,3,15,3,83,1,1,2,83,52,9,3,12,30,53,1,2,22,18,6,17,3,1,4,15,65,19,92,2,1,2,2,2,5,37,1,29,31,6,1,5,50,17,8,7,18,63,1,2,1,7,49,5,2,38,21,1,83,1,72,17,1,17,10,97,56,1,66,1,6,1,4,21,8,1,16,2,38,1,45,61,97,1,1,6,10,3,4,5,1,5,12,14,17,59,18,1,6,28,1,11,1,49,42,2,30,20,78,19,3,49,40,26,4,11,8,4,2,4,10,74,29,29,15,16,46,8,25,55,59,48,3,11,1,63,39,47,1,13,36,23,1,65,4,77,8,1,1,17,30,1,17,3,6,11,4,1,1,13,3,1,40,98,1,14,1,12,1,15,19,2,2,1,2,20,38,32,10,4,1,10,16,12,17,6,27,1,73,20,4,14,14,1,80,3,9,1,1,29,1,9,7,1,1,3,11,4,25,4,2,16,70,9,37,12,41,1,51,15,1,21,32,14,2,70,2,15,45,1,1,86,37,19,4,12,2,2,1,1,34,6,12,5,88,26,29,27,28,64,32,2,16,3,5,2,12,6,35,1,2,52,9,9,1,22,29,7,2,1,4,11,5,24,20,60,1,1,12,7,7,68,25,6,3,9,77,52,4,1,4,27,17,1,3,19,1,3,94,3,18,12,13,13,2,1,12,59,1,45,3,74,1,1,1,1,6,11,2,34,10,1,32,38,86,16,46,15,2,95,15,12,21,73,2,1,1,18,12,95,21,14,24,9,2,26,9,1,1,10,3,53,73,44,1,18,20,3,2,1,14,11,1,2,53,89,1,8,6,1,17,24,4,3,1,1,8,1,79,5,8,4,15,9,2,60,21,5,2,5,30,77,1,62,11,13,58,22,53,38,2,2,3,8,48,2,4,32,1,27,14,40,19,33,13,8,7,17,1,21,2,65,18,63,7,1,9,3,2,90,4,27,64,10,7,1,22,3,12,6,46,1,4,8,5,73,88,11,1,7,3,14,10,4,2,38,77,2,21,26,2,35,9,7,10,8,28,3,69,1,12,4,9,44,69,50,90,50,5,51,31,29,3,1,22,10,52,2,10,44,89,7,1,2,19,37,6,9,78,23,3,8,29,1,80,18,7,60,3,5,32,59,27,58,1,1,23,89,1,19,3,3,5,2,94,1,15,53,71,9,46,40,10,23,3,3,6,80,13,8,15,3,19,8,6,11,5,23,51,3,25,1,15,21,1,15,1,43,3,16,1,35,1,10,35,1,13,10,41,46,16,1,2,31,1,2,97,2,49,1,1,22,2,2,84,50,92,87,2,2,19,52,2,2,3,15,23,26,34,21,16,11,7,29,66,61,10,53,32,65,2,8,1,3,91,95,10,16,2,8,6,83,18,10,7,17,1,26,2,18,32,8,26,2,37,2,1,29,34,15,95,9,5,50,4,90,24,2,10,90,4,1,1,70,17,95,1,11,2,6,1,93,3,3,31,42,61,10,5,3,34,20,94,19,10,27,1,1,2,3,3,43,1,10,7,1,85,1,1,1,45,13,7,79,4,95,9,18,2,5,34,77,4,66,4,15,1,1,2,1,15,9,2,26,9,60,12,8,39,13,77,63,28,1,4,1,41,13,13,5,9,4,14,2,20,6,7,56,3,6,48,2,4,6,2,1,19,57,14,6,2,79,2,2,38,6,1,65,5,4,12,2,1,1,21,4,2,2,4,4,15,28,1,2,32,16,3,7,7,27,4,1,4,9,4,16,28,2,19,28,22,30,1,9,12,4,8,54,7,11,21,8,41,50,79,2,1,4,2,2,3,3,83,3,3,1,1,42,1,6,53,24,19,23,2,3,3,5,5,19,2,90,1,86,29,12,9,55,4,1,1,3,24,2,1,5,44,3,10,3,7,21,14,2,2,7,6,8,45,1,6,17,1,2,18,8,1,41,3,2,3,3,52,7,74,35,33,19,4,3,1,31,85,16,12,2,2,6,10,71,71,66,1,29,2,43,22,16,28,4,1,26,6,78,1,10,81,7,8,28,3,36,10,1,1,30,48,14,7,33,18,1,2,20,9,1,1,4,46,5,23,3,67,28,12,14,8,85,12,89,4,6,29,3,4,1,17,45,4,14,2,16,71,16,1,16,28,1,34,11,4,16,1,2,1,6,41,1,2,70,35,46,12,21,4,4,2,17,28,14,13,12,19,1,2,3,6,3,11,11,17,2,9,33,1,4,7,6,64,16,6,1,23,19,5,50,2,12,74,79,24,8,42,5,2,2,89,3,4,16,1,1,25,66,13,1,7,2,37,4,21,26,1,4,2,1,31,3,5,4,24,19,12,56,6,4,1,2,13,64,5,8,3,20,56,62,25,9,13,2,1,56,44,31,1,80,4,32,1,1,3,5,71,5,1,9,3,1,4,63,20,59,16,2,1,17,82,24,4,55,24,24,24,58,1,12,87,55,8,53,1,29,33,14,1,1,49,47,33,5,33,48,1,41,5,45,26,15,2,15,12,2,66,1,9,1,1,3,6,13,4,6,1,2,86,12,1,2,2,3,30,57,10,55,13,55,32,52,7,3,1,8,1,35,2,33,42,1,14,16,51,8,17,1,1,8,39,33,2,63,13,1,57,28,39,59,3,56,2,1,63,9,1,68,4,23,66,2,28,4,9,2,7,11,4,16,4,1,7,8,2,4,8,22,2,3,6,57,1,8,1,55,36,36,84,13,4,1,2,6,2,11,4,2,62,2,2,13,7,37,2,15,1,1,79,9,1,5,5,2,1,11,1,18,8,57,6,20,18,5,1,1,13,9,4,2,1,4,2,5,1,27,24,77,1,74,93,22,43,2,43,1,2,1,3,9,46,18,8,76,1,24,5,3,1,7,1,18,6,31,29,51,34,2,77,23,12,34,2,3,22,26,2,8,35,1,11,1,10,1,19,26,15,23,3,17,1,11,3,25,50,26,24,7,3,2,2,1,99,2,49,10,54,1,12,89,5,65,24,32,1,2,1,2,26,49,25,43,82,9,10,8,92,41,37,5,53,31,19,6,7,4,1,16,16,54,3,2,5,6,5,4,70,47,1,91,81,5,7,31,31,9,49,8,3,1,4,4,20,24,11,3,7,6,12,8,1,9,87,3,1,1,5,5,53,4,16,2,27,1,97,66,35,9,2,1,40,7,2,2,53,17,9,53,9,3,44,47,1,2,12,12,16,30,1,3,9,1,13,4,3,87,2,2,13,15,1,24,77,1,50,1,27,6,1,87,19,14,26,37,92,2,23,36,86,1,7,19,6,16,32,9,99,7,14,75,1,38,54,22,18,9,75,74,7,4,27,25,12,12,4,2,1,22,8,3,2,39,87,3,89,3,6,4,1,4,8,1,2,53,10,82,16,17,53,10,6,3,20,40,10,37,23,22,7,42,2,7,12,10,85,6,1,93,54,18,85,42,78,19,3,17,24,5,1,1,32,26,52,2,5,1,70,25,3,28,3,3,26,15,50,27,2,1,6,60,20,8,62,40,3,24,2,5,2,1,8,32,17,9,7,2,1,3,67,12,3,1,9,3,14,1,36,1,7,51,16,73,12,10,30,7,8,1,11,10,1,54,19,49,37,1,3,75,56,23,4,10,12,3,6,3,58,2,22,18,99,38,1,7,1,25,31,46,2,29,1,20,87,31,2,32,15,9,5,12,2,33,28,2,4,18,1,1,1,3,10,1,11,12,1,1,3,1,3,3,67,5,2,24,6,7,1,13,3,21,48,25,35,4,1,5,50,4,3,60,1,99,1,1,57,54,1,19,17,17,68,3,2,75,7,3,39,1,3,16,2,2,59,14,62,7,1,11,6,19,6,13,42,16,13,1,30,3,1,2,2,1,15,4,3,49,68,13,6,49,2,5,1,18,27,42,4,2,4,11,12,54,91,13,19,2,1,3,41,58,20,55,1,3,4,26,1,1,5,1,10,51,65,8,3,4,43,32,5,1,7,32,11,59,93,38,7,1,66,64,1,47,1,4,10,19,38,4,5,38,12,1,1,3,12,2,25,1,7,1,2,11,3,36,2,8,1,4,23,1,7,30,1,10,4,12,1,86,14,1,17,72,3,16,8,38,6,98,95,50,6,2,7,3,42,5,24,13,58,8,39,11,48,12,6,3,8,9,9,2,4,29,4,5,18,58,5,2,91,4,4,62,92,64,1,19,1,15,1,90,9,2,56,42,26,11,87,5,6,13,94,6,3,1,7,1,4,14,2,4,2,42,6,11,4,1,4,30,76,3,16,2,37,14,11,85,1,1,36,4,16,10,47,2,1,9,12,11,5,4,10,3,3,15,1,4,58,5,4,35,1,22,4,13,2,28,1,42,13,26,4,1,5,19,7,5,98,1,4,33,3,2,76,16,1,61,98,1,1,1,3,56,4,4,4,14,2,34,36,89,77,4,7,43,1,2,9,18,32,2,1,97,49,4,1,3,73,69,7,2,7,68,30,1,7,4,65,15,98,3,43,1,41,30,3,75,95,48,7,28,12,3,22,1,87,29,17,3,3,81,9,94,48,19,3,3,13,20,83,16,22,26,49,6,13,3,31,2,65,42,2,82,13,33}
Returns: 2.0541013182695918E9
{-46,-100,-98,47,-84,-100,5,-4,1,79,64,-92,-97,-91,-56,58,36,-54,-32,-65,-81,-58,-20,59,62,-100,-53,42,-96,-72,-99,-41,-99,-19,-80,-6,-95,-51,-11,56,-67,-71,51,-5,-31,6,-83,-98,-90,-90,28,-40,34,-88,84,-77,45,-52,-41,-23,-86,-97,37,-58,-65,-46,-64,-23,97,-93,-51,-96,-100,67,-43,-80,74,55,-69,-99,-45,-7,-100,-57,18,-70,-1,-11,25,95,-6,-61,-18,-100,-76,-100,-100,-64,-57,-71,-80,20,65,-97,27,-100,-43,-7,-54,-93,-41,-17,-92,-75,-49,-83,-88,-6,-89,71,-84,-51,-92,-99,-96,-56,80,-12,-96,-12,-72,-92,-100,-72,-51,35,14,33,42,-86,70,-99,-79,-61,-27,-40,-25,11,-92,65,-74,-94,36,-100,-94,73,-61,-81,-11,-9,3,59,83,-82,-85,72,-23,-96,36,-96,-47,-91,65,-25,24,18,74,12,-96,-92,30,38,15,4,-18,-78,60,-71,-98,-54,-36,-98,-64,-99,-100,-37,-95,44,-51,58,-83,46,2,-78,52,-69,-70,22,-55,-90,-80,-100,-98,-51,12,-35,12,20,-59,-54,-91,-69,-87,-77,-78,16,63,-50,-75,76,-44,6,-55,-70,78,-72,-97,49,-98,64,-98,77,4,-87,69,11,-88,-94,-89,-38,-15,27,68,50,8,-86,-100,-33,-99,-59,-67,-43,79,-19,-19,-32,-35,-45,-94,4,72,-48,-100,-26,-2,-97,-100,-100,94,-63,47,-96,-98,-34,-56,-95,-78,-54,-98,83,-96,-100,-25,64,-25,-56,-93,3,-36,-94,-75,-14,-68,34,-7,-97,70,-56,-59,-81,97,52,19,92,-16,-98,-63,-73,-99,51,-45,-96,-100,28,94,66,-96,39,-99,38,-46,78,-35,-83,-18,-99,-94,-93,-95,61,-86,-33,-81,-94,-16,-76,76,-64,-97,91,-91,-68,10,-52,-71,-83,-41,66,-87,-95,-46,-84,61,71,-58,-62,-59,-100,-29,-98,-68,-73,-75,-97,95,71,82,-22,-74,-100,-78,0,81,-94,-5,41,-79,-97,40,65,-72,-96,48,-33,-44,-92,-4,-47,10,-64,22,98,-98,-100,-28,-48,-86,-50,-54,-6,-96,-78,-87,-21,-40,6,-95,-70,-74,-46,0,83,-60,-91,29,-71,-71,-15,-37,-81,-94,-95,-73,-98,51,-73,-82,-59,-99,-67,-93,-28,10,-17,11,-56,-33,-48,-64,-22,-39,82,-81,33,-99,-41,31,57,-39,52,34,63,-98,-84,-100,-50,-98,-75,29,-92,30,0,-90,-40,-57,-96,2,-90,-60,19,-98,-31,-100,-97,-68,44,48,-100,25,-80,-42,-46,10,68,3,-55,27,35,-87,-93,-71,-100,-95,15,-89,-100,-75,-22,57,-100,-90,-40,-84,-73,-45,-93,34,-93,96,-1,-100,26,3,29,-53,86,-61,-4,-97,-46,-100,-99,-68,-100,-51,-93,70,-86,-78,-21,12,-97,-20,90,43,45,-32,-96,-82,-97,-99,-71,-79,-77,-97,-91,-13,-73,-21,-97,-35,-95,56,-87,2,-96,-88,-95,39,72,-39,56,9,-69,-75,33,-97,0,-51,-33,-55,16,-80,-64,-49,-90,-57,-26,-96,-97,-61,-78,-93,-98,-98,-68,-82,-75,-14,35,-62,-100,-100,59,4,26,-33,-85,24,-13,51,-28,-97,75,10,72,-100,-45,-80,-72,-89,-97,-100,-10,91,-81,-27,-98,-96,-77,7,-100,-70,-96,-26,45,-4,-88,20,-100,46,82,-83,-100,20,-76,60,-100,40,65,-2,-100,49,-20,72,88,-21,-52,-74,36,-62,-93,-50,-81,-98,31,66,21,7,17,3,-37,-95,-97,-84,79,-78,90,-17,-47,24,1,28,87,-83,81,8,-62,-46,-50,89,34,57,-60,-57,-91,-25,-89,59,61,-91,5,28,-28,80,-100,-55,-94,-89,7,-81,9,32,-88,88,-69,58,-60,-100,42,76,75,-56,-34,-62,-72,-79,-10,-57,-89,-70,-84,-85,-46,-41,-100,-6,67,-100,-58,-10,-73,88,-19,4,-73,97,-1,-91,11,-57,71,-31,-100,-70,-76,-96,-52,82,6,-93,-67,-100,11,-48,-75,-67,56,-90,-89,-50,-40,-99,-25,-99,-96,-98,-85,-30,69,-69,-94,-83,-99,-80,-2,-99,97,-83,-77,-21,-28,16,-40,-84,86,69,-70,27,-21,-94,-98,-64,-14,78,-30,-70,31,-40,-40,-94,-55,-21,-47,76,-89,-98,-100,-86,-100,36,-42,-51,44,-64,-72,99,54,-96,-100,-70,6,-58,-59,50,-93,36,-56,55,-32,88,-48,41,-90,-99,78,73,-99,-76,61,62,89,90,-100,-82,56,10,-62,51,-79,65,-57,-23,-63,-89,-94,-5,-9,-26,-73,-87,-100,-71,11,-19,3,97,-87,-99,-59,-88,-18,-94,66,-95,-17,-76,-5,63,-82,-66,77,8,5,-47,33,-100,9,-85,89,-100,-51,-47,-50,23,69,-99,-5,62,-79,52,96,-20,-62,65,-78,-97,41,14,30,-87,-100,-100,-87,58,-46,-3,-99,82,35,-55,1,-57,-33,11,-100,-76,40,46,42,-78,44,-96,-99,80,-44,-100,-92,-72,13,57,-37,-96,2,-40,-96,-29,2,-6,-99,-41,-70,24,-100,63,-51,-86,68,37,16,66,46,-29,-87,93,-100,-60,61,-58,-87,7,-55,-98,-38,68,-11,-39,-67,-48,60,-63,-95,-59,64,37,-68,-86,-94,96,86,-87,88,-21,-19,46,96,59,-69,6,-98,-95,-17,-78,-32,7,-70,-86,-73,-36,-4,-68,-93,-99,-97,-23,37,94,-100,73,21,87,32,51,-40,-72,45,-55,67,-92,48,-64,-56,-55,-8,0,66,-84,-19,13,-100,-100,-24,-98,-66,-99,-22,-17,-72,-69,-89,-61,-99,-85,-41,-86,-54,-88,-11,-28,-99,7,71,-88,-77,-23,83,-92,-35,80,-99,-22,-93,-14,-96,32,-80,-75,-26,-70,-52,-98,82,-30,-99,-97,-43,43,69,-99,24,99,-19,-3,-92,-94,38,-31,-8,-24,-88,-85,-87,52,25,-93,-83,-72,-84,77,-93,44,-97,-36,90,-11,-100,-94,-35,-51,24,-14,-5,-97,-98,56,26,97,-26,-95,-92,-98,8,-94,-100,-50,-93,-94,61,-94,-99,3,-15,-88,13,-88,92,91,-49,-95,-93,-49,-39,-81,-95,-57,39,-100,96,91,-100,-84,68,-80,-9,-95,20,-98,2,-97,47,87,-100,-57,12,-63,-100,-17,-100,-26,0,4,-80,11,-81,-32,-100,-97,-17,-43,-95,73,-11,-39,-89,26,-23,24,-66,2,-81,50,-54,-96,-90,-96,-87,-56,31,-60,-82,-58,-80,-50,-99,-99,-99,-84,-84,-15,59,-81,72,-69,-33,-99,-100,-27,-81,-70,-100,5,-58,-89,-97,-93,-81,-59,20,-49,-38,96,75,-47,-84,-47,85,-99,-73,4,-98,-97,-22,-100,-27,-95,-42,-26,-99,-86,-94,-100,-26,-80,-68,64,-99,-73,-96,-37,8,58,-25,70,-75,-76,96,10,-99,77,94,-90,-17,-53,-99,-77,41,91,93,-1,-100,51,-96,42,54,86,-45,-42,-2,-7,93,-93,6,-42,-99,-94,-18,65,-14,81,75,-30,-99,54,-26,-98,-76,50,-38,-34,-67,-62,-81,-56,-9,-85,-6,-90,-99,-95,40,-98,27,65,-100,-41,13,-95,-87,-43,-100,39,-99,-91,-47,-40,-75,-6,-63,22,-98,56,-100,-96,-11,13,91,-100,-65,34,-96,24,-65,-100,49,-24,-58,-100,-62,-94,-100,-90,-94,-79,-71,62,-80,-97,-97,-91,-75,-96,-4,-46,-40,-40,-42,68,-24,97,10,62,-2,-82,-74,72,-27,-71,-85,-78,-71,-97,-89,-95,37,-91,-81,-47,-32,-100,-39,-65,-1,-81,-100,-40,-59,90,95,33,-88,-80,-34,-21,-93,-28,5,-67,-4,-58,-23,-90,-100,-59,-90,-54,-27,-100,-40,83,-49,89,-60,-82,-81,-52,-79,-61,-91,-100,11,-73,-17,-99,-79,88,-97,84,-100,-78,-74,-38,-100,-8,-98,-74,96,-85,14,93,46,-46,-8,78,23,91,-89,20,-80,-77,-100,-78,-40,-93,-100,57,-70,9,-99,-13,-99,-80,-100,-66,-99,-19,-6,-92,-97,68,-100,-30,-94,-22,-15,-51,94,7,83,-89,41,-42,-43,-12,1,-54,-63,69,42,68,36,56,-37,-62,-96,-42,0,-95,58,-92,-97,-51,53,-100,95,-5,16,-91,-65,-68,52,-76,-71,-91,-92,-92,78,-92,20,-98,-56,-94,10,38,-67,-95,-91,-84,-85,35,-51,-65,0,-12,17,-100,70,-75,-94,-47,-94,71,92,-15,-99,-62,-58,-95,-63,-58,-28,-27,85,3,-31,-98,-97,-28,-91,-97,-93,-90,97,62,-32,-23,74,-92,-27,54,-93,-28,-99,-94,52,-8,33,-71,-71,-40,-95,-98,-50,-38,-67,-83,-72,-77,-65,73,-96,-95,5,95,33,-97,-66,-69,-91,83,19,38,37,12,73,-100,75,-99,7,41,-23,-87,-46,2,-22,-100,-100,-47,-34,-99,-99,-98,65,87,98,17,40,20,94,-74,-87,-51,-23,-100,-26,32,-100,41,33,-100,29,77,-55,-68,-100,-14,-63,-87,-96,-66,-46,75,-99,47,-78,-38,-79,-11,-97,-45,-14,98,49,-54,-64,-16,-21,86,79,4,-96,-100,31,-95,-85,48,-30,-44,11,-99,-61,-88,-96,58,-97,36,-32,4,13,41,75,-71,-99,72,-8,-96,-71,19,48,0,-41,-6,-51,-30,-51,-40,-100,-98,-27,28,-100,14,-65,-46,48,-100,-99,-99,-1,-40,35,-76,80,-100,-96,-93,-99,1,3,79,6,-97,-92,-36,-25,-50,90,-91,-94,-88,-1,-3,46,29,-97,-79,25,-82,73,35,-53,-92,-17,-83,24,-7,-94,8,-70,51,-100,-94,60,-66,-69,-69,45,-82,-65,-99,85,-68,-47,-76,35,-77,-96,53,-95,30,-100,-83,-40,91,-93,-95,11,1,-75,-91,-96,8,-100,-99,-77,-32,-75,86,70,49,92,50,-45,-92,11,-93,-63,-48,44,-83,-100,-100,-81,-100,-9,-39,30,-59,26,-95,-55,-100,63,64,-99,-82,-11,-47,-93,-6,42,-78,69,-83,-3,-13,-52,-24,-59,-93,41,-3,-92,-45,-99,-68,-65,-36,-100,-46,38,-100,45,-50,-100,29,-17,-88,-15,-94,-99,-14,-96,-85,-99,-16,34,-94,39,39,-64,95,-1,-57,-72,36,31,-100,74,-72,-3,6,-95,-100,-42,-43,72,-84,-53,73,-100,-94,34,97,-71,-98,-49,-60,48,81,-12,-100,-62,-55,-100,34,-21,-46,-84,-95,-100,-98,-100,18,-85,-65,20,-85,-70,-54,-86,-92,0,-59,-39,-65,18,2,-66,-55,31,-61,9,64,-95,-19,-55,-29,-99,-10,-100,-51,-16,68,-41,-81,31,-78,-8,-94,-84,68,-65,-94,18,-78,35,-98,-90,-62,-80,-100,-85,-86,-100,94,-97,-28,-39,-79,57,-63,59,57,-90,-35,-72,43,34,-97,-92,-87,-60,37,-83,50,-78,16,30,6,-40,-96,-58,-87,-71,-90,-84,46,-85,-24,-100,-45,-85,67,-100,80,15,-93,5,32,-87,-96,-77,-18,34,22,-59,-95,-90,33,41,38,58,9,-52,-89,50,-17,42,-97,-12,-84,-92,-89,-97,-77,54,-100,13,-79,83,83,15,-31,-34,-82,56,-46,-80,93,-100,-59,-95,-70,-56,1,-72,-30,-56,67,9,70,-33,-100,45,46,-18,-65,11,-57,-23,-93,-93,75,-34,9,-38,-98,-84,-100,-100,-4,-52,-44,93,-17,-41,-96,-33,80,-40,-78,-100,-67,20,17,69,-96,-95,81,-84,75,-85,-88,-100,-92,55,-66,-99,-100,16,-100,-52,27,74,-100,-16,-92,-21,39,-58,-74,83,-95,-88,31,-100,-100,-93,-33,-52,10,-57,-85,77,88,42,-98,-89,-14,-82,49,-85,-81,41,50,-93,-27,-87,-75,77,-5,86,-99,-96,84,-52,-54,24,74,-89,50,-88,2,-10,-71,-86,57,-20,-86,-77,-13,-98,-18,-63,30,77,-2,-28,-84,-76,-14,-96,-65,-45,-56,-31,-98,-90,-78,-55,90,3,16,-30,-84,-98,-64,-11,48,95,-95,-100,88,73,96,-98,-25,-82,19,-75,-42,87,16,-84,-63,-88,-75,-80,-14,13,-56,-54,-53,20,-98,-98,-100,-57,-79,60,-21,-11,-100,-28,73,-30,-89,-64,-77,-94,58,-100,-55,55,-46,-100,99,-79,-63,51,-65,13,-99,42,7,38,-94,-99,-63,7,-61,63,-29,-3,85,-98,-72,-35,94,22,5,58,-97,-65,-72,-98,-83,-93,-15,-6,-100,-70,-88,-98,-29,98,-98,-41,-95,32,-86,-66,-42,71,46,-13,-86,-82,-38,-62,39,-73,-61,-53,-100,-40,-59,11,-41,-89,51,77,-100,93,-29,99,-100,22,-25,-100,97,-69,5,51,95,33,-53,-89,-99,-34,-73,-41,-60,22,-88,-37,75,-100,43,39,-8,-47,89,-41,-74,-75,-71,-94,37,13,-31,-64,-61,-24,-94,91,-89,-18,-99,-100,-83,-94,11,89,29,63,-82,-73,42,-14,50,19,-98,-81,-84,-92,-98,-6,-100,-24,-72,-7,-10,-61,-72,-96,-100,99,-49,-44,-37,-56,-48,11,-69,12,4,-99,19,-93,-96,-99,-45,9,-25,-75,-42,-36,-47,6,3,-86,-41,-75,-100,-42,-82,88,32,6,14,13,-96,-71,-30,-100,3,-84,-24,-39,-5,68,70,98,-86,-50,55,-41,-37,-98,75,-91,-98,-95,47,-33,32,-100,-92,-100,-18,60,59,-100,7,-86,-95,37,-100,-99}
{-39,-100,-100,74,-81,-64,99,-69,-71,56,-95,-79,-100,-59,-100,18,-92,-52,73,-14,-38,-77,18,19,-91,-85,-78,-93,-48,-63,64,-4,-56,-8,-98,-91,-91,-90,-81,-27,-61,9,-83,-94,-94,-92,-28,-51,6,-100,87,-92,-8,44,-48,-99,-96,-94,79,58,-5,67,-100,53,11,-91,-98,-9,-89,93,-100,-9,-38,-85,-54,-7,-57,34,-56,-30,89,41,-63,-25,-91,-94,-75,-97,-96,-52,-43,79,59,83,-100,-99,77,-76,86,21,27,86,47,-85,98,-94,-57,68,-70,-32,-47,-95,-85,-98,-90,-98,-100,-96,-75,-92,-100,-77,-77,-63,-100,49,11,-91,36,-67,-53,-68,-20,-44,-27,-92,-23,-24,-98,-97,-86,-74,-39,-38,-67,95,-69,3,-98,16,8,-94,-92,22,-64,-15,10,23,-56,-66,-15,-86,-12,73,-61,-21,-92,-12,92,-53,-26,-92,-11,-55,-58,47,-53,-98,-100,-100,-99,-70,31,-62,-9,-21,-66,-92,-90,-91,70,-63,-7,-57,-83,-21,28,-18,-79,11,-19,38,36,-85,-94,25,-56,25,-99,-80,-27,-96,-36,-94,-99,-100,12,-30,-28,-86,55,17,-100,94,76,-15,39,-90,-75,-66,-96,-89,12,-32,-100,-5,-75,-97,9,14,1,2,-81,57,-100,14,-23,69,-73,-33,-95,-96,24,-98,-97,-54,-89,-91,-58,27,-89,-32,-78,-28,63,-42,-13,-95,-100,45,-94,-96,-80,75,62,-77,-100,-95,6,56,-39,-80,11,-100,-29,-85,-54,89,-55,-93,-59,43,21,-96,-87,-89,-92,-40,17,-93,-3,21,-52,93,-79,-3,-29,-42,-99,-100,20,-97,-99,-95,-89,-91,-17,-96,41,-77,-98,-69,29,-7,-74,-89,-37,-100,-25,-100,-97,10,-74,-86,-41,-20,0,-39,-77,-58,4,-100,-76,-24,-61,-92,24,-100,-81,-96,-46,19,82,54,-100,-100,-10,-91,61,-100,-51,-39,-100,-97,-60,-25,55,97,-70,75,-87,-88,75,-38,-16,-79,-97,-20,-98,36,-17,-77,-46,-64,-91,-45,-87,29,-99,91,65,-18,-49,-100,-78,-87,-99,-16,-39,11,60,-65,-71,5,-71,-23,-99,93,86,-85,-100,-70,-91,-36,93,-66,11,97,-11,-70,-75,-52,-51,-23,-23,14,-87,75,-31,-20,-91,90,-86,-86,-24,-99,-16,-99,-93,61,70,-53,-87,-89,-87,-100,55,92,-43,42,95,35,-41,-24,-76,39,-47,54,-95,-18,-95,-73,-67,83,-94,-92,94,54,30,-98,4,-98,-100,-92,-72,25,90,83,87,87,-44,83,-71,-53,-94,-93,-17,55,-97,-92,-100,-69,77,-35,-96,-86,-77,-63,-99,-84,-91,16,-100,34,-38,-80,-90,83,-91,0,88,-49,-19,-94,-36,82,2,-84,-98,-95,-58,-98,-67,76,-93,-51,3,-99,-95,69,33,-39,-36,-100,38,76,-39,-88,-71,66,-81,70,-100,85,93,-87,-97,-99,-95,33,-87,-98,6,15,-35,-96,40,30,20,12,-20,75,-75,8,-92,73,23,-100,-56,21,68,-96,-94,-100,-74,-96,-61,67,-97,-72,-99,-78,50,15,-17,-33,75,-3,-96,-5,-18,-12,-60,34,-71,-4,-13,-100,74,-43,-95,-96,-52,20,2,-97,-85,20,-67,-77,88,-28,-8,-100,15,-67,-100,92,3,-100,21,-88,48,-85,-60,-100,-40,-82,-59,-97,70,72,-98,-64,-24,-100,-71,6,-82,-97,34,31,-52,-22,-83,-88,30,11,-36,-82,44,-71,91,-98,-100,-60,-89,-81,-93,87,-95,-100,-13,-31,32,-100,-94,-95,-99,-90,-21,-100,-67,-38,-82,-41,-100,-2,-93,-100,-100,-100,-97,-61,-99,-83,75,-100,-99,-59,-75,-82,-5,85,-92,-35,-32,-8,-88,-76,-81,-80,46,-98,-87,94,-71,-100,33,-33,53,-20,-41,-76,-18,24,-83,-79,-5,5,-100,45,72,-95,50,36,64,19,-62,-78,-99,-100,-66,10,51,-99,-44,-100,80,60,-82,-50,-67,35,-100,-11,-65,71,-34,-15,-54,-100,-68,-24,-92,43,-92,95,7,-81,-78,-5,-54,-20,-79,-86,-99,-19,-44,23,-44,-100,-31,29,56,7,-71,20,-76,-64,-100,-92,-80,13,-83,49,-39,-30,92,-94,89,-95,-21,-13,-92,99,-74,94,44,-85,76,-47,-78,-50,4,-97,-90,-14,-98,84,-78,-74,-94,-78,-99,-66,-32,-90,-65,-82,-48,-15,-100,-100,20,-85,56,17,-76,13,-94,-41,-76,-2,43,23,-6,-87,-7,-39,-100,-50,1,84,98,46,54,-94,-100,-18,-43,-47,8,-6,11,-23,-84,10,93,-49,-100,88,-16,-53,-100,-57,-14,-46,-37,-99,-34,27,-1,-71,60,-48,-22,-50,-33,62,2,-74,-71,-12,96,-93,-63,12,80,30,-98,-82,-48,-33,-21,-78,-100,-86,-32,-83,87,-100,-81,-91,-88,-88,-80,-34,15,-53,-15,-63,-31,-88,78,-44,-99,-2,39,-88,-86,-79,-42,-47,-63,-82,1,-57,-93,16,-100,21,1,-39,-18,-79,-56,-19,-38,-75,-99,-67,-90,-90,-57,-82,-14,93,-39,-45,50,7,-93,-98,-100,56,26,-96,-70,-28,-100,91,-53,-100,10,69,-95,47,-92,-63,21,-66,-99,-76,-67,-97,-97,-63,-17,89,-82,-92,10,12,-100,-100,28,13,-60,-98,-100,-87,-85,1,-34,-91,-81,-77,-100,-44,43,-35,-73,-40,52,-85,44,-48,9,-53,-93,11,-81,-94,-72,-94,26,-64,58,-12,-1,-87,-100,-61,65,-94,83,-83,-66,-89,-98,-100,-90,-100,53,92,-17,-20,-37,-49,-60,-44,-61,-77,7,3,-100,43,-68,-59,-19,-97,-94,68,-88,-26,-55,77,16,-84,-60,29,-100,-76,-7,-99,-97,21,-100,-90,99,-9,-77,-72,-63,-81,-93,-96,-99,-58,-20,-91,-53,-1,70,-96,30,46,-26,-100,-93,-45,-96,34,7,-96,-70,-24,-1,-46,17,-74,-77,18,-41,-74,-89,-1,-76,-89,-72,-2,91,1,-100,-91,17,-35,59,-73,26,-83,-75,-78,19,0,-62,4,77,-100,-42,-91,78,-93,-98,42,-19,-71,-48,-83,-15,60,-71,-23,45,-95,-82,-72,84,-84,-100,-96,-73,-89,-74,35,-47,48,-72,35,-93,-100,48,-57,91,-79,72,-38,-83,-95,-94,-99,-58,-98,77,-82,-100,-6,-86,-40,-100,-95,-55,62,33,6,-6,-100,-93,-95,-93,-100,-80,-98,-76,59,-90,17,-16,15,-94,20,-69,95,-84,-96,-98,5,-49,-100,-12,21,33,-81,93,-79,-85,-88,12,-82,-95,49,-69,-82,-93,-23,-37,29,5,81,-23,-80,-98,-59,31,53,-73,84,-81,63,-95,24,-100,-98,-100,55,-12,-53,-80,-87,22,30,-48,-40,-96,-37,74,41,-39,-98,-97,-93,-83,-94,-68,-32,-100,12,-52,56,-6,-85,-89,-28,65,-97,-21,92,-89,-40,84,58,67,-51,-58,-44,-88,64,7,18,37,-47,-100,-89,-100,6,-30,98,-86,-87,-100,-34,14,-72,-6,50,-39,6,55,95,-63,6,74,33,-45,-95,-99,-75,-69,14,84,-71,-53,54,-84,-92,-100,-81,-87,-51,-56,-64,-96,-93,-85,-16,57,-48,-42,-93,-76,-100,4,-54,-91,-65,43,25,-95,-14,-5,-68,-51,-99,-21,81,-100,-16,-100,-99,-92,-18,-70,-26,-27,40,-71,-12,-27,-97,60,-61,-81,-10,-90,86,29,-93,30,-94,-59,-95,-70,18,-83,-54,-100,-87,-70,89,-57,-96,49,20,-96,14,-86,-91,82,-59,-92,-88,-73,-17,-74,-100,77,5,-1,-71,-97,25,-100,-100,69,-66,-89,-90,-100,-86,54,-100,-68,11,66,-84,61,53,-76,-27,-86,-94,-99,-100,82,79,-83,89,-97,-11,-89,68,-8,50,-99,-50,-98,30,-92,-71,16,37,39,94,3,83,-94,-95,52,17,-23,-100,43,92,-57,-100,-5,-41,-93,-48,-99,-90,-37,-44,-99,17,-24,-57,7,37,-66,15,-65,32,-95,-54,-77,-57,35,11,-42,-100,-100,-18,-23,-95,-92,-89,-5,93,22,-3,96,45,-70,-93,-45,-31,59,20,-92,-41,-100,4,-99,-100,-75,86,33,-17,-13,21,-98,-93,-65,-47,-83,-33,-96,-26,-63,-7,-98,-40,-93,-9,-99,5,69,-100,-5,-63,-12,-92,42,-98,-49,-43,-7,-79,-97,57,54,-9,-87,-71,-6,-51,86,-92,-49,-59,-85,12,-83,-82,-30,-53,49,16,-92,-57,-100,-95,-95,-43,-12,-62,-72,10,2,22,13,-95,58,-100,-99,53,92,-70,-100,-99,-31,-71,-83,-100,27,69,-76,66,-72,44,76,-76,-98,-89,-94,-93,-76,-63,-16,-69,-100,87,-100,56,-52,-54,-77,-95,-80,-62,-88,-52,12,-72,-88,-82,-20,35,38,58,-65,50,-93,20,-57,-45,-63,-26,-42,-8,-90,-74,-79,-77,-17,72,-87,-35,71,-95,-75,88,-87,-90,-26,-98,73,-100,-100,64,26,-77,-100,-3,-24,-73,-70,30,29,69,-60,-28,65,21,-67,25,-42,-100,-92,-92,-34,6,-57,-77,-100,-77,-48,-30,-13,91,-55,18,39,-96,-25,-98,25,-73,-18,-79,-17,-84,84,-2,-51,-44,75,-49,63,-92,-20,-99,49,-77,-100,-96,72,98,-91,71,-99,-86,-63,-90,-99,-79,-6,66,37,-100,-77,-28,-85,-70,85,-100,-88,54,-100,-98,-44,47,-78,-58,-67,-98,70,-26,-12,-36,57,-55,-88,17,-99,-100,-96,-48,-61,-73,-91,-99,-95,-50,2,-94,69,26,-47,-69,-86,-100,-72,-39,86,-86,-75,98,-56,-83,29,-99,-88,-94,28,-39,28,68,-85,-26,52,45,80,39,18,-44,3,69,2,-41,-11,-97,91,-100,-71,-46,-11,-81,-98,-79,-75,-100,-75,49,-99,-98,-30,13,85,25,50,29,-100,5,32,-99,-60,-68,-100,-67,5,-95,-88,-100,-9,-80,-44,-94,99,30,-87,-56,91,-95,-17,-79,94,-70,-58,-40,-97,-86,-99,0,-55,-44,-100,-41,-98,47,25,-45,-95,-57,-73,-32,35,-68,-95,86,-100,-93,58,50,98,37,-61,-90,-94,-93,-89,-49,-61,-65,34,41,-93,-76,-95,-66,-75,-4,-48,95,-14,46,-65,34,32,-26,-36,-69,58,-97,88,-89,-96,24,-75,-100,51,-96,-100,-99,-98,6,80,-80,-53,-50,-100,-83,-100,-98,43,-77,-100,-79,69,-74,-91,-10,19,-64,-97,35,-97,-100,-87,-80,-57,-69,-20,66,60,-53,-63,-70,-3,30,-85,-66,-85,-89,51,-89,91,-88,-26,-16,2,77,-85,-26,-23,96,58,-58,-31,-82,-25,-71,-95,-75,-97,99,-80,-24,17,21,-75,6,-13,23,32,-96,-84,94,-99,-100,-96,48,-71,-100,-24,39,-99,44,69,-99,-60,-60,-63,-100,-75,-93,-100,58,-35,-59,-100,-93,-90,-3,-21,98,9,-77,10,-100,-99,-87,20,88,60,-3,-86,-42,57,-16,93,-32,-99,-15,4,-85,15,70,-64,-75,36,-38,-97,50,40,-90,-97,12,-65,-59,-100,-88,-4,-99,-2,68,-48,77,59,-81,-94,-86,-45,87,78,-85,-81,-15,-29,87,54,-100,7,52,-98,-91,-78,-4,-78,94,44,-47,-95,-98,-27,-94,-86,29,88,78,-87,-100,23,-74,-41,57,-60,-28,-96,23,-62,92,-43,-65,-92,16,79,-80,-91,-49,-98,-100,-90,-81,68,-19,-100,-59,-78,-77,51,33,-100,52,-72,-90,18,-62,-84,34,47,-25,-75,-100,56,-22,-58,-80,-96,-9,-86,-31,55,-100,31,90,-69,-69,-45,6,34,-32,-75,-49,-24,69,-97,36,-100,-95,39,-88,-39,-96,-84,73,97,-100,-84,59,-87,-91,7,-100,-43,-60,-100,57,-87,27,35,17,-38,58,-100,89,-12,-42,-54,-95,47,-73,64,36,51,-75,-9,90,94,54,-26,59,10,-47,22,-93,26,-85,44,9,-60,-5,-88,-40,-71,-98,-100,-32,-82,-71,-88,43,-45,-30,4,43,-85,-68,-79,5,9,22,-88,37,-98,-79,-93,-27,-8,58,-83,64,-98,-96,-95,21,-58,-97,-22,32,94,-53,68,52,-100,-62,-97,70,-22,-100,-32,-93,40,-94,85,-26,-84,-82,-83,5,-83,-31,-69,-100,7,-43,1,-19,43,-54,-6,-97,-52,-23,-92,13,-33,-33,-99,-89,81,-79,-12,-88,25,-45,13,-99,-93,-100,-95,-56,51,-89,-91,-100,-12,33,44,30,-75,-72,-3,-91,-97,78,56,35,-91,-100,-72,-100,-43,-44,-82,-92,-53,46,-72,33,-14,-95,-100,-90,92,-96,-89,29,-1,-98,-35,7,-19,68,59,-79,-87,46,51,28,-1,4,-38,-89,-93,-79,-17,12,61,-9,-96,-94,-52,-98,-99,-100,-98,-88,80,-96,-100,-44,-61,-97,-55,-40,-12,90,94,-98,-49,-19,-3,-94,-88,-8,34,-89,-74,-100,-100,-100,87,-28,50,-20,-92,97,-64,-50,-8,64,-43,-94,-77,7,-65,17,-89,56,-92,-89,-96,-34,-98,-10,-43,-100,-91,-79,-100,-91,-94,69,-29,-97,77,53,-67,-100,16,-49,3,-100,75,-45,-59,-75,-34,-98,-36,-97,28,-99,98,-55,14,-68,10,-26,-97,-99,19,32,-81,-1,-90,-93,-2,-19,-98,71,66,-57,-13,3,16,73,-39,-99,5,-76,-49,-40,-96,17,-98,-67,-82,-99,-70,2,-38,-3,-97,40,33,-96,-90,6,-99,43,51,-91,-96,-85,-100,-32}
{97,58,54,-60,22,-90,91,61,-45,-3,-30,62,77,14,68,-91,86,70,93,-43,54,66,92,72,69,79,75,-94,100,-99,-90,59,-78,-82,-68,87,24,-58,-36,58,-10,97,96,-15,-36,62,27,69,17,95,-88,79,13,69,83,99,-23,-23,50,72,84,60,10,96,78,80,72,81,60,69,78,-22,98,41,-24,-86,-1,87,62,-52,-7,-11,100,77,-15,76,9,-53,86,100,-92,32,81,97,72,32,80,98,55,100,75,67,-29,40,95,0,99,14,-43,99,-73,-72,46,-1,59,67,-74,0,74,-68,-12,38,-51,100,56,67,95,97,-9,81,66,-13,69,-59,-6,47,-44,-2,76,87,98,-10,-69,5,49,-90,-15,15,100,94,87,-24,67,95,24,-92,100,-50,-18,89,60,63,-15,-92,100,21,-5,-92,-13,72,61,99,-36,100,43,97,54,59,49,94,-47,99,65,100,80,99,91,-58,-89,-96,19,87,-2,-22,65,76,-93,97,63,-76,70,-47,27,10,69,-32,-66,43,25,100,-29,-2,42,-72,28,-91,82,99,17,1,31,99,78,28,-65,100,-75,-61,87,-62,11,46,11,49,51,73,93,-37,95,88,-3,27,90,48,79,81,100,-4,100,96,30,-62,5,77,99,100,63,98,-81,25,39,-48,-48,14,13,100,42,96,-5,91,18,16,-37,-24,-80,57,54,-78,43,54,50,100,75,-80,44,68,3,74,-62,99,-95,96,-22,99,6,-92,39,-27,56,18,-98,12,79,73,-94,79,99,50,41,100,24,98,66,60,100,100,-27,-47,36,94,39,14,62,-51,-76,-25,-97,100,-69,37,95,37,93,11,18,-26,82,93,73,90,-8,-17,91,-68,85,98,99,-94,-55,91,98,99,-77,32,-41,98,95,52,-82,32,94,90,4,94,43,100,72,-25,87,8,100,-35,1,71,73,14,67,72,-31,51,69,100,84,-74,-47,30,75,18,98,46,52,54,71,100,14,92,54,-12,-73,9,89,-67,-34,96,56,100,83,-57,83,-93,62,38,-82,62,42,35,49,74,42,44,57,-5,-70,68,97,-82,-11,-47,100,-41,-15,58,72,53,28,95,22,90,18,56,88,-92,80,94,94,45,-32,36,-71,-54,75,100,-42,64,-56,99,-57,93,40,96,39,-33,97,79,40,68,-21,36,-34,66,100,70,90,100,80,81,-98,46,-72,70,9,-88,68,100,-40,14,54,-13,66,93,21,44,71,98,98,73,-4,85,86,17,64,-28,-92,-21,100,-50,44,100,98,-27,93,-11,-18,97,61,86,75,30,-1,-21,41,1,-44,17,87,-66,6,40,53,-11,25,60,42,55,22,91,56,99,91,95,-33,81,88,94,-35,33,95,69,90,82,98,28,96,96,-68,59,37,98,69,-83,-49,94,72,94,96,-4,79,82,84,98,-99,19,100,87,97,-72,48,40,96,-39,-96,5,7,-58,69,87,91,41,100,15,-75,85,77,34,-9,-24,15,22,100,71,-8,66,83,-14,58,-90,1,100,90,-56,96,99,100,-4,100,-88,91,-73,-61,5,37,100,95,44,92,-28,66,-68,54,-62,96,10,-43,98,100,86,82,99,96,-23,100,-30,26,95,-41,-60,-38,52,99,74,97,1,52,95,78,100,100,-92,-15,-99,97,-98,55,53,-12,28,39,-34,-48,-59,-62,99,-19,100,67,47,2,-76,69,77,-71,64,-13,52,-55,94,33,16,19,93,95,15,81,64,28,-39,84,27,-48,14,26,99,2,26,28,-84,-40,-57,63,-27,9,-36,57,85,100,69,92,-84,28,85,-60,65,17,78,53,74,72,95,-61,62,100,29,52,35,-88,11,36,63,-62,19,51,-40,72,99,19,89,2,-10,89,44,12,39,89,2,-29,92,52,55,-1,58,2,57,-31,92,65,6,70,0,30,74,-23,86,74,81,72,-3,76,-65,67,2,91,-50,-39,-48,97,26,-53,83,42,100,24,55,-56,-53,-29,87,100,38,-13,-48,21,-48,20,94,100,99,70,-28,58,37,96,78,92,-72,65,40,-52,-61,96,-45,65,89,52,77,81,13,65,62,-13,-23,99,-33,99,37,42,17,-91,38,-53,-83,100,-8,97,-73,-23,-70,-5,67,14,59,31,100,-85,-25,16,82,71,-55,64,83,100,78,-73,-66,45,96,-33,97,100,-94,91,-37,-53,97,-50,32,-60,-45,-97,64,-54,54,-3,0,-7,-22,98,-29,96,96,21,66,-35,9,100,49,40,91,55,-21,100,-32,99,-6,97,1,62,100,100,85,12,-9,11,-72,-13,-4,-99,-11,11,-16,5,72,-32,-70,53,91,92,32,100,88,100,95,-75,53,95,37,66,99,98,13,35,75,-35,-54,-2,94,-85,95,-76,100,99,98,1,-24,-71,97,10,-77,90,30,54,-98,67,82,92,73,100,100,-99,97,96,-80,45,98,-73,88,81,100,80,100,99,83,-18,22,69,97,44,50,15,83,63,32,-22,100,77,-88,52,-93,90,-61,82,-53,-43,-78,77,-90,-29,-54,20,5,72,88,99,45,68,-61,36,89,51,-58,-42,72,92,43,99,55,-11,97,99,57,-66,-81,25,27,-47,97,99,41,-38,75,78,42,72,40,32,-92,99,1,100,5,-73,-74,38,82,-30,-92,-81,91,40,-12,41,85,87,21,98,90,-27,55,-32,22,60,98,82,47,10,99,58,36,21,48,98,-54,70,-24,100,-57,45,-43,-55,99,14,-32,56,93,51,76,98,-69,100,-32,86,48,-51,-44,-15,93,82,100,81,60,-98,86,8,90,83,100,-4,44,-94,33,-55,69,89,38,24,54,99,-49,59,-92,-1,76,-4,49,100,77,49,-77,-72,84,97,-56,94,55,98,5,13,100,-15,70,-19,52,60,-68,91,100,91,68,100,-89,64,-82,94,44,96,-1,-55,75,45,77,-69,-70,84,82,93,60,-13,49,100,98,-27,-13,86,74,-12,-16,100,-10,35,-62,7,66,34,100,60,98,25,100,-17,-61,-15,-60,-16,82,-4,9,72,-58,58,94,39,59,-93,-5,-12,81,100,-23,38,-51,-48,30,47,100,100,33,100,59,-67,54,91,-1,96,-82,12,-45,69,100,-69,16,45,-17,6,100,89,98,-10,-56,91,98,32,79,87,-87,73,91,100,94,95,96,53,3,-65,-96,-93,-57,57,-64,100,55,13,-30,-13,82,23,-16,-28,35,23,65,99,-95,100,69,87,-43,-39,41,30,31,-22,-36,41,-3,-54,72,71,43,-6,-48,-91,-97,98,-76,-42,21,73,-88,-82,100,60,14,98,-18,100,61,91,97,-66,-6,58,94,61,94,57,100,-96,95,95,-56,95,38,29,100,-3,11,-97,79,-69,99,99,77,99,29,94,83,59,-72,88,0,-71,-16,55,37,-85,74,59,-23,7,-39,-48,100,90,-67,41,98,53,56,-20,100,12,21,-78,96,46,31,100,65,-13,2,87,-13,4,76,-92,57,49,43,64,63,-67,-1,100,89,100,-35,38,71,15,4,90,-18,97,76,96,99,49,-2,60,-36,100,53,80,98,-70,34,34,-36,-68,11,95,67,66,100,-17,23,77,85,67,100,-31,-56,86,-97,-54,-1,-90,96,74,73,98,99,-76,17,92,100,-56,-32,98,93,83,14,4,93,97,100,25,31,88,-17,99,63,97,83,90,83,-7,26,72,72,98,97,80,-82,-7,92,87,87,81,-64,-63,81,-25,25,-80,31,-99,8,53,-55,52,-69,78,-40,-85,-1,-28,-26,93,84,89,-12,-22,-55,51,-89,62,98,56,-96,31,31,85,100,6,56,14,87,-37,98,100,-14,50,72,91,95,39,55,98,24,95,39,-70,82,99,98,95,90,68,-9,-28,34,98,97,89,54,-2,-22,53,49,23,-42,86,66,54,-78,91,99,97,-25,100,22,-45,90,100,33,95,26,95,61,100,13,-18,96,100,82,45,87,23,-29,60,86,100,-49,96,10,-30,-86,73,66,94,88,-95,65,-93,-45,78,87,-27,91,-90,85,-45,13,84,38,-95,52,-27,88,-92,-40,43,62,-72,94,-52,-66,16,-87,-5,20,-89,14,44,27,88,25,87,99,18,100,49,-51,18,-95,-11,13,35,96,95,68,86,-20,27,74,3,40,100,87,-44,39,99,-27,77,100,3,88,-94,33,92,-74,-67,-4,-84,5,100,-54,77,-3,61,58,-54,-48,94,-83,38,17,96,65,90,100,100,43,-80,34,-10,-83,86,8,97,98,69,72,93,99,100,39,76,81,16,96,97,87,70,75,94,91,1,96,97,91,-39,76,99,80,4,24,45,100,72,64,67,24,-54,94,38,100,85,-83,79,100,53,54,-84,92,44,-30,77,90,65,83,86,-15,99,90,35,43,99,97,55,-47,63,46,-16,64,-36,85,-54,57,-67,19,10,-21,-88,33,98,95,100,92,64,100,100,35,-47,100,76,28,-53,-83,-62,-15,29,-21,95,-79,100,100,100,-69,56,-87,20,74,66,-53,-44,99,95,-77,92,-11,95,100,100,77,94,86,6,-38,97,30,100,29,97,59,100,64,100,15,6,99,-69,98,-33,100,7,-62,98,93,21,96,100,95,-34,-26,87,-44,-59,-56,10,70,-4,98,51,26,-64,85,-32,70,51,19,69,99,94,58,-88,-53,-5,-16,-20,48,-86,70,68,70,100,39,-61,52,-37,83,66,-19,-34,53,98,94,-19,95,48,89,1,-5,58,42,-66,23,69,91,96,-72,100,69,9,6,67,65,-90,-24,100,74,-67,61,-57,0,78,-33,100,-84,54,14,66,-37,96,99,72,54,98,17,98,99,61,-84,49,78,-9,97,77,65,66,-96,100,100,67,-52,60,33,100,41,-6,-86,11,96,53,89,64,-31,20,-15,-83,28,100,74,0,86,-66,2,85,-41,44,98,41,-18,-9,39,70,-63,8,98,-43,-28,77,-65,95,53,-95,-9,53,30,-2,-3,-43,62,66,99,6,98,-37,3,59,100,24,68,7,96,79,-21,57,97,67,85,21,100,-87,-28,50,-2,79,100,100,1,72,99,-35,98,52,-98,100,-56,-34,30,15,11,100,92,78,93,100,-45,-13,92,100,41,-72,100,62,-20,-14,95,94,-61,92,94,95,98,97,-59,63,72,7,25,-10,95,-47,-15,-42,14,39,-19,70,100,99,-2,100,86,95,6,85,93,47,2,-45,25,31,88,94,100,99,100,45,100,-53,-5,77,58,76,22,51,70,56,10,30,35,44,48,-38,74,-94,-66,-72,-98,91,79,-61,84,77,98,98,33,95,23,35,-27,-62,100,99,8,29,-62,80,90,97,-71,97,84,100,97,-32,85,-73,-49,96,88,16,-68,-91,-76,13,-12,48,98,77,31,31,-18,55,98,87,53,64,-92,-47,-98,38,74,-9,-32,43,34,26,97,85,100,-31,100,-18,83,-91,100,56,83,85,36,5,93,-8,65,90,34,87,68,66,6,9,-1,100,60,59,54,-93,89,7,91,92,92,-14,45,-1,44,73,95,74,77,54,-76,87,37,56,48,59,98,92,36,33,92,81,-61,-38,73,99,73,-98,94,98,30,98,97,99,82,99,59,-38,92,-30,-5,79,-76,96,40,100,63,98,79,-19,8,86,90,40,89,-1,77,-46,37,51,32,21,98,78,-65,33,-94,43,54,98,70,35,61,54,-59,-45,-46,-77,-18,98,100,85,91,78,68,-51,63,81,94,90,15,-2,48,-91,41,-83,-82,65,100,58,19,98,-65,65,-44,39,-57,-51,71,87,99,-11,-41,100,-67,46,-84,91,79,82,96,96,35,71,-46,70,100,-87,95,97,-56,97,-51,79,26,100,97,-53,94,40,-43,64,100,44,-20,-25,57,95,6,100,84,-92,100,77,36,89,30,61,-16,20,83,-26,90,-61,34,73,100,76,-89,44,-40,93,29,-53,36,95,62,-38,52,99,100,84,-32,99,63,100,47,-7,86,99,-74,97,35,44,10,-34,69,-62,32,6,39,25,9,69,-22,15,16,-17,94,-34,-19,6,24,79,65,-61,74,-59,62,100,6,-77,-62,59,27,94,45,75,86,3,95,-20,4,-16,73,16,15,75,-69,61,16,90,8,47,-21,84,-11,50,99,-81,86,98,-84,-53,20,56,47,88,-67,59,-5,100,-23,49,76,-68,-53,93,92,82,-40,-93,41,-74,-71,-21,30,88,-80,69,95,86,-66,51,8,-21,69,70,79,95,97,-40,65,69,22,94,84,76,99,98,100,-92,-82,-56,22}
{100,47,80,100,66,82,82,-32,66,54,-2,63,21,9,80,26,7,94,48,-76,99,85,-82,100,-71,-14,13,77,6,52,25,-89,-36,-84,-15,89,22,99,91,62,62,-49,68,48,-27,72,92,77,19,1,33,-36,22,89,49,97,19,32,-69,46,53,96,98,48,68,-11,-77,50,98,4,-14,50,-85,55,47,-68,33,88,-69,99,-50,-90,87,-60,-79,18,100,60,75,0,31,44,73,97,48,-20,-86,100,41,-45,66,100,6,36,25,82,-22,35,100,35,16,81,62,82,93,-18,99,84,84,100,-51,84,98,-47,3,43,90,-61,-23,-1,100,66,-9,100,-18,17,13,94,62,-31,-84,99,41,95,98,27,-81,10,-80,-49,81,99,96,62,-97,25,-48,-31,97,-61,86,63,-25,-19,77,-32,-36,-11,-63,84,93,98,80,92,33,95,-98,89,-41,57,31,61,-38,-51,-46,71,56,-55,92,15,100,94,85,87,39,16,82,71,100,-7,-34,-92,54,100,7,69,7,42,24,97,-74,-82,67,88,73,41,97,-50,85,78,89,100,22,80,-6,84,100,-32,44,76,36,73,-85,-26,-58,20,100,-67,97,59,100,100,75,64,-48,20,73,23,23,-17,-28,99,100,66,94,100,65,19,-85,86,-99,67,86,11,26,0,-68,28,-95,-3,95,-9,89,91,-38,60,83,78,8,-96,2,100,70,-17,-44,42,99,62,98,11,-93,17,92,92,-51,60,15,5,-74,79,-19,14,-54,-12,99,87,61,-61,100,-89,91,98,100,-55,-97,-82,92,100,93,8,-47,64,77,-63,-80,46,91,94,-12,56,67,-2,99,-59,78,49,100,97,3,85,-65,-24,-62,57,66,100,-88,0,-63,54,19,45,32,69,69,90,83,35,-58,100,0,34,70,60,-22,27,-91,99,68,43,-27,89,45,15,-61,88,33,11,91,60,40,-55,-28,51,-78,64,35,93,-37,8,-86,93,96,29,92,55,-50,-68,91,88,-74,44,94,69,51,81,100,78,0,-76,48,99,94,100,28,99,73,-90,48,93,97,97,97,44,72,-5,59,-10,-59,100,78,76,73,77,85,75,75,-49,74,56,-31,59,99,79,89,50,-94,87,63,37,53,98,45,82,-97,83,38,45,89,96,58,-51,21,63,52,57,21,100,-83,41,66,-2,44,43,48,76,7,48,9,86,67,53,99,87,99,100,24,85,99,-93,22,-39,100,72,-16,10,85,-99,99,99,98,4,99,96,94,-54,-21,30,54,68,93,27,97,-27,100,54,-28,94,71,99,89,-9,74,30,-92,-37,67,-88,65,89,77,-79,58,100,93,-42,-99,55,16,-68,87,98,99,81,100,49,49,15,93,11,100,-22,99,10,-50,15,-62,-34,97,-50,-85,45,-39,24,48,100,89,100,15,-17,89,-67,93,100,63,60,45,100,67,84,-75,68,-82,22,25,20,62,18,96,-13,51,14,80,80,18,99,98,-75,92,49,100,100,-65,40,85,-88,8,-64,33,-98,99,53,-63,-20,-42,91,97,50,-8,-34,17,47,50,-29,61,36,-44,-56,-93,54,-51,50,81,100,81,-98,19,24,48,73,49,100,89,98,69,90,64,-28,-71,61,48,38,-78,67,96,38,82,87,100,-27,22,86,93,62,99,100,-18,-13,82,-86,91,23,98,90,99,93,19,96,37,-34,97,58,36,99,50,76,76,-41,28,82,94,-95,66,88,100,89,100,-9,-52,100,99,94,98,100,-80,77,-5,33,52,100,36,-18,-54,96,-95,67,86,86,100,67,6,31,53,87,-86,54,100,-7,2,-40,79,92,-6,11,71,81,-98,4,-61,-62,53,10,-21,87,-10,-14,25,12,60,-44,17,92,-35,77,-48,31,-15,99,-89,70,84,11,100,-89,63,76,100,36,68,99,-27,2,100,99,74,78,80,68,-18,55,29,66,44,100,28,-3,75,-79,-99,40,-69,89,91,99,55,96,63,89,100,47,20,-88,84,-53,-52,96,69,99,96,9,91,-15,-55,97,100,62,11,19,-96,80,-3,95,90,99,55,36,85,92,-86,86,95,100,-15,100,85,79,-74,-17,95,71,-51,73,66,11,16,60,23,-24,9,-50,-16,100,95,-33,83,-93,60,-8,99,-32,61,78,75,-51,100,8,63,-61,93,85,-15,99,27,45,-82,-44,89,-19,99,-11,50,71,-79,93,71,-89,-41,-48,-63,-58,30,2,-58,32,-82,-8,-55,78,100,45,-97,99,-44,86,27,0,82,-67,100,68,80,-47,4,-77,19,9,98,-69,84,38,83,-90,100,-23,29,100,-66,50,15,74,95,7,53,53,-29,-27,96,44,-21,95,2,-3,92,60,94,-74,48,-97,-57,86,51,-90,86,-4,11,48,100,88,85,-7,84,11,97,100,65,-40,-85,91,5,62,-19,30,-49,22,9,-21,89,57,-62,15,71,4,4,42,62,100,25,58,94,21,-80,59,-2,69,99,84,99,-59,89,-16,88,-6,92,99,-27,91,98,70,5,2,100,-1,99,-76,11,-64,71,0,100,92,18,51,0,95,-18,-56,-96,43,39,61,-60,-9,100,-44,83,-66,45,-4,-90,-24,74,57,23,40,100,100,92,-60,-83,92,70,66,25,-18,60,99,91,-58,-6,49,89,93,11,100,61,-61,57,51,98,5,-5,82,-29,100,29,-70,95,-75,-25,-1,-22,-76,95,90,4,-9,3,7,98,100,40,83,46,-46,100,100,100,65,21,77,92,64,-59,89,90,69,94,86,73,-90,42,72,100,26,35,-39,100,97,77,59,72,26,-3,84,-41,37,-24,23,100,63,22,84,-58,9,52,87,-9,85,96,91,74,95,68,60,66,-51,-13,76,-69,61,9,-57,12,76,65,78,-51,60,-59,57,100,0,-87,-95,17,42,18,100,-20,100,70,66,61,85,29,-80,45,90,99,-63,96,60,24,-18,70,-48,-73,96,100,37,49,-4,9,84,-24,13,-8,4,60,100,-36,74,7,36,30,68,81,34,84,90,-17,100,87,100,89,8,99,-82,100,-89,89,-82,80,-21,98,86,99,100,-3,-27,97,-69,72,70,-1,-3,-55,17,22,95,-12,-20,-3,90,37,74,46,-15,100,65,17,42,-49,100,98,79,98,-43,90,25,88,93,66,29,97,100,71,-27,100,93,-9,74,98,-60,21,-46,34,-75,80,-2,-71,-83,-25,93,100,76,28,-3,-49,37,38,97,96,-33,97,99,53,26,75,66,59,55,73,28,100,39,78,91,-8,70,9,99,88,65,1,81,-87,97,59,48,-28,-47,44,83,4,65,96,73,94,25,-26,-69,100,-14,52,84,100,-47,68,-73,84,92,84,-19,79,87,86,100,-91,-13,15,80,-26,-42,-30,-23,96,-88,62,62,82,-55,58,10,-10,-27,89,87,73,64,-92,46,50,-16,85,-18,100,87,13,99,92,-73,100,-52,45,79,-26,61,23,75,50,-20,48,-57,-81,30,84,-66,98,58,99,99,-64,83,100,6,95,93,10,51,83,100,-92,73,95,77,97,99,76,-27,100,81,-93,-88,62,76,87,-90,-28,94,63,-77,94,7,100,66,-12,72,93,37,-60,42,-79,19,82,15,86,-74,98,66,-12,-18,35,26,39,33,63,100,38,50,100,-85,100,100,96,70,-61,82,67,-37,-16,86,91,-73,94,31,34,75,-6,7,58,-56,-69,14,100,54,100,83,44,100,91,37,-31,19,96,1,-41,-83,62,92,99,6,92,71,52,-65,100,74,36,66,47,39,99,73,-68,72,3,80,-29,82,22,14,97,-20,63,27,1,50,75,59,90,99,65,35,-32,18,-22,75,-38,63,5,-12,100,-15,73,76,20,-75,33,29,73,-81,-82,25,92,-29,-10,43,7,89,65,96,-8,13,63,25,100,-2,64,100,46,16,56,96,78,79,90,67,-23,95,61,100,82,22,-28,67,94,71,96,-44,-39,78,-40,20,-90,-50,76,85,96,-5,71,100,-68,-81,84,74,98,-77,98,100,97,1,52,94,76,-52,61,26,19,23,-98,52,20,87,82,84,79,73,-33,62,-6,100,-33,58,61,87,76,46,29,-98,66,20,-78,89,94,-19,-32,-30,72,95,80,40,93,-63,59,94,69,-56,18,55,79,18,-59,98,-64,49,100,14,-93,2,92,-77,91,-35,-10,-80,93,100,95,-10,-15,-97,20,-61,99,83,100,-80,-51,50,31,92,-56,-5,56,99,-85,41,87,-26,100,-44,16,-43,99,-75,87,83,-48,21,-90,99,97,-32,58,96,49,98,98,80,96,6,86,8,-84,34,46,-86,-9,13,-34,35,-18,-48,89,90,87,-39,15,-81,33,93,-85,62,78,88,94,-50,89,-25,55,76,98,-48,100,4,20,90,100,39,100,76,98,100,26,-95,55,97,100,-64,100,100,-2,-88,60,100,-32,94,-88,96,34,-28,100,97,96,-81,26,28,100,97,98,63,60,53,92,24,26,63,-37,62,70,75,100,-4,28,-24,-84,66,-83,86,81,42,96,-34,75,-10,75,80,61,66,100,-20,-68,92,21,40,-82,63,-40,88,-41,58,-82,-8,100,6,-49,92,99,97,-57,-62,-27,-85,96,85,84,62,98,-65,83,96,94,66,57,100,62,100,58,100,97,65,63,-15,100,-2,89,70,-82,-90,13,97,71,92,93,99,40,99,-79,98,-38,22,99,60,-21,92,88,62,26,77,4,67,100,83,58,91,91,97,100,97,-92,-1,99,-74,98,68,14,-52,-44,15,-59,-79,-98,100,-95,66,59,58,88,95,32,63,65,-56,89,97,39,74,8,91,-63,26,-4,-39,-93,64,100,63,76,83,-51,98,34,57,68,92,-27,-10,-12,88,91,20,34,76,73,-40,-9,100,96,-82,65,93,72,27,-87,-11,98,18,92,-10,95,57,-52,-25,100,21,-2,-71,48,100,99,95,95,80,-67,45,23,92,-47,98,-48,-27,90,100,95,-95,100,85,66,-86,18,64,-30,-59,-79,100,-31,77,93,99,93,45,-49,62,98,32,24,42,83,61,98,13,-95,-34,98,72,10,-77,29,76,52,55,36,42,100,100,28,93,94,96,-17,87,100,-6,100,93,98,15,88,100,61,6,55,100,73,69,-81,100,-13,60,-3,-78,95,25,-55,6,91,100,17,-8,34,96,88,-15,-24,-9,19,100,54,-62,-82,99,90,94,-52,86,59,-76,68,78,16,100,95,88,69,100,-43,-54,96,-56,84,-71,86,87,-59,17,88,52,-24,-55,78,77,-46,62,83,-75,-59,52,31,5,100,-74,91,5,-87,97,74,-45,100,25,100,20,46,58,78,31,95,93,93,68,-47,-76,81,67,33,72,50,13,-33,100,26,-39,13,-56,65,92,94,-23,-68,-36,15,91,-39,-76,1,49,-38,92,-10,39,62,92,-54,98,31,-88,97,11,-13,-69,-35,92,14,-27,96,-59,100,41,-93,6,96,93,-15,61,0,-50,57,-75,89,100,-28,22,91,100,89,47,96,36,-73,-16,91,39,50,100,89,-38,97,-44,25,14,-82,-22,84,58,92,83,-64,-82,-25,-36,95,97,45,90,-10,-71,28,85,85,-83,91,87,-1,75,33,29,42,-42,83,25,-13,66,19,-64,-47,35,54,96,-11,54,70,92,84,100,-58,47,99,96,99,23,82,-45,42,25,73,-96,-64,96,100,57,16,100,46,-46,79,54,100,86,-83,100,-63,100,79,100,49,45,12,30,89,77,9,96,21,-82,6,97,40,96,-1,-60,96,73,84,92,92,11,97,61,92,-16,80,80,-85,88,-46,45,58,35,1,58,43,59,-74,65,-85,93,5,96,100,-86,99,-50,25,-53,92,100,85,-71,84,62,100,30,82,60,93,-83,36,49,96,43,60,97,96,95,-56,-19,-40,87,92,44,84,-7,8,-86,48,-7,54,100,24,100,14,89,67,-23,23,98,30,73,-7,83,-67,31,-4,99,100,59,90,77,74,76,100,75,67,-14,-24,70,-87,90,9,79,-98,99,24,62,-56,91,92,40,95,4,-70,21,22,58,-1,-38,-73,49,-7,66,90,93,96,-69,-10,36,52,89,-78,49,60,-33,-22,99,100,70,77,82,24,97,59,-56,-52,-77,98,76,85,-75,-42,-21,-82,-82,-85,78,65,-64,91,80,92,70,80,97,55,-67,-74,-92,29,71,-38,-27,-37,88,75,0,29,-40,-51,97,60,100,49,75,98,63,65,33,82,-58,9,55}
{5,17,2,63,15,2,2,8,5,1,27,1,1,4,1,1,32,50,94,47,2,7,4,14,4,58,13,45,2,1,15,25,11,84,7,91,2,7,19,2,16,2,1,2,3,3,18,6,3,7,5,4,10,9,5,64,82,2,8,1,9,1,84,1,7,5,12,2,42,84,3,10,32,10,2,2,1,73,1,35,1,3,1,2,12,32,64,89,6,28,10,13,4,9,7,7,20,12,25,8,2,1,1,25,43,45,39,1,1,1,4,13,21,13,3,1,3,1,36,1,58,1,1,11,3,1,30,2,3,1,1,83,2,42,7,9,52,26,23,29,6,4,21,1,26,1,32,1,1,23,6,6,33,79,41,31,17,6,6,97,52,35,6,54,6,2,1,82,47,76,10,77,1,21,6,22,5,1,15,4,2,13,52,14,53,97,7,17,8,2,13,2,27,7,37,48,17,3,3,1,18,13,2,1,11,78,39,2,38,1,3,1,3,17,1,1,2,38,3,8,19,3,2,1,6,9,33,13,52,26,31,23,5,1,96,96,1,25,19,6,4,3,7,88,13,2,43,95,56,85,1,90,1,40,12,14,6,3,19,14,7,17,30,74,71,20,5,2,83,3,8,15,66,7,87,3,6,6,78,6,3,2,35,1,4,16,26,2,2,9,1,5,6,12,13,1,45,3,17,2,72,2,27,1,16,3,1,18,2,45,1,8,13,6,4,33,15,15,15,2,8,10,64,19,2,35,4,19,2,2,4,2,1,18,4,29,11,37,10,3,41,3,14,3,2,16,3,15,15,3,1,56,11,16,1,83,5,41,57,3,1,4,6,46,2,8,7,21,88,8,50,42,92,2,5,9,62,5,39,1,95,1,6,15,2,43,2,11,1,2,1,15,1,36,1,14,99,1,13,50,24,3,56,1,2,34,21,19,1,1,91,2,95,1,69,3,17,9,35,3,2,14,4,20,1,5,3,61,89,2,43,92,16,11,1,6,15,39,1,3,40,4,7,1,1,90,46,36,22,33,10,2,59,57,1,2,2,21,4,72,13,19,5,2,17,2,23,1,4,11,88,38,87,1,24,12,6,12,10,5,4,12,57,84,72,61,73,8,6,1,89,8,57,1,5,4,30,7,1,1,1,34,1,1,50,1,32,1,13,24,46,3,9,16,32,15,6,1,1,2,23,3,1,91,25,13,48,22,7,2,2,44,50,5,10,39,8,3,30,2,26,6,55,16,55,63,48,26,4,13,3,85,1,1,18,1,21,1,1,2,4,4,27,25,35,37,5,16,64,22,93,78,1,30,36,17,4,3,12,37,2,6,1,5,33,3,17,2,29,50,2,51,44,57,22,1,24,1,23,80,1,13,2,63,5,63,88,1,4,2,1,27,1,2,15,1,2,16,12,5,62,34,36,42,15,6,2,24,10,96,18,14,32,7,2,14,14,49,11,50,16,1,9,20,3,17,12,12,19,12,4,4,1,56,1,29,16,71,3,18,77,5,10,1,5,1,2,5,1,69,56,1,5,16,47,1,9,57,1,11,4,26,10,1,13,1,1,4,68,35,1,10,19,56,53,76,40,21,5,9,5,50,19,48,3,1,5,1,24,14,1,4,1,85,3,4,1,4,4,1,9,68,5,2,6,35,29,2,94,33,31,3,26,81,58,4,1,22,81,2,11,7,40,12,20,11,76,24,32,2,13,2,3,7,1,97,17,2,5,4,27,22,41,16,1,16,8,27,2,4,3,22,2,1,2,3,29,6,4,6,2,1,25,8,19,3,25,2,2,10,78,10,69,33,3,43,6,77,25,26,2,2,6,2,1,1,2,1,2,1,1,1,4,6,2,85,85,2,22,38,11,64,47,13,1,20,1,14,6,51,4,3,3,4,26,18,83,91,54,12,9,11,1,61,3,4,13,7,8,1,13,2,20,6,40,1,40,57,8,2,31,2,17,6,3,4,36,2,14,3,43,2,26,3,55,2,15,6,2,1,4,7,7,35,62,1,22,65,87,15,97,2,6,2,34,7,7,22,51,21,2,29,1,1,6,57,2,82,28,1,3,1,1,1,42,1,17,72,2,6,23,27,23,90,2,3,16,3,1,1,4,87,1,41,57,11,2,20,26,8,50,6,2,63,3,3,78,7,2,9,97,16,43,2,6,50,13,58,10,9,1,1,18,2,24,18,1,1,49,14,10,61,9,6,2,1,2,22,2,5,6,53,2,3,20,10,70,5,33,61,11,12,1,28,2,2,23,24,1,45,19,8,1,3,2,1,26,14,1,2,20,3,28,3,53,2,48,23,17,38,1,58,44,24,45,1,64,25,36,13,52,19,56,5,1,12,8,2,84,24,9,10,4,2,4,6,25,50,11,1,1,45,23,77,3,44,8,4,10,71,53,74,2,1,22,6,16,84,1,2,51,51,68,2,1,3,80,1,7,1,47,69,1,23,81,19,11,14,2,4,16,3,21,70,4,16,1,9,24,30,3,2,22,4,15,27,1,1,3,82,91,10,9,25,76,4,1,2,80,51,11,31,13,39,21,12,13,2,2,22,80,79,73,1,45,3,19,5,27,2,7,2,1,17,35,1,1,88,1,1,2,5,4,1,74,74,2,13,16,13,1,11,8,19,96,24,64,1,8,18,7,9,20,1,3,12,27,1,23,50,12,7,73,28,7,24,87,26,1,7,71,2,1,43,2,3,1,82,74,17,4,4,37,1,6,21,21,46,9,36,13,3,6,7,7,6,3,2,8,1,27,20,15,71,3,7,9,2,15,18,82,23,2,35,1,22,19,15,25,12,1,64,21,26,90,1,1,5,67,7,43,1,20,3,2,24,21,17,3,53,60,1,35,5,90,9,33,18,4,1,8,24,4,26,9,20,5,2,36,11,3,4,4,14,3,16,1,7,16,4,32,14,40,6,1,20,22,28,67,9,2,73,20,30,47,10,37,1,1,11,2,54,36,43,46,4,6,6,20,6,26,1,2,2,1,29,5,1,2,11,55,14,26,4,15,12,30,42,16,6,11,1,1,8,26,17,6,80,34,1,16,13,71,8,5,8,23,44,3,1,1,1,86,1,9,21,24,6,1,99,13,1,45,7,5,97,27,1,11,2,1,55,4,6,34,1,4,4,31,81,6,12,37,72,2,2,18,26,84,8,1,1,4,97,5,51,10,4,10,9,5,74,3,8,3,53,67,1,30,14,3,81,1,1,40,2,83,5,22,1,60,3,50,13,4,57,33,3,1,10,59,97,5,2,5,1,33,16,94,16,1,20,9,14,2,56,9,1,20,7,8,29,11,31,2,3,65,41,27,2,55,61,77,27,1,4,43,13,3,8,16,4,16,1,3,1,1,9,45,4,28,2,11,1,61,1,1,4,6,2,85,37,45,15,14,4,68,76,61,1,14,2,28,19,21,2,43,1,1,1,13,72,11,37,11,1,8,3,63,3,26,5,22,17,18,1,2,4,2,4,1,33,2,5,1,3,4,28,22,18,22,3,15,8,4,1,1,4,1,21,1,1,1,5,1,1,4,4,55,3,90,40,5,1,5,51,2,34,17,47,54,11,12,1,10,5,3,3,25,4,2,49,91,11,2,58,1,17,1,10,2,8,2,64,72,4,4,1,2,18,1,42,7,86,10,10,12,1,1,1,2,47,61,24,6,13,2,12,31,17,25,75,3,64,37,1,1,4,68,11,3,4,11,1,1,5,1,44,19,16,35,83,1,3,32,34,14,3,5,9,2,2,17,8,1,3,39,2,2,1,57,9,1,45,21,1,1,7,4,4,46,2,2,1,10,1,18,63,2,68,33,1,15,43,42,6,9,6,1,3,8,19,6,8,29,3,57,78,46,10,13,21,46,7,14,12,65,5,28,1,76,2,7,37,11,1,23,34,38,55,4,96,3,16,40,1,41,39,3,1,19,2,19,46,73,4,1,2,24,49,81,10,3,71,7,42,12,3,2,22,51,44,15,74,1,13,9,38,9,84,3,1,1,1,22,99,1,72,99,13,15,68,12,1,1,17,9,2,2,7,1,94,1,2,1,1,23,53,2,24,4,75,94,4,29,1,3,71,4,1,3,36,5,1,58,21,2,36,20,54,20,8,1,2,2,86,10,33,26,22,13,74,44,4,10,4,2,9,13,9,4,10,2,50,1,53,16,10,8,1,5,7,30,45,3,44,32,68,1,9,96,3,12,1,29,1,8,19,34,25,1,7,2,22,3,45,35,1,89,48,26,1,28,18,30,47,3,6,6,5,6,1,19,7,36,83,2,9,96,89,2,1,3,10,46,30,14,82,58,30,7,7,11,12,66,30,67,2,1,13,22,6,30,5,2,7,12,9,2,1,37,5,5,1,18,18,1,1,40,1,2,62,9,2,9,5,1,5,1,10,3,32,1,2,48,84,57,94,4,1,35,43,14,9,46,4,69,13,1,3,13,13,6,14,38,1,12,1,1,9,1,14,2,8,2,15,11,53,8,5,12,45,12,4,23,6,1,20,46,17,2,8,28,43,96,17,10,1,28,40,1,18,29,4,2,15,2,1,56,5,83,2,10,32,5,52,68,4,1,12,22,28,11,30,1,61,1,39,66,26,1,76,96,9,1,4,9,2,43,44,8,45,59,1,19,3,41,1,28,32,52,6,7,30,28,84,9,35,40,2,2,6,45,3,64,15,69,24,14,3,64,1,95,34,16,13,80,24,47,1,13,1,56,55,1,84,31,25,26,1,76,1,15,18,39,4,7,5,49,31,18,1,1,53,1,1,1,14,34,15,1,8,9,51,1,6,1,85,1,11,2,1,14,7,37,55,1,36,55,9,75,10,44,20,48,21,5,85,6,64,26,19,36,1,1,1,9,2,2,16,21,10,10,15,72,5,6,77,1,6,19,1,38,1,30,96,36,30,26,1,14,58,64,10,54,45,19,1,67,1,10,4,8,59,12,1,1,13,66,22,4,1,1,1,2,1,1,10,1,6,82,6,5,12,8,1,3,2,5,32,10,68,21,30,64,2,11,24,58,24,32,29,7,1,19,4,61,3,3,89,2,23,13,69,1,40,2,2,2,1,2,41,87,12,12,4,42,6,7,10,8,13,19,28,8,40,20,41,34,1,4,67,58,1,33,14,25,1,21,36,8,7,13,88,5,1,61,16,11,8,44,30,10,1,2,13,31,2,5,15,1,4,5,4,3,1,56,89,18,62,2,12,64,68,13,10,1,6,8,4,2,1,22,1,2,41,27,1,5,2,5,26,1,2,80,18,53,18,53,7,6,2,23,31,3,12,5,9,1,2,3,1,19,8,17,22,90,10,6,55,4,74,39,2,83,27,27,31,10,1,1,5,3,6,76,42,4,16,41,8,1,49,1,55,38,2,5,13,3,1,17,6,4,2,6,3,20,6,13,14,2,25,19,38,79,63,86,1,1,51,2,4,19,1,3,27,2,59,8,6,15,32,10,5,35,2,2,1,8,9,1,24,9,71,2,2,81,1,1,35,2,83,26,9,85,59,50,4,1,19,1,18,7,7,44,3,41,1,1,2,10,22,2,2,57,87,79,29,57,1,2,2,1,2,5,3,1,10,21,65,4,20,5,2,6,5,1,6,42,6,1,24,11,2,1,60,22,36,5,2}
Returns: 2.164009317301395E9
{-85,97,86,-100,-47,39,-17,10,-79,-79,-69,-74,-62,30,2,-92,35,-87,43,-96,-82,-79,-21,62,18,-86,-47,-27,-19,5,21,-95,-5,-100,65,-74,-70,-61,68,-55,-58,-93,-10,-36,22,-71,-71,-72,17,-88,-100,18,30,86,-98,-86,86,49,-94,-91,-2,-82,-98,-77,-76,-90,-97,-78,-100,-97,-82,-93,-99,-74,91,-23,-45,-60,-92,27,-73,-98,-100,-93,-100,-100,-61,39,-45,-44,55,7,-79,-88,-81,-14,-96,49,35,-35,-100,64,63,-80,-63,-96,-61,-98,-83,68,-73,-57,-77,-87,74,75,-40,-98,-56,-100,-81,-96,-100,-97,53,-47,-72,93,-53,-99,-20,43,-29,62,-57,-14,37,-25,-26,-100,-70,-81,-57,-80,-29,-76,56,-100,-89,89,-75,-100,62,20,-32,22,-11,56,4,-94,-58,38,32,-99,22,27,-52,-47,6,11,-55,-92,-96,-48,-72,-15,98,-32,-99,-36,-46,-18,-81,-1,-96,-73,-17,-68,85,-79,10,-96,-90,20,8,-34,27,-48,-17,-97,55,4,17,-47,-41,9,-54,42,-67,-61,32,-7,9,-12,-32,-84,-100,12,-63,-92,-93,-19,-12,-90,-9,-15,-26,-49,-86,-97,-75,-89,23,-41,-54,-100,-99,37,-98,-84,79,-41,-2,-42,42,-1,18,89,40,27,-62,-79,-60,-83,-30,-7,-84,19,-60,-20,-58,-99,4,-100,-64,47,-5,71,71,-4,-89,-29,-48,38,-63,7,-77,-78,-88,-85,-92,82,31,-53,-88,-27,40,-31,-81,27,-83,-83,63,-28,-22,-75,-92,-100,-40,-3,-95,-98,-70,-99,-39,78,-42,62,-59,-98,99,29,-100,63,-100,67,-54,-100,-56,55,-96,18,-1,-21,-97,-70,-98,40,-95,-23,-31,36,-42,-14,57,-72,-99,60,-46,-36,-41,48,-41,-83,-93,-38,34,-48,-4,60,-96,-7,-100,-70,-60,-99,8,-40,-100,32,-64,-3,-86,-48,-86,-100,-88,-53,92,85,-94,-87,25,-87,-86,47,-52,-86,-80,-84,-42,-97,-92,62,24,-39,-46,-98,7,23,61,-99,76,82,12,3,-96,-43,69,71,-61,41,-89,47,-97,-18,55,-50,-93,-83,-57,98,-42,-51,61,-100,-91,-98,-80,-96,-100,34,-100,-100,-70,-11,71,-52,66,9,-95,-95,37,-100,-96,-92,-61,-100,-94,56,-50,-50,-5,-99,-99,84,-100,-94,-87,70,-96,65,-84,-99,-100,-97,-62,-100,4,-55,55,-33,-82,-72,-18,-26,-87,83,66,-41,-100,-77,-68,-74,27,52,-28,-89,50,-43,23,-98,78,25,75,-8,-97,-70,-94,51,-22,8,27,-36,-96,-79,31,54,-99,-2,24,20,12,-97,13,-97,-96,67,-94,8,68,32,-66,-30,-90,-16,-49,-51,-68,-64,35,-87,-56,17,78,-85,-15,-22,-92,22,78,-82,-86,21,-72,87,-22,-75,-100,5,-96,-17,-40,-98,-2,56,-74,15,-95,5,2,-52,-7,33,-55,35,-47,-98,72,-96,-68,-94,41,-49,-7,-100,-16,16,52,-42,-58,-9,-91,-81,-68,-100,-48,-99,87,-100,-51,-52,-97,67,-73,87,-44,-63,-90,-87,-73,16,6,-51,-51,32,67,36,56,-17,89,-96,41,-95,-30,54,-87,51,-6,-90,2,-22,-26,29,-41,-1,-87,-44,5,-90,-93,-100,-97,-89,-50,-6,10,-36,-99,-7,-84,-89,-98,35,-75,-100,-43,-97,-100,-63,67,-3,-88,-66,-72,10,-32,-58,-95,-37,-96,72,-100,-91,33,-56,-36,-78,-98,-80,-54,-80,-63,-96,-47,31,-85,-86,-99,-22,-82,-20,57,-98,-61,-91,-100,59,1,-50,-73,-58,69,1,-96,-100,-68,78,-99,-100,-13,-63,7,-21,-100,15,-100,6,-19,38,-100,-99,-46,-12,-2,-84,42,78,85,-100,-23,-88,10,-84,-57,-3,-40,30,-57,-67,-56,-89,-98,78,-91,95,59,-93,75,-51,-96,76,-87,-100,-96,-79,-50,-35,-66,-100,6,-100,49,54,-86,-73,-99,16,-46,-19,-34,45,32,25,-93,-13,24,44,-85,-20,-99,-36,-75,-66,96,-47,-28,-34,-74,-81,-47,-89,-67,-99,3,-93,2,-96,-15,-30,33,-43,-100,-11,-88,-63,-94,-46,-21,-46,-83,27,-95,-71,-100,-74,25,-49,-38,-72,-57,-9,-98,-28,-97,-93,-77,14,-23,-87,30,87,-100,-76,35,-97,33,-100,34,-91,-50,-88,3,0,-75,-98,92,-97,-64,-100,-42,13,-61,-15,-90,-14,49,-13,-97,-80,-54,50,-99,-83,-99,-3,2,-97,-62,-83,-69,-100,-98,-50,92,4,-99,-39,-22,-70,-97,36,11,-97,-99,-75,7,78,-49,-89,-76,-69,-92,-86,-47,-63,-69,-86,34,-100,-92,-22,-99,54,48,-38,-66,18,-95,-58,-46,-10,-100,-72,-99,56,-94,-42,-88,2,-96,-93,-100,-91,38,8,-59,-4,-17,-87,-91,54,71,-82,-48,49,-10,-82,19,55,-97,63,-37,75,-98,42,-37,-91,-3,-72,-64,76,-23,25,-99,31,-50,-31,-44,-94,-76,-94,62,-100,36,60,-6,-12,-88,-86,89,78,13,-100,2,-43,28,-44,6,-93,-94,-55,-75,-48,-74,75,-2,-65,-17,-40,-100,-81,-68,21,-100,-15,-17,61,-100,-50,-52,98,-98,4,89,-100,62,-70,-23,-51,-24,-100,-76,-93,-73,13,-72,-96,78,-96,-62,-77,-87,-31,85,-72,-92,-3,46,-19,5,-91,-97,-45,2,-98,63,-67,-94,-71,-61,-67,12,31,-100,-98,82,-97,-25,4,-12,30,-46,-49,-27,-5,-36,-83,-60,-93,-92,-64,-73,-15,-10,-86,-89,-15,-92,-86,-98,-100,-83,-7,-59,-98,-65,60,97,-89,-57,-94,-25,-98,84,-46,-78,9,-54,-21,46,-19,-52,91,20,-91,-24,-100,34,-82,-20,-89,-43,-58,-78,45,-57,-91,-95,-92,-88,-100,-27,75,40,-100,-61,-98,86,40,-80,-88,81,-5,-36,-100,-99,24,39,-83,-81,-62,71,-79,-81,-57,-98,-94,0,-61,-81,-99,-99,-77,-100,-88,-84,-73,10,55,32,55,69,-100,-99,-96,-25,-83,-99,23,-87,60,-52,-98,38,-95,-24,-100,-100,-40,-73,-21,-99,-61,-68,-48,-79,-68,-1,38,-63,-98,15,-31,-61,-69,-98,-95,-11,-37,68,-43,29,-5,-26,-26,-56,-57,-80,70,-100,-38,-89,-100,-100,32,77,-51,-82,-97,19,87,37,43,-84,28,10,88,-68,-27,-68,-97,15,59,-35,-2,-98,-97,69,9,-29,-1,45,66,-87,-69,-52,-65,-6,-100,2,-83,-57,-16,-92,-81,24,-100,94,-7,72,53,-98,-55,-100,-100,-88,-71,-13,52,-100,-86,66,27,40,-100,-79,-90,-100,-61,-27,-100,-78,46,-5,0,-85,-67,-100,-88,-49,80,22,21,-100,-99,33,18,24,-90,-71,-86,-49,-82,-97,86,20,97,-67,-63,-20,-44,-17,-26,-84,-100,-94,31,43,-24,-96,69,71,-93,45,13,38,9,-91,-46,-76,-42,-70,-49,-84,-36,76,87,-53,-52,26,-99,-29,-28,72,-12,-40,1,-29,-31,37,-100,-81,-80,-46,-35,15,-80,-76,13,-58,-82,-59,-53,-49,-86,-100,69,-44,-56,44,-70,5,-29,-99,46,-89,-68,29,-93,76,-100,-65,39,-72,-100,35,-100,-100,22,-8,15,43,-70,-62,-61,-82,21,-98,-74,-55,-89,-100,-90,-94,59,-2,-100,17,0,-58,-100,-95,-94,-35,-16,-90,63,-49,-66,-18,-96,-65,-40,-95,-57,-98,-43,-79,-100,-51,-88,72,-47,86,-96,68,-97,-70,-99,-100,59,81,-63,-100,53,-6,-25,-26,15,-56,-94,-49,-68,-95,-88,-88,83,-6,-62,-24,-76,-90,5,97,6,-97,-100,50,-64,-27,-19,-97,-8,-81,-80,-82,-100,-33,-75,-95,-100,-89,71,-21,46,-81,4,45,-8,82,-59,-55,-99,87,-54,-65,-69,-52,-3,-23,-100,-7,-71,-86,-65,84,-73,-100,-100,-3,-76,7,-95,-38,-43,-94,73,-100,-93,12,-13,4,31,-62,-10,30,-6,-51,-83,20,49,-83,-53,-48,-97,-73,-28,13,25,-72,-95,-36,-44,43,-75,-89,-76,97,-99,-4,-94,-100,-86,-55,-91,-37,63,-71,-90,-91,52,76,-3,-32,-63,-70,-70,-96,-39,-84,-48,-96,28,-49,-98,-38,2,-80,-3,-93,87,-99,-10,51,-42,-81,-2,63,-68,-94,-94,-2,71,68,-99,-99,-89,-91,-94,-85,-61,-59,-20,-83,-81,-35,-16,-59,-55,-70,-21,-91,84,-53,-58,-99,37,-97,-24,-83,-65,-97,-58,36,-47,-26,99,32,-96,44,-100,57,-50,-88,-97,-100,-41,24,-55,80,-37,-92,67,78,24,-42,45,-58,-23,-100,-100,-78,33,-56,58,-95,-96,-98,-99,-97,-22,20,-89,-85,-49,32,9,3,-59,-33,-93,36,-68,-30,-83,-95,-46,-42,-38,-99,-11,91,-96,-14,-76,13,-77,-95,-95,-89,-46,3,62,96,-60,65,-47,4,-93,-72,95,-49,-39,-100,75,-47,94,-84,16,88,40,51,-79,37,-81,-66,-93,-87,-89,-51,-63,-91,-89,66,28,-96,-69,-30,43,-36,-18,-95,-92,-93,-37,-27,78,-56,-68,-90,-99,-86,63,-68,-94,-73,67,-100,-16,-44,-90,17,-85,-3,-94,-83,39,90,80,-100,-82,8,-83,-24,-2,-33,24,-92,-36,-99,-94,-6,14,38,-30,-99,52,43,11,-81,-90,-89,-92,-65,-25,99,85,-53,-50,53,-73,-73,-12,-55,-65,-89,-93,-81,93,-69,-98,89,-68,-52,-12,-80,-89,-51,-87,-33,-34,-56,53,-91,-52,61,-68,-32,18,-88,57,50,49,-56,-65,-94,-52,-60,-57,-46,64,-38,-98,59,-98,-72,-43,-97,45,71,-2,73,75,52,-55,47,-82,-100,-84,34,-61,11,-56,-2,-77,46,7,85,-22,-4,-57,7,-66,64,-42,-100,-99,52,-71,-90,-47,-85,6,-59,-92,-17,-19,-18,-53,7,-44,74,55,-94,-91,-85,-56,-83,-4,-61,-86,31,1,-98,34,19,-52,22,2,-47,-94,-98,-100,-97,47,-76,59,11,-4,-100,-60,56,-93,-84,-18,-43,50,-87,67,-40,24,25,-96,-10,68,47,-59,-97,48,-77,-64,-83,50,-99,35,-95,4,-99,-91,-93,87,-69,-65,-48,-43,43,33,2,-35,-100,61,-84,-22,-100,-63,-100,60,-100,-42,-68,-64,-100,-100,-79,-53,46,-98,-24,-66,-62,67,-36,-83,-21,53,-94,-7,68,-95,32,-13,7,89,-75,75,-3,-94,35,-7,-78,-88,-54,-96,12,-29,39,-9,-94,-86,-84,-98,-51,-85,22,14,-57,-85,-8,-38,-96,-55,-4,11,25,-100,-89,23,-71,-100,-94,72,-46,-100,-100,-1,-92,-84,-84,-75,98,-39,-46,53,-87,-50,-99,7,-63,-100,65,-100,19,-93,34,-100,-56,-19,14,-100,-100,-100,-59,-42,-3,-72,82,-83,-93,13,57,-6,-20,70,-22,47,-92,-92,-83,-97,66,1,-100,-65,-99,-84,-83,79,24,-59,-99,-90,-89,-98,48,-36,-98,-82,-79,-11,-56,-33,-89,-88,-76,-89,-62,-36,-87,-87,-77,70,-52,-49,-100,94,-97,-74,-91,42,-7,-97,73,-87,-39,-94,-2,-78,-100,27,-84,-63,-92,-100,-81,-50,-99,-10,-94,-48,88,47,92,57,-48,86,-100,-100,48,-99,-91,-91,-70,-86,-100,62,-37,92,-1,38,-97,90,-70,-30,-38,-100,-29,-47,-37,-79,-41,-100,70,29,35,-20,76,72,-36,92,-95,-2,-86,69,-99,2,82,-95,28,-100,-7,-75,-1,2,-98,-77,-31,-73,-30,52,-69,-94,-99,-41,-64,-99,-31,51,-66,19,-31,30,-55,-100,25,35,34,-99,45,-100,-99,-2,-70,-68,-43,-49,0,-98,-81,-69,-58,58,23,-94,19,-31,-64,-11,-27,63,-24,47,47,2,-47,-51,80,-34,-34,-36,72,-57,-100,41,-15,21,37,-47,-97,46,-98,-45,99,-99,-94,8,42,18,0,-32,-37,-67,31,-87,-17,-100,-89,-42,-92,0,18,63,20,-31,81,-87,22,-100,-69,82,-62,-29,-80,-76,28,37,-79,-85,74,-65,-83,-92,-46,-62,2,1,-20,-55,-99,-90,-95,82,35,1,-97,-90,18,21,-95,-100,-97,-15,-90,-89,-98,55,6,-74,-38,-90,-69,17,-96,42,-95,-4,-37,44,-99,-72,-59,-96,-26,39,-99,97,58,-29,-64,-72,-96,78,-6,63,-49,-31,-29,-100,-31,79,-83,-98,67,-85,-100,-48,-80,-100,-60,-14,-92,-39,-46,-53,46,-57,-100,67,-90,-80,-67,-18,-93,-87,-53,-37,-12,-16,-92,-69,-99,-80,30,-100,-77,-85,61,-100,-11,-92,60,-93,63,-98,-98,-60,-84,-17,-62,40,-93,-22,-48,-62,-88,-87,53,-73,27,-94,-87,-94,93,-66,-87,-98,28,21,74,-83,29,78,-1,-45,-25,-12,-100,41,-94,-95,-68,-31,-78,44,80,47,-75,-18,-24,-35,-91,-52,60,-48,-28,-82,90,18,-100,-25,-26,58,-58,-98,-100,-100,-54,1,-40,91,26,-64,66,-100,11,-95,-26,-69,-37,-71,-31,4,-85,-58,-97,65,-57,-72,75,-47,-100,21,-66,39,-100,-77,-4,4,25,-77,-100,20,-13,-92,-98,1,-88,-43,-21,-71,-100,58,8,28,-74,44,-86,-100,-88,37,-34,-43,50,-100,-99,-6,-89,-6,34,-97,-25,-96,-100,-97,-95,13,9,-98,52,-100}
{-93,-11,-71,-69,-84,-39,-93,47,-58,-1,97,-78,25,-82,-9,38,-100,38,-77,-4,-25,-98,3,-76,-36,-33,-76,-95,-10,0,-32,-97,-37,-34,-61,-29,-92,-99,-72,59,-23,-99,-45,-100,-91,-53,-91,-87,67,-100,-94,-11,-55,-93,8,-81,-51,-99,-100,49,66,-21,-86,0,-64,-100,-100,-47,60,-20,-94,-24,-47,-85,-94,-33,10,-98,-81,-35,34,-74,15,-96,-81,81,-36,-99,-80,-86,86,-45,-7,-71,71,31,-66,-96,-100,-11,-94,30,-39,-86,-97,88,-8,63,-85,67,22,-4,-95,93,-100,7,-96,18,-100,-59,-96,-8,-5,-99,43,64,-94,81,60,-14,57,-62,-53,21,-61,-95,-83,-51,-66,-31,24,-99,-54,-98,-85,12,56,-100,70,22,54,98,99,-54,-99,-99,-44,34,90,-25,-100,-100,-86,3,-82,81,-80,-46,-47,-99,31,97,-39,-98,-7,98,-100,-23,-74,47,-25,-98,5,-36,-94,-81,-47,-90,-100,94,-36,83,-94,7,21,25,64,21,75,-50,-97,-85,-100,-66,-7,57,-9,-51,5,-52,-92,-100,-42,-78,-3,83,-97,-71,-89,-86,-100,-86,6,32,-92,-73,-91,-55,-81,49,-68,-51,-10,33,-100,-44,64,-89,-29,-67,-68,-86,-24,12,80,-96,92,24,-78,55,41,-100,11,-38,-89,63,-42,-14,64,-47,-57,-83,-58,-11,-65,-50,-33,-98,-34,-54,-40,-100,-97,-95,-91,68,48,-63,10,2,-18,-35,-96,-15,84,-99,-26,-77,-98,-90,-75,-92,5,-90,-100,12,-77,-46,12,92,77,-77,73,-93,3,-87,-75,-90,-96,-75,-81,32,-13,-8,-88,-66,-31,45,-100,-79,-25,32,-98,-85,-38,14,55,-99,-94,66,-1,-95,-8,-97,-100,8,-5,-81,-36,9,48,71,-38,-86,-33,-100,33,-82,91,-35,-16,-94,-95,3,64,-99,-51,85,71,74,24,-79,-38,-69,-17,-97,90,-100,-66,36,-75,-17,33,-15,-28,-83,-98,-84,-3,-93,-87,-41,86,-43,-100,-54,-100,56,-76,-84,-89,98,25,-100,-33,32,69,-86,-26,21,-42,-74,-92,-87,-63,-39,-10,-83,3,50,1,-94,-100,-100,-23,31,-22,29,72,-24,-12,-98,10,-90,-66,-98,-16,50,-100,92,-100,-78,-4,-99,32,-82,27,-78,-81,-86,-94,-51,1,-96,-96,-13,-75,94,-100,15,-94,-9,-65,-26,75,51,-24,-100,76,-38,-28,-69,-88,36,-72,-38,-31,-69,-100,56,11,-46,-89,-47,68,-33,-100,-65,-91,-40,-92,-92,-49,-99,-100,27,84,9,-60,-74,46,54,60,13,7,56,-95,46,-60,39,45,86,-29,-43,-19,-93,-54,-17,-100,-53,-100,7,-95,-54,-90,75,-66,71,51,26,-13,6,-89,-50,-100,-100,28,-56,-98,34,19,-27,-71,-92,10,-95,-74,-73,-83,-47,36,-35,-94,-100,16,-79,57,68,-1,-100,-95,62,-32,-97,31,13,-87,22,47,98,-57,-18,-3,-21,-83,-84,-48,-99,-98,-83,-100,82,-12,-56,-55,29,-100,-99,-99,-82,0,46,-26,61,-90,-72,41,22,-85,-53,97,-15,-39,-9,-27,-82,-99,-62,-99,-76,-100,28,-22,-97,-80,37,-54,-53,82,-96,-19,-100,96,20,-92,54,-16,59,-98,-100,-89,9,41,-100,90,-53,52,-90,-11,-97,-98,-56,29,-21,-46,-6,-46,-96,74,-25,50,-35,99,-93,-100,-80,-43,11,-34,-14,-97,84,-19,-100,-12,-100,-100,-94,55,-86,-87,-100,13,-59,-17,-99,25,-99,-29,-99,-56,-71,57,-98,32,-62,32,-15,-85,96,-88,-53,-46,70,-25,-40,7,45,-66,65,-84,12,-71,-84,-10,-84,-100,44,-99,-93,-71,-100,-22,-71,-100,-75,43,-97,-86,-58,-100,12,-34,-44,8,-61,-55,-53,58,-61,-99,18,-52,-100,-86,61,-37,-33,-58,-91,63,-100,-75,-3,-100,-35,21,-97,-98,-75,-53,-100,-94,-99,-62,-100,-100,-19,-56,-84,-65,-99,-42,23,-62,-87,-70,-52,18,-52,-97,-76,-85,82,-100,-61,57,-47,74,-91,-93,-84,35,-42,-50,-34,-73,-93,-30,60,28,-70,-96,-88,-98,-88,-34,-79,-79,-85,-92,67,-44,83,-56,64,-25,-82,3,47,-26,-80,92,57,-76,20,-69,-100,-74,-1,-99,47,60,-98,16,-8,21,-85,-96,-91,35,-88,-49,49,11,-95,-97,-100,57,-21,-81,-100,-35,-94,-57,13,-33,44,30,-42,-100,81,-93,-25,71,13,-58,22,95,-23,-5,-63,-96,-11,-59,-95,-90,-25,-35,-62,-74,39,84,-78,20,-100,56,-85,-65,-78,-86,67,65,65,5,-97,-31,-98,13,-91,60,6,14,42,-13,19,-20,-70,32,50,-80,-69,-9,-62,71,-100,-94,-63,-97,-100,-70,-24,-97,-100,-94,-98,-7,86,-98,-100,-32,9,16,-100,81,-21,-18,10,-79,88,69,-100,92,-47,-90,-78,-95,40,16,46,-77,-74,-100,-56,-94,15,-69,68,16,-90,-37,-85,-9,-76,-17,-36,-93,-34,-71,64,0,-8,-100,-52,-86,-63,-99,-77,-79,45,55,-90,38,-72,20,65,-81,70,2,81,-100,22,-83,66,-97,-30,-81,-4,-92,-33,-45,-90,-91,-87,-26,-78,-77,-33,-98,75,68,-83,20,-94,-95,89,-25,-86,-10,-14,-93,67,58,-16,21,-67,-86,-91,-63,-90,-88,-66,-21,-100,-88,-74,3,-64,-74,-85,-68,-79,43,49,-70,22,-37,-83,-33,-42,59,73,-65,-41,-91,18,-24,-54,8,94,96,5,-95,12,-100,38,-100,1,-23,-95,-80,-100,51,-1,-99,-93,-66,-57,-41,-78,-99,98,-19,-80,-70,52,51,66,25,79,46,37,87,-100,-24,-70,44,41,69,-48,-98,-80,-99,-90,-92,25,5,-37,-25,-92,27,44,-24,93,-72,-99,-26,4,-79,62,-92,48,-91,-96,-86,-97,-30,32,-57,-97,-47,-97,-89,-91,21,9,80,-29,-100,73,-78,88,-84,-54,15,-100,-60,-64,-58,-59,-8,-100,-63,80,-41,-52,67,-97,-96,68,85,-42,-19,-100,-72,-100,-91,-93,89,-58,-89,-98,-76,-71,-10,-97,-77,-87,-81,-99,34,87,18,43,16,-89,12,-80,-64,-15,-63,-100,-100,-46,-100,58,-72,-71,58,-91,-100,-79,33,-86,53,-6,64,-15,70,33,-97,-100,67,74,-9,81,-61,91,-78,-93,-39,-75,72,-90,-100,-59,16,-100,-98,-71,60,-100,27,-84,48,-7,64,60,-97,-14,-51,51,-54,9,-61,-81,-70,-75,-89,18,88,-99,-95,6,89,6,-82,-100,-89,-87,-92,-36,-78,-85,25,-81,-98,-2,11,-87,29,3,-59,-23,-53,-98,78,-99,12,41,-96,97,-80,-100,-62,-93,-52,22,39,-99,-87,-65,98,-77,42,-100,96,-77,-61,83,29,67,-99,6,19,-9,-100,-75,-69,-89,-17,-7,-54,-60,-94,65,-83,-75,-100,-29,-100,-71,2,66,37,-26,-63,-85,-76,-45,-15,56,-12,48,-63,-39,-49,-26,-80,-16,-99,-99,-57,-27,-99,-85,31,-25,-100,-22,79,-15,-5,96,35,78,-53,-16,-44,-84,15,14,-76,-63,-71,-98,-40,63,-58,37,-11,-96,14,-23,19,91,65,-100,-49,-70,-69,99,-100,-94,-23,-5,-50,-88,86,-92,-80,-26,-97,-59,-88,-100,-100,-96,-62,-54,-95,-16,-45,-72,62,-63,-88,-87,2,-80,-52,-62,-54,-98,-97,83,76,-9,-100,86,-60,55,-83,-100,50,-28,-25,55,-51,-32,41,-74,-98,-15,20,-12,-60,-32,65,-2,-96,-100,-100,22,-62,-44,-86,-85,-100,-39,-99,44,-39,20,-99,-100,-64,97,87,-77,-39,-97,36,-16,-98,-87,-86,-100,-33,58,-47,-81,99,16,-25,-76,-100,-71,29,-89,-3,-46,-18,-12,35,-80,-47,-89,-84,28,-99,11,-96,7,-4,-78,-94,-34,-30,-97,52,-62,-84,-100,-2,-56,50,-75,-54,-98,98,-84,-84,52,-24,50,-61,-65,75,-90,-100,-80,-87,-76,77,-100,-98,-60,-85,-52,-97,-3,-17,-82,40,-92,-97,-88,-98,62,46,-52,9,61,-55,-9,-60,-48,-85,40,18,16,45,-100,-14,-39,-96,-94,-62,-56,-2,-100,-74,75,-32,-33,-74,-85,-31,27,-37,31,-83,-100,-34,-8,-100,17,-100,-63,-100,25,-76,85,-100,42,-96,-68,-43,-64,-59,72,-60,46,-79,-69,-31,-32,-99,0,-97,-72,11,20,20,-32,77,-35,50,83,10,-15,49,42,90,86,68,-17,-85,-82,20,-9,-96,-82,82,-84,-53,96,70,-69,95,-89,-100,82,96,-9,-100,55,-10,-71,-67,-52,-97,-100,86,-100,-89,-1,-94,-99,-67,-100,87,6,57,-94,-100,-91,10,-81,-44,-34,-15,-82,-35,-29,-77,-92,10,60,18,-38,-95,20,-82,-79,-7,-96,-35,-100,-100,-37,-87,56,-61,-100,27,-26,-99,-44,-4,-96,-4,-94,-37,0,-99,-97,-20,3,66,-100,-70,-94,-36,-78,89,-100,-2,-36,-99,83,66,-34,-19,-82,38,-50,-70,16,-35,-4,-92,-82,51,92,-54,-23,-95,-99,45,-76,-30,-25,-98,-90,-100,-100,-29,-87,-43,64,-15,-76,-49,-94,-76,-53,-77,69,-64,35,12,-30,-94,-26,33,-100,-94,16,-85,17,4,-75,28,47,-65,-98,-73,-45,22,74,-86,-88,-96,-15,9,29,-50,-70,-79,-96,-99,-98,-39,-29,-30,-87,81,-88,-76,40,-60,2,-37,8,-7,25,-49,-68,-90,-100,79,-99,-38,-52,-97,-100,-88,-86,64,98,-99,88,-85,-57,49,77,20,-80,89,-6,29,-87,-78,-76,-71,-100,79,-24,-90,57,-100,-96,-90,23,48,-100,-37,-33,-100,-99,44,20,64,64,-73,65,77,-84,88,-43,2,-48,77,-99,-58,54,-89,-19,-41,-85,-74,25,-98,-80,-14,3,69,-63,69,-98,-89,68,-100,-67,-71,-52,90,-47,-96,-32,-99,-71,-86,-20,-67,-94,16,-63,30,22,-29,-89,-96,-80,36,-100,-39,8,-47,59,-49,19,-44,-58,54,26,84,-10,-97,-40,60,-97,23,-76,-75,-61,-100,28,-75,-56,-86,-52,-38,-34,-100,-70,-67,12,-93,40,-61,-83,-100,-91,-86,-71,39,-89,2,-55,-12,46,44,79,-4,-54,63,24,-97,-98,-42,-58,-70,-84,-13,-84,-16,-8,-23,-3,6,-80,17,91,-71,72,-87,-16,-85,96,-61,93,38,-51,-67,-75,-100,-94,86,-91,9,-86,-99,12,46,-82,-33,31,-99,49,60,-90,-78,-92,-84,-30,17,17,-25,-100,-70,69,77,-55,-94,-19,-72,31,-90,-87,25,-47,-56,-38,17,7,60,-14,-73,56,-75,-96,-10,-94,-23,60,-84,-92,84,33,70,65,-68,-43,-39,60,-2,-2,85,-100,-87,-93,-91,-70,-64,54,-99,-87,-97,-100,-22,-34,-86,97,85,-7,-81,-98,-37,-1,64,-59,-20,-87,-99,-93,96,-47,-93,6,83,-93,-22,7,-87,-47,-74,-65,-80,-86,-23,-19,70,-28,-82,-94,-92,-100,-97,-100,-33,-73,-44,-9,-3,87,-65,-24,-73,55,58,-100,-92,31,-100,-22,99,21,-97,-24,36,5,-81,-98,-50,56,68,-100,-80,95,-100,24,-100,22,30,-13,-56,-76,-14,-35,-48,99,-74,-99,-83,-85,-93,0,-9,10,-67,-74,-49,8,-42,-100,-95,-75,-100,87,-99,-94,-70,96,-30,77,-99,-23,47,67,-57,55,-47,14,-24,-17,-37,-98,27,-93,-99,-64,-31,-60,-26,91,72,-27,-54,-100,63,-93,-15,41,-100,27,25,-21,-31,43,-2,-65,-62,-12,-44,-25,-48,-95,-89,-83,42,-94,-98,-85,-100,-88,9,-76,-57,-89,-92,-78,52,22,-57,30,43,98,-69,-100,-72,-100,-63,-98,30,26,37,-38,-77,-66,79,25,-96,-48,10,-59,-70,3,-97,44,54,62,83,-32,57,71,-86,-8,-100,-60,30,-17,-85,83,89,-80,-64,-15,-99,-88,18,-74,-67,-59,-94,11,-100,-85,-48,-45,-95,18,-92,-70,-97,58,46,-64,-54,-79,-54,18,41,-80,-87,-99,48,-97,96,-99,97,-55,64,-79,-71,-99,-100,-49,-51,-100,-94,-35,-96,-100,-16,74,-99,-95,-59,-58,16,-31,-33,-91,-4,-1,95,39,-9,-46,-50,-13,79,49,5,-73,57,35,0,97,40,44,-72,-20,-78,-100,-2,-100,-29,-63,-98,-25,45,-89,78,52,-92,45,-14,53,-16,-33,-100,-97,-92,15,-7,65,-14,-20,16,26,-11,-96,16,-75,-94,-93,-58,-16,-56,-63,-85,-97,-14,-92,-11,-99,-79,-99,-100,-22,-30,-100,-40,-95,-95,-60,-30,-23,45,-87,85,70,-1,83,-80,-65,49,-62,-90,-64,-44,-72,65,-68,-35,-100,2,-97,51,-100,35,-96,-100,-99,-64,-74,46,-30,16,-30,-100,-89,-72,-98,-98,7,-80,-100,-99,-55,-68,-66,18,-100,-88,24,-99,-23,-30,-99,-52,-82,-96,-94,-35,-74,-20,-63,35,60,-74,-7,-89,-83,-10,-76,-99,-75,-51,-43,-99,-61,-47,55,20,-100,37,-35,-38,-96,-88,-100,78,-19,-57,-50,-28,-91,-30,-1,-97,-100,-99,-95,6,57,-23,-1,25,-74,-49,-48,39,37,-21,-67,-67,-72,-5,-88,-68,-82,-89,-46,-40,-94,-36,-56,-96,-83,-96,48,-12,62,83,-16}
{68,100,-68,80,66,58,24,-43,7,26,-62,85,-7,67,-73,100,81,-22,96,96,-78,69,-70,-49,100,86,-12,-69,-1,-74,34,96,-59,32,94,-12,40,86,17,90,100,10,57,100,93,9,62,12,-64,-88,91,42,99,40,89,-88,89,-65,-88,60,-6,-60,70,36,-16,92,85,53,-29,83,96,-45,69,58,50,68,100,75,-61,82,39,-66,83,49,61,89,84,-55,21,82,93,99,64,-17,72,90,-79,82,-38,-14,11,92,-51,74,10,-54,27,78,-97,-19,100,-70,62,43,-94,60,37,81,-86,99,-18,59,22,94,100,-74,-67,-41,56,-6,100,38,20,76,63,100,18,63,73,69,92,89,93,-16,-67,98,100,100,-8,100,28,79,98,-95,57,-66,-60,21,-68,26,68,-49,34,-86,40,66,85,75,-15,16,88,72,70,99,-81,99,100,-97,100,97,100,84,40,31,76,89,63,67,91,27,93,22,100,-95,95,12,88,45,-50,61,95,-8,16,97,84,-79,88,92,38,45,79,-86,56,58,-90,48,97,49,58,86,94,99,98,52,53,-45,-35,-15,69,63,98,85,-84,58,86,9,80,63,33,-16,-4,80,99,49,16,99,-83,-73,-66,36,11,82,93,-77,58,89,98,43,-24,-26,24,100,100,-19,-3,81,-2,28,45,-29,41,93,-50,4,-53,93,78,98,-19,4,99,53,26,53,55,98,42,63,-22,46,43,99,-43,99,-42,89,86,-69,77,27,-10,99,39,40,-56,70,96,-40,43,98,54,-13,70,26,-3,90,-36,80,21,33,-59,100,100,94,-85,85,-71,99,0,4,75,69,100,62,-48,60,100,43,81,-14,2,97,-11,55,27,-54,100,-29,-1,-88,43,-15,-64,2,72,-28,21,72,60,-31,11,-4,96,-24,81,34,-33,69,92,-55,-13,89,88,75,-57,90,74,79,89,96,41,74,47,48,100,89,68,-5,62,-28,-92,98,-42,-76,-63,100,71,-3,74,86,-67,90,76,95,86,76,92,92,75,-58,-11,-17,88,97,69,-91,96,1,-58,93,89,77,59,67,-16,47,57,48,100,36,-30,100,92,94,100,100,44,72,35,51,3,69,82,100,100,-53,-79,84,97,-11,-13,72,-20,96,76,40,-29,45,66,62,73,16,-27,-74,79,99,-69,-58,-8,100,93,67,28,-52,10,18,41,95,45,93,96,90,24,87,39,100,96,-1,57,-39,67,97,-21,-46,28,58,-52,83,99,99,-85,94,-5,100,90,99,34,80,-85,2,-78,-81,47,100,30,34,-79,-29,100,18,-58,87,-32,89,36,86,25,97,100,43,74,10,59,-69,33,95,-61,89,-85,-37,-16,1,29,53,43,86,82,93,39,83,-5,99,21,-95,48,58,87,91,99,97,71,-8,-21,64,32,97,55,95,66,97,60,92,66,11,-46,-9,-26,69,94,22,-33,99,-66,56,8,93,100,83,100,32,95,78,74,-70,40,100,99,-94,84,47,-13,77,100,89,57,87,5,76,35,100,100,-24,-64,-60,61,-73,-5,-93,-65,90,73,76,99,31,2,59,91,65,34,-51,100,85,-82,-19,92,94,-29,53,42,52,37,15,9,98,-28,100,96,67,7,48,90,100,-89,64,-29,91,30,49,100,35,87,55,68,-68,87,62,-54,-10,87,93,58,100,-40,-24,85,-24,9,92,-20,95,56,66,49,63,-92,-5,33,-18,84,-10,-14,83,-69,93,-88,65,49,50,94,78,72,16,52,100,100,85,79,79,48,68,97,52,100,61,-37,-55,75,65,98,100,-75,79,81,53,93,-9,75,33,-19,43,-86,45,57,30,82,96,-53,-55,79,76,-83,89,36,29,47,72,97,-14,31,38,-15,65,4,98,93,47,100,-97,98,27,84,100,-63,-31,-68,79,100,7,-16,95,34,18,62,67,8,-49,100,94,-34,17,26,-39,100,93,100,98,-17,-61,62,95,99,-69,38,80,18,41,-11,91,54,-3,-43,43,95,64,43,56,92,84,99,71,15,-97,-87,10,85,50,84,90,-70,92,60,97,-81,88,-19,80,83,91,69,81,63,57,94,26,85,-74,33,-24,87,95,-70,-18,-27,-78,87,46,-61,81,29,92,100,86,65,100,98,-77,60,99,94,-61,-24,77,80,-67,94,-30,-10,94,43,-38,-15,100,27,88,92,60,-31,66,74,26,-48,-34,99,39,59,77,2,39,80,92,-17,100,23,-52,99,-2,74,95,-28,-96,98,21,98,-71,34,100,94,26,31,-30,-47,-93,95,65,100,-44,93,24,-52,12,52,29,-73,88,-77,-7,78,80,88,53,96,74,99,39,97,-8,61,100,85,80,69,33,-94,75,83,38,9,93,-13,92,62,-80,-41,37,68,-59,-67,0,9,74,20,29,91,-69,100,83,79,-97,-99,59,75,99,84,67,-24,-98,17,100,88,100,100,-6,13,48,20,100,48,90,-60,54,69,78,-97,100,-5,-20,100,98,89,-22,56,-43,-74,96,88,84,100,-28,90,-95,-41,21,97,-84,83,58,59,98,97,85,-7,-34,82,68,90,-4,60,41,-37,80,94,-74,99,98,-31,-41,98,77,40,-22,100,37,5,-20,97,-87,-75,-5,78,-52,-78,-38,81,-93,-57,24,26,77,87,20,73,99,96,51,-19,-77,-60,94,-23,-62,80,-44,1,65,-53,13,99,56,33,96,96,78,-50,22,76,62,11,88,-89,71,66,-31,96,79,99,64,87,42,80,-16,33,-29,97,-32,96,-40,90,100,91,56,64,-18,86,-31,-32,-45,53,-21,-47,56,93,-64,98,-88,86,99,88,43,84,62,-17,-31,-92,-79,100,15,-38,-44,56,-12,52,98,-86,56,62,74,16,-57,45,-69,91,93,-59,80,92,92,62,-74,-67,6,96,1,99,33,43,98,-38,100,100,-16,11,92,86,-38,84,-8,-76,15,65,87,100,48,94,88,70,53,74,100,66,-7,73,86,59,80,96,-80,100,100,4,100,62,-43,-43,58,80,5,20,-15,-95,-65,-37,-60,98,14,84,-16,-66,99,90,96,35,14,100,-46,94,-42,-65,86,-59,32,76,92,-72,83,-73,78,99,100,88,-14,74,89,-80,27,52,-30,-4,-21,100,97,100,-43,-25,63,-98,92,-65,80,-29,57,-80,25,90,-38,-5,56,-62,-39,94,80,65,39,80,95,91,-25,-19,-91,84,95,52,-69,74,65,39,-33,35,65,78,67,80,63,87,57,100,67,5,78,93,-26,100,81,-28,68,-3,77,24,59,100,94,57,-9,-71,100,94,85,79,73,72,67,99,-35,-39,32,77,93,76,65,-71,93,72,-38,99,73,-94,100,62,7,91,67,32,100,-39,12,83,-9,98,43,95,63,59,27,1,-83,-12,-12,32,-34,-59,74,33,22,100,50,3,97,80,99,100,39,-36,-18,99,-75,5,99,88,48,100,-23,37,69,-1,-58,-70,-26,-29,86,-76,-71,40,100,-86,-13,100,-1,-97,78,-89,51,52,77,100,6,-6,-46,-70,100,-36,-79,-22,94,30,95,16,-29,93,100,4,77,-38,62,-88,-53,-47,12,5,69,72,100,88,52,9,90,80,79,-84,98,97,56,60,-32,89,13,87,-71,85,100,56,15,-68,15,78,5,79,99,98,97,-7,61,29,-14,96,30,64,92,-5,99,97,-72,100,-46,98,69,26,32,98,95,81,-83,93,89,-48,92,24,-11,83,89,58,23,100,-42,-88,55,91,-79,77,74,74,98,24,76,96,26,-31,99,-76,59,97,-46,25,-55,29,92,95,61,28,-78,80,-37,21,63,0,98,-53,96,34,-64,13,64,45,-97,98,60,58,99,80,85,-73,-93,-16,100,-61,-87,93,-25,79,27,-59,-3,97,20,15,90,-26,100,51,-93,88,-44,71,48,-47,-13,93,-24,-32,-5,99,79,-82,69,68,58,14,-31,28,46,50,80,-85,16,56,42,60,-6,22,74,-28,-41,-14,86,0,94,-41,98,99,100,96,75,56,100,77,-85,-70,3,73,98,53,-29,8,54,36,-21,97,42,7,7,-61,81,-23,-22,-55,99,21,7,45,-56,-13,100,95,-73,93,97,-77,-27,36,82,-68,14,-62,-57,-86,77,62,95,94,-98,-31,100,-23,-2,-87,-92,-25,93,-50,41,53,-43,95,-7,95,75,100,89,-47,-63,100,77,81,57,-18,-92,91,-50,93,2,54,96,61,34,75,-26,97,-39,80,72,-98,86,100,31,-49,-78,85,15,-41,-30,41,59,-90,96,26,85,11,11,-48,75,46,95,59,-53,-67,81,88,99,85,76,39,85,-45,63,-36,-31,-29,-25,0,79,17,35,100,73,77,84,98,88,-45,36,100,85,26,47,100,-7,97,-20,35,43,-72,-9,22,-26,95,-71,83,-24,78,-4,54,100,91,99,37,100,47,-43,-38,-61,49,90,-64,69,-32,49,99,94,28,100,100,100,36,80,-32,26,57,53,-70,98,42,0,87,68,4,20,91,46,84,-62,97,82,84,84,86,98,30,63,33,98,-50,76,59,100,71,25,-38,100,90,52,80,14,-29,18,52,83,27,92,99,29,87,86,-2,39,99,-45,68,98,7,91,-9,21,-94,33,86,58,84,-10,65,96,87,-88,-1,-36,35,100,-23,100,100,-70,43,44,60,46,-29,59,100,93,95,97,45,-5,-20,100,64,58,32,-21,98,100,97,-92,77,-59,8,100,61,100,39,90,99,20,8,-17,96,92,35,57,-25,23,74,96,-76,80,89,100,98,14,86,23,97,-50,61,93,96,4,97,72,61,62,-51,58,24,1,90,-88,100,76,-45,-72,99,19,82,0,100,15,44,47,-34,86,74,81,-32,-53,100,-65,71,100,46,-15,31,89,24,39,95,96,50,74,32,89,100,55,64,76,4,40,57,-16,26,-52,14,38,-25,-40,-12,90,76,-5,96,-67,81,-86,4,79,-51,-79,95,-76,0,90,27,74,66,-18,94,97,-1,65,-1,75,100,70,-97,-51,93,-94,-81,80,56,99,24,-23,-6,90,68,72,51,83,66,21,51,-3,95,1,77,64,-35,55,76,91,-59,74,87,75,52,-64,95,-24,80,34,97,-40,-74,89,2,-81,46,100,99,72,-26,95,-6,-65,5,91,92,90,63,89,100,80,21,-18,100,34,57,96,29,94,72,14,100,100,78,-4,98,12,43,69,100,89,94,100,44,99,82,38,90,33,49,-86,57,90,89,14,96,95,62,28,68,-68,86,-14,57,96,35,40,90,85,62,27,-52,38,-1,63,37,87,56,97,7,93,-83,37,-1,68,95,45,4,38,-97,-7,70,-14,100,86,100,97,44,92,48,36,-17,-59,98,81,93,95,37,100,-46,82,77,100,72,90,40,77,28,-43,-91,-6,-47,-1,63,-47,-67,19,-65,91,96,-48,54,-52,-67,7,-57,17,-40,94,97,43,64,-51,94,42,36,37,99,-98,47,-51,91,-18,90,-51,-48,57,60,53,-40,6,43,94,100,97,9,100,95,100,90,-41,-21,-47,-36,-51,83,99,80,100,29,80,-13,6,86,29,76,68,95,-36,98,100,100,-65,67,83,-39,100,100,57,96,38,53,94,93,58,-96,43,99,21,65,51,25,95,56,41,27,100,75,76,-54,76,-3,44,-2,5,4,97,98,22,82,32,-66,-20,-23,44,-19,100,100,39,-23,-1,-69,79,84,73,-45,69,31,-61,74,-30,-7,100,-63,56,56,-42,60,-69,25,-60,89,32,88,72,100,71,60,31,91,36,100,20,11,77,-90,98,-94,-2,-91,-36,-24,68,99,96,-38,70,82,100,100,-89,-21,-46,-24,47,-29,64,-7,66,8,28,27,-65,-36,-65,100,78,98,38,99,37,10,-6,-68,-91,30,98,92,70,78,-23,76,-2,86,-10,-24,100,53,-13,62,-60,-16,-5,67,26,-54,-89,98,8,86,20,-50,-55,-3,-86,-20,27,100,6,52,-11,28,-70,-25,-83,6,50,100,89,100,38,-85,90,75,55,-85,18,-46,98,20,87,42,91,84,100,33,37,94,-14,3,61,64,-13,98,100,-40,63,48,50,27,100,100,80,93,-41,86,78,-35,65,95,-4,-48,29,97,63,64,-13,23,-8,99,-27,62,78,-9,-51,95,71,76,34,73,39,72,81,-38,-73,100,91,48,100,96,43,-63,14,97,84,93,81,10,-73,-52,15,93,4,12,5,96,99,-76,-58,-73,43,55,98,-44,-78,98,99,14,85,39,-82}
{86,-21,100,100,-99,22,-71,27,96,93,100,63,2,-90,99,75,25,42,86,40,31,56,74,-9,92,62,67,-63,-53,-89,-56,87,21,76,-13,99,70,49,-81,-65,67,80,-11,62,54,-83,-66,98,-25,71,-12,-83,24,100,-51,-62,32,84,100,-43,-69,98,-24,32,-32,69,71,56,90,26,-54,100,78,99,100,-11,73,92,86,78,-31,-72,100,96,-7,78,76,-58,12,80,80,-36,73,65,70,46,-88,-5,99,21,96,-16,94,44,78,75,92,-81,-8,90,-39,-83,90,-95,65,16,52,26,96,100,62,58,14,27,74,-87,-68,98,68,-36,91,43,46,20,88,0,-13,81,22,96,75,48,-23,30,80,45,20,-46,-71,-41,78,73,84,31,48,61,100,11,86,20,62,99,10,24,-15,29,-29,32,35,99,93,90,59,19,-76,-85,52,48,-73,40,64,97,15,100,88,-22,99,-85,74,95,-23,7,42,77,23,-89,-26,-71,59,82,81,43,-11,76,99,-36,96,32,99,100,69,-13,-67,49,-23,51,21,0,45,82,-35,-73,85,64,9,36,58,-36,-51,96,39,-17,91,78,-28,-3,25,24,100,11,71,-8,47,-31,91,-78,-21,-28,-8,77,89,46,-68,36,81,95,-74,-60,-90,91,39,-16,84,64,2,89,28,22,-3,-44,-7,82,-6,80,-97,4,0,17,-30,-64,-91,-54,27,94,58,62,-20,97,73,-54,-28,-76,100,100,100,58,-94,8,76,10,81,-49,83,-51,95,46,-35,31,90,34,98,49,96,-71,-24,82,80,52,21,49,96,-86,98,-20,41,73,-99,99,100,40,-5,83,-80,-92,-61,2,99,92,30,-4,91,89,85,-99,-86,-78,-62,60,68,76,-86,-15,-58,87,36,-70,80,71,-87,95,-44,84,25,38,66,92,30,100,92,0,99,64,99,4,20,5,-64,-68,72,96,-34,18,86,96,85,50,52,6,64,-44,49,99,21,95,96,98,44,92,92,100,-68,49,100,53,-72,-46,100,80,90,82,29,47,73,23,-95,39,-81,76,79,59,97,57,87,-52,-4,-52,-75,55,88,44,55,31,19,100,92,9,80,100,-25,-11,83,93,-20,97,88,-96,84,56,32,-36,80,-50,67,100,42,54,68,84,35,27,-98,100,48,59,19,-49,-45,21,41,37,-86,-90,99,-27,99,92,-97,-91,98,76,85,98,55,82,3,-60,91,53,99,37,69,37,90,7,66,35,-98,100,100,-56,-85,96,-12,76,99,100,100,-81,1,1,64,97,95,46,-8,40,-71,51,-22,-58,-23,58,49,29,83,69,93,99,-46,9,-1,91,16,-38,87,100,92,15,99,92,50,-14,-42,100,88,-11,64,-15,-24,72,2,89,1,-43,-94,71,48,73,-74,-25,-61,-69,50,91,83,16,54,-39,92,98,27,76,91,100,82,45,33,75,-82,10,86,82,100,-91,88,38,62,45,55,51,91,-20,99,-94,86,97,74,64,52,-98,93,77,-55,65,74,-43,95,-34,38,36,-9,100,69,15,88,99,94,62,-4,76,11,99,-23,74,5,39,32,-53,57,-16,-80,24,68,92,32,49,76,89,48,93,34,93,65,81,85,99,73,-41,100,18,-90,-53,83,-26,68,85,62,68,48,60,100,78,-29,100,81,43,73,67,-77,32,23,-57,-53,-74,84,15,75,68,85,99,-1,91,-43,98,78,-78,99,100,98,85,-6,59,98,66,86,30,-54,85,-17,56,-76,59,-35,95,11,-48,-91,100,-81,-25,81,68,19,-54,100,32,-66,-54,56,-15,94,100,-34,-70,-9,14,100,30,97,-84,82,-24,95,10,53,36,52,95,66,-54,100,96,94,-50,4,98,-83,100,-46,-5,52,-25,-64,-53,-45,67,99,98,-39,40,-86,78,-53,43,10,11,79,58,-39,98,100,59,96,-9,-83,-36,-16,62,-66,60,42,73,85,94,54,88,93,82,91,46,-92,11,94,76,68,18,94,100,-76,-44,-96,70,99,98,-63,96,44,100,70,100,94,63,-86,17,79,-65,34,60,41,65,100,-37,47,35,-20,82,8,14,-23,41,32,67,95,51,28,76,89,67,97,-71,4,65,31,41,99,-38,-70,12,100,-50,78,-29,84,-93,75,85,40,80,45,-65,-84,-61,91,-22,-56,40,100,83,74,74,89,65,34,1,83,92,65,78,-19,5,-73,78,92,-35,98,-74,-21,62,-46,-91,95,-52,-1,69,-23,98,44,87,2,72,1,69,27,36,98,-8,-9,27,-41,9,-78,-95,-5,-19,-59,55,34,-76,96,-35,14,83,-40,-33,100,73,-14,-47,84,92,-98,81,91,85,8,-17,91,-4,-76,100,9,0,100,-4,-32,100,90,-95,22,99,-50,100,-44,-56,4,5,-9,100,-64,-35,92,84,85,83,-49,79,96,99,13,100,-87,61,100,99,61,-63,88,-93,44,23,92,100,17,44,-27,68,-73,87,94,13,74,61,34,48,3,65,64,-43,-47,-53,97,84,-5,100,46,-66,77,83,-3,100,98,-14,9,98,-76,-23,96,91,96,50,13,-18,-53,76,38,-86,59,63,51,-8,-29,16,2,27,-75,74,-10,-43,86,30,-32,48,96,91,63,42,9,-40,-47,72,100,90,-45,-46,74,95,100,99,93,22,-14,65,33,96,36,91,67,-12,-11,93,62,-37,54,-28,8,-38,-35,-93,89,-97,42,-12,98,-94,62,95,-1,52,6,97,1,99,49,-99,-71,-8,-55,87,42,39,96,68,97,100,-23,86,-98,84,84,81,3,-30,-84,53,100,93,97,-32,-19,81,57,-72,-62,98,66,21,30,-88,-95,-38,100,99,-29,-33,71,87,-60,-3,95,94,-8,13,88,80,-56,2,-88,46,-44,99,6,66,99,-69,-88,-68,36,91,63,53,-38,84,100,48,34,28,-34,45,79,-97,-45,76,89,13,-95,43,98,67,-86,43,93,98,66,85,-90,77,-38,25,-1,85,-12,99,21,-39,94,86,58,-94,-64,58,67,-48,66,59,-47,100,-40,96,-14,5,96,32,96,36,51,100,80,-15,-40,73,-26,97,-63,98,-31,81,88,65,-70,1,83,-48,100,97,94,-25,-48,88,-28,41,-45,96,10,-75,100,-67,97,-73,53,-30,2,-54,-5,84,95,100,94,88,-61,45,60,-7,46,19,-12,100,100,72,100,-14,65,100,98,27,94,95,-7,16,68,34,24,93,4,100,69,100,-19,75,73,92,16,31,67,89,-59,-89,-11,-10,86,85,51,100,47,92,-82,-94,71,-24,98,-69,-55,100,55,-67,99,100,-80,40,75,30,56,81,97,75,97,-35,11,-12,28,51,35,95,82,82,97,-81,-62,41,-83,95,-22,73,73,4,29,-32,-52,90,81,-7,59,-28,100,100,31,-37,92,-79,59,91,-62,61,66,94,-52,95,-24,96,100,83,9,27,-99,90,-82,19,24,87,19,-85,-83,-59,63,100,99,72,8,-99,97,8,-54,-62,88,95,31,-79,87,-2,-79,100,-33,8,-26,-27,-68,17,85,96,-62,93,-34,100,-66,86,46,73,-32,-87,65,-57,98,16,52,-26,53,86,100,-83,-29,-34,-5,24,93,45,11,65,100,85,99,46,66,76,97,-29,100,-79,91,-22,100,-36,57,-27,100,86,-74,-14,90,88,-69,98,100,29,-53,37,-45,92,17,100,-53,96,100,99,-36,-17,88,94,29,100,-43,3,97,100,19,-37,97,94,77,94,39,27,-62,34,-34,90,100,-90,-16,99,94,93,-97,-8,23,39,-55,47,-11,86,-67,100,64,46,69,-89,20,18,99,100,100,-75,100,88,-14,-28,-14,-98,99,-11,100,92,89,-67,97,86,9,54,100,-6,83,100,50,27,-17,48,88,78,100,58,88,84,78,49,-56,99,94,-66,-36,48,98,100,-45,89,-60,90,-11,69,5,97,93,-32,98,99,84,91,-32,-47,100,-89,-2,76,29,2,-57,62,20,-57,-42,89,85,81,98,-53,-88,26,89,98,25,-82,0,50,99,-86,12,93,97,31,89,99,-88,35,100,-4,100,43,-70,-93,9,56,-1,95,-19,33,74,68,99,100,52,35,-60,98,78,32,77,-70,38,65,30,-71,79,31,92,-6,-28,99,-86,67,-97,100,76,100,25,94,-28,92,-64,-39,7,100,70,97,85,11,100,-84,82,-78,-28,-97,-98,25,100,31,73,87,73,98,90,91,-49,84,94,17,99,89,82,100,93,99,94,97,-36,67,60,9,2,39,-25,99,93,90,21,97,86,96,94,-24,6,-24,100,74,9,10,80,62,75,81,36,50,97,51,99,-16,3,-83,-35,86,80,3,88,23,100,5,79,94,-3,37,70,50,-54,100,43,89,75,100,76,67,-25,93,70,93,88,-9,3,-54,99,52,56,-12,96,64,98,-74,98,0,93,97,59,-96,-84,87,100,48,100,-59,83,-61,90,-82,75,19,55,99,91,97,-18,35,39,90,77,-74,-76,100,62,75,-21,100,9,28,97,86,51,-56,95,70,95,100,90,-90,43,59,56,26,100,-16,43,100,17,100,-61,45,-5,-10,58,-6,0,45,45,-1,-17,59,74,100,-68,-3,47,-59,-40,82,67,89,-87,96,99,-67,-18,-49,41,-18,40,1,-69,-24,-82,100,81,-97,100,-32,31,48,31,-56,88,98,73,62,-99,13,40,35,100,-21,99,87,-83,100,-63,-87,26,84,98,-15,29,32,75,-12,-80,41,74,97,-72,97,97,-37,82,100,62,98,-98,41,100,-33,-63,17,85,76,83,100,9,37,23,5,91,-11,57,100,54,97,-88,100,75,-46,66,100,85,16,57,100,43,50,75,24,-85,100,83,99,100,-90,50,89,-78,76,0,37,-92,42,88,45,43,64,15,-66,-99,95,87,85,100,100,42,100,29,16,16,60,87,64,95,-44,64,46,86,59,99,-11,91,-12,97,43,-8,66,98,2,-8,89,-35,55,-2,-81,89,100,-5,100,100,15,13,32,91,-72,36,100,-25,75,-61,-83,98,5,-67,79,44,100,-63,73,98,-67,57,91,85,94,100,74,-96,-6,51,-7,-27,-11,95,74,96,-48,88,-29,-33,94,-53,36,97,15,49,-36,-77,100,82,18,-98,87,-51,21,81,7,21,-52,-89,27,4,76,100,29,-57,-50,85,-74,15,-7,0,13,12,-75,-87,-70,80,-9,97,99,4,-7,89,-13,82,20,87,21,43,-37,27,27,-54,-32,63,-57,-39,89,-7,60,100,99,1,83,-27,96,100,97,85,91,96,68,-68,83,100,98,89,-32,-84,66,98,-13,35,88,-66,100,47,99,-7,95,-80,-19,-14,28,-33,43,94,44,71,100,95,99,-55,59,100,90,97,-16,86,52,99,-62,-80,-26,34,100,-39,43,42,37,-29,23,91,100,88,81,-31,94,15,-7,67,40,100,100,-44,33,10,97,82,82,60,89,-34,61,98,61,67,99,-75,78,100,-38,-20,-82,45,96,27,-22,60,-82,-40,100,96,-98,100,93,86,-59,-5,-48,33,-90,-22,-1,21,97,47,58,95,99,98,100,56,95,97,100,20,-73,-69,51,-97,64,95,100,71,10,95,5,76,49,95,50,100,34,100,16,55,83,3,99,-29,68,49,99,94,72,21,-82,63,16,18,41,-66,98,90,89,7,27,-52,-30,-39,-85,94,61,-9,47,-18,92,98,92,3,51,-61,57,87,27,44,-57,100,50,54,-3,88,47,-63,-29,81,75,-51,30,97,97,-36,-58,23,-23,-90,93,27,58,-4,97,86,51,13,51,3,100,75,100,99,58,-59,17,95,1,98,83,87,40,22,57,64,100,-31,-89,44,-97,6,42,-26,87,-26,42,79,57,91,78,12,63,20,17,-68,-2,72,87,-59,52,18,96,52,-91,69,19,31,70,-94,98,98,-15,93,-63,-90,93,91,15,16,33,97,16,99,44,66,-29,79,-28,30,93,56,100,87,-50,76,10,42,-46,98,12,-26,-51,-21,96,97,98,90,-88,15,98,-24,90,96,84,-47,11,-93,-87,-1,9,-6,36,98,94,66,86,13,34,-5,87,42,-97,-6,96,22,100,0,-33,77,-56,96,100,84,-11,87,-94,-62,56,82,90,-93,-3,79,-86,100,17,57,98,40,-59,36,20,84,-13,70,96,-92,30,99,98,70,15,-93,82,97,78,-77,90,38,100,4,-67,-49,-99,72,9,-51,66,94,-61,48,19,46,-82,47,85,-25,48,80,68,97,78,59,60,-40,-55,70,83}
{22,6,2,1,29,5,5,37,19,1,27,7,8,1,28,9,1,2,7,46,59,35,6,6,6,2,28,2,1,37,2,7,29,3,60,1,8,90,14,4,3,15,1,8,4,11,17,50,1,2,29,52,6,1,15,5,4,1,30,1,9,77,1,50,2,9,53,3,45,15,18,43,11,3,30,6,2,38,24,2,3,2,3,7,59,1,17,10,20,12,79,14,84,9,1,30,2,20,10,27,3,95,86,28,1,2,32,10,3,5,15,10,14,2,2,1,89,1,4,6,1,13,9,77,35,3,14,30,11,5,1,58,35,22,53,3,1,2,1,2,10,19,6,6,64,36,93,8,92,14,38,1,12,1,2,1,53,8,12,4,3,23,32,22,75,1,2,1,59,2,1,91,3,3,3,78,12,1,95,1,24,67,59,9,52,16,89,73,9,51,4,6,64,26,4,2,9,10,3,15,95,2,5,8,51,34,1,99,1,2,2,13,6,1,24,88,27,77,2,1,1,40,2,12,17,13,50,23,53,4,11,25,59,37,6,87,47,10,27,64,27,15,2,1,2,2,10,5,1,31,21,30,3,53,1,52,28,10,3,3,3,1,7,39,11,5,5,1,51,26,4,3,4,59,5,18,22,9,76,1,5,43,7,21,6,11,31,18,11,5,1,1,20,1,34,3,74,86,1,24,15,59,24,84,1,86,5,8,5,9,3,2,5,5,4,76,1,2,6,93,3,1,5,10,6,10,3,20,71,1,47,72,1,6,5,15,3,2,40,1,3,12,1,14,77,13,3,2,1,12,26,45,6,63,16,1,40,30,1,32,3,1,26,47,50,8,9,76,6,97,4,7,29,4,4,12,19,10,2,7,4,28,2,1,3,1,34,80,1,19,5,3,1,13,39,65,5,1,2,51,2,11,40,8,3,1,88,53,23,2,1,18,3,8,4,86,11,18,5,5,3,3,12,9,3,99,84,1,3,14,3,4,1,45,23,25,3,1,88,4,1,84,1,68,27,50,10,1,16,87,12,19,6,3,88,5,4,52,28,16,1,1,29,27,9,1,60,12,1,6,10,4,6,65,8,17,12,17,32,45,16,17,7,3,3,14,30,25,32,29,7,1,11,21,1,13,6,67,23,1,1,1,99,34,66,74,39,2,32,24,2,1,1,10,36,1,92,85,5,33,89,42,20,17,3,1,44,1,60,20,73,1,55,80,2,2,1,28,9,13,75,56,3,11,9,5,22,3,42,3,7,71,2,16,54,33,83,3,5,24,37,60,13,74,2,36,19,1,11,1,45,19,51,59,11,1,26,3,39,28,40,38,38,37,95,71,5,75,7,3,17,27,3,88,3,34,13,10,1,14,12,22,17,2,3,14,6,98,49,27,21,11,5,13,12,5,33,1,4,24,2,31,11,11,54,10,17,11,15,38,46,12,32,11,64,20,2,9,49,6,81,19,3,2,2,7,37,19,24,3,9,6,3,3,19,1,5,1,1,4,2,6,2,4,1,11,1,39,1,8,1,3,38,58,87,1,15,1,2,4,12,9,6,2,96,10,14,2,9,10,5,9,33,61,5,8,1,8,94,79,6,52,1,4,45,39,8,32,16,1,2,45,6,4,30,1,4,2,62,9,3,24,59,2,44,9,1,1,2,34,38,70,53,13,47,87,11,2,3,8,84,42,1,15,39,3,2,5,10,16,1,7,2,14,38,1,25,3,93,98,19,4,7,1,1,21,78,13,51,10,2,71,64,1,12,11,1,1,1,12,12,97,1,48,2,21,32,5,56,41,11,28,2,9,55,8,3,1,43,30,1,1,6,42,5,3,7,56,35,19,22,52,5,36,10,1,1,2,4,52,44,9,19,67,10,14,2,22,14,21,24,2,18,1,3,14,6,4,49,1,50,32,19,22,94,2,34,9,2,3,12,21,1,34,33,79,22,4,7,3,3,4,1,14,28,1,40,16,46,69,3,2,5,10,25,60,1,5,1,18,3,13,1,36,13,2,13,55,24,27,92,1,15,24,24,36,10,6,4,11,3,22,1,4,1,21,4,14,11,94,8,7,13,72,9,1,1,50,2,10,14,2,76,9,2,20,61,3,1,9,4,59,2,12,9,4,31,7,3,62,28,2,83,2,8,12,3,47,1,1,8,49,13,1,3,26,46,12,5,75,3,12,4,64,4,1,3,76,6,5,10,3,9,34,46,38,41,2,2,12,53,16,30,24,10,17,4,71,1,3,6,51,2,8,16,23,16,58,2,1,1,14,10,52,32,5,68,5,1,12,51,4,37,2,18,12,19,20,19,2,26,57,9,20,23,76,7,10,24,11,7,1,1,4,9,1,2,7,59,1,1,7,96,18,34,12,2,31,10,1,1,12,18,3,4,60,44,67,2,7,7,14,11,45,50,11,1,29,7,11,45,6,2,6,1,6,2,84,2,45,2,4,67,93,74,1,1,31,4,2,3,3,3,55,1,10,49,78,10,84,58,1,1,88,99,2,43,20,53,1,92,2,29,2,12,44,10,5,37,1,9,5,15,8,32,1,3,89,2,3,3,46,18,3,2,21,77,3,7,3,6,1,2,1,59,9,2,84,2,6,77,2,1,83,1,21,19,30,2,2,10,9,84,68,93,1,6,2,1,18,16,29,27,2,32,6,1,78,74,1,4,1,15,3,13,51,17,2,92,42,14,2,1,76,42,3,8,8,1,1,24,22,1,28,52,17,20,13,9,81,1,8,81,6,8,33,37,66,87,1,13,9,1,23,35,65,11,8,1,12,35,2,25,21,4,3,1,65,2,32,31,60,14,2,1,2,5,7,26,59,4,48,17,11,5,47,15,1,12,3,69,60,32,5,39,2,20,21,87,15,1,1,7,1,62,64,32,3,92,1,2,15,51,2,26,1,5,5,5,34,5,1,14,78,68,49,7,47,2,5,5,9,5,3,2,19,1,11,1,3,24,26,20,3,6,10,65,27,7,13,18,1,3,27,10,4,1,33,4,8,21,3,31,5,1,54,19,4,31,1,3,22,57,1,2,4,41,12,3,63,1,1,10,2,2,2,1,6,24,3,80,2,38,2,15,50,37,90,4,11,2,20,2,1,3,34,34,1,1,41,6,4,13,9,20,5,82,9,95,4,2,1,18,2,12,11,10,29,2,26,90,14,26,55,19,7,29,62,32,2,1,25,14,60,41,7,21,32,12,8,3,57,2,17,12,3,2,6,50,3,17,1,23,13,22,34,33,6,1,5,29,25,9,2,27,20,29,29,23,7,72,47,67,2,43,9,1,81,50,22,10,70,3,27,1,37,1,1,8,25,9,23,8,64,11,42,72,2,93,1,2,5,47,3,10,97,62,6,45,49,2,16,76,4,45,62,20,4,16,82,5,19,16,34,2,3,27,8,1,3,2,37,88,7,1,43,6,49,41,7,49,1,6,9,12,5,4,1,37,56,1,3,1,20,14,3,3,12,3,1,1,4,24,12,37,2,13,15,13,93,52,70,6,1,8,23,1,35,4,11,5,52,1,25,3,76,39,1,14,1,88,58,3,73,55,71,15,2,21,26,21,46,47,10,1,12,9,42,28,21,3,2,2,29,1,3,11,11,2,15,1,33,4,38,45,38,12,87,13,10,8,5,2,14,47,12,10,1,17,3,27,12,1,70,3,17,2,2,1,11,8,7,5,7,34,81,30,9,1,16,1,4,2,6,47,1,4,16,2,1,60,59,1,9,2,11,40,1,3,1,1,11,2,90,2,9,9,6,1,2,51,1,4,40,21,49,17,69,7,4,17,2,9,1,40,11,7,75,46,5,3,87,13,9,3,1,2,1,1,15,36,34,1,59,4,27,49,52,8,55,18,6,73,33,2,37,1,8,16,12,19,8,1,61,26,17,10,23,16,55,24,3,36,1,42,8,5,6,47,82,18,7,4,1,2,16,2,4,43,15,1,48,1,99,53,60,1,26,71,80,2,34,7,15,84,11,1,42,32,59,96,6,2,38,2,29,15,2,45,41,9,1,8,4,16,70,34,56,3,13,4,2,92,3,79,7,8,55,20,34,2,11,5,42,49,44,4,5,4,11,2,3,3,5,2,25,16,16,1,89,17,38,7,22,45,20,2,1,40,4,7,52,6,15,3,2,18,14,44,1,3,3,4,66,1,27,4,1,3,2,12,1,11,33,85,46,16,79,20,67,2,30,40,4,91,3,7,1,10,49,16,1,3,39,64,8,5,3,37,42,14,2,27,15,57,62,1,22,6,9,14,35,7,5,21,3,7,53,44,30,16,1,13,33,12,1,6,1,46,4,23,3,6,7,75,14,3,1,3,33,1,4,22,1,13,11,1,7,9,4,4,3,1,4,39,32,3,90,2,2,18,6,43,1,1,55,3,71,8,27,44,24,46,6,62,16,3,18,35,16,32,52,3,1,2,94,2,23,7,43,1,30,3,7,58,4,54,2,45,94,41,1,16,43,25,9,13,2,2,18,16,61,10,1,7,5,2,1,2,2,1,2,1,44,21,4,2,5,4,4,3,4,3,5,1,2,4,44,23,80,17,8,5,67,33,39,1,6,2,1,1,7,25,54,1,2,10,2,7,32,1,3,19,40,10,8,3,24,19,7,17,17,9,79,8,3,18,2,9,1,36,13,76,2,39,2,7,7,26,1,86,1,12,1,4,40,2,3,5,20,47,7,55,1,7,31,31,5,65,52,13,3,54,56,13,46,28,6,7,1,3,2,1,47,13,16,9,49,22,2,4,6,1,30,2,7,4,33,5,6,56,1,29,4,1,3,1,4,2,64,24,95,4,1,24,9,9,8,5,4,38,1,1,2,1,94,68,27,51,19,2,13,6,1,1,2,7,9,1,4,1,13,6,8,7,1,1,43,1,5,4,21,1,19,1,17,1,17,19,22,13,18,1,25,4,3,1,9,10,1,36,16,27,30,10,43,1,1,4,59,2,1,24,5,71,7,12,38,19,4,91,1,80,15,48,73,58,3,5,57,84,33,1,5,2,2,1,40,16,91,3,6,10,13,1,65,11,99,29,2,6,31,25,46,58,4,4,27,33,13,84,87,16,30,11,6,1,3,1,1,2,77,12,6,12,1,2,2,7,5,59,27,4,3,1,32,4,2,3,1,1,74,4,43,48,92,6,41,1,25,14,46,91,1,2,2,7,3,1,38,46,16,4,13,30,2,9,2,3,27,4,6,7,46,2,16,7,1,2,27,11,1,9,1,1,12,42,2,1,90,13,2,44,11,4,1,3,3,2,22,42,1,4,12,2,1,6,10,11,61,16,6,25,3,9,3,36,10,2,57,1,2,11,8,1,21,2,76,33,4,24,7,30,24,22,13,16,1,7,89,44,25,3,16,2,1,10,13,2,50,15,51,5,21,3,22,40,12,47,48,27,51,17,45,1,27,4,12,2,6,58,96,2,12,27,1,2,8,35,1,1,8,58,1,1,58,8,5,16,2,5,98,19,22,38,17,1,1,10,3,2,1,20,58,1,2,67,11,3,35,1,19,17,24,10,46,1,1,1,23,1,40,1,71,57,77,36,11,5,37,4,1,63,29,36,2,2,3,17,9,87,2,1,41,3,76,86,3,14,9,7,42,5,55,45,1,21,92,1,1}
Returns: 2.177259015747303E9
{-70,60,-60,54,-22,61,-68,-22,14,-56,72,72,-83,-100,79,-73,-89,-38,-89,-99,-88,50,-80,63,-63,-24,-36,-43,-31,-55,-3,-19,51,91,-100,-70,-9,-82,-39,14,-45,6,90,94,-99,-89,-99,-65,4,-100,64,52,4,-93,-93,-100,9,-94,-61,0,-96,-84,-100,17,50,-58,-19,-46,-82,11,-78,-28,-9,-97,-34,-97,-98,-81,-58,-30,21,-87,57,-11,99,6,-93,-15,-72,-48,22,-58,61,-35,51,-51,-83,7,-26,12,-52,-51,43,-19,-75,-97,-97,-100,38,-4,91,17,-81,-79,94,56,-78,-97,-92,-94,-25,-13,96,8,-100,33,-21,-97,19,-68,-74,26,-25,-90,-28,-98,-97,50,65,-99,-99,-20,-3,-13,-83,-47,22,-35,80,47,-24,85,-68,-33,-68,-79,35,48,-66,-57,-95,10,-36,10,-73,-98,-43,-73,-75,85,79,-100,73,-36,-25,-55,79,-53,-68,-92,-35,50,99,95,-73,-42,37,79,-22,69,-67,-100,-68,-74,-43,-59,96,-97,-81,-77,5,-51,-85,-71,-14,29,22,9,-96,-41,-51,-7,-83,-34,94,-98,-100,11,-70,-36,60,49,-24,-5,-49,-95,43,-94,-1,-4,46,-68,-90,-87,-73,-8,-100,-66,-16,-68,-96,-92,-46,-29,-10,-98,-56,-57,-73,-93,-37,91,61,13,38,-99,65,-53,-92,-53,-60,-53,-98,-73,-93,-89,27,-58,47,-72,-14,-92,-61,-100,-89,9,-100,-1,-100,-97,-66,25,-47,-23,56,-29,48,58,99,-29,-25,-79,33,-45,-96,32,-7,-73,-92,34,-4,-100,-99,-82,-100,-19,-57,50,93,-49,-62,-100,-68,18,-11,-10,-50,-66,-100,81,72,-79,-4,-49,-86,-43,-75,-28,-98,-40,-50,-99,70,-32,-91,-100,0,-100,-100,0,-57,-55,51,-90,59,-88,-49,-76,-63,-56,20,10,-14,-100,-71,-86,-26,-47,-100,-5,-98,49,-85,19,97,-87,-44,-87,70,-86,-90,-89,-28,-25,17,-99,-79,-96,-13,-52,-86,46,52,-98,-87,12,12,-94,-14,-27,-92,-95,-30,-99,-48,17,82,-90,-56,-79,-41,99,88,-93,-97,-60,-67,-94,9,-84,-92,-67,0,-92,-68,-82,-54,-5,-94,-80,-89,-97,-34,-42,-93,-59,-45,23,-90,-98,-92,-100,-98,34,51,27,-100,5,-43,-98,9,25,-87,67,59,24,-74,-98,-46,46,2,-28,-73,-100,53,-82,36,-28,-95,-99,-29,-28,5,-63,-86,-65,-99,39,-90,-70,-88,3,21,-12,10,-5,-99,7,-77,-67,-98,-100,-1,-57,12,-84,-71,1,-32,55,-89,-63,-44,-66,-90,-10,-70,-93,-15,50,34,32,-92,-62,-26,-2,-47,41,-33,-31,-43,62,20,46,-9,5,-66,99,2,33,38,31,-92,-91,-13,-70,-4,-11,-33,-100,52,14,-80,-91,92,-100,-100,-31,-14,3,26,-99,71,-100,-59,-55,-55,9,11,-88,41,22,-33,41,-96,-100,-35,68,7,-41,20,-81,-93,-63,-86,-61,17,-69,82,-84,-100,-100,4,-92,19,-68,-89,-100,-22,19,-13,-32,-69,-66,-99,-77,73,-93,32,-33,-5,-41,-90,-64,-95,67,-100,52,-86,86,-57,-17,-99,-100,-41,-72,-76,64,-64,-32,95,-18,-100,-40,-92,88,13,50,-18,84,-94,-99,-100,-98,-96,-99,-16,-40,-100,-11,56,47,-52,-84,97,-70,-42,-99,59,27,53,-48,-25,-26,-45,-43,-99,-94,-93,-21,-81,-59,-92,-76,19,-89,-19,-83,-65,-41,26,-89,-99,3,-59,-1,61,-11,-90,-35,43,-45,-50,2,56,-45,-76,55,31,-39,-24,-86,43,-86,97,-100,-17,-98,60,-80,38,5,30,75,-99,-36,-84,-10,-51,-25,12,95,-79,88,-98,-67,61,-93,-20,-91,-45,71,-55,33,-92,-97,-95,-100,59,82,-28,-100,51,-40,-91,-100,17,99,-18,35,54,-63,-43,-44,42,77,-61,-100,-99,-100,41,-100,-94,-88,-85,97,47,50,-95,-59,15,-98,-24,-44,-70,-75,86,96,46,-32,-65,-39,-37,-77,-93,-100,-85,66,-57,-53,-98,78,-61,-43,-80,-19,6,-14,-56,-38,22,49,-100,-71,65,33,-19,66,-100,25,-84,-40,-54,-97,45,-63,-15,40,-98,93,72,-59,93,-56,70,13,-93,-14,-99,-33,45,-100,77,-44,-100,10,5,88,89,-97,-90,26,56,-6,-18,-99,-75,0,-40,-33,54,-97,-94,-92,-64,-95,76,39,85,50,31,-63,-96,-31,-11,-96,-48,-100,-100,-66,66,-99,1,-22,-82,-45,68,31,47,-63,55,5,68,-6,-92,-59,-41,-88,34,-5,-85,-22,-76,-100,-87,44,-68,24,-100,-82,-97,-57,-75,-72,-77,-66,-96,15,-100,-67,-78,-2,67,83,-79,-100,73,-32,-9,-57,-88,25,-100,-97,-80,46,-30,-100,-47,81,37,33,-3,-95,-98,-58,58,-86,-70,64,-100,55,-82,-87,-81,96,-93,5,18,-100,-45,-87,-88,-84,-44,-7,49,12,71,-50,-100,-100,-89,-100,52,-78,-21,-34,-12,81,-100,-90,-30,-59,-71,-32,-45,-30,-100,-60,-62,-98,-40,-97,-76,-78,-52,-82,-89,87,-14,-94,34,-100,-97,-97,-2,50,-100,-11,-82,64,-96,63,32,-91,-98,-92,-56,55,-7,24,97,1,-32,-83,-99,-7,52,-60,-1,-69,-90,25,-41,-77,-97,-58,35,-82,-79,-8,63,-65,6,-61,-100,92,-100,-83,-71,33,74,25,-96,-8,6,-39,-10,-43,-46,-99,-24,-100,37,71,-51,66,-90,-32,-68,-18,95,-100,-81,-98,-68,-75,-39,-67,67,-58,99,-100,-99,-100,28,-94,-58,-60,96,-22,-91,-100,31,45,-82,-51,-91,13,-29,-100,-83,-69,-24,-40,5,-9,88,-99,-70,-71,-52,44,67,19,-82,1,51,-66,-100,-18,23,-40,98,-76,-93,-38,-70,-57,-39,-48,12,-88,-54,61,-100,-97,-42,18,-81,-96,20,-16,-97,-55,-85,-82,-85,-74,-80,-51,-98,-42,-98,-73,-20,-74,-18,-99,-97,21,63,-69,45,-67,6,49,-67,-75,-66,-81,-35,-28,-48,-15,89,17,-22,-78,-85,-72,-58,-7,-21,-92,-100,-56,-53,-43,-99,85,-33,-37,14,-81,-79,-99,-41,-92,90,41,-27,62,-38,-20,11,-6,-91,-67,-99,34,-76,-99,-46,27,67,-53,-2,-26,-53,28,49,-99,8,-31,-58,-85,2,-5,-79,-100,-37,-100,-39,-38,-68,-37,81,-88,-1,-62,18,-100,25,69,-61,68,-98,-70,-82,-84,-61,-97,-69,1,11,86,-87,-98,12,-73,29,-93,9,-98,1,-10,-53,87,-95,-5,10,-46,-78,3,52,-100,67,-83,10,10,21,-78,-30,-81,93,6,-79,-99,-48,-89,6,-98,3,-68,-100,-49,-17,-91,-31,-98,-51,-100,-96,-34,93,44,33,32,-2,-36,-8,-100,-65,14,-75,99,80,-97,-52,37,-85,90,-98,-99,7,-54,-78,-95,-77,-89,-84,-25,38,-94,-26,-36,-37,-95,-100,-98,-95,-95,-93,-6,31,26,-69,-100,-100,11,-58,-100,-100,35,-80,-87,-21,-93,64,-66,28,-43,-17,-74,45,-95,-94,-31,86,-77,-52,-82,-98,96,-73,-92,-99,-81,62,38,50,-83,48,-98,14,-94,73,-84,2,-32,-98,90,55,-12,-98,-7,-86,68,-95,-92,16,-90,-12,27,18,-68,6,-100,-77,-75,-98,-51,-98,-36,-94,-95,-99,-92,79,-34,-47,-30,38,-91,-73,-97,-13,20,-82,-100,-95,-100,-98,-76,-84,31,-94,-75,-98,-74,-71,-100,-98,-42,-86,91,-58,-100,-100,-100,-66,-20,-2,28,61,-14,-80,40,-88,-75,-64,37,-72,-63,72,12,-12,-79,-3,38,29,-88,-15,-61,51,-77,-87,-86,-91,5,-66,-99,-85,2,-89,-45,59,12,-21,50,-62,-27,-76,96,-93,51,-91,85,-96,-80,22,-38,71,-100,-57,-77,-47,-13,68,-44,-19,-80,-77,41,-52,-15,50,-97,-97,50,52,-73,-81,-82,-84,60,93,82,15,-80,56,-87,-99,65,-100,75,-62,-65,60,-64,69,-59,-100,-3,-99,-23,-78,86,2,-40,66,-30,-69,36,-17,-84,-69,-22,-92,-96,-100,-57,-1,32,-1,-98,-99,-100,-91,-85,-80,18,52,29,-22,47,30,37,-100,-91,-86,-96,-100,-91,-19,-51,-79,-99,-37,-99,-13,-28,-83,-97,-63,43,33,-6,-66,-87,-62,-47,-16,-76,-9,-94,-90,-78,-89,-82,-18,-18,-39,20,-34,-52,3,-96,96,37,-74,-82,-97,-95,-100,-93,-80,-16,-70,-99,-86,79,67,-100,-43,52,-96,-100,0,62,13,96,-100,83,-47,-100,33,-11,-86,-100,80,-50,-79,-94,-95,12,-30,65,22,-66,-84,-1,-77,-77,-98,5,97,56,59,47,-81,-47,-23,48,-71,-48,12,26,-32,10,-47,86,-75,-87,-68,-88,-98,73,-100,-55,-75,94,-42,91,0,-39,44,-97,-96,37,-71,14,-73,-41,-43,-100,-9,-22,-70,-91,3,87,-22,-99,-29,-97,-3,39,-54,2,-76,27,81,30,79,59,63,-9,-86,-2,-78,-79,-72,-96,-90,-95,-75,-92,-32,-93,-81,-39,35,-23,-88,-81,90,91,-52,-63,-43,-15,29,-48,-84,-94,33,-23,-76,-95,-100,-99,-83,11,-55,10,-58,-97,-95,-85,-36,-41,-43,-23,-85,-100,-65,-75,-28,-27,-60,-79,-100,-96,-28,-84,-18,14,-100,-54,82,-46,19,-8,25,81,-100,48,-82,-10,-46,-83,-90,-39,71,-83,-51,21,-36,-100,-35,-91,-97,-60,-79,-100,20,-82,36,-91,-60,-98,-100,-98,33,-44,-74,-69,-89,47,-78,-5,87,-37,56,97,-98,-80,-64,-80,58,-30,-73,-100,0,-43,8,-52,-77,-98,-69,-81,-88,67,-81,-78,-97,-72,-75,-72,-49,65,-59,-88,39,-99,-61,-97,-25,-66,-82,-19,76,-24,-44,-68,92,-60,-100,51,-6,-42,-97,-100,75,3,-42,-100,-36,-100,-91,-28,-99,98,-100,-87,-90,-96,-51,-26,-69,-45,-11,-79,-62,28,-40,-29,-30,45,-85,-83,-92,-97,19,-89,-84,10,59,-97,-89,60,-100,95,53,-95,-73,-69,-81,-78,-14,-45,-69,-64,-30,33,-73,-86,-100,-29,-43,-100,81,-98,-90,-46,81,-98,-11,14,86,-57,-82,74,-83,-8,-19,94,-68,-74,42,-27,-95,31,-40,-50,-90,65,-82,-100,-95,-33,55,-99,-94,2,-98,-81,-56,-64,-24,-44,54,84,68,-20,93,-75,-86,-74,-23,-85,69,-6,4,33,71,36,-48,-45,96,-13,-86,52,17,-95,-72,-19,-4,-100,9,-25,-28,-46,-14,-100,-70,-66,30,28,-60,-54,-83,-67,-100,19,-19,-93,-95,-58,-92,6,-93,-82,28,-97,-17,-83,-100,50,63,-43,-47,-83,-98,22,49,-91,-4,-93,13,-19,-44,-100,50,-97,-90,-68,-98,85,-95,-100,-96,91,18,55,-53,11,18,-100,-9,-62,-11,-77,49,-100,68,-94,-55,-100,-96,-88,54,-63,-28,57,-4,-99,43,-25,57,69,98,-58,11,-17,95,-43,5,-47,72,40,-57,-89,-100,-34,-69,-92,-12,33,-100,-96,-72,-85,-77,82,60,-50,84,-15,-99,-75,-100,-92,-100,-93,7,24,-97,-73,-87,-36,-61,-98,-55,-98,-15,76,8,-64,-14,-3,78,13,-44,21,-6,6,-72,-88,55,-1,-100,-97,-92,-94,-40,-78,-94,-97,-78,-67,-99,-46,-69,-96,-18,-97,-87,90,-89,44,59,-3,-88,-93,7,-27,-69,39,-22,-49,-97,-57,-92,73,-2,-52,-97,-84,8,-70,-20,30,-33,71,-97,32,33,-91,7,-24,89,94,-69,4,-71,52,25,37,-17,77,73,-95,-31,16,-24,-80,-74,-48,29,-36,-95,-5,-77,-80,98,61,93,3,-99,93,-96,83,76,-10,14,-96,-77,-70,-95,33,-72,-27,-10,-64,-94,-57,78,66,-87,47,-94,40,-99,-64,-27,-100,-100,-100,-85,-28,-80,11,-90,-85,-41,-83,66,-52,-99,68,-97,-33,-40,35,73,2,-95,-93,-74,93,31,-82,36,-89,65,-91,-89,-89,29,9,-37,78,-100,60,70,-79,-78,-86,-90,-69,-97,39,-80,-73,-3,28,-77,-100,-43,-89,48,-69,-95,44,89,68,-89,-94,36,45,86,-82,-99,37,-79,-58,-74,48,82,28,27,15,-58,-21,-76,-50,3,-100,-90,-81,2,37,8,5,22,-98,-61,55,-90,-59,-100,-12,-96,63,-30,-99,-64,73,90,-69,-72,32,87,-94,-19,-100,32,-57,58,-38,74,-75,-50,-51,-69,-2,-86,71,36,-100,-60,81,-95,-95,-27,-71,-92,-19,-100,-77,61,-87,-73,-90,-95,-7,-93,-70,-51,-89,-94,-42,-53,-12,-86,42,-75,33,-53,-96,60,-62,28,-72,-99,-50,-96,-66,21,-96,-82,-34,-27,50,-89,-64,78,-33,-88,-79,34,73,14,-100,-67,14,-70,-60,-43,-86,68,49,-82,98,40,-53,-89,-14,-87,80,-81,53,15,91,34,-90,21,87,-85,7,-66,-24,-40,-40,27,-100,53,-15,75,-98,10,-98,-89,-21,-52,-97,-89,-28,78,85,-38,51,5,27,9,-97,-18,10,-46,-27,-98,73,52,-80,16,-96,-46,36,-100,-18,-18,-90,-56,-31,-93,-95,53,70,-33,-72,-100,22,-63,67,40,97,66,95,87,-88,-94,-54,-92,-27,35,-95}
{-100,-96,-59,-71,-2,-88,-100,-27,70,68,-15,-94,-86,-71,-81,26,29,-52,82,43,-29,-88,-99,-97,-98,-88,-70,-20,-99,14,-100,-89,89,77,-100,-78,-99,-52,-100,-83,-87,-99,-100,-57,-39,-100,-100,-59,14,-6,-100,51,-30,84,-81,-67,-1,-50,-6,2,-53,-97,56,17,19,-2,-93,63,-100,-69,-72,50,-97,96,11,-85,-20,5,-100,-100,-84,-13,40,-82,18,-92,-96,4,50,7,3,93,16,-14,-92,-73,-79,-51,11,-90,-64,3,29,38,-62,90,-83,73,-35,-17,98,-91,-98,-98,-58,-52,-63,-95,-85,-98,-35,4,6,-48,24,-96,83,-72,-74,-17,-75,61,-42,84,-96,-77,-68,-77,-96,-17,-100,-4,82,-70,-100,-99,35,95,-53,4,-83,-99,-83,-40,-85,0,87,-90,-7,-54,68,-86,-92,21,-92,-28,31,-95,13,-81,-96,-9,-100,-100,-7,-90,-83,-89,38,83,68,-78,25,-92,75,-97,-93,-100,-40,-54,-59,-20,-100,-96,21,-100,23,-28,-70,39,-81,-93,-92,-17,-15,11,-99,-100,-50,-82,26,46,-44,-96,-14,52,72,99,41,49,-95,78,94,-94,-1,47,55,-76,-43,-95,-3,-95,12,16,97,-95,-49,-90,-100,-50,-39,5,-99,-77,79,-67,-15,-60,-12,-79,-37,-100,-14,14,-100,-88,-96,-100,72,-16,-88,-5,68,54,-34,63,-94,-3,81,-95,-81,45,-79,5,-100,-59,42,-100,-89,-40,-98,-91,-68,69,-99,-98,69,-72,-94,89,-53,5,-98,-99,-100,-19,-58,-40,2,-22,42,-88,46,80,22,-57,-95,-100,-62,-54,-20,-19,15,-92,-99,-50,-99,-71,-20,-66,85,-36,-100,-75,27,-92,-29,-95,0,32,-66,-11,-60,83,-77,59,-84,-48,-57,-75,-90,84,-97,44,-6,-99,-84,-96,-75,-8,7,-18,95,-85,-99,-34,53,-18,-44,18,-100,-71,43,-63,-17,-20,52,14,-90,-33,-95,-98,92,-5,-17,-100,-100,44,92,64,-42,-66,43,-94,-90,-42,-78,-88,-72,-10,-59,86,-5,-92,-66,-82,-81,19,-100,-26,29,-55,-17,-44,89,-30,-30,-95,-30,-98,-81,-100,-92,-84,-85,-21,-15,-78,-83,37,-3,-38,-99,-52,-49,-77,1,-42,-100,-33,-100,23,-96,-81,-48,31,-55,-97,57,27,11,-59,-55,-25,-95,-55,50,70,52,-100,-99,-65,-9,-100,45,-55,-20,-94,-99,-23,-100,26,-78,-72,-24,-100,-99,24,-48,-60,-83,89,-34,-71,89,-9,-100,-100,-95,-50,-95,-48,-72,-99,98,82,-100,63,-91,25,-34,53,-84,12,-61,-100,-62,71,-100,48,34,11,99,-84,-85,-91,-99,-80,-96,-11,12,-8,-25,-66,32,-77,18,-49,-21,-82,-64,-29,54,-81,-100,-12,10,47,-57,79,-77,-96,-98,53,-67,-93,33,-59,-36,-89,-83,-48,69,-82,-16,45,-62,-100,-66,-89,-92,-5,4,-85,32,9,-56,-90,48,59,-79,-29,-82,75,-45,-88,-90,-32,24,-87,-7,-57,-72,-58,-43,-25,-9,-96,-48,-87,22,-11,-87,28,-70,74,50,-97,-52,-72,-94,-66,4,-39,-97,-83,-61,73,22,-20,-29,-89,-74,-82,17,-41,-95,-68,-99,-100,-34,32,-53,-100,-82,-49,-83,-59,-100,-89,-98,-70,-45,30,-100,-76,-43,-100,-67,-100,-34,43,42,-48,5,-24,-96,-26,-62,-71,-67,35,-2,-26,-40,-95,-100,-44,71,-91,-100,-71,4,-94,-86,-43,-100,-76,-32,68,-72,-82,-98,-68,83,71,16,-85,-34,-86,4,46,45,-92,-100,-45,-87,87,21,-69,-18,87,-77,-16,45,40,-53,-62,-82,78,82,81,-89,-100,84,4,-98,-19,-76,62,18,-99,84,-36,77,74,-23,-62,-86,-1,-94,-21,-92,83,-89,-93,-100,-53,-47,-92,-99,-100,-84,-94,-49,-93,-99,-84,-77,52,-61,39,-11,80,35,47,-50,95,-72,-47,94,36,-96,-92,-43,-73,-82,49,-97,-83,-1,-93,-83,22,51,-39,-73,9,-74,10,92,79,-37,-71,-90,58,-99,-100,50,58,-66,20,-96,89,-100,-89,19,93,-14,-100,-60,28,-68,-76,-99,-56,-43,-99,52,-85,-51,-94,-86,-41,-46,-83,-50,58,-90,-98,-78,-83,-32,45,14,-92,-98,85,-52,-100,-84,22,17,-51,-89,-31,-100,35,38,-80,-62,81,99,12,-88,-86,-70,-51,54,-98,-71,-52,50,48,-89,-99,-99,-49,-92,61,-87,-65,-17,-98,-100,-29,-32,-92,-51,-62,-63,68,-29,-43,-46,-57,85,-70,3,-100,-1,-75,-68,-85,-99,-84,-83,2,-95,-42,0,-80,-68,-100,-48,-1,2,-97,-74,-2,-97,-54,26,-11,94,33,-58,-83,19,59,-100,-64,-100,-1,-87,-25,-70,-1,-56,-32,-82,-21,2,82,-100,-39,-99,-6,95,-90,-100,14,23,-7,-99,-30,-37,-91,9,-59,-100,13,-51,80,9,-54,-11,-82,-40,-88,58,27,93,-100,-50,73,-91,-97,-86,16,-17,0,20,-46,-50,-43,-85,-68,-97,-12,57,-100,-99,-58,96,-41,4,-62,98,5,-83,53,32,29,96,-78,-94,90,2,13,-68,-34,64,45,-96,-98,78,16,-7,-97,-100,3,-75,15,-93,26,-90,2,-41,-95,-75,73,-80,-49,-3,3,17,-67,-7,51,-39,-45,-100,-82,-23,-51,-1,-69,66,-100,-49,-99,-91,77,-98,-97,-97,49,-82,22,-91,29,-100,-100,-49,-80,-54,40,-100,-93,73,-96,-98,-72,62,-46,-2,-80,-100,84,-92,79,24,-100,-75,-49,-73,5,6,-72,-74,-75,-92,89,85,-100,-76,-74,-98,-62,-38,-99,-85,-100,-64,70,-36,-81,20,-67,-99,-66,3,-91,-31,-53,-56,-98,24,5,35,-95,-23,-100,26,75,67,-89,-5,-71,-75,36,-50,-83,-92,-8,-17,-12,10,-28,-96,-99,-38,63,3,-96,-74,-26,-36,-100,-7,35,-76,96,-39,-39,-30,-100,-81,91,-13,79,25,-21,-43,23,-87,-38,42,-75,-85,27,74,67,8,39,-52,-72,-13,72,-8,-44,-20,-89,23,-47,-70,-2,-75,-52,21,-30,58,8,-97,-76,-32,-99,-86,-91,-100,-12,-92,-22,-41,-99,-54,72,-96,28,98,-31,-99,-42,-82,-100,15,-17,39,-98,-100,-99,1,-91,90,-95,16,-97,-15,-7,12,-92,-55,-98,-97,-89,-82,82,-57,-58,-7,35,-100,14,29,-64,-52,41,86,-100,-100,28,-99,-35,-93,-19,-94,-88,-52,43,85,-72,-25,-86,-99,-97,27,-38,-67,17,-2,22,-73,26,-100,-82,-77,-94,-56,-70,-81,22,20,-85,88,-100,-99,-58,-69,-26,-23,-78,-82,-96,-97,25,-79,-27,82,73,-98,38,-85,-99,-86,12,-70,0,-10,9,-43,50,-83,-14,-100,-11,-100,-24,-55,-57,-77,68,-90,97,-21,-98,-99,-42,-94,-66,-62,69,-99,23,-73,-71,-97,-74,2,-90,-55,-7,37,-98,-6,-94,-19,-87,-28,-80,-92,-87,-100,-66,-10,-39,88,13,-91,-35,-70,-73,-41,-59,-90,-97,-50,41,-64,-95,50,-79,-22,-100,-67,-94,-73,-89,-90,-91,-100,-77,34,-96,-48,20,-64,-97,-52,-65,-100,-62,-100,-69,-28,-94,-60,-99,-100,-90,-2,98,-66,-79,77,-62,-36,-88,-44,46,-45,-39,-40,-64,0,-83,4,-91,-99,-51,64,-98,-59,-14,-86,54,40,-100,71,-22,82,-5,-95,14,-84,-74,-95,-57,-69,-24,-100,-90,26,-71,69,-30,-63,-98,34,23,-22,-13,-100,-66,-64,-68,-76,-73,-56,-94,-48,16,37,26,-51,-77,-6,-50,-93,-82,-29,-100,-97,96,-41,-73,-49,-100,-68,54,-35,-100,-100,-21,16,32,99,-63,59,-56,-100,94,-66,-95,-98,13,92,48,-86,-93,-26,-31,-37,-73,-92,7,-44,-49,-30,-82,3,-23,-99,12,82,-57,-100,-96,-93,-78,-64,90,-99,-46,-97,66,-32,84,23,-98,-49,82,-75,-41,-6,-85,-100,30,84,-100,68,26,-78,-84,3,-95,54,-33,-87,-75,71,78,-97,-84,52,-100,-34,-29,-92,11,-36,-81,-68,-90,19,-76,73,-68,-87,-78,87,18,-55,-73,-66,-99,-69,-91,-82,-84,-100,-50,-95,-100,45,-100,-38,-100,-29,-28,-100,-69,-81,-100,-72,-20,37,11,-19,-9,28,-51,-76,-61,-31,-79,87,-93,81,-95,-77,-33,37,99,-71,-82,-64,-96,-38,75,-34,-8,-53,-69,-69,-70,-67,-82,-29,78,-26,46,85,-100,-47,-34,-93,-36,11,-38,59,-68,-56,-94,-89,-98,-84,-39,-96,-13,-98,-100,-70,13,68,88,82,-23,-51,-25,-100,0,-65,-71,-54,-98,14,-73,-68,-100,-76,-99,-76,-25,-28,37,-83,1,3,-97,-41,-57,-96,-42,-37,90,-85,36,-64,-7,-85,-99,31,14,92,-60,82,-92,-15,92,-86,-59,-26,-100,-83,-100,-79,44,-100,-87,46,-21,-64,28,-72,56,6,-100,-93,-95,-67,-85,78,-47,51,-75,-76,-81,-58,-49,48,89,66,-97,-89,-4,89,-95,-52,70,-49,-100,-11,56,-97,-95,-26,-47,-84,14,-94,90,8,-100,-64,-55,-30,-90,37,60,-56,-72,-100,-99,10,-84,-3,-99,-20,-65,82,-97,-7,18,-29,-98,-100,-50,-65,-68,-81,34,-95,-52,31,-100,25,63,1,-17,-90,-33,-100,-95,-97,-97,-100,-68,-82,-83,-54,-71,-16,-86,-100,-98,-50,-73,-69,-34,78,-28,17,67,-90,-100,-94,-60,57,-100,-89,29,-49,-82,97,-89,6,-69,38,68,-12,45,54,-99,40,-76,62,75,43,-81,-87,-19,97,-97,64,-100,-21,47,-68,-38,-84,-3,8,-57,-47,54,82,-91,76,66,19,-93,-88,-88,32,-21,-10,-59,-8,-72,-95,-100,33,-79,-67,-100,85,54,-100,-2,-99,80,-65,-58,23,29,-98,-35,55,-42,-88,-76,-25,-6,-83,66,-28,83,90,7,-19,-66,-1,-56,61,40,-17,36,-100,97,-100,-100,-92,96,-100,-33,9,-40,-59,70,-72,-89,29,65,-9,-76,81,-80,42,-100,-85,0,-65,-21,-61,-41,8,-83,-19,94,-66,-50,73,53,25,-42,-3,16,-2,-76,-30,35,-100,83,42,-28,-14,-74,-18,-70,-19,-99,-99,37,-15,-96,-92,-97,97,-66,57,59,6,-34,-10,81,-16,64,-100,-70,17,-70,-86,39,-92,-90,-58,-2,-2,-100,-6,-98,-100,-82,-63,-87,21,67,-96,68,-100,-61,32,66,62,89,-95,23,-52,-99,-60,70,-47,-86,89,21,-13,-100,-39,-52,-7,-100,-92,-58,7,-24,-4,66,-93,-91,-62,-38,-59,-87,-76,9,72,38,21,-83,-87,-94,92,-38,14,-98,-84,-40,76,-51,-100,-89,19,1,-91,-53,-99,21,-36,15,-24,-69,-92,-93,34,31,28,-100,-99,9,-100,-45,4,-92,-22,-95,-50,93,-61,-93,-10,-100,-64,-64,-90,83,-100,11,-92,6,-71,-73,-10,44,11,-98,3,11,75,-92,-67,-100,8,-1,-84,76,-65,-56,-91,-62,-97,-90,-90,-41,-79,-88,-59,96,85,71,-34,-94,-13,-2,20,-85,65,6,-100,-77,-78,-19,-89,-70,-100,-60,-99,-90,-40,-64,-82,-60,-37,-90,-27,82,-18,-81,-83,-28,-100,4,-26,-56,50,-96,-87,-91,46,5,-68,-18,94,81,-84,-34,-92,-80,-74,-68,18,69,45,-47,33,-14,-29,-100,-5,-18,-27,-32,-93,96,-5,-23,-58,30,2,1,87,-33,-98,44,-96,-19,15,-36,-99,-38,80,-100,-100,-6,-25,-100,-71,64,-96,-82,-6,68,-100,-66,35,-97,-74,1,-94,-99,-24,-69,-100,-91,89,-100,-65,65,12,39,-84,-98,-93,47,-36,-56,-87,64,93,-12,-99,-40,-56,73,-100,-93,-96,-5,23,-59,-32,-61,-94,-6,11,86,-2,55,-97,36,87,60,-57,68,98,-100,1,-59,37,-63,-19,-58,42,-99,-52,-78,-84,29,-87,-77,-61,-100,38,-63,-50,-84,-84,18,-71,-98,67,-21,-18,-97,-6,-75,-95,-46,-19,63,-43,-64,95,-48,41,10,-100,-25,-96,-70,-93,66,-99,-91,4,-100,53,83,-72,-20,-87,-16,-43,-73,-3,45,-83,-100,90,81,49,-98,-5,-34,49,23,-8,5,-26,-78,-57,-100,-78,42,-100,-15,89,-97,-60,-53,-66,-81,11,-76,-100,6,-94,-29,47,80,-100,-59,-92,-32,93,-99,-99,-80,61,-100,49,-27,-17,-34,-100,29,-70,-48,17,-64,-100,80,75,-84,1,72,-100,-94,80,-3,-59,-66,-80,69,62,-69,81,-43,-31,32,35,51,-75,34,88,-100,-67,-33,-99,-83,-45,-79,-68,-92,-84,72,93,-99,-69,-85,-32,-99,-95,65,-37,-54,-99,65,7,98,-22,-60,5,-40,59,-22,-97,40,-3,-92,-30,75,88,-73,-82,-17,-30,93,-97,87,95,-78,-35,-72,36,-13,28,-91,-76,-4,-100,-65,-59,81,-90,-66,86,-94,99,-39,-70,-73,-92,-97,-73,-2,-67,-94,71,-88,-54,-5,44,-90,6,-98,-100,2,-92,-99,23,-10,-67,-87,-98,74,71,-96,-53,-26,15,55,95,-100,-52,85,-98,52,-100,-48,16,-42,-71,-71,-48,-51,59,-65,-65,-94,-93,-90,-100,-39,-3,-82,-66,-58,-81,-78,15,11,-97,22,47,-77,-100,-6,-55,66}
{89,30,9,-55,-11,86,29,-17,-34,-4,97,-12,-9,79,-19,51,-26,-52,65,-51,-59,93,4,98,-88,-76,74,-2,75,-51,14,29,88,69,86,-82,-24,99,7,85,69,-47,35,59,-79,68,83,100,17,98,-45,-49,27,22,83,95,100,65,89,83,98,0,100,100,100,-71,72,-28,100,-5,73,-26,100,71,57,7,-66,-5,49,89,56,10,100,-35,59,49,74,-8,100,15,91,41,28,22,-55,82,91,63,50,-22,-15,95,9,7,75,98,100,60,-24,99,100,96,88,42,-14,72,66,93,48,-32,100,39,-78,96,65,98,-26,-26,100,-73,49,-15,95,33,31,84,95,-85,22,-61,97,94,14,69,53,93,-76,89,40,82,79,51,-50,100,100,96,59,-31,99,90,100,-79,37,36,53,-28,-75,48,43,-78,86,100,61,62,-85,92,95,-80,-51,84,59,-17,-66,91,-81,42,40,79,99,-50,-46,82,92,50,78,5,-43,-66,51,2,80,39,-48,-54,99,-57,87,54,100,29,95,-47,-48,100,41,86,59,90,45,-46,28,47,13,49,81,73,64,89,36,93,81,-9,-20,85,74,56,88,66,-6,84,-91,85,-46,74,40,-28,4,59,52,-72,-73,95,-99,-69,93,97,-11,33,99,97,9,88,78,68,44,63,85,21,65,90,-46,54,-95,32,23,99,53,60,89,96,-4,10,-16,98,-43,87,74,32,-75,96,98,45,7,62,89,-84,-3,92,63,29,-40,33,100,19,-64,-81,61,83,89,70,-71,46,97,72,63,80,41,99,27,-62,-99,99,99,33,26,53,48,100,61,-81,-93,99,66,3,13,90,-27,85,74,53,31,93,99,-79,98,-13,69,-55,-18,-51,72,32,36,25,-33,77,89,62,-46,-16,65,-30,15,54,-17,100,-83,100,67,-23,31,100,57,96,8,-31,7,44,100,94,94,-72,-83,23,-74,-13,-87,-94,10,-20,-4,100,-79,63,88,55,33,-20,-2,-30,-65,96,-21,100,100,100,70,58,94,-42,-13,99,72,65,51,-18,70,-81,99,90,100,-38,92,96,100,97,65,3,93,67,-24,91,-52,-57,20,82,89,94,92,59,-74,-83,61,87,98,-12,84,97,-49,95,-3,99,29,60,97,-24,-47,99,13,-32,71,-47,100,-92,45,-75,2,-4,95,14,97,100,72,94,100,-67,-18,97,82,-63,-14,100,-75,-4,-70,-52,71,-79,63,100,40,-12,47,27,49,81,88,35,60,-47,89,-62,98,-15,77,100,74,27,100,67,-95,55,99,44,-80,-27,52,-67,46,71,41,-75,85,91,-40,95,-29,34,86,49,31,-15,92,59,86,-11,28,-11,67,70,-21,91,83,8,-32,59,99,-22,64,76,17,92,-66,96,71,53,100,-44,-22,92,-2,86,24,100,37,-98,64,24,8,-50,40,89,43,87,-83,76,47,13,-98,-4,51,35,59,-5,23,12,-21,72,91,15,60,-62,-28,-30,10,96,93,26,-21,97,-61,89,85,21,16,-69,100,98,93,92,100,93,61,52,20,30,-29,-4,-93,46,1,42,97,-96,76,69,37,100,85,79,-57,-62,8,94,100,51,96,99,-15,57,66,-47,99,60,63,1,65,98,37,32,18,-64,11,-53,-60,96,48,-9,98,-89,60,-59,-59,80,98,-63,80,81,10,85,67,-94,12,-39,83,-83,-57,-52,54,-39,96,28,85,27,42,96,96,81,-16,79,0,51,96,-31,100,-47,4,90,94,51,11,-81,-18,-89,-88,-34,56,100,58,69,-97,48,68,46,85,-29,-62,-79,16,-32,96,99,96,-60,78,27,92,47,50,52,1,99,-46,98,33,94,-16,93,65,-10,78,81,-99,99,72,100,92,100,41,96,35,-40,-16,88,14,6,83,75,90,40,73,-7,-98,46,-76,96,77,-54,-93,41,15,84,-8,61,-99,97,77,-1,92,-37,-35,65,-96,100,51,63,86,52,-48,54,-36,58,50,96,88,-76,36,-70,77,96,57,67,79,89,5,-28,-30,73,-66,-21,-52,93,90,-62,52,23,100,100,79,99,-21,-15,96,90,85,-7,95,66,46,98,-85,62,44,88,60,71,99,88,14,18,57,-2,94,-63,92,93,98,92,100,100,75,4,75,29,32,-23,86,84,38,7,92,-19,94,81,-48,-14,80,30,-41,72,46,-74,-49,9,-11,17,86,37,51,43,5,76,98,12,77,32,25,-13,33,43,89,-99,80,88,69,38,26,86,92,99,31,-2,-11,-11,77,80,73,43,80,65,83,100,50,16,-46,93,98,87,97,63,72,32,95,85,-45,92,62,63,-20,31,80,-28,82,100,-53,-3,5,-53,-15,-57,91,100,-40,16,97,92,100,64,100,98,-54,100,2,27,-30,54,88,-88,-49,91,-28,-79,-82,93,73,93,-15,56,2,59,44,91,21,65,100,91,-14,-3,-67,-35,100,-71,96,100,50,-22,-12,86,-69,95,53,100,60,89,-95,97,-58,-10,-62,-2,-36,30,53,42,98,-10,36,10,49,94,-54,7,-27,90,-24,85,-83,56,22,-47,-60,54,94,-51,-69,37,43,100,97,75,100,23,98,99,98,-40,65,33,89,-41,90,-84,40,100,62,97,63,59,100,13,91,93,-33,-49,-52,-45,93,-69,-62,51,73,99,99,68,75,100,80,-43,97,-12,1,80,59,93,60,42,84,81,-75,2,90,19,-32,79,96,-15,-62,-39,9,89,-22,-23,-48,98,100,93,31,97,57,100,57,88,78,14,11,64,-29,97,72,78,97,-75,-8,-71,-60,100,28,-14,55,95,100,23,5,-71,98,53,53,97,9,84,30,100,80,56,68,-13,-15,62,30,86,74,95,-25,23,22,55,-86,10,-56,66,46,-4,79,-38,11,-47,56,54,90,-10,82,73,-83,-25,10,9,57,38,-25,67,-60,-81,16,-63,-44,-11,57,98,1,58,21,74,11,89,73,100,92,-58,-18,-50,-88,43,97,84,-15,-5,97,7,99,-86,-94,87,64,-5,-34,-63,-55,100,98,95,77,2,23,20,33,-37,77,-43,58,69,56,30,36,-42,91,80,95,50,-13,-54,21,-96,-77,83,72,100,87,-84,-34,55,-11,56,84,51,89,88,57,-17,17,54,8,-18,-52,1,84,-82,4,14,42,71,95,70,32,93,96,99,55,-14,100,-59,-74,-97,93,43,100,20,95,100,-48,39,100,77,-58,24,21,53,60,59,-1,93,-97,-1,-50,34,-39,77,-6,43,83,99,97,82,100,56,57,-78,96,2,76,-50,6,92,-96,-6,-48,90,39,-49,87,-36,29,18,99,8,-35,-9,71,79,70,80,-43,28,7,25,100,-90,37,100,-91,50,88,-3,48,-24,85,-40,85,89,27,100,-68,79,84,-18,-50,76,83,99,87,76,1,53,75,50,-17,79,49,90,44,-94,-59,11,92,45,98,90,-54,100,93,22,94,46,-81,99,100,100,98,-63,-71,-78,10,80,33,84,73,82,90,31,-29,78,-13,4,66,35,90,-62,90,77,100,91,-6,-53,25,100,-37,60,93,84,-50,95,99,90,65,46,-99,74,100,31,-48,-71,90,-24,47,47,87,63,-71,88,21,97,-25,-44,-93,61,-94,99,-29,30,7,-99,98,71,70,95,40,36,100,99,-14,98,-17,83,48,8,-26,-25,-10,-9,-1,99,70,78,86,15,87,59,99,7,100,70,98,69,-56,94,12,89,84,45,-97,97,-43,98,100,72,45,93,80,-34,70,-47,87,3,67,91,-49,100,51,13,-19,99,-27,48,26,97,63,-53,-58,63,94,74,99,53,-14,-58,36,100,85,82,-52,100,-35,-77,90,-52,90,26,92,57,-85,23,74,100,72,-18,-11,100,-24,-97,26,11,49,28,-88,65,81,19,74,86,98,-34,-39,59,-63,100,93,99,100,92,40,68,93,94,44,100,25,-9,8,93,53,-97,51,41,-78,88,-53,-75,81,47,-20,-85,93,38,-95,78,99,37,-49,-28,-97,97,72,99,94,97,88,71,95,24,33,81,34,82,93,84,53,-86,-18,70,81,-86,91,66,89,-46,33,96,98,-21,34,99,1,10,85,-74,-34,91,99,43,-23,81,78,96,-57,30,75,-91,30,56,-56,77,-4,83,100,-14,52,84,27,-1,-18,-39,-79,74,99,69,100,-77,25,84,-19,18,-97,-30,60,55,45,87,100,100,27,90,62,2,98,47,-14,-7,-69,13,72,4,97,-41,-48,11,81,69,99,52,27,-12,-42,-40,-46,-22,89,100,22,93,79,-26,67,76,18,100,-25,71,87,-15,-4,90,80,89,-73,88,9,-40,92,-46,-89,79,39,82,-26,-54,98,60,90,-20,74,-38,-85,-16,77,-22,-64,73,30,-13,17,95,100,93,100,-66,99,47,8,95,9,-37,78,-27,68,-46,84,100,44,12,-59,1,92,73,16,42,75,0,73,-17,-94,96,100,-19,-54,68,53,-66,-9,-86,-27,90,37,83,-95,74,-82,-11,8,68,51,82,50,72,68,83,83,62,62,90,24,0,75,34,-5,27,58,70,-39,54,90,-79,40,-99,13,60,85,78,-39,94,-25,-92,-44,-35,75,98,-24,95,32,95,88,87,12,75,29,25,36,-92,38,42,-72,30,36,92,87,96,-94,88,-2,-55,14,-72,-74,18,100,95,94,87,-5,33,-42,-20,100,-13,92,93,-65,-6,16,-13,81,24,47,-59,100,41,50,2,77,92,-29,87,54,82,94,-57,81,-49,-40,-30,68,51,99,-66,-57,100,98,-59,-57,-46,96,-46,97,55,44,-56,96,8,-41,-20,99,64,93,80,50,80,-55,100,29,78,92,96,81,2,68,88,-76,35,97,64,-32,91,42,99,100,100,24,76,32,67,-14,-20,96,-64,100,85,-98,95,63,34,100,36,69,98,100,33,56,89,89,-23,-85,58,88,67,-63,100,-67,37,-81,100,-17,-88,-47,10,69,99,40,15,49,-74,81,-70,70,-72,95,71,92,96,60,100,39,82,72,-88,-42,-1,15,10,44,100,85,14,69,-2,75,24,100,24,-94,32,83,52,81,91,100,84,33,-69,-36,82,100,-2,36,76,-32,98,71,10,71,69,87,100,89,-71,74,-83,-18,-19,29,60,17,86,100,-16,97,47,-67,75,-87,-52,4,80,-19,-30,86,68,100,79,97,-75,100,91,62,15,-55,96,-43,97,-48,66,2,99,84,-14,5,97,100,89,97,79,99,30,91,18,-1,-73,24,97,91,-10,67,82,85,25,-24,31,50,-31,-5,92,-50,87,31,96,-6,-63,-49,95,100,-9,92,2,48,-82,66,-57,95,-25,55,42,100,-23,75,99,95,-38,95,-54,7,36,92,88,-82,100,42,96,-9,14,100,40,-71,84,81,68,70,-69,97,99,-28,68,-10,64,71,100,100,14,100,65,51,59,33,70,15,68,-67,61,5,37,98,45,47,84,99,96,-89,97,82,78,38,88,100,40,-24,100,-33,73,-41,86,23,100,99,92,51,100,-29,-75,97,100,100,98,100,77,100,95,100,99,-37,100,56,-98,100,100,42,52,99,-67,-26,79,-37,96,46,77,-80,97,9,23,99,-2,-32,-8,-26,84,-25,88,89,62,31,-56,-23,79,95,-86,-99,-58,98,-76,95,91,-31,-5,-19,-35,-13,44,3,-77,77,-27,90,-20,72,74,-36,94,60,-88,100,-24,-80,73,77,-28,69,98,88,93,-24,85,-5,-92,-58,43,98,6,-2,23,69,16,100,10,88,88,88,55,47,52,96,86,88,44,61,52,93,-35,-41,-90,57,-40,99,100,99,-61,78,100,80,-36,83,77,-35,14,99,69,60,55,-13,56,-23,-48,74,-1,27,100,95,-19,99,99,100,-5,-84,-89,1,51,-36,94,0,100,68,99,82,97,-82,-80,41,-25,-55,66,75,-62,76,73,35,5,-58,56,100,-67,-62,53,7,36,7,100,89,-66,3,-9,99,-48,-28,63,99,56,8,35,98,80,-81,86,98,98,83,73,100,19,64,-3,100,-11,100,96,33,87,57,-72,73,60,-26,24,38,-2,70,58,69,80,-17,73,50,89,82,74,73,100,-37,48,98,43,-9,33,-17,76,-66,-57,83,-70,42,2,98,-28,-86,17,-63,92,-39,83,22,-84,99,-85,-92,100,-80,81,-10,88,77,100,80,14,45,89,90,57,-95,3,56,98,84,96,57,-51,58,73,14,37,96,24,98,100,97,-96,95,95,19,73,83,51,9,81,93,36,-34,-87}
{-24,95,3,-1,91,98,88,-55,93,-9,-44,92,82,87,48,100,-48,-8,15,34,99,-63,51,98,100,100,9,8,100,71,60,100,50,-5,-54,89,-22,51,75,20,-72,-54,93,-50,-26,-63,80,52,77,55,1,99,60,33,-67,88,43,18,-87,66,94,88,-5,-87,28,-31,75,95,47,-90,56,2,46,24,61,100,87,73,46,63,-9,42,-41,100,86,100,12,-53,100,21,-94,99,100,99,71,-79,83,-47,-20,45,100,69,97,-15,29,-46,99,78,-99,96,92,44,85,95,29,61,33,95,85,-16,34,90,85,100,99,28,-22,42,-12,-6,-9,71,45,99,44,-44,69,100,97,78,-14,-85,76,93,-65,-33,92,90,40,97,6,100,75,96,100,77,56,41,78,18,68,21,98,-72,3,64,-27,18,-53,75,97,95,95,6,-89,98,95,-4,32,-73,-14,87,98,100,23,63,-49,40,88,95,92,12,60,88,15,-39,63,26,50,-84,100,89,-11,100,44,65,70,100,74,20,43,-12,-9,19,97,53,50,38,-39,85,2,100,86,100,20,95,-41,-49,98,-16,69,42,71,100,82,76,-17,-55,-31,-75,-71,-52,89,-7,-29,-8,95,-64,86,-13,-18,28,-83,-52,85,-16,87,53,-93,-6,-93,92,63,100,100,-98,-11,40,10,100,97,89,99,30,-85,85,99,72,100,95,-17,28,-21,-52,-48,99,83,26,56,-29,36,93,-53,100,-97,83,23,49,-24,-47,64,-56,100,58,-26,81,100,-43,-34,-59,-36,60,96,-59,100,-24,99,-78,61,99,-12,84,-46,64,98,-93,62,-43,48,45,79,-24,83,-22,80,100,-20,1,94,-90,-77,32,99,77,-28,5,-38,15,46,33,-22,100,-1,99,-6,24,19,80,-34,2,22,81,98,99,14,29,74,86,100,24,0,54,-41,70,98,88,31,5,-39,-77,-35,-36,42,96,98,99,-27,-38,37,77,-64,79,96,69,20,-61,92,60,100,-69,72,77,39,-76,61,-32,-5,100,85,-29,15,99,76,42,41,90,96,24,-8,98,-5,-41,61,-76,27,-21,82,92,56,39,-51,48,55,96,100,62,50,97,-92,-64,86,100,26,41,90,99,-67,99,-61,-36,-60,-33,12,-71,20,-97,87,64,-46,52,43,77,100,83,-45,99,82,40,97,-31,67,49,40,68,-20,100,-16,100,-99,95,93,-71,97,85,-28,99,-70,-86,21,-79,100,20,100,-40,76,85,76,-98,57,40,9,93,74,72,-58,23,87,96,-95,86,34,97,35,-66,-80,25,-45,46,-91,76,75,29,62,98,65,85,4,28,-21,-8,16,-69,16,63,17,42,81,77,-12,99,31,98,83,-83,36,59,-19,-39,47,18,-84,-71,86,57,-20,71,72,-95,75,100,-24,-30,-30,100,96,4,69,66,-25,94,84,-16,-97,-69,73,-89,89,100,23,90,70,-79,100,85,-6,-85,92,27,17,52,90,-63,100,100,-88,85,78,37,90,-78,89,-18,82,100,-5,-9,49,64,-76,66,-70,-77,95,100,100,37,90,48,100,50,-83,-60,68,100,42,-16,-6,100,86,-12,36,-91,14,99,-71,83,100,72,98,96,82,94,26,-44,100,-89,-4,53,94,41,46,36,82,47,-84,91,67,-43,-82,71,-77,100,76,-70,12,100,52,89,-24,25,-14,57,34,-3,55,16,74,-15,10,26,100,6,84,57,68,-5,99,12,20,58,-18,-18,30,77,-42,24,97,78,76,-73,52,-3,-26,55,99,71,-22,89,16,90,99,-44,15,88,57,-2,60,98,78,-73,80,-8,-17,-76,87,67,-28,54,90,34,-54,100,-17,95,70,62,100,-48,99,83,12,100,72,91,-12,-71,53,30,98,-29,87,-70,100,-32,50,91,36,90,-43,-61,45,39,-24,44,-58,7,14,52,55,-34,75,95,-62,99,86,-54,-53,-17,-87,81,-15,96,95,88,62,97,93,-91,-24,97,99,-42,43,-54,15,90,5,63,97,26,-1,-42,81,-69,88,-68,100,75,62,69,-55,61,-81,41,91,-23,88,-86,-2,73,96,-58,100,-25,70,-28,3,100,16,38,64,-24,15,37,100,-19,-63,20,-42,99,100,54,-85,34,93,38,-10,44,80,96,-30,83,72,92,28,-41,-26,80,-35,84,85,-70,91,46,6,99,-24,18,36,-78,-40,93,100,64,74,89,-55,78,-27,20,99,93,38,15,51,75,-7,99,88,49,-66,100,1,99,65,57,10,35,95,100,-48,57,-37,64,62,73,36,100,25,94,-99,-16,98,57,98,-34,-60,94,-23,78,50,98,77,-96,32,30,26,64,92,86,71,98,100,86,-1,45,-64,71,39,90,24,59,35,17,94,-31,4,73,27,92,43,-41,89,71,-29,-5,95,68,-10,44,96,38,-68,99,-9,3,-71,15,96,-73,91,99,47,2,7,-69,93,87,-9,100,-55,98,85,26,99,93,83,4,6,2,99,6,65,71,77,-48,46,61,91,92,55,29,-98,95,82,-97,-98,93,-20,99,58,99,-88,69,92,8,-11,78,62,-70,-89,-52,69,83,-78,-70,66,-16,-68,-37,17,-21,16,100,-37,94,26,35,50,70,-26,99,46,51,93,75,100,-27,42,96,100,-20,81,-9,67,95,100,55,59,-20,80,71,-39,52,-79,86,85,22,96,-3,36,83,82,97,100,100,89,91,-92,82,100,75,-8,100,40,99,55,-20,-9,21,-63,-38,-42,18,54,61,48,-85,-87,75,47,-55,85,71,6,-48,-8,-84,4,32,16,87,97,98,84,100,53,79,42,15,-52,16,92,61,48,90,99,49,-70,76,91,48,98,100,-88,-78,100,-34,41,53,-53,95,9,-47,100,65,25,47,57,16,81,97,-23,97,-61,42,6,98,100,78,100,99,-93,6,67,83,99,78,-46,13,92,99,-48,20,91,100,-98,16,58,98,89,97,-3,87,-14,-78,-78,31,-11,86,-10,22,100,51,-97,73,54,-35,88,29,-38,2,81,85,-29,-54,-46,77,-29,64,96,44,99,87,26,100,51,82,76,-80,100,75,90,25,-68,100,94,31,8,-72,51,84,98,3,52,14,55,67,-12,95,-45,4,19,-47,92,-7,11,-34,-68,89,100,55,-60,-52,-51,-49,-17,-73,80,-43,15,63,-82,45,20,-55,-70,100,99,100,-95,-99,80,99,-16,100,88,64,20,99,96,87,-28,72,70,61,71,86,-60,77,-87,85,31,83,32,76,-23,91,100,99,84,-31,90,93,24,61,-32,-27,83,25,-6,80,-23,94,-71,81,6,75,98,81,-22,74,29,99,5,50,83,88,84,-82,64,-37,43,90,30,-12,98,-22,81,57,-56,50,75,88,55,73,45,-17,97,68,59,34,66,24,100,94,-71,95,91,100,75,71,88,-28,23,19,-19,45,99,87,100,53,69,-88,100,84,24,100,46,17,72,-67,-8,45,-64,-66,100,97,100,-71,82,-69,99,-59,53,89,61,-72,66,33,-61,32,82,-48,4,40,30,91,66,99,-1,97,-44,99,98,54,84,89,61,81,15,45,97,-17,97,92,-35,36,99,54,-20,-40,43,31,41,-78,-82,6,20,94,96,-6,98,-27,69,49,-61,-74,22,-95,-85,78,100,-6,-94,-13,45,-85,43,99,95,78,36,-82,89,100,100,48,-30,90,93,-38,10,-61,30,-79,92,100,-96,100,79,72,-61,1,32,65,96,96,-60,62,-12,100,89,18,98,54,52,-43,-91,100,6,92,4,-37,89,47,12,89,100,-24,1,88,-15,92,8,-13,-59,-93,53,67,-38,23,-67,10,-26,79,8,91,90,93,-12,87,61,-12,95,49,61,93,22,43,49,53,-8,15,100,-37,-24,-27,100,-68,85,52,42,56,47,-91,95,100,92,-60,86,76,56,-73,91,62,24,-38,37,97,-62,100,-98,-99,65,-55,96,80,-69,36,-89,-1,89,64,-7,62,100,93,-50,79,99,100,99,76,-19,-65,41,-5,-39,26,100,90,22,49,74,94,89,-34,89,-93,68,-49,66,-92,-62,95,-17,87,84,-64,93,99,81,100,4,93,-42,64,-6,1,91,-76,89,40,47,97,89,-52,29,80,88,100,-45,52,6,-29,98,27,100,-94,16,91,-81,87,-71,13,-60,98,2,18,60,98,100,-59,44,-78,-78,96,69,83,-23,92,-6,2,99,68,100,70,-72,-96,1,90,100,84,37,8,38,10,-6,93,-11,63,20,32,-50,53,53,-81,82,100,59,41,86,39,-57,97,86,96,99,-64,29,66,68,-12,-7,100,77,71,73,27,93,91,43,64,38,98,88,-52,59,-85,28,-31,-34,66,95,93,-88,91,74,40,32,19,-78,3,31,95,7,100,100,-89,95,100,96,-12,-36,79,90,-50,13,-23,83,26,81,-34,-33,57,100,52,-33,100,-10,40,59,78,-65,64,-30,100,-69,-92,-1,83,-7,-21,19,55,-45,65,-85,99,0,88,65,62,57,73,95,78,-56,81,0,100,97,56,-73,-45,73,83,68,97,81,-69,19,68,38,-46,92,-26,-51,69,81,61,37,43,100,-25,100,-79,26,84,76,77,63,99,-21,71,98,-99,92,9,72,-62,44,98,-13,-8,23,100,-1,13,-77,72,97,63,18,78,-23,-93,69,36,-57,100,84,35,18,-72,-33,-25,6,8,23,58,40,76,86,-80,96,42,33,93,89,10,-88,91,-68,92,34,89,86,8,62,73,-56,-24,53,100,67,99,-90,42,-70,86,1,98,-84,-99,-8,85,-45,35,97,33,80,66,-94,100,47,50,73,67,81,35,68,56,100,35,0,-68,99,13,55,-96,-64,92,87,-99,51,95,76,-25,-72,100,27,47,72,100,9,99,-59,-81,-55,35,97,87,74,99,97,-21,-55,13,75,36,94,61,100,-68,-45,-90,-29,41,-6,-23,-9,13,-75,85,56,95,93,28,83,44,54,95,-35,62,-26,-41,100,-94,11,22,25,100,100,-27,-6,-52,96,92,64,-66,-71,95,49,71,2,90,93,-37,95,75,29,79,100,-41,90,88,63,57,-73,-99,94,-19,52,66,19,53,53,100,55,91,92,92,-53,14,97,-19,41,93,-76,-99,-89,100,-75,46,-93,98,-45,-99,76,37,-82,93,-93,1,-7,-54,79,23,100,76,23,85,-65,-25,96,85,90,99,-27,98,80,100,76,-95,39,11,100,74,91,-97,77,-13,32,100,68,-66,87,-66,95,63,-71,-38,-76,-66,95,-94,-53,99,64,52,74,-57,-65,20,99,53,-69,96,57,-90,81,-11,55,100,-1,-60,-83,82,47,17,63,-73,96,55,23,-14,39,-41,100,94,-71,73,-38,23,95,-24,98,-27,99,-88,45,-47,63,76,-92,71,-28,94,95,-81,100,28,84,-35,92,-10,82,21,100,95,-65,-53,82,97,-57,-57,18,87,-22,-42,75,3,88,99,97,96,78,28,82,46,49,98,84,17,15,7,73,96,-48,-52,15,-27,-9,90,38,99,-65,62,52,99,69,-83,100,-14,99,-55,34,19,29,63,76,63,-10,47,-11,91,68,73,99,96,54,-59,87,95,-27,-19,65,24,-52,100,98,55,-99,-79,15,-64,39,-31,-82,30,100,-68,16,99,76,-29,88,-22,-13,-1,-20,89,-96,100,-46,100,38,58,-61,6,58,-13,95,-40,69,73,83,-96,95,91,75,48,-76,100,3,79,81,72,42,37,-76,69,-37,75,68,43,-47,49,95,-73,99,63,57,100,-1,94,56,99,93,-75,21,-83,-3,90,-15,69,93,99,97,74,96,52,98,96,-28,54,-10,99,-30,68,92,-94,95,96,68,-7,-8,6,5,99,28,-97,79,83,96,-52,64,14,6,-45,100,-57,62,62,47,93,-75,47,97,96,89,9,28,82,-34,55,71,16,-35,46,-67,62,-75,88,-77,95,69,-78,-81,32,37,50,28,33,-81,13,-54,-37,-60,68,99,-73,-34,88,-69,62,9,-31,85,-64,97,-85,66,5,98,77,59,35,13,-24,83,-26,94,72,80,76,-98,43,99,59,-10,51,99,62,-22,100,-23,100,96,100,100,91,38,-5,94,73,96,48,81,80,30,92,60,29,85,31,-17,70,55,47,98,10,93,92,66,-18,46,92,21,78,45,80,65,34,85,38,65,-12,99,-22,-50,-85,34,70,-20,99,0,39,-25,60,-85,75,98,-1,98,-34,95,1,44,-11,10,-57,94,39,-11,98,72,99,69,-79,100,48,99,-89,89,100,20,51}
{4,47,1,4,1,12,70,1,2,23,18,12,10,2,1,11,2,11,1,2,47,52,6,2,10,1,8,2,2,34,2,47,2,2,20,21,70,1,22,22,1,12,50,2,43,22,19,17,2,34,41,1,30,37,1,3,3,1,3,26,2,44,17,26,52,60,5,66,2,6,26,12,4,2,6,5,1,2,1,13,5,6,39,74,32,18,1,18,43,1,57,7,2,63,3,8,5,2,28,19,87,14,28,24,5,2,8,7,75,3,21,7,13,6,30,11,37,64,16,1,57,60,20,16,1,4,5,8,56,6,10,1,2,43,2,16,31,4,2,80,15,6,20,1,3,70,1,32,96,74,9,97,9,9,24,2,1,12,94,39,63,13,17,18,5,2,1,1,7,17,2,58,38,10,7,5,90,1,5,3,81,2,26,12,36,14,1,16,8,14,64,1,45,1,1,5,93,8,33,28,58,2,13,69,20,47,62,6,15,1,1,2,2,1,27,24,30,19,11,6,1,1,1,17,11,1,72,58,1,14,67,39,21,89,11,1,13,33,11,17,10,14,1,18,23,2,3,21,6,7,17,63,3,21,5,16,4,3,9,58,7,61,4,7,1,93,2,4,3,6,14,13,2,5,4,6,2,4,13,1,1,34,2,3,12,30,1,79,1,2,4,1,42,81,4,4,4,13,79,1,4,31,15,1,1,1,45,60,1,56,3,42,4,7,6,6,25,35,4,81,23,3,29,1,4,9,37,49,8,1,2,82,32,48,1,1,7,12,5,86,61,1,5,2,3,15,86,60,66,57,3,11,47,8,38,17,1,17,1,15,1,38,10,90,44,6,8,40,1,34,7,37,4,24,38,11,2,1,2,1,5,1,31,8,36,1,73,5,48,4,1,86,2,63,1,53,4,11,8,2,2,15,4,80,45,37,6,5,10,5,11,30,1,10,1,2,14,31,24,3,5,1,19,1,50,1,42,6,73,36,5,1,1,2,18,59,70,10,5,52,45,5,2,9,29,7,4,4,11,1,27,45,5,86,1,2,16,28,60,18,38,7,53,4,3,2,17,8,30,7,26,15,7,40,5,80,2,57,3,2,48,12,1,4,11,44,62,13,1,9,2,14,9,1,1,1,13,19,5,85,22,8,1,30,14,18,25,70,38,34,9,58,14,1,6,2,79,19,2,21,7,30,39,62,2,1,6,5,2,12,24,1,4,66,15,3,32,51,24,33,3,9,46,64,44,33,7,1,13,6,53,62,26,3,34,1,54,1,34,6,14,15,29,7,31,52,13,7,6,9,14,1,39,7,25,1,1,39,2,10,1,63,8,26,33,54,23,21,4,2,11,3,28,1,6,2,56,28,14,39,32,32,47,72,1,75,5,43,73,21,14,5,2,1,14,1,57,1,53,90,19,1,60,3,2,87,6,36,2,1,12,85,53,25,74,10,50,7,10,1,1,16,1,5,9,17,2,2,11,22,17,37,23,1,1,3,32,11,2,5,65,68,17,1,1,49,2,1,1,56,2,3,9,30,1,42,10,2,3,4,4,7,57,8,3,6,14,44,3,54,9,56,32,18,14,6,14,2,1,15,15,4,30,1,17,6,4,11,4,62,30,98,3,4,78,4,63,1,4,11,24,60,92,66,50,88,3,56,4,11,13,4,3,56,6,15,5,20,45,3,29,4,14,9,3,1,16,1,23,15,2,56,3,11,93,9,2,26,7,6,1,45,38,7,50,67,19,9,50,1,10,1,7,92,4,5,27,5,7,81,7,26,9,2,3,1,29,2,24,31,34,1,23,1,1,3,15,5,2,46,18,1,1,4,34,97,18,11,40,4,4,4,1,9,5,1,25,2,25,16,4,8,2,13,1,5,3,1,3,7,1,40,1,33,13,2,10,1,3,4,7,50,6,7,3,9,11,3,3,4,3,80,17,4,4,2,28,41,24,50,8,11,61,55,3,35,5,9,65,1,3,80,72,44,1,32,5,7,2,2,46,2,11,72,6,31,6,41,47,5,7,34,1,4,14,1,6,1,1,76,1,15,2,1,15,96,1,67,10,59,8,8,63,3,12,59,24,1,2,99,54,11,70,7,1,2,1,81,20,2,4,61,8,31,2,1,56,8,7,24,1,3,9,1,6,7,15,2,80,97,3,44,1,2,2,20,7,93,26,29,1,92,3,6,59,6,2,19,8,3,2,7,1,2,9,1,35,33,55,69,10,2,26,9,2,66,5,6,52,32,1,1,11,27,2,8,7,25,82,18,66,2,4,9,26,95,17,3,3,45,5,19,4,2,29,7,61,17,4,80,17,1,87,2,9,25,6,13,53,6,36,22,2,2,1,2,13,7,2,2,5,1,81,21,45,2,35,19,72,1,20,7,40,1,5,8,4,4,1,6,2,22,10,83,88,2,17,76,36,55,1,1,69,41,47,5,4,34,32,1,29,2,47,8,2,44,1,2,20,5,43,83,10,1,4,10,9,3,51,3,5,4,11,95,37,8,1,43,3,2,22,22,5,33,25,1,6,7,20,39,1,14,6,21,1,15,72,13,4,3,7,26,1,3,3,31,6,7,27,30,1,8,4,1,14,18,1,66,31,24,4,4,66,12,91,98,19,6,1,3,1,1,2,11,52,1,4,9,3,2,8,14,56,3,6,8,2,68,42,50,21,4,6,43,34,18,66,2,1,5,47,9,2,8,7,30,27,12,83,20,34,2,11,61,2,4,30,5,53,2,55,8,60,18,2,2,14,4,38,5,1,1,2,2,10,20,2,10,50,10,1,13,1,6,1,1,79,1,45,1,12,61,51,1,27,8,2,17,7,70,24,13,13,45,7,24,8,4,44,19,4,87,3,1,30,89,41,99,3,8,21,3,1,6,20,1,10,3,1,6,15,1,21,9,8,28,2,4,74,2,25,11,2,13,2,16,72,4,42,14,10,1,30,30,2,2,6,70,8,22,86,1,8,3,10,1,39,23,33,8,3,2,13,1,1,21,65,5,8,88,2,33,13,1,5,13,5,24,25,18,16,56,1,75,2,14,29,58,5,36,1,17,10,2,6,3,14,19,8,42,28,8,2,4,1,53,1,1,12,8,83,88,2,34,63,3,4,24,54,21,25,5,27,54,38,46,14,4,4,7,2,7,1,11,32,40,6,10,38,19,4,33,2,1,83,1,11,32,13,11,76,13,14,12,56,11,2,30,93,95,1,3,21,19,3,11,54,10,4,69,3,10,2,3,90,15,3,8,56,66,3,4,2,13,8,66,5,1,23,27,40,4,85,34,5,1,8,1,54,1,7,21,47,39,9,2,9,55,27,31,15,1,9,61,3,10,8,9,45,4,5,9,2,2,17,1,2,2,78,3,1,53,15,33,51,12,24,2,1,5,38,3,8,18,92,3,1,6,3,84,75,54,84,13,7,14,8,19,20,22,36,2,17,2,9,6,5,33,1,6,1,3,1,4,79,96,84,12,46,93,15,1,25,18,11,4,2,32,2,26,83,23,2,3,27,1,30,2,3,17,54,18,9,10,4,9,1,13,4,28,3,4,36,15,2,74,10,6,1,1,3,11,10,1,3,2,56,84,1,4,10,1,30,25,2,1,1,3,22,8,89,3,1,1,11,44,4,16,60,6,9,12,1,17,23,27,2,2,18,2,24,2,19,24,55,14,12,2,4,89,4,16,29,11,62,4,1,3,3,5,36,11,35,1,8,2,25,7,22,2,6,33,1,7,21,12,85,74,1,4,61,1,8,1,1,17,72,33,4,42,16,13,1,1,4,28,7,2,82,42,90,3,17,52,1,31,99,23,17,38,8,99,1,1,48,62,2,6,22,40,64,19,2,1,9,3,5,4,20,38,7,11,3,2,1,50,32,6,38,12,89,17,5,49,75,1,43,9,52,58,69,72,6,1,51,3,36,12,21,2,2,5,7,34,4,10,19,1,1,40,8,47,11,10,3,6,2,43,20,2,20,22,1,58,48,21,35,89,2,81,12,6,4,8,16,1,1,21,1,52,21,3,9,10,3,30,1,5,2,1,1,8,1,64,5,2,67,1,30,8,6,5,5,56,25,52,1,1,90,9,1,4,23,2,7,1,1,7,66,1,4,2,5,5,41,2,2,52,11,3,61,42,1,74,73,3,28,10,61,1,63,30,35,2,1,4,2,4,4,22,9,1,1,75,63,17,64,1,15,11,22,95,15,95,22,22,6,6,2,48,1,3,1,3,10,1,35,6,19,21,17,18,8,3,19,42,1,15,25,5,15,14,10,9,15,2,7,4,5,28,5,3,72,11,33,64,5,5,93,1,3,23,2,1,1,1,79,28,55,26,18,2,66,33,21,5,8,12,7,8,1,3,33,65,1,8,1,3,12,56,12,38,7,1,56,5,4,7,41,2,1,1,6,59,14,55,52,1,3,1,6,79,98,13,47,41,8,10,17,1,20,12,8,3,4,14,2,91,27,6,33,78,2,1,9,5,82,47,27,1,5,59,1,7,53,2,13,1,63,15,64,2,4,10,2,1,43,2,23,2,2,3,6,96,2,90,25,30,1,71,51,48,31,6,29,4,7,2,3,2,10,26,1,2,3,47,20,11,1,18,13,3,20,2,54,17,12,63,2,92,34,3,2,5,4,3,15,53,1,77,59,4,20,88,1,2,1,23,28,17,25,25,20,10,19,10,19,60,22,10,19,1,2,27,17,1,18,1,3,9,91,1,2,77,9,48,35,33,51,26,47,11,52,11,2,95,71,6,13,2,5,60,17,9,77,19,21,7,24,57,17,11,8,1,16,2,26,15,1,1,65,24,3,1,95,12,37,72,24,1,1,6,70,23,4,3,96,7,31,20,3,88,16,78,18,53,1,6,7,1,15,94,5,7,61,24,9,7,2,1,5,7,29,13,63,6,8,7,39,43,7,25,1,2,23,16,58,1,66,98,13,15,1,2,8,57,1,6,35,15,1,46,7,5,1,37,51,1,8,11,2,38,1,2,72,15,99,11,6,1,41,4,1,4,32,2,86,10,1,3,15,7,11,11,34,19,15,18,9,1,55,3,11,10,5,11,60,10,12,15,1,2,60,1,1,16,1,4,22,81,1,45,9,5,11,6,86,3,51,1,89,1,1,99,14,14,1,25,1,1,25,5,6,5,61,51,2,42,29,17,6,86,11,1,23,37,20,24,1,17,3,18,15,90,2,5,5,17,9,2,58,1,74,2,88,1,3,28,6,3,16,8,1,8,8,15,1,5,1,10,19,48,20,44,12,15,2,21,48,87,47,4,9,11,41,29,78,1,11,10,3,5,64,2,1,70,1,19,5,12,5,41,18,17,7,34,1,4,7,45,34,25,12,16,68,82,2,4,58,2,93,56,11,6,1,1,40,1,4,1,99,8,1,18,2,1,30,1,29,57,5,2,1,72,16,16,2,1,49,1,43,4,12,96,3,68,2,16,81,52,1,36,9,43,2,18,1,1,1,2,2,22,2,5,8,3,38,15,38,59,94,28,14,1,74,2,1,46,3,12,1,3,8,4,27,4,4,35,34,5,83,8,41,10,10,91,54,20,4,2,1,6,7,11,5,51,1,2,13,30,13,1,6,1,3,35,2,2,3,5,21,34,1,1,79,5,2,4,31,3}
Returns: 2.1762868976833005E9
{-82,-83,-98,-73,-16,-29,-10,-97,19,-13,-100,-98,14,-100,54,-76,-26,-100,-27,-89,-54,-38,-100,-100,10,-80,-96,-99,-6,25,18,-24,95,-54,91,-56,-94,-76,64,-21,-96,-94,-79,-28,92,62,-49,57,-18,-99,-93,-90,-66,38,-99,-70,36,-100,-100,19,-79,-91,-42,-99,-100,-80,-96,-31,-7,-100,-79,-91,92,-21,-94,28,-74,86,59,-48,-29,-34,-64,-90,43,-21,-42,-98,-36,-18,2,-81,-96,66,-67,89,-11,-100,3,-96,-93,-81,38,-69,57,13,-48,97,-63,-99,-34,-14,-81,-83,-68,34,-55,-53,-27,93,14,87,-71,55,-100,-38,-69,-66,-73,-90,36,-86,-60,32,62,-92,30,58,-95,65,-85,-32,25,41,-4,-83,11,-19,-72,-7,-53,27,-71,-72,-97,-98,-99,99,-99,-3,-79,-100,-61,12,-100,77,-80,-70,-39,-98,-51,-99,-48,76,-100,-95,-100,-76,-100,-100,11,-72,15,-97,19,-47,-98,-99,83,-8,19,-64,-46,31,-65,-61,21,-55,-99,48,-32,-20,-84,-61,-64,84,-10,-99,-52,-9,-58,78,60,85,66,-67,-100,-77,87,-38,55,-79,25,64,67,44,16,10,-85,-31,-12,-68,-100,-53,24,-92,-65,-100,-93,-66,-93,61,4,-95,-55,-2,-94,-88,-37,-67,-20,-59,-23,56,-92,24,59,-2,-95,-70,46,-99,-80,-23,52,-72,-99,70,-7,-3,-91,-26,-100,-87,-91,-11,96,-29,-31,-100,-94,-70,-87,-32,19,-5,-23,78,95,-96,34,-47,-23,84,67,-97,-10,58,-5,64,-98,-59,-96,-88,-98,-99,-64,-80,-49,-49,-81,19,-100,48,-58,-21,-78,69,-69,-25,37,-88,-66,81,46,-100,29,-100,-97,43,-64,21,-49,38,46,36,-69,-43,-32,27,-11,-47,-93,-100,-95,-79,15,-72,-52,-86,82,24,-75,-1,-60,16,-23,-100,-100,-33,-93,99,-55,-75,86,-9,4,10,-63,-52,-30,9,69,-34,-34,-45,-100,-53,-77,-92,-3,60,-61,43,-86,-61,18,-100,-22,55,26,-95,-78,61,15,16,-30,9,58,-34,-51,48,-95,-93,-100,-75,-67,-73,-61,26,-100,28,75,-33,-27,-60,9,-62,-77,63,-79,-100,-99,-56,-100,-99,-44,12,-67,-58,10,-29,64,93,-83,-89,-3,-74,-49,-95,29,-92,-61,-96,-82,-93,70,-11,-71,36,-84,67,-80,-75,-5,93,-5,-66,-91,-76,-44,-100,-5,-42,-27,-74,31,91,29,-77,-96,77,-74,-91,-29,25,28,-76,91,-70,-61,-89,-93,-53,70,-97,-76,-18,-77,45,-45,-5,-28,15,-96,-32,-100,-14,-68,-22,-71,52,64,-41,76,-96,-51,-89,-71,-73,-99,69,-86,-70,-29,14,-100,-91,-93,30,-88,-90,24,-97,-56,-48,37,-14,-100,45,0,91,-87,-89,-11,-95,26,-11,-94,19,-87,-61,-91,68,96,66,42,-29,-70,-25,-52,-58,-88,-54,-38,-22,-99,-19,-93,66,-26,14,13,-99,7,-33,-100,-93,25,-36,77,-70,-60,-100,-100,-52,-42,-56,-100,70,-25,-94,-51,-12,-36,-100,-57,-85,17,91,-89,-47,74,1,-28,-99,-28,-90,2,-87,20,26,18,-100,-29,10,-72,-27,24,-99,-55,-89,-95,-24,9,-89,42,-71,-81,-88,-55,-94,-45,-15,-22,-40,-85,-39,-73,-78,-21,-22,-89,8,-98,-96,96,63,31,6,-100,-8,80,-63,-100,19,-69,6,-71,-94,-67,46,-18,-89,-71,22,-15,33,65,2,17,25,1,-7,-93,6,28,-90,60,-99,-37,-4,22,-100,10,27,30,-99,-100,-26,-5,-92,-92,62,-100,-74,-61,-96,-5,-89,-95,-88,-60,-85,-77,39,-80,48,-77,-100,-99,-68,-25,47,-46,26,-33,-75,-89,-78,-57,3,-88,37,-98,-82,41,85,-71,-35,-3,-61,58,-96,-100,-7,61,-43,-70,93,-78,-22,-14,-95,-99,-54,-98,22,67,-72,-20,-12,-98,87,-49,-4,-33,84,-79,-100,83,-66,20,61,-100,72,-82,2,-31,-18,57,95,-92,91,-99,55,73,-74,-93,-11,-55,-92,47,35,-89,-83,-93,-31,-47,36,-84,-32,-92,56,-90,-95,30,-100,0,19,-51,88,61,-75,-92,-18,-53,-68,-7,12,27,17,-100,-87,-70,-19,31,45,32,-25,32,-84,-99,-11,-100,-44,58,-78,-99,-72,-98,-100,62,-97,-85,63,-31,9,-88,-74,0,-63,-58,-97,-43,-73,1,25,-79,-55,-67,-33,-89,16,10,-90,29,-100,8,18,-99,-33,12,93,46,-29,-100,42,-96,-92,9,58,-43,-95,-80,65,-94,-84,64,27,-99,-73,-28,-14,-49,-33,-45,-47,-27,-99,-3,-100,-90,29,-46,7,98,-100,75,-100,54,-85,-64,-51,-53,-82,-27,66,-95,-50,-43,-87,-28,-100,44,-84,-14,-100,-59,-24,-87,61,9,-96,-67,-78,-61,-93,-25,60,-45,-40,98,-94,-95,-83,-38,-6,-75,-56,-70,-86,10,-74,-87,-33,92,-78,-22,40,-81,-85,86,-47,-92,-100,-84,-90,-72,-100,86,-94,-97,-69,-97,-95,0,-64,-36,12,-74,-46,-58,70,-21,-22,-80,88,77,-52,-98,-33,32,82,94,-21,-69,-90,-100,-91,-100,-97,46,-28,-82,-31,33,5,-34,10,-50,83,-69,80,-100,-69,46,60,-99,70,42,67,-13,4,-100,-97,-3,-25,-69,48,-98,62,-84,-98,-64,40,-47,-65,-92,-100,-100,9,-94,-67,-19,-94,-76,-100,-47,-31,-79,14,-92,-96,-100,-20,-100,46,35,17,-94,46,-5,-97,-54,-83,-86,-96,-100,93,-100,14,-47,11,-98,8,-67,-100,71,-18,-88,-93,-100,-25,-48,-85,25,90,53,-31,76,39,63,-67,20,3,-75,25,-8,-95,63,77,82,75,91,-76,-25,-89,-97,-1,7,11,-27,-100,-94,68,76,-80,-97,-84,12,-90,-89,19,-43,-1,-100,-81,72,49,-84,-100,-2,-33,11,-81,59,-99,-87,-85,-50,-75,-72,-95,-17,-92,-91,-100,-68,56,-100,41,-71,-60,-46,14,-16,50,-8,-27,21,-39,43,-27,36,-100,-79,13,-93,-66,-68,63,-100,-61,-8,35,36,72,-85,-77,40,-100,-48,23,15,-90,-57,-62,-44,-93,-31,7,-45,-34,-84,-91,-35,81,-34,97,-19,23,-95,14,-38,-6,-58,8,-98,76,70,-90,-7,-23,-75,-59,-100,-10,-98,-57,-48,-25,14,77,-39,-68,-100,-81,-90,-100,-33,-21,-83,-91,-57,-93,-42,-96,-38,-75,-81,-83,-98,5,-7,-76,46,-100,-28,-99,-11,-87,-45,-69,81,-46,-100,-12,-9,-22,-49,-81,-98,-77,-71,57,-53,-10,71,-41,-97,-98,7,-76,-71,-97,64,12,82,-88,26,-85,-65,93,91,-97,-26,84,-99,17,-35,-50,-96,-86,-70,-74,-77,-98,-88,-67,27,58,-94,-97,-100,-100,-82,80,98,78,-32,27,-87,-99,-99,48,29,67,-100,-74,-65,13,-98,-62,33,-66,87,-88,-99,-53,-48,-88,-100,-85,-74,-61,-84,-86,-96,-97,-1,27,-85,-72,-100,-86,-87,-17,31,55,-14,-96,63,-63,92,73,-83,-99,-100,33,-25,-70,66,26,-86,97,97,-99,-60,42,45,-49,-11,-75,98,-58,24,-57,-93,-67,-88,40,-100,67,-16,14,-15,-41,40,-61,57,-69,8,-32,-81,37,-99,57,-76,8,52,-83,-93,-59,-66,-57,-88,-98,-100,-38,27,-44,-7,-85,-81,-12,-89,-64,-81,-89,34,16,-34,-81,-93,-91,-57,69,-46,65,-93,-36,-91,-92,-88,62,-17,1,-64,-99,97,-88,54,97,-100,-28,29,-94,-92,25,44,80,-19,83,86,-27,73,94,54,-80,-1,97,-28,-93,-35,1,-100,-52,12,-43,-67,-92,-52,35,-11,47,46,-43,-98,9,15,77,-91,-69,49,-74,70,-100,-16,-41,75,-98,53,-97,74,91,23,-92,-21,-100,-34,-12,-66,92,-99,-89,-38,-100,-98,66,75,89,29,-99,92,-94,-21,16,23,-83,-26,-90,-83,-39,-37,-1,-95,-20,-98,-71,-100,-85,-60,16,-99,-67,-56,-61,-97,-70,35,-33,66,-99,-95,-91,-97,-99,-85,-12,-99,-55,-5,84,-48,31,-100,-98,-65,88,-100,-58,82,0,-59,-80,43,-98,-85,62,-74,27,-94,-13,36,-88,-100,62,-95,-2,-87,38,-37,45,-9,-58,64,7,-99,-45,8,77,-45,-9,-84,58,76,31,-47,11,52,-65,-92,45,85,93,97,-83,57,-55,-68,-96,-86,-100,-81,27,35,-13,0,-100,31,-97,-98,82,-98,-100,-96,45,-83,-98,-97,-52,-33,-90,-84,-39,-100,34,72,-31,-97,-71,-43,-84,-16,-92,-79,-100,-15,-70,-63,26,-100,-84,35,-67,26,-79,-100,30,93,-97,-100,-100,-97,-88,67,-81,-91,42,-87,-88,2,28,-55,72,-100,-56,-94,-88,-100,-79,-47,39,-16,-86,55,-52,14,-76,-86,-99,23,9,-80,-45,-83,-4,-76,-89,-74,-76,52,-43,-72,-46,-70,-56,-89,68,-100,-47,-77,-96,-94,48,-83,-100,66,-92,-47,-66,-3,-73,-77,58,-87,-96,51,44,-80,-23,-1,-1,-74,-43,-55,-100,-100,0,-63,-88,42,-31,-82,-100,-35,-54,-67,-86,-97,-10,-85,-99,-20,-99,70,-100,-82,-48,24,-96,9,6,-66,-98,-18,-100,91,-100,-79,67,-53,50,28,92,-53,-91,-96,-25,-73,55,-22,0,-40,-93,-100,-95,-63,43,-97,-21,-32,-57,14,26,-62,-57,59,42,-11,37,-95,-96,-15,-99,-98,-56,-42,-98,-83,-97,90,-63,82,-37,-100,-99,-100,78,-3,84,84,95,-99,-3,90,-84,-27,8,0,72,-12,-78,-59,42,-58,12,83,44,-65,-78,-91,3,-96,-100,50,-100,-4,-100,-68,-66,91,-83,-92,65,-86,-37,91,-64,71,-85,-48,-74,-97,-89,-52,-19,42,69,-10,51,90,-93,-100,-99,61,-39,-74,-33,-96,-90,26,-21,9,-75,-85,-95,-43,-15,-100,77,-92,-22,-92,-98,-81,-84,-54,-62,-39,87,-84,-46,5,-70,-82,-91,-46,-6,94,-92,-81,-66,2,-64,-11,75,4,28,-100,14,-83,-99,44,-61,-98,-91,2,80,-72,10,26,35,-94,-57,74,77,-75,-92,-99,32,-76,66,-94,-63,-100,-73,84,98,-40,-82,-48,-67,-9,69,90,11,-100,-91,-19,-86,71,-90,-98,-48,-97,33,57,-76,-54,79,-100,2,73,69,-100,-28,22,80,33,34,33,57,78,-4,9,17,4,-76,78,39,60,-100,-100,-32,-36,74,-54,-99,-56,-100,64,-68,-71,-7,-99,69,-5,-58,41,-100,-89,-64,-48,-95,-100,-77,-88,-100,43,-28,-92,50,32,-100,-89,-41,-99,57,-25,-70,82,-96,-93,75,-25,49,-67,-23,-82,24,-71,-24,-100,-91,-22,74,-74,91,-90,-91,-41,-77,49,-72,-57,25,-9,-86,-94,-75,1,-100,-100,-92,54,83,-73,41,-97,-41,-100,46,-92,-17,-100,54,-48,-74,-77,9,-92,-98,-39,-98,-17,-98,-95,-54,96,49,7,-100,-2,-98,-93,-30,-75,33,-100,-52,-100,-100,-91,59,-61,-77,22,-42,-55,-85,61,-100,0,-66,-58,-15,-71,-96,-93,54,12,-87,-88,-100,-53,-27,-96,37,99,78,51,-100,-63,1,45,52,-55,-28,-98,-94,-17,35,19,0,-100,-71,-82,-37,-3,46,29,46,93,-88,-94,-96,-64,-46,11,-84,-40,-90,61,-44,-55,-2,-100,-55,-95,-1,-89,-87,-100,-86,67,-96,-80,74,-67,-81,58,-100,-60,91,99,39,-23,21,-100,-64,90,-97,8,-13,-7,-95,-11,11,71,-74,-82,-87,-99,-13,74,-96,-94,-100,-27,50,-62,-63,-98,-90,-84,-73,-60,20,-94,11,-100,-95,-85,-50,-95,-90,57,-73,-12,-99,45,-14,-89,-69,9,26,-57,-20,-90,-97,-40,-72,19,-100,18,0,61,39,-12,-61,-99,80,-64,45,-99,83,-63,-100,-89,36,-83,17,-14,-5,63,-89,-90,-100,-58,-99,3,-93,-99,38,-100,-71,-92,-100,-84,-89,-93,55,-4,-66,-98,-99,-16,-97,-42,-7,15,18,54,-89,-80,-100,74,-31,-38,-65,-37,66,9,-57,-70,17,-100,-99,-30,-66,-98,-97,-18,-97,97,-34,-33,-68,-100,1,-54,89,-91,-26,5,-98,33,-23,-95,53,92,-67,-40,22,-55,-98,-87,-95,6,-98,-99,-98,-91,-34,8,37,-26,29,30,-98,-38,-36,-96,-1,43,19,78,-96,-89,-55,-83,-74,-48,-93,81,43,-97,-99,-51,77,-42,-78,-88,-100,-83,-74,-21,90,61,-95,-35,-95,-98,-89,-55,52,-86,22,-54,-7,-95,-88,36,-27,-2,-100,61,-65,-98,-94,0,15,-99,-87,4,12,74,-84,-53,-99,-76,-50,55,-65,-92,-29,16,-100,6,-27,-71,-100,-86,-85,-85,-98,-16,34,-92,29,-56,-81,-79,94,64,94,-98,-26,41,36,-84,-64,-88,-20,1,-95,41,18,-74,71,-34,-88,-74,-56,-96,55,-23,-73,-85,-90,11,-64,-40,-97,42,94,-41,-72,-95,-95,-78,93,60,-2,-40,82,87,31,73,-78,-43,-66,68,-31,-37,92,-47,28,79,79,52,-26,-100,-95,69,15,-79,-22,70,-31,-93,31,-99,-63,-71,20,-100,-94,3,47,22,19,-30,-33,-25,-56,-28,42}
{-51,91,-62,-100,33,-48,-100,90,-33,73,-95,-100,61,10,-5,22,-99,54,-28,28,-2,-73,-11,-95,67,-98,-88,-98,-55,-100,47,-100,-86,-44,-37,-99,-21,-77,-72,9,-76,-89,-100,-22,-98,66,-83,-88,62,-9,91,-44,-65,-90,54,-65,-97,67,-83,73,6,-77,-100,-100,72,-100,-52,23,-88,-90,-35,-73,-35,3,-77,-76,-100,-79,71,15,-93,-1,-28,59,34,-27,9,47,22,-68,-63,-96,0,-95,28,41,-29,77,29,-85,-42,-93,-10,-94,-100,-12,-70,-91,-78,46,-94,70,-71,-50,-42,35,-63,-81,-93,-88,-74,75,-65,-97,38,-97,-97,-66,24,-60,-61,-40,-100,-33,-97,-59,-99,-9,-61,-100,-51,-5,-100,-81,7,-23,-69,-79,-98,-98,-90,-96,-84,-5,-54,59,27,-100,-88,-100,-100,-69,56,-91,-99,-16,60,-74,-91,88,-28,-56,-36,-76,3,-19,-50,-88,-97,37,-27,-100,-40,-80,74,-36,61,22,-100,-74,-67,-96,-2,-41,-30,-71,48,-43,1,-100,-35,80,-100,-87,-83,52,55,-95,-53,-98,-96,0,-34,30,-22,-36,87,-66,60,-79,-57,-80,-43,-48,-93,-99,3,71,-93,-72,22,38,79,-100,-31,12,-60,-85,-100,-71,10,-45,-35,-95,-23,36,46,-25,55,-63,24,-72,-75,4,-76,-75,-89,-77,-100,55,-98,4,-32,-95,90,-38,-69,-15,-67,-81,-96,72,-35,51,44,-87,12,96,-100,-70,26,49,-75,-49,-19,-61,-25,98,-47,46,-99,-94,-100,-94,88,-95,-43,-65,-100,-100,96,-73,-15,14,20,-98,-39,-84,96,-99,-91,-49,-47,79,-59,-14,-84,92,-11,-24,-38,-41,10,-29,18,-80,-46,37,-63,-82,-35,4,-45,12,-45,-42,-97,19,-59,-85,-83,-87,-66,89,39,-99,72,95,-99,-83,-90,-80,35,-89,21,69,-62,42,-96,-66,-78,-19,-70,-47,-91,-98,6,-73,-98,73,41,66,-6,45,-99,-93,-99,-88,0,-100,-46,59,-64,-68,-99,-64,50,-62,58,92,73,-100,70,-15,-18,-87,-9,-97,51,-19,77,1,-100,-48,-12,-70,-54,-93,62,10,-92,-93,-99,-93,-99,64,-100,-88,17,-24,57,-98,-90,-53,-76,-9,-71,-4,33,-25,-98,-89,15,42,-69,-65,36,52,-68,-99,-74,-100,81,-98,-30,-99,-90,-64,-97,11,13,-100,-76,9,-100,-68,62,-7,36,13,57,-42,-79,92,-96,-41,-100,-38,22,-83,-96,38,-92,-97,-58,36,-100,34,78,-97,21,-77,-78,5,48,-38,-57,-36,68,-98,35,-99,36,-21,-44,-90,52,-15,-37,-88,-83,-64,24,-92,-65,-9,-73,28,-45,-100,-77,-99,-28,-23,-95,-80,-58,67,56,-42,92,81,-20,16,42,-100,-46,45,46,94,-86,-82,-7,47,-38,-100,-100,90,31,-82,-80,-99,52,16,-97,-82,-87,-100,-16,-59,-8,-47,-78,95,72,-66,-87,-79,24,-69,-65,87,-93,-79,-61,-87,-14,-19,-93,14,-100,-100,-51,25,50,49,-27,-54,-63,-25,-14,-100,31,-65,-35,-64,-100,-73,-39,-16,-3,-55,25,-49,-98,-82,-95,63,-93,-20,-69,-70,-74,-96,-33,-99,-80,-77,-95,-96,88,-89,91,12,-77,-85,-42,-11,-58,-92,14,-86,52,-58,36,-98,42,-63,-4,-55,-67,49,-97,-79,-95,-99,-54,-95,66,3,-97,76,-28,-78,-97,-26,-83,32,-41,-72,-23,-40,92,-91,55,-68,97,-87,28,-93,-55,-99,-97,-19,-18,18,-72,-75,6,64,-81,-27,-6,-99,-11,-100,-13,71,17,-83,15,27,51,-100,-85,-81,-97,-94,-19,-100,51,-13,-88,-54,-38,-90,78,-20,-99,41,69,-72,0,-47,-2,0,-31,-87,-57,-79,-88,-11,61,-83,9,-29,4,-79,-100,73,-62,85,-66,-98,66,6,-96,-32,-94,-1,-64,54,-63,-5,-29,57,48,-81,-45,35,-87,70,-86,58,-96,-93,-59,96,7,-51,-64,8,-94,-93,-17,20,-4,40,67,-80,-96,-99,-19,-79,-73,-98,31,-68,-100,-49,-76,84,-73,-11,-94,-41,-71,24,-10,-45,-14,-92,-92,-47,1,38,-97,-100,-44,51,48,84,-98,54,-41,87,27,-69,30,-47,51,-100,33,89,11,-100,-81,-1,-51,4,-48,-98,-22,90,-85,-92,-92,-41,-6,-15,2,-93,3,-70,30,-97,-98,-97,-95,-74,-91,-88,-6,91,-100,-92,-89,79,-83,-100,-93,-53,22,-56,-28,-17,-4,-95,-14,-56,-74,-77,23,-100,67,-25,40,93,-70,-27,-100,18,-27,-89,-37,-82,-99,-87,-97,45,-13,-99,32,-87,-50,6,10,57,-100,55,-34,-80,32,-13,-4,-91,29,6,-97,-95,-38,12,-99,-74,-42,-100,4,-34,-99,-71,57,-92,-2,-100,-29,83,-13,-98,87,55,-92,44,-100,17,50,-100,-94,-90,-97,-96,32,-25,-69,63,-96,-88,46,-28,-97,83,-83,-87,-94,-99,-40,-54,-100,-40,-92,79,25,-83,-99,14,49,-100,-82,-99,-67,-59,16,-98,-93,-58,41,-100,75,-56,-94,-91,-73,-55,-43,53,-96,-98,-41,-61,-24,-26,-81,-100,-66,-47,-100,64,-95,35,90,-87,62,16,-13,-72,-98,-94,70,-46,-49,47,16,-70,11,-50,91,20,88,-33,36,56,-7,-97,51,96,-100,-99,53,55,-100,-74,-100,-41,-14,-88,-99,-92,-50,-100,46,-50,-76,-98,-58,-89,-13,-51,99,-53,-35,52,-94,-91,-12,-31,-86,-94,-49,-63,-100,-59,-18,42,-3,-11,-42,-87,-97,-22,-97,37,-63,-100,-37,-97,-100,-100,-91,-100,-65,-90,-11,-97,-98,-92,-55,-88,-72,-21,-100,43,-95,23,-90,-100,13,-77,80,-8,-74,62,9,-13,-13,75,-82,-22,17,46,-98,96,72,44,-100,-98,-85,-100,-92,-1,25,-84,-71,-8,-89,27,57,-100,64,49,-6,-56,41,-88,-88,-81,-21,-59,-48,87,-99,62,-8,-97,22,-100,-99,-65,90,-6,-100,8,-72,-30,-95,34,-94,56,-97,-5,91,77,-97,-63,-76,37,-72,-35,-18,-29,45,-88,11,-44,-76,13,11,36,-49,36,-100,-36,-67,-80,97,-93,-69,-69,-66,32,62,-31,-56,16,-27,-89,43,91,-64,76,-26,-63,72,-20,-100,75,-94,20,-85,-96,-68,87,-100,-81,-51,83,-52,89,-71,18,17,58,52,84,-65,-79,-100,3,-92,-6,-79,-36,-12,6,12,84,-62,61,27,73,97,68,-46,-89,-66,82,36,-88,-100,-80,16,1,-13,-71,50,-63,-63,-100,61,-72,-94,-78,77,-62,-100,49,-65,-35,-95,42,-64,-86,-79,-92,18,85,-90,-91,-90,-7,-67,-23,48,65,-49,-92,-19,-94,-100,-61,-90,-94,-19,-9,-23,33,-90,76,-98,-67,-62,-97,-79,72,-51,-11,98,14,-100,-94,-100,-3,-97,-100,-88,-17,-71,26,39,-85,-96,-59,-95,-33,-100,-100,-100,64,-82,-93,-83,-75,-9,-29,-75,-98,-4,-90,-100,-91,28,-99,-66,-100,-99,-37,-24,27,70,-78,-87,-74,-99,-39,-52,27,-100,62,-100,28,-22,-26,-98,34,-100,-75,56,-81,-46,-100,35,34,-45,-53,-91,-97,-100,-96,30,-100,-52,-97,-75,-56,-62,-67,-24,-77,-1,-57,-68,-9,-17,40,-91,-31,-93,38,46,57,-9,29,-90,-100,-27,-37,15,-88,64,-68,-93,-88,-30,-82,70,-95,-50,-3,-16,26,-34,22,42,-92,-99,-82,-33,63,-68,-100,-93,4,68,84,-45,48,20,18,-100,-91,27,-94,-91,-72,-42,-3,-96,63,24,-93,33,41,-97,68,-94,-88,-78,-26,41,32,12,-88,-72,-86,-89,-21,-42,-89,-92,-15,-97,57,21,5,-84,-89,-76,-100,26,-4,51,-99,-97,-41,-41,-61,-86,29,96,-95,-11,14,3,-46,-75,19,-83,-58,70,-94,44,99,95,-6,-89,47,24,45,66,-66,12,69,-61,-52,-88,51,-7,-94,-83,-94,40,-99,-48,-67,86,-100,-25,28,-96,41,-17,39,-100,-96,-91,-67,-74,-46,-59,35,-69,36,0,-51,-18,-63,-14,-55,-82,-96,-74,-63,69,-76,-40,18,-76,-96,-36,83,-94,-76,23,52,-83,-23,-79,-84,67,-47,83,-98,74,-90,-93,-91,-26,12,-100,5,-46,45,-87,-100,79,-99,56,-50,-90,-93,-95,59,-91,-59,-43,-95,-46,97,-95,-85,-92,-38,1,-100,-51,-23,24,-67,-82,-47,59,91,-38,-5,-43,31,65,-71,-100,-44,98,94,9,-38,-98,-56,-53,-3,-87,85,-35,-15,-75,-53,95,-86,-99,-48,-21,18,-32,-31,-45,-98,-6,15,25,-94,85,97,-32,52,43,-99,-96,-5,-78,15,-97,-5,-79,10,-84,25,45,34,-90,-4,-99,-38,-97,-49,-48,-62,-99,-81,-54,22,-89,-47,-38,-26,-91,9,41,-100,-96,-38,70,-95,-11,-100,-15,-19,-93,-89,-91,-51,-24,10,-99,-52,-100,0,73,-91,-100,-99,-86,-73,-50,47,36,-93,54,49,-95,10,75,91,1,8,86,65,-68,72,-15,-100,-99,61,83,-36,-48,-83,-55,87,-86,-99,24,-46,51,-53,-16,46,-93,-30,-91,-98,2,-25,-98,-43,14,-15,57,9,-83,81,-85,-92,-69,-98,-1,-93,-99,-22,10,-88,-24,32,-50,54,-37,-93,-46,77,-83,-51,-79,-84,28,-86,2,-98,-100,-60,22,-84,-91,-54,22,1,92,-69,-79,-100,-99,-59,24,-100,-100,-37,-70,-82,-82,-23,-85,20,-100,-49,-3,-87,-87,-100,-19,-34,-80,-60,-86,-98,-99,-81,-92,-76,-89,-100,57,-61,71,-100,-80,-30,-93,93,99,63,-91,-92,-95,69,-99,-39,-65,-82,-2,-84,-91,52,-45,-57,-88,-96,61,-97,-82,-95,-94,-76,49,95,-85,96,-100,28,-100,-40,61,91,-81,-96,-16,21,-73,-41,-18,-13,-100,-36,-99,-94,98,16,-94,0,-96,-20,-86,85,-12,18,-89,-75,-100,46,99,36,73,-98,-37,-30,-64,-92,-26,23,-100,-90,-86,-69,-71,-80,-78,-59,-86,-89,-28,-36,-75,40,-28,-95,75,-27,47,97,77,-20,-19,-79,-99,8,-44,-78,-50,-27,91,35,-23,-78,79,-52,42,-80,32,-95,-100,66,56,-73,92,9,-77,28,-78,-15,80,14,76,14,-57,39,90,23,20,-78,-100,-82,-51,73,-83,99,-89,-93,-100,-92,28,-83,-91,-37,-86,-80,-56,-96,-57,57,-77,-87,-100,67,-72,-86,-60,-77,-94,-90,-71,-36,10,-54,25,-90,-24,-77,-98,-33,-34,-84,39,-33,-25,7,-96,-100,-17,19,-38,77,28,-36,72,-78,-100,-90,-55,-92,-46,-90,-66,-75,-8,-88,-14,-99,-73,-67,-29,-64,11,-45,40,-100,-68,66,-34,8,-87,-20,16,31,-59,-100,-95,86,-47,-74,-99,-88,-81,80,-99,-94,-81,-18,-26,-35,-6,-86,41,-83,-11,67,-54,-28,-94,89,99,-15,56,-27,74,2,-11,-90,-48,-41,-100,-100,-48,-97,82,-13,-97,-13,-99,48,-1,-95,-64,-62,-92,40,-45,84,28,-78,-99,61,-76,-16,96,-80,-99,-31,-58,10,32,-34,-98,-74,28,-100,17,-100,-57,55,-100,9,-33,-21,34,-54,23,-60,-98,-51,-100,-60,-70,0,-87,-96,-83,-89,-100,-27,10,-34,-99,-44,95,-13,-63,-78,-100,10,-99,61,-100,-56,11,-88,-77,69,-98,-100,-24,7,45,75,87,-12,-23,-85,-72,-100,-71,-100,38,-32,55,-80,42,-99,96,-100,-86,-87,-92,-48,-44,-27,-96,-89,39,-72,-97,-90,-16,-41,-52,-85,-64,8,-81,-86,-52,-92,-17,-96,-92,-89,24,-100,-43,-20,-96,76,80,85,-20,-81,-33,-85,96,-61,64,77,-81,-45,-40,-100,-27,-64,-91,-85,-87,-97,2,56,-5,36,-53,-13,-77,24,-49,-94,86,-92,-97,-63,-57,72,-95,-11,7,-88,-43,38,-87,-99,61,-91,-100,-99,-99,-100,-9,-46,-88,96,-65,38,9,54,-99,-93,76,-100,-84,-68,-13,-100,77,-28,-75,20,-61,21,88,-87,-84,-67,-79,-82,26,-91,16,-95,-25,73,-100,-33,-3,15,73,-78,54,-44,-95,-65,-38,-43,-67,26,-29,68,-60,-75,-79,-75,45,-33,-60,-32,-41,7,12,-7,72,-100,1,-100,-14,-64,-46,-100,3,-17,-49,-9,-79,-1,23,-65,57,-74,-8,49,-49,-94,-43,-96,-30,-5,4,-52,-27,51,66,-69,-72,-57,-91,-48,-80,65,-59,-79,-63,-21,-48,78,-83,-88,19,-79,-100,-60,14,-98,-100,-53,-92,-98,-100,-18,-54,-59,-55,13,-56,-57,-56,-96,-87,-20,-82,-98,-82,76,-76,-38,-87,-72,36,99,-23,38,-79,-77,-14,-54,88,20,26,-93,-92,-40,-94,-99,28,-97,54,2,41,-49,-71,4,-46,-98,-100,21,-95,-12,-83,-95,83,-98,-58,80,-100,11,-35,44,68,1,-33,8,-3,0,-78,-77,80,29,-93,-61,-80,-87,-83,-66,-71,15,79,-78,31,68,65,-67,-1,41,-61,-49,37,47,-53,-100,-27,-67,-50,-92,21,-100,0,72,-84,-99,-3,-66,-98,-96,65,-78,51,-80,-97,-100,-72,-100,85,-100,75,31,88,18,-28,-4,28,-94,-25,56,-92,-99,-94,-39,29,31,9,-7,28,-98,-80,48}
{31,-95,-64,-4,97,14,62,-1,-99,100,39,81,92,84,48,13,89,91,75,-31,78,100,-78,40,44,98,42,7,98,94,51,90,2,-78,-79,-55,-36,62,46,92,39,-53,-63,100,-24,100,80,72,-96,8,84,54,99,49,46,60,93,92,82,-49,-26,83,-6,6,75,92,-35,84,10,-36,-51,100,-11,67,63,100,-43,-46,-80,-14,98,-2,68,100,100,99,93,78,5,-95,85,88,89,100,-11,-85,59,-58,-45,-51,98,-82,60,-91,98,32,31,-6,91,-60,82,78,97,73,-70,100,97,-28,11,36,-83,36,-71,-58,-51,95,71,100,-73,98,94,98,92,96,93,62,9,-29,100,45,-81,10,80,-41,100,97,81,-77,100,100,-97,17,2,100,16,-65,85,92,85,79,83,96,72,64,21,-24,44,-39,81,72,-64,74,100,99,80,100,82,12,57,62,-18,99,13,71,77,37,-56,-28,28,100,-30,95,70,-43,84,5,-29,85,98,62,84,92,-10,8,70,-48,40,7,69,-60,92,67,87,-46,-94,87,91,-23,76,-87,98,97,83,53,63,87,97,94,79,62,-39,74,97,-19,97,42,98,99,100,98,76,89,-95,45,17,-4,-16,99,100,75,27,45,98,62,64,-16,88,40,-54,15,9,100,99,-39,4,75,100,98,-87,97,53,41,9,95,-62,-80,55,-19,98,-49,5,-20,-33,78,-96,88,-85,91,-39,94,-17,10,99,38,84,6,50,54,99,85,98,-29,-82,100,46,-83,-47,79,87,92,22,-86,-85,44,-32,83,8,-6,8,86,99,86,89,87,-27,74,41,96,81,14,77,29,98,12,100,33,100,-9,99,-99,85,100,-16,55,100,70,75,-63,94,-96,39,88,-50,86,100,-5,69,-59,-25,-37,-85,80,94,59,96,11,-77,80,96,-17,-52,46,22,98,60,-49,18,100,4,100,55,82,92,77,91,-49,66,-21,36,85,-78,100,57,100,65,56,48,100,72,88,95,-78,55,76,41,100,-91,-42,97,-23,79,-99,21,19,28,-17,-81,97,-91,-56,-91,96,61,96,80,99,-12,93,72,68,100,-79,88,26,65,-49,-75,-64,97,44,97,-73,100,-30,96,75,-92,88,76,-68,82,-53,56,4,100,22,98,-85,69,100,-14,97,-98,0,21,38,-74,36,94,-47,39,-38,-48,-34,87,-11,27,88,100,-3,90,42,94,-30,53,-78,21,-16,82,45,100,80,-11,100,-4,-41,86,79,13,33,93,-96,67,100,33,33,59,95,50,-22,55,87,91,18,-50,100,-10,74,-42,99,67,96,-88,-65,100,100,-87,89,-31,-1,12,72,-5,33,90,-49,79,-74,100,51,73,37,56,84,91,73,-19,10,96,14,91,-56,90,94,55,5,34,26,94,89,13,37,19,-13,-63,50,100,82,-39,84,68,31,95,97,-38,100,87,-18,88,100,100,-28,97,-53,55,15,41,34,1,-62,100,16,63,-26,74,99,100,-72,-33,83,-18,100,99,90,-39,-63,99,84,59,59,3,31,68,71,-3,81,22,83,-12,12,88,64,80,98,35,8,56,-16,4,88,-93,91,95,79,55,-66,90,55,-95,95,83,53,-79,97,-73,96,91,94,-85,3,67,17,99,-82,-47,16,89,74,73,-90,-81,86,68,-38,96,37,60,-77,93,99,98,41,95,41,-33,-99,34,-36,69,-19,-76,-26,100,54,-55,23,-92,45,51,14,50,13,100,21,58,73,-63,-38,50,8,-74,76,-47,77,98,80,-94,-17,-68,97,76,71,-11,31,-54,80,100,81,100,83,15,100,-31,-8,-65,49,59,-81,-39,99,-97,98,23,81,5,80,-65,95,99,99,42,94,53,73,96,98,100,11,-73,88,99,97,-79,-99,60,29,2,44,91,89,99,1,3,30,85,21,53,-84,90,100,100,-16,-2,-77,-22,67,34,25,60,-30,49,-67,85,70,65,59,-20,-40,18,-94,100,84,93,57,33,-98,-53,98,85,-3,87,36,7,95,77,99,82,-90,62,99,76,59,-60,97,-35,56,99,20,38,90,-25,90,23,1,99,49,-40,-61,0,61,93,61,64,36,28,-27,98,98,-76,96,-8,-85,-86,0,62,59,-18,-49,85,100,58,-81,-33,69,-28,100,82,-8,93,94,100,92,23,99,64,29,91,96,-63,50,64,25,-49,100,70,94,-82,-24,-12,55,71,-40,-17,99,100,82,-40,67,73,70,68,-27,-21,99,-3,8,51,-69,95,-31,42,59,33,-59,1,22,-16,63,92,88,100,91,22,95,77,74,4,10,58,69,26,-62,99,-44,-87,63,100,59,-74,22,-41,-44,20,33,-39,-63,-91,82,9,11,22,80,-98,-29,82,98,-49,100,32,43,-89,94,100,-88,-8,-45,-22,-74,63,70,-51,100,79,70,-30,100,-83,6,-27,82,-39,26,75,94,72,-55,96,-3,82,74,-21,-71,22,-67,39,-67,-96,84,80,12,66,-47,85,61,66,53,98,16,99,61,46,17,-86,4,65,77,69,83,-75,96,21,-5,-1,-35,88,67,51,87,92,69,64,80,64,33,87,-34,-99,91,5,-41,-83,-20,-37,81,-94,54,85,41,4,7,56,80,-31,9,54,80,97,-81,88,34,92,90,-38,4,29,-39,36,95,11,100,-7,100,61,91,100,-6,68,79,48,-46,15,79,17,17,100,-19,68,99,97,49,90,35,75,-76,53,57,0,-63,76,-39,43,65,23,99,85,-98,-21,55,-93,81,-40,100,-89,93,-54,100,99,-41,-23,100,97,100,98,63,-31,82,93,96,78,-21,93,95,74,12,72,96,100,100,19,88,11,71,75,93,52,84,-11,84,87,61,100,96,42,85,83,67,100,38,59,70,77,98,69,66,-59,100,79,7,37,93,63,100,-4,-29,100,27,88,94,-58,65,93,20,-54,-92,83,71,37,11,-18,67,24,67,42,72,54,-70,61,99,100,100,96,-43,60,-15,96,-29,69,-60,-34,-64,96,21,98,-65,100,-1,-71,80,99,71,0,78,92,-27,21,69,-82,55,-21,75,49,54,32,30,100,10,72,50,22,74,-42,-90,-86,89,79,57,-35,100,-79,99,20,100,97,97,41,53,67,-92,76,-98,94,99,44,15,100,84,53,24,98,99,6,22,-54,-6,100,-98,-72,9,55,95,51,60,-91,97,83,-7,18,-99,91,-58,56,64,-36,67,58,-94,74,85,100,97,40,94,-55,51,59,-65,96,34,-29,-29,91,-10,92,-13,13,-29,93,94,86,-81,27,100,-81,-56,76,-6,99,28,48,-82,93,-52,-22,21,38,99,69,55,62,70,-38,100,-64,36,78,98,-70,94,19,100,74,-29,82,-92,-94,99,-8,85,-19,79,73,50,53,66,62,84,97,93,71,2,2,27,75,39,-41,98,96,-16,-68,47,36,-7,27,-43,69,46,73,-80,72,-94,100,100,-14,-61,98,96,26,87,85,-66,-16,56,100,66,-65,80,-26,46,35,-10,95,-65,46,16,81,60,-19,-16,-15,35,62,32,-81,94,19,94,99,37,-98,82,56,47,20,-55,-32,37,92,52,80,-16,100,-9,84,100,56,-59,44,37,-32,87,91,80,55,-94,64,27,9,-91,34,22,77,50,6,34,96,100,0,96,78,33,81,99,42,88,-61,63,-39,-4,64,55,77,60,-77,88,87,-45,99,21,-79,88,52,36,100,94,65,79,98,94,92,24,87,18,-22,3,87,-77,-61,48,-20,100,-52,-22,-31,67,78,-26,-46,53,-42,79,-89,83,80,-38,91,99,-59,82,-5,-69,94,99,46,-10,-79,5,-69,77,-50,54,-8,79,80,14,-9,-12,90,27,100,-68,46,98,-86,100,95,85,36,-13,35,93,-11,-72,-31,-28,88,-1,50,89,-33,13,-30,100,91,67,-73,76,65,-44,62,-15,-32,86,-36,43,79,29,95,14,98,86,-58,-90,-9,11,-8,100,80,98,94,100,-64,-96,99,77,-34,100,-67,-64,-42,83,48,97,78,76,54,79,65,-44,-87,79,23,98,89,84,10,49,64,-59,-60,54,35,-69,93,18,18,5,44,95,96,92,-64,33,-18,99,-76,43,7,-10,40,11,12,92,9,76,90,100,-5,100,-46,-71,98,-27,97,-78,74,-32,59,-14,87,99,99,95,-43,100,40,83,39,-42,-13,99,89,99,-30,100,-6,100,96,82,73,1,73,77,100,91,41,65,15,57,88,24,24,97,-27,85,-74,97,-13,100,88,79,99,35,-5,-13,-19,3,38,-82,5,66,13,52,-49,-86,100,100,91,66,-94,55,62,-31,-87,94,72,80,67,-1,29,71,98,19,78,82,-2,-45,79,92,-70,65,100,76,-37,96,97,94,-69,100,98,63,76,-97,74,15,4,100,38,70,3,-75,15,97,76,-71,-21,13,70,-82,54,67,55,43,-64,73,99,65,31,85,100,-27,-23,75,63,98,0,-48,-14,50,36,98,-34,99,99,62,29,-65,99,-32,13,73,41,81,-68,29,82,-50,1,7,100,-65,99,56,-2,25,52,-7,87,73,59,100,88,94,98,-32,89,95,33,87,96,38,9,18,52,41,66,-6,100,53,81,-3,100,-74,91,-50,-34,25,49,-3,-29,62,53,75,66,100,96,37,83,95,-65,94,72,76,36,84,48,99,86,-42,-32,46,56,-37,-77,68,-13,31,86,61,46,86,68,-88,91,-51,57,-90,-74,82,66,100,92,81,-96,17,57,-45,-48,94,-26,-21,61,48,48,97,-84,-46,-8,41,38,-29,81,36,-25,97,90,56,88,86,71,60,-75,-41,64,-13,-24,65,-11,97,-81,30,44,-8,76,97,34,97,-13,-41,-82,11,-17,94,89,13,97,94,99,34,92,-11,-81,99,-67,39,48,48,100,100,40,0,12,98,29,-75,82,83,-78,23,4,2,94,-68,96,86,71,26,-67,43,64,61,9,47,20,64,-61,93,95,100,-1,92,48,1,-82,97,67,39,69,40,28,20,88,29,29,53,-75,0,-84,-47,88,95,96,2,36,-87,98,60,-73,28,100,94,-22,62,-25,-31,14,-29,41,-51,83,8,100,-46,20,-22,30,83,76,-84,-58,-57,88,98,100,96,94,100,88,-71,-43,78,-80,98,100,55,81,47,29,99,-73,2,-11,31,64,94,11,96,8,-6,-72,47,-2,99,-22,65,48,-21,73,40,0,32,-19,-27,18,-57,-72,95,85,14,-64,79,89,99,87,66,3,42,-88,-86,-3,28,98,78,-6,-72,71,97,7,98,-43,81,-89,38,-63,12,48,-68,-24,49,-64,96,24,-59,34,98,94,-68,75,-78,79,-86,63,67,-79,43,76,83,44,1,27,-2,-42,-9,52,99,44,46,-15,-57,90,-81,57,100,54,93,77,87,-40,99,93,-47,77,35,99,-27,85,82,-9,95,100,38,-43,-92,-80,81,97,50,83,-19,-4,-40,-32,-89,51,0,100,-52,59,16,98,-89,80,-8,77,58,53,84,-67,99,0,53,-25,-72,88,92,88,100,-52,76,-6,-25,55,46,100,-53,76,61,99,84,2,-26,97,-72,35,-53,52,82,92,86,86,100,-35,79,-5,-84,-93,-43,13,99,-13,-67,100,78,4,100,67,-44,-65,94,-88,92,60,48,88,-47,-96,56,89,-43,100,89,97,-23,-26,91,-98,100,-36,98,36,100,100,-61,-96,94,-5,23,-97,84,23,52,-3,-29,44,99,76,-58,2,-78,-63,97,4,87,4,98,98,-49,59,65,3,-3,8,-27,-12,76,59,100,-84,-45,-96,78,-8,-56,-87,-37,69,18,88,87,-82,43,21,99,-64,0,-68,66,-68,-79,74,-98,59,-74,97,64,93,-57,10,5,64,-67,-1,2,-33,83,78,98,41,-73,48,70,62,98,54,92,53,88,100,100,97,78,79,60,-63,-59,-59,20,100,96,98,60,21,87,-11,-8,52,-44,-97,84,93,97,73,78,-52,90,-53,-6,-60,99,83,-50,-44,62,40,34,98,97,81,-61,40,59,42,-5,13,64,72,0,56,-59,49,2,96,99,100,81,-24,51,93,-18,-74,72,93,58,-80,-40,90,-52,-84,72,100,7,-31,-40,92,-98,43,92,84,69,-21,90,-66,3,100,17,97,17,21,97,-4,-72,-9,99,25,100,-94,93,79,72,-47,28,97,-77,15,96,65,-72,-30,-64,61,-54,84,13,100,100,37,58,58,-47,100,-18,-10,100,-94,-39,68,100,80,72,54,-13,-46,83,74,-47,55,33,80,-25,69,100}
{81,29,62,-4,94,19,65,-25,-89,100,50,39,-89,88,73,89,90,-12,51,-45,90,15,-58,100,-75,-43,58,80,-47,98,0,93,86,11,85,0,-12,46,-92,-2,100,50,100,56,93,94,77,82,28,88,-51,80,56,84,78,85,87,-28,100,45,98,31,-88,100,86,61,5,-78,46,100,41,39,-60,30,84,-63,97,29,100,91,95,28,53,32,94,85,-25,74,99,33,51,45,-16,93,-38,7,-23,80,-72,85,-66,75,-12,44,63,-50,100,55,16,98,23,82,88,82,90,-10,77,-4,99,-54,-76,-20,99,87,-67,13,91,53,-94,-27,79,-50,40,97,91,4,96,61,51,98,99,94,40,86,-2,-79,96,47,93,31,19,97,29,5,100,-85,99,100,67,11,96,-23,75,95,98,53,50,99,72,21,83,72,-67,57,51,10,-80,96,94,-64,16,88,-56,-99,99,30,99,95,62,-9,62,45,74,95,-40,91,62,86,94,96,-41,-23,55,100,3,81,90,17,93,-13,-74,98,100,75,95,-72,-7,91,92,-43,65,55,24,-24,66,26,56,97,-34,57,80,61,81,60,-51,-62,96,43,-48,-63,99,86,-51,27,-94,-70,-2,87,46,48,60,-60,68,-55,59,92,100,23,35,-47,27,-76,96,56,15,-1,29,-53,37,62,83,-83,50,45,10,29,-20,15,-78,-17,-11,25,90,-35,-17,100,-1,64,96,-48,98,88,100,69,-65,-81,100,-41,-77,82,53,98,-95,29,45,16,-55,28,14,39,-95,63,-40,97,1,1,94,68,-16,100,-51,4,-62,89,80,29,99,95,61,96,71,41,34,-78,-58,21,-40,91,-18,73,24,-14,51,46,50,25,49,71,99,100,93,98,98,100,92,65,-87,-36,-3,13,70,98,-70,-24,-14,66,7,-45,92,7,57,100,77,23,14,-41,99,81,12,-66,55,-23,14,55,-81,84,72,-19,70,29,91,95,-74,-17,10,97,22,98,86,84,79,98,77,68,67,99,52,81,97,94,-28,86,-87,84,-86,-66,-81,-52,-81,6,3,18,97,-7,-58,85,21,-63,99,100,61,12,-44,100,18,-17,-11,93,71,-13,75,99,34,85,-95,38,63,99,-69,33,-51,89,-33,99,75,93,76,-47,-25,88,87,100,-79,96,5,-13,73,22,75,100,-53,-69,10,73,71,-46,74,83,54,-54,-21,56,-86,11,-30,-98,32,-34,70,-59,63,-80,31,3,26,77,30,23,68,-68,88,-28,4,-30,33,43,84,66,100,89,50,96,-20,-74,-13,93,61,-85,-66,91,99,85,2,53,83,68,-55,55,-63,-47,-53,73,8,100,100,94,-20,84,91,28,96,-44,-69,66,-58,-91,67,-90,100,93,-21,48,-10,100,67,70,-94,62,46,-69,15,65,-36,96,34,72,97,68,100,-11,69,91,88,93,34,100,47,-28,100,68,25,10,98,-21,73,80,97,-25,40,12,29,-68,-41,93,100,-11,86,86,-97,64,82,-84,100,65,-45,98,81,6,69,28,94,27,100,24,-23,2,61,87,49,87,81,89,7,41,-93,60,87,98,63,96,61,97,99,14,69,92,93,25,-34,11,-22,21,43,92,-37,91,94,53,-58,19,-25,-52,65,10,75,-87,-74,49,62,100,80,3,57,-40,100,89,3,99,88,49,-7,100,-55,50,100,75,-40,26,91,100,81,81,3,39,47,99,-64,-62,-69,12,55,-55,94,45,10,97,-32,100,-46,100,100,77,-95,9,47,-17,100,-85,68,100,64,75,53,95,59,21,29,-4,81,76,-42,66,100,89,100,-74,97,-58,87,-6,100,9,99,41,65,57,100,3,-26,90,14,68,69,87,98,91,97,12,94,-26,55,28,-43,-40,-31,82,51,100,73,36,9,86,40,-22,90,-36,27,99,22,73,74,66,98,-60,60,88,-21,-97,94,44,9,63,10,63,99,80,24,94,94,96,0,-13,49,9,91,-71,17,-36,-86,-39,59,-83,60,-38,48,100,49,3,89,97,84,-12,99,100,82,27,-45,54,79,56,-99,87,-8,-86,95,64,18,60,98,100,98,20,21,82,-5,97,-55,-21,84,86,-44,83,66,100,-47,18,-43,26,-13,78,31,90,-68,-93,96,6,95,-55,-85,10,46,-57,62,52,-98,-6,76,-25,-54,95,-5,28,75,89,96,94,100,100,99,23,72,-12,-96,100,-75,25,-18,12,55,100,-33,80,18,84,100,99,80,99,7,-62,70,-41,32,94,-50,91,92,100,37,79,29,-13,100,97,62,43,86,60,-30,59,97,26,50,88,95,97,34,35,-10,100,78,96,79,96,65,33,99,21,79,-61,92,7,59,47,-58,75,-25,-29,-38,68,64,91,97,98,61,73,-87,83,100,-14,64,8,70,97,-17,85,0,-27,-21,-36,82,97,97,48,91,35,99,-72,-10,52,-63,-40,44,-7,53,54,-50,-57,26,-10,-65,67,50,77,-70,-28,91,-21,86,100,32,85,85,-54,92,66,96,2,48,58,-75,-41,97,16,-22,-14,13,-42,-12,3,96,-79,82,-53,88,31,-12,85,89,89,-77,70,-74,-78,76,90,67,95,10,100,60,80,75,99,-5,23,-60,49,97,67,100,97,99,40,-75,-81,51,36,63,-41,83,84,59,68,81,-55,73,53,67,-91,97,34,2,31,-88,96,-57,100,94,55,87,-24,-79,-61,-16,88,51,-90,79,33,41,92,-23,-16,21,98,-16,97,100,-26,50,99,-10,-37,-50,90,34,66,37,73,81,54,60,57,-79,88,-6,-90,86,94,100,-51,95,100,65,91,-19,-58,29,-28,97,-68,-12,59,-31,-61,-62,42,-86,-87,73,8,70,-83,61,36,67,52,22,87,-86,80,97,5,22,17,-22,22,78,74,65,47,92,78,75,-50,91,16,-63,-31,85,-77,-33,17,93,51,-94,-35,-79,23,95,-73,-31,50,100,23,42,96,95,78,-35,40,78,-84,80,34,76,96,97,91,93,84,17,95,-15,81,-17,20,8,-44,-36,80,72,-90,-69,81,22,98,100,34,8,82,-92,85,59,-24,98,-19,62,-11,100,-1,34,79,99,100,98,-66,97,-68,99,21,13,96,92,-3,-53,96,100,82,85,57,46,42,95,-48,20,-12,95,49,94,56,-17,88,-76,-51,34,12,-25,-71,67,95,99,87,76,-84,93,91,32,-50,100,99,93,23,19,-42,100,100,60,100,51,-49,70,42,79,98,100,99,47,84,-82,60,100,100,47,-80,85,12,42,-74,72,28,72,68,46,99,51,-15,60,99,57,-73,60,-22,-9,-46,86,79,54,78,84,-49,65,-22,81,-51,100,86,-16,98,70,31,76,-54,61,-34,100,54,92,-25,18,81,5,11,-8,27,4,43,-46,86,94,77,95,-94,68,88,88,36,92,20,-2,74,80,72,-87,-93,91,79,100,66,-32,-53,26,10,78,39,-5,-71,17,8,90,-15,-13,24,58,100,59,79,48,99,-56,99,23,100,97,79,-69,37,62,69,97,80,-76,99,-25,0,-30,77,100,18,81,67,-55,88,68,94,-43,55,4,-74,-25,-47,-34,87,-3,94,-50,-87,92,56,100,82,83,57,38,27,-92,2,-74,-44,65,82,74,96,67,85,-80,60,100,13,89,99,86,21,42,23,64,-89,100,89,52,-62,-24,10,-90,94,98,-83,56,98,59,-41,16,12,75,97,60,87,96,59,0,35,-73,19,59,52,60,100,100,94,82,21,2,0,83,83,-8,71,-39,62,54,89,-21,97,100,44,-37,92,-74,65,93,86,54,100,84,46,92,94,93,80,-19,63,-83,28,-55,100,98,94,-82,73,78,-49,-34,97,-79,100,-43,-34,-9,-46,42,100,28,9,58,-91,-3,-78,-91,28,85,32,0,100,90,91,85,93,94,-58,-39,-22,66,48,-18,-22,-59,-13,89,-58,99,57,64,-72,94,97,-18,76,-87,100,61,12,-73,97,51,-12,71,99,0,2,50,100,14,-63,93,74,84,49,-69,22,87,97,-40,-47,92,93,70,-67,55,4,-38,-19,93,84,91,97,-69,85,77,65,97,2,98,90,84,95,67,43,72,18,61,-68,96,-7,100,99,95,94,-44,28,2,55,98,-48,-32,0,68,76,-44,65,74,30,43,38,91,-70,-79,-57,-91,100,-24,56,-96,76,-81,-47,97,68,-7,-2,94,-2,-96,67,-47,84,94,100,34,98,59,-81,96,15,-93,6,32,-64,94,79,-59,3,-59,75,66,9,79,-53,-48,14,90,32,100,8,-88,99,-11,-32,-87,100,51,29,19,49,100,84,100,6,83,-28,96,-69,88,68,-50,91,66,32,32,-93,-54,5,-31,84,77,100,92,-63,-51,-33,60,99,-2,87,-4,-27,38,-88,90,6,19,-46,97,-23,28,39,99,98,89,-24,100,100,100,93,2,-91,100,4,75,95,15,68,42,-5,-82,11,69,100,88,73,99,-79,87,100,90,48,40,-25,-42,87,-7,65,33,42,-16,-5,10,-10,15,-92,49,53,99,-8,99,-66,3,64,-64,-12,28,-94,99,-5,17,85,62,96,37,-83,97,97,52,19,64,96,7,-84,-16,100,52,92,-46,64,98,20,79,-83,100,57,47,50,75,100,99,71,-8,96,-50,54,100,83,-87,-54,62,48,86,100,41,88,88,57,-61,100,38,73,58,69,-39,39,-78,45,95,78,100,-15,-39,-6,-65,41,87,41,-15,-81,11,100,50,97,38,-77,76,71,-57,0,-29,-75,-50,6,52,-69,67,100,80,-61,61,100,-3,48,-70,17,98,-37,-3,72,89,16,31,53,21,100,100,-88,-8,20,76,-26,40,-2,49,99,57,100,65,100,-64,63,-14,99,100,-3,-33,-72,77,99,-13,100,-21,8,100,63,100,16,5,95,16,100,-95,36,-67,21,80,83,-86,100,77,97,100,-22,-26,94,59,17,89,69,89,-18,51,-47,58,98,82,100,11,59,34,-97,90,-25,-22,66,63,57,98,-63,19,31,44,-61,3,-60,92,-62,-33,39,-7,87,98,74,89,-95,55,84,79,100,-83,-46,72,98,-75,77,35,87,-74,100,-43,44,98,-54,85,77,100,-17,43,-51,100,97,39,3,100,30,95,97,-5,59,98,45,-34,12,-40,37,-91,99,43,-20,75,-1,-74,92,86,-28,99,78,-19,64,61,40,79,97,-7,-17,86,17,76,44,18,-37,-9,82,-52,0,22,-89,-72,-34,-62,-60,-28,16,-76,100,22,17,95,66,84,92,97,94,98,87,62,61,99,-18,100,81,86,-14,39,92,-76,7,70,90,19,90,-73,48,-29,8,65,-72,99,-72,80,-48,37,91,100,-88,-52,72,32,100,54,100,93,-67,22,93,45,-17,-22,82,99,89,71,11,97,56,-74,-62,99,100,-64,57,-51,-89,21,98,2,36,-29,-44,14,-9,49,49,99,-62,89,69,-71,94,99,16,53,100,89,93,-19,-32,39,81,96,-83,-51,-9,100,27,96,100,95,-8,-28,89,-40,39,23,73,50,-79,100,-83,88,66,-12,-29,98,96,-13,-38,46,88,-62,-22,-88,90,-21,59,79,-92,80,100,94,79,-18,95,79,78,69,10,-50,98,78,-75,73,3,87,-3,91,100,-34,98,48,-51,74,93,-73,47,97,67,35,-3,-70,91,100,60,97,45,-86,95,62,100,-28,71,80,73,-75,97,39,78,98,100,-40,-50,50,94,100,-62,35,39,98,34,-4,97,-14,-63,55,-86,24,-34,100,100,38,6,-49,75,52,-99,100,20,-74,-89,1,53,98,92,70,88,29,65,-88,29,-20,64,89,-27,92,75,-44,96,88,-48,43,58,91,-64,40,77,38,93,92,99,78,-66,63,-45,61,-47,-65,82,93,77,74,100,50,38,18,84,97,98,26,18,20,13,94,-91,94,63,37,37,48,91,75,-36,-32,81,92,53,97,15,25,78,-70,41,100,75,-7,52,89,84,-81,60,-90,4,51,35,76,96,61,74,81,2,-85,18,61,94,86,81,-18,71,100,79,98,95,87,29,59,98,-60,-28,90,-35,100,92,-57,39,65,0,-17,79,60,94,18,15,-5,98,-89,45,58,71,82,89,-85,45,52,10,-71,56,22,48,19,64,-66,-50,72,5,94,91,-61,31,23,50,59,100,-57,45,19,87,-86,74,91,100,94,-35,71,98,97,91,-66,60,-12,-66,86,85,81,99,86,-88,100,76,35,100,-72,71,87,62,99,-69}
{20,95,1,36,77,8,1,10,3,23,16,8,38,4,1,35,8,1,59,64,17,5,30,9,36,5,1,34,1,50,10,7,2,55,2,1,5,1,3,1,3,4,64,2,3,59,1,35,3,7,16,37,2,2,8,11,4,25,60,1,45,76,6,7,23,63,16,55,9,5,2,1,1,23,81,53,82,8,39,2,3,3,3,41,6,42,15,4,7,32,4,12,5,38,86,1,7,7,17,53,61,1,5,5,1,2,4,19,9,1,7,18,71,2,51,6,45,29,2,49,2,17,2,20,5,9,24,9,21,9,2,22,2,6,2,40,3,25,1,10,32,2,4,27,15,12,19,8,23,3,10,1,34,96,12,2,1,72,34,6,75,1,5,4,20,62,21,2,6,1,6,1,10,84,1,6,2,11,80,15,1,2,2,31,14,10,28,9,25,57,65,63,18,65,5,1,9,2,11,34,7,5,7,49,1,85,15,4,11,5,11,19,4,46,3,55,92,9,2,3,14,3,4,3,47,19,88,69,39,76,5,4,88,2,13,22,16,34,7,7,28,72,1,13,8,1,16,30,21,34,1,1,1,43,73,12,6,33,1,11,2,17,19,69,6,46,1,11,1,65,89,35,89,26,3,6,26,4,28,2,2,51,47,80,3,27,1,26,5,2,20,3,6,20,60,24,74,16,19,8,1,4,68,42,8,37,2,13,2,18,19,41,31,5,27,86,7,43,34,24,4,87,1,1,17,36,5,54,84,8,6,55,28,1,12,23,12,2,2,7,8,2,1,1,1,24,4,4,4,53,9,3,13,4,11,11,3,21,75,1,35,4,1,61,2,2,6,59,3,13,5,2,4,10,95,44,1,45,28,30,22,1,23,6,45,25,2,3,37,41,80,2,6,55,33,2,11,1,2,2,1,54,1,19,1,13,1,41,32,15,1,59,7,1,24,19,67,7,29,28,4,18,31,19,52,78,2,1,1,32,28,16,32,17,92,44,17,1,41,81,10,1,8,47,31,9,5,96,1,3,2,1,22,50,1,75,5,54,1,6,2,6,19,1,10,2,31,4,8,46,40,1,70,1,1,1,6,1,1,52,1,10,12,4,12,1,2,43,1,14,1,5,4,26,30,86,19,2,1,1,2,42,89,1,1,2,9,3,14,6,1,5,42,1,1,26,1,72,6,49,3,3,13,1,4,26,81,26,2,32,63,25,48,60,6,18,1,1,2,2,27,4,58,42,3,1,14,9,8,17,66,3,37,73,1,14,87,5,10,5,22,2,1,3,2,81,2,2,33,32,26,68,26,16,78,9,26,4,6,30,2,52,1,73,2,32,4,1,59,2,4,25,30,13,30,5,2,52,35,3,45,57,3,20,4,11,71,17,9,47,74,15,51,3,14,69,48,1,20,15,7,5,9,1,2,2,2,14,3,19,2,22,1,3,17,1,57,3,31,29,3,4,1,19,2,2,43,42,3,1,3,2,1,9,5,65,58,14,5,17,1,1,78,16,27,23,2,9,2,28,2,1,8,2,5,14,5,61,73,23,62,4,55,15,2,13,13,7,26,4,25,20,26,3,45,1,16,4,5,18,32,29,9,5,9,1,93,2,2,96,1,1,24,5,1,87,1,3,5,14,30,32,53,43,73,54,2,10,37,10,2,4,1,2,19,66,52,11,5,4,3,73,1,14,27,5,2,15,1,1,5,34,26,2,88,1,8,2,3,95,1,9,91,30,12,14,5,43,2,90,13,27,11,86,27,72,1,63,61,13,2,6,4,49,28,94,10,74,4,23,1,2,3,23,47,17,1,1,24,8,20,6,9,2,83,3,2,3,76,45,46,33,28,1,4,2,2,18,4,6,3,35,2,88,5,1,9,1,21,6,50,3,2,8,25,46,16,2,6,1,2,2,56,1,1,44,1,1,1,86,57,48,1,38,71,79,2,52,5,1,6,92,1,44,65,6,3,2,38,1,23,10,24,8,66,51,2,16,43,4,6,58,62,2,1,2,53,14,44,3,1,1,6,36,1,78,13,2,79,10,14,94,2,41,17,3,38,35,2,5,26,3,29,1,1,34,4,3,11,4,1,56,37,53,36,96,2,5,5,1,14,16,15,66,1,6,3,80,13,20,11,40,6,28,6,4,81,37,38,10,4,86,10,48,3,21,15,1,20,9,4,2,30,20,66,1,1,39,12,23,89,33,4,36,3,12,16,7,19,24,17,71,23,14,48,23,67,10,8,2,1,2,1,39,23,5,5,10,2,85,30,34,1,4,37,8,78,2,47,4,69,1,91,2,14,2,68,1,1,20,2,17,2,7,3,1,9,9,1,1,1,63,2,1,11,2,4,8,4,10,17,10,2,32,3,2,1,3,43,3,22,43,21,10,75,7,4,30,7,5,1,21,29,8,30,2,3,45,1,2,24,1,8,4,15,56,5,11,24,33,32,80,1,45,1,2,4,19,13,1,33,82,3,1,1,6,26,17,10,21,60,11,90,16,1,4,1,20,9,74,52,4,1,9,2,8,2,3,26,22,34,25,7,67,61,2,15,37,79,1,2,6,1,1,11,2,83,23,3,1,23,1,1,43,9,10,35,14,7,4,21,16,4,5,7,1,55,14,8,8,10,2,1,45,1,23,77,15,25,2,64,1,3,15,1,37,22,1,1,7,3,13,34,8,14,1,1,1,9,28,1,77,55,42,23,46,29,27,1,4,6,7,1,10,1,1,4,33,1,3,8,4,51,97,2,85,5,6,63,8,7,4,2,9,3,47,5,14,1,1,44,69,24,37,4,1,1,48,15,1,13,14,1,5,1,31,41,15,52,20,1,5,1,56,2,5,7,7,7,98,30,5,1,14,1,5,17,42,1,24,53,12,5,80,20,37,12,13,5,42,29,76,1,14,1,22,13,13,6,18,5,12,31,2,2,1,83,31,14,7,4,17,35,2,1,94,2,1,5,20,1,15,5,28,70,23,11,49,2,7,26,1,1,2,8,6,83,1,1,78,60,3,1,9,23,1,5,3,1,12,3,28,3,2,12,9,31,3,87,27,35,60,31,4,3,11,2,55,45,3,8,66,6,2,1,1,41,11,11,94,49,16,2,4,9,1,2,36,39,1,23,9,18,27,8,11,3,9,7,8,24,1,1,1,42,1,69,1,23,27,2,86,47,5,41,6,25,5,9,4,14,2,21,1,61,1,2,9,1,48,42,1,29,5,1,1,3,1,1,2,49,1,2,23,14,2,14,1,43,2,3,12,3,1,2,2,33,12,59,3,1,4,1,5,11,3,8,95,21,22,15,2,37,11,2,32,25,12,43,13,7,8,12,3,5,1,1,59,1,40,6,3,12,35,7,1,7,21,34,31,15,13,16,3,1,15,17,12,1,4,2,94,49,94,3,40,16,61,3,52,1,4,3,3,1,26,2,1,3,8,52,8,2,2,1,3,1,53,3,1,1,9,4,4,4,18,18,56,1,1,3,19,22,42,7,4,23,85,6,26,1,2,1,8,23,33,97,2,2,10,6,4,4,1,50,11,10,55,1,5,55,3,1,14,7,93,15,3,3,30,70,2,6,2,1,5,21,44,33,31,1,16,55,2,5,69,8,16,5,13,3,85,3,14,7,2,8,27,6,58,9,41,83,2,13,1,1,4,2,10,32,21,90,63,62,52,44,17,5,41,1,84,9,1,2,8,6,39,1,4,3,1,6,91,2,17,4,5,1,25,3,7,2,23,33,24,8,79,51,8,1,3,1,74,2,46,46,2,3,9,29,2,1,6,5,56,1,2,29,1,1,78,88,50,6,2,92,1,43,2,17,45,1,35,2,11,58,2,18,32,34,1,33,10,18,1,3,53,5,25,5,10,11,13,1,29,58,44,20,9,2,18,2,60,8,51,16,26,1,1,9,5,26,23,9,7,24,20,1,4,81,8,10,51,41,13,12,10,1,24,8,1,63,3,13,5,25,1,5,5,54,3,46,1,10,1,3,6,50,14,18,1,75,14,1,7,13,95,1,27,13,7,2,1,12,1,2,21,69,15,10,19,2,3,43,18,10,73,12,15,5,14,3,3,50,1,1,3,10,34,96,2,6,30,14,48,14,93,7,3,11,91,16,3,85,1,23,68,32,8,1,85,4,8,10,1,3,83,3,7,4,47,50,2,3,2,61,1,1,7,6,3,9,3,7,17,71,4,7,2,1,3,36,1,1,2,2,3,15,16,1,2,50,7,2,1,19,2,10,34,17,83,1,4,18,3,1,5,2,1,32,9,88,19,1,32,14,1,3,4,1,1,5,46,18,34,97,1,37,2,2,3,55,1,53,16,11,1,91,1,22,1,1,2,34,14,2,2,54,5,1,12,3,6,11,8,12,28,2,1,54,4,18,1,36,13,28,6,2,1,46,12,76,1,5,5,23,57,43,2,21,2,60,37,4,6,4,3,34,1,56,25,4,41,41,52,11,19,10,8,9,24,78,11,3,1,1,2,2,9,1,2,1,1,2,27,1,65,5,16,1,46,38,25,6,7,28,7,9,39,35,1,4,83,7,52,2,6,30,7,1,1,50,2,1,82,68,5,17,78,52,1,80,25,10,21,1,7,1,5,10,21,2,53,8,81,7,23,32,50,48,13,1,3,5,87,7,96,6,55,6,52,4,1,93,1,8,21,7,1,1,51,8,1,4,18,9,19,22,80,21,9,2,74,23,92,85,3,1,42,44,4,96,32,31,92,1,85,43,21,5,18,56,2,77,33,1,9,51,79,1,2,1,22,32,77,26,22,6,6,2,5,16,1,4,2,1,23,3,13,66,1,46,66,10,14,5,8,2,95,7,1,84,8,1,82,4,1,1,7,29,2,60,3,1,10,16,1,37,1,13,19,23,3,7,81,25,89,3,6,5,1,1,45,1,32,10,4,66,11,41,1,6,26,4,2,9,1,18,48,20,1,3,7,10,2,16,4,63,4,15,1,83,24,28,92,7,6,3,12,1,10,3,74,14,2,28,69,3,1,5,1,1,19,11,39,2,2,67,41,1,1,40,47,47,84,3,32,15,40,25,1,5,12,40,56,17,55,21,96,7,1,21,40,3,2,31,8,5,15,26,16,89,16,20,7,5,8,5,6,1,14,2,66,34,7,83,3,94,13,58,4,4,5,9,61,1,2,72,22,41,28,1,5,12,28,13,1,65,2,31,35,10,23,1,34,4,22,2,2,3,1,1,12,23,36,1,59,29,3,7,1,9,36,18,56,17,3,1,2,3,22,8,1,94,1,1,18,33,3,9,5,13,92,2,59,24,1,3,14,80,1,93,19,6,2,7,14,56,84,40,7,24,1,47,32,99,2,3,7,2,6,3,60,73,89,15,1,14,6,1,26,7,49,29,3,90,1,1,42,1,54,1,64,51,17,95,4,5,5,1,1,1,70,67,6,4,57,45,45,4,1,44,46,7,77,56,1,12,2,36,61,2,9,20,1,3,50,9,3,7,47,5,8,90,9,49,2,11,6,15,1,19,3,74,13,17,38,3,10,2,66,13,23,42,81,71,4,41,1,4,6,34,3,42,2,19,5,16,7,21,57,35,1,1,99,7,1,3,99,6,3,16,4,7,4,3,5,51,16,25,20,76,11,21,10,1,3,1,4}
Returns: 2.191414616376697E9
{13,93,14,7,63,9,77,77,95,27,80,76,87,15,91,12,14,37,58,26,48,81,31,39,79,97,11,85,67,15,57,64,54,42,68,99,20,18,88,58,60,76,73,43,63,54,27,72,89,93,33,43,95,27,28,39,77,51,73,14,31,68,83,5,100,27,55,34,46,22,38,86,86,47,28,13,12,94,80,63,65,53,19,27,40,72,56,65,94,68,70,30,13,67,2,81,27,67,92,57,39,9,6,21,25,61,97,78,91,8,33,14,19,42,2,81,7,62,74,92,69,71,48,85,56,62,7,39,93,97,58,3,95,53,83,65,48,17,28,16,84,18,71,42,94,46,44,34,29,15,20,39,65,48,38,39,57,80,30,12,39,33,54,44,67,73,44,38,76,38,70,16,92,28,95,25,55,35,6,44,72,44,58,12,47,50,9,47,21,19,21,44,3,62,92,58,47,8,57,100,27,38,87,28,46,84,52,92,74,15,6,32,83,93,41,80,4,27,54,73,41,68,44,52,66,52,13,25,78,26,9,79,90,19,2,43,47,59,3,40,31,2,91,42,60,7,6,73,78,86,97,35,96,62,100,1,16,92,19,49,87,46,64,39,28,87,72,92,35,64,3,79,50,22,37,26,48,20,87,8,30,70,26,62,82,47,77,12,48,53,43,4,42,96,39,63,98,99,81,77,76,82,12,98,50,41,78,45,61,73,62,37,29,66,49,90,65,81,19,90,77,80,35,1,40,91,11,63,4,29,57,21,80,27,37,58,28,7,59,12,29,55,15,19,58,36,77,71,56,56,28,81,85,100,75,91,14,34,46,21,74,68,21,42,37,29,82,9,67,37,6,43,70,67,30,21,60,75,34,18,19,45,89,52,88,62,14,77,65,48,52,46,51,35,55,61,88,47,43,36,64,5,34,43,86,16,10,42,90,93,84,65,93,74,9,94,28,2,35,67,25,28,59,63,29,30,99,25,10,99,13,20,87,77,69,13,84,31,13,61,13,17,94,60,48,19,2,55,93,27,45,41,39,20,24,23,93,95,66,59,37,26,23,39,56,58,100,88,23,1,25,11,8,31,15,77,64,30,78,95,62,32,86,49,73,25,59,42,100,15,95,46,94,73,95,80,49,67,57,87,88,43,51,79,6,26,87,55,31,78,71,64,71,37,75,30,53,25,88,59,75,35,14,27,67,2,36,81,33,37,10,5,81,95,28,28,59,84,76,68,77,25,85,7,8,45,67,59,15,40,23,23,39,100,37,26,92,28,41,5,21,43,98,15,48,30,70,48,19,84,26,7,24,24,69,99,28,40,47,16,100,7,72,7,54,32,87,6,69,73,34,25,50,52,78,3,23,95,34,28,54,37,47,99,62,41,12,94,3,89,38,84,55,78,65,43,5,19,36,45,5,57,29,46,89,94,100,30,100,84,13,58,85,37,19,48,54,2,70,9,84,88,44,69,69,55,11,82,91,33,80,36,77,4,10,48,72,69,14,8,31,20,52,47,49,49,25,95,64,64,11,28,98,21,14,45,34,41,75,82,55,80,30,17,22,81,47,53,50,69,88,16,43,78,88,80,85,9,10,10,8,15,91,31,65,50,28,28,29,19,86,20,36,64,34,19,55,51,30,14,72,29,68,29,91,26,21,84,45,63,62,7,34,94,48,53,44,27,12,66,27,54,62,26,36,85,23,48,8,66,28,39,96,1,46,75,26,84,3,34,35,19,20,83,24,39,29,59,97,31,79,64,28,24,67,48,26,53,79,83,94,69,79,29,15,58,69,24,90,25,55,71,72,28,9,81,20,61,39,53,86,33,88,31,23,71,90,34,70,38,29,6,100,37,95,49,14,16,59,88,42,83,10,54,77,96,91,84,81,40,9,7,91,83,38,45,76,85,51,47,71,38,69,52,99,34,2,16,53,86,68,63,100,99,80,35,82,9,54,25,56,45,98,16,52,23,78,57,28,99,25,1,51,70,6,85,92,98,98,23,69,52,53,82,17,85,46,53,71,94,17,26,91,88,16,79,38,25,48,3,40,26,4,20,46,91,29,6,77,53,41,76,12,65,76,99,73,17,77,64,39,3,63,68,54,87,70,2,42,54,40,57,45,7,70,27,34,44,5,71,31,41,58,64,98,74,34,99,1,46,72,87,83,11,97,76,88,73,40,31,98,56,91,98,35,92,4,55,81,26,94,52,33,85,79,53,88,77,6,29,30,46,23,77,11,58,24,35,93,6,76,5,23,72,93,6,70,44,10,81,22,80,3,7,1,68,4,1,100,91,31,58,59,76,12,24,80,99,65,28,21,24,18,37,90,72,34,85,11,66,75,91,53,19,46,86,57,52,79,3,32,58,11,60,51,73,26,82,60,87,81,4,11,15,51,21,16,26,59,6,81,57,47,64,61,65,49,58,20,3,17,57,26,68,35,22,60,65,99,9,16,83,37,64,40,18,71,57,84,82,64,80,48,86,37,86,73,23,60,62,17,58,25,56,43,9,31,77,69,17,76,49,29,84,81,77,98,38,89,12,86,86,3,53,32,2,49,82,29,72,1,82,28,7,70,10,73,45,41,63,70,91,10,27,25,79,51,21,93,1,48,98,91,20,33,24,43,58,36,81,82,84,38,53,47,2,62,84,61,13,25,6,56,43,75,72,42,36,10,45,80,23,77,75,37,59,73,99,38,65,81,2,26,71,71,86,76,96,66,68,68,50,85,28,42,37,9,70,12,4,4,59,11,4,63,84,53,65,96,50,3,72,95,64,39,53,58,21,38,97,37,67,51,48,19,82,15,84,83,34,82,46,39,50,15,58,44,3,98,99,41,23,68,71,54,25,65,51,59,1,19,57,82,23,66,19,92,7,4,11,90,5,42,95,95,21,2,53,38,22,33,56,53,48,34,22,47,41,9,7,6,79,32,81,42,55,2,7,43,14,74,49,61,75,93,40,57,55,85,89,91,55,15,31,45,93,38,8,60,51,64,30,100,41,8,61,7,26,35,6,8,93,53,54,11,36,31,26,69,5,39,91,46,63,11,5,89,30,33,15,78,93,59,61,25,61,9,37,49,38,11,13,72,48,72,44,4,54,63,91,19,8,79,33,44,17,45,59,28,33,99,35,15,38,35,72,1,74,74,81,84,48,49,2,47,53,44,64,44,71,39,19,49,25,56,89,46,72,66,14,15,97,77,92,69,51,44,84,48,82,79,6,56,10,77,29,68,37,54,83,90,21,20,27,83,6,92,97,83,73,41,89,78,87,28,99,100,77,74,8,84,82,27,4,51,45,80,51,27,92,82,4,5,88,58,65,87,78,29,64,27,90,73,93,9,5,16,38,36,55,100,17,44,11,71,3,27,33,91,81,18,3,55,10,14,75,17,52,51,63,11,87,91,67,46,36,73,87,19,58,1,51,54,42,24,31,42,53,80,29,86,62,16,15,11,25,4,2,2,34,96,13,78,96,49,5,91,70,54,27,62,6,70,22,33,86,55,27,27,35,29,6,25,69,78,5,99,9,34,34,27,61,8,76,6,31,89,67,84,48,15,18,74,84,49,1,15,74,92,34,49,96,21,25,2,30,67,100,3,73,80,27,100,98,95,89,49,38,82,11,56,14,84,24,78,24,78,11,13,18,39,93,90,11,75,26,26,84,9,3,85,21,5,2,34,53,68,87,23,92,82,37,48,17,74,80,93,91,61,97,51,13,93,21,26,65,36,45,31,48,63,57,55,14,45,45,87,37,50,47,8,40,48,78,69,45,18,6,73,15,21,91,60,57,11,19,96,64,66,59,3,25,25,24,75,62,28,30,20,46,8,52,72,80,95,97,94,93,32,60,64,42,80,97,6,94,9,97,89,72,48,50,38,23,54,96,72,42,19,69,90,65,11,76,31,55,61,18,85,49,6,1,88,13,61,3,38,82,81,26,62,65,29,1,20,11,24,28,91,36,84,85,58,99,12,6,18,75,14,88,30,6,16,93,55,69,19,17,63,91,40,15,81,22,75,14,33,92,100,94,63,100,80,11,25,36,57,74,96,64,67,47,11,100,66,18,91,77,95,28,45,19,96,14,81,34,60,47,86,1,37,74,2,51,77,15,1,21,14,28,74,35,31,43,4,75,47,28,4,87,97,94,31,36,42,38,65,34,74,91,71,37,11,59,28,90,96,47,84,68,35,16,72,85,86,54,89,69,29,13,64,7,100,51,1,57,82,24,9,62,62,54,44,7,65,86,14,36,75,14,76,89,33,6,88,17,79,49,99,28,73,97,11,10,81,53,41,31,70,3,12,48,82,84,33,4,89,95,53,96,67,80,23,52,97,21,10,91,51,65,88,44,73,57,94,60,70,30,43,65,83,8,56,22,89,9,65,8,20,15,61,55,50,89,72,63,17,5,36,90,77,13,22,16,15,75,25,67,30,74,32,66,17,93,96,48,52,5,25,12,66,70,94,92,72,11,61,71,48,14,34,25,50,9,100,41,70,100,66,66,61,56,12,10,2,93,79,87,82,91,36,71,63,11,98,23,19,22,30,3,85,29,13,51,68,27,94,26,5,51,38,17,30,55,46,36,55,95,79,77,99,44,64,76,46,78,76,63,3,99,60,17,79,97,31,18,67,83,23,25,24,35,53,41,27,24,47,66,41,45,70,47,14,42,51,60,51,81,90,23,83,42,35,85,63,92,21,41,61,36,41,3,28,92,75,65,40,77,14,51,77,71,6,48,41,33,69,18,45,9,76,19,5,29,25,1,13,9,43,100,20,20,58,23,10,67,4,7,64,96,71,36,44,37,48,19,30,28,2,59,72,62,100,20,71,84,6,13,30,76,64,61,69,99,84,60,62,6,84,77,29,73,51,59,36,21,93,64,32,15,52,83,33,12,19,9,25,79,89,76,45,95,56,22,6,50,96,39,19,76,37,5,51,67,87,65,32,14,49,68,83,6,71,80,87,83,85,78,77,58,88,39,54,5,32,88,55,63,31,96,18,10,25,97,16,93,43,56,87,49,19,30,13,4,12,56,74,61,64,40,41,85,5,46,77,72,91,65,36,73,8,69,93,82,30,10,85,31,62,55,52,56,18,22,83,92,16,84,71,28,82,74,3,16,41,75,36,5,100,87,66,17,67,10,81,97,66,60,17,65,40,4,25,31,16,75,44,56,17,78,66,19,99,88,12,2,37,87,67,92,96,59,80,15,40,21,70,16,11,48,29,45,26,82,12,47,98,86,28,22,69,95,56,7,2,14,99,12,32,13,50,70,12,32,80,69,44,19,53,98,67,13,76,69,47,47,29,76,60,58,50,30,6,59,81,8,29,19,16,78,51,58,65,9,33,99,8,2,99,25,24,77,45,11,50,98,56,10,20,40,20,56,52,21,20,14,68,19,17,50,4,75,22,35,80,30,73,19,43,5,72,73,88,51,74,22,14,93,10,25,1,95,62,93,59,59,70,97,9,71,68,100,87,14,6,19,53,44,75,61,26,22,46,52,3,7,33,73,56,73,68,9,31,23,97,39,64,69,10,39,67,17,54,96,85,69,63,33,67,16,42,80,7,54,11,68,39,64,11,97,65,6,14,90,6,67,58,59,42,11,48,90,94,37,29,17,59,28,40,48,87,54,89,13,20,90,86,30,72,48}
{93,6,41,15,10,70,81,80,11,67,85,64,23,74,92,75,83,39,78,62,83,23,43,24,20,1,78,59,59,65,95,83,67,1,18,20,68,23,14,3,99,17,59,55,15,56,79,91,12,92,9,28,70,54,38,92,32,38,98,15,58,57,55,15,59,94,24,96,51,16,34,64,5,9,93,90,74,51,98,52,12,60,33,89,79,61,78,84,43,39,50,39,44,5,22,55,91,68,58,59,97,49,39,11,43,27,91,30,75,44,42,35,1,93,91,69,71,93,32,77,42,43,28,67,28,18,72,55,66,50,92,79,69,27,16,58,74,93,63,80,1,42,100,61,70,49,46,20,7,59,14,19,71,31,50,52,16,22,4,96,77,20,5,18,32,52,82,65,46,60,88,8,49,52,41,55,49,58,82,25,78,85,90,59,24,78,79,38,76,2,79,18,42,33,35,88,48,45,60,40,57,16,3,86,58,77,9,29,6,16,10,23,74,98,12,19,78,20,74,67,34,63,84,56,60,79,58,38,5,90,70,66,49,20,7,59,68,44,52,89,70,1,21,52,68,30,72,81,43,53,61,12,90,16,16,20,100,58,93,67,63,100,47,53,22,63,1,39,100,56,75,68,74,13,45,32,27,49,89,1,44,59,32,26,62,97,4,83,4,86,31,61,33,13,94,12,73,52,50,19,62,63,12,88,31,38,49,54,54,19,12,49,17,48,69,29,55,100,39,9,28,20,91,52,72,15,44,64,63,21,63,19,79,68,30,39,25,44,48,11,45,81,57,76,46,36,88,8,54,40,45,92,93,16,98,6,12,77,57,60,8,63,10,53,50,48,55,88,40,93,51,46,77,58,62,98,5,36,19,51,43,43,65,31,78,3,85,34,8,30,44,37,90,95,53,20,31,6,24,15,100,84,27,23,26,86,69,15,46,85,98,99,48,61,71,25,22,91,29,27,11,59,6,94,3,37,7,24,35,49,59,69,42,19,96,27,94,74,34,52,97,91,92,27,6,3,11,95,60,97,99,22,69,16,11,93,15,25,31,14,70,82,70,51,15,94,45,90,83,85,56,16,87,4,51,53,56,5,65,25,85,99,37,83,54,74,80,89,58,46,32,54,88,42,80,24,2,14,75,37,71,39,37,95,6,12,75,60,62,14,38,38,29,16,65,15,8,87,17,79,46,98,2,16,74,42,80,45,60,37,61,62,32,50,65,66,77,67,15,60,54,4,72,92,72,9,12,100,20,90,46,80,13,73,83,94,45,48,99,25,1,35,48,27,70,80,20,36,60,30,97,70,93,10,87,95,78,13,67,60,24,18,84,32,78,69,47,53,82,82,11,9,81,91,67,84,81,20,7,9,82,43,69,14,72,95,40,57,52,85,65,41,27,45,39,23,38,23,11,89,91,45,58,87,26,11,77,25,44,97,14,72,89,30,75,61,28,35,21,57,27,91,81,24,53,61,24,43,81,71,70,27,78,67,2,28,77,68,32,58,25,10,92,12,21,12,51,73,88,35,60,42,69,1,69,67,24,59,7,62,27,37,59,38,58,84,2,36,60,65,72,1,25,80,67,55,19,63,51,90,38,62,69,44,16,25,11,57,57,60,79,28,94,36,37,81,85,38,14,34,86,29,42,12,32,36,69,31,50,76,94,30,15,15,5,29,31,61,99,7,87,54,49,97,87,14,100,70,9,5,19,72,70,24,31,32,15,20,92,60,61,65,36,26,26,7,61,66,92,76,37,57,18,69,65,87,14,5,14,66,57,40,73,62,79,96,41,63,35,21,72,73,56,81,70,75,92,80,75,23,98,10,72,19,100,66,56,49,27,19,79,99,35,56,84,34,3,37,78,66,78,29,1,45,1,68,47,21,16,45,74,90,4,3,48,35,25,61,6,74,85,48,12,4,65,25,11,23,50,74,69,84,24,18,55,66,49,27,26,61,77,40,33,20,78,51,86,62,54,64,49,21,49,4,57,96,38,3,95,71,72,90,5,92,28,54,52,23,93,21,49,74,47,24,68,6,90,82,89,85,66,52,84,63,92,78,23,57,93,78,4,68,6,60,6,69,37,24,35,23,48,88,32,74,35,86,47,72,14,62,67,54,34,62,25,71,42,23,45,54,28,49,16,2,49,22,14,2,23,93,82,24,48,100,97,94,59,85,30,94,69,22,98,44,21,11,70,10,48,67,66,88,26,25,14,50,55,64,10,1,48,91,34,6,77,25,14,91,31,10,33,49,74,12,1,43,9,38,94,72,68,45,52,52,13,49,17,82,55,43,55,58,50,11,56,59,23,29,76,72,87,73,15,84,32,78,47,62,46,77,72,22,87,61,23,32,39,52,29,96,3,22,59,13,58,48,17,95,53,1,98,53,19,16,93,12,43,71,82,72,24,48,20,79,56,72,19,20,85,26,16,73,49,42,70,58,25,53,100,91,16,92,39,38,51,55,81,31,33,69,86,64,74,76,70,19,56,97,82,58,91,23,7,65,37,10,93,58,90,14,34,50,74,99,52,26,31,37,55,72,16,34,48,41,93,39,61,97,91,53,66,7,14,85,18,1,24,13,30,1,72,64,49,95,51,50,52,36,47,35,38,70,77,91,76,20,94,35,61,5,1,15,75,36,12,91,9,21,24,64,51,72,74,12,60,80,15,37,23,68,73,53,17,59,83,31,23,77,82,72,11,44,5,1,24,45,42,32,56,31,89,63,79,51,24,100,79,29,75,56,31,80,36,69,82,91,14,37,39,5,51,97,97,29,62,80,23,2,98,14,50,93,94,92,14,40,39,85,38,5,15,83,82,95,10,100,85,85,25,43,58,99,9,30,42,15,67,8,87,16,64,84,31,26,68,29,71,7,8,47,56,95,43,71,85,29,35,84,37,97,27,8,93,70,30,40,28,52,61,91,73,24,97,77,30,44,34,90,46,64,7,17,15,25,70,70,60,48,59,96,14,14,1,22,72,80,28,37,41,54,75,62,42,15,30,92,54,14,85,96,13,64,36,37,72,5,12,79,54,46,8,88,99,76,25,32,91,4,54,89,40,13,94,100,41,68,5,97,81,37,79,62,34,25,80,40,87,85,19,14,94,53,80,47,48,22,41,99,92,17,23,72,53,14,47,59,16,20,28,50,88,56,59,13,6,80,98,59,85,51,29,6,54,65,60,89,74,62,32,76,68,3,64,34,97,95,21,29,49,62,50,50,3,95,3,28,27,50,32,55,37,37,41,25,61,95,67,67,64,68,35,8,93,94,96,90,21,22,7,22,14,53,75,14,83,9,91,3,85,44,49,80,65,66,25,29,12,58,21,11,16,3,76,65,76,31,22,43,80,90,58,82,69,64,87,77,10,74,6,45,80,81,98,49,77,12,42,30,24,75,36,93,7,57,26,95,40,49,60,28,27,50,83,16,62,47,12,17,23,93,54,86,59,40,3,58,26,91,2,98,11,2,41,10,74,26,86,98,27,89,90,81,32,64,64,62,65,26,90,6,66,26,10,23,91,34,69,5,89,79,43,80,73,84,19,1,36,3,96,37,27,37,29,31,31,77,91,64,43,14,91,85,64,55,90,89,52,10,24,57,76,43,29,49,29,39,80,86,26,2,73,60,33,82,30,23,93,24,35,88,29,59,38,65,26,61,46,38,45,71,77,23,64,15,79,74,59,61,52,23,61,1,63,58,20,2,8,59,15,53,31,58,43,8,67,52,72,37,91,65,43,25,11,66,50,75,24,19,80,49,99,2,25,14,30,40,47,79,89,71,44,82,96,11,24,2,7,97,80,18,44,46,52,60,90,32,42,70,79,66,42,64,66,57,87,86,64,41,94,33,84,9,20,69,72,84,89,92,88,74,68,41,100,6,8,44,97,9,56,48,52,62,54,9,48,100,36,18,16,47,5,84,90,68,48,22,86,25,24,83,66,78,91,28,28,6,89,47,100,8,56,30,67,90,28,32,81,89,50,5,54,49,77,39,16,27,90,20,47,28,90,2,86,50,67,93,92,63,61,88,33,67,10,93,16,67,58,62,61,14,79,14,51,24,62,1,28,17,88,67,55,89,58,88,58,30,34,78,1,88,40,15,14,88,71,88,42,67,11,56,90,7,62,76,90,36,91,8,27,23,8,70,44,96,75,14,67,31,19,10,73,55,91,97,80,89,84,78,40,68,57,84,42,86,67,8,2,66,38,95,51,94,10,39,48,37,45,26,100,39,42,82,39,90,38,55,47,87,22,3,80,26,12,35,57,14,50,59,24,65,89,76,94,91,42,19,91,32,40,11,4,39,46,65,63,90,8,2,2,8,40,71,67,68,14,46,59,86,49,80,80,33,55,63,61,61,62,33,2,98,38,93,67,68,41,39,84,59,2,27,10,13,59,70,15,18,21,54,2,46,95,19,95,23,97,93,38,21,81,68,55,29,82,45,24,85,88,53,93,80,80,86,55,60,74,10,48,45,31,82,34,21,51,45,25,67,81,98,97,88,36,73,33,8,65,39,86,76,94,7,27,100,83,31,1,82,85,85,34,32,37,38,95,87,76,91,17,35,58,86,15,14,81,87,24,45,43,6,100,79,42,58,92,53,72,54,78,96,57,65,31,76,90,53,32,55,13,26,97,8,67,54,29,64,9,88,28,31,69,34,26,31,41,60,7,95,99,67,96,35,98,9,69,10,8,27,44,85,6,49,73,85,67,25,7,1,98,75,5,25,51,85,44,49,1,15,79,74,93,95,81,100,71,5,51,48,92,16,52,23,35,13,72,9,89,10,48,14,81,68,34,66,45,34,87,26,37,62,96,19,81,4,40,51,27,35,83,62,76,34,89,66,79,68,100,24,17,92,11,56,37,33,9,6,58,41,95,58,93,80,52,56,30,49,42,3,58,64,24,75,100,84,21,48,11,33,25,50,90,40,58,15,17,36,50,71,88,42,94,95,97,26,91,51,10,47,37,66,82,54,65,84,9,15,89,53,5,91,86,91,35,44,34,11,85,22,45,43,83,67,8,15,29,92,81,77,91,75,90,99,52,6,34,12,77,98,79,55,77,12,27,58,19,75,63,11,90,12,17,75,28,82,84,28,33,84,7,99,58,96,42,88,85,20,20,72,51,36,14,78,52,96,57,27,27,76,77,76,58,35,11,19,53,57,51,96,35,39,98,97,49,10,1,61,24,91,28,73,29,88,74,87,46,45,33,18,71,69,62,29,17,76,10,92,71,57,100,89,99,50,65,4,29,21,49,10,17,15,56,36,55,33,38,100,88,58,69,93,14,93,33,49,37,58,80,59,40,65,89,57,99,28,84,73,77,43,86,56,24,39,1,46,44,40,52,23,51,55,72,91,30,67,36,92,4,39,28,41,43,18,77,30,25,86,83,66,2,19,85,27,54,15,80,20,30,83,25,19,21,19,97,79,78,71,70,35,12,40,97,52,6,79,76,46,6,45,68,74,90,74,85,64,17,99,90,8,36,63,45,89,84,68,38,30,9,67,40,41,85,2,81,58,27,29,37,3,63,69,67,53,67,86,98,54,11,57,82,14,76,67,23,92,40,51,28,28,96,24,28,61,20,55,65,62,41,83,50,28,84,23,7,96,91,84,51,87,27,11,66,41,78,50,64,78,41,69,81,94,88,88}
{96,45,60,27,88,13,5,34,80,83,27,55,2,18,70,77,46,37,83,2,34,69,30,37,56,51,54,21,48,45,87,67,7,92,86,67,37,42,5,21,19,90,42,8,85,79,4,98,48,70,79,76,21,47,52,52,91,62,55,74,99,65,57,38,78,16,40,1,60,23,99,20,70,79,30,47,43,18,51,79,94,74,82,3,73,17,100,78,9,15,35,60,37,16,50,87,55,44,67,2,7,56,68,64,51,65,11,25,99,23,19,51,37,16,34,14,60,64,82,35,65,11,45,94,27,62,59,72,10,31,86,100,96,75,11,85,28,48,30,58,3,23,85,67,99,26,82,69,96,83,13,81,23,7,56,24,58,25,3,6,66,6,87,4,2,88,50,78,70,41,83,41,53,2,33,54,68,99,36,40,95,82,80,50,76,7,50,99,26,59,25,68,49,41,48,57,72,32,66,1,27,16,66,76,46,40,23,80,2,34,54,33,49,1,50,100,86,72,33,64,44,63,25,43,62,46,82,10,68,62,62,86,41,83,54,34,46,80,86,61,72,82,47,21,30,59,84,99,56,60,74,85,77,99,17,81,82,89,7,26,29,56,47,85,74,88,1,34,80,21,34,78,19,36,14,14,18,29,90,24,21,89,67,89,96,52,100,85,89,36,39,9,65,55,47,35,64,43,66,56,62,29,8,31,48,32,94,45,55,35,97,98,68,22,24,40,70,9,71,20,12,27,16,50,69,19,41,56,8,69,63,72,41,83,43,12,32,83,57,86,19,70,49,40,79,87,83,31,67,56,50,52,6,62,37,10,58,15,22,63,64,80,41,2,65,40,57,99,57,35,3,87,35,49,32,46,98,5,52,9,94,17,35,6,51,29,40,21,40,23,79,10,86,75,83,2,88,23,72,89,79,51,1,41,91,78,20,97,26,63,70,15,54,97,82,57,76,42,88,9,3,74,15,60,79,71,30,69,84,43,56,37,12,13,43,74,3,54,49,86,42,95,96,60,30,68,10,40,11,11,96,52,31,10,74,78,78,50,38,77,96,33,85,37,44,59,27,58,83,84,16,76,40,98,23,18,93,69,28,81,57,39,75,52,42,67,9,42,55,34,48,31,8,20,39,20,68,38,67,51,48,34,98,76,3,70,17,49,38,38,92,68,93,39,97,41,59,84,62,96,52,84,92,55,40,13,20,72,50,87,20,63,47,3,7,52,94,69,82,41,43,60,83,29,92,80,97,3,92,42,81,8,33,33,16,96,73,22,90,93,12,48,51,45,9,18,58,51,75,10,46,85,51,51,11,48,78,54,87,33,62,20,47,70,70,26,35,62,92,94,40,62,47,87,9,1,28,56,67,62,52,67,77,70,81,59,47,2,98,71,6,8,36,83,43,10,43,4,3,77,58,85,82,40,54,64,38,33,60,94,77,90,40,20,19,100,63,93,72,16,20,80,86,91,92,87,34,40,75,99,22,63,6,46,64,93,4,2,7,98,55,80,5,67,59,12,60,44,93,78,64,60,61,11,50,59,12,19,83,19,89,64,64,54,68,44,18,41,20,4,72,6,7,30,15,80,53,41,19,6,22,31,96,49,33,44,29,56,98,56,78,47,85,19,21,22,15,97,16,34,99,79,54,28,32,49,16,24,30,70,57,20,62,66,67,89,21,6,11,66,8,45,4,87,48,30,83,43,33,48,73,47,39,100,47,36,74,84,84,84,35,67,20,71,20,24,59,32,82,88,7,19,24,21,18,99,80,8,42,73,16,49,58,6,10,88,54,75,27,87,14,43,39,67,99,40,59,23,14,65,69,90,49,16,45,34,68,17,53,33,14,60,91,79,36,38,35,13,40,41,95,23,87,6,64,60,22,76,81,41,38,24,79,89,7,81,97,13,21,35,93,9,90,79,63,90,36,42,6,33,18,5,64,83,75,61,16,4,66,93,36,16,32,22,31,37,39,39,77,51,32,28,86,34,17,87,84,66,45,93,19,47,56,48,7,37,59,55,65,65,96,86,56,78,44,23,64,73,55,20,17,15,22,92,5,5,96,6,57,18,20,59,37,74,7,26,13,7,80,2,30,76,30,84,14,98,53,15,63,76,15,80,74,76,94,16,71,40,6,36,47,99,33,56,78,67,69,63,36,57,10,12,2,28,24,13,9,71,68,33,7,28,52,60,48,78,64,70,30,31,62,82,38,46,40,18,25,37,66,58,80,26,52,46,85,83,92,98,74,18,61,87,42,9,9,57,17,13,27,25,62,18,84,17,96,45,68,99,66,14,59,34,93,67,63,96,66,11,38,82,12,14,19,28,88,21,19,32,9,37,39,97,9,91,2,63,74,24,34,93,53,30,72,95,100,22,99,91,8,51,24,69,51,42,27,33,53,26,91,31,86,5,27,11,34,13,83,1,24,67,90,88,94,21,57,19,58,22,94,28,67,3,59,98,33,72,68,18,94,18,36,42,64,27,29,97,99,75,81,4,53,55,83,35,60,62,69,72,27,4,54,24,40,41,11,38,20,65,54,70,83,18,10,70,52,57,48,6,75,64,12,91,86,35,55,50,24,26,81,48,78,62,78,98,27,45,45,9,28,99,82,15,10,92,83,38,15,98,46,53,67,72,56,18,71,8,53,38,25,58,11,31,20,22,13,80,29,71,90,27,88,28,13,98,9,97,36,16,67,43,46,85,75,15,87,79,94,46,76,40,53,91,82,90,52,32,22,32,65,35,23,76,28,53,73,98,6,46,79,72,87,29,73,74,74,88,18,46,28,34,37,7,64,71,4,87,41,90,83,13,16,28,89,1,85,34,88,66,92,7,98,49,57,27,15,33,17,36,82,20,5,36,60,2,12,17,80,21,24,91,12,53,93,52,35,32,36,11,33,81,27,21,24,69,27,48,6,61,72,60,30,21,12,83,94,19,17,2,43,91,39,96,12,61,30,85,73,30,58,63,14,41,63,45,28,54,8,78,36,7,70,37,60,93,12,96,54,38,49,58,7,87,74,32,48,52,4,67,75,56,12,83,74,74,91,20,42,88,86,41,90,69,92,73,69,35,94,18,90,92,40,11,55,1,47,16,40,7,76,15,79,64,55,87,19,71,19,71,100,86,61,82,7,5,74,80,23,66,37,90,79,73,24,37,45,70,8,98,91,49,64,60,33,29,67,34,75,53,70,18,15,96,15,76,66,80,35,74,67,2,16,33,40,51,95,39,41,40,67,36,33,50,28,9,59,88,20,87,64,51,8,27,68,33,1,63,94,31,36,2,45,67,17,70,77,23,99,62,72,54,47,94,99,61,100,36,36,10,51,90,14,23,87,76,31,25,56,10,6,61,61,89,54,26,86,65,46,89,40,18,14,69,62,62,24,69,17,90,21,95,82,69,83,87,25,52,12,89,45,94,64,57,21,22,18,42,99,90,47,53,26,44,97,93,20,7,68,70,95,39,83,93,46,63,17,86,4,65,21,40,26,13,59,33,84,39,91,64,62,14,40,40,22,87,39,50,50,39,59,86,21,29,69,49,50,77,25,68,98,98,73,12,39,17,28,95,36,63,86,28,29,22,88,53,43,8,2,70,55,17,74,84,73,72,92,76,56,60,90,4,16,73,99,10,19,75,85,38,57,51,21,96,50,55,24,39,64,12,77,7,90,64,30,37,61,60,44,49,94,10,93,21,83,45,98,91,41,54,83,58,29,67,96,12,43,73,41,95,59,11,87,71,66,18,14,4,96,5,37,28,95,2,69,66,36,24,4,65,84,30,2,1,66,83,99,87,88,54,10,87,60,98,24,100,76,3,23,32,86,98,64,99,47,40,87,88,50,16,80,17,18,25,53,26,73,7,27,3,54,100,24,3,47,60,4,44,48,28,44,90,49,99,90,52,83,39,53,54,89,94,40,68,25,64,22,100,21,30,41,52,41,87,61,23,61,5,51,84,25,8,51,23,65,51,65,70,87,24,41,83,78,92,94,42,33,64,25,14,60,4,39,92,51,24,79,20,37,23,2,68,66,11,25,30,34,16,62,54,30,64,47,8,4,26,17,78,88,38,96,27,45,44,61,27,89,51,32,83,70,64,43,77,71,30,3,72,79,38,42,67,31,21,68,62,41,34,45,49,37,35,96,35,93,47,12,20,81,49,10,67,1,48,65,17,42,84,55,100,59,35,42,4,34,31,5,91,1,47,93,17,51,97,50,58,65,51,13,26,20,84,9,67,29,93,45,28,52,36,77,12,12,6,89,92,26,8,97,87,5,87,2,13,59,45,8,66,71,3,81,47,42,73,22,16,49,76,55,28,53,41,18,32,29,72,39,6,65,70,69,56,85,81,10,35,17,89,29,14,2,63,28,17,19,76,53,9,13,12,97,77,2,23,26,16,39,40,40,15,41,96,16,94,11,8,44,74,96,63,93,16,85,32,85,11,79,10,64,52,17,61,54,65,15,66,21,80,37,90,21,59,59,1,7,10,35,67,41,73,1,82,36,32,64,98,59,77,58,90,37,37,16,59,78,26,44,39,96,60,19,87,9,36,51,44,11,54,71,72,95,95,6,32,11,90,7,11,3,97,67,99,70,39,58,79,97,82,78,45,35,87,56,19,60,29,8,52,57,83,93,72,26,33,25,75,73,27,36,89,21,66,89,72,89,42,47,7,45,2,75,91,66,94,84,63,31,49,37,77,8,44,58,93,71,32,97,88,91,54,81,39,94,4,5,22,95,86,32,51,22,95,12,86,33,47,26,69,65,8,51,72,68,88,59,10,13,42,5,19,81,55,66,8,29,88,34,72,29,42,17,76,74,22,63,65,92,99,31,75,5,12,70,98,11,7,96,38,16,98,16,74,72,100,11,61,39,10,8,24,63,11,99,54,5,40,3,34,36,73,47,46,31,85,63,49,37,92,77,56,2,17,44,28,83,88,64,76,41,60,71,53,17,48,31,51,3,61,34,42,43,62,11,34,29,10,3,9,48,24,47,44,42,30,43,56,44,15,55,77,83,34,96,20,2,10,7,35,2,46,40,83,50,63,70,69,73,7,50,25,54,79,29,60,80,31,21,98,22,69,83,78,96,72,34,15,86,31,78,100,66,16,63,12,48,32,23,70,46,21,63,20,4,74,8,29,75,54,80,38,89,44,15,63,72,7,84,20,86,19,84,32,91,95,7,97,7,64,88,84,71,48,32,11,38,17,23,65,69,77,83,20,2,84,20,83,60,59,93,3,86,85,21,85,42,72,65,90,27,97,99,49,82,80,40,71,69,2,98,14,89,48,41,78,19,54,25,84,98,34,74,36,77,84,27,87,10,91,73,23,7,41,23,81,9,74,42,3,83,19,87,23,59,37,34,99,31,26,97,57,61,64,54,29,25,96,92,79,91,67,86,32,43,37,1,89,89,49,79,44,74,87,50,35,52,12,44,4,21,4,46,10,37,61,45,3,62,21,96,61,98,23,83,4,55,35,20,9,13,7,10,96,94,17,54,8,55,45,28,65,56,61,57,77,31,2,42,80,7,5,74,84,93,59,92,50,33,100,6,72,81,79,71,78,33,1,98,58,64,33,100,30,92,8,51,32,88,39,44,96,100,86,1,49,40,34,48,100,8,40,39,90,97,93,58,5,28,21,60,32,11,54}
{56,92,12,91,55,51,48,29,98,43,77,73,2,44,94,90,63,29,55,63,1,67,79,75,40,88,85,83,73,98,98,45,5,69,86,1,21,77,18,93,75,39,56,39,94,97,1,83,37,100,10,57,41,39,100,64,89,72,40,85,28,65,78,1,41,15,56,24,46,29,76,3,64,13,58,49,44,62,40,54,79,41,24,96,70,37,50,64,40,78,32,98,92,30,40,3,30,53,48,4,33,23,99,85,93,26,46,9,60,20,72,14,66,38,33,68,81,74,27,9,76,90,15,78,63,44,39,72,26,40,9,37,75,23,8,55,77,11,93,36,100,15,26,60,16,60,57,33,89,60,49,62,38,55,80,5,44,9,32,43,11,44,62,90,52,17,50,79,91,36,74,61,9,11,7,17,91,8,23,99,1,37,91,35,56,13,16,42,40,94,53,69,64,64,98,41,72,18,99,52,61,1,84,52,85,71,27,98,30,83,11,32,11,44,55,35,12,51,83,23,87,83,8,48,43,54,83,50,19,88,79,9,92,48,78,62,63,64,65,99,96,85,32,83,16,5,51,34,19,77,22,63,97,40,93,74,10,91,96,49,39,91,17,60,12,5,37,3,26,1,47,7,55,37,23,44,61,41,18,67,35,30,80,97,37,9,41,16,64,57,86,60,44,65,20,44,43,53,64,45,48,85,53,46,83,31,68,29,8,9,57,50,96,7,67,36,23,26,89,18,12,46,62,40,42,26,75,15,96,16,96,41,50,99,53,38,88,1,52,78,26,63,97,27,73,13,36,61,53,69,77,25,53,5,1,44,95,91,76,51,98,78,51,75,88,8,61,92,67,20,28,88,15,47,84,42,56,43,84,29,50,26,66,40,100,90,84,24,100,30,77,85,32,20,91,35,71,94,21,20,81,21,20,66,44,1,97,32,66,85,84,9,38,87,83,97,16,48,57,40,92,39,62,65,15,92,13,14,91,12,9,79,62,47,42,14,23,3,81,51,88,48,41,48,44,66,89,62,80,35,16,9,78,45,55,36,89,3,71,33,89,71,73,28,35,22,51,29,96,33,16,15,28,15,66,53,21,42,78,63,78,44,19,67,93,27,40,50,46,31,13,90,42,38,83,28,75,48,15,35,56,59,4,69,1,26,86,6,96,33,96,44,18,66,20,66,77,69,14,99,73,73,51,32,73,78,20,46,84,28,15,41,94,49,81,89,34,73,71,96,48,85,84,35,73,77,31,90,87,35,64,70,25,4,51,58,92,1,78,2,94,14,65,17,65,12,60,97,6,38,87,86,8,96,49,60,39,46,8,97,22,69,68,33,19,74,50,39,54,50,1,32,93,76,63,100,78,60,91,13,6,41,78,93,80,55,59,61,35,73,60,86,84,21,20,48,59,18,100,69,51,6,37,74,80,4,62,26,21,92,50,18,15,20,69,6,93,17,64,55,11,42,83,94,56,96,83,96,80,2,32,39,19,20,23,87,43,28,72,85,99,15,56,58,14,33,97,18,76,93,41,2,90,15,27,9,9,33,64,39,22,86,49,34,78,68,92,88,59,66,76,100,5,73,5,59,22,92,60,88,56,70,61,16,38,34,76,13,31,1,16,3,22,18,44,60,95,36,5,18,25,94,86,31,14,18,38,74,55,9,6,29,86,59,88,87,45,60,59,54,86,28,65,88,41,47,41,90,69,23,8,30,8,48,9,9,98,93,28,55,4,80,28,19,90,57,96,36,51,32,90,34,93,52,59,98,7,67,62,40,45,76,15,5,27,42,52,88,75,45,93,50,52,89,97,36,43,49,18,88,79,52,22,29,34,90,47,2,90,81,18,66,51,46,17,90,52,16,41,24,72,65,37,20,3,30,20,21,65,20,10,79,1,93,39,29,81,47,77,16,93,92,27,90,58,66,13,65,31,13,68,87,22,53,11,88,42,70,13,64,52,6,52,80,31,39,62,11,56,38,26,12,80,22,57,48,71,64,66,29,48,70,68,82,80,99,4,8,21,21,8,14,20,60,63,48,42,37,89,25,10,35,49,51,16,49,88,62,38,91,89,19,95,43,14,10,69,4,55,62,65,45,87,19,82,43,50,6,99,90,52,19,29,48,53,41,47,78,12,45,87,77,50,44,81,56,44,48,48,11,93,80,10,84,27,83,50,50,77,45,30,60,2,75,66,23,6,21,86,25,41,15,93,14,6,57,52,71,4,52,1,75,3,87,58,12,88,56,55,49,57,47,18,8,23,79,96,67,54,67,46,43,56,54,58,66,60,35,52,87,23,88,64,44,7,71,63,15,13,42,1,53,78,43,10,52,68,16,96,99,79,30,77,52,71,76,30,93,42,4,95,60,14,88,59,76,89,82,41,94,58,39,37,14,41,85,63,49,14,85,54,27,71,90,42,14,23,28,35,16,19,70,70,53,95,28,70,78,22,52,3,93,47,100,59,38,35,50,6,10,55,42,97,46,31,41,13,20,92,13,44,93,25,86,70,9,35,37,33,65,43,39,13,54,52,15,31,38,31,68,32,32,7,69,49,64,100,99,95,7,43,38,54,28,23,47,41,43,32,22,53,52,31,99,74,94,96,29,40,93,100,72,13,58,45,65,9,55,5,34,67,99,89,92,6,2,81,95,65,71,5,29,52,63,31,85,38,10,82,73,65,50,62,77,38,62,67,65,62,30,38,33,59,72,88,41,20,32,84,67,58,54,24,19,33,75,85,60,35,7,49,27,80,41,52,81,85,59,74,83,4,43,58,78,44,49,55,52,57,50,67,54,3,70,53,73,77,72,99,51,38,51,53,10,81,24,16,91,2,40,87,76,2,11,16,55,64,9,9,45,6,10,69,93,96,12,24,25,57,43,32,15,44,49,65,85,29,58,33,79,31,32,76,43,75,68,7,90,74,37,36,63,97,21,18,83,31,11,38,16,86,87,8,36,84,53,8,100,31,91,57,53,41,80,25,37,98,40,45,7,14,83,81,75,38,4,39,20,98,83,84,74,85,55,57,45,56,84,7,50,37,86,91,66,100,65,19,11,32,45,67,7,6,56,69,96,76,72,84,66,11,2,92,16,73,14,78,70,85,92,67,59,64,59,78,35,59,27,48,82,85,17,54,84,74,39,40,38,87,37,92,37,66,94,1,87,87,30,27,1,8,31,84,96,47,51,23,3,74,35,50,31,87,61,91,49,93,34,22,84,84,43,72,16,11,64,60,3,29,85,30,87,80,64,66,8,15,24,37,5,40,68,67,11,100,21,32,97,59,21,22,88,60,24,5,95,55,42,51,43,29,17,26,62,13,90,95,83,88,77,9,79,61,23,33,98,47,90,13,83,87,57,39,96,44,81,86,39,94,53,38,46,41,76,24,82,28,98,100,39,2,92,100,89,36,52,84,54,69,26,67,37,29,84,9,95,92,93,71,73,62,17,37,44,64,18,99,6,47,48,66,29,60,2,61,77,80,24,91,20,5,11,86,91,27,78,73,92,98,48,68,1,11,70,17,18,78,16,100,82,97,72,62,84,7,87,81,42,58,5,28,36,98,18,89,42,77,11,67,6,33,96,41,41,13,11,23,77,23,99,92,76,46,2,94,70,29,93,57,39,56,71,47,81,29,20,27,34,31,40,37,98,3,39,40,94,89,77,22,64,83,12,19,10,59,28,85,77,77,74,84,10,67,42,98,43,68,10,9,65,18,28,84,14,41,27,64,29,60,38,78,84,9,7,93,41,88,70,83,30,18,63,84,32,10,43,61,12,57,52,51,20,87,82,32,65,17,100,40,1,26,19,52,62,63,56,5,51,76,87,82,23,8,68,41,97,67,87,4,92,17,57,58,33,83,20,16,21,74,37,31,90,68,47,19,23,83,86,70,69,92,6,88,84,94,86,79,12,50,86,75,53,80,86,17,66,42,63,1,39,93,42,69,62,76,29,22,94,79,45,83,17,93,70,86,59,36,54,53,28,91,86,5,89,40,73,32,20,10,50,23,7,78,49,12,65,3,41,45,39,54,91,16,83,4,22,55,25,60,13,70,91,58,27,51,19,40,74,67,67,94,76,57,24,69,55,26,39,43,55,5,9,41,98,22,14,29,6,91,24,31,3,34,20,94,25,52,100,73,45,29,9,29,66,10,92,79,75,96,54,30,87,82,26,76,5,85,36,86,96,63,28,50,85,16,5,84,87,15,69,16,43,65,61,81,59,35,48,56,26,54,80,71,66,66,86,91,67,75,5,66,51,93,22,83,83,48,41,45,42,28,14,85,50,91,58,60,27,73,5,71,31,37,74,96,37,26,92,31,55,38,71,13,92,61,18,11,54,45,75,38,1,93,66,17,22,41,91,75,16,23,30,31,53,73,91,36,76,13,6,100,57,16,79,40,6,31,89,99,80,50,82,15,46,88,12,73,69,45,64,98,11,31,45,12,51,87,31,25,42,78,30,27,26,79,87,56,75,11,33,2,92,100,74,78,32,54,46,72,52,29,76,68,29,9,46,28,62,31,94,32,50,27,11,58,38,89,13,32,29,26,58,87,10,28,18,71,30,1,29,46,6,41,32,6,33,75,54,11,7,43,80,9,66,88,74,80,79,95,7,80,26,29,94,81,13,76,96,98,83,50,85,20,100,7,74,67,76,20,90,28,22,33,96,69,31,11,74,61,63,39,43,61,53,24,26,50,36,45,76,61,90,88,20,19,100,98,40,6,63,1,74,16,19,86,98,94,5,94,76,15,64,2,43,27,57,25,62,94,84,61,17,26,18,58,61,1,79,41,47,81,46,60,46,48,60,93,56,56,44,26,63,3,84,61,22,70,98,34,16,76,83,74,98,12,37,67,27,7,40,38,100,68,38,59,18,13,74,17,42,76,97,64,63,46,38,82,59,14,28,44,16,68,43,76,65,8,77,20,22,47,63,22,27,14,54,55,48,34,78,66,47,97,23,32,6,70,66,32,92,19,92,70,46,29,56,46,11,13,15,88,47,7,85,31,32,3,79,85,37,6,42,6,19,90,44,38,5,75,77,22,40,19,62,4,5,2,13,19,80,2,86,83,50,73,99,10,83,56,57,89,52,52,66,93,26,79,16,30,59,27,3,62,48,77,84,93,95,40,52,85,89,13,15,78,91,96,78,36,20,51,8,48,79,17,90,26,49,98,24,65,84,78,97,58,56,72,61,43,27,55,20,2,86,67,80,39,31,66,26,71,86,71,69,50,93,75,22,38,95,64,7,4,69,9,35,24,1,8,57,48,65,95,77,50,20,5,93,82,55,21,57,38,86,73,61,87,61,70,99,96,36,83,6,44,55,97,64,16,29,48,21,50,83,41,6,92,51,55,13,67,13,77,90,21,72,89,79,66,61,76,64,35,72,77,33,57,41,12,61,2,48,70,48,9,51,31,64,77,71,21,82,99,86,85,79,93,50,42,6,54,33,86,77,20,25,37,70,69,14,31,16,48,95,55,49,16,50,13,46,55,58,1,79,73,79,11,59,64,13,98,62,46,56,21,46,22,50,2,92,56,3,85,56,30,33,96,62,16,4,19,84,21,53,22,11,27,42,42,27,63,99,32,58,53,41,70,79,31,75,56,16,65,62,26,72,77,73,27,75,67,44,62,64,90,65,13,21,33,8}
{2,5,4,34,4,93,2,16,11,29,47,22,19,22,23,27,2,58,3,2,61,51,2,79,16,22,61,64,53,2,1,18,51,4,18,10,1,69,42,79,1,2,3,2,2,52,4,29,19,10,5,4,1,28,1,52,91,8,37,31,17,10,3,6,45,52,4,87,18,69,82,1,72,3,85,32,4,6,1,2,5,4,12,6,2,1,1,53,41,1,73,43,1,28,5,5,6,54,95,2,3,19,26,5,7,48,2,8,1,32,37,16,16,54,1,10,18,27,18,23,10,17,2,1,36,22,60,11,2,4,43,5,81,37,18,4,2,12,16,91,94,87,32,6,66,63,4,65,81,3,36,67,1,1,37,23,15,34,24,17,12,15,1,48,1,2,3,88,66,14,20,4,9,10,32,5,7,8,24,61,4,31,2,2,11,28,19,3,4,19,6,1,11,64,7,12,9,8,28,15,18,2,9,96,27,17,59,1,6,75,71,20,44,33,6,7,30,10,27,91,5,84,64,1,50,1,71,9,10,2,24,30,1,3,1,6,10,21,47,45,14,6,3,11,16,26,11,19,4,11,31,45,4,11,4,3,2,28,36,22,10,9,11,9,1,1,7,10,28,89,5,12,9,5,3,6,23,4,51,15,1,6,2,71,78,22,79,1,68,1,37,1,50,10,31,57,31,1,3,28,28,30,1,2,6,8,18,11,17,12,86,1,1,1,8,97,2,33,47,26,14,1,35,3,5,3,18,26,10,69,30,1,2,3,1,3,53,34,2,5,23,5,1,1,1,3,3,1,21,2,2,22,3,12,5,5,1,3,2,10,4,6,20,4,1,8,1,16,3,1,22,47,2,5,11,24,26,15,12,42,5,2,4,34,51,15,1,17,3,1,3,28,6,8,19,3,2,10,12,9,91,18,56,39,1,1,14,26,9,1,1,2,8,24,41,1,5,28,6,1,9,2,1,4,2,4,50,87,1,55,35,63,4,41,62,30,40,25,10,54,41,4,97,25,10,5,22,7,1,4,8,34,2,18,25,6,2,26,24,2,20,12,79,1,1,7,1,28,3,7,38,2,48,4,1,13,50,36,2,7,3,11,44,50,13,1,3,3,52,11,85,36,5,10,34,2,5,1,25,18,5,9,39,10,14,49,7,1,2,9,18,91,52,1,4,56,1,10,35,16,13,14,2,4,2,5,51,42,2,43,1,14,7,27,8,12,1,11,14,53,29,3,5,7,30,12,8,2,1,63,48,1,89,19,1,65,18,11,8,19,72,40,54,18,2,6,5,47,25,53,9,1,85,39,4,8,17,2,62,1,1,1,1,1,83,51,7,10,74,2,10,10,27,30,2,42,32,4,1,1,7,1,2,44,6,9,8,2,2,2,2,9,31,4,8,3,1,2,6,2,36,71,31,72,1,1,70,3,92,65,15,1,3,1,3,3,1,14,20,11,2,2,57,60,5,1,34,17,45,7,7,27,28,9,3,3,27,20,2,18,1,1,3,73,43,3,1,45,4,9,67,1,4,1,14,2,7,66,28,3,3,1,2,26,23,17,3,1,1,19,12,95,13,7,24,77,22,2,16,1,6,5,16,1,30,17,22,3,1,1,4,6,5,9,1,10,27,6,75,7,15,19,69,14,1,2,2,7,2,1,5,15,3,1,1,78,5,15,1,4,42,12,25,9,42,1,16,23,1,20,48,1,1,1,1,1,80,13,2,14,9,16,29,7,21,1,30,21,67,3,59,54,2,53,11,1,8,10,11,30,7,25,3,81,1,14,1,3,35,60,1,2,26,34,76,43,63,1,26,38,31,64,4,54,5,21,2,60,4,90,9,59,8,4,94,3,49,9,15,2,1,2,1,86,8,1,7,86,83,4,15,16,9,3,23,66,8,52,26,43,16,15,44,3,17,1,3,4,81,4,13,57,46,1,2,16,16,1,2,42,86,10,78,3,1,7,2,57,3,5,4,12,1,55,16,6,1,5,2,21,29,7,52,56,1,9,46,21,3,51,16,1,42,1,1,2,5,10,2,36,1,81,1,9,34,13,1,18,2,78,37,1,5,31,47,1,3,28,1,4,1,8,1,2,1,11,2,60,2,3,5,42,4,10,29,5,30,28,1,3,37,1,3,54,1,6,3,5,15,10,65,9,23,5,12,14,1,19,40,20,14,6,1,25,6,5,1,54,4,1,82,12,1,4,19,8,3,1,5,7,5,76,1,2,4,12,62,14,11,50,3,65,22,4,3,3,63,99,1,29,5,8,27,2,53,13,1,1,76,3,5,3,2,46,72,1,1,31,10,89,60,96,20,15,1,3,11,5,7,62,72,72,83,40,2,32,4,2,3,1,27,77,93,2,19,2,1,24,1,43,3,1,8,37,57,42,2,9,3,31,29,38,16,2,3,1,22,97,1,24,7,71,20,6,6,1,1,1,28,54,44,6,72,6,8,7,1,40,10,17,2,17,3,1,1,19,16,18,41,13,18,1,1,39,7,10,5,66,25,7,4,33,1,1,3,2,9,5,1,1,2,24,2,1,67,1,2,97,71,47,13,19,10,8,1,15,1,53,16,1,94,37,46,1,26,1,1,27,1,13,5,52,11,87,2,1,44,1,10,14,4,36,20,12,13,5,14,50,81,22,6,1,2,4,1,4,4,3,29,3,38,16,6,36,26,2,16,6,35,35,1,87,69,7,1,12,8,1,10,1,48,8,16,33,2,65,55,3,2,26,1,80,1,11,9,35,4,3,25,73,14,4,82,17,1,73,36,2,6,50,6,1,8,3,15,36,15,2,9,99,15,3,64,2,68,10,33,3,17,30,6,7,38,80,1,84,39,1,1,6,4,1,69,3,1,1,48,9,2,20,84,1,3,2,21,1,7,1,82,21,24,1,4,3,24,5,25,12,1,7,38,9,1,10,1,2,24,1,7,8,4,7,1,33,1,4,23,2,31,5,7,58,2,9,1,9,9,28,3,15,94,58,18,32,19,18,3,2,23,7,99,3,71,43,1,22,1,83,20,19,1,34,19,6,57,2,10,1,40,1,28,28,74,7,4,34,22,5,44,23,43,3,52,7,9,11,28,14,87,19,1,4,5,39,17,7,1,9,92,65,5,1,75,72,29,13,17,31,36,4,25,2,16,69,6,10,7,51,33,38,3,7,77,5,18,1,85,3,11,59,60,64,88,26,2,40,6,1,8,2,2,21,23,4,5,1,21,19,37,3,14,1,1,6,18,2,1,1,48,1,5,15,2,36,32,52,4,1,85,1,30,26,1,49,2,72,5,1,5,4,57,1,59,40,10,1,2,62,1,50,6,18,15,54,35,1,13,3,29,3,21,10,1,5,9,1,2,52,2,17,58,2,11,33,1,2,2,72,35,8,1,82,4,33,5,34,5,17,37,7,96,51,2,10,22,51,6,25,17,22,14,3,28,9,5,53,27,2,18,36,3,4,2,42,44,12,2,2,10,31,2,10,1,3,13,4,1,3,64,55,18,23,3,3,2,2,7,44,8,70,1,67,3,72,7,4,10,1,13,1,19,1,3,5,1,11,15,4,10,61,19,16,9,3,1,4,1,1,94,19,92,2,6,9,6,1,52,5,87,9,17,2,59,19,13,1,9,1,5,6,8,11,39,88,8,9,17,13,3,3,16,79,4,28,11,8,17,26,6,51,3,55,7,2,17,2,13,32,1,5,11,8,2,27,92,13,1,28,22,2,8,49,13,3,5,17,13,68,78,2,6,10,39,82,1,12,14,5,8,83,16,33,36,3,35,8,13,2,28,65,4,41,5,1,5,11,31,8,1,4,8,1,21,10,8,23,7,1,1,77,12,6,20,5,53,12,49,1,2,1,1,28,1,24,4,4,23,89,48,3,15,8,8,5,5,60,70,1,37,22,10,3,14,1,16,1,22,2,3,6,10,10,10,2,6,12,10,15,3,1,1,59,2,1,87,6,25,10,4,26,88,3,2,53,10,85,9,39,17,1,4,2,4,1,48,8,1,1,4,1,12,26,2,26,26,4,4,10,5,1,1,13,26,18,3,1,8,89,1,1,2,4,1,14,41,51,3,57,10,16,1,45,69,1,36,6,49,1,3,1,10,15,38,3,1,11,1,5,97,1,18,1,96,3,11,4,70,12,28,2,44,52,18,30,52,2,7,1,29,37,1,2,94,37,2,42,14,8,14,10,8,30,67,2,16,61,3,23,5,23,2,5,2,2,88,2,51,35,14,14,19,1,52,1,15,1,1,16,27,3,1,2,38,12,36,1,2,57,28,41,11,2,29,1,8,1,2,1,39,94,71,5,1,3,19,8,46,41,6,1,34,2,12,80,9,2,1,36,1,3,91,11,30,62,66,25,6,3,6,1,13,15,2,95,22,23,86,37,38,2,27,4,1,2,5,1,38,9,38,3,7,21,1,2,56,40,27,2,12,5,5,5,50,66,2,10,4,7,2,15,3,6,95,62,2,2,3,1,1,92,5,2,26,4,2,23,1,1,7,1,43,6,60,92,3,38,1,26,6,2,1,5,3,91,12,2,3,2,72,7,65,8,1,57,29,71,2,1,24,11,60,6,2,7,1,11,35,73,1,32,45,17,1,13,7,3,47,35,2,1,1,42,6,64,1,13,9,4,6,2,49,11,74,28,7,1,82,74,1,6,69,1,12,8,97,60,4,17,12,76,7,34,9,64,91,21,32,55,64,11,1,3,18,39,2,22,27,31,7,1,8,8,2,5,45,18,9,39,1,71,91,49,6,1,85,3,20,57,1,12,1,2,81,3,1,22,94,3,15,1,5,14,4,11,16,2,1,62,54,3,5,15,15,13,2,76,17,2,23,1,19,9,6,1,54,7,2,18,21,22,86,1,1,7,61,9,5,6,49,2,32,43,14,14,73,12,73,1,2,3,16,2,1,62,20,64,11,27,94,83,1,11,60,1,23,1,3,4,1,77,1,62,98,39,67,34,24,3,6,10,2,18,7,19,1,60,4,3,6,27,8,32,84,89,43,5,7,1,88,26,1,2,7,44,53,59,16,11,1,3,47,39,6,4,1,26,7,1,1,2,9,55,78,1,21,4,1,9,8,17,4,3,32,1,8,55,11,55,2,15,10,1,86,2,29,32,3,4,11,57,2,13,3,46,5,30,18,57,3,2,6,71,10,25,9,1,1,4,30,22,4,2,2,64,4,1,2,21,2,55,2,2,26,1,3,1,7,6,3,65,40,77,60,4,5,5,5,12,4,6,41,16,8,3,20,3,53,57,1,1,47,6,1,9,62,57,5,79,3,2,16,1,6,19,11,30,1,1,22,2,4,28,32,65,2,2,23,33,18,41,8,40,25,96,34,2,96,20,40,10,87,13,2,22,74,85,1,18,6,2,1,8,7,7,39,10,10,34,2,6,91,11,3,36,2,9,77,26,25,8,2,3,73,61,14,1,1,14,10,3,80,22,2,63,1,5,1,1,21,57,1,80,38,2,76,1,20,5,3,46,40,55,92,14,61,2,5,62,1,60,3,1,25,1,6,3,3,7,8,1,51,3,1,22,1,18,28,2,29,52,5,1,1,1,20,23,13,73,6,2,1,47,13,12,89,19,54,13,7,3,1,50,8,77,5,2,23,77,6,20}
Returns: 7.13289358695503E8
{65,60,3,68,82,7,9,62,82,35,88,53,24,77,35,55,74,48,93,44,49,66,48,35,48,96,79,14,33,56,58,60,29,28,81,23,85,98,64,88,49,6,16,8,37,74,52,65,87,70,42,26,86,4,55,64,67,50,37,28,29,75,33,18,37,76,17,48,100,33,35,72,90,79,24,28,20,66,58,62,7,83,56,15,9,62,14,93,19,23,12,86,11,29,57,67,34,49,69,7,49,3,46,98,64,97,31,32,8,85,45,96,49,40,6,71,94,89,74,25,76,46,2,15,46,71,75,57,23,99,46,84,74,98,46,72,80,86,70,28,64,64,69,95,35,23,23,15,70,50,28,48,30,91,94,68,79,15,84,69,97,11,55,41,32,35,80,32,69,62,68,62,15,39,60,58,96,33,12,52,79,20,44,2,20,52,9,24,31,1,1,66,1,56,84,12,21,93,82,67,71,69,63,80,5,74,41,54,86,5,95,18,63,79,28,66,91,37,82,21,14,81,44,61,13,72,9,7,31,90,97,74,50,35,32,25,74,13,83,63,33,55,82,58,78,54,1,72,63,92,54,10,74,34,56,14,53,65,17,51,18,73,24,31,36,61,61,52,68,55,81,29,12,39,55,20,31,67,8,49,42,49,97,35,63,3,34,49,23,39,66,49,3,39,88,6,91,27,21,71,67,52,54,45,36,47,90,82,38,25,51,81,40,96,61,41,29,56,100,6,57,50,63,67,98,77,35,76,94,30,86,17,42,37,73,65,84,21,99,3,18,19,49,2,37,78,51,100,37,79,86,8,12,85,65,45,54,40,49,83,64,42,65,39,38,76,9,29,43,92,96,91,99,61,16,9,49,15,22,68,11,85,49,57,74,63,14,36,37,38,1,12,95,96,63,20,74,37,14,31,83,50,87,7,60,39,71,98,38,55,1,65,2,51,9,55,94,67,86,64,28,57,17,91,24,94,69,20,82,100,18,93,48,33,90,87,91,98,70,36,38,40,39,82,82,87,14,50,44,94,76,15,47,4,72,19,17,44,63,42,56,73,59,82,86,45,74,90,78,49,63,42,5,8,81,9,64,15,29,7,5,37,97,41,3,74,14,17,92,19,53,25,37,50,30,37,87,92,31,74,19,96,80,10,100,13,64,90,44,92,46,5,72,87,12,5,66,49,4,7,52,42,39,65,17,81,60,28,61,56,59,95,62,1,32,39,86,74,43,4,69,39,27,54,93,62,89,35,74,11,88,13,54,95,92,52,71,76,11,44,32,81,89,27,61,55,51,8,61,46,38,71,30,9,68,46,23,59,78,15,48,91,95,87,98,56,72,42,13,29,7,97,58,87,18,16,70,96,39,58,8,18,4,82,83,76,84,20,11,36,19,97,50,38,51,62,45,56,57,47,76,69,83,53,81,19,85,52,51,31,60,8,73,35,35,50,91,43,26,64,7,13,67,32,53,10,30,30,52,66,9,55,20,36,66,99,95,4,52,66,13,99,40,98,68,47,80,98,92,85,18,30,1,100,51,38,42,96,20,44,44,5,55,73,59,78,68,18,46,50,31,56,73,50,2,49,100,77,99,56,92,8,21,83,76,52,49,81,40,58,21,41,98,79,3,90,22,83,23,99,52,56,20,37,46,52,27,54,23,25,29,99,86,41,25,74,95,51,96,91,55,4,61,100,62,35,71,76,29,23,27,74,49,57,73,12,54,24,29,96,15,84,88,95,99,46,56,29,9,100,11,95,56,79,45,15,96,49,55,95,2,33,24,73,62,88,88,72,63,93,71,83,81,92,92,89,54,55,23,77,94,64,53,80,74,83,24,100,35,38,7,49,91,12,100,9,6,76,28,21,50,71,89,14,84,100,11,8,69,37,73,90,6,13,99,78,25,21,88,12,79,90,54,47,33,44,15,82,1,57,60,24,83,69,58,68,92,75,34,92,72,84,88,59,68,6,49,82,61,67,89,6,11,27,25,97,35,56,48,20,24,14,26,83,39,23,69,22,62,16,73,44,45,23,93,86,77,94,56,75,43,58,84,14,35,90,18,22,72,86,81,31,77,47,29,30,39,54,36,85,38,7,82,19,94,55,98,5,41,49,80,97,43,19,5,42,44,48,83,5,27,87,93,88,87,63,54,58,12,47,33,68,80,85,10,21,42,17,59,32,35,14,67,30,65,99,55,100,5,32,33,56,43,53,90,39,23,88,9,66,78,62,47,69,22,41,70,37,45,72,72,29,86,88,52,9,1,47,28,54,83,96,81,3,2,69,57,38,48,16,92,35,63,60,65,91,39,39,37,92,39,20,78,6,83,23,93,58,97,5,52,2,71,2,98,12,34,86,32,3,86,68,81,24,39,65,77,78,62,67,75,28,6,37,11,38,11,57,21,54,62,22,64,78,64,30,100,29,48,20,7,4,21,86,54,96,81,43,11,84,97,4,81,12,70,38,56,13,8,65,20,10,86,7,97,77,45,12,60,47,86,81,58,65,19,49,30,68,55,8,89,60,82,25,60,62,12,64,40,2,52,41,33,88,91,90,10,7,99,92,41,99,6,20,91,1,70,15,33,82,36,57,13,66,62,15,26,4,17,97,44,52,69,99,91,36,10,21,23,70,60,11,58,76,84,8,24,74,69,84,88,6,36,24,69,17,97,23,17,54,38,95,44,13,66,99,67,48,80,89,94,58,68,19,64,69,51,34,81,81,1,94,35,57,75,60,58,42,82,32,53,22,95,58,75,79,90,7,54,51,72,63,11,82,65,4,62,37,44,29,27,56,71,33,74,52,63,47,61,75,9,55,2,39,89,14,17,59,15,70,72,18,37,65,14,30,8,59,36,1,90,21,12,9,49,80,28,78,12,22,13,70,35,57,81,19,47,34,9,75,48,18,97,3,86,63,38,33,9,63,16,60,10,8,52,78,38,75,36,94,77,36,16,42,95,8,79,32,93,67,92,81,64,96,13,1,81,88,83,78,4,90,63,32,50,57,26,19,74,7,73,54,14,39,67,28,22,48,5,13,36,4,68,10,66,16,93,36,71,83,11,28,37,46,78,28,38,31,6,10,48,30,88,57,71,81,22,81,2,88,62,93,93,70,91,45,68,36,5,75,29,67,65,77,82,30,37,36,66,42,8,87,49,5,73,19,97,50,72,80,53,34,41,51,30,31,81,13,3,62,38,59,39,33,11,25,78,14,55,46,93,21,65,99,40,68,54,73,81,24,55,72,29,29,52,97,32,34,61,6,61,79,59,67,88,65,16,82,97,59,71,89,77,23,30,94,50,15,8,92,14,54,85,38,43,32,63,74,96,72,23,29,43,3,91,5,91,84,32,95,35,43,55,5,33,51,6,26,100,28,6,40,76,73,12,79,26,10,81,94,49,72,15,71,50,62,20,14,44,16,28,100,24,28,46,39,12,6,91,89,47,5,79,44,46,23,5,33,99,63,45,85,92,3,56,95,89,95,18,6,98,86,23,97,77,41,15,51,7,64,59,76,55,34,9,95,45,18,56,13,80,72,51,79,68,21,73,67,6,85,7,30,56,38,67,54,50,82,46,67,83,73,57,59,94,82,47,67,92,20,17,74,11,68,1,13,55,26,67,96,48,11,29,51,2,81,28,34,31,63,51,43,37,84,37,3,61,10,56,73,95,48,54,1,9,33,74,59,87,54,2,7,49,28,58,71,45,54,15,47,62,67,3,58,75,96,1,92,24,14,74,34,62,12,32,21,46,20,26,80,93,88,15,38,30,65,22,55,99,23,25,25,71,31,95,29,18,35,83,96,96,94,12,79,36,64,20,49,49,1,13,11,71,96,59,56,45,63,64,1,82,1,9,27,42,55,32,59,36,54,46,44,31,41,64,69,63,88,25,46,33,43,37,64,75,97,65,9,30,20,18,23,36,90,70,66,5,42,35,100,100,56,9,43,48,56,54,46,73,97,52,11,47,96,24,56,41,43,30,92,94,74,15,60,82,51,83,58,52,51,80,51,68,47,2,2,71,91,2,10,96,73,81,97,58,27,15,68,22,37,31,47,24,7,10,17,94,100,36,1,74,89,57,68,86,13,36,98,8,13,13,10,97,19,78,50,49,59,96,20,65,71,68,79,20,70,39,23,95,23,7,77,29,16,57,13,20,16,10,53,43,98,97,77,41,45,28,70,52,45,41,83,98,86,19,5,57,41,96,21,85,26,52,81,34,78,84,20,16,23,35,48,60,44,10,67,76,67,92,7,96,70,90,1,50,60,38,25,64,100,41,75,92,100,30,69,76,75,86,87,74,53,83,49,88,15,22,36,50,49,86,69,86,65,42,54,98,25,63,17,36,36,24,8,42,17,46,38,54,37,19,93,62,59,67,74,72,5,4,42,45,52,95,66,8,64,82,33,31,1,57,55,69,72,46,67,62,47,20,26,47,40,35,43,40,20,41,69,72,31,52,65,38,16,1,73,55,68,28,48,44,62,70,62,19,21,31,4,5,5,84,42,100,38,85,33,19,74,25,22,83,47,25,58,95,74,41,19,79,48,2,56,60,20,31,71,80,64,38,90,97,20,1,14,44,22,63,45,42,63,59,90,83,86,10,19,74,74,89,2,73,64,33,17,70,42,58,31,4,54,84,52,16,28,12,71,31,9,63,64,91,12,75,65,100,28,19,95,68,43,68,31,67,14,75,75,2,85,100,19,26,44,2,33,87,90,1,40,4,46,62,20,15,28,2,49,16,88,1,97,68,65,76,85,64,7,59,63,16,63,97,93,26,41,19,81,9,40,96,78,86,52,36,54,87,27,93,70,83,34,88,60,45,90,48,9,84,56,62,32,21,30,75,57,13,83,63,57,7,52,85,18,92,69,91,16,89,80,71,10,71,27,58,7,66,64,37,21,50,8,11,8,18,96,51,61,38,46,86,72,100,34,63,52,76,56,27,77,10,95,10,64,39,89,31,53,33,86,23,62,85,85,1,68,70,65,81,18,19,71,27,52,10,46,100,31,90,92,22,76,84,12,36,27,34,91,81,30,40,91,41,48,44,58,45,53,96,96,17,54,9,15,85,20,77,47,40,90,76,15,43,84,43,32,51,99,10,73,83,31,64,54,45,72,63,45,46,90,87,92,98,76,77,33,25,9,16,65,15,2,86,80,81,99,99,66,85,17,76,82,75,89,75,27,85,7,39,35,99,51,51,17,66,68,15,82,8,100,90,87,95,56,14,43,12,64,48,9,73,17,67,39,56,72,77,88,19,56,33,30,9,34,80,26,100,12,73,45,47,82,6,81,59,56,68,75,84,6,4,46,58,15,41,31,96,11,65,30,42,9,98,24,42,66,47,33,84,36,22,92,82,38,45,40,82,51,59,90,25,10,50,70,12,16,98,26,82,45,15,65,44,35,31,95,100,36,20,1,94,82,32,50,89,57,8,51,66,85,14,11,81,7,26,36,92,48,32,16,85,96,97,53,95,99,49,33,13,45,9,50,13,1,86,13,5,70,92,89,75,76,19,53,77,90,29,40,16,18,99,78,50,71,12,65,49,96,97,79,69,92,32,97,66,77,10,70,89,13,90,38,13,16,81,33,98,64,47,14,60,97,11,72,15,81,50,57,81,22,70,7,57,75,9,20,90,72,36,55,92,12}
{15,32,13,100,23,2,7,5,14,52,91,30,64,54,50,92,85,83,40,59,69,13,44,26,84,45,17,94,84,28,71,93,50,26,60,76,96,8,74,60,89,65,11,65,80,15,27,3,78,25,33,92,81,45,70,60,62,59,91,98,71,79,11,21,24,91,38,25,19,83,40,60,68,52,39,15,79,51,11,37,24,48,35,45,77,42,74,58,81,50,5,1,45,57,84,63,9,33,94,58,47,46,4,64,7,3,10,39,77,50,74,71,5,83,18,51,40,14,40,75,8,66,67,30,46,20,26,68,47,36,38,49,60,43,27,27,84,22,1,52,8,13,43,82,84,34,9,36,24,35,70,65,51,5,86,97,86,20,43,86,98,32,63,84,76,8,77,92,77,80,82,57,67,90,59,25,13,9,76,40,26,66,83,40,10,29,88,87,63,100,38,97,17,94,88,36,95,43,83,11,72,90,94,6,87,50,77,24,73,79,32,49,89,5,41,49,39,2,54,86,92,26,68,79,50,59,26,73,63,32,22,81,91,7,50,78,30,71,77,6,35,56,67,64,33,54,91,83,44,51,83,21,65,40,23,92,65,67,86,79,62,72,31,18,51,52,57,92,13,55,7,40,46,1,9,91,5,22,42,4,97,56,82,36,35,40,29,86,93,35,85,9,26,38,43,46,44,65,74,39,52,69,53,19,44,60,5,55,61,45,63,3,84,60,80,84,24,82,77,44,10,49,98,65,78,63,43,17,41,81,85,41,36,15,29,54,93,13,25,36,62,32,7,78,72,12,63,49,59,7,80,39,35,80,29,99,2,50,61,52,26,26,98,30,19,14,90,1,45,61,1,40,8,39,56,40,1,25,45,92,30,99,51,19,52,37,100,41,26,10,76,9,51,47,75,64,47,30,80,6,30,35,80,82,87,67,96,43,2,67,50,22,75,59,6,23,62,27,78,48,45,13,57,76,14,62,82,52,1,6,98,84,65,19,7,5,56,83,17,39,45,73,28,92,86,14,97,16,57,55,13,83,52,83,20,89,70,32,64,20,71,30,86,14,92,16,34,19,42,67,33,57,1,83,95,19,49,39,61,48,22,39,17,17,13,2,12,74,58,66,49,87,50,29,47,64,41,23,50,63,67,85,30,12,42,4,97,29,96,15,6,41,54,59,48,57,49,45,29,14,60,43,70,81,59,85,92,41,19,44,44,98,9,88,43,32,53,1,96,30,95,9,8,5,19,24,41,94,59,42,44,46,78,66,23,63,87,72,99,62,16,15,79,17,70,33,51,11,82,6,84,6,55,71,47,68,21,63,45,85,53,63,71,71,43,32,35,96,73,27,11,59,51,67,7,91,86,28,1,96,2,60,27,40,62,70,59,42,5,50,96,54,23,25,52,3,48,39,71,18,91,38,51,95,25,1,99,27,51,8,54,86,10,73,22,57,40,43,13,6,79,45,13,16,30,30,65,35,97,7,59,58,82,61,61,18,17,2,2,62,74,32,63,65,42,12,90,97,30,77,18,21,66,64,17,32,21,23,58,31,94,29,42,66,93,63,76,36,89,66,21,75,49,2,67,56,17,16,88,8,4,9,54,63,78,72,74,85,69,76,17,44,41,50,51,71,53,84,7,10,26,57,27,28,68,15,16,3,7,34,48,70,95,56,22,87,16,4,70,82,37,2,44,57,76,62,9,66,65,33,65,85,100,92,91,31,41,30,17,73,29,85,41,42,60,70,26,13,94,8,99,81,71,85,70,57,26,35,59,13,35,99,100,33,56,43,41,29,50,73,10,89,65,49,67,25,62,15,77,36,89,15,92,45,13,43,93,17,88,61,10,81,10,96,67,30,21,73,42,19,33,50,66,84,1,79,66,67,79,72,24,64,15,33,52,16,41,11,36,24,33,37,17,2,57,28,19,57,47,90,7,90,77,2,6,83,3,38,59,80,38,65,4,77,24,66,33,17,37,52,33,16,40,60,85,52,54,80,25,17,67,30,26,83,54,74,55,5,3,64,12,84,75,17,27,18,31,58,29,83,76,92,41,52,52,55,86,63,16,33,10,92,89,64,27,87,71,12,11,95,23,56,21,80,18,30,76,99,61,65,96,10,39,80,74,1,55,25,21,55,37,8,24,12,2,28,58,49,46,88,44,78,15,88,33,45,97,84,39,42,28,43,99,31,59,71,66,65,83,24,89,93,65,29,31,54,17,81,91,16,14,44,21,42,31,48,76,55,79,70,62,36,31,75,77,21,79,37,51,19,55,62,92,73,99,15,27,67,26,88,58,97,52,66,52,41,15,99,31,27,23,40,27,30,79,8,44,23,49,2,83,77,22,29,58,27,9,97,85,24,95,24,9,56,34,81,63,24,24,67,13,91,70,89,62,35,43,29,6,98,36,4,64,89,55,41,97,59,80,60,17,90,69,8,90,22,8,83,96,94,71,56,93,90,45,56,64,70,29,53,3,5,69,76,4,54,49,23,71,2,89,5,70,23,13,58,57,32,97,72,32,82,88,85,28,93,1,56,56,18,79,46,86,2,1,57,15,65,53,4,3,2,99,46,38,3,76,74,2,98,33,34,37,61,29,50,33,49,65,28,66,12,93,69,7,72,99,29,13,77,26,45,94,25,80,19,10,71,75,45,16,88,100,38,37,67,81,13,65,52,36,18,35,50,81,46,39,76,65,74,57,100,19,86,84,92,55,32,32,14,6,78,68,50,22,51,15,60,9,14,36,38,82,83,39,28,39,60,24,31,67,61,11,14,80,28,20,37,75,22,3,55,88,60,13,44,58,95,35,3,27,12,55,8,82,16,50,5,44,68,39,10,13,55,26,15,86,28,64,88,11,52,87,82,15,34,27,14,35,12,91,67,90,44,92,71,82,4,12,84,85,52,97,71,36,52,55,80,98,24,12,79,80,26,59,94,55,9,61,69,97,67,77,59,10,15,61,19,80,3,47,29,7,81,60,6,13,38,86,61,42,92,54,80,87,28,70,78,51,92,26,5,86,64,89,80,3,11,42,15,34,41,84,99,88,12,88,23,100,76,2,4,17,13,42,58,2,90,40,5,65,41,99,41,42,100,46,5,56,36,12,24,97,53,12,9,41,5,10,44,5,13,69,89,21,80,97,57,51,85,72,56,40,52,58,83,36,34,37,86,21,77,16,51,75,28,61,17,33,66,15,32,71,17,45,99,13,20,32,12,41,38,100,69,85,64,36,16,14,82,98,86,33,90,50,12,14,87,6,36,41,22,76,46,96,37,16,12,90,46,5,74,7,71,48,15,85,87,6,16,83,45,6,29,53,14,77,38,4,95,98,69,23,9,94,15,70,86,57,20,95,33,94,76,82,69,29,96,45,63,88,93,11,53,4,83,36,7,66,84,17,79,13,71,18,95,65,44,45,52,16,71,44,15,100,12,92,68,57,68,47,49,80,50,54,36,50,69,28,14,56,84,68,89,39,38,72,24,80,35,19,35,29,36,90,15,73,47,81,75,90,91,38,16,19,79,8,25,89,82,79,48,43,18,92,75,73,14,88,82,40,46,57,100,49,3,95,94,59,51,57,9,1,3,42,91,59,71,90,72,50,55,92,10,97,8,59,89,57,30,97,97,7,61,29,72,13,92,41,24,83,53,61,61,62,18,1,5,83,56,40,96,72,34,86,20,96,39,8,13,28,64,62,52,66,98,74,37,23,3,60,92,47,30,66,94,69,52,30,81,32,69,45,61,50,86,95,87,96,6,2,15,99,30,2,34,29,33,94,80,61,76,90,23,54,12,98,53,79,70,12,36,65,42,98,66,9,28,81,92,14,83,16,29,62,88,40,100,48,54,65,48,20,93,57,34,65,15,83,8,77,58,4,17,39,12,70,72,1,80,83,3,44,18,43,54,19,78,77,74,62,34,80,30,67,86,76,3,68,3,17,19,71,28,79,54,19,64,18,50,32,50,79,12,97,59,32,85,37,86,96,64,69,38,15,69,30,86,89,76,85,65,64,30,6,36,83,44,10,100,7,50,3,35,87,99,63,92,43,66,25,27,83,6,21,47,15,96,7,91,18,90,98,31,77,83,6,34,29,56,13,19,69,100,91,54,76,19,100,19,34,71,40,59,75,38,39,11,17,92,99,54,42,22,96,97,45,57,44,42,1,67,8,41,78,29,40,100,17,17,50,50,67,5,16,14,42,87,64,28,81,72,77,3,11,68,56,90,64,40,29,50,100,11,64,39,49,13,92,23,42,63,73,23,47,33,20,68,79,92,25,40,64,92,63,87,70,39,40,49,35,13,28,37,99,69,68,10,75,50,26,35,48,18,17,54,76,35,27,21,35,51,32,67,3,87,41,37,18,91,25,33,83,73,3,27,34,71,84,58,71,53,40,38,8,18,2,3,39,81,29,9,59,84,99,56,36,32,93,66,88,72,53,52,7,68,83,56,13,28,37,17,56,77,42,81,17,93,33,72,14,41,63,43,82,32,88,57,40,23,61,81,54,99,6,31,47,68,50,73,60,90,17,80,54,62,79,42,60,98,45,28,6,7,64,69,7,75,77,27,96,89,32,28,60,59,10,89,85,53,63,67,69,28,16,74,26,10,80,26,5,83,61,44,5,50,45,55,41,76,58,56,79,27,48,58,81,34,56,47,66,29,92,12,96,38,81,40,17,78,33,6,25,73,81,74,69,100,4,100,43,49,57,19,74,61,41,24,96,50,60,64,42,73,92,44,69,77,100,57,37,3,81,67,36,91,1,45,37,44,50,74,96,57,75,55,18,27,95,93,100,55,29,93,44,94,89,56,28,16,8,73,65,50,46,94,70,85,44,83,59,62,57,77,11,25,63,65,63,86,33,94,34,18,70,67,81,29,4,27,84,25,20,75,74,81,76,76,63,100,31,53,58,75,48,28,46,91,15,44,66,52,23,81,38,56,15,4,60,52,86,67,8,75,87,77,85,55,21,32,81,62,66,34,11,25,94,72,64,72,86,28,7,58,19,28,37,80,67,41,33,26,85,92,45,76,81,34,45,50,28,70,58,89,48,14,61,81,48,20,98,57,39,75,27,41,17,48,41,77,83,95,68,56,44,23,45,27,1,83,31,10,65,67,66,35,16,9,52,64,94,11,59,28,18,67,94,45,45,32,82,6,72,44,45,94,12,12,32,5,4,4,74,18,71,72,7,46,6,9,81,4,33,94,56,5,37,33,93,64,70,21,64,26,22,35,80,41,89,86,89,64,68,15,18,93,26,38,34,54,44,53,94,15,82,45,46,13,3,4,42,98,36,94,50,42,50,18,70,1,93,27,68,74,69,81,91,10,51,78,95,85,58,17,81,3,5,100,12,78,62,93,32,37,23,90,61,87,80,6,64,38,50,65,29,72,88,59,13,52,33,43,97,2,18,44,24,89,70,16,58,46,68,90,94,72,34,48,15,19,42,55,59,71,12,7,3,48,49,58,21,79,69,25,2,63,98,82,44,69,25,61,37,25,77,94,85,32,4,77,76,44,2,73,27,91,98,83,79,48,73,30,23,27,41,96,49,13,67,59,94,88,2,20,1,59,69,66,8,41,38,44,40,72,11,58,52,97,63,19,13,9,59,86,77,29,16,53,91,94,1,78,64,45,50,36,72,17,93,1}
{50,3,71,99,35,89,79,48,11,70,88,41,70,14,96,34,89,62,67,4,67,85,21,37,13,21,86,71,47,15,33,35,47,12,49,9,60,57,80,12,65,57,97,91,83,73,91,43,48,23,21,72,96,64,61,77,35,34,78,90,18,60,9,69,75,90,49,34,34,41,78,54,82,92,100,86,42,33,29,35,73,22,34,23,94,97,51,48,35,19,44,74,24,21,92,24,66,41,5,15,81,62,76,47,85,32,58,80,5,5,55,97,94,6,86,27,18,49,36,10,45,25,88,55,26,18,53,13,49,43,76,90,32,65,92,93,21,30,77,75,33,26,82,21,52,7,8,31,35,24,10,53,52,52,46,82,5,46,30,50,11,50,26,43,62,27,65,4,59,19,25,35,59,35,23,72,30,14,28,68,13,29,85,40,63,98,76,99,89,18,25,70,93,34,38,64,41,79,75,11,13,33,71,41,69,86,48,71,4,70,43,87,44,56,74,78,84,43,53,66,100,34,21,86,2,41,51,50,14,58,98,100,85,46,54,63,16,74,66,16,23,94,21,9,82,3,10,17,32,47,3,89,31,76,32,65,51,75,15,15,14,80,82,64,39,40,77,59,57,95,37,17,6,30,19,2,16,7,82,70,69,85,57,82,45,24,69,27,25,12,83,37,84,43,48,95,100,94,19,98,16,27,97,64,78,18,36,96,61,7,98,55,59,93,30,58,100,5,36,77,76,30,17,23,41,51,15,83,69,98,81,11,72,38,22,14,17,90,82,2,78,35,76,71,55,55,24,34,97,60,50,54,28,73,25,7,49,65,54,57,75,2,49,63,68,14,9,6,33,98,79,76,15,27,58,90,5,99,60,72,57,36,88,8,27,34,25,61,34,80,60,38,45,73,92,52,53,20,80,1,73,52,85,94,79,59,46,78,88,31,30,39,19,10,53,3,3,63,25,40,6,23,58,26,2,92,71,36,37,79,19,49,46,3,38,60,26,16,67,46,75,86,79,93,66,29,73,43,58,6,37,54,22,79,26,7,82,69,90,76,87,80,28,72,77,31,32,32,81,72,63,13,7,8,7,94,74,82,18,26,84,62,13,52,63,43,48,84,86,81,52,17,34,11,7,86,86,74,16,85,82,9,3,7,11,51,99,45,86,93,48,18,4,69,2,50,39,93,89,39,50,44,63,81,8,11,66,35,89,72,14,82,49,55,25,84,30,11,80,45,13,39,80,60,34,11,42,63,26,94,98,15,38,96,37,93,6,57,54,60,26,40,76,86,74,41,95,75,82,78,94,82,60,97,86,88,78,58,64,83,16,19,32,22,69,23,49,33,77,68,19,85,15,66,51,87,42,97,99,54,47,14,8,44,71,12,8,92,38,22,33,63,98,6,8,74,60,91,91,4,31,38,88,32,30,33,83,59,77,59,56,39,72,58,42,52,8,90,10,89,58,44,3,40,69,25,83,46,99,17,75,37,82,92,77,63,2,66,35,37,6,8,57,6,10,54,25,24,51,20,44,25,88,1,8,76,60,85,47,54,41,60,40,8,4,66,22,42,49,5,40,26,52,38,27,41,74,3,70,62,17,15,43,5,77,44,71,25,95,57,59,70,30,35,100,95,24,18,35,26,25,100,68,28,58,36,17,8,25,46,82,59,18,83,47,42,83,57,39,27,68,26,90,47,44,56,10,46,30,56,91,79,4,39,31,100,25,100,16,42,78,61,88,43,29,23,41,34,18,40,41,25,56,64,4,87,71,2,54,80,9,97,32,11,78,90,2,31,84,79,88,77,40,99,87,30,92,39,30,71,10,21,81,8,41,33,60,14,100,6,68,9,13,47,100,45,86,73,64,52,87,28,41,86,64,32,34,19,35,90,35,55,98,91,41,78,75,9,33,91,46,75,78,93,39,8,95,1,67,64,83,61,27,6,8,51,38,33,43,94,31,56,6,56,41,61,20,43,53,31,72,48,95,26,66,5,48,12,58,19,37,8,7,79,79,79,69,64,90,83,14,69,64,33,75,88,65,52,95,35,24,82,69,42,78,56,66,36,98,75,78,90,96,75,88,34,74,68,83,44,27,93,91,45,32,53,21,15,22,98,6,53,21,83,67,41,64,33,76,19,11,79,23,26,49,27,32,63,87,4,56,85,87,66,41,97,73,26,67,69,85,88,67,28,15,22,83,30,84,11,5,74,52,80,1,48,63,16,69,42,55,19,29,24,29,66,53,84,12,13,100,11,61,21,1,21,99,4,59,48,78,69,36,85,51,41,39,100,47,9,55,42,26,59,90,38,42,30,77,90,39,15,17,5,32,91,99,35,91,27,40,43,65,82,18,99,31,84,94,90,49,33,91,11,22,23,14,68,74,94,67,81,5,97,90,18,22,100,12,61,67,81,73,56,39,8,86,49,78,77,81,51,87,47,75,76,38,24,29,58,97,42,73,93,49,31,67,49,84,92,53,45,16,75,35,31,94,7,99,2,22,37,35,37,4,43,73,74,52,79,98,33,87,93,33,43,49,64,91,81,16,10,39,81,22,85,83,45,67,78,11,34,55,65,91,30,41,63,17,9,79,20,42,90,36,96,11,67,92,11,41,59,6,82,49,26,67,32,34,72,10,30,60,30,63,98,93,85,45,50,30,30,29,32,72,21,82,66,48,78,79,80,7,88,89,35,11,47,66,84,59,59,91,71,83,6,90,95,23,94,91,21,72,37,8,18,53,58,72,33,42,59,46,9,81,67,45,24,11,85,22,77,17,39,8,23,66,58,28,45,63,71,41,60,13,11,35,86,98,45,47,22,53,64,16,41,81,32,11,94,29,52,4,68,100,64,42,65,99,39,25,92,78,72,17,45,34,72,83,62,77,30,46,56,30,66,73,15,91,43,21,68,1,43,55,9,16,63,26,97,80,54,24,99,17,34,6,94,47,52,48,27,55,92,43,86,69,9,60,84,36,78,73,51,3,82,23,52,82,23,42,33,23,85,26,24,51,34,89,35,47,10,46,81,62,82,8,44,89,100,6,66,75,64,18,70,64,90,20,69,57,1,41,18,3,41,75,31,32,85,91,8,78,52,25,32,74,93,88,20,40,20,76,4,19,27,74,31,98,77,96,4,92,55,94,65,24,32,74,20,69,49,60,82,41,95,15,5,32,62,17,69,27,58,43,68,79,73,69,4,69,59,49,52,2,1,57,25,11,67,18,84,41,74,71,7,7,41,93,86,79,84,50,36,71,71,89,69,36,85,8,37,71,1,60,52,73,1,74,77,23,77,59,89,29,60,52,83,73,85,78,80,25,61,23,13,83,79,33,6,32,52,56,82,45,87,39,22,85,66,94,44,99,66,91,84,69,49,38,59,33,45,46,1,32,74,37,13,72,64,75,35,97,23,61,65,11,7,15,2,65,94,21,33,26,85,65,31,42,40,48,56,72,17,79,85,34,75,65,80,72,18,73,63,87,82,91,64,28,82,40,33,59,23,82,4,23,28,23,61,73,28,91,12,95,55,29,27,70,11,88,11,97,96,46,65,57,50,99,21,83,100,14,56,41,19,27,57,69,61,64,56,72,67,87,57,72,75,12,47,50,69,55,14,21,8,93,33,57,12,14,78,97,89,50,39,31,84,49,52,36,64,28,58,85,62,27,10,11,87,31,72,45,46,65,86,83,27,48,41,53,72,56,34,65,5,49,25,52,84,29,48,59,11,8,98,79,82,47,98,59,50,11,57,99,47,76,16,15,26,49,41,65,24,79,33,15,55,6,10,5,16,12,70,31,67,91,52,51,100,31,8,20,53,77,14,68,2,40,11,95,42,45,81,46,61,31,73,92,33,45,44,67,82,99,99,13,10,15,28,57,59,42,56,9,15,38,84,85,15,64,55,30,58,13,52,74,97,48,39,71,94,70,52,23,4,70,89,83,83,62,66,72,57,69,87,21,22,15,18,46,34,90,84,60,20,15,55,66,21,70,64,93,44,50,90,12,56,33,9,98,67,64,76,73,68,11,95,31,79,77,94,29,47,7,90,83,66,65,94,34,74,79,16,23,56,22,18,6,19,93,6,88,77,46,89,45,77,74,72,15,90,13,53,26,1,84,49,14,97,37,99,45,52,66,3,36,16,26,98,11,68,46,1,73,89,84,42,13,45,5,79,1,63,24,63,12,50,30,78,64,53,82,67,23,28,18,14,31,88,54,26,93,80,9,99,3,91,93,86,3,1,41,44,43,42,41,5,33,26,76,10,41,33,83,33,63,14,41,74,64,8,38,74,28,63,57,36,29,51,42,12,19,52,85,86,13,60,74,90,15,31,87,97,83,27,28,64,83,26,90,29,7,2,54,74,81,22,2,42,90,19,89,17,57,29,14,59,31,21,70,94,10,64,94,45,11,78,10,75,88,98,42,61,38,27,49,12,6,35,84,31,32,55,41,76,30,45,4,28,10,3,17,21,56,62,53,58,7,69,49,81,66,97,86,17,48,40,3,56,70,63,96,21,51,69,45,54,34,90,81,62,28,89,56,91,64,71,32,25,22,36,46,58,13,86,32,70,79,91,4,8,9,89,32,72,58,2,1,39,23,42,4,62,30,26,26,56,35,44,14,19,1,100,56,40,71,95,59,7,82,41,61,77,99,67,51,52,73,24,92,94,20,6,61,2,46,98,34,31,99,62,39,27,42,33,87,42,3,22,76,37,6,1,26,80,62,13,85,31,40,55,57,42,52,84,4,9,45,38,47,67,74,77,56,5,71,41,25,98,86,65,12,24,5,5,59,68,88,10,49,93,69,16,67,73,1,57,96,51,2,52,10,30,62,85,12,52,49,79,83,35,30,71,36,51,77,99,4,78,90,41,96,81,4,3,46,75,93,5,92,67,2,80,90,19,57,21,58,19,100,84,78,65,26,13,89,98,22,60,93,5,79,47,86,61,15,85,4,88,1,45,41,13,58,73,47,1,84,79,85,36,69,38,30,5,15,92,59,62,31,38,84,5,63,14,80,12,13,30,100,92,80,95,13,30,63,97,22,77,67,62,81,62,96,54,83,20,80,65,64,82,92,25,9,19,77,76,65,47,94,49,29,6,25,63,54,47,62,67,61,67,15,47,19,71,23,89,61,96,71,96,71,4,29,47,61,27,32,53,99,48,4,77,35,28,49,66,62,100,47,100,54,27,34,83,60,46,24,79,36,28,45,36,34,66,62,80,96,19,90,5,84,36,34,66,46,83,96,61,91,79,87,93,7,83,70,14,93,17,58,98,35,45,40,20,62,6,93,96,68,95,71,20,59,60,33,11,40,13,74,18,75,3,69,32,33,93,70,22,91,9,52,50,58,51,69,97,8,97,13,27,79,98,70,17,27,14,52,1,28,78,4,6,89,16,76,20,72,42,70,99,97,21,99,76,31,96,38,84,83,9,44,62,67,55,19,86,97,81,11,90,71,91,13,6,18,9,82,35,33,48,11,43,29,32,92,92,82,69,94,38,99,91,96,59,7,59,53,37,57,94,91,95,12,71,35,54,65,67,77,5,65,1,76,77,20,29,78,50,36,17,92,63,32,81,51,94,41,66,20,93,71,28,49,24,41,31,46,2,77,42,15,16,47,31,57,99,71,56,37,25,45,92,92,35,14,46,78,23}
{42,23,100,94,2,21,62,23,83,77,22,12,100,51,87,45,9,89,39,47,41,2,84,26,34,16,79,51,46,35,64,80,83,16,63,26,54,9,94,48,9,45,17,65,52,99,18,10,75,65,16,100,50,95,4,33,79,78,9,13,42,66,78,89,54,48,38,89,49,96,86,68,72,59,78,6,32,21,92,54,29,24,32,96,19,35,100,57,2,53,75,25,92,39,55,11,85,37,22,72,21,44,75,83,71,7,71,3,44,63,99,48,15,70,41,76,25,51,77,28,100,46,5,19,51,68,9,12,9,44,100,64,37,89,33,81,38,51,42,43,49,73,8,22,46,32,97,62,87,71,42,6,95,61,84,11,58,40,65,49,34,21,100,88,43,81,37,3,51,60,98,41,47,24,67,21,56,81,70,45,74,33,40,16,2,95,95,76,73,3,21,99,60,89,66,60,39,52,62,48,69,66,17,81,75,64,21,83,63,61,82,8,39,13,2,13,39,57,89,52,43,72,36,90,98,35,64,69,74,7,90,97,93,41,75,84,39,87,69,48,66,60,71,75,80,72,27,64,44,15,86,61,95,68,38,76,37,42,4,89,64,39,64,59,61,14,10,92,64,29,27,81,60,94,82,77,21,44,87,62,25,61,87,70,48,75,59,29,17,37,92,10,45,69,42,43,50,91,1,87,73,93,35,38,83,17,79,54,25,33,56,62,40,8,25,61,53,26,100,53,39,65,9,97,39,17,1,66,19,21,76,28,90,95,74,35,83,67,82,67,24,44,62,43,91,9,31,36,64,12,10,30,96,92,9,75,53,87,43,66,72,71,44,16,67,35,17,60,9,20,36,53,80,35,71,92,54,100,32,44,20,17,5,86,25,30,46,31,1,86,46,57,42,39,55,85,37,96,2,1,34,86,95,90,72,99,88,20,23,70,69,32,68,80,94,87,93,86,28,58,50,68,26,4,4,80,77,16,93,68,29,4,95,14,36,94,97,64,86,93,88,57,44,23,97,76,47,50,1,41,89,3,92,93,27,17,14,67,12,74,90,92,83,47,63,39,3,41,14,23,64,97,36,63,87,17,9,31,80,93,12,46,94,55,38,25,45,80,70,70,21,76,71,33,86,51,36,36,62,11,95,88,22,25,73,2,56,19,4,50,61,97,14,49,62,55,45,45,63,95,97,63,84,80,25,79,64,7,57,15,99,62,15,70,68,84,73,69,51,93,100,84,50,3,93,48,20,24,56,91,21,60,65,58,84,97,57,63,49,35,59,30,27,21,56,77,47,37,58,30,63,35,71,10,58,27,44,64,78,27,77,28,7,66,19,60,12,32,100,10,3,57,31,19,27,9,46,51,95,60,90,48,42,75,10,42,32,2,99,41,32,53,70,35,76,23,48,48,3,51,35,9,63,11,16,64,14,85,12,13,20,31,3,23,95,9,26,69,68,50,89,74,85,23,78,23,88,5,66,84,89,68,48,9,16,74,21,83,21,18,73,50,3,40,48,59,2,47,53,9,45,69,14,57,6,26,68,77,78,27,30,42,85,57,6,46,97,20,72,42,19,79,38,10,30,27,69,66,65,92,92,98,84,54,61,59,100,74,5,19,47,43,72,67,96,97,62,84,12,2,71,90,50,67,50,39,46,42,4,69,73,38,77,100,37,41,26,28,12,88,46,3,80,71,66,55,46,35,81,94,86,54,98,26,92,52,40,27,35,31,8,63,2,5,68,40,97,70,75,9,53,4,66,28,84,40,12,63,43,71,92,46,36,23,26,83,52,46,11,93,23,50,4,72,34,81,61,65,29,83,23,2,51,9,1,82,61,65,47,36,53,80,70,35,70,22,62,45,73,100,49,85,7,99,55,52,100,8,30,27,39,38,39,35,28,97,20,6,94,46,87,66,14,46,32,24,9,15,21,82,80,22,56,8,11,84,67,4,50,80,96,97,52,52,79,62,99,53,22,83,68,91,85,76,63,27,71,23,36,16,15,14,38,26,9,81,66,3,15,22,50,68,13,95,27,71,43,90,1,63,58,61,8,68,21,23,100,47,9,79,70,25,74,1,43,100,45,12,11,59,85,59,3,77,86,53,90,59,51,32,45,43,78,87,53,74,11,32,66,10,67,4,61,77,88,52,35,7,68,6,27,95,58,26,89,19,8,100,97,21,55,80,86,2,1,77,37,38,48,51,49,38,78,20,15,28,75,65,40,96,87,87,87,56,4,6,40,17,30,68,18,40,64,5,32,22,13,5,17,43,61,34,22,36,8,31,46,57,77,90,29,60,70,59,38,76,9,100,32,32,47,32,50,49,5,84,67,69,86,22,7,74,5,50,97,84,11,21,40,98,75,20,10,97,32,78,5,88,22,100,9,13,18,67,47,19,1,49,1,25,30,94,50,97,69,9,7,46,8,78,62,92,37,96,40,9,43,62,20,60,35,76,21,78,100,33,90,82,80,65,48,45,59,68,6,51,18,23,16,16,86,38,76,71,81,54,64,26,61,14,76,59,76,3,2,13,19,86,61,71,1,27,27,41,90,69,71,76,53,89,49,79,32,58,92,60,73,82,82,48,92,79,7,37,39,98,60,98,58,12,65,87,15,88,87,93,65,6,19,61,99,90,51,1,80,18,38,10,43,12,33,15,76,21,95,39,32,96,96,62,73,86,58,94,41,11,61,79,96,24,67,19,14,33,70,44,90,36,64,50,29,27,9,7,92,27,92,43,51,39,56,61,31,59,10,33,79,38,40,34,38,61,72,83,30,100,62,4,55,23,58,72,45,8,100,61,93,37,82,21,80,98,92,74,80,67,92,69,32,99,73,34,86,44,39,34,16,37,26,78,25,47,100,30,76,88,51,19,70,96,58,24,16,15,63,37,35,64,84,56,71,31,99,5,94,6,71,47,61,53,62,54,58,39,31,74,97,45,52,99,30,31,25,94,19,76,54,92,94,84,12,29,7,32,91,54,24,23,34,65,88,57,51,19,2,9,52,6,11,15,55,87,6,59,29,100,85,1,20,61,81,27,11,25,7,33,36,29,17,82,46,99,94,10,63,9,99,97,50,58,24,28,9,64,96,13,16,1,50,68,56,54,9,65,6,22,14,4,39,2,89,75,96,53,6,14,93,65,6,43,43,96,37,72,27,45,16,95,4,32,10,49,93,93,70,80,25,9,12,73,42,78,54,11,86,69,75,12,12,27,54,84,55,55,61,81,73,57,87,56,94,13,71,91,16,64,53,24,36,78,3,83,82,26,69,57,97,5,86,21,56,44,22,82,10,89,62,47,74,28,46,98,97,88,27,100,12,93,80,100,6,42,13,61,64,40,5,8,83,32,90,93,31,22,45,62,64,53,35,61,64,12,74,6,88,87,58,65,38,50,76,76,84,76,22,25,64,21,47,76,84,58,76,91,44,78,36,93,42,12,87,71,41,34,63,98,84,9,54,1,18,77,57,20,20,87,23,3,53,85,11,5,73,78,48,99,63,39,41,80,20,63,64,74,63,60,92,4,53,37,65,19,58,37,45,57,90,6,1,90,51,98,95,13,18,47,46,54,97,49,17,90,21,98,93,30,55,93,43,71,37,72,77,21,97,91,9,55,65,5,39,17,99,30,48,59,76,78,76,2,7,13,37,95,32,80,45,94,52,96,32,93,14,96,9,16,76,5,30,36,93,39,49,56,67,44,65,32,12,68,78,76,34,63,14,49,63,51,37,85,61,32,66,60,69,58,42,68,27,71,92,8,8,16,28,44,73,2,14,71,36,46,10,12,61,41,56,82,11,57,43,72,53,43,31,41,6,85,64,62,2,63,97,29,70,88,39,36,40,96,76,1,75,45,59,71,92,19,44,24,61,9,41,86,71,39,1,87,72,18,47,100,12,11,4,88,23,69,19,73,69,10,23,3,61,6,82,100,63,39,32,53,12,61,81,59,72,20,66,55,15,74,47,23,99,7,97,19,81,79,5,93,40,100,9,2,51,95,66,16,70,73,80,64,22,13,80,87,93,27,100,70,59,36,30,48,29,27,73,31,38,7,95,48,41,4,94,88,67,58,15,9,32,17,3,71,80,45,35,16,37,6,39,94,14,55,16,44,15,90,59,71,5,10,26,58,18,77,92,52,62,93,63,73,67,1,48,26,8,69,75,60,84,7,91,39,2,97,61,24,62,26,50,8,70,28,80,87,50,45,41,54,14,46,11,67,5,36,2,68,82,12,22,33,38,4,72,87,12,99,53,62,33,87,78,43,84,24,19,41,51,93,99,14,43,39,89,95,20,70,12,95,80,19,86,16,81,43,62,51,79,54,34,41,49,68,99,45,70,57,35,98,97,69,66,31,51,18,42,10,84,82,47,59,55,82,88,42,70,11,95,48,88,27,58,19,6,61,10,8,61,69,34,51,78,20,33,18,90,25,47,49,52,97,67,93,35,100,97,13,46,29,59,6,6,88,55,27,20,32,87,39,60,8,43,93,71,52,47,73,53,98,42,90,70,24,32,54,43,53,3,35,74,79,38,91,33,75,41,83,98,25,55,65,23,66,38,10,44,6,18,70,94,96,97,31,6,21,28,100,48,14,9,80,7,45,69,61,85,79,34,42,35,85,74,70,74,49,2,8,83,76,30,71,64,47,95,98,8,85,19,83,37,72,50,77,74,84,23,46,94,58,10,61,29,13,55,55,38,72,8,66,39,34,94,73,86,21,46,77,88,66,25,71,12,94,34,25,95,27,18,49,41,70,75,94,30,43,4,21,3,72,19,10,10,96,18,69,37,30,27,72,26,5,25,100,17,98,15,26,20,91,51,77,9,37,64,13,8,42,83,81,2,53,24,14,38,96,4,41,75,52,39,83,7,4,87,43,82,66,81,55,91,33,58,91,62,31,68,51,52,41,100,91,29,53,93,24,38,4,66,77,73,82,98,18,76,8,16,9,96,68,77,44,30,17,96,92,52,84,82,71,83,80,28,16,71,38,56,8,45,52,83,13,92,99,47,20,19,25,37,62,8,19,48,93,58,9,55,15,43,27,79,61,4,94,45,10,71,20,13,36,96,95,66,94,66,73,91,25,73,65,95,73,52,61,3,14,27,100,92,65,72,49,13,52,71,8,96,28,11,96,59,76,28,98,54,71,25,85,61,46,60,1,84,89,86,66,13,88,90,50,87,67,23,84,39,64,84,67,84,58,23,21,45,21,4,35,40,15,36,76,3,78,40,63,97,31,77,68,31,57,84,62,29,47,35,23,68,74,10,89,89,86,30,95,57,39,66,32,13,55,67,21,83,29,97,50,8,20,89,15,27,35,48,73,27,33,28,51,36,11,25,39,4,77,96,85,23,50,9,21,33,50,79,29,34,76,44,70,73,18,13,52,67,47,60,79,39,85,61,6,11,74,89,33,4,84,24,68,41,24,84,21,24,77,49,65,12,52,58,4,57,4,13,28,100,91,1,76,37,49,9,68,8,78,37,66,34,88,57,93,40,8,25,51,100,44,2,2,83,47,38,97,88,72,96,21,75,26,45,39,87,34,70,71,48,21,98,62,23,51,18,81,56,78,98,62,7,38,86,91,38,41,82,73,33,52,16,95,93,86,69,8,59,18,88,34,28,80,44,53,28,7,70,38,39,12,78,92}
{89,48,16,18,4,17,1,24,1,14,70,44,19,2,82,1,18,30,2,3,2,3,15,33,86,22,1,94,57,60,10,10,3,7,2,11,4,25,10,1,45,15,16,62,1,7,14,3,1,3,64,21,98,59,4,1,15,15,5,80,1,2,6,5,34,2,1,8,5,13,46,58,34,38,7,2,44,10,46,3,32,4,5,1,67,48,33,2,7,49,32,9,19,90,15,11,76,2,6,11,7,45,5,44,73,2,10,7,78,95,1,53,10,21,79,30,8,9,41,3,1,1,7,49,7,17,45,40,26,64,4,1,3,5,6,87,8,77,1,15,1,19,3,1,5,43,45,28,6,7,26,6,5,5,57,46,4,1,10,12,5,4,18,1,31,1,7,3,34,3,33,1,1,1,4,23,2,5,21,2,1,75,1,6,32,2,52,5,99,4,91,34,56,1,68,1,53,1,36,9,2,4,38,2,3,4,5,30,10,38,24,24,10,20,2,25,81,12,35,12,20,3,1,7,2,58,5,84,47,22,5,3,19,3,10,3,1,8,10,32,26,18,1,31,79,13,3,52,2,33,3,21,2,3,13,1,89,1,16,29,8,14,64,22,27,1,36,62,13,20,11,36,2,18,1,2,1,2,1,30,25,59,1,30,4,6,39,22,53,26,75,18,31,1,1,24,80,61,11,35,1,41,5,58,1,4,19,1,13,59,6,29,75,53,3,2,6,5,5,14,3,10,25,3,37,5,1,2,4,4,5,1,77,10,88,57,1,34,13,1,23,55,13,3,7,2,4,32,1,14,66,1,2,7,90,9,51,72,18,1,1,9,24,25,16,2,13,3,15,30,4,7,61,40,5,12,5,20,75,16,2,1,35,13,12,3,9,2,46,1,1,36,28,9,34,34,6,8,80,9,33,47,8,32,53,2,14,24,1,19,59,52,9,2,1,1,15,18,33,23,36,8,7,13,4,2,4,74,5,22,1,3,10,1,6,94,31,23,83,53,4,3,1,2,38,28,1,21,45,82,15,3,44,38,2,42,1,2,3,1,22,91,4,6,1,42,6,5,25,95,6,55,45,2,48,61,1,3,3,1,11,1,19,42,3,9,87,1,35,1,17,46,35,3,47,49,3,9,1,64,13,13,6,70,3,2,28,37,2,31,40,7,10,38,7,35,1,14,51,1,9,14,37,2,3,24,40,17,17,2,11,55,65,95,51,19,15,7,2,70,31,2,62,18,1,42,8,9,3,10,8,2,2,1,1,64,55,2,12,10,2,1,33,35,3,3,40,4,1,76,19,1,1,84,7,72,1,64,17,22,69,1,21,5,25,9,2,4,5,7,14,28,3,1,1,7,23,29,44,11,5,80,1,61,5,4,5,88,61,4,69,1,7,1,4,1,1,10,31,7,4,86,28,35,10,2,66,4,4,23,6,28,86,58,12,25,22,1,8,9,4,7,4,12,17,2,7,2,2,8,49,3,15,9,10,33,3,10,50,2,17,47,16,6,53,7,36,3,1,62,6,1,4,25,1,3,11,25,7,54,6,2,1,2,3,15,40,44,2,36,60,1,8,21,1,5,6,56,18,7,20,1,93,3,26,31,33,2,3,36,35,4,12,1,31,1,1,17,21,40,1,5,3,97,18,1,5,2,11,31,4,38,20,3,15,95,90,45,10,42,1,3,24,2,8,3,14,1,4,29,12,3,62,1,22,59,23,8,82,63,1,18,69,2,1,15,1,98,35,9,8,2,19,1,5,16,2,1,2,68,2,5,19,16,2,29,1,38,44,24,8,3,6,3,7,71,58,1,18,34,86,8,2,1,1,94,3,1,1,17,1,16,2,42,11,21,40,3,2,60,2,30,4,63,13,46,25,12,4,1,2,14,49,53,54,27,3,41,13,7,3,2,1,3,21,1,1,3,4,89,33,14,6,4,90,19,1,32,53,28,1,3,34,56,14,10,4,1,5,17,1,18,1,1,11,67,1,2,9,5,17,2,29,49,3,30,8,16,18,4,74,7,53,7,9,35,76,23,12,1,1,5,12,12,50,77,4,1,6,4,57,94,64,59,46,59,22,3,96,1,11,57,20,6,6,6,3,92,3,1,2,2,2,20,6,6,12,2,14,1,60,8,29,84,7,55,5,82,1,8,77,11,35,2,18,29,4,55,7,43,25,15,28,4,11,57,73,23,5,2,2,2,4,11,57,9,4,53,3,9,33,44,1,41,1,1,19,75,5,55,49,14,15,8,4,1,1,8,35,4,47,1,1,1,1,3,15,1,17,5,4,9,31,45,84,2,4,1,3,1,3,24,1,1,3,2,20,2,10,8,1,1,54,23,64,36,4,26,1,57,24,1,53,1,25,1,23,29,3,30,47,52,3,38,61,21,1,61,1,4,3,5,62,4,88,45,3,66,12,42,38,97,34,2,6,7,2,38,38,16,3,1,4,1,3,1,3,66,3,3,1,3,1,3,14,10,42,63,36,12,2,4,59,3,39,13,40,51,3,5,10,7,36,16,46,36,2,5,1,5,90,1,38,23,19,1,41,46,86,2,9,1,4,52,46,3,12,4,7,2,1,12,2,2,4,1,4,38,16,3,10,53,12,28,4,2,5,43,11,4,87,9,50,59,7,6,1,6,82,9,59,3,40,4,94,1,6,19,2,1,2,1,23,12,16,7,9,8,20,2,4,13,15,10,5,9,1,55,8,7,22,4,16,1,5,19,43,1,7,85,23,13,4,63,1,41,4,1,5,61,56,74,1,18,4,2,2,34,5,71,8,3,87,2,1,12,4,82,14,3,38,4,80,26,38,12,93,20,39,32,1,2,15,5,10,2,3,48,2,11,1,2,1,20,33,15,60,2,91,2,16,4,2,25,57,1,1,63,4,4,53,5,10,9,44,1,21,40,1,4,4,4,37,25,92,35,1,7,22,13,3,82,4,2,11,39,49,11,2,1,22,1,98,25,32,7,28,12,67,46,1,2,18,11,3,3,54,5,3,11,10,1,82,86,2,48,9,6,51,90,63,49,6,8,12,5,3,42,7,5,22,1,4,9,14,14,1,29,17,13,10,8,1,3,4,32,1,72,78,95,59,3,1,25,4,3,2,6,17,2,2,12,2,98,16,44,18,13,59,27,46,62,4,14,3,1,29,15,4,17,3,14,9,8,14,1,4,5,21,34,11,1,24,69,16,2,2,1,19,1,1,3,1,6,1,3,1,9,20,25,79,13,1,42,23,1,4,1,17,20,29,6,51,82,41,2,5,81,23,98,3,85,19,7,12,2,33,11,82,4,86,24,2,2,36,4,96,1,1,24,25,59,6,4,1,32,4,35,17,2,24,3,39,3,23,1,1,1,10,22,35,10,7,3,1,1,5,3,54,2,7,30,1,1,5,75,2,46,1,4,3,12,15,12,96,1,9,71,60,9,85,10,58,3,7,1,1,2,2,5,3,85,5,1,53,4,26,77,1,35,16,2,47,59,12,2,7,38,5,3,18,49,8,10,45,35,1,1,2,1,1,26,10,8,56,30,1,1,85,1,6,21,2,3,85,43,37,51,86,70,12,4,6,47,28,4,1,2,1,32,10,2,21,5,5,2,87,11,8,1,2,1,4,17,5,61,52,22,1,4,6,11,8,1,67,3,15,28,2,11,23,1,1,5,6,43,8,2,3,1,10,15,17,13,17,9,17,10,2,18,46,91,15,31,1,15,19,56,2,8,78,2,6,5,14,4,2,69,57,58,3,1,36,1,1,7,10,40,61,73,1,1,8,2,10,11,8,4,1,27,4,21,67,9,22,1,4,6,5,70,69,32,4,7,2,5,6,24,31,1,3,4,17,5,4,58,48,39,1,23,23,8,47,4,5,12,4,1,30,41,10,49,4,79,15,35,2,74,1,27,1,9,27,1,2,12,79,45,29,18,37,1,2,2,34,1,2,7,99,5,10,3,35,1,18,2,12,53,2,2,5,25,62,1,4,17,9,16,41,13,24,66,81,21,7,4,2,5,5,9,1,48,57,22,1,3,18,68,2,55,8,1,4,3,2,3,20,2,8,61,7,1,54,1,21,5,2,46,31,7,2,83,5,1,5,2,30,3,7,47,4,3,1,68,5,4,40,51,3,3,34,23,18,2,11,2,5,65,1,25,1,2,7,51,25,14,52,9,27,28,6,8,1,1,4,15,1,8,11,17,21,13,3,2,1,2,34,3,1,83,8,19,12,54,1,1,1,2,17,2,5,9,16,1,40,11,47,20,1,82,2,72,8,1,33,7,62,3,11,23,91,3,9,1,59,70,65,29,55,3,63,71,97,10,7,1,91,6,33,1,1,49,3,44,27,1,4,1,1,21,40,3,37,61,8,1,62,12,25,48,2,4,12,56,16,87,4,1,25,9,15,1,24,14,2,2,9,5,6,50,5,59,1,88,98,1,15,13,5,1,4,1,20,2,92,8,22,16,1,56,1,18,7,1,88,4,38,6,36,36,7,1,92,94,3,13,68,81,42,92,56,24,28,1,32,1,6,29,5,4,1,2,4,3,11,1,2,2,43,38,22,6,24,20,5,22,4,64,1,19,60,1,43,35,1,13,10,87,3,1,53,1,30,60,4,1,1,16,10,1,1,59,19,1,7,12,2,43,36,43,2,35,54,24,41,44,4,1,11,10,49,2,2,22,45,16,6,4,1,48,62,28,2,12,2,3,1,1,19,2,2,2,13,1,23,7,3,2,4,51,2,45,6,23,45,34,1,1,29,16,87,3,5,4,41,7,58,1,99,10,1,3,24,3,30,89,1,2,2,48,7,93,5,13,3,1,3,43,61,7,1,32,12,56,9,7,3,42,1,17,1,5,5,37,2,1,33,5,19,5,4,4,1,20,28,26,2,2,82,2,22,95,56,7,3,12,1,11,4,9,29,14,39,18,20,74,10,15,56,4,5,27,10,2,2,49,3,40,3,7,5,6,69,79,19,2,1,1,1,43,48,1,34,96,1,14,77,2,31,2,7,1,1,1,2,6,96,2,1,6,22,32,17,1,2,1,7,26,8,7,36,8,9,8,1,4,1,13,95,2,3,9,2,71,19,1,4,2,2,89,3,35,1,36,32,1,9,4,22,3,6,11,19,86,2,14,5,56,10,2,89,2,5,22,9,1,16,48,6,64,1,32,5,36,28,24,1,34,70,11,3,9,32,4,8,53,5,4,1,2,34,31,13,3,65,4,3,4,1,14,81,28,3,27,10,1,28,3,94,16,9,5,32,8,5,11,22,16,18,92,5,71,59,31,1,2,5,8,39,12,1,25,66,34,2,21,14,48,7,1,11,2,2,3,1,58,7,11,10,29,17,6,9,1,6,84,7,4,47,51,50,20,15,29,16,1,7,1,40,46,84,77,64,1,10,2,8,13,78,68,7,3,8,1,16,1,1,8,1,95,86,13,3,16,11,2,42,14,95,18,8,88,10,1,24,6,33,1,72,3,6,72,48,9,42,46,4,11,1,1,1,37,1,36,8,63,3,29,1,8,21,9,50,2,1,30,11,1,3,29,3,16,66,5,1,13,54,4,2,46,74,92,11,5,93,43,13,1,2,44,6,21,87,11,13,1,16,8,1,4,1,4,2,6,6,20,25,1,69,5}
Returns: 7.556891535961992E8
{81,60,77,57,70,87,7,1,45,34,15,33,80,94,38,51,42,26,9,16,77,51,11,9,97,76,89,61,37,29,80,15,9,69,85,41,81,80,83,65,75,74,41,65,27,71,99,83,25,15,73,19,70,42,13,74,33,29,9,78,27,43,87,89,2,72,4,10,95,26,81,82,46,83,13,82,4,9,86,24,88,99,46,41,69,43,53,23,73,15,75,22,75,36,23,43,67,96,30,12,48,21,9,44,63,2,23,65,82,77,81,67,44,86,90,60,55,35,34,47,62,72,27,36,23,22,73,30,38,18,65,41,92,40,26,12,76,25,19,99,6,68,60,38,71,54,96,65,91,40,87,35,34,48,45,20,63,49,61,57,73,85,96,46,59,50,21,53,4,96,4,62,82,94,14,20,70,31,17,17,52,1,14,77,9,66,13,77,99,47,27,69,88,62,84,49,53,41,27,11,96,37,64,25,8,3,82,3,54,8,28,41,74,73,63,92,8,9,6,85,32,14,30,69,98,96,87,6,61,88,56,99,8,97,17,95,13,15,29,57,59,64,6,39,31,45,27,91,1,34,4,90,63,12,83,43,95,12,3,77,99,36,63,15,13,27,90,65,33,94,27,29,84,26,39,33,45,95,65,46,70,13,31,30,37,3,2,32,48,35,43,33,73,7,23,87,29,82,21,2,6,35,80,73,50,51,57,23,5,52,51,6,8,91,22,79,93,96,86,12,27,31,22,79,70,41,52,39,76,45,86,54,96,83,61,90,88,30,91,84,26,1,49,20,34,77,5,16,51,30,26,6,52,76,83,10,77,48,36,84,57,81,47,84,34,72,83,9,52,25,56,73,25,2,7,95,35,58,22,27,26,76,27,24,71,52,38,85,15,99,93,43,64,7,33,26,96,91,87,85,56,19,57,77,21,40,84,75,40,32,62,18,52,64,71,19,56,68,42,31,12,35,60,87,8,96,37,72,96,77,60,20,37,4,22,70,68,92,98,48,8,79,30,65,52,43,89,80,27,99,87,67,84,96,2,1,77,1,45,78,7,30,79,14,38,83,58,6,5,31,96,75,50,41,31,87,14,49,68,36,8,60,17,61,61,91,48,85,15,9,85,95,11,54,76,37,29,5,38,35,33,43,55,44,70,38,84,36,4,19,81,100,94,96,83,4,17,73,54,62,29,12,5,32,66,24,29,31,33,20,4,37,18,79,4,53,35,11,68,22,98,14,44,24,56,8,3,11,43,56,85,29,19,8,75,38,7,75,82,33,97,60,1,95,23,23,73,12,67,74,74,59,45,74,87,90,63,88,64,50,35,45,28,19,35,30,10,8,66,20,83,22,76,48,36,77,54,92,64,75,65,13,5,31,45,94,69,18,32,97,36,93,6,99,26,96,57,93,26,17,15,92,55,93,44,30,56,53,44,58,52,97,42,93,83,96,63,35,99,4,5,53,23,94,31,14,42,73,3,70,11,82,44,6,84,60,34,28,63,36,51,94,7,9,1,96,89,98,61,43,95,84,46,53,31,92,11,35,38,54,56,96,31,39,54,56,39,74,98,24,40,46,89,49,41,28,23,88,27,19,59,10,62,14,66,19,59,35,63,88,95,100,26,87,52,57,77,26,12,78,94,69,10,97,82,43,83,86,88,2,15,47,15,49,96,89,75,61,26,32,32,43,40,26,23,97,95,68,27,33,85,75,2,12,21,16,35,90,75,83,17,54,97,73,38,98,14,72,54,80,11,36,38,94,11,15,70,90,10,26,67,95,24,31,55,55,50,79,46,45,98,70,41,81,79,11,22,50,8,63,57,78,23,38,37,76,43,60,32,41,78,92,9,18,92,98,6,40,40,75,27,78,17,53,95,3,99,45,2,6,24,79,32,11,99,99,11,94,76,37,70,60,38,39,33,16,95,62,14,51,51,1,59,70,57,21,37,9,9,96,40,53,69,67,76,51,22,2,86,85,93,92,21,47,37,88,36,51,47,19,56,49,50,69,73,34,98,7,90,76,94,24,36,67,37,45,5,84,68,27,70,1,79,60,11,63,7,67,3,96,61,70,63,26,12,52,46,68,3,62,10,1,8,44,57,45,64,57,58,30,72,54,19,24,8,9,77,31,64,89,1,32,66,50,86,87,58,44,34,18,61,63,81,66,39,73,3,52,10,64,17,85,27,90,27,95,54,9,30,67,40,69,4,58,54,73,77,62,9,53,25,85,61,43,34,28,97,3,84,9,61,51,59,89,2,21,43,77,23,21,29,20,27,48,39,38,37,6,7,28,67,14,14,41,95,46,88,28,29,92,33,88,58,68,33,25,87,90,11,38,20,17,96,58,60,57,54,62,48,72,2,76,29,26,7,78,74,8,21,33,54,90,41,44,53,91,55,34,66,96,31,64,27,22,39,62,13,1,20,39,54,70,1,84,12,22,50,83,81,61,61,97,34,82,12,71,88,4,38,60,7,26,56,90,22,81,11,55,27,63,49,14,99,23,50,31,16,54,81,31,45,61,6,47,55,58,53,76,99,15,36,23,85,2,4,62,6,54,91,51,64,41,41,10,67,58,8,24,4,10,5,10,33,51,68,1,45,12,77,86,45,91,22,8,29,63,96,24,70,32,90,28,79,2,56,90,81,96,87,54,10,53,3,69,80,31,41,1,13,59,40,76,65,18,90,85,86,60,26,21,80,79,82,33,23,73,13,51,14,86,16,85,72,84,54,88,34,70,92,80,10,85,1,20,52,90,75,57,22,93,49,42,83,1,61,7,71,40,6,43,33,45,24,51,87,34,92,77,28,35,85,47,20,14,4,73,64,17,3,27,39,53,96,74,48,38,17,30,71,88,56,2,67,37,56,95,99,77,80,98,80,44,16,1,75,5,88,75,47,67,71,90,22,5,14,91,25,84,49,5,21,57,79,25,96,70,8,22,100,69,17,11,18,49,92,70,89,73,21,75,96,21,42,57,6,90,34,60,28,23,91,51,70,26,85,55,70,22,90,82,67,15,62,51,22,38,16,72,28,37,60,89,28,64,68,95,74,49,58,79,49,6,70,31,44,18,99,100,52,87,13,77,18,57,89,20,3,70,7,4,92,87,34,78,90,92,46,97,74,76,76,35,94,35,88,6,99,38,6,73,82,50,1,92,95,87,65,10,1,23,49,56,36,81,53,49,89,56,89,79,68,98,6,89,39,89,22,4,97,30,24,60,70,88,30,52,71,90,52,53,2,81,52,49,3,68,43,87,44,14,23,97,98,74,61,88,21,58,65,26,3,58,100,6,13,91,86,4,82,6,33,94,95,37,49,94,90,31,2,6,67,24,19,91,85,21,35,96,45,16,73,70,17,17,34,38,40,13,56,24,87,19,69,84,36,20,17,85,36,58,91,28,66,55,34,55,44,70,25,58,22,16,50,79,23,64,21,3,72,44,41,48,45,75,75,7,55,56,14,11,38,42,35,90,75,19,94,30,34,41,63,82,28,99,53,19,65,78,26,31,20,11,90,28,31,18,21,21,73,43,53,90,87,94,62,66,12,37,87,27,25,44,89,50,91,46,24,79,47,44,80,32,100,100,62,17,61,56,62,41,50,59,94,38,34,97,61,28,51,24,91,66,94,7,37,53,1,40,45,97,63,59,1,7,73,6,16,71,52,50,91,24,64,90,61,52,77,72,65,20,32,100,25,48,47,28,52,49,44,60,19,9,43,65,40,92,15,8,23,86,6,30,14,1,3,88,87,27,74,74,63,60,89,25,19,50,57,54,29,51,67,1,75,26,36,12,55,25,7,66,100,49,17,34,56,20,91,50,83,89,87,15,30,76,5,63,20,43,45,79,80,35,57,12,3,32,4,34,5,32,52,45,76,25,100,70,88,17,34,21,28,64,38,7,89,51,90,70,10,36,63,73,22,74,60,68,4,15,54,66,73,51,19,65,78,60,55,10,79,19,98,28,92,61,5,36,94,7,84,100,61,47,26,38,95,100,9,61,76,10,86,68,11,64,4,74,40,16,43,100,74,60,1,33,77,88,29,56,40,9,93,43,7,93,46,76,2,89,89,18,17,81,71,91,13,72,31,49,46,24,98,3,99,31,40,13,85,87,61,8,95,88,34,93,46,16,10,1,71,67,22,41,56,16,51,56,14,78,60,16,88,68,57,63,85,54,39,64,12,1,16,69,62,1,22,23,61,21,70,59,49,49,75,80,13,59,65,63,5,12,35,4,53,94,20,93,22,78,19,36,69,60,72,23,61,6,71,8,72,48,68,82,17,98,100,22,72,53,4,26,87,62,49,14,39,35,28,89,41,100,1,82,20,92,74,52,38,67,25,52,13,66,76,68,28,7,92,8,97,22,81,29,35,49,33,21,89,74,77,74,10,14,26,43,57,65,80,64,100,83,10,56,26,93,67,79,76,15,73,78,55,67,38,12,3,13,78,96,52,26,44,57,69,83,3,51,87,45,22,31,76,39,15,100,92,38,14,70,80,34,8,39,74,94,69,75,39,29,73,58,75,37,50,26,74,37,83,59,54,91,94,67,94,88,96,57,75,73,5,40,8,16,34,54,25,64,73,17,32,53,75,43,12,26,38,61,86,94,56,96,85,60,67,19,1,53,7,30,1,24,92,10,10,32,27,65,30,68,28,89,90,83,96,10,60,35,85,76,63,7,78,50,53,50,29,89,85,53,51,11,56,94,57,26,87,86,83,30,88,26,94,81,28,50,27,57,24,11,29,79,95,40,15,69,71,63,45,80,46,63,64,69,11,5,12,84,79,50,30,94,35,17,41,29,95,39,72,74,3,18,32,67,54,61,15,93,17,90,49,69,69,88,14,59,71,66,12,83,86,20,64,84,21,26,96,46,19,25,23,19,2,62,59,36,72,65,13,12,69,27,57,99,42,65,34,64,50,71,10,2,98,3,11,19,21,17,23,86,80,42,44,13,69,51,88,22,44,26,47,40,80,12,6,100,85,97,77,49,71,15,16,1,72,29,9,63,63,42,22,20,2,75,94,64,59,78,38,67,58,63,8,26,67,86,15,41,10,2,93,55,91,38,100,50,13,83,23,81,84,56,56,52,81,71,65,21,18,26,34,8,43,40,17,82,30,85,79,91,6,95,34,5,50,98,9,81,95,65,77,44,11,76,2,45,28,85,52,40,99,99,83,90,50,92,18,36,1,50,78,24,48,88,84,41,47,62,13,63,99,77,17,36,68,52,30,84,40,47,42,91,96,81,82,7,57,64,5,17,3,64,20,32,30,23,13,87,38,24,72,5,78,31,94,4,4,68,99,60,97,46,33,76,9,16,55,65,92,92,65,56,53,18,98,78,26,20,56,38,62,55,36,84,49,84,79,21,55,69,88,73,87,55,74,80,26,14,7,74,89,96,60,16,73,100,88,61,71,61,21,65,88,64,60,96,7,98,95,81,18,10,45,70,47,66,35,47,44,85,7,60,63,2,15,52,38,2,55,15,74,92,11,55,94,1,55,33,67,26,79,17,61,32,62,3,38,59,95,74,98,97,95,9,19,92,48,86,41,62,95,30,48,49,85,74,66,69,49,87,26,21,65,42,53,64,81,10,43,91,62,40,26,51,18,23,71,72,15,14,92,30,100,94,72,15,35,51,17,72,94,74}
{57,70,100,19,22,45,15,23,84,16,13,53,58,95,81,19,3,76,87,37,29,50,43,69,76,96,90,89,45,84,73,86,22,55,77,50,29,77,3,7,72,19,62,21,26,52,37,39,41,81,42,15,68,75,97,83,46,28,48,5,2,42,57,74,13,37,91,98,85,1,83,10,77,91,52,58,3,79,88,87,60,59,93,47,68,8,68,53,60,2,24,86,95,66,66,41,18,68,34,26,71,96,96,53,28,12,69,99,62,47,23,1,8,50,35,79,24,61,62,30,49,19,39,80,12,5,68,77,10,23,97,68,1,4,12,34,29,75,88,56,67,45,71,34,63,55,16,31,88,44,75,69,80,68,14,7,71,1,1,6,64,62,12,18,1,84,81,64,8,18,40,89,83,20,85,75,5,62,39,51,11,81,5,26,62,34,8,92,93,89,12,64,96,12,8,52,15,81,5,25,93,99,99,6,14,25,52,86,28,93,82,100,12,44,87,77,85,17,67,29,5,12,33,5,28,82,98,65,33,35,49,51,99,80,3,84,66,5,23,65,56,74,48,54,70,17,66,68,77,98,7,69,62,70,74,21,81,91,92,45,54,99,57,38,61,50,95,23,30,5,70,39,8,36,35,34,44,86,78,80,85,6,14,28,99,85,40,2,87,36,29,62,58,92,9,79,70,58,90,15,1,96,70,77,65,34,40,63,15,50,65,30,90,29,80,24,2,94,81,4,29,69,42,86,20,78,96,19,52,87,67,47,10,40,11,29,82,97,77,43,58,58,16,88,38,41,50,41,12,75,58,61,13,11,38,29,37,60,21,40,62,40,83,21,87,65,28,89,8,97,25,64,31,76,31,26,96,53,6,14,46,84,43,4,48,87,14,14,82,11,26,70,3,57,21,5,50,73,56,90,44,51,6,32,95,72,7,84,42,95,71,39,51,29,31,18,70,85,90,70,91,21,43,14,78,57,52,9,17,75,16,11,21,39,78,24,59,28,53,73,70,19,35,11,75,62,93,14,78,40,68,44,63,76,68,15,58,7,26,80,40,45,20,25,98,54,62,70,47,80,30,89,27,25,16,86,67,98,42,39,1,46,22,48,94,54,67,35,78,5,94,26,73,1,4,55,95,74,86,56,90,82,13,62,68,18,33,65,2,61,28,94,87,88,6,24,32,53,98,65,61,6,46,71,52,14,89,71,42,59,62,55,48,91,82,27,45,83,13,8,35,53,59,92,20,6,90,40,60,44,64,58,63,54,78,20,15,39,57,99,62,71,83,83,52,82,32,19,11,94,21,69,69,45,48,34,58,74,18,6,97,41,89,85,45,55,87,66,31,71,65,64,66,26,45,77,71,84,16,93,59,35,11,58,58,100,78,11,2,17,1,14,35,6,19,24,71,64,84,9,71,27,74,52,88,64,96,4,7,48,7,73,77,62,13,28,31,17,100,27,81,39,18,9,91,71,51,60,24,5,37,4,86,53,6,3,36,46,10,86,12,27,85,18,36,75,28,82,45,98,55,58,72,87,61,82,90,91,78,25,63,7,40,41,29,56,30,21,66,75,82,60,34,96,53,21,94,25,62,18,53,44,15,25,40,35,87,86,69,21,73,56,82,74,4,38,81,61,66,18,89,49,56,55,82,88,77,31,35,41,84,83,10,74,55,95,100,95,11,78,9,12,84,73,19,75,70,68,26,91,17,76,100,26,69,100,24,55,45,94,27,87,98,62,95,66,50,11,10,47,12,89,91,38,64,92,65,60,57,6,26,76,32,36,24,27,26,51,1,56,61,30,1,34,52,88,60,34,91,44,86,6,70,15,78,49,19,59,24,100,25,5,41,83,83,15,2,53,99,48,72,75,56,22,70,70,66,83,7,14,31,65,43,2,27,35,19,44,89,2,71,56,69,93,64,72,72,44,88,41,46,94,85,53,26,44,53,26,88,14,84,87,59,55,57,90,73,54,80,73,44,24,61,68,34,98,83,83,71,32,80,25,65,64,64,53,98,1,40,29,71,81,16,24,89,25,59,88,56,71,4,61,15,2,40,70,57,96,67,34,70,56,71,44,64,28,36,49,19,1,74,83,78,31,48,52,85,73,51,33,17,70,84,59,42,25,100,35,35,88,83,62,66,77,28,57,56,14,69,39,67,54,62,70,15,91,22,54,4,57,40,69,51,40,78,19,52,52,46,37,19,94,25,72,67,79,95,94,91,83,39,82,91,90,5,79,79,33,78,82,65,100,12,54,94,15,34,98,57,96,93,44,24,81,84,25,28,30,18,27,94,36,29,60,76,4,63,61,41,54,80,3,45,16,16,100,33,46,46,77,86,29,87,34,79,9,33,39,5,78,4,68,44,42,43,69,31,31,33,7,53,96,61,71,100,63,81,25,39,87,40,18,32,18,56,37,89,8,35,25,38,59,91,92,74,99,52,29,2,35,62,51,72,77,1,18,10,18,58,45,33,21,73,36,30,85,76,100,28,74,86,42,63,43,57,81,86,8,60,24,12,38,81,100,17,52,26,76,45,82,83,79,65,94,70,98,56,83,70,76,55,94,74,80,38,91,46,1,9,79,100,64,24,58,62,85,49,4,33,18,66,1,68,88,32,90,77,54,56,16,30,46,59,97,68,64,4,52,17,97,64,66,52,73,30,85,2,45,75,48,40,31,42,28,19,32,7,19,42,82,97,59,63,54,23,24,27,89,67,72,29,16,67,16,82,3,64,76,35,21,77,77,59,6,94,91,72,55,4,37,20,66,42,29,63,75,15,30,41,74,7,39,39,51,51,53,19,70,43,73,65,97,66,15,97,61,66,99,61,96,61,87,9,95,50,57,6,11,8,6,92,46,8,40,30,20,14,83,42,19,27,51,22,42,61,7,82,83,21,69,7,23,53,68,98,92,7,5,74,97,22,30,41,46,17,59,66,57,90,21,98,12,13,92,51,98,98,31,10,100,62,77,35,94,26,28,56,60,71,94,100,52,86,39,37,59,24,84,68,40,51,51,50,38,44,72,16,75,50,34,21,69,71,35,13,41,58,80,31,60,55,66,41,40,37,28,60,73,76,52,16,32,28,2,42,54,49,91,38,88,93,91,100,3,88,96,17,78,43,47,86,12,23,64,71,62,29,76,80,60,2,12,81,58,59,56,95,50,8,15,53,5,75,95,97,12,97,77,24,40,7,27,53,19,18,41,8,73,83,93,45,83,73,13,74,2,63,76,22,29,42,43,96,26,27,68,85,68,54,12,23,41,37,86,14,17,14,96,56,22,47,94,91,27,89,19,23,28,37,64,74,29,21,11,8,90,90,93,26,8,26,31,60,56,46,80,7,53,90,29,78,17,93,99,84,56,79,51,80,28,80,36,9,56,10,6,75,100,69,81,76,45,64,61,99,37,57,92,56,82,36,27,95,20,31,56,76,95,39,49,47,93,42,33,83,48,28,15,82,79,15,55,8,16,99,52,15,40,14,1,29,97,73,70,4,60,50,89,98,36,87,61,26,13,95,50,71,62,38,95,99,48,24,61,62,53,57,32,9,92,16,78,18,76,10,64,26,74,89,76,68,73,48,62,1,97,33,86,7,91,62,67,90,27,73,5,20,73,11,78,48,74,82,1,45,57,15,2,77,76,25,43,30,52,57,86,38,23,94,32,57,96,18,42,50,69,69,15,5,100,45,27,30,26,33,97,91,41,23,47,67,43,92,89,18,60,96,99,16,6,8,70,10,74,85,60,58,8,34,26,6,10,53,94,76,88,2,10,55,18,53,37,19,37,22,39,40,28,52,83,74,100,72,6,95,43,89,67,67,41,2,93,28,95,56,30,41,59,73,98,36,14,70,22,15,43,11,12,90,63,92,51,97,17,46,25,28,56,23,5,8,32,54,26,65,65,50,98,61,78,38,43,32,67,51,20,72,33,14,25,89,3,82,90,10,77,78,69,77,40,79,38,29,38,72,53,4,62,73,72,13,38,86,99,80,33,95,100,32,63,59,12,44,5,8,20,14,80,49,47,58,57,15,96,52,64,15,4,45,4,3,68,6,17,12,60,4,5,42,93,90,82,88,79,36,44,43,90,33,99,50,60,52,94,44,42,53,43,28,26,53,59,77,95,98,43,52,50,3,64,30,24,37,81,29,71,33,50,23,87,95,9,79,58,49,74,47,76,80,35,67,15,32,33,33,29,38,73,45,41,51,60,68,68,31,52,82,78,25,63,59,78,32,30,63,22,16,96,11,47,78,63,57,83,26,94,85,20,25,7,17,97,31,7,38,37,95,81,41,52,89,13,64,76,10,1,4,67,91,95,94,5,53,59,69,38,40,13,14,14,6,23,94,42,90,10,22,85,41,69,29,62,76,31,19,26,84,77,60,72,3,35,15,69,58,49,24,100,97,36,92,10,85,34,35,51,23,17,52,46,12,66,74,64,19,77,46,23,70,49,34,38,10,16,64,23,94,50,26,36,4,77,22,33,67,73,96,67,74,92,87,84,55,41,94,1,76,97,23,48,52,98,2,64,75,16,44,36,54,6,12,23,58,36,12,39,23,7,10,49,68,18,14,87,19,73,16,28,89,8,12,38,10,60,61,56,53,54,34,13,75,36,34,30,67,47,69,39,79,68,6,32,71,20,77,65,77,67,17,59,71,99,19,68,70,25,3,54,13,76,76,58,24,14,64,35,4,41,18,54,31,14,36,26,68,18,22,92,70,94,95,43,20,71,75,72,85,66,7,91,82,68,93,74,10,74,20,57,75,46,47,91,90,12,41,29,67,1,79,58,80,57,54,61,54,84,44,81,36,75,71,68,10,96,23,85,14,39,24,20,26,5,81,43,38,53,36,74,35,27,61,55,26,85,27,51,76,47,56,85,59,46,55,64,66,68,85,80,48,71,80,40,63,18,70,21,29,80,18,93,48,50,91,85,87,44,16,58,58,20,64,25,1,66,53,64,57,22,67,83,44,52,77,31,4,12,14,100,97,55,5,12,77,69,53,94,49,85,55,4,56,47,28,7,95,39,95,14,68,37,43,49,59,90,21,50,51,39,8,1,100,37,94,68,91,5,67,29,73,3,9,91,46,14,19,40,62,34,69,1,35,75,6,89,8,44,88,52,93,88,11,91,81,98,49,50,91,1,91,22,94,33,85,26,84,28,55,5,44,56,66,62,36,40,36,8,27,76,2,78,28,37,38,8,65,52,9,72,62,46,50,98,44,64,78,62,99,27,57,39,51,47,57,6,9,71,89,83,54,38,44,68,16,16,85,17,68,20,26,57,55,27,83,8,95,80,34,82,99,8,32,53,41,2,91,78,98,47,7,57,41,64,76,94,49,5,73,86,43,12,25,63,97,5,22,89,35,28,45,92,11,89,81,71,25,23,15,34,16,34,61,54,84,10,98,25,56,51,15,85,38,37,88,20,15,13,92,45,61,7,64,46,45,84,28,92,90,87,24,47,46,42,14,36,85,98,27,13,22,16,14,17,94,41,68,3,99,86,38,58,1,85,49,93,77,16,83,85,57,45,35,37,54,15,4,62,36,2,2,3,43,40,81,68,57,60,20,19,78,5,76,16,63,40,28,58,65,45,22,98,57,43,85,30,34,42,69,92,28,46,13,68,98,41,81,84,16,14,66,27}
{28,79,69,80,2,27,90,31,84,24,92,100,31,72,52,31,76,1,74,4,84,37,54,74,49,32,4,75,73,7,79,84,3,42,28,58,24,67,6,99,88,87,48,47,61,40,5,36,61,13,82,42,17,16,7,66,66,64,59,37,29,71,93,6,89,78,41,21,99,65,66,90,1,46,8,69,24,64,78,59,78,38,42,84,18,36,38,75,76,98,93,12,3,20,40,67,88,73,20,29,14,51,50,50,23,33,35,84,64,100,64,86,68,84,100,40,63,70,36,59,38,97,38,58,69,36,8,12,23,91,79,96,41,44,16,41,72,47,47,40,3,87,45,57,91,44,39,73,46,33,61,65,45,45,79,53,26,82,31,3,67,73,38,71,37,46,20,63,44,44,47,81,62,17,34,73,24,62,45,43,38,43,25,11,44,94,52,26,81,31,94,85,1,62,45,44,59,58,57,6,3,38,80,30,17,36,49,22,73,20,92,79,75,91,97,100,91,30,59,2,73,31,76,79,94,57,29,81,21,17,28,22,89,37,20,11,75,66,15,37,22,51,58,75,60,54,31,58,20,70,20,86,5,89,2,1,10,83,78,83,54,67,30,24,57,95,73,83,79,49,83,74,96,75,66,10,5,17,25,92,50,78,37,59,16,78,37,99,38,97,37,70,12,48,78,11,41,100,11,9,37,24,81,22,62,65,41,95,86,27,92,79,1,14,90,11,67,75,89,31,49,9,37,85,88,12,39,15,40,74,29,41,68,21,85,26,39,33,6,42,24,77,73,76,51,98,61,88,61,19,52,48,73,37,45,34,62,65,6,78,28,8,30,38,89,85,18,47,48,43,92,60,2,2,61,58,8,7,75,70,75,96,59,15,13,77,40,37,75,31,86,47,95,22,28,5,11,22,74,43,78,52,77,79,92,14,56,78,8,94,69,77,37,52,77,57,67,10,15,17,21,47,20,3,6,39,85,56,68,72,65,71,77,68,50,93,16,51,49,54,42,34,93,91,4,22,6,20,89,20,4,5,72,74,22,4,91,99,67,5,75,8,94,17,77,41,2,29,34,61,18,79,7,89,25,11,87,95,26,72,72,51,31,76,25,44,45,63,55,86,24,81,98,56,54,54,29,77,35,46,45,99,66,60,75,5,15,30,88,97,51,12,46,80,89,5,71,19,77,46,15,89,2,64,63,43,51,22,79,74,7,57,31,59,70,78,99,32,61,34,61,100,14,18,18,15,38,51,92,91,54,95,66,79,71,55,80,71,52,31,56,84,88,70,8,31,62,74,36,65,98,33,11,58,84,15,21,27,34,64,86,88,7,79,62,20,87,61,98,11,57,90,96,4,58,62,13,72,35,63,93,17,20,12,1,66,94,64,1,92,80,22,7,24,21,66,33,96,70,12,83,29,100,68,77,88,12,74,15,16,67,65,7,12,27,6,99,47,6,82,17,74,1,87,45,60,35,21,22,74,16,100,18,31,69,69,98,84,4,34,45,99,84,73,42,2,92,4,38,59,98,88,75,22,46,86,14,98,52,34,45,79,26,44,35,36,55,37,64,95,10,98,60,16,30,34,11,15,59,76,9,32,70,61,86,93,14,24,82,92,86,64,79,7,64,76,63,74,28,90,9,74,16,25,21,96,80,64,34,20,60,24,77,25,82,45,42,10,7,12,11,98,28,16,74,51,42,62,12,7,31,73,36,30,32,72,8,7,63,83,2,24,62,60,19,16,17,55,26,28,1,33,29,30,36,41,93,63,24,37,70,79,4,37,89,68,29,14,52,86,19,76,87,94,36,7,92,6,62,30,42,44,56,15,33,58,51,57,68,32,64,70,34,84,36,46,46,53,8,88,91,91,78,80,58,93,53,28,22,59,23,93,68,14,34,48,2,24,43,96,95,91,54,54,60,68,32,7,35,98,82,68,59,79,66,96,36,58,4,75,16,57,56,48,43,9,54,14,49,78,75,86,40,51,19,21,46,48,17,24,77,75,95,59,92,12,31,25,69,88,44,71,11,90,34,94,67,89,67,44,93,49,96,43,78,57,12,81,30,61,56,80,61,57,57,15,63,84,100,27,26,67,61,5,29,60,25,72,36,2,61,4,52,34,56,94,58,68,56,88,19,36,1,40,28,75,12,90,42,74,59,14,28,8,75,66,75,21,10,30,95,13,82,1,65,15,50,34,86,66,98,28,43,93,67,81,97,13,23,3,76,27,55,52,97,18,55,90,49,38,14,16,20,51,88,19,44,99,86,90,39,84,89,32,33,60,30,53,5,14,87,40,5,54,26,7,26,99,64,40,87,69,66,97,26,84,25,73,37,86,72,27,4,69,96,19,21,27,46,50,76,24,74,70,90,65,57,99,83,60,29,8,26,77,90,98,96,24,28,97,33,57,37,69,37,58,32,60,72,15,6,21,14,50,91,91,74,18,58,93,35,68,39,39,95,64,10,75,35,48,49,49,78,94,74,49,52,88,13,65,32,74,4,1,24,53,71,6,67,3,67,7,97,13,60,86,30,33,88,4,55,52,3,47,23,18,2,82,32,25,45,99,11,5,34,61,52,56,84,11,56,39,85,52,6,3,84,88,14,70,84,99,81,23,52,24,96,57,62,63,70,23,24,23,83,6,19,95,54,86,81,23,36,9,22,91,22,83,97,69,42,56,45,56,75,41,1,14,99,34,32,95,25,7,74,56,13,47,55,17,92,34,52,20,69,9,84,26,54,82,77,65,14,99,9,19,1,6,23,60,29,89,71,33,16,75,4,66,10,68,84,1,51,44,19,17,73,29,73,11,5,78,9,79,45,98,47,76,1,86,17,45,24,14,81,60,26,34,89,84,10,98,94,26,81,29,49,57,26,58,18,84,51,95,33,56,11,25,19,71,2,95,76,53,37,23,7,88,49,56,77,46,69,3,41,63,69,3,90,35,2,6,30,33,42,23,16,86,12,35,63,52,46,92,96,52,27,41,44,78,44,57,25,52,2,61,97,79,27,50,38,43,30,67,78,81,20,57,43,31,61,2,6,38,48,4,96,1,90,21,88,91,26,8,53,62,26,57,24,66,16,6,25,40,78,90,98,97,75,74,38,75,1,79,94,6,76,82,73,84,94,86,97,64,78,63,27,5,45,7,72,95,88,79,32,49,64,86,20,32,17,22,12,4,47,80,59,18,54,73,76,66,61,92,85,4,88,17,68,23,48,3,100,100,50,80,28,78,84,57,21,83,77,39,30,5,45,94,3,56,100,21,10,83,56,25,40,15,10,90,84,33,39,87,30,79,65,92,33,63,80,47,9,75,31,100,7,97,71,17,7,92,74,92,59,43,15,9,63,49,54,29,26,17,92,51,11,28,64,52,9,42,16,25,21,76,48,87,27,80,38,13,67,82,66,25,41,61,85,54,38,75,93,45,74,37,24,52,25,92,94,71,73,51,92,83,59,32,68,76,90,12,44,98,55,84,94,8,80,22,2,20,20,81,8,67,40,73,1,67,9,49,82,64,33,40,76,69,39,30,100,67,80,13,31,52,7,96,44,79,11,56,81,6,57,97,43,21,4,91,65,62,98,14,33,21,56,25,64,38,74,82,46,20,61,90,79,50,30,29,20,49,4,56,44,69,28,47,95,43,71,29,87,88,3,67,45,89,53,56,63,35,75,38,52,26,99,91,19,26,38,100,25,55,16,3,61,63,10,16,27,6,50,13,45,7,11,12,55,87,97,11,3,91,85,22,82,4,3,81,77,57,16,43,70,33,68,28,28,8,74,56,5,79,69,97,26,35,99,53,5,45,58,21,65,59,30,93,18,19,97,44,35,68,3,60,4,23,44,96,55,76,95,6,58,6,98,26,56,21,93,4,37,67,66,11,47,63,98,32,85,22,16,8,23,74,1,82,67,87,21,13,97,13,1,42,68,17,15,27,51,34,35,13,13,15,5,75,44,80,45,54,100,27,24,4,36,37,16,66,75,69,17,58,92,77,36,52,82,56,84,25,92,97,81,24,54,29,21,69,59,39,26,44,47,100,60,33,72,48,12,11,25,62,68,46,40,3,50,32,46,40,61,77,35,26,28,52,13,58,67,35,35,55,44,17,76,77,11,77,99,42,3,100,22,14,30,4,92,97,22,13,71,38,34,44,33,5,56,90,65,28,59,41,15,79,36,6,30,14,100,20,43,28,58,69,42,48,5,87,80,50,96,9,18,81,71,74,91,84,10,41,28,26,71,59,28,77,72,73,93,50,12,5,7,52,42,99,6,21,92,6,57,81,52,90,12,93,8,20,42,2,88,69,6,17,47,54,95,37,87,47,63,6,38,7,8,81,72,35,92,91,63,87,71,100,94,81,76,46,57,81,54,33,72,83,56,80,39,11,65,91,36,80,56,2,42,36,43,14,5,25,60,20,65,58,62,3,71,86,97,43,37,60,53,56,74,40,82,70,70,76,75,75,72,42,25,1,62,64,81,14,48,93,13,5,48,53,82,85,15,41,12,25,29,63,79,59,5,77,56,7,26,30,29,5,49,24,18,78,21,81,78,69,95,27,76,19,10,47,43,83,12,79,17,2,65,6,61,54,79,63,56,90,66,81,15,81,55,81,42,18,81,65,14,80,85,99,99,94,82,15,90,41,91,39,10,9,27,55,24,30,34,83,40,33,64,91,32,12,64,88,74,28,8,89,63,65,91,8,96,17,21,12,93,1,41,82,49,90,89,98,14,22,79,42,37,30,71,15,54,79,16,31,74,90,69,48,81,1,26,45,92,61,43,88,73,20,53,44,40,4,66,23,49,9,69,93,65,40,3,75,9,1,22,15,47,22,51,8,21,77,86,89,7,27,69,13,46,13,88,10,48,55,2,44,2,37,100,93,77,5,56,57,95,50,91,3,7,78,5,87,74,82,100,24,67,28,6,42,97,12,70,11,40,50,74,32,100,69,36,87,24,82,47,31,7,73,88,76,84,64,19,51,34,17,28,79,26,85,44,96,73,67,98,49,39,81,29,85,52,49,55,8,56,10,72,94,100,47,9,19,44,86,10,50,89,24,60,99,31,51,84,68,9,54,94,45,17,33,36,13,3,10,24,10,33,98,100,44,74,60,92,33,41,14,48,62,36,54,62,35,94,67,91,59,70,21,65,15,5,11,73,56,11,89,93,21,75,36,85,76,80,9,38,74,92,79,94,73,21,43,27,65,7,33,67,36,26,50,97,68,30,3,32,25,52,77,23,28,25,33,4,100,56,35,73,8,77,94,79,81,5,29,68,32,65,8,56,16,48,52,74,28,79,57,52,59,45,90,30,74,47,83,22,89,84,75,21,6,60,96,91,19,52,82,26,16,27,41,66,72,28,82,15,85,84,90,77,24,4,69,64,98,40,48,79,51,78,36,14,46,45,13,100,11,50,69,5,25,96,15,24,66,26,79,45,69,35,19,40,21,22,100,99,82,85,77,8,19,89,4,18,58,43,65,2,46,43,32,33,13,24,25,49,13,45,33,84,49,19,16,66,29,65,62,62,35,14,39,66,81,43,72,88,80,79,76,87,82,4,3,49,19,43,81,57,56,21,76,67,53,79,96,9,66,8,99,81,98,97,88,7,16,94,89,48,46,14,23,36,73,22,40,10,43,20,28,84,80}
{51,96,84,24,3,16,9,82,83,19,55,74,71,52,64,73,17,44,95,99,91,3,42,19,15,81,33,31,42,4,40,44,36,83,46,89,36,10,70,75,57,14,55,82,73,42,66,61,9,69,28,25,16,27,51,45,77,33,48,94,17,6,82,40,54,91,79,58,19,48,75,23,38,9,44,38,15,95,75,72,26,62,5,14,54,43,37,4,36,83,91,56,9,100,18,73,54,30,41,49,47,13,11,56,98,33,31,62,75,36,51,29,43,50,16,50,54,73,92,100,49,28,8,13,91,40,33,73,83,83,59,38,60,13,32,44,32,20,36,3,17,62,41,53,37,57,96,19,99,91,51,44,14,40,96,34,26,21,39,27,28,46,4,32,54,8,39,10,30,25,96,2,33,60,91,60,98,18,48,48,81,9,33,31,16,48,60,73,77,55,51,37,86,96,76,67,16,69,88,67,83,78,82,64,10,40,87,84,60,98,99,63,1,2,15,39,84,49,1,15,32,70,90,4,68,79,25,32,92,60,23,91,10,52,51,70,28,4,17,19,60,54,81,80,93,51,21,58,88,41,26,42,64,35,10,34,13,29,90,20,67,46,31,100,11,61,19,100,75,28,60,94,28,7,33,11,74,10,49,42,54,85,82,26,12,13,45,76,38,7,68,99,83,19,28,78,44,84,55,97,91,80,2,66,87,51,34,6,17,1,10,86,100,91,18,46,85,35,89,75,10,70,6,15,72,62,67,7,30,12,10,39,35,54,71,40,95,77,51,10,56,37,4,28,4,24,72,33,94,100,97,60,41,59,16,11,21,27,66,37,78,18,61,50,85,36,4,18,99,30,26,53,4,61,8,76,96,40,80,34,7,2,10,47,11,15,17,78,59,41,68,72,41,59,85,26,46,90,35,68,24,85,75,59,7,17,2,61,70,48,11,10,31,78,7,78,13,24,6,32,67,40,25,87,90,92,61,93,2,71,5,18,75,53,20,81,16,46,12,10,26,94,29,47,20,87,80,76,26,80,44,8,19,24,4,67,21,27,84,85,83,64,9,80,77,9,42,67,92,4,79,54,35,71,79,4,99,7,38,28,11,75,76,86,39,40,20,68,78,98,25,53,53,49,52,96,34,43,62,43,22,6,54,53,31,50,95,79,29,63,31,95,33,19,74,41,94,88,91,14,11,58,93,90,36,82,40,5,8,42,43,27,76,94,21,44,23,48,40,100,82,75,1,46,6,77,100,15,100,53,25,4,51,3,41,90,54,18,96,41,33,93,21,60,81,35,38,23,39,3,62,46,48,36,60,11,68,39,4,18,67,61,25,55,12,20,86,25,98,39,97,56,49,10,60,74,16,36,10,47,88,93,83,86,66,13,90,73,73,8,34,50,52,63,21,68,22,59,57,54,22,24,36,62,57,89,30,76,42,91,82,56,52,65,7,51,83,68,70,67,16,16,82,51,55,38,28,14,72,30,68,52,57,34,15,3,6,86,13,58,47,49,61,31,3,96,60,21,30,14,27,20,79,69,50,74,24,28,30,52,97,24,19,61,61,26,57,53,4,21,29,34,26,9,58,68,39,80,45,48,31,86,12,7,2,9,43,86,97,94,85,64,77,64,15,77,84,90,40,34,47,6,94,3,75,38,62,80,53,35,30,96,33,45,2,35,79,6,84,88,63,97,61,26,66,73,17,50,59,13,71,62,83,100,100,33,22,18,33,24,23,40,62,10,64,1,24,48,82,77,55,70,48,4,88,93,42,75,13,17,26,66,63,22,93,86,14,76,70,12,20,56,26,94,97,6,9,64,11,66,2,22,70,77,28,23,47,12,90,16,18,54,71,18,58,56,100,74,14,99,76,58,10,4,77,1,65,93,23,22,73,39,30,95,58,17,66,55,73,67,1,10,98,60,97,73,62,92,6,34,39,52,51,93,94,72,99,79,52,11,55,37,1,30,43,92,86,76,75,81,89,40,1,14,14,62,15,35,8,84,49,43,69,49,81,92,67,66,8,97,15,3,9,74,93,28,34,69,100,73,4,63,63,1,1,22,99,39,65,93,47,86,86,70,31,82,82,39,42,48,34,32,12,3,22,51,6,76,54,82,91,33,52,82,93,22,80,92,56,87,59,35,59,45,5,74,28,56,69,23,100,13,55,58,70,58,72,11,29,32,85,52,87,84,3,89,9,19,86,89,79,90,49,88,95,26,55,37,91,52,61,56,58,87,67,50,64,70,6,30,90,52,35,59,68,81,89,90,12,14,60,59,2,32,17,79,38,53,11,17,64,14,100,14,63,59,73,24,30,60,100,33,75,98,63,58,13,56,78,52,27,24,94,26,73,22,1,23,95,83,51,23,99,57,8,12,14,32,98,94,1,66,37,53,87,70,22,15,62,95,85,36,88,79,7,18,50,53,33,37,5,2,72,23,97,7,54,95,6,96,29,60,69,55,15,100,17,67,34,79,9,28,12,51,44,60,46,6,29,81,7,77,86,42,19,70,53,61,59,57,100,35,81,12,67,72,75,68,45,70,82,73,22,64,6,37,92,60,16,87,85,28,76,1,90,32,45,57,39,72,20,87,20,53,88,73,83,1,59,52,70,47,37,3,80,30,47,72,35,80,33,71,51,15,67,59,98,65,98,93,9,64,57,36,67,25,15,51,94,63,92,7,59,90,100,9,44,54,65,5,63,37,100,11,14,18,28,3,33,96,28,12,29,64,89,13,73,73,6,28,27,32,85,18,23,72,77,24,46,56,72,10,63,10,11,48,38,44,94,26,95,61,18,95,27,67,37,3,64,70,38,71,45,76,70,3,19,28,72,68,8,76,25,71,49,99,80,81,12,39,80,27,29,23,50,29,78,22,44,14,56,66,21,63,58,26,52,38,76,69,12,63,82,23,15,84,22,17,91,68,24,19,100,96,11,47,84,83,5,41,26,41,79,43,10,65,56,71,90,5,48,9,93,75,19,48,78,94,51,6,78,45,59,21,13,29,64,87,67,12,9,38,48,66,18,86,44,3,73,71,8,73,85,27,48,80,59,42,33,48,79,73,26,77,20,91,88,65,95,17,70,84,23,88,23,74,83,90,13,72,71,2,19,94,41,50,50,55,50,62,44,80,59,58,4,27,81,79,99,50,60,69,45,38,94,17,37,96,9,87,47,77,51,26,87,27,96,58,26,92,86,80,6,13,9,20,8,56,54,78,43,23,50,8,10,58,84,9,98,83,68,94,33,90,88,79,5,96,8,24,12,44,80,53,58,96,95,56,49,42,93,75,84,31,10,25,57,80,1,47,12,95,23,95,55,36,94,92,99,57,92,66,15,87,50,27,22,58,40,36,51,33,12,29,21,67,72,60,87,17,53,71,79,24,88,40,58,99,98,33,64,3,15,31,19,11,39,58,62,88,55,72,78,13,36,84,82,32,24,49,70,18,28,64,25,35,34,73,39,64,66,74,17,89,29,9,100,40,55,62,72,47,94,2,88,2,76,90,43,22,94,91,25,40,98,67,44,40,100,83,63,69,25,84,75,83,19,59,76,68,41,88,91,93,45,12,13,81,22,63,68,43,68,45,35,57,48,14,75,87,42,82,3,97,36,49,69,39,81,70,77,30,64,18,38,44,25,67,58,35,71,67,82,49,24,52,78,85,31,91,7,82,3,9,4,80,68,8,67,100,19,48,41,89,33,90,73,57,26,83,33,29,70,13,61,3,2,83,84,40,48,24,96,33,8,53,75,37,17,30,33,23,77,18,38,54,40,48,86,33,61,11,99,2,97,96,54,68,87,3,22,11,50,94,18,18,83,8,5,35,38,98,10,27,86,62,15,22,29,14,10,51,54,57,56,91,50,46,23,16,26,73,10,67,71,65,45,82,99,48,1,70,6,32,22,73,42,75,68,43,86,90,55,25,44,17,37,80,78,7,13,69,64,69,46,87,78,55,43,54,46,32,55,80,4,31,7,62,9,50,36,11,56,78,74,85,19,41,38,70,22,49,44,63,13,27,68,9,53,15,98,90,26,27,33,77,28,39,74,58,41,83,28,79,85,34,47,83,73,28,75,77,96,89,34,31,34,14,41,12,1,46,63,46,69,64,92,13,30,38,84,43,37,11,66,3,89,35,96,26,87,35,56,55,78,53,37,21,57,25,60,21,70,30,36,69,85,14,19,55,72,68,51,92,15,67,54,7,42,85,20,31,40,20,89,41,36,54,13,32,16,1,91,31,14,97,59,18,30,87,97,5,17,65,80,68,15,64,82,72,96,35,58,9,38,4,4,33,79,97,23,78,11,79,26,63,70,7,41,7,1,62,95,28,34,33,19,55,24,3,41,54,23,32,76,71,75,63,12,79,25,7,47,73,5,59,67,45,61,62,8,76,56,41,83,15,42,38,40,4,29,8,72,28,79,95,81,59,11,42,80,8,3,91,27,48,26,2,36,11,23,46,79,84,62,21,75,66,60,17,45,9,89,82,37,46,98,11,54,2,85,92,32,71,72,9,35,85,17,51,10,33,68,83,67,27,61,98,89,3,1,32,1,7,43,92,17,37,10,62,18,1,42,37,79,16,75,86,67,85,92,73,79,74,54,23,98,85,67,98,42,100,80,29,88,8,29,78,31,18,80,72,19,32,94,64,74,86,9,40,61,51,29,36,31,66,95,58,68,89,86,22,65,47,48,36,88,37,42,81,87,36,76,81,44,79,3,36,84,40,20,36,42,3,82,99,57,13,88,51,13,16,60,29,40,35,55,77,86,19,5,9,49,34,64,44,53,94,85,32,98,99,32,70,89,17,19,37,93,21,69,5,10,10,40,36,69,61,36,18,2,72,73,16,34,45,19,56,46,72,47,12,52,23,92,68,27,88,88,84,72,50,89,45,2,23,76,42,61,68,17,30,48,37,59,9,36,3,72,100,46,63,40,6,85,4,43,21,50,13,4,6,10,96,25,30,45,86,43,87,51,5,58,87,8,26,84,85,74,87,73,21,14,5,45,30,13,90,23,41,60,13,64,94,17,90,1,90,90,3,79,21,38,6,6,81,45,99,54,88,57,90,89,25,86,73,79,21,32,33,87,35,37,63,85,89,29,29,50,88,73,71,62,13,51,6,86,66,32,63,64,89,86,4,11,3,33,69,28,10,51,59,58,17,34,59,68,24,68,32,88,5,46,23,2,74,37,74,12,22,4,99,18,99,77,39,6,80,50,26,3,1,39,68,97,36,93,4,86,94,27,12,21,54,27,97,58,9,82,72,16,52,45,12,86,2,1,66,79,87,70,38,26,95,3,55,1,28,89,23,99,59,76,86,75,11,71,32,88,97,45,40,17,98,90,6,78,8,61,81,63,65,96,17,34,24,98,58,30,100,100,100,92,54,99,3,48,84,72,87,18,90,27,6,1,83,59,84,46,43,87,95,40,83,68,78,13,17,44,31,50,34,99,40,40,44,53,93,91,92,88,82,34,42,61,23,36,80,7,77,9,53,58,54,82,90,50,42,56,90,89,38,12,16,74,59,95,92,50,49,11,84,89,73,4,59,26,24,1,4,13,89,5,39,47,75,17,90,37,69,43,61,80,80,42,95,68,95,100,50,68,32,4,67,33,39,25,79,88,13,55,30,79,76,68,14,95,18,18,38}
{97,2,10,51,22,5,30,14,10,9,3,59,46,78,1,29,19,1,61,25,20,24,1,4,21,8,3,56,1,25,3,19,6,2,65,3,5,10,67,5,1,6,10,5,4,6,22,9,7,1,44,19,2,51,28,18,9,55,5,32,20,24,60,3,51,76,10,9,13,1,1,6,42,1,2,9,76,1,31,12,62,65,1,99,33,3,3,3,69,1,3,3,89,6,3,49,68,35,88,1,13,19,4,1,19,1,26,2,86,5,15,1,14,1,90,1,8,2,7,2,18,3,21,85,3,15,3,56,59,33,20,5,4,1,15,1,2,26,1,22,13,22,18,25,6,21,13,1,1,7,8,8,15,24,71,1,22,11,13,1,5,11,1,9,37,4,11,28,8,5,50,3,4,2,2,25,76,36,36,4,2,1,2,2,21,34,1,28,27,1,1,1,3,4,3,51,3,54,10,6,1,31,80,54,2,4,8,38,38,12,1,69,13,6,7,2,4,42,12,4,9,1,23,22,15,3,98,79,5,18,10,3,37,25,1,72,5,1,64,2,8,51,45,7,10,15,29,5,56,22,22,1,10,1,1,3,3,1,5,51,1,1,7,2,64,36,2,31,62,76,28,1,4,16,59,51,71,2,96,1,14,30,97,15,17,6,42,45,9,32,12,55,12,64,12,1,12,41,18,56,1,1,22,1,36,1,23,95,4,23,27,27,5,2,4,11,4,46,1,18,11,16,1,6,9,3,2,72,18,34,7,45,4,7,1,10,63,63,5,61,1,1,5,38,11,23,3,5,1,9,1,35,1,29,20,1,2,39,38,9,6,67,29,1,5,2,3,5,1,9,3,23,59,18,54,94,57,23,1,3,1,4,1,3,13,8,22,3,53,1,1,1,1,2,2,1,9,12,48,32,92,22,12,11,1,3,17,19,97,64,43,49,4,1,2,2,12,2,88,16,62,8,15,4,19,45,8,2,1,3,29,29,88,1,2,94,35,14,9,7,38,5,1,3,38,1,17,5,58,12,27,47,5,1,5,2,6,2,4,43,42,1,1,7,7,9,5,6,3,16,2,3,4,62,1,11,28,11,9,72,27,11,2,2,41,29,76,28,1,1,9,20,1,4,34,9,13,4,7,47,71,18,61,9,76,77,99,2,14,1,2,4,54,2,39,7,3,85,15,4,11,59,5,70,78,5,11,12,7,6,1,72,2,4,1,3,6,11,9,78,51,22,15,17,6,15,8,76,10,2,45,18,61,3,4,33,10,1,2,2,2,8,3,3,7,1,29,5,14,12,7,1,5,92,1,90,20,8,2,2,23,1,1,74,12,2,80,71,22,34,7,1,7,1,1,70,77,5,9,63,4,2,18,2,33,3,42,5,1,78,57,3,86,12,25,16,23,50,51,34,6,1,3,3,3,3,2,1,10,2,8,26,3,60,24,27,1,1,89,13,1,78,4,50,20,3,2,87,64,3,3,7,55,7,5,37,1,1,2,4,1,8,98,21,10,1,59,38,35,13,8,6,76,96,31,2,7,7,49,5,2,20,15,4,2,2,2,18,13,7,70,13,4,80,32,4,41,9,9,62,1,11,1,3,8,4,1,84,56,45,1,5,2,14,4,54,4,2,11,31,51,20,25,43,9,7,1,1,16,78,2,1,6,2,4,28,10,1,1,2,3,57,37,9,7,54,2,3,63,23,5,8,20,21,1,68,1,51,49,44,1,32,2,6,43,65,1,33,28,2,2,91,24,2,9,37,2,1,15,1,37,39,1,1,10,12,3,8,33,2,31,1,3,60,14,1,4,8,1,34,73,50,1,43,1,5,27,1,4,2,90,2,18,1,1,30,1,58,5,2,11,1,98,1,75,2,3,1,58,36,71,2,1,19,48,27,1,30,41,2,15,4,1,1,23,83,6,12,9,9,3,7,9,93,5,2,1,87,2,91,1,19,6,1,16,1,3,3,4,63,59,8,53,1,78,1,57,6,12,79,2,4,3,52,7,14,56,5,4,14,61,3,11,2,26,4,2,50,24,1,2,79,1,14,1,21,1,5,2,18,1,3,1,30,32,13,10,8,19,8,29,17,84,1,2,61,1,52,2,1,3,2,4,4,1,22,38,35,16,74,2,53,17,31,1,39,1,4,1,14,89,4,61,1,82,18,5,27,49,53,38,23,25,12,42,24,10,13,77,4,9,4,1,1,21,6,93,1,1,1,32,74,31,48,6,27,1,2,1,11,13,48,12,18,70,5,6,4,21,4,27,15,2,24,4,3,1,15,17,20,33,33,1,4,1,2,1,2,42,33,2,25,10,7,21,24,3,1,76,4,73,1,11,20,49,1,12,2,4,15,76,1,1,3,1,10,40,4,2,41,1,2,55,1,1,29,12,18,38,1,7,18,28,2,59,86,96,13,31,14,41,7,57,1,40,24,87,9,4,4,1,15,12,33,1,4,1,25,31,3,33,35,20,42,1,2,14,3,4,8,3,5,4,83,55,2,21,99,6,2,2,39,25,2,35,1,2,37,10,88,1,18,15,69,71,4,32,24,1,24,90,44,76,1,36,4,19,7,1,18,1,2,3,19,3,5,6,92,2,36,8,42,48,33,47,1,1,83,2,2,7,2,36,60,3,57,7,8,2,60,5,16,2,1,2,31,1,1,83,2,2,1,2,5,35,4,13,37,87,24,6,58,31,1,1,8,1,4,59,1,85,60,2,38,6,5,31,9,1,47,2,18,9,9,20,1,14,36,69,1,11,10,2,1,51,65,2,23,17,94,1,30,12,46,5,5,50,11,1,41,57,72,7,3,32,18,1,33,3,21,68,1,1,22,35,42,9,54,4,59,1,12,17,1,2,1,22,23,44,14,5,3,37,8,17,8,1,2,1,70,4,2,13,25,69,3,4,13,92,34,1,61,23,1,2,20,59,1,1,2,2,3,24,9,1,3,1,48,38,15,3,22,19,1,2,3,1,54,83,4,4,63,63,7,8,15,7,19,28,1,8,44,7,8,1,80,2,1,62,6,27,1,20,55,1,4,59,10,1,7,3,90,2,58,2,67,36,45,1,1,2,2,26,5,26,20,66,37,12,1,6,61,17,8,4,79,36,3,16,2,60,24,4,26,9,34,91,2,1,3,1,69,2,4,6,4,3,45,9,94,4,39,74,3,71,2,93,59,6,2,81,7,22,9,51,73,1,7,2,2,2,4,5,2,19,7,5,1,2,19,72,55,33,81,54,18,24,60,37,7,73,98,23,2,76,15,59,3,4,2,4,20,2,2,3,8,1,7,22,21,3,24,3,27,2,26,50,4,44,1,89,24,4,16,2,5,27,14,3,73,1,35,1,23,80,5,94,57,1,44,35,1,66,2,27,29,78,3,4,1,11,68,7,22,40,29,6,34,7,2,64,1,2,3,26,1,8,11,18,54,48,15,1,2,1,14,9,2,23,8,4,83,1,10,19,9,2,2,44,26,62,12,19,1,49,15,11,63,94,4,47,10,5,7,6,10,2,1,7,46,4,1,8,37,17,1,49,7,6,89,40,8,16,3,1,28,3,3,3,19,32,6,12,9,17,2,4,69,81,15,3,22,53,35,1,9,22,2,7,16,14,66,2,3,3,2,2,11,63,1,2,2,36,15,1,2,1,7,1,8,20,11,44,35,1,27,1,5,4,48,25,11,78,6,2,6,14,6,1,13,39,4,1,17,81,19,4,1,4,22,64,1,1,15,46,9,7,6,4,18,1,4,20,2,4,28,4,23,2,2,31,13,7,1,17,10,6,22,9,2,4,4,2,13,55,68,16,71,53,11,32,3,49,2,3,4,38,1,34,92,2,9,82,56,12,1,2,5,1,20,22,3,8,1,98,54,33,5,2,11,46,6,47,2,94,3,41,39,5,2,1,2,5,26,5,44,5,3,25,2,5,2,1,15,98,96,7,20,6,2,62,1,5,3,56,8,98,3,20,8,4,4,49,9,1,4,6,2,1,2,11,38,31,20,1,12,1,65,1,1,84,35,11,88,1,3,48,60,1,3,1,1,9,4,51,5,8,1,7,2,2,3,2,11,14,3,2,1,2,1,45,11,23,58,18,3,22,2,6,69,3,12,8,17,48,10,5,33,5,18,5,2,3,4,52,1,57,44,5,31,5,3,9,10,50,60,5,62,87,1,1,26,3,1,27,14,7,74,38,12,3,1,2,5,1,28,2,3,2,6,3,13,17,32,4,10,62,6,83,1,4,3,1,6,11,13,81,75,11,11,4,64,25,3,4,1,29,3,7,10,40,8,29,17,4,1,7,2,46,2,3,98,4,16,6,47,5,7,6,1,44,27,3,20,11,3,3,14,3,31,2,13,25,82,85,15,1,5,3,2,62,1,17,24,3,2,34,2,2,9,15,54,3,3,1,56,1,3,20,5,4,4,5,23,13,1,15,16,35,11,38,10,7,21,1,2,15,15,1,2,81,2,29,8,49,5,2,50,46,1,26,2,16,32,54,7,7,1,16,5,9,2,15,88,1,7,5,2,38,16,2,9,1,1,6,30,21,51,25,2,78,2,2,26,2,2,1,15,35,38,24,8,47,17,4,1,3,1,2,4,6,33,1,1,11,7,11,8,5,45,12,2,11,1,58,5,1,36,6,7,58,32,29,1,1,36,7,42,11,1,8,9,4,7,1,5,54,1,7,8,42,11,24,9,37,1,18,3,10,2,4,1,8,1,19,72,19,59,1,3,39,52,13,28,8,1,35,74,2,9,4,1,39,4,40,1,16,7,11,34,35,16,31,6,6,8,5,1,1,1,6,52,5,5,57,59,7,33,5,2,30,25,1,1,4,1,1,4,4,12,18,18,38,19,5,22,1,3,3,5,3,3,68,2,5,25,3,1,22,54,2,42,17,4,33,10,60,16,2,5,21,2,3,2,44,73,1,1,2,29,12,11,3,9,2,1,4,60,71,22,25,2,1,10,30,39,6,30,2,32,46,41,2,6,15,2,5,21,18,70,1,14,1,6,16,3,32,63,1,3,11,19,35,84,7,2,1,11,68,6,36,2,1,13,33,12,1,1,4,9,5,16,1,25,11,5,17,3,12,87,2,2,11,51,15,33,15,6,59,2,78,36,13,27,12,1,2,4,60,74,8,16,9,5,18,3,14,18,5,4,1,6,46,25,48,13,7,56,78,18,84,14,42,79,44,2,49,20,4,5,20,15,2,2,8,10,24,1,7,68,15,8,3,1,66,28,19,38,7,10,23,6,1,3,18,78,97,62,12,2,15,1,3,4,2,1,13,95,7,52,31,2,64,18,4,2,36,8,10,80,1,83,2,3,4,70,33,4,10,71,8,49,1,5,19,25,1,9,49,1,75,5,10,1,4,1,1,1,6,60,29,48,3,2,5,1,48,39,8,33,85,4,7,13,33,90,6,9,4,2,2,1,6,1,7,18,1,17,4,33,36,27,86,36,62,12,31,27,2,2,41,3,6,32,16,1,1,1,5,3,4,1,47,87,4,1,11,24,11,7,9,16,13,5,1,1,27,28,1,23,13,9,52,3,1,3,10,66,10,23,90,5,2,19,43,14,4,9,37,2,5,60,18,14,1,8,2,11,10,1,1,8,41,3,1,1,88,4,39,59}
Returns: 6.94600561875901E8
{51,28,39,2,83,63,92,69,10,20,18,31,98,58,46,63,58,89,13,10,91,82,28,84,54,60,58,62,46,43,19,95,59,28,92,85,37,19,69,65,6,68,27,26,64,75,43,20,62,36,85,35,44,70,38,23,43,31,34,87,41,61,34,40,99,80,33,87,70,54,86,66,88,77,77,93,3,81,78,18,10,93,100,27,50,90,92,8,56,24,67,63,6,67,52,73,13,55,84,4,87,47,63,8,12,53,86,83,93,69,49,34,18,16,94,66,56,89,51,1,97,43,48,37,92,49,59,2,20,7,53,69,45,76,64,59,65,29,4,52,83,52,69,81,46,4,67,2,11,75,3,44,84,23,40,80,90,14,6,11,78,75,16,99,81,19,91,97,59,53,26,87,58,43,2,69,26,73,23,60,58,78,24,7,6,79,56,83,52,33,7,82,79,22,29,59,74,79,15,25,56,7,38,57,28,60,17,94,11,47,53,68,54,37,67,57,9,92,71,59,44,7,57,53,60,94,63,56,22,35,27,99,13,44,82,81,35,65,72,53,58,90,24,16,16,14,79,53,2,8,43,85,21,68,79,90,45,4,64,58,50,17,13,86,53,59,48,32,94,12,23,83,26,44,8,35,84,33,35,69,98,68,72,60,24,92,94,95,12,45,40,34,38,7,54,53,64,79,90,59,54,34,52,28,8,7,27,100,17,41,5,38,65,61,78,96,7,45,12,25,81,20,72,24,80,64,55,68,17,75,70,38,85,49,30,26,79,30,28,63,14,96,42,24,13,4,5,24,84,53,58,51,29,6,47,29,63,75,97,40,15,8,22,41,91,90,96,25,79,37,81,6,53,82,96,17,7,43,52,35,8,96,13,33,32,36,22,34,75,30,7,70,66,94,48,40,48,64,66,21,13,73,99,23,64,47,51,55,95,84,26,38,66,29,85,20,32,12,7,42,35,23,67,43,74,93,31,29,62,33,63,24,80,79,93,24,18,62,92,68,70,47,21,48,9,21,4,81,22,36,77,52,47,78,37,28,67,26,78,74,63,18,80,47,23,85,37,66,48,14,90,50,56,41,26,98,96,30,43,52,66,73,9,43,83,98,5,16,41,19,89,83,10,35,55,21,10,36,71,5,92,17,19,55,12,71,48,75,73,95,62,16,37,35,37,96,90,40,63,80,28,64,44,10,34,51,87,33,37,37,25,83,63,48,94,15,70,68,72,79,69,52,77,8,85,89,46,36,18,18,14,51,1,16,27,77,96,61,60,93,54,29,64,26,38,13,32,92,96,37,39,15,25,86,58,35,22,96,75,100,79,27,91,35,86,2,61,21,78,2,8,22,17,81,61,78,81,34,45,42,67,40,47,98,41,92,45,34,45,66,58,27,24,93,10,40,16,69,79,71,91,78,91,66,69,15,100,56,86,61,51,15,86,99,86,94,50,74,98,47,68,47,81,81,55,52,51,36,99,47,15,45,16,23,7,37,41,57,92,28,43,12,15,73,15,25,89,80,21,64,62,22,95,31,71,89,50,43,54,42,14,40,20,75,65,77,25,77,80,2,31,21,32,33,9,40,34,68,10,28,80,63,65,41,5,93,3,8,21,42,47,26,36,40,5,53,67,96,38,47,100,16,58,50,43,90,4,69,22,100,34,22,62,14,39,73,67,48,38,23,96,6,98,48,78,75,7,11,81,83,50,43,65,60,69,72,20,77,84,36,72,18,99,89,85,96,60,51,87,36,85,61,26,54,90,12,69,67,82,13,33,46,80,34,85,32,30,68,26,60,82,69,17,70,56,63,50,39,24,70,66,33,81,33,11,60,22,51,41,28,20,85,80,76,97,26,49,44,31,47,38,32,47,84,100,10,46,72,64,74,39,22,93,85,9,3,61,89,39,35,62,76,90,58,94,59,78,55,77,18,55,78,70,12,29,63,46,78,6,47,93,98,45,38,61,70,28,82,76,37,78,5,72,73,3,48,76,3,88,96,95,5,78,41,8,46,97,46,81,2,97,59,34,70,58,74,7,79,37,43,49,12,47,30,63,94,7,49,95,96,89,9,41,40,91,13,85,53,75,53,59,27,56,85,16,30,45,9,76,28,59,64,100,35,28,94,69,17,3,63,47,92,72,99,91,7,52,68,73,87,6,31,27,68,83,87,25,43,11,71,14,95,51,99,32,64,97,98,93,40,87,43,43,11,15,6,14,39,53,9,100,21,42,22,5,90,37,28,50,69,28,92,81,75,41,66,8,41,85,99,50,21,14,71,22,75,67,22,46,41,23,26,94,65,57,60,96,10,69,9,64,56,71,83,91,70,90,69,64,76,44,66,39,45,95,56,89,63,51,28,97,37,49,71,53,99,86,94,20,29,79,27,20,61,97,37,81,93,73,37,33,40,57,62,42,12,11,57,75,95,1,59,76,42,24,67,35,42,86,31,73,80,89,66,74,92,32,54,96,11,96,93,5,92,56,55,43,61,56,31,26,35,19,96,45,61,24,37,80,34,31,7,15,10,53,2,39,78,96,97,9,96,25,49,6,33,81,49,74,100,1,12,13,27,54,77,96,8,98,60,54,51,21,84,71,86,86,47,56,65,47,65,58,16,51,19,4,76,52,45,90,83,89,3,74,48,13,39,56,55,99,47,13,48,20,71,73,18,13,4,96,34,49,98,14,43,77,67,44,52,70,21,64,93,52,5,69,92,94,81,12,7,30,54,99,12,24,69,14,18,57,57,84,43,71,3,69,87,22,69,98,32,47,43,6,62,51,63,75,76,40,54,66,95,13,5,61,58,46,41,35,73,35,83,49,1,3,5,54,56,63,12,48,79,51,96,13,12,43,43,92,73,24,77,11,1,95,50,93,42,31,10,31,56,92,85,98,57,2,25,76,43,93,6,94,21,90,44,40,20,75,26,83,64,56,75,35,5,62,46,7,92,97,78,90,46,55,56,16,23,65,83,85,34,8,30,84,56,5,15,94,9,99,39,35,28,17,44,49,58,95,60,25,78,94,72,47,89,12,65,89,19,19,23,67,42,16,97,69,73,4,3,61,65,15,96,50,41,12,39,39,76,39,2,97,98,98,14,70,72,16,67,60,36,46,66,53,69,73,52,83,5,8,9,45,79,35,78,51,12,59,92,46,68,2,78,45,89,20,22,71,31,14,42,94,39,24,90,66,89,44,81,52,4,30,93,46,11,80,29,24,37,91,49,64,77,78,69,30,68,48,22,37,72,2,56,87,79,100,25,82,61,90,64,23,41,73,63,54,81,93,81,77,85,92,36,74,58,95,40,49,92,10,2,90,34,7,44,85,40,83,86,22,60,76,33,20,33,62,78,70,87,82,3,32,99,50,44,91,72,91,68,50,49,63,78,73,60,84,26,34,10,66,26,68,37,8,71,26,90,89,83,56,47,87,74,31,33,48,52,47,9,6,96,76,67,5,90,57,6,55,39,57,72,67,6,1,9,94,29,88,96,94,71,100,60,72,81,78,5,61,59,91,37,10,16,34,57,17,26,75,66,57,5,55,26,6,4,68,62,30,65,46,4,63,61,20,3,40,47,98,81,98,52,15,71,53,71,90,73,23,65,82,27,21,8,26,29,92,39,73,91,8,15,96,63,55,9,80,43,79,76,27,81,51,94,12,74,31,88,86,100,80,47,40,47,81,14,21,72,49,23,90,57,56,86,61,72,57,40,41,82,26,28,22,11,85,42,50,77,89,32,81,66,96,74,25,61,100,3,12,65,58,39,6,73,93,71,5,52,55,10,27,17,59,19,100,17,41,82,75,28,46,86,24,83,62,23,62,6,24,32,100,62,28,44,85,14,21,93,59,45,36,82,29,39,12,43,98,73,71,95,40,63,38,55,46,9,21,100,84,77,65,21,33,7,92,93,57,51,31,73,83,45,19,42,19,43,23,23,64,82,92,48,57,3,93,99,76,34,51,2,16,5,1,63,58,95,24,92,36,11,39,23,38,42,100,28,2,71,96,82,63,8,72,8,78,79,34,86,86,95,88,23,84,60,7,63,96,74,88,77,59,65,50,64,99,5,34,90,85,79,91,47,20,37,38,81,91,75,92,75,63,12,55,64,52,81,13,98,40,63,5,16,51,32,40,65,84,73,32,72,75,27,48,68,81,55,4,75,55,5,66,15,95,55,31,89,75,28,76,4,85,93,49,33,16,18,69,16,11,90,88,21,99,95,22,67,97,56,34,95,47,9,86,82,96,28,40,87,88,62,92,86,69,78,67,62,51,76,15,18,75,49,33,20,51,25,54,17,41,74,19,50,46,72,17,31,48,82,63,74,13,49,19,55,55,10,23,25,89,87,34,100,59,71,7,47,66,89,61,36,40,39,90,99,30,76,81,77,66,56,77,11,94,85,37,93,28,77,72,33,62,76,50,62,61,2,65,58,12,73,52,11,44,57,47,11,7,70,3,98,95,37,19,50,57,55,22,32,21,9,50,13,92,41,61,44,53,43,99,94,15,2,75,52,4,23,18,58,66,67,88,69,29,51,75,7,91,8,56,73,62,45,95,59,6,15,76,19,59,97,93,17,7,75,77,57,93,46,39,28,58,69,15,13,51,73,94,53,60,60,53,19,49,29,95,11,77,55,75,8,65,46,96,66,92,35,99,23,39,8,67,63,95,10,63,86,4,67,26,40,34,26,11,33,55,27,57,56,90,42,99,23,46,51,24,40,49,57,96,57,86,47,6,28,81,32,60,76,85,47,87,43,53,71,98,34,46,75,98,57,29,28,53,40,23,77,89,9,47,65,72,34,86,63,68,94,62,83,50,39,60,68,45,34,7,90,50,96,33,45,71,1,98,85,49,84,44,45,47,45,98,74,54,69,5,48,56,58,7,34,100,52,12,34,39,75,45,9,6,97,50,39,5,79,56,98,61,51,93,7,76,81,24,56,80,12,66,45,71,83,6,32,16,92,6,44,11,41,12,18,56,69,47,11,81,89,84,70,17,50,16,45,75,94,56,30,15,78,6,31,43,57,4,71,96,41,84,47,76,64,5,20,27,93,22,11,18,59,76,57,100,73,79,98,95,15,56,81,95,90,69,18,89,88,50,87,97,20,83,33,6,3,61,14,83,5,66,49,1,3,55,32,96,80,51,11,84,57,59,95,95,59,11,90,98,15,75,84,43,40,78,48,46,45,60,95,54,38,38,97,25,97,12,65,42,28,8,14,71,82,51,33,18,76,46,61,36,50,95,77,37,84,53,28,55,19,65,84,96,76,67,3,61,80,71,37,22,4,62,17,57,76,62,16,13,41,99,49,78,41,40,67,17,11,91,67,65,47,78,82,63,46,75,36,52,82,80,70,71,96,22,41,53,62,87,43,16,13,1,92,69,63,7,42,26,88,93,99,72,12,25,48,16,30,28,57,38,75,28,91,14,89,70,66,21,32,35,35,22,77,95,72,1,30,35,89,11,44,25,16,51,54,66,3,52,95,7,11,95,52,82,17,26,76,69,4,57,6,98,96,68,51,79,78,27,38,10,54,46,49,82,4,94,92,25,58,57,62,15,49,8,26,54,62,16,6,97,4,88,13,51,7,58,5,62,83,89,27,94,5,78,24,84,5,71,69,55,70,86,87,92,70,64,62,93,72,40,52}
{95,75,3,2,69,43,100,10,57,53,75,71,76,33,5,65,94,8,24,23,18,15,67,78,75,89,76,22,97,89,35,98,57,38,98,75,78,11,75,15,90,79,7,92,49,73,70,1,60,58,77,84,95,99,33,24,63,37,24,50,56,31,81,63,29,98,59,43,23,21,28,44,37,33,41,4,14,55,85,74,86,98,75,90,21,82,71,62,26,72,26,66,15,5,85,40,46,49,58,12,68,70,87,18,88,48,7,70,11,71,80,45,24,28,49,41,43,30,7,62,21,31,35,1,68,38,93,65,83,97,82,89,15,66,100,9,33,30,59,97,64,77,75,24,92,98,5,63,4,100,7,39,48,94,55,43,69,44,25,10,36,11,83,18,50,63,9,7,75,84,65,49,68,11,81,23,19,14,35,4,52,37,8,87,22,80,91,17,75,100,36,98,32,97,55,36,18,30,35,26,66,72,8,87,84,46,19,40,12,83,60,60,78,6,71,43,73,69,16,84,11,64,1,49,58,2,35,56,16,42,99,24,71,99,23,33,73,56,70,59,50,72,92,17,67,46,63,72,71,39,65,75,59,4,27,48,15,36,30,78,19,96,63,51,51,14,52,59,43,18,50,85,1,98,19,20,91,46,57,80,75,43,59,33,77,61,86,34,100,24,67,19,19,50,97,27,83,46,30,3,33,32,5,97,70,39,25,74,10,52,67,49,10,99,45,100,33,32,80,21,16,83,70,76,6,93,68,37,88,57,86,8,11,72,36,30,63,73,25,61,14,91,96,99,64,11,70,11,76,81,21,37,95,18,60,2,56,33,63,55,2,27,83,86,4,51,46,75,80,40,30,85,75,32,22,72,13,11,76,26,25,74,47,98,61,52,86,22,59,13,26,98,56,59,69,8,49,26,16,16,38,34,35,49,35,55,97,49,71,32,15,82,82,39,54,94,9,75,68,62,63,56,26,93,91,13,66,18,75,17,98,81,11,10,33,41,14,63,79,82,69,97,2,65,75,49,60,10,9,19,81,7,44,26,48,81,97,58,70,73,1,55,44,23,97,26,55,64,46,7,87,54,45,44,77,20,22,34,85,68,38,58,53,86,6,22,13,38,73,59,91,9,66,52,50,25,16,5,32,77,34,38,79,72,79,67,5,70,23,16,69,97,37,36,90,81,99,94,17,26,15,81,6,27,83,2,30,33,27,23,84,66,37,89,56,72,37,83,97,73,71,65,1,20,91,15,30,57,68,84,100,64,28,19,41,11,14,1,16,5,67,21,36,42,80,76,92,58,47,31,49,100,99,91,85,78,35,49,18,24,25,90,34,33,61,61,83,67,75,96,77,97,27,45,52,58,85,31,90,63,97,91,17,31,39,45,20,69,86,91,6,18,44,62,46,90,75,62,7,85,64,57,73,66,38,7,5,60,33,47,59,37,65,23,13,90,15,63,18,15,98,11,83,11,82,12,55,28,24,57,38,31,11,71,24,100,95,75,62,53,45,67,20,55,60,41,20,88,61,18,32,58,40,51,21,41,28,59,39,42,71,87,32,61,60,70,9,74,98,84,96,100,94,79,32,57,7,7,41,11,55,10,22,75,10,98,57,74,73,95,31,30,23,62,80,61,68,75,88,28,21,74,29,42,39,50,54,8,39,46,68,10,91,74,37,24,57,88,89,86,6,76,31,20,95,39,48,9,37,67,53,76,4,56,95,41,81,78,15,84,23,98,76,40,65,15,30,4,42,28,5,72,38,36,51,15,98,27,27,69,61,89,1,32,76,96,25,55,50,69,26,83,14,78,46,1,92,66,89,59,20,47,36,76,45,29,81,68,45,24,20,1,11,65,27,67,90,30,65,32,14,44,4,63,24,77,4,24,45,78,99,85,40,72,28,54,44,97,80,81,99,70,50,5,30,46,54,91,3,2,13,30,11,62,30,3,24,80,99,66,23,23,32,80,83,30,45,54,85,60,97,30,23,28,87,80,68,86,76,57,57,29,83,65,9,83,28,87,73,8,92,45,38,36,50,7,13,72,99,26,77,32,5,15,77,95,12,20,30,39,35,87,8,82,94,79,92,35,66,21,58,88,79,81,34,68,46,89,61,23,94,53,30,61,76,27,27,28,97,23,56,78,17,34,63,8,82,38,68,26,90,63,80,49,32,86,23,77,5,28,27,57,9,14,30,97,68,58,78,6,11,34,24,44,73,58,51,62,43,51,99,72,76,88,44,39,76,54,54,33,85,45,18,2,96,61,35,81,43,14,44,9,54,8,77,22,74,33,16,71,91,18,68,46,8,74,90,71,78,98,1,56,32,47,95,58,5,33,96,65,11,71,28,24,16,99,75,31,75,75,35,26,52,99,55,60,86,13,40,91,68,94,82,73,16,23,61,55,40,86,2,47,94,47,39,80,57,77,74,55,22,99,63,86,75,11,54,68,53,48,74,74,88,64,93,8,86,60,65,22,31,52,55,44,18,1,26,2,14,66,31,82,68,99,99,28,70,47,99,95,50,35,26,41,57,74,80,85,62,86,30,94,35,23,66,77,34,55,44,93,38,7,26,82,26,53,81,99,77,23,29,89,94,25,16,3,68,64,24,69,43,36,14,31,67,58,71,92,53,45,38,42,45,50,20,4,40,52,6,11,45,51,69,3,85,83,93,33,8,99,60,21,42,46,87,74,46,18,88,98,19,96,54,53,4,69,33,94,84,59,69,51,58,30,43,93,33,17,11,59,5,44,15,86,49,73,38,15,73,22,77,33,99,18,81,6,43,98,42,48,82,82,36,20,62,72,1,54,16,45,34,82,95,70,76,3,13,32,7,4,35,33,46,59,98,32,9,35,80,100,14,80,62,88,35,94,38,42,85,66,53,78,51,21,17,78,78,37,56,71,40,68,27,65,66,71,4,16,19,37,83,52,54,23,24,25,75,17,84,34,10,78,15,33,35,83,36,51,17,41,7,55,71,67,6,15,23,47,52,85,94,2,48,64,90,47,41,84,90,7,35,65,74,11,50,69,13,56,85,34,99,42,62,93,26,66,66,25,86,7,17,83,53,73,12,14,67,11,81,75,7,100,96,96,91,82,41,48,67,31,38,33,94,48,74,73,54,35,41,59,3,7,33,12,21,21,83,19,81,31,54,32,38,9,8,75,50,64,81,22,57,40,100,42,36,84,56,34,87,77,29,19,25,54,32,78,9,60,98,15,30,83,90,46,2,15,40,12,100,62,82,45,73,34,34,100,32,54,24,57,16,80,43,73,53,50,10,65,29,74,4,83,91,18,29,19,65,77,97,73,60,13,1,9,9,69,99,59,5,21,53,83,99,85,92,15,6,53,23,37,30,73,66,78,27,15,53,42,10,74,63,2,52,21,95,3,62,31,27,96,61,23,65,57,94,95,76,46,22,74,2,58,64,79,3,100,6,53,27,4,31,63,62,62,57,7,3,3,57,77,10,33,74,3,38,93,9,97,16,89,76,90,92,43,68,26,41,83,63,5,76,18,50,70,49,12,6,86,47,83,99,6,27,91,7,69,44,69,90,10,5,13,28,81,25,32,79,100,96,6,74,63,83,80,61,4,24,1,83,77,62,48,41,51,88,68,50,85,7,42,23,64,82,98,95,7,5,87,71,90,85,36,59,85,10,47,100,92,67,87,61,22,53,100,93,2,97,41,83,72,90,96,66,1,37,16,48,87,31,21,18,70,55,91,8,67,49,43,35,44,8,81,62,49,72,20,39,47,59,93,70,48,6,2,3,96,34,41,30,24,34,40,79,10,42,31,37,39,92,88,89,41,9,26,42,46,22,86,91,42,88,63,75,89,52,19,30,13,63,80,9,41,47,20,12,100,54,70,65,93,32,55,79,46,82,84,95,63,88,99,63,5,60,26,97,10,72,4,54,76,18,30,44,50,96,9,10,17,77,18,15,21,84,50,87,46,27,61,92,45,92,56,68,38,80,92,41,77,40,60,29,72,96,66,82,41,17,47,65,97,8,45,45,96,36,13,53,9,96,51,41,83,69,27,47,65,79,37,4,43,74,1,12,76,26,47,84,100,96,14,52,48,15,68,97,64,18,56,94,79,81,9,66,92,75,74,15,10,29,52,94,4,68,47,40,1,15,48,66,48,41,9,46,80,15,70,78,70,4,10,47,83,27,46,19,17,14,81,39,84,95,20,67,88,54,38,40,74,32,19,76,10,67,44,55,60,84,36,62,2,32,11,35,72,73,49,16,60,94,19,34,5,100,19,96,63,90,81,59,36,3,69,85,4,19,71,83,96,92,21,16,66,54,2,66,84,14,26,90,32,6,33,90,47,21,50,57,73,67,15,17,68,38,76,13,55,10,29,19,43,54,33,55,83,11,66,46,31,90,79,84,37,27,49,23,4,11,88,48,95,46,2,92,41,86,16,75,44,88,18,47,34,21,57,20,9,25,78,25,12,2,100,52,68,51,17,46,89,41,57,29,26,21,50,25,92,9,24,48,63,33,1,86,38,79,85,79,85,30,87,66,51,47,89,96,44,44,67,72,47,74,37,83,94,99,52,48,25,80,76,75,15,65,23,50,42,88,88,57,8,14,20,36,63,84,1,27,55,21,98,38,6,55,86,13,92,18,53,44,34,17,2,81,27,95,63,34,55,36,1,85,31,95,14,28,35,23,19,47,49,51,89,52,42,36,95,51,34,77,44,26,56,25,10,21,91,86,9,30,42,23,40,84,79,19,70,2,48,38,47,57,29,90,34,72,73,16,64,5,47,98,81,42,47,80,55,52,28,46,54,61,83,68,41,62,4,80,34,53,6,6,32,95,84,30,6,3,82,16,5,16,75,12,26,8,79,28,13,31,86,48,22,44,47,40,22,45,54,76,99,5,7,71,10,90,45,81,41,21,57,72,68,57,16,72,13,63,68,7,96,32,46,66,14,79,9,20,77,29,67,71,41,32,24,31,75,51,59,76,52,27,64,51,93,42,84,84,45,49,26,5,82,99,73,48,86,59,74,78,88,56,1,4,68,98,25,55,78,72,97,100,63,15,37,6,88,69,88,71,8,20,34,32,74,12,76,4,47,7,36,86,64,22,73,4,5,27,3,20,45,69,78,44,71,79,1,33,30,86,50,58,15,68,41,21,82,86,99,26,80,41,61,44,6,98,38,44,97,95,47,74,25,38,29,83,33,32,15,78,93,78,30,81,76,84,95,57,35,94,42,25,94,58,92,45,100,89,82,9,37,53,24,26,57,38,56,84,78,58,39,49,98,87,97,26,85,37,86,28,10,10,98,3,95,47,84,50,24,8,49,99,27,63,95,59,72,2,53,30,41,87,33,66,96,49,4,87,42,78,31,97,94,83,19,43,89,30,53,2,96,81,81,47,53,74,52,70,7,71,31,83,28,94,72,26,60,59,3,51,96,74,64,9,62,35,9,25,3,16,69,55,32,71,98,74,92,10,82,32,56,50,66,52,99,25,92,3,23,66,81,10,10,62,69,14,94,77,40,68,33,98,53,32,39,36,92,53,42,91,54,85,39,97,85,8,82,43,59,66,20,80,15,99,56,31,28,18,99,64,92,98,22,57,14,8,30,5,49,18,77,77,30,46,96,27,63,7,8,9,62,22,74,22,61,52,32,29,96,61,78}
{58,19,41,55,5,3,17,61,79,96,77,28,34,8,52,11,50,57,45,72,75,37,90,92,82,62,90,2,89,2,18,9,29,41,36,85,43,96,84,96,59,75,65,88,31,81,23,55,28,54,42,20,14,3,94,93,12,84,32,69,92,76,24,50,78,61,80,79,51,3,86,100,3,41,20,41,53,26,47,59,61,55,39,63,66,39,80,63,42,73,30,62,43,97,27,78,81,4,95,98,99,95,30,47,99,81,74,18,50,18,98,8,93,77,34,9,14,75,68,30,19,45,31,61,78,68,60,43,59,83,17,89,84,63,61,67,69,64,82,77,4,66,75,63,50,79,34,26,87,11,16,64,74,92,59,29,96,20,50,53,79,94,17,14,94,3,99,6,99,13,68,10,21,78,60,8,93,19,33,30,77,60,16,8,11,16,30,90,15,35,38,83,74,25,39,96,92,15,92,16,89,2,97,69,49,48,14,17,11,31,18,96,96,22,17,28,20,93,85,17,50,97,31,6,86,6,70,94,32,43,99,70,33,78,76,26,23,68,88,52,22,28,97,92,49,72,68,90,23,54,51,48,24,68,80,55,44,67,31,1,93,27,99,3,20,9,76,48,35,68,58,86,10,32,57,44,30,85,86,62,36,98,27,33,94,86,81,2,54,35,90,71,41,86,25,74,64,57,77,8,23,79,96,44,87,27,38,18,51,76,56,42,58,22,97,99,11,94,2,71,25,46,13,64,22,24,16,57,55,74,46,10,95,18,53,79,72,37,41,37,91,72,46,9,89,89,60,43,98,89,32,65,16,89,19,22,66,63,6,56,38,24,32,48,66,5,73,63,2,33,58,13,67,3,54,1,68,3,96,49,57,96,57,31,3,70,83,67,30,99,27,42,13,33,92,84,32,97,38,12,68,55,23,9,41,26,81,16,42,27,48,32,100,73,64,40,79,5,47,27,56,83,43,22,69,58,35,53,62,56,22,29,73,72,95,28,36,65,19,40,52,13,37,6,6,30,68,95,78,35,60,82,64,29,8,24,30,87,99,94,13,30,90,74,14,58,59,21,92,81,78,98,50,65,91,76,100,85,58,65,14,67,52,39,59,46,49,15,36,59,46,7,80,74,2,65,94,95,58,28,39,69,29,31,41,22,13,53,61,36,77,42,60,40,18,32,68,94,70,37,47,15,88,28,58,81,60,91,55,1,47,33,95,74,71,2,46,66,61,2,49,64,26,28,41,18,41,46,8,64,91,77,68,66,34,40,39,50,67,67,35,88,72,56,93,37,28,16,93,63,61,7,67,56,83,39,58,2,32,63,66,89,98,50,5,95,62,1,30,71,17,95,57,36,73,63,30,64,72,78,33,16,45,61,38,58,61,41,31,76,94,40,16,71,30,17,39,72,18,95,95,39,9,67,32,98,17,100,42,19,63,67,81,55,6,87,11,49,80,7,72,72,17,5,55,41,89,27,32,12,42,21,28,91,85,85,98,29,46,58,1,45,23,39,77,43,87,83,93,43,71,1,83,55,96,82,65,40,64,76,54,38,10,89,38,73,97,2,78,40,66,56,44,6,27,54,83,13,94,83,5,11,100,86,79,50,70,40,98,26,97,100,36,82,13,57,76,21,88,97,61,74,42,56,21,61,28,30,94,27,26,54,61,34,21,56,27,74,88,66,94,3,62,90,46,8,50,82,74,81,17,72,16,14,32,96,67,52,98,14,77,64,41,13,78,81,52,99,29,4,6,65,11,81,73,30,95,60,57,2,15,41,87,69,21,9,42,54,6,27,99,92,42,24,37,72,2,4,76,72,7,74,100,84,94,58,14,62,60,30,50,41,24,1,16,16,27,26,2,33,73,83,79,10,27,67,67,100,70,67,67,20,33,82,6,61,57,25,1,74,45,60,2,39,90,53,21,2,37,32,75,73,66,37,93,29,15,73,72,21,84,97,41,98,72,37,93,96,96,95,62,19,49,63,36,7,7,99,37,69,20,96,81,87,16,17,43,1,74,24,43,29,21,56,33,39,54,26,51,55,32,67,44,50,76,70,56,7,45,89,51,32,43,18,58,23,93,86,54,72,26,17,3,30,65,45,98,31,72,100,5,91,63,2,48,86,59,2,86,59,39,82,67,31,28,80,34,49,25,79,66,7,30,98,23,13,60,28,37,28,99,94,65,90,61,31,84,2,17,68,52,69,12,34,96,93,38,31,36,68,54,81,55,46,6,19,57,41,92,84,50,82,41,68,84,54,77,88,53,45,26,87,72,84,16,13,69,34,89,82,20,49,2,14,76,75,66,27,96,66,96,79,10,3,6,70,57,87,85,64,58,70,30,35,85,73,1,36,77,79,79,43,23,93,81,60,36,34,89,71,62,76,86,70,64,42,96,33,33,33,36,93,33,6,62,19,98,34,9,31,31,6,48,71,43,19,7,5,88,41,2,41,15,60,11,28,62,97,38,83,60,12,53,55,4,48,1,74,57,20,91,25,56,17,66,49,44,71,60,7,49,45,4,20,87,1,36,92,5,48,21,87,51,3,39,9,67,68,48,81,47,100,53,60,100,36,38,95,83,61,51,90,46,2,100,78,46,95,49,39,24,17,73,18,73,40,14,49,99,58,28,22,14,32,20,27,77,26,39,82,70,25,26,65,91,77,68,75,79,91,88,89,81,47,58,41,70,34,78,90,90,89,22,47,14,74,37,31,26,40,75,99,42,12,87,73,66,75,52,98,4,64,5,31,92,16,94,37,99,24,2,66,100,8,14,71,86,12,78,80,6,87,66,26,68,95,47,55,52,87,74,24,6,99,37,70,84,64,3,38,1,51,32,72,41,46,73,1,51,15,98,94,4,29,51,39,82,8,99,44,71,69,74,100,96,18,19,2,65,56,80,94,89,58,34,12,85,63,54,79,32,16,95,50,75,5,31,38,34,6,20,88,55,48,80,56,99,17,13,20,29,64,91,68,68,8,52,87,97,8,29,54,7,15,8,35,9,71,19,100,69,52,94,92,39,45,94,37,62,34,65,34,82,74,95,47,78,42,97,98,93,9,33,84,77,12,32,46,17,77,30,59,35,30,61,87,89,26,6,67,91,45,80,25,94,22,89,86,57,46,57,80,20,93,49,55,69,63,65,91,44,59,87,7,9,79,92,23,38,84,41,30,13,77,39,18,72,49,82,75,33,52,38,55,65,19,7,28,54,54,73,36,11,59,56,28,54,55,92,94,60,37,17,84,57,55,19,83,64,86,89,26,46,63,21,19,90,43,14,12,100,13,86,64,75,75,8,45,93,19,19,74,67,55,40,89,72,68,56,63,84,64,52,95,86,100,54,47,86,14,2,63,43,38,15,63,20,27,96,3,23,47,37,92,25,15,19,75,56,59,22,20,67,43,91,17,57,78,64,21,55,82,15,4,85,49,95,41,72,57,71,72,34,66,91,26,1,75,2,21,19,47,34,16,37,76,71,78,78,3,88,91,21,39,100,73,15,74,57,61,35,48,13,74,72,19,7,19,34,78,47,68,70,69,82,7,18,85,3,100,89,97,44,56,61,85,47,97,63,50,16,6,55,66,92,37,11,44,14,27,27,79,9,52,25,44,88,76,53,77,58,62,1,48,12,69,62,16,31,86,69,52,94,67,11,40,47,76,63,94,96,83,71,96,58,65,47,71,84,74,58,73,25,40,59,79,49,71,3,42,97,61,79,54,61,56,27,47,2,93,6,68,66,99,87,87,13,40,99,40,21,7,1,66,70,71,35,56,24,46,65,21,62,93,74,3,5,43,11,43,96,9,36,74,67,78,96,52,17,58,39,82,96,27,98,6,43,47,46,1,83,4,59,27,38,85,13,28,23,18,20,99,42,14,48,15,94,62,17,63,19,89,23,31,12,61,41,8,93,27,94,51,33,85,89,41,90,60,10,68,43,85,47,81,13,51,42,2,45,99,83,12,94,46,46,22,57,62,52,84,18,85,32,24,60,95,31,61,14,92,29,29,65,65,35,39,50,12,51,87,99,40,89,88,82,70,97,1,10,84,57,3,35,68,59,23,57,60,41,45,34,46,10,64,30,44,17,30,95,74,94,28,9,57,61,85,50,45,52,77,72,82,86,73,77,94,36,58,95,8,89,75,36,56,13,74,12,28,79,66,52,49,58,75,32,87,52,21,91,29,78,80,22,39,4,51,16,63,26,94,5,76,13,47,19,19,96,46,41,38,49,82,70,62,99,78,78,100,59,96,29,14,71,64,99,13,55,73,5,1,64,28,93,42,8,83,71,17,11,2,41,16,11,31,54,56,76,28,83,95,72,66,66,10,18,15,5,18,45,18,56,27,44,84,74,82,26,73,74,68,26,79,1,69,42,10,94,21,2,15,8,20,40,46,47,59,81,99,40,18,42,84,33,41,41,41,39,50,13,40,31,95,75,39,69,29,78,98,32,47,24,17,67,13,70,38,46,66,10,30,55,59,96,2,71,40,51,77,38,87,65,26,18,24,29,96,70,40,3,36,38,2,27,10,75,74,44,80,87,58,73,60,34,14,1,67,29,64,58,49,92,52,13,11,65,8,98,69,50,75,59,13,23,35,65,2,23,61,67,27,79,74,24,98,100,63,61,97,57,56,25,86,36,76,27,51,54,71,49,69,41,68,90,95,76,9,16,1,74,2,34,51,85,71,84,54,46,88,97,15,94,59,10,17,72,50,50,39,50,86,58,95,59,84,2,66,17,49,56,94,96,47,24,68,11,57,51,3,90,4,74,60,87,26,13,18,66,24,56,1,55,66,83,73,20,1,54,1,83,23,72,65,3,34,26,89,22,57,40,82,57,9,48,16,42,66,35,86,52,47,32,5,81,89,59,5,86,26,69,61,41,46,82,25,35,83,79,99,82,91,40,5,84,53,45,75,95,7,79,41,75,16,85,4,59,48,25,52,28,33,76,13,18,8,97,80,55,15,41,61,18,91,100,7,55,48,63,18,3,91,59,44,49,62,77,99,62,20,69,39,27,25,73,78,60,29,96,10,78,98,90,36,12,28,42,9,48,87,94,22,73,84,44,50,48,56,78,28,59,62,3,83,84,21,13,100,19,36,34,90,13,15,37,42,16,78,93,15,27,94,82,97,3,24,30,83,15,42,54,82,95,39,62,53,72,73,21,41,59,65,67,16,47,58,76,29,92,6,49,26,39,5,94,39,58,80,25,30,100,89,70,44,91,67,24,45,98,100,31,5,92,95,9,75,35,47,53,80,78,71,58,85,49,64,22,20,62,51,68,72,25,81,25,54,74,86,60,89,99,51,52,82,37,96,11,25,34,75,59,37,77,68,34,43,96,50,12,90,24,76,73,25,67,14,7,96,28,58,9,80,61,96,53,16,4,10,68,11,47,79,52,57,74,82,88,53,74,25,12,14,81,75,95,21,72,35,80,18,72,88,72,33,62,37,80,7,99,57,41,99,97,31,1,85,75,77,94,86,36,15,50,28,71,22,21,1,94,96,87,63,66,76,38,63,38,47,95,26,68,57,21,40,33,57,57,59,73,3,69,76,28,5,36,26,31,26,85,43,53,37,84,45,34,81,33,88,82,30,36,64,44,92,99,51,47,85,47,36,38,32,88,85,40,68,85,64,17,57,16,11}
{28,89,99,27,20,27,91,64,56,14,10,1,41,76,80,33,28,12,94,42,32,18,18,100,94,12,73,96,51,80,98,26,64,13,14,43,66,20,50,36,39,59,3,4,57,68,4,3,38,97,63,53,52,81,79,45,44,60,9,31,90,24,67,66,11,47,69,36,12,98,83,18,94,98,24,45,10,91,3,57,6,82,32,94,90,19,28,26,9,47,39,16,28,73,24,92,86,97,100,20,27,100,37,2,61,100,63,49,98,93,86,57,60,36,83,67,28,41,74,2,31,46,71,48,14,82,81,94,63,39,93,73,61,70,12,86,77,57,82,66,82,22,32,40,70,24,26,4,52,25,8,73,51,21,26,100,98,18,23,66,80,50,67,50,20,70,57,26,16,95,32,61,95,30,32,59,29,1,42,41,93,8,66,99,20,99,16,88,4,26,5,8,81,66,83,20,74,36,95,22,64,19,86,43,78,2,33,38,47,32,53,25,90,92,18,45,29,71,43,47,28,20,65,43,75,68,75,36,81,46,66,20,3,65,6,2,35,11,24,65,78,35,20,36,81,80,74,45,60,22,27,44,57,100,67,74,25,79,7,22,39,16,9,42,39,100,33,88,21,94,38,98,72,51,58,42,22,34,19,98,76,75,57,8,15,91,71,51,60,6,59,84,69,28,50,41,39,25,98,2,50,57,82,5,46,39,84,76,23,64,80,82,17,70,66,92,38,14,17,73,9,90,28,55,12,72,33,84,3,19,62,17,28,4,88,25,85,93,89,37,13,34,5,2,38,66,34,52,67,68,53,15,71,90,69,57,60,19,65,53,54,99,79,25,14,90,99,52,68,89,28,17,36,100,76,52,64,62,13,59,74,58,66,71,93,91,45,91,9,22,89,78,62,12,87,8,1,99,67,49,18,53,43,53,58,65,48,11,68,51,79,29,3,25,56,30,89,32,14,51,35,36,82,92,81,42,20,35,28,49,88,83,71,54,9,6,16,70,2,61,78,95,7,86,46,20,27,77,72,67,34,64,98,62,79,11,21,51,45,76,13,21,51,88,86,24,2,61,77,99,38,26,10,24,75,40,37,91,100,17,22,44,98,54,70,27,23,36,42,45,31,59,14,9,20,50,59,5,96,54,30,17,83,45,21,64,87,98,76,99,58,19,69,15,89,33,88,73,32,89,71,56,32,31,8,3,41,17,79,14,79,26,3,28,25,61,95,84,28,98,72,64,14,97,4,61,65,14,31,88,5,64,45,60,4,58,5,90,65,39,3,40,2,98,1,62,75,38,41,74,34,65,20,24,99,2,21,56,63,51,21,44,38,8,83,13,44,45,81,85,8,28,52,60,51,72,74,79,55,8,30,46,3,97,90,30,84,50,77,46,35,5,57,77,78,28,72,12,51,85,35,80,29,43,38,89,33,64,5,14,4,34,52,58,10,70,56,64,16,73,78,55,5,30,61,81,92,17,95,88,19,23,76,30,34,3,14,45,7,48,26,26,16,5,90,64,67,76,40,75,90,87,90,16,50,92,59,31,68,14,68,13,46,58,30,47,3,22,48,41,21,39,58,92,3,54,34,90,96,75,81,51,39,94,83,32,7,5,84,30,36,81,8,44,77,61,74,38,49,73,22,11,85,92,77,9,75,99,6,38,30,84,34,3,49,9,83,50,10,97,4,82,16,9,33,80,65,22,98,52,94,72,58,48,68,31,5,37,58,13,19,4,40,84,92,88,4,1,70,79,40,100,73,87,94,51,71,56,62,17,84,63,76,89,67,78,14,99,24,49,22,13,57,36,84,49,33,48,51,77,82,9,15,63,10,68,18,71,13,50,28,12,20,71,74,88,25,51,89,37,17,27,46,83,82,6,89,12,87,73,94,71,55,77,94,95,3,14,21,29,73,27,78,75,33,30,67,84,71,59,52,85,32,63,5,11,62,10,46,40,38,95,6,77,86,47,8,23,35,55,69,85,90,96,38,27,43,5,13,31,30,87,48,9,75,98,76,61,30,93,38,49,45,5,77,90,21,13,22,90,37,58,35,30,38,3,37,9,56,47,49,37,69,74,30,53,22,80,77,64,66,4,94,33,84,92,78,85,62,34,12,63,67,49,99,39,74,41,22,84,66,98,27,95,66,12,2,19,63,51,28,35,98,66,63,25,26,9,51,14,12,91,79,74,11,64,65,53,8,89,93,52,91,22,60,47,10,65,90,61,65,55,34,16,37,80,14,79,28,66,30,32,31,65,74,86,14,14,17,83,92,76,72,96,34,54,11,70,29,12,39,23,61,75,97,45,33,48,66,77,57,45,81,42,26,50,61,83,30,90,85,41,42,66,86,58,64,81,91,87,37,15,29,83,70,89,53,48,53,25,35,66,38,40,66,72,62,78,1,83,99,83,50,96,78,73,86,28,28,48,89,7,11,18,23,32,32,60,31,56,90,96,15,14,22,25,40,73,1,81,51,76,54,27,61,52,99,2,81,71,82,82,28,81,87,61,35,78,77,40,38,47,92,72,74,91,87,46,65,44,62,70,6,94,44,79,86,54,67,4,7,67,54,48,44,90,88,27,28,70,14,11,72,16,19,21,84,81,56,32,52,78,8,41,51,93,92,8,86,19,33,74,10,87,23,28,90,59,74,11,31,53,46,41,55,67,24,13,73,16,44,44,29,40,63,11,46,74,67,27,12,91,80,53,66,86,36,25,67,92,14,12,85,45,12,68,97,28,58,100,95,29,32,32,31,63,43,70,31,21,92,30,26,21,85,78,13,23,30,88,74,33,86,56,14,34,49,13,77,97,2,15,41,43,60,35,19,72,20,63,62,62,68,72,53,70,21,34,21,11,5,71,94,50,6,39,19,13,85,15,59,10,23,96,56,76,52,91,20,35,13,3,65,65,29,63,53,45,68,50,76,82,97,7,91,53,71,93,97,25,56,87,22,30,52,38,96,75,62,80,97,35,95,93,21,44,21,93,19,46,63,5,98,88,92,16,46,23,40,85,90,44,42,3,27,68,96,67,3,74,43,90,35,68,33,90,72,7,1,74,97,54,64,75,75,17,60,27,8,79,29,33,50,76,35,10,96,22,63,45,5,80,46,9,66,71,49,86,55,16,67,19,39,31,43,86,31,43,13,40,73,62,39,51,37,87,28,60,28,51,21,89,43,76,40,40,4,67,10,11,58,78,12,35,73,51,8,10,13,95,92,98,90,45,4,20,37,53,32,70,30,62,78,25,22,61,61,44,14,41,36,68,4,57,1,45,5,59,45,73,4,54,68,93,90,75,65,80,11,37,15,9,84,28,89,64,89,1,80,2,5,37,40,89,56,18,71,41,35,45,86,94,64,70,88,96,40,25,73,48,60,95,69,6,25,36,86,3,32,19,5,11,48,84,89,15,54,87,63,49,12,55,1,51,91,13,24,7,22,91,8,68,25,98,97,85,57,46,33,45,7,98,95,96,13,45,93,7,68,44,75,30,5,17,19,65,12,41,62,38,39,96,36,74,1,88,32,25,88,93,10,57,91,19,15,55,42,87,14,71,81,37,34,2,100,98,71,16,96,93,9,13,41,29,77,88,87,52,75,46,88,98,16,41,53,15,99,21,34,87,7,23,1,18,6,90,23,84,58,79,92,19,30,98,86,7,10,35,56,26,61,17,78,14,1,35,64,56,55,57,71,49,79,65,88,13,18,93,91,86,43,86,94,13,4,57,10,60,93,95,46,21,51,94,37,90,22,41,14,60,79,70,50,55,79,90,14,8,17,84,81,69,72,19,29,96,7,24,41,43,16,63,84,76,43,74,41,69,25,71,69,21,8,52,58,44,6,22,46,63,40,34,32,5,17,16,72,3,29,15,20,72,75,51,29,36,17,87,23,2,48,26,47,72,88,45,57,2,52,64,53,56,25,57,67,60,41,17,82,9,95,50,64,89,71,1,42,49,99,1,55,92,55,97,17,65,70,37,8,93,58,86,38,41,33,84,38,91,98,18,69,71,39,10,35,42,36,34,82,100,49,57,66,61,92,86,26,81,35,73,8,4,9,26,96,44,2,60,4,82,44,67,81,3,74,14,54,1,80,18,27,59,78,33,69,42,65,61,50,65,35,97,56,23,36,28,97,74,28,63,27,97,88,71,18,69,11,24,27,93,69,59,15,56,91,23,28,100,47,32,73,80,71,20,50,32,63,94,92,61,63,57,94,59,52,40,71,2,90,73,96,65,23,26,18,91,47,52,41,69,13,45,84,92,87,10,99,37,64,68,46,25,47,61,66,59,74,42,85,55,37,19,22,68,41,90,35,51,53,9,52,26,90,17,7,82,89,9,69,12,49,40,99,63,59,48,52,81,17,100,49,69,51,22,91,68,50,95,14,70,78,4,85,78,42,77,50,74,94,72,45,78,80,84,41,64,93,65,7,61,21,98,10,65,12,48,39,87,81,55,94,1,96,58,5,86,72,49,82,96,4,35,28,95,8,7,28,46,67,81,54,68,63,22,9,74,15,1,8,59,68,68,78,22,46,10,4,100,59,47,33,63,97,6,49,94,31,36,9,27,41,63,32,3,60,23,48,73,28,73,28,21,73,65,25,59,26,50,15,34,8,5,24,84,52,81,9,18,87,22,84,6,80,68,73,37,78,3,77,61,78,22,16,19,34,76,74,42,10,84,39,52,35,25,13,99,96,82,52,4,60,73,91,86,25,69,92,61,82,32,10,57,59,80,13,51,44,27,84,78,84,14,15,92,70,50,77,31,75,30,51,75,24,11,5,7,99,100,20,68,2,82,58,13,68,75,30,24,46,57,10,58,14,51,100,5,91,73,7,78,50,30,28,67,97,54,80,14,34,32,45,58,25,91,2,68,60,93,34,39,58,62,92,79,35,46,82,22,77,51,41,10,17,87,94,78,38,20,100,47,23,65,87,69,19,52,72,15,36,49,49,9,29,67,78,99,69,57,15,50,91,65,8,15,58,54,19,40,50,62,65,51,99,56,100,29,68,26,68,95,49,95,85,89,4,18,72,14,61,26,79,86,84,90,11,47,8,89,18,23,23,24,96,21,37,62,87,41,49,80,96,22,43,46,96,41,32,100,96,59,48,92,66,62,29,99,26,14,56,54,75,53,95,21,70,65,85,14,56,84,19,47,30,26,4,36,55,16,86,85,94,35,48,28,93,13,74,86,23,85,62,24,82,62,37,48,74,92,9,15,90,46,37,18,4,26,54,96,61,73,14,99,45,63,75,99,32,68,24,16,28,26,5,35,2,65,69,9,92,26,81,62,44,76,6,54,25,21,50,55,69,9,16,15,13,57,81,44,78,68,48,3,89,54,59,44,68,58,92,78,9,49,74,92,71,68,43,22,10,18,27,73,41,22,38,76,14,32,19,93,27,11,8,10,82,24,83,25,94,39,57,76,45,63,92,57,67,64,70,60,51,70,51,91,29,99,4,35,10,24,33,93,95,14,16,72,39,34,45,83,20,60,46,81,14,80,26,19,46,84,35,65,5,55,6,12,79,25,59,26,35,49,78,75,44,14,16,51,93,61,72,93,77,1,88,58,3,36,28,72,38,81,53,5,5,65,1,4,56,22,48,60,33,75,54,37,52,78,89,4,63,18,16,71,83,64,93,17,80,33}
{1,74,1,3,32,13,1,3,1,3,1,1,1,6,4,3,33,10,67,10,40,72,8,5,12,16,11,1,2,72,4,95,76,1,3,1,56,22,2,16,1,44,3,56,2,1,5,1,18,1,8,2,19,1,11,44,1,10,8,37,10,13,1,45,3,1,71,8,2,10,26,3,1,1,42,13,2,3,11,23,11,6,6,1,2,92,9,29,1,2,4,1,3,5,5,20,48,3,62,99,76,58,3,8,1,24,2,7,36,6,3,12,6,47,1,59,3,63,5,10,1,81,49,73,13,80,38,93,38,9,28,57,82,30,53,1,17,37,4,26,7,3,2,6,9,1,11,7,2,7,19,17,13,10,59,3,1,47,1,29,23,4,3,3,17,34,7,1,2,23,8,6,2,3,73,3,1,37,1,1,2,1,4,16,52,2,77,6,14,27,7,1,2,5,7,8,1,3,17,4,6,15,1,6,3,1,10,3,1,7,6,26,7,8,19,8,6,3,38,85,10,24,7,11,52,2,1,15,9,4,51,25,18,21,1,82,92,94,14,1,11,47,58,1,28,6,26,2,29,59,5,19,82,43,1,12,1,2,5,4,1,1,71,71,25,2,31,1,9,4,3,1,5,4,66,1,1,20,14,37,4,12,1,15,10,92,1,67,4,36,2,57,19,15,9,3,4,7,2,20,2,22,1,50,14,2,37,6,6,4,9,85,40,15,47,51,1,68,15,47,75,73,35,7,1,5,92,2,1,64,4,4,2,1,2,3,13,2,1,10,48,4,5,57,11,11,4,1,38,12,31,90,13,97,81,16,19,46,38,4,1,64,9,1,1,2,16,12,12,9,4,55,4,1,20,9,2,22,8,19,62,14,1,61,6,4,1,3,19,8,16,29,1,11,37,11,55,8,2,3,3,14,22,4,20,17,2,8,36,1,19,21,47,2,6,23,7,1,45,19,7,16,1,2,2,3,54,3,2,7,11,12,34,46,3,26,1,29,21,2,56,14,3,25,6,5,98,54,61,67,11,9,12,2,20,1,10,60,1,15,1,21,96,15,26,1,5,73,56,14,60,4,1,9,6,5,35,62,65,12,1,15,12,37,2,1,46,3,18,2,10,77,3,7,5,9,19,1,1,99,1,6,37,89,16,86,13,7,80,1,2,36,11,2,3,8,46,1,7,3,3,30,99,15,11,1,5,2,23,5,4,10,1,8,3,88,13,1,1,68,4,37,6,3,89,36,18,10,3,65,3,69,31,65,8,9,55,13,51,44,9,61,11,5,5,7,12,21,46,56,4,22,10,87,40,2,2,27,88,2,24,1,1,28,78,1,2,5,65,24,26,2,4,84,9,15,33,31,20,5,25,72,9,1,16,10,14,5,11,11,45,14,2,39,20,1,3,3,98,1,26,16,12,13,9,1,23,19,47,10,2,62,13,53,12,3,7,12,22,30,2,12,3,14,4,8,1,15,1,1,87,2,36,23,3,17,1,24,1,30,23,5,2,8,48,4,4,32,2,3,2,67,3,16,7,25,3,3,18,1,2,2,1,98,3,1,1,47,13,3,23,13,3,61,51,20,3,2,53,23,6,2,1,1,9,1,1,11,58,3,8,17,41,6,2,9,12,2,18,72,8,2,1,2,5,67,6,65,4,46,4,1,65,1,9,1,30,48,36,2,99,1,38,18,16,13,15,25,43,1,14,19,3,59,1,4,8,8,5,83,67,76,24,63,5,89,20,2,4,2,87,3,5,44,5,33,1,12,4,7,3,1,2,35,6,88,5,17,2,18,4,33,5,4,1,9,31,26,8,1,2,2,13,21,6,3,87,8,44,9,1,1,3,49,3,7,48,10,59,6,54,73,3,11,20,2,42,39,5,1,8,3,3,48,17,1,9,59,7,41,1,17,1,23,26,7,7,15,13,19,3,15,3,29,1,1,54,6,37,4,43,1,8,1,14,1,4,14,4,2,23,3,1,6,26,4,1,21,14,43,40,7,25,81,24,1,7,6,66,2,24,82,10,27,33,3,1,18,3,2,25,22,2,1,23,24,26,55,1,2,8,4,23,1,99,6,4,10,10,11,8,3,10,4,2,6,6,1,25,4,42,1,3,69,11,13,3,4,1,14,2,1,38,2,2,38,6,34,28,19,8,18,2,14,71,3,65,7,33,23,9,5,1,67,84,1,6,1,1,85,7,7,1,80,4,80,3,2,2,21,22,6,1,2,4,1,60,8,79,1,4,2,34,6,5,5,2,5,17,7,10,87,14,8,1,44,4,5,3,14,80,27,2,66,1,74,1,3,19,16,7,2,69,1,10,1,4,68,27,85,16,66,14,54,45,2,12,11,5,4,12,1,67,79,1,5,11,2,1,1,42,8,46,1,36,10,9,22,8,38,8,2,79,1,4,36,4,49,1,12,2,4,8,85,18,9,61,8,2,4,1,65,59,9,41,13,5,26,52,2,6,7,37,94,5,12,30,3,3,1,68,12,44,26,7,29,12,8,11,31,16,1,30,8,47,10,6,2,1,47,71,6,47,1,46,3,41,6,59,3,2,11,6,5,3,31,6,4,12,2,24,10,1,46,5,84,1,29,5,64,5,6,1,15,15,1,3,1,43,46,2,13,6,11,9,4,1,6,6,16,47,25,8,20,66,48,21,2,12,77,43,53,79,81,7,1,2,1,3,13,2,88,74,1,59,39,27,6,1,38,16,11,1,2,43,1,2,1,1,35,3,1,1,8,14,85,25,1,30,21,10,9,82,7,6,71,4,15,27,2,1,11,4,47,7,1,6,1,17,8,4,7,89,49,34,19,25,88,13,2,12,14,48,15,3,5,15,2,5,1,1,29,21,20,12,64,63,6,15,1,6,50,76,39,55,52,4,12,18,90,8,93,23,6,49,56,1,10,53,5,2,2,1,17,21,12,8,38,5,30,60,49,54,8,5,2,1,32,5,2,43,1,66,2,5,1,33,3,26,60,4,74,4,59,2,17,7,3,10,16,1,5,5,10,1,1,1,28,19,28,68,24,7,6,86,1,16,1,26,12,7,3,38,92,19,72,17,3,5,1,5,1,2,56,12,2,1,17,4,1,43,3,1,8,3,2,1,12,4,79,1,4,1,5,44,5,18,57,45,27,4,87,10,19,91,13,6,21,64,3,5,21,6,2,97,53,17,3,1,51,8,3,6,15,1,35,1,1,1,39,16,2,3,2,28,99,54,29,40,9,6,24,43,71,2,40,30,69,56,19,17,64,11,13,62,3,2,21,64,3,13,1,5,1,4,1,1,1,17,5,51,2,17,94,30,3,5,6,49,10,58,4,3,11,5,10,1,1,20,5,2,1,90,28,22,1,38,32,4,1,15,1,69,19,2,92,1,16,1,1,1,14,55,25,42,16,94,27,49,14,49,6,7,6,5,6,50,25,42,34,15,1,6,5,12,2,3,55,13,73,7,19,62,36,9,21,81,14,98,5,9,72,1,13,1,2,27,4,1,12,66,4,60,1,21,79,49,2,4,1,3,3,28,68,1,3,2,7,25,1,73,4,5,1,41,13,3,9,20,1,41,94,1,5,8,3,3,6,1,18,14,1,5,60,32,2,14,25,17,5,60,2,1,9,2,23,2,13,3,3,11,7,35,24,21,2,1,2,19,2,1,7,11,3,1,14,9,55,20,26,35,2,73,1,4,2,10,19,7,3,1,18,28,5,3,13,6,4,23,36,4,51,4,3,12,82,26,7,1,28,2,4,34,3,57,4,15,2,2,1,53,90,4,55,1,86,41,79,10,2,9,2,51,3,53,16,1,18,16,26,60,48,14,36,3,5,22,23,2,8,29,71,1,3,3,2,1,22,13,1,1,34,8,5,82,13,93,61,21,38,2,1,1,3,1,34,2,8,25,60,9,61,91,3,1,7,2,11,1,4,27,59,36,63,1,25,35,40,10,1,42,5,20,23,2,33,6,12,2,88,12,5,1,7,72,1,6,24,94,3,17,12,4,18,1,1,1,20,11,5,77,7,6,4,5,8,67,20,85,15,3,1,1,87,37,2,3,8,5,3,88,77,2,3,2,7,1,23,40,1,6,2,52,8,69,10,2,6,18,3,6,8,8,5,8,10,6,2,3,58,63,33,66,9,7,29,4,10,91,39,1,2,17,32,5,2,17,16,8,1,9,2,10,34,78,53,3,52,2,1,1,8,2,1,19,1,79,8,1,98,6,2,43,40,33,11,89,35,1,16,11,51,2,3,5,13,15,72,17,2,76,3,2,5,2,4,2,6,37,26,7,34,4,47,44,18,7,16,17,1,73,5,8,36,76,4,35,64,1,60,15,3,4,72,35,2,12,28,2,9,52,1,4,27,2,1,58,13,2,55,1,13,74,6,1,3,14,25,25,16,6,13,5,10,2,1,1,12,12,11,7,18,38,5,8,2,33,15,9,1,4,33,2,2,2,83,1,6,1,7,4,6,1,2,35,13,4,74,9,46,93,7,14,1,77,19,13,11,2,7,1,16,27,2,2,2,14,7,4,3,69,2,1,2,3,10,1,42,20,1,20,15,2,17,8,67,27,21,1,4,19,5,2,46,1,25,7,1,30,50,2,18,12,3,1,18,40,4,1,30,2,60,11,31,7,73,3,17,1,9,7,4,70,81,12,4,31,71,25,29,55,35,37,76,1,27,19,77,8,98,1,22,12,76,2,2,25,6,4,5,6,3,58,1,6,1,17,1,2,2,44,25,1,4,15,5,23,47,3,1,12,4,1,32,80,38,1,66,5,52,15,57,8,11,4,2,3,98,52,2,1,19,11,10,55,16,41,2,44,1,16,22,26,35,23,2,60,4,1,24,12,1,2,12,25,3,82,2,96,31,1,11,56,1,7,9,87,2,1,25,10,36,1,3,1,63,50,15,10,11,49,67,3,10,3,15,63,57,2,12,55,16,6,1,25,25,8,55,3,66,11,34,51,26,5,11,10,60,38,93,1,21,2,84,5,12,2,25,46,31,1,1,2,18,13,80,16,18,2,77,1,2,45,3,4,3,1,11,2,11,17,8,25,9,18,2,1,8,20,31,5,11,24,1,3,1,19,5,33,60,73,15,28,1,39,4,12,8,5,1,9,3,1,16,3,38,6,65,7,30,7,55,45,8,25,16,1,4,2,1,2,11,13,1,3,1,1,2,1,21,26,8,1,46,29,65,40,3,13,1,9,2,4,27,5,93,30,4,28,17,43,1,5,1,92,77,5,47,1,39,25,1,96,39,88,10,66,8,36,10,32,7,1,14,58,1,67,13,5,3,10,22,7,1,37,4,14,7,75,1,1,5,34,71,2,11,16,5,14,99,92,4,5,97,6,83,2,6,2,63,31,6,2,77,1,1,44,1,1,44,2,4,2,6,59,21,6,15,2,3,76,1,7,3,88,20,41,99,1,4,77,2,2,9,5,10,2,3,20,2,24,4,23,2,4,18,52,11,13,95,1,3,10,9,21,12,1,45,8,1,7,7,12,37,5,7,1,1,67,92,98,22,2,89,3,4,22,43,44,71,18,14,64,2,5,2,1,67,1,1,5,9,10,1,36,1,6,17,1,1,4,11,3,12,24,84,6,8,38,61,24,94,29,2,3,34,26,78,75,1}
Returns: 7.254901098920991E8
{75,27,46,9,57,2,99,23,90,3,92,35,100,75,76,44,20,28,32,42,33,66,50,17,21,71,69,59,98,58,61,92,1,48,35,35,6,98,87,49,98,93,23,19,9,53,59,20,91,76,45,30,27,26,75,86,43,93,82,42,2,32,33,25,80,77,20,79,46,26,64,97,62,85,17,10,2,35,32,89,9,77,22,81,29,34,21,41,73,95,42,26,87,63,56,44,69,89,45,47,88,84,95,65,23,66,23,45,18,17,1,57,86,52,71,57,75,11,91,41,20,91,46,18,56,31,9,85,69,25,11,55,94,71,77,5,52,27,92,95,30,37,7,64,59,83,80,24,72,28,99,51,26,39,75,41,79,39,49,63,24,70,53,98,51,58,31,15,88,24,83,10,47,16,44,64,64,56,56,71,37,27,28,12,66,62,77,35,61,23,94,20,58,53,41,24,69,74,20,71,97,55,2,77,45,36,8,30,24,25,90,58,50,78,6,20,71,88,52,85,33,84,36,93,24,71,8,47,95,25,89,69,63,73,50,18,13,34,71,83,70,94,43,88,41,58,12,42,80,23,77,75,66,53,77,2,91,41,97,80,71,34,34,6,97,9,15,96,38,27,79,48,86,36,62,98,2,54,7,51,11,43,49,62,12,67,86,71,47,76,43,92,94,9,92,72,77,39,73,62,6,56,74,35,72,28,18,84,15,92,83,89,66,13,57,77,70,91,91,71,32,83,71,92,23,31,59,79,8,55,22,13,24,63,42,43,44,15,69,46,16,88,49,48,52,34,74,57,75,40,83,88,91,92,19,37,92,73,31,6,12,82,43,87,83,82,90,89,48,97,52,57,76,31,32,89,32,9,81,94,13,51,54,11,57,1,98,67,61,39,72,78,35,2,76,72,27,68,39,67,5,42,92,60,12,82,5,74,97,41,9,11,63,58,61,56,57,59,60,59,88,32,5,60,91,14,35,53,60,40,48,24,81,28,43,91,22,8,46,26,71,46,9,66,62,7,6,4,41,60,2,16,24,44,30,82,19,17,33,70,73,54,67,69,77,98,55,21,40,31,11,21,31,4,49,79,94,91,52,73,42,72,96,71,33,71,63,90,71,13,47,8,98,3,5,100,49,56,55,28,24,7,45,94,59,26,32,82,6,6,53,5,53,86,33,22,45,57,8,18,28,42,94,16,84,36,28,61,53,75,70,95,64,32,7,78,17,44,43,99,49,41,20,90,33,92,6,91,18,58,45,88,32,38,44,44,100,8,87,20,12,37,59,27,14,71,25,64,44,37,17,46,44,85,4,4,42,80,6,4,43,32,45,34,51,10,46,5,64,49,62,77,10,96,79,1,56,7,79,90,83,72,36,58,70,60,6,77,92,63,54,5,61,60,18,48,67,48,92,70,95,65,34,93,8,63,74,32,78,24,99,49,32,71,46,42,79,87,16,89,31,33,47,82,12,80,77,60,85,57,98,77,91,60,89,46,93,26,88,75,87,10,100,29,15,11,7,55,41,63,69,84,49,29,35,33,3,61,26,31,74,13,7,75,32,81,34,8,40,80,5,40,44,84,34,71,85,36,58,3,3,76,33,17,8,45,27,43,11,86,84,79,27,42,28,85,8,90,52,54,10,95,13,39,18,50,70,57,47,8,14,71,86,41,21,15,96,48,11,96,97,75,21,28,48,32,88,94,72,66,70,90,67,2,91,61,75,78,96,24,7,72,87,72,94,54,24,76,12,35,10,7,58,22,27,84,65,60,19,63,15,22,58,10,21,6,21,63,86,4,54,95,49,52,29,29,58,83,74,83,70,6,54,81,97,64,7,31,67,51,63,72,75,57,54,73,97,25,34,91,59,61,88,44,33,68,4,71,2,75,28,51,30,63,86,94,18,67,92,54,67,58,4,85,57,24,13,12,27,54,67,31,1,31,28,83,21,85,82,65,28,88,79,87,53,38,85,4,49,50,85,92,87,72,27,33,94,29,76,62,72,48,53,72,99,25,92,70,25,77,59,65,40,59,91,91,83,41,18,85,91,19,26,10,74,51,100,38,17,57,71,14,63,42,36,9,33,88,15,49,84,25,2,90,77,80,63,67,54,38,17,81,84,36,86,96,32,77,83,43,63,12,35,99,67,83,12,58,4,24,7,12,59,32,20,28,80,13,9,73,19,50,79,94,9,10,81,88,89,38,56,84,3,98,66,89,87,97,87,8,1,50,28,78,66,74,57,58,84,24,74,79,6,79,94,89,7,15,18,21,82,36,83,75,90,7,89,29,74,74,70,84,80,79,95,16,17,61,14,8,34,41,67,69,1,56,93,28,23,26,55,100,68,17,88,25,43,51,60,94,73,82,86,52,71,19,10,70,99,39,93,29,21,43,21,53,52,23,30,32,85,92,2,4,66,29,68,77,45,1,87,66,93,9,16,30,18,4,15,30,75,3,67,96,54,65,80,12,1,26,78,58,92,19,29,2,12,2,22,71,74,64,79,41,99,18,57,41,36,45,73,12,4,45,76,37,42,34,11,64,40,45,55,11,43,95,16,10,53,56,11,36,54,81,17,59,28,42,14,83,91,13,68,71,97,23,46,85,17,33,35,58,89,42,82,78,77,24,13,59,54,34,36,4,32,45,55,57,38,93,13,21,15,39,41,39,86,52,34,55,70,81,94,93,7,39,50,84,51,94,35,96,40,57,53,46,85,53,42,54,71,1,39,10,37,43,38,86,25,28,98,43,18,44,30,57,22,17,29,76,30,72,80,8,54,4,98,43,42,77,69,52,50,80,2,42,42,88,92,5,19,69,95,59,94,72,2,98,80,42,89,34,14,14,69,74,45,24,48,70,43,57,42,66,97,11,21,16,55,61,28,24,68,85,94,74,60,56,16,14,37,14,56,99,84,11,13,31,85,63,6,12,11,32,85,84,73,57,45,33,52,73,93,43,44,73,29,97,53,16,88,74,56,44,83,36,68,52,7,81,98,22,3,6,60,80,55,40,52,2,85,16,92,89,7,95,93,33,63,83,44,6,34,58,42,55,55,16,44,16,43,12,29,39,34,3,17,92,98,25,11,14,81,59,77,82,46,34,55,18,88,52,33,55,71,24,98,7,15,21,61,91,55,43,28,97,15,58,81,73,17,16,47,31,90,95,37,13,44,43,17,98,41,46,60,22,61,4,5,45,14,84,81,10,87,6,64,54,65,44,98,58,72,28,25,77,1,93,36,30,26,72,88,58,49,7,52,84,70,20,26,79,86,42,55,19,80,38,59,99,16,94,62,67,3,98,44,95,71,78,9,1,56,3,97,14,4,73,79,44,49,24,43,80,55,19,16,73,94,8,54,37,39,63,46,71,79,89,28,18,94,79,22,68,22,29,18,60,52,12,54,65,51,71,6,9,53,38,6,42,47,65,94,92,11,18,54,91,68,19,50,47,82,95,50,20,40,74,19,34,15,71,42,33,62,7,18,65,78,52,17,63,81,13,42,42,88,54,97,22,40,17,70,74,85,96,95,4,80,22,42,16,38,52,1,40,64,90,40,64,68,4,64,99,59,8,14,74,20,31,98,81,86,4,7,11,29,43,13,48,23,82,93,46,58,16,49,93,20,28,22,34,1,5,84,32,76,85,41,64,79,41,19,75,69,96,32,60,77,28,75,18,39,76,76,66,98,7,57,51,85,54,59,45,23,51,56,80,4,4,60,88,18,98,14,3,93,37,83,98,21,55,53,93,94,45,36,91,86,11,56,82,40,12,71,59,98,48,46,37,58,24,22,52,55,49,6,75,8,52,14,88,91,26,28,74,75,92,41,4,5,24,86,52,55,77,12,2,87,76,82,40,88,3,30,45,77,17,90,63,26,28,60,21,1,67,21,6,49,38,72,76,57,59,56,30,75,100,95,69,43,70,46,58,97,25,5,26,75,64,65,70,73,19,30,77,6,73,58,39,41,12,58,4,60,75,39,26,25,72,55,47,47,27,1,14,81,41,67,29,2,80,77,28,63,77,28,13,95,79,50,100,34,61,16,91,72,24,80,52,55,17,26,66,49,43,33,17,97,52,52,94,54,99,9,22,92,5,94,76,1,54,2,100,7,86,33,29,31,31,45,2,91,14,47,74,51,66,26,35,54,100,48,23,79,39,75,35,66,40,75,40,45,24,48,61,80,3,64,25,25,97,79,68,27,33,94,40,6,86,56,86,32,97,56,65,6,64,50,25,45,56,13,73,94,17,13,73,2,33,54,46,91,23,2,69,36,10,35,74,46,36,13,49,21,75,78,18,8,76,25,14,20,95,73,19,54,33,90,69,47,9,91,82,32,63,20,16,99,33,13,84,29,33,49,10,92,52,31,66,81,28,83,19,7,23,77,15,84,42,57,28,52,13,77,46,64,5,68,91,74,65,47,46,19,29,50,28,83,42,80,32,50,64,2,96,73,8,78,29,29,100,5,8,64,41,32,92,82,67,74,65,76,80,71,10,89,99,28,21,20,68,5,59,7,84,82,10,85,28,50,21,91,3,1,96,25,86,17,58,61,27,51,25,89,41,82,19,41,48,49,88,60,20,83,22,64,34,2,35,80,97,10,32,13,48,69,87,70,52,82,35,71,77,9,37,2,82,27,65,63,43,75,48,55,23,7,54,35,19,91,78,64,27,60,99,96,38,3,89,65,85,42,63,24,94,98,33,71,31,3,62,3,75,38,5,43,40,16,5,47,42,36,21,37,99,52,88,36,95,97,51,54,43,78,48,44,52,75,17,3,55,94,46,68,36,34,41,69,92,61,26,71,73,9,99,41,78,89,62,85,12,6,16,41,74,60,10,62,36,91,2,66,20,22,3,57,34,49,30,24,8,94,70,79,33,18,95,30,36,37,66,47,19,29,100,95,34,97,48,36,7,5,70,26,93,34,17,4,24,99,81,12,4,76,30,25,11,87,60,72,8,69,42,85,82,22,97,79,20,11,35,97,70,29,56,7,51,99,46,61,62,10,3,44,73,16,92,58,6,58,65,69,77,36,65,61,22,26,4,4,30,40,40,16,79,93,59,78,31,48,23,94,96,5,97,51,16,34,18,47,86,16,70,7,74,62,7,5,64,31,78,10,54,57,71,3,67,29,75,61,91,24,82,15,68,35,70,30,89,48,52,44,82,48,24,31,11,56,25,96,2,57,15,66,81,28,41,22,92,95,59,69,9,66,6,27,50,19,81,8,75,84,53,67,3,16,82,37,33,62,76,82,100,65,49,5,39,76,68,42,20,7,7,66,97,14,7,4,2,17,1,36,85,17,50,1,70,61,60,1,4,23,48,14,10,90,88,76,53,90,89,3,23,13,70,53,43,38,22,94,56,29,8,5,82,31,26,39,87,30,2,27,6,77,34,14,19,2,59,21,36,46,8,13,7,76,86,75,81,99,39,39,22,14,1,87,28,4,22,33,28,32,80,14,72,76,8,62,20,86,94,83,94,55,62,64,66,92,38,64,84,24,52,33,24,39,44,2,60,25,71,80,49,11,12,63,42,27,49,9,8,55,29,35,68,41,18,84,57,31,45,94,77,17,32,95,57,45,29,12,88,29,53,29,33,54,16,92,41,60,71,15,98,83,35,31,93,40,91,1,1,2,66,65,87,86,26,69,69}
{53,68,36,20,57,79,11,48,16,78,89,86,26,89,16,74,64,70,90,87,22,89,40,14,44,38,21,5,1,90,53,73,76,11,94,7,47,95,100,45,71,49,85,16,10,8,12,59,94,61,98,55,44,80,45,56,38,33,79,79,75,31,50,76,72,85,68,24,43,17,95,62,94,71,50,46,80,33,75,11,85,1,36,37,24,89,19,9,51,47,93,36,71,88,43,40,13,60,3,61,35,83,24,74,62,21,18,46,50,10,99,42,93,85,37,60,37,16,100,76,1,6,38,20,29,30,96,65,82,41,16,53,19,41,81,48,79,82,31,52,77,89,52,66,83,59,65,26,47,81,53,16,46,3,20,61,26,82,82,97,93,85,42,27,85,49,81,43,35,47,21,89,77,8,72,69,7,99,17,28,49,91,89,86,99,59,16,70,55,76,31,60,42,41,99,73,30,12,44,13,78,35,98,30,71,12,79,3,20,17,56,82,50,36,11,26,69,2,30,54,32,26,13,16,73,15,83,49,93,38,1,56,20,39,80,77,53,84,13,12,7,88,64,91,63,10,86,57,28,86,78,57,26,30,30,49,79,63,80,98,20,14,25,73,64,3,38,63,82,16,99,70,47,4,18,28,39,52,38,9,98,18,5,35,15,91,50,71,22,6,13,3,50,23,95,62,56,15,71,84,100,89,35,61,96,49,100,52,7,15,66,73,70,20,13,41,67,75,54,57,77,72,3,57,26,66,71,28,65,29,1,54,78,93,4,66,94,12,23,41,58,65,95,79,40,18,27,44,48,77,15,1,10,62,68,64,34,25,6,24,83,15,2,88,83,58,18,88,4,3,85,56,39,93,39,96,79,46,79,77,50,30,97,4,67,41,34,61,64,40,77,17,55,32,41,1,71,24,76,1,63,19,53,22,80,68,1,61,19,83,16,98,48,28,82,76,1,51,80,69,98,20,42,78,32,22,56,42,7,24,55,14,75,13,59,49,44,98,91,31,73,15,42,87,82,72,22,75,17,59,3,66,22,74,24,93,46,33,54,50,7,99,25,70,14,2,39,59,99,28,73,57,71,16,70,60,60,51,14,63,42,16,13,85,64,65,18,6,17,70,29,33,6,37,87,69,61,97,80,52,20,60,31,92,26,63,17,17,94,41,3,87,25,53,45,41,52,93,24,82,76,63,20,72,55,32,36,11,61,53,1,92,16,97,67,10,29,65,6,6,52,30,6,91,54,96,6,75,9,4,2,96,24,66,72,53,33,77,49,67,8,49,63,18,72,8,22,67,57,27,9,13,37,67,65,48,8,3,39,32,58,18,57,51,3,81,45,21,98,74,2,76,56,92,89,82,34,30,18,71,20,33,2,87,1,41,24,19,22,37,15,60,62,90,47,12,3,3,30,62,49,72,7,64,51,47,27,6,100,80,30,87,21,57,54,77,68,78,26,32,92,52,50,29,86,88,14,75,91,92,100,5,25,30,72,92,89,88,24,74,48,4,81,64,50,97,36,100,92,68,47,98,87,12,49,88,87,100,40,56,58,73,84,55,17,9,98,26,2,76,31,39,89,41,61,86,98,35,58,37,41,17,37,37,5,28,68,30,20,69,34,2,5,58,63,47,19,77,86,31,68,68,35,63,36,25,72,51,97,22,27,48,98,20,7,40,35,32,13,99,81,47,35,35,38,90,93,26,90,56,76,96,43,39,13,75,6,98,100,71,88,88,38,15,99,62,22,52,64,58,50,9,66,76,48,15,1,18,57,53,51,76,16,74,18,40,8,61,46,55,7,99,5,76,77,9,80,44,32,80,89,67,52,92,59,99,100,28,26,97,32,35,3,72,46,58,12,73,37,71,81,15,55,85,97,5,64,86,65,35,19,26,71,81,61,77,46,84,21,3,13,2,93,78,69,89,12,74,68,1,18,59,90,16,46,46,67,49,9,1,70,43,80,46,100,56,86,85,49,92,55,50,32,86,33,72,64,26,8,3,99,68,26,45,4,32,96,75,32,53,100,51,32,22,21,32,97,66,14,54,90,46,88,24,49,45,11,90,87,96,36,27,40,59,73,99,34,16,28,64,22,65,10,46,67,90,88,21,33,26,54,88,78,49,10,17,82,17,27,25,41,13,97,96,35,77,9,51,17,74,95,57,86,94,40,98,52,87,16,30,78,28,8,30,22,8,96,71,77,5,18,39,77,7,6,31,45,45,56,32,90,56,19,28,42,98,71,39,27,45,7,10,67,8,54,63,67,94,11,15,10,25,83,45,59,64,27,38,81,37,58,32,97,75,68,80,35,95,56,67,30,90,28,36,3,41,74,32,56,24,48,35,18,77,31,16,61,83,38,58,67,30,63,89,4,53,46,76,28,92,27,10,50,69,44,7,75,51,84,94,19,66,78,60,47,43,52,9,85,70,23,35,19,83,29,97,55,87,15,91,21,50,32,20,11,99,59,86,6,57,11,90,82,72,39,77,36,10,17,26,1,48,82,15,58,40,47,45,46,48,41,85,91,68,97,92,75,42,3,56,22,37,80,48,10,35,42,70,13,16,2,90,21,93,72,64,44,60,4,79,22,97,62,6,53,92,9,3,74,7,26,3,54,19,30,2,61,71,1,86,29,22,33,51,88,2,68,14,30,71,54,86,5,30,82,23,54,50,28,85,67,75,27,23,54,99,61,44,80,23,93,25,6,13,63,18,95,79,55,35,53,46,31,6,40,46,97,70,87,11,22,13,19,50,5,60,43,79,93,99,10,95,40,52,18,15,67,12,32,45,41,32,39,8,68,71,75,44,31,28,32,72,30,24,10,31,35,58,85,35,65,19,26,10,16,37,94,47,68,48,50,80,94,61,38,60,63,62,54,40,16,24,22,66,44,62,62,18,70,49,81,9,50,13,100,89,78,24,42,91,80,40,57,84,7,81,84,35,49,100,48,13,78,63,32,98,23,42,97,34,67,60,92,25,95,91,87,58,30,14,7,90,89,28,36,65,88,20,75,81,3,55,2,70,62,72,93,5,26,46,21,76,36,44,86,25,89,40,39,83,95,83,43,69,44,39,88,53,72,72,89,57,75,82,6,47,77,87,36,38,73,37,22,91,20,43,5,43,54,25,40,23,33,23,23,85,84,60,1,36,58,22,13,66,40,83,4,22,64,46,55,77,34,6,9,75,94,67,71,92,65,8,68,13,66,3,59,98,84,51,42,27,78,83,2,9,80,95,8,65,92,22,97,61,34,36,66,2,92,5,96,79,89,1,86,71,40,61,63,67,31,68,79,48,82,75,68,61,89,99,57,1,79,71,79,50,95,98,28,70,59,55,39,49,52,40,50,30,5,17,17,74,19,24,20,42,51,18,80,78,100,58,83,8,35,13,26,12,89,66,93,80,24,88,70,48,31,79,47,94,25,15,82,73,74,64,84,17,40,52,10,20,39,76,20,36,34,31,40,27,33,58,50,35,5,24,70,19,74,21,59,19,6,85,20,58,2,75,95,2,38,83,82,13,7,90,20,52,6,99,85,28,91,10,38,65,34,48,55,10,36,62,49,24,60,33,54,64,61,13,98,42,56,53,59,19,84,74,8,6,61,35,9,57,15,63,20,79,8,37,15,26,51,66,73,16,80,56,39,87,61,58,6,3,45,40,56,46,56,81,58,28,33,76,77,52,2,83,98,38,65,21,95,84,23,64,18,52,56,84,69,34,85,97,64,18,32,73,69,72,71,3,85,48,46,81,43,57,84,2,36,61,86,66,84,12,40,79,64,19,100,38,4,92,40,27,47,44,84,82,37,2,20,56,78,36,16,62,35,53,34,90,22,41,22,83,40,62,19,75,70,41,6,28,22,30,25,85,74,54,96,68,24,46,37,93,47,77,63,26,75,23,7,40,46,6,41,61,37,52,72,27,88,9,36,60,95,15,37,4,57,45,6,95,30,20,34,40,94,60,65,65,16,35,93,95,4,88,11,23,35,30,97,27,99,41,22,81,98,66,87,93,62,83,36,18,24,78,50,56,20,100,18,46,7,49,11,83,35,23,97,13,76,68,95,100,76,61,3,40,31,22,50,43,11,60,50,22,5,65,35,22,42,83,40,47,88,57,14,88,71,81,86,2,9,76,14,59,70,7,79,79,73,40,41,55,94,84,48,97,82,92,51,51,47,32,87,5,98,39,26,43,20,13,42,22,34,45,15,76,24,63,95,48,62,19,11,97,13,94,76,32,86,44,3,25,69,4,96,91,22,49,5,47,73,29,81,25,72,13,60,83,8,15,51,43,95,47,70,84,55,95,69,35,6,8,93,55,81,10,59,18,54,25,26,6,35,96,71,62,66,51,35,92,84,31,30,74,59,71,33,83,81,22,10,82,43,24,100,68,29,54,16,64,85,25,90,5,77,63,58,100,100,89,88,50,90,72,58,49,81,98,100,43,46,27,23,84,99,67,83,21,73,11,76,23,22,84,65,95,25,15,21,45,43,46,97,6,56,22,87,94,6,13,45,48,44,96,84,86,81,46,12,34,68,11,60,85,27,1,42,16,57,46,44,9,26,6,63,14,37,41,1,88,2,32,48,3,72,83,60,86,41,38,21,51,63,67,74,37,80,49,23,37,38,61,18,87,36,1,23,59,77,52,50,32,87,69,37,32,28,72,74,80,31,38,89,32,20,14,100,89,72,8,32,22,79,98,71,71,35,34,97,1,99,47,6,36,81,36,62,16,29,70,95,35,87,40,43,56,72,80,21,29,23,29,47,28,12,83,13,77,11,15,52,51,12,14,47,31,82,65,97,39,51,15,46,84,40,37,87,66,92,81,62,96,13,12,65,17,1,3,19,8,48,28,95,70,53,99,63,16,75,55,58,77,100,18,51,45,51,53,59,25,94,39,61,84,59,22,85,2,68,6,24,37,22,27,87,95,44,86,90,14,53,46,56,97,7,22,91,72,66,97,6,2,58,25,67,71,96,23,20,12,55,29,55,13,20,43,90,83,87,3,67,68,74,13,64,90,43,94,98,18,3,38,95,88,81,31,54,67,99,34,33,88,100,45,78,94,93,35,30,89,67,55,18,51,36,92,23,26,64,34,68,37,62,12,34,28,49,65,72,95,16,17,96,1,44,43,76,9,23,48,89,66,96,80,60,10,84,26,59,34,81,16,97,3,55,49,34,85,40,65,14,90,43,89,75,88,64,24,50,39,20,9,24,83,72,29,34,26,34,35,32,6,50,51,46,55,69,26,84,24,45,48,11,27,5,50,44,28,28,28,45,24,44,43,8,81,68,77,68,7,25,17,13,28,94,72,34,68,51,49,56,28,21,79,53,76,78,50,19,30,73,86,3,98,52,10,95,40,44,50,50,1,3,69,78,38,45,52,43,50,12,52,37,28,62,62,34,72,24,69,17,52,17,94,36,48,69,76,17,85,80,87,45,35,16,33,31,99,10,35,67,61,65,29,79,70,5,62,20,27,61,32,44,43,84,14,31,95,86,1,93,3,46,16,23,82,47,72,56,13,70,6,66,62,82,85,82,98,46,48,47,46,51,36,4,11,62,98,73,4,80,57,79,99,83,65,15,47,66,62,88,43,94,74,63,81,80,19,98,67,99,64,40,88,15,18,35,18,87,43,98,17,59,67,30,64}
{16,90,99,86,6,19,10,76,83,89,53,13,31,21,57,81,63,22,57,38,75,35,71,92,44,61,69,11,38,73,93,75,95,38,6,40,69,44,77,96,40,77,41,37,91,6,28,48,26,18,60,13,18,76,27,75,1,80,79,82,33,27,23,24,52,20,53,4,49,97,65,94,62,2,12,68,64,67,90,76,88,85,8,84,85,94,7,90,65,76,72,52,82,5,28,58,92,27,99,16,90,92,42,95,60,60,11,19,85,52,44,76,12,51,81,32,92,71,45,29,61,14,1,4,93,53,32,63,6,53,28,69,60,22,70,17,1,84,65,6,27,65,38,4,97,43,23,23,61,97,59,78,40,32,98,38,14,45,71,55,1,59,60,54,58,3,24,47,77,87,15,61,39,3,21,17,80,100,9,13,96,85,44,54,9,35,82,56,31,82,6,6,73,50,79,21,35,52,42,48,99,26,85,83,99,100,27,67,57,21,46,70,64,1,75,75,87,26,78,72,90,6,66,96,84,84,90,72,56,77,98,91,14,84,67,7,6,12,74,4,39,30,87,31,16,29,49,51,86,50,74,40,42,37,16,84,83,4,8,72,68,7,2,8,50,91,37,98,82,18,97,20,19,76,80,77,26,52,43,4,16,76,94,19,14,44,49,6,36,91,57,91,11,32,18,70,84,55,95,77,9,50,1,4,77,47,39,34,55,63,99,9,19,96,2,49,10,35,2,3,91,52,10,71,42,81,19,98,35,28,23,59,90,45,39,33,4,17,32,2,44,100,35,65,22,44,25,66,26,71,97,66,69,22,42,7,88,17,54,89,82,96,81,32,30,23,20,81,49,15,11,5,24,6,83,79,17,58,5,33,2,10,10,12,68,95,13,71,23,59,49,71,11,87,15,48,45,96,35,57,97,18,48,71,65,14,44,96,73,43,80,95,92,70,63,80,9,87,77,47,74,30,32,85,77,13,1,43,99,88,13,64,67,72,12,30,33,56,83,31,58,84,78,66,58,24,36,61,90,10,15,96,45,32,76,90,3,32,3,86,61,97,1,90,37,35,58,47,83,98,27,43,3,59,47,39,96,12,17,40,81,85,89,45,74,36,78,92,98,36,67,48,89,67,66,14,95,45,52,66,79,3,15,24,80,1,8,14,79,84,62,75,30,68,28,3,7,13,52,100,96,63,31,100,40,98,27,45,9,19,14,94,26,10,44,20,4,64,28,58,30,69,91,93,3,12,34,100,2,77,57,6,29,36,67,30,2,66,7,84,34,65,87,1,41,48,69,70,72,29,22,93,21,60,1,16,48,46,17,50,59,55,40,91,20,27,40,90,57,87,16,11,30,35,33,44,44,70,100,79,11,30,82,97,87,34,13,6,78,82,47,44,68,90,12,53,98,40,4,71,62,86,52,92,17,84,55,23,69,14,49,3,65,99,22,43,84,94,34,45,85,47,42,61,93,61,49,64,47,32,7,91,57,8,29,21,45,75,36,58,8,84,84,74,98,49,62,54,48,33,53,30,78,41,73,10,70,27,8,49,68,45,38,24,5,43,38,79,98,90,17,88,73,65,17,38,24,66,26,88,3,24,54,96,47,16,97,92,37,4,83,95,78,70,86,41,43,78,19,19,15,77,88,100,90,54,12,27,65,45,64,46,73,41,61,69,43,83,14,93,86,61,70,73,25,36,30,79,71,80,70,81,43,21,4,81,13,22,26,45,34,28,11,5,38,94,3,34,100,49,52,95,42,43,74,3,35,24,51,45,62,96,76,24,8,35,40,94,63,96,65,94,33,91,57,76,96,1,9,41,65,65,69,20,63,14,24,26,75,1,75,25,93,85,61,92,18,84,50,82,94,74,71,8,95,37,52,88,66,72,18,24,63,16,93,88,74,35,27,15,52,89,32,42,5,68,69,96,87,22,69,94,85,55,32,28,30,24,31,96,9,33,30,50,83,22,72,13,10,59,38,1,28,47,49,18,88,8,68,29,85,68,34,36,53,100,20,92,12,18,64,13,71,63,65,96,92,74,62,14,5,54,59,31,64,87,60,73,89,14,81,100,8,97,21,50,95,19,48,50,83,63,35,72,59,58,61,45,70,85,32,56,85,49,63,47,90,12,48,46,47,71,38,98,87,60,24,15,51,80,60,12,84,86,41,5,33,28,85,11,75,80,98,13,3,6,41,90,98,79,5,40,51,89,56,76,3,29,46,73,97,41,38,9,11,21,19,54,33,6,80,89,27,94,80,59,87,22,74,34,58,87,27,94,27,89,45,62,43,63,18,83,61,13,38,94,96,58,98,4,21,97,30,27,23,10,81,83,23,43,35,36,65,87,19,78,41,98,35,98,72,7,45,99,59,44,54,50,12,21,73,39,54,37,51,25,71,15,1,26,50,22,9,20,5,26,43,12,41,84,33,1,35,7,77,66,64,30,99,43,8,69,9,28,82,88,9,62,58,76,65,48,97,80,41,82,50,4,74,17,9,8,99,46,79,58,5,56,96,47,19,81,58,16,67,34,68,54,62,41,29,55,82,18,28,14,10,17,75,65,93,78,49,1,54,84,3,70,77,11,35,14,26,11,47,89,53,43,34,18,25,64,7,35,27,24,26,11,29,77,2,11,2,49,96,68,8,70,35,63,45,29,64,75,64,36,79,99,95,26,34,17,64,34,24,79,48,20,90,99,65,53,69,37,58,65,48,20,13,32,30,87,38,59,34,11,85,57,100,42,48,22,51,23,14,74,88,11,1,84,68,21,89,74,24,95,41,95,28,24,44,52,95,69,53,30,52,74,72,42,61,23,13,46,18,64,17,79,68,24,4,9,8,30,48,43,41,85,40,6,63,80,3,81,38,75,75,4,99,48,62,17,97,13,95,19,63,68,92,89,6,10,23,20,33,10,65,90,66,62,69,66,100,30,49,75,44,10,26,53,69,32,17,84,33,14,78,33,82,23,25,90,55,17,76,13,50,26,59,50,84,81,5,60,36,84,51,53,74,37,31,62,35,49,3,67,12,71,22,28,36,71,88,34,40,31,70,16,70,97,97,75,14,54,50,35,76,71,68,89,91,20,14,53,39,87,5,74,56,87,94,3,72,25,79,92,46,85,52,84,67,90,65,54,25,41,22,76,20,22,53,17,6,90,21,39,6,50,59,93,44,82,17,51,71,10,90,23,32,86,99,8,56,47,65,79,81,63,70,97,71,72,86,75,57,46,59,1,87,51,15,10,17,63,48,12,15,26,99,79,66,77,21,59,89,25,40,15,10,39,7,63,67,87,21,57,8,69,73,90,22,14,22,50,14,26,76,63,90,44,85,24,85,15,93,51,92,77,23,14,97,49,81,37,45,18,73,10,69,69,34,54,32,17,37,47,19,83,51,22,3,18,72,86,89,79,15,28,11,45,7,40,1,23,58,51,20,83,18,36,53,52,67,90,34,46,66,33,52,10,36,80,29,28,95,29,45,1,94,84,91,81,47,25,100,54,40,98,96,67,23,36,45,16,87,22,80,83,18,61,69,24,81,66,86,46,94,52,32,24,49,97,83,97,79,49,61,34,1,58,1,51,2,64,6,70,77,100,24,12,93,41,92,85,25,22,27,27,25,15,97,84,49,98,67,36,72,47,28,18,52,40,46,67,94,21,92,76,77,31,10,60,96,14,70,16,23,17,65,23,10,85,45,14,63,58,7,70,97,38,47,14,28,56,6,76,66,61,10,23,10,27,91,51,66,42,56,62,95,78,17,30,98,13,53,79,49,1,28,24,30,80,6,95,6,14,35,72,47,29,89,17,20,88,66,94,45,22,15,57,6,49,78,47,57,29,2,31,60,48,20,19,71,50,4,32,38,39,93,8,77,24,81,100,49,97,48,92,56,38,52,29,64,74,17,72,96,71,45,91,72,79,65,48,96,50,43,67,20,20,10,55,90,83,85,98,26,51,51,77,17,17,71,25,49,5,96,16,1,29,90,57,48,22,90,71,26,35,48,90,77,82,70,75,18,94,96,89,91,13,9,70,78,33,57,62,61,38,21,44,5,23,14,32,17,69,45,42,26,72,13,62,79,79,17,28,19,30,83,92,40,89,13,66,78,15,77,1,99,65,9,42,79,97,100,85,82,15,4,49,33,17,65,45,80,16,93,98,31,17,83,96,91,29,79,42,34,97,15,47,61,65,89,8,50,49,100,31,53,20,97,93,97,22,57,70,79,94,91,52,53,11,34,94,83,53,37,95,50,81,28,77,71,6,19,69,42,76,20,39,4,4,59,81,59,64,93,21,11,83,47,11,51,16,15,60,97,7,48,100,54,32,23,89,29,83,38,19,41,47,35,59,54,58,8,51,47,99,65,53,62,17,45,59,82,19,29,39,95,36,40,95,55,94,69,77,90,72,31,88,90,7,23,85,80,83,53,20,2,46,22,26,4,12,47,71,54,52,97,68,96,90,78,91,35,36,23,33,60,18,31,32,7,96,31,34,42,55,12,51,20,88,68,70,62,16,62,63,1,74,86,20,70,45,53,7,52,16,87,71,29,39,39,51,21,98,58,52,46,18,75,58,33,7,76,69,1,77,20,76,92,89,58,72,55,62,96,28,82,74,91,78,19,61,71,26,44,18,72,46,25,93,77,23,2,33,34,82,42,39,87,76,56,80,44,1,4,60,19,95,77,52,98,89,56,78,26,89,62,81,42,42,46,21,98,44,40,29,10,73,98,65,99,83,39,66,44,2,56,19,83,9,51,36,32,89,81,32,88,13,51,51,5,67,42,27,99,9,62,94,52,78,39,80,17,26,81,96,51,34,28,5,83,69,89,21,39,38,66,25,44,28,18,86,49,51,72,10,67,93,60,95,97,92,80,43,15,20,25,55,3,85,41,28,67,30,85,7,65,19,74,47,33,59,70,8,29,67,100,57,95,80,96,20,25,82,98,45,89,71,41,1,56,73,56,11,76,92,3,16,62,18,28,41,13,99,7,4,2,81,6,80,89,10,30,59,20,26,65,24,86,4,83,29,82,58,52,99,10,5,60,34,18,20,18,82,64,94,33,47,89,34,16,85,89,52,64,10,64,75,18,17,72,15,69,56,99,92,18,82,15,4,39,77,18,37,23,85,6,61,4,49,63,54,60,61,26,1,20,7,61,39,43,29,7,53,85,31,14,85,72,47,2,74,21,87,17,60,65,41,44,32,92,33,61,83,57,91,2,99,33,79,73,5,92,24,61,22,13,75,2,99,7,60,86,30,53,49,53,29,85,73,43,14,79,30,22,35,17,93,86,87,79,26,95,70,19,55,43,8,86,37,7,71,63,60,51,28,26,30,75,38,42,20,23,85,70,7,48,78,81,87,48,71,17,27,43,8,46,100,62,35,70,86,61,52,18,93,39,1,88,53,98,63,42,45,80,11,40,11,92,40,72,83,9,25,69,69,77,53,50,41,15,43,63,19,40,81,10,60,71,18,82,83,86,3,88,71,34,81,97,49,69,42,80,93,21,9,15,1,41,20,80,55,88,90,30,100,34,74,85,97,78,67,6,49,57,66,57,34,99,79,73,81,94,54,70,76,65,19,14,18,35,32,89,35,98,83,53,17,49,50,60,75,75,70,94,87,13,63,99,72,83,73,47,46,47,77,14,97}
{85,60,56,62,4,94,7,38,45,29,16,73,31,70,27,26,48,13,33,3,99,36,67,28,3,31,81,14,54,49,49,19,37,38,33,55,61,73,23,54,4,18,1,97,19,6,63,99,68,8,96,72,80,7,64,89,39,63,88,56,4,78,60,20,68,92,37,52,25,15,100,4,26,21,25,77,11,41,84,34,32,76,1,51,49,56,25,38,100,85,26,42,86,97,83,27,17,30,86,22,97,83,16,57,77,22,91,24,75,80,11,63,30,61,98,23,61,18,11,43,24,13,13,72,49,47,45,86,48,12,66,55,46,18,24,79,98,71,69,59,64,1,63,41,35,59,82,66,81,11,41,61,98,75,69,16,90,86,17,48,95,40,11,89,32,27,46,4,84,64,96,22,73,22,81,94,16,84,24,44,72,87,41,75,5,59,86,93,68,14,94,84,48,82,98,69,48,99,83,26,98,43,13,12,8,93,71,100,80,47,37,25,1,5,20,49,96,71,14,70,38,36,11,28,49,21,68,22,89,39,52,26,3,29,11,44,89,19,74,88,38,71,55,23,64,33,74,13,84,31,82,84,17,43,64,35,23,28,79,67,44,34,57,11,19,70,19,39,75,2,63,64,96,23,50,69,47,73,8,71,70,90,41,92,66,16,80,78,34,57,76,43,17,40,68,90,13,28,99,34,12,10,59,69,64,73,64,99,7,14,89,35,87,68,27,44,10,59,89,57,55,66,88,64,66,95,44,67,2,72,85,17,8,73,79,48,7,83,73,75,74,1,25,82,70,19,55,84,65,57,36,41,78,70,55,100,79,56,67,62,91,17,29,92,32,1,6,59,1,12,66,28,87,44,62,39,57,29,37,73,11,55,16,32,39,9,74,83,58,64,3,60,28,70,85,64,43,27,84,96,28,54,63,20,45,38,13,87,7,23,22,34,71,68,27,53,68,45,70,34,45,30,100,77,93,13,15,47,33,80,36,42,90,96,48,46,93,13,8,2,45,13,63,33,27,11,53,68,74,86,99,21,64,49,90,58,5,4,12,5,7,75,11,47,50,4,27,44,24,13,71,5,41,62,10,74,55,55,76,13,41,35,66,38,85,38,38,99,55,8,62,13,81,34,54,30,96,35,18,41,11,95,21,52,98,75,27,21,92,10,3,69,59,58,77,12,23,98,1,91,64,47,16,38,5,33,1,3,33,66,59,18,64,52,100,38,79,13,31,52,17,32,26,47,77,86,11,31,54,6,14,92,73,84,1,59,17,65,96,27,97,60,42,8,10,68,19,32,52,38,63,27,67,53,7,1,78,34,17,97,57,21,12,21,45,22,44,97,12,40,41,89,97,46,80,9,99,91,41,35,59,77,79,94,72,39,78,72,86,49,39,15,85,27,60,82,3,33,32,78,47,2,63,99,78,33,84,26,35,32,77,63,19,13,63,5,20,74,84,51,92,84,62,86,59,96,22,7,89,14,86,21,63,73,9,24,12,41,82,44,34,93,15,56,43,100,75,71,42,60,30,66,4,93,87,48,83,74,49,27,46,65,67,46,34,23,67,34,16,66,49,16,1,18,72,11,84,9,12,34,25,56,73,100,30,56,29,24,90,93,91,68,30,91,9,16,43,62,10,83,89,58,68,80,39,65,68,41,8,88,3,66,50,32,22,29,77,25,38,7,10,14,38,74,40,31,66,93,82,63,69,11,78,37,20,8,77,10,26,56,90,56,28,90,51,48,74,86,81,95,50,59,63,85,81,51,83,15,1,25,78,3,22,67,70,24,90,66,32,70,4,73,36,19,54,35,6,67,71,51,58,4,60,50,79,30,5,36,52,36,81,63,38,36,20,66,5,3,4,11,81,57,41,51,30,13,9,4,48,79,84,68,82,52,16,6,39,65,97,97,39,61,12,90,28,81,30,62,19,6,91,8,77,47,35,44,5,65,65,78,1,65,18,78,92,54,47,89,45,30,91,49,67,53,93,88,71,48,4,55,6,20,67,72,71,89,45,93,40,89,66,35,43,73,45,92,12,5,10,10,13,61,28,5,50,30,94,19,73,77,73,11,12,25,47,37,72,23,14,23,80,1,60,3,95,30,64,75,11,84,62,49,93,67,43,41,78,40,59,44,71,12,73,22,48,52,79,48,31,34,26,87,85,58,71,30,29,67,78,61,77,72,57,18,10,53,86,97,24,66,40,52,9,90,81,76,30,71,6,75,40,29,78,17,1,26,90,88,9,84,10,94,23,2,73,36,32,51,51,95,79,56,46,25,36,64,93,64,47,94,52,64,68,34,82,11,55,70,91,91,52,25,28,94,9,29,57,39,68,87,49,87,12,73,27,25,34,48,16,4,47,20,30,97,16,21,91,41,79,74,74,51,16,87,4,41,1,29,99,4,82,68,91,21,54,76,75,3,63,82,84,96,58,83,80,89,98,58,52,83,52,74,32,45,10,53,100,96,47,22,30,11,38,93,2,44,4,25,55,38,40,29,12,95,21,49,32,1,45,86,81,81,80,34,41,16,32,48,73,37,77,17,46,19,68,94,63,15,68,7,60,97,37,95,58,18,64,14,85,90,39,18,63,25,82,28,80,1,33,18,7,23,36,86,55,70,66,97,73,57,14,91,90,19,5,71,21,65,86,51,23,71,66,66,83,63,21,62,69,74,3,41,70,87,30,61,50,24,8,12,36,26,58,4,53,34,26,4,60,78,73,58,49,9,100,89,69,30,44,15,40,25,83,58,2,47,12,58,10,9,90,41,79,4,73,40,1,90,84,91,44,12,40,51,47,41,6,71,78,12,58,100,26,53,2,25,13,46,77,21,18,6,4,23,85,24,23,84,78,22,68,96,12,40,98,73,63,18,72,19,90,25,23,61,78,98,39,3,25,20,96,96,14,51,26,93,63,13,20,66,3,33,95,98,80,82,40,24,23,67,67,91,37,26,77,88,10,82,12,55,23,83,65,31,66,64,36,69,31,64,14,42,74,9,62,59,50,51,59,26,62,92,20,47,54,42,80,52,61,88,89,87,41,44,84,91,67,8,62,69,36,31,93,97,98,54,17,15,62,36,88,6,88,86,24,19,56,35,86,81,91,56,25,99,68,47,59,17,62,67,48,43,87,52,26,70,41,52,61,98,64,1,65,4,67,74,71,20,38,78,41,43,96,9,23,68,81,32,34,85,92,52,47,43,21,90,16,14,13,51,73,84,2,13,24,12,34,84,7,60,2,70,3,67,51,2,24,54,3,32,36,14,68,29,40,6,91,10,89,68,71,80,58,53,45,94,10,30,28,36,9,6,8,63,89,81,75,94,18,36,83,77,62,84,72,77,80,68,84,70,97,66,45,79,26,92,26,98,18,54,53,62,97,49,50,27,48,80,25,47,81,63,8,44,74,83,76,67,61,4,54,43,57,62,97,65,84,9,17,13,60,82,63,48,60,11,59,26,56,17,11,52,36,38,32,15,31,78,94,67,7,87,87,64,9,85,98,14,68,80,19,87,55,52,73,2,16,66,27,34,36,16,40,79,43,27,33,67,40,19,53,72,96,81,94,2,99,18,30,80,89,17,84,82,45,3,95,44,88,95,58,61,8,20,80,44,8,87,100,91,37,53,90,59,2,50,19,50,89,2,22,21,10,62,62,50,34,54,100,31,15,56,48,16,61,49,57,16,24,24,35,27,86,76,78,70,60,97,82,53,91,62,99,70,42,7,68,36,53,21,100,88,80,88,82,89,45,96,65,38,29,78,90,29,9,6,73,13,66,30,40,49,25,63,61,16,73,39,77,2,51,47,62,88,67,36,61,60,97,45,13,72,97,23,20,57,36,78,87,93,87,45,79,41,4,88,92,18,14,6,49,83,13,65,42,36,42,2,58,30,83,5,90,82,47,7,71,90,89,65,85,71,13,41,24,94,45,43,85,37,79,15,65,62,94,78,46,90,58,19,86,81,76,82,58,21,82,1,83,66,77,32,10,39,20,60,81,54,99,83,99,5,76,50,7,73,92,76,16,4,87,52,7,62,48,69,67,67,52,85,24,45,30,1,30,29,63,48,96,96,12,66,37,5,40,14,46,26,33,65,39,96,76,25,55,90,90,61,99,62,39,55,49,1,50,52,12,41,1,43,52,93,11,33,50,85,81,1,64,62,86,29,86,37,27,68,84,91,66,96,33,93,71,53,80,36,86,44,19,100,31,89,74,10,11,13,69,92,53,91,1,26,8,15,69,73,3,97,52,54,76,24,39,86,57,24,16,16,40,64,35,33,65,71,73,31,47,47,57,39,63,66,22,75,4,43,29,67,60,11,15,16,57,93,93,34,53,98,61,41,97,99,11,79,19,84,9,99,40,46,88,85,85,56,12,100,23,39,46,64,2,20,57,68,5,69,18,42,45,98,89,33,70,31,38,13,30,15,79,87,72,67,53,50,21,7,2,78,67,99,75,86,64,91,41,92,20,76,56,4,65,69,21,46,86,62,50,9,3,58,28,98,2,17,89,53,67,79,4,53,35,68,5,49,15,31,84,17,77,64,54,1,24,37,31,12,85,62,39,12,81,54,96,82,99,85,34,66,16,61,90,36,91,56,46,7,90,80,59,100,27,97,83,24,78,91,84,2,48,37,10,48,32,51,72,85,97,89,4,12,84,17,83,29,46,68,40,16,46,40,20,40,11,68,81,24,15,88,91,16,50,32,52,55,71,93,89,15,84,62,100,64,56,54,75,84,83,67,96,32,45,27,58,7,14,47,20,86,63,84,91,97,39,48,34,33,7,34,36,43,8,47,37,91,64,18,78,73,90,56,51,23,56,42,71,2,31,40,95,25,33,95,57,73,36,94,31,31,4,75,97,20,12,37,96,15,88,15,87,93,31,92,55,16,89,76,67,38,69,83,45,16,75,75,33,19,66,57,72,47,82,28,14,25,95,17,6,98,73,48,82,95,29,16,83,63,52,34,95,52,63,57,90,38,73,23,87,48,10,99,10,58,29,2,76,36,92,50,48,54,90,95,43,31,90,17,68,34,26,83,89,35,26,34,3,47,49,17,96,23,81,81,24,81,49,17,34,22,86,78,84,84,100,97,95,38,38,14,65,34,77,32,51,94,21,33,99,82,7,66,54,1,29,8,42,46,29,44,38,70,41,52,11,41,62,81,81,32,81,67,34,46,87,27,45,30,54,23,52,79,89,100,3,94,69,3,83,7,30,65,3,27,64,82,41,10,52,1,57,44,1,13,51,100,5,82,33,50,99,30,38,28,67,67,89,59,31,7,41,66,12,62,95,68,84,23,4,28,16,10,8,62,71,23,47,62,32,28,15,3,45,82,99,43,55,72,49,15,40,94,72,34,68,30,46,99,64,68,80,13,43,54,97,18,96,91,63,58,25,83,14,29,63,75,41,63,43,30,15,78,19,26,24,11,2,15,94,73,36,87,53,28,64,88,34,82,74,38,40,10,30,63,74,53,9,63,44,73,62,50,48,32,17,22,83,84,16,79,46,35,57,75,85,69,82,25,70,95,91,53,28,7,36,96,86,86,40,76,8,57,69,41,94,12,61,54,47,66,32,85,65,97,97,30,30,74,13,3,18,17,35,50,22,98,57,81,40,62,63,59,19,67,62,41,69,21,32,72,24,48}
{4,1,49,3,7,15,12,16,23,32,82,1,4,10,2,1,5,16,99,73,1,6,5,3,1,35,18,27,27,10,10,30,3,47,11,42,6,1,85,64,10,6,1,2,2,1,2,42,43,2,1,15,2,2,3,11,5,9,35,9,1,17,11,13,16,13,53,5,8,2,7,8,44,27,1,5,4,83,1,10,2,2,1,1,60,44,34,1,31,4,37,1,1,24,1,90,1,33,21,24,1,41,6,13,8,1,17,3,2,10,2,4,16,2,81,64,49,12,54,13,95,1,40,9,18,12,3,9,5,1,11,10,80,44,1,2,24,1,28,1,25,32,34,3,7,1,1,3,5,10,10,95,19,1,12,4,25,18,3,55,20,66,2,19,1,94,2,29,2,2,5,13,1,71,1,79,3,8,39,38,5,31,26,18,16,14,15,25,50,33,3,3,18,10,1,12,3,18,12,34,5,70,19,3,19,22,72,56,16,2,10,21,5,4,1,21,1,48,1,12,16,1,12,8,19,5,8,94,11,7,1,3,21,15,38,3,47,26,70,20,29,49,6,80,2,40,8,60,8,3,2,16,4,4,2,5,1,2,5,89,15,8,7,47,8,2,33,18,44,15,3,1,24,13,12,2,29,37,31,27,1,12,32,54,1,2,19,87,3,2,78,1,9,5,2,10,1,23,51,19,1,70,92,7,16,51,80,2,12,75,2,6,24,31,2,2,2,2,49,2,1,48,3,11,1,1,32,6,76,5,26,1,2,15,96,10,3,1,24,2,9,1,21,13,1,1,1,4,9,14,2,8,4,16,1,15,84,9,12,1,1,13,8,6,2,8,7,1,61,14,11,1,79,22,14,54,4,16,2,37,2,10,10,64,2,2,1,59,10,7,1,9,1,22,3,2,76,1,3,12,3,1,13,1,16,5,12,1,12,4,8,11,1,13,1,9,52,1,2,57,2,2,18,2,34,3,49,9,9,2,1,55,1,84,5,14,7,1,20,2,1,4,3,7,5,11,9,55,10,9,1,4,4,30,97,34,13,10,20,9,5,3,9,22,1,1,2,1,52,52,74,1,4,55,1,3,46,3,74,36,6,4,4,68,15,34,12,80,1,68,65,40,12,1,85,83,28,60,6,42,4,27,72,1,3,10,4,44,1,1,10,11,6,4,8,4,9,15,10,2,66,3,1,7,46,21,62,4,4,9,8,62,48,72,23,2,11,40,2,3,31,53,4,53,17,1,3,4,8,9,11,2,4,62,24,22,15,3,3,5,62,6,18,13,2,1,61,1,1,1,4,39,58,4,88,78,5,1,6,4,9,2,8,36,63,53,1,6,15,65,34,8,16,82,10,1,42,5,4,15,62,7,2,19,4,14,5,29,4,4,7,91,1,36,5,53,23,80,35,21,2,11,2,9,12,37,6,1,21,21,7,21,21,3,1,1,11,7,12,8,96,47,70,3,1,11,72,1,2,7,51,4,39,13,83,3,38,10,2,1,16,10,6,2,11,14,26,45,19,1,1,10,5,4,24,15,8,6,43,1,2,5,21,2,4,1,1,28,27,43,1,9,12,55,2,4,1,1,2,46,28,3,9,6,51,41,16,4,6,6,18,64,3,73,37,2,4,5,3,39,15,21,2,15,13,4,1,43,62,31,3,1,3,2,47,1,10,4,6,8,8,12,65,6,52,2,2,1,87,1,1,2,5,48,1,50,8,10,2,99,2,82,1,8,1,31,91,19,7,3,57,12,16,29,5,1,6,92,39,74,19,6,39,18,20,19,1,10,6,23,5,13,22,3,2,56,3,23,14,47,7,16,1,1,8,1,8,44,2,2,96,6,6,2,2,4,2,84,31,7,77,33,24,60,7,20,8,1,3,97,24,5,97,26,7,10,1,17,3,2,12,2,32,64,72,2,9,10,5,9,68,3,2,6,11,12,25,7,63,3,35,90,8,2,9,1,50,19,5,28,9,93,8,5,34,1,38,15,81,13,39,2,3,15,3,6,4,93,1,22,56,11,4,9,1,28,10,2,17,80,69,11,13,18,2,3,58,16,27,79,5,1,34,2,2,25,1,8,15,13,51,22,1,45,3,5,1,2,27,40,6,1,14,86,9,11,5,23,47,4,4,4,50,1,3,17,11,4,4,88,90,36,13,45,2,6,2,2,38,4,15,7,77,7,10,7,9,1,3,1,2,4,81,14,1,3,14,87,1,20,9,2,27,30,82,24,18,20,5,3,1,18,32,92,87,9,40,11,1,50,2,11,8,18,74,90,11,4,2,12,1,64,16,42,5,71,1,3,4,4,7,32,1,1,4,21,4,1,28,1,1,27,2,2,34,47,55,1,2,7,72,3,68,17,34,5,13,2,25,21,3,80,15,3,1,1,23,5,6,12,89,4,81,29,4,37,4,2,5,17,5,20,59,20,1,25,1,5,6,56,36,30,67,5,44,16,6,56,3,3,19,1,3,47,13,47,14,2,6,86,56,4,33,13,6,1,5,6,2,5,27,13,11,5,32,26,6,10,1,34,81,36,18,14,2,36,87,1,14,75,32,28,74,95,48,2,23,2,65,21,3,4,32,12,6,14,2,14,23,2,4,78,3,16,1,9,6,4,6,22,3,98,38,4,9,24,10,2,53,42,2,32,96,4,1,80,14,3,29,4,1,9,11,15,4,2,1,1,25,30,73,2,54,3,7,64,13,24,51,2,5,84,13,1,15,14,1,87,6,91,77,50,13,86,15,57,8,3,6,34,66,1,2,1,2,83,1,98,2,55,5,40,6,64,4,1,73,6,9,4,11,56,6,4,35,11,49,3,27,56,4,1,13,59,4,3,1,1,11,2,15,4,3,1,46,45,3,1,92,28,3,87,32,2,6,8,2,49,89,1,1,3,23,12,1,1,13,34,4,20,99,1,8,1,91,59,2,12,8,1,13,34,16,2,14,19,60,62,1,35,3,3,2,14,49,11,40,29,12,1,3,25,2,17,29,13,2,12,1,10,3,8,4,66,7,38,40,9,1,34,6,1,94,7,5,2,7,2,2,51,2,37,9,40,38,4,8,6,52,2,12,1,8,5,90,56,56,9,4,4,12,23,1,5,4,4,32,22,2,1,2,50,12,3,1,31,1,1,87,10,11,58,1,77,1,6,18,1,31,34,3,15,33,45,99,9,2,1,21,1,1,14,5,2,10,5,6,8,1,1,2,18,1,20,13,1,25,1,22,14,20,55,14,1,9,5,12,25,9,3,5,3,40,1,3,96,91,28,1,3,18,1,8,18,2,1,19,4,82,61,22,6,1,91,2,15,9,1,23,25,17,68,1,3,5,13,3,1,36,72,7,2,20,9,2,25,2,53,3,5,7,56,13,3,21,27,8,6,71,4,9,6,2,17,44,10,58,24,1,3,32,5,16,64,4,48,6,1,26,35,7,7,5,9,1,39,3,65,29,2,4,1,97,3,2,4,5,29,50,35,68,1,95,39,20,3,12,19,21,30,10,51,6,15,5,74,40,1,6,13,1,45,14,4,1,20,24,1,13,9,7,54,1,3,6,36,5,1,9,6,1,25,8,42,40,12,3,1,7,35,37,1,1,94,2,59,1,27,1,50,3,30,2,3,2,1,10,25,17,25,31,45,1,2,13,27,5,69,42,3,29,1,12,49,42,8,1,1,75,3,86,3,27,21,56,4,4,4,10,38,29,43,5,8,12,5,3,69,22,38,18,2,13,2,80,38,2,4,2,1,99,63,1,46,47,61,17,2,66,1,9,11,5,8,7,5,4,1,1,2,2,6,5,1,36,2,5,12,15,11,11,1,5,33,11,28,77,45,4,2,1,7,1,2,6,19,20,2,28,98,10,5,10,3,19,3,1,11,4,17,7,30,33,3,68,90,2,1,26,3,4,4,11,13,1,71,3,25,6,4,13,99,1,14,2,2,2,2,5,18,1,51,7,6,12,2,64,35,23,92,4,5,1,23,58,32,73,10,5,95,60,15,2,28,69,16,2,1,6,30,1,1,2,2,8,1,7,11,26,21,62,6,67,15,45,40,3,7,3,1,65,45,13,84,1,7,40,64,2,9,3,6,35,1,8,38,1,34,1,1,67,75,63,17,3,4,2,15,3,7,2,4,50,25,53,9,3,1,19,86,52,23,1,61,21,45,98,78,38,4,1,7,11,5,13,11,35,4,9,60,44,8,24,86,1,23,2,19,4,46,3,1,4,69,1,5,1,6,53,64,18,40,6,1,12,2,3,42,10,26,4,2,58,89,24,3,2,2,1,54,17,4,50,3,1,63,16,14,20,2,13,7,12,4,4,7,30,4,50,11,44,87,37,7,11,2,9,32,38,27,7,3,14,34,8,4,37,13,86,21,3,9,1,64,2,3,1,1,19,57,60,82,58,9,41,15,4,3,2,17,41,6,44,37,6,1,1,7,2,1,17,43,32,14,31,6,4,8,53,21,60,41,1,13,25,1,45,25,88,1,12,29,26,1,33,2,1,1,5,36,79,2,3,7,18,33,2,4,78,50,27,20,22,78,3,5,3,43,22,40,1,68,97,29,72,4,3,56,2,2,10,5,81,7,4,7,37,47,22,1,1,1,1,10,14,2,81,10,1,6,24,54,1,2,75,4,17,84,3,10,28,2,6,3,1,3,88,63,1,28,45,2,18,96,71,1,14,1,48,78,17,2,2,90,1,1,3,86,24,30,2,1,13,4,29,3,66,50,32,38,13,5,2,2,4,7,2,4,4,3,4,18,11,2,56,40,1,3,4,23,1,7,1,1,4,59,79,1,17,4,2,1,2,93,12,16,2,5,5,98,28,37,1,32,18,24,1,4,8,1,13,2,91,23,22,2,10,7,30,11,7,6,1,4,34,4,5,3,5,1,1,1,16,1,2,3,8,5,20,23,94,1,3,4,1,64,59,61,1,68,14,1,6,94,3,22,9,7,1,13,22,48,3,41,46,29,4,36,62,60,4,16,5,2,74,10,3,8,11,20,72,24,14,6,27,3,74,4,55,14,26,11,1,34,72,45,14,22,1,8,1,5,11,18,2,68,66,40,30,1,2,1,47,53,18,1,3,1,9,2,1,5,1,7,4,32,93,16,42,27,28,10,18,3,1,91,33,30,21,52,26,36,19,2,22,57,25,10,14,1,3,8,1,2,24,7,54,58,15,45,1,9,24,14,1,18,16,6,75,21,94,5,2,5,70,92,31,6,10,1,19,73,4,1,49,30,2,23,4,86,1,26,27,70,1,19,23,3,11,9,41,26,10,24,33,1,6,8,9,5,4,14,7,63,3,18,1,2,2,7,17,5,3,24,27,1,12,1,94,19,1,1,1,5,12,18,1,16,10,14,4,6,1,59,5,6,47,4,2,2,65,16,25,1,1,4,20,1,75,24,6,8,59,37,1,9,1,20,4,4,1,10,51,5,65,1,2,6,1,6,1,2,34,10,27,1,3,4,4,1,4,50,8,1,6,7,6,2,3,2,21,21,17,9,3,2,4,2,44,1,2,36,1,3,3,50,4,16,16,2,22,7,1,23,10,19,1,38,1,2,8,2,16,24,3,32,84,1,10,1,1,2,31,36,1,1,3,71,6,13,2,9,3,10,37,8,25,71,1,2}
Returns: 6.943798484075007E8
{67,67,62,5,48,1,26,97,96,29,34,26,81,32,8,43,67,55,90,92,69,52,76,25,42,57,93,9,48,5,23,96,69,8,1,72,5,41,42,45,90,70,43,97,72,97,63,79,58,11,56,83,1,51,50,92,11,32,69,76,97,92,80,70,19,70,15,56,21,67,60,5,100,45,8,80,82,17,83,20,49,75,18,53,75,98,14,40,54,80,39,94,47,53,54,36,91,31,7,44,90,90,38,44,94,30,50,12,89,64,50,42,73,27,44,66,84,85,61,15,14,3,24,12,21,92,40,60,77,78,75,20,92,65,77,10,89,26,89,85,99,68,19,63,91,99,83,45,90,40,22,61,91,1,91,75,54,86,54,53,12,56,93,38,66,25,9,26,76,63,36,78,22,99,16,5,23,42,62,52,5,61,59,42,78,92,48,59,80,75,35,43,16,39,21,24,3,23,6,25,69,30,4,12,73,73,48,76,3,3,7,1,3,75,89,71,30,49,74,46,53,83,72,69,58,29,37,91,66,10,17,96,82,26,47,26,3,83,53,77,59,42,85,98,52,33,31,82,42,66,65,14,82,60,61,4,54,74,91,98,43,37,26,64,24,38,26,88,47,54,56,36,23,61,76,95,74,17,80,16,67,52,15,52,98,54,85,94,80,21,91,15,11,78,39,89,23,49,93,19,3,27,70,64,54,65,67,81,27,80,6,36,51,42,13,2,43,1,15,38,20,82,6,27,35,80,93,96,82,60,5,54,36,66,6,41,2,49,69,93,14,7,73,65,94,42,73,32,87,46,38,74,31,33,3,55,90,38,92,23,46,45,69,13,6,84,19,23,80,3,66,47,17,4,88,50,36,91,80,21,64,89,16,5,38,38,99,5,6,97,67,99,5,32,94,14,15,6,72,72,77,50,82,7,58,11,78,55,72,55,70,82,43,48,61,44,51,94,47,42,41,76,61,49,17,3,90,1,92,45,26,17,85,4,75,64,77,37,82,69,86,40,27,1,12,58,41,83,5,3,43,86,72,17,40,14,57,25,76,93,89,12,62,36,53,53,60,51,48,26,75,49,15,36,13,4,94,89,7,88,36,69,54,42,25,61,29,8,95,100,17,73,12,45,17,64,73,74,48,77,6,42,19,86,34,78,16,54,91,87,49,20,66,22,81,40,11,48,68,93,89,46,94,84,74,68,51,26,78,59,22,90,10,83,33,90,67,41,27,60,46,47,72,81,26,60,36,14,7,43,3,81,15,99,84,66,69,68,44,94,80,84,28,60,25,17,90,4,28,54,42,27,31,2,6,86,95,27,52,2,43,85,92,60,14,40,80,6,77,6,5,72,22,84,94,95,31,48,44,48,77,42,84,21,65,48,28,54,72,6,14,63,33,62,43,45,64,53,25,19,92,47,19,100,57,71,76,71,57,99,71,79,13,88,57,59,54,81,21,32,69,44,19,31,10,11,73,57,84,96,80,54,73,12,11,93,57,61,29,97,38,28,48,81,81,28,24,28,54,71,51,38,26,94,52,88,8,46,92,22,56,10,7,23,20,67,37,92,40,40,99,1,2,65,49,80,10,65,2,28,62,54,68,34,54,93,99,58,50,4,16,1,72,45,86,56,80,23,3,52,31,43,44,38,75,72,64,83,77,10,93,38,31,51,44,21,8,54,77,39,75,20,1,37,15,14,52,78,72,71,6,49,37,68,78,31,18,36,54,40,91,46,32,10,10,10,16,55,74,92,90,42,80,33,1,37,49,70,60,20,41,37,96,10,53,8,42,27,84,76,15,38,5,22,63,82,8,80,73,100,92,67,14,72,93,3,58,68,51,10,71,43,34,62,75,73,97,10,97,85,99,83,85,9,57,65,43,27,85,98,57,92,95,60,99,21,69,67,8,89,57,3,66,95,2,11,8,73,62,60,44,89,78,82,59,74,26,26,64,14,66,14,90,38,81,67,9,96,12,13,18,99,37,44,86,90,31,4,64,44,97,95,69,80,51,24,41,5,21,38,6,5,84,30,34,33,2,22,71,67,20,77,47,15,94,31,95,16,88,69,88,54,14,34,12,22,26,89,14,15,96,14,12,68,39,72,62,9,86,43,61,35,57,73,29,75,90,70,65,59,7,27,87,67,15,38,65,83,71,33,42,72,81,59,89,23,94,84,69,5,76,7,13,37,47,38,85,61,91,1,95,64,82,99,49,20,53,97,85,49,25,46,89,37,49,12,36,7,87,44,98,60,2,43,48,70,1,11,60,54,46,51,44,9,3,32,86,34,8,36,45,60,27,40,67,30,99,11,89,69,69,9,93,35,72,57,31,31,54,32,78,10,84,17,99,14,3,62,95,46,95,52,100,70,80,63,11,18,72,83,5,82,74,88,80,59,90,77,56,2,45,65,32,60,39,63,59,70,37,90,55,69,92,74,82,34,32,35,74,28,83,63,57,91,5,27,71,96,99,27,49,38,9,51,93,40,100,51,51,92,86,91,42,71,1,45,22,16,84,12,52,89,85,29,62,78,51,38,90,47,51,22,5,99,98,83,44,37,83,96,71,100,79,46,71,87,21,31,91,32,26,72,31,96,59,75,30,52,24,35,32,64,96,89,41,94,28,4,40,73,32,40,39,25,55,97,58,47,59,59,73,3,95,29,60,96,19,95,43,72,29,6,37,98,6,20,81,55,51,32,98,1,43,60,97,36,31,27,19,42,60,75,59,46,55,70,47,4,54,4,54,83,48,8,98,69,12,35,61,35,50,13,100,32,14,91,17,97,9,70,80,96,60,27,63,83,13,17,84,43,90,73,13,86,59,83,86,62,76,87,62,34,59,94,35,93,18,85,38,45,3,39,24,85,70,75,72,78,44,17,94,7,73,1,17,32,77,5,8,48,83,78,67,47,14,23,52,92,4,85,36,98,92,84,51,60,77,28,12,98,58,51,4,50,84,3,90,37,13,45,85,28,58,12,44,34,17,74,54,33,19,30,5,82,96,72,75,13,81,100,43,99,79,74,41,3,75,22,76,24,70,70,53,3,9,61,52,22,39,100,2,33,60,81,75,84,78,96,40,56,44,96,82,35,53,78,58,8,30,77,74,93,55,55,96,71,100,64,73,30,38,3,49,75,46,77,48,37,74,5,57,27,73,21,41,98,84,78,78,86,54,23,83,9,21,35,97,47,36,52,70,11,4,39,8,91,19,14,64,21,43,57,77,28,29,17,4,76,93,25,71,27,81,44,77,25,28,66,20,7,87,90,71,34,33,39,30,56,66,43,85,95,47,7,76,79,53,17,16,40,100,44,48,99,14,69,13,18,37,24,10,60,29,54,69,76,21,61,16,18,71,5,14,47,49,7,77,3,22,36,7,54,32,97,85,93,88,11,48,61,24,22,26,45,13,23,64,48,87,69,54,51,90,78,30,83,45,42,88,31,32,75,33,13,61,69,70,84,52,35,97,13,18,54,94,47,55,5,12,43,17,24,78,28,45,60,49,20,16,82,71,38,2,60,46,3,57,83,80,21,85,46,3,37,68,66,82,44,59,82,12,11,38,17,54,26,54,69,18,26,2,69,30,2,5,97,93,87,76,36,73,40,31,8,43,43,32,44,10,81,57,82,10,55,11,16,88,53,79,73,26,70,7,17,31,81,23,61,30,16,66,60,13,5,60,82,52,54,93,39,77,60,76,77,33,59,56,43,65,94,97,44,40,2,26,49,43,27,28,100,68,63,2,13,19,72,59,93,71,97,96,8,11,65,34,3,48,28,93,70,6,96,4,32,72,58,99,48,1,17,89,76,47,90,46,91,36,75,38,21,28,25,19,85,55,4,58,10,38,74,19,48,55,62,35,74,64,91,85,45,3,8,99,19,24,28,27,62,33,46,71,14,36,54,54,69,64,82,22,31,16,1,100,55,88,85,18,19,5,23,67,18,22,26,33,15,99,90,53,35,29,47,56,34,17,35,32,53,40,94,21,81,51,39,95,75,50,91,44,80,66,30,80,28,51,66,30,13,52,8,44,39,34,42,4,17,58,41,53,56,82,47,64,78,32,87,97,91,13,24,68,15,66,39,60,75,64,33,94,61,23,92,90,45,29,79,45,68,82,89,60,1,66,6,87,89,44,90,13,16,63,42,35,28,59,66,25,78,16,94,30,66,95,20,33,97,58,9,73,75,52,81,22,6,51,62,99,4,77,35,52,41,10,48,25,1,47,66,76,81,51,64,97,74,23,43,81,75,56,21,2,47,94,69,53,100,4,30,51,34,60,72,51,10,24,37,33,41,20,12,25,86,49,13,85,88,74,26,36,88,91,12,55,87,52,51,51,72,58,68,30,28,16,71,18,22,92,76,63,65,18,3,46,9,90,97,28,94,99,9,55,79,41,71,74,75,59,84,62,35,89,22,71,25,45,87,5,52,6,5,56,96,19,94,54,60,47,21,28,25,23,88,36,70,91,95,61,88,43,30,69,22,19,97,9,23,31,62,5,6,75,63,37,100,54,45,7,52,1,15,16,45,71,33,21,18,56,27,35,39,47,23,12,7,49,55,38,77,73,50,71,91,55,39,92,31,46,9,34,28,82,49,26,55,8,18,37,7,25,22,20,45,86,58,21,46,9,30,12,23,46,63,65,20,14,52,63,14,68,31,84,22,40,61,8,34,12,85,46,59,39,38,60,14,19,12,87,43,36,78,57,20,78,44,26,34,14,49,77,46,38,78,10,38,30,15,53,93,63,31,38,73,87,42,52,65,50,83,47,53,85,44,18,27,60,70,68,54,26,32,94,25,31,98,66,55,34,88,51,62,71,15,33,83,26,61,8,64,56,62,4,91,50,61,25,96,78,70,1,54,59,13,76,4,13,96,34,64,99,74,69,97,12,1,17,53,34,34,47,95,35,20,61,82,23,67,87,99,68,78,76,61,23,86,97,69,8,39,83,15,5,17,63,19,6,9,100,84,78,11,99,46,87,28,91,26,69,55,9,68,4,2,60,85,17,33,57,41,89,87,37,9,56,72,99,69,3,12,3,53,13,63,48,28,6,99,26,98,36,36,38,73,96,28,27,62,35,47,36,5,83,49,87,94,98,85,19,94,9,39,60,75,5,18,90,13,16,55,68,57,77,41,25,18,30,39,82,33,3,86,69,62,20,59,10,6,57,1,11,56,29,13,58,92,82,32,22,3,15,21,36,99,9,41,26,59,23,65,9,45,41,49,44,11,86,84,28,18,9,1,25,70,36,16,93,87,1,74,54,17,54,38,22,23,90,87,15,55,2,57,36,74,43,77,26,48,20,52,82,24,72,52,94,58,65,69,54,18,49,39,43,11,34,11,91,20,25,87,25,39,15,87,39,75,96,82,6,95,22,10,34,48,17,98,96,37,33,47,32,80,66,92,60,14,40,70,87,1,90,96,23,14,62,67,58,59,5,94,79,57,94,98,97,69,17,64,34,27,86,14,53,98,91,25,70,96,82,69,78,33,93,41,98,77,50,3,45,92,61,44,35,94,1,60,86,85,7,88,37,87,66,84,36,36,38,55,49,62,77,98,20,10,47,64,79,62,78,63,33,18,23,60,95,29,62,68,96,87,80,82,96,72,6,6,79,34,89,29,21,60,49,28,47,51,76,90,82,17,44,80}
{36,13,29,97,50,76,62,83,1,73,1,13,17,20,49,78,67,71,20,72,14,31,54,76,83,11,48,28,72,98,74,76,69,59,31,86,40,90,90,29,89,70,49,9,100,62,95,79,5,54,49,43,55,65,32,100,88,32,21,88,63,92,84,4,90,41,55,14,54,47,5,1,5,99,85,97,50,50,70,35,75,31,8,30,76,100,79,16,17,9,29,26,30,61,56,29,78,77,86,23,51,50,19,94,37,54,41,57,100,27,18,98,23,26,38,61,51,34,55,37,14,82,82,16,56,20,52,24,23,63,81,37,12,51,18,58,13,3,38,4,72,3,22,64,67,2,17,47,62,65,3,43,23,61,99,44,98,28,41,90,53,54,99,17,16,12,92,78,31,27,28,2,58,66,53,7,29,51,5,38,82,59,3,76,32,60,56,30,81,13,57,12,74,56,68,32,33,75,4,77,9,72,60,87,21,22,30,37,93,6,15,24,87,39,49,49,37,76,71,72,15,19,84,24,47,60,62,64,55,71,79,49,67,31,70,36,30,46,26,89,94,77,14,38,96,1,47,98,30,75,5,16,41,77,59,15,79,87,21,35,41,49,11,12,23,51,99,41,12,73,78,34,20,12,44,2,28,56,43,43,14,18,89,55,95,3,8,46,49,63,77,57,94,22,10,85,26,64,36,22,36,4,38,14,50,90,70,88,93,93,74,82,46,97,83,45,4,17,100,4,50,20,20,10,60,54,59,99,6,42,81,59,17,44,39,3,10,30,53,10,2,74,40,7,98,10,53,51,2,95,31,73,64,22,81,45,48,57,3,21,52,81,40,46,45,56,92,94,61,29,48,34,4,44,12,50,51,53,73,20,75,37,31,33,55,16,45,4,86,21,65,12,14,6,37,82,43,51,2,9,1,23,25,22,49,78,51,47,7,37,55,77,29,66,94,82,92,1,80,82,92,71,86,6,30,3,61,69,47,93,18,36,5,80,19,91,70,41,63,31,29,36,4,39,81,48,39,88,94,37,6,95,71,37,80,14,81,73,29,54,11,39,99,89,81,5,3,8,3,84,73,49,8,50,97,67,78,41,89,58,3,63,73,85,45,66,32,56,64,15,79,81,37,91,9,96,53,83,83,98,16,55,27,6,50,4,86,37,42,66,79,41,78,52,73,48,98,45,7,12,100,35,84,76,31,87,37,6,70,43,22,88,77,43,17,29,95,66,28,27,36,4,88,48,17,80,78,82,49,55,86,7,55,72,96,56,87,7,42,29,43,37,90,69,35,40,31,63,52,87,38,47,56,19,97,4,6,34,98,67,57,51,34,9,100,58,15,57,85,10,21,98,97,65,33,85,36,39,33,87,69,74,68,81,53,2,71,17,84,30,67,67,41,62,88,66,80,100,72,100,30,90,8,48,61,99,75,49,59,40,59,54,17,84,12,53,72,47,63,82,46,69,51,52,29,22,65,56,23,81,54,67,100,62,87,36,75,59,35,79,78,99,45,61,13,39,35,29,22,46,52,99,58,6,88,54,36,25,7,69,67,100,44,12,34,75,43,70,21,90,81,65,47,89,78,42,51,73,26,36,69,10,95,25,9,56,42,44,58,96,40,9,7,19,81,93,30,41,26,74,84,79,100,57,12,92,72,81,74,1,77,3,55,17,12,48,78,15,95,30,3,2,66,27,79,52,61,30,81,96,52,74,38,95,92,80,52,16,67,59,60,10,88,35,38,84,90,83,31,12,51,87,34,78,72,76,57,67,46,89,31,88,16,5,47,46,1,71,34,33,59,19,38,82,96,11,63,65,20,96,45,83,77,8,47,75,73,87,86,18,9,87,49,82,40,53,9,72,56,46,6,47,45,58,29,34,27,98,55,70,50,56,50,73,58,77,68,47,70,76,29,3,2,29,42,96,45,10,7,52,45,88,6,85,5,45,9,88,78,100,34,17,69,3,3,58,86,77,79,48,44,77,48,43,42,63,82,62,40,66,95,48,16,58,99,11,100,63,2,67,19,30,62,96,13,52,82,98,68,12,69,61,66,90,4,91,34,65,62,7,45,14,6,62,95,41,38,66,94,78,89,12,22,3,8,75,98,10,10,11,63,61,4,54,37,67,89,60,7,42,76,68,37,92,89,27,38,4,51,38,14,27,57,23,17,55,44,17,77,34,100,74,42,53,29,54,49,13,70,84,84,73,27,20,16,40,64,19,2,87,58,47,18,41,53,35,68,93,60,26,22,94,25,44,70,68,92,57,76,18,77,94,72,59,54,41,3,86,6,92,40,21,97,66,97,82,86,4,79,62,8,22,32,79,16,14,23,68,92,46,86,8,97,29,79,12,91,92,57,58,56,46,30,59,98,58,6,14,29,33,22,39,73,37,63,17,81,86,15,44,57,56,80,32,5,63,56,58,44,30,20,24,53,8,16,49,60,44,8,93,72,9,94,60,62,35,86,27,53,68,65,94,39,41,55,60,15,67,63,75,99,39,90,44,91,50,88,16,69,92,56,85,77,78,89,57,22,63,72,87,62,4,79,26,40,87,93,14,62,82,59,44,55,96,10,66,8,24,71,81,32,33,89,9,70,34,11,34,88,18,95,37,28,19,62,83,62,32,73,26,97,36,20,39,72,45,93,28,88,24,55,97,39,5,61,5,62,41,97,60,47,50,65,1,85,99,49,96,81,27,11,16,19,66,83,32,61,18,63,1,2,76,40,17,50,12,90,22,81,76,71,93,29,77,87,37,26,89,73,59,45,5,21,94,29,80,7,25,80,59,25,48,59,50,9,79,9,22,36,41,42,96,27,19,32,37,42,7,76,16,43,33,100,95,8,95,3,34,70,9,73,92,63,7,95,94,26,21,77,78,98,12,33,36,29,29,59,59,96,80,84,42,56,70,40,42,75,29,96,43,79,45,20,1,55,6,79,3,58,23,96,39,46,28,34,23,41,9,87,60,25,52,48,39,36,67,77,61,67,65,73,10,20,77,20,39,20,98,51,1,22,67,77,50,65,9,57,22,84,64,64,64,84,97,61,88,89,41,46,20,32,33,56,81,17,58,97,66,89,20,75,55,61,31,8,26,36,25,4,8,10,63,21,53,78,37,80,3,92,31,26,39,8,52,4,29,28,14,29,3,97,81,24,16,39,99,95,74,36,37,67,54,11,9,21,38,76,46,24,85,2,26,88,21,40,91,17,59,59,22,3,24,2,74,92,76,64,1,21,30,60,63,35,52,43,31,23,54,39,69,95,91,91,16,75,2,14,42,61,39,6,22,98,58,34,8,26,61,37,79,35,26,77,73,38,62,85,11,77,85,80,72,22,40,7,66,94,31,25,31,20,56,24,47,90,27,61,74,82,38,24,75,61,80,3,4,10,71,13,25,40,7,46,16,36,37,57,22,45,74,61,41,76,1,13,83,79,7,83,28,13,59,52,44,38,12,4,2,83,95,9,14,23,65,23,54,63,19,21,36,71,42,20,72,11,70,43,51,52,9,55,3,75,19,37,96,79,85,19,90,93,96,86,79,54,64,70,57,48,34,85,14,29,43,45,21,31,98,86,13,54,90,30,44,61,43,24,57,60,73,11,61,32,23,45,3,76,98,74,60,97,41,100,100,90,60,92,82,24,17,88,8,2,90,26,70,61,3,67,60,30,45,48,96,1,83,51,96,61,89,36,39,53,33,70,70,66,56,12,80,33,34,61,10,11,86,26,59,43,53,23,59,49,89,97,4,10,35,41,64,56,68,74,4,89,88,60,66,55,1,71,25,58,40,97,7,52,81,93,63,64,89,76,68,50,47,54,88,85,9,46,7,49,63,57,27,29,46,35,41,22,26,83,90,90,38,11,13,28,12,16,38,5,43,83,26,25,82,95,44,14,49,56,35,64,27,63,91,98,6,14,40,90,2,78,18,54,4,5,99,87,84,82,9,26,89,48,83,38,71,48,70,8,81,87,19,77,83,58,60,89,53,60,98,69,38,86,52,94,66,64,51,45,30,66,54,51,85,21,19,58,18,99,15,93,11,93,58,59,95,9,79,61,7,91,72,8,17,52,86,71,9,69,55,48,97,55,17,79,32,20,78,27,95,15,41,24,36,94,74,49,68,9,100,58,100,10,89,62,44,78,49,95,8,39,100,46,51,89,44,15,66,76,36,44,10,94,19,25,98,26,34,39,66,38,26,61,74,70,20,98,26,81,9,71,84,99,17,6,16,35,40,29,68,10,91,72,95,45,46,55,45,24,94,99,63,47,89,52,6,60,89,16,75,82,1,83,86,70,33,35,34,77,62,41,1,28,71,84,22,84,83,95,26,24,73,16,10,59,46,14,62,9,93,98,34,25,83,90,96,85,53,42,42,39,23,28,73,44,81,19,47,63,30,69,13,93,43,63,39,8,1,54,65,28,57,85,37,8,14,61,62,34,72,15,92,27,32,60,26,30,60,67,72,18,10,75,45,83,53,95,77,92,60,43,3,67,10,74,77,51,64,20,52,26,5,27,78,100,56,57,47,85,76,86,37,49,93,58,90,10,74,62,99,56,95,95,47,100,86,42,19,83,37,28,37,83,45,67,97,68,2,73,7,37,37,38,36,19,33,97,49,56,67,54,97,99,51,57,8,37,52,97,22,55,31,86,98,56,48,95,35,3,32,3,22,62,31,46,57,77,39,19,66,2,82,74,79,7,65,33,6,58,57,53,95,80,13,56,56,67,38,26,77,92,95,21,43,33,90,86,48,14,66,39,76,76,78,21,88,10,17,28,73,74,14,25,73,94,30,23,29,75,42,28,38,3,93,35,65,94,79,96,10,34,33,27,76,40,64,18,53,62,1,24,78,11,94,59,24,46,32,65,13,66,47,60,26,81,64,71,67,57,10,16,7,59,62,97,13,86,74,49,56,52,24,71,76,22,59,78,73,11,34,58,87,73,82,26,24,64,91,84,75,24,82,45,14,52,51,18,8,71,62,30,34,32,32,11,85,20,12,54,58,28,87,5,49,15,29,51,1,33,44,88,49,35,46,31,77,71,62,63,96,69,20,1,98,77,57,21,86,40,72,14,7,66,92,84,67,63,54,92,47,78,34,21,95,42,89,83,7,39,38,63,100,47,25,42,80,66,89,91,44,26,76,58,41,7,22,31,61,35,62,67,31,94,5,19,2,6,56,7,94,52,48,7,17,75,10,20,7,89,77,12,63,35,9,13,4,63,83,38,16,7,86,9,85,99,43,35,8,18,84,66,47,99,53,50,45,48,57,56,94,80,51,2,60,81,52,3,15,17,91,84,2,60,89,47,16,82,9,65,83,50,65,72,63,19,99,55,23,47,21,15,72,74,70,52,64,87,58,52,45,79,73,84,41,42,3,14,37,69,4,11,44,26,42,91,14,70,31,59,98,14,72,28,29,87,99,96,39,75,58,5,21,81,5,69,82,64,81,73,30,19,55,63,95,17,14,86,67,35,41,62,23,55,67,32,86,27,4,7,41,75,83,81,58,88,61,86,10,13,82,79,29,45,23,8,83,72,83,75,19,44,30,42,73,71,46,42,91,21,75,19,85,61,19,44,4,36,92,28,77,92,80,53,29,56,40,63,93,55,13,17,67,30,4,95,89,15,52,39,44,79,78,74,50,11,83}
{-4,-28,-96,-36,-87,-56,-94,-98,-92,-19,-29,-75,-37,-54,-26,-22,-30,-100,-99,-87,-1,-50,-63,-73,-91,-41,-69,-27,-89,-4,-89,-22,-42,-15,-61,-44,-27,-27,-84,-62,-96,-46,-3,-10,-8,-84,-36,-96,-20,-8,-36,-69,-10,-60,-26,-20,-96,-48,-29,-80,-59,-51,-62,-44,-57,-99,-63,-34,-90,-78,-24,-85,-29,-95,-96,-61,-40,-45,-48,-26,-48,-31,-28,-69,-64,-76,-75,-14,-51,-99,-97,-67,-73,-9,-29,-66,-43,-14,-6,-73,-25,-41,-8,-80,-92,-2,-56,-9,-9,-35,-87,-74,-14,-18,-14,-29,-29,-44,-94,-12,-42,-14,-67,-36,-62,-10,-84,-92,-86,-73,-34,-82,-34,-45,-31,-86,-36,-85,-22,-61,-66,-100,-14,-62,-72,-21,-63,-30,-66,-71,-63,-51,-65,-49,-77,-25,-68,-23,-2,-16,-89,-72,-19,-65,-58,-100,-82,-28,-88,-5,-26,-38,-23,-70,-18,-86,-63,-13,-76,-35,-18,-21,-59,-18,-67,-68,-7,-64,-45,-6,-45,-45,-22,-18,-69,-61,-71,-1,-58,-2,-7,-53,-9,-84,-54,-24,-47,-55,-79,-21,-8,-58,-26,-29,-85,-45,-16,-38,-19,-97,-75,-80,-5,-56,-97,-80,-74,-29,-16,-61,-8,-84,-68,-54,-67,-5,-35,-76,-49,-56,-51,-1,-23,-54,-68,-49,-25,-30,-92,-54,-11,-30,-17,-30,-55,-67,-65,-69,-65,-50,-48,-67,-97,-55,-61,-8,-19,-24,-3,-88,-46,-40,-56,-22,-65,-35,-25,-20,-25,-83,-7,-82,-97,-4,-79,-29,-43,-43,-41,-42,-3,-56,-19,-59,-99,-70,-31,-43,-4,-77,-35,-7,-35,-41,-60,-86,-64,-18,-70,-63,-90,-94,-47,-36,-19,-97,-12,-90,-96,-21,-56,-30,-91,-86,-79,-41,-12,-31,-22,-3,-97,-12,-59,-31,-9,-12,-76,-64,-59,-85,-83,-97,-23,-33,-40,-69,-75,-41,-31,-39,-56,-60,-27,-89,-17,-67,-99,-9,-3,-2,-68,-60,-60,-36,-91,-88,-3,-90,-52,-67,-50,-82,-93,-83,-70,-65,-50,-1,-78,-79,-63,-16,-46,-22,-60,-80,-12,-15,-30,-8,-69,-38,-93,-41,-3,-69,-87,-61,-68,-84,-81,-33,-73,-30,-40,-94,-4,-99,-93,-60,-38,-32,-18,-100,-46,-69,-72,-73,-41,-70,-74,-13,-35,-44,-43,-97,-86,-32,-33,-14,-69,-92,-43,-46,-100,-73,-66,-10,-28,-57,-83,-61,-69,-99,-84,-59,-11,-92,-42,-73,-17,-45,-91,-36,-65,-59,-39,-77,-36,-59,-51,-62,-10,-36,-58,-71,-69,-41,-31,-34,-4,-72,-97,-96,-20,-83,-49,-26,-4,-63,-82,-76,-39,-10,-27,-58,-6,-62,-65,-47,-89,-32,-31,-56,-76,-31,-83,-27,-29,-44,-52,-38,-6,-2,-72,-60,-35,-35,-46,-97,-53,-10,-43,-44,-51,-95,-61,-83,-54,-5,-63,-20,-65,-44,-93,-95,-12,-70,-15,-72,-22,-92,-67,-30,-100,-83,-19,-97,-31,-33,-28,-60,-42,-20,-31,-12,-40,-23,-88,-23,-47,-74,-73,-12,-58,-80,-69,-64,-15,-40,-34,-22,-77,-30,-27,-50,-48,-96,-66,-72,-10,-77,-57,-39,-15,-66,-64,-11,-38,-58,-18,-100,-78,-68,-83,-36,-58,-34,-11,-99,-64,-63,-62,-90,-43,-14,-9,-87,-37,-60,-32,-67,-86,-12,-34,-75,-17,-57,-38,-27,-71,-92,-7,-82,-39,-8,-11,-2,-94,-42,-26,-70,-58,-55,-49,-53,-35,-97,-59,-23,-32,-57,-12,-7,-45,-79,-38,-23,-51,-16,-36,-76,-13,-44,-4,-34,-90,-72,-11,-56,-6,-43,-34,-99,-99,-20,-87,-41,-11,-49,-52,-6,-56,-75,-1,-99,-30,-89,-1,-79,-63,-81,-45,-6,-82,-94,-34,-4,-45,-51,-5,-40,-37,-67,-53,-91,-82,-63,-46,-56,-75,-97,-86,-35,-95,-78,-35,-13,-40,-16,-2,-27,-54,-33,-7,-31,-48,-38,-98,-28,-91,-30,-34,-73,-56,-41,-6,-4,-22,-27,-36,-6,-1,-98,-97,-88,-24,-1,-57,-73,-71,-27,-91,-17,-15,-46,-96,-75,-75,-62,-100,-60,-30,-2,-43,-65,-97,-33,-54,-31,-100,-61,-92,-81,-81,-23,-95,-61,-64,-75,-16,-82,-68,-28,-32,-65,-85,-62,-13,-60,-82,-53,-99,-29,-47,-94,-86,-48,-36,-6,-58,-15,-36,-5,-90,-34,-7,-80,-34,-37,-59,-66,-77,-66,-7,-38,-77,-75,-41,-99,-15,-3,-31,-27,-89,-22,-98,-29,-53,-35,-78,-8,-59,-87,-88,-7,-78,-1,-69,-56,-98,-83,-82,-49,-71,-48,-6,-85,-61,-93,-1,-71,-60,-44,-45,-82,-99,-89,-28,-9,-31,-11,-83,-80,-90,-25,-73,-61,-44,-42,-79,-83,-18,-63,-61,-3,-59,-47,-51,-33,-21,-81,-67,-43,-85,-5,-40,-81,-22,-72,-13,-19,-81,-32,-8,-94,-6,-48,-16,-71,-97,-8,-24,-28,-11,-88,-38,-31,-28,-96,-61,-29,-46,-14,-81,-6,-1,-60,-93,-53,-67,-66,-26,-66,-42,-68,-75,-17,-48,-22,-20,-43,-83,-26,-41,-16,-46,-83,-40,-4,-5,-90,-62,-77,-47,-10,-9,-81,-22,-47,-27,-26,-33,-98,-31,-32,-67,-60,-68,-89,-19,-2,-69,-93,-22,-22,-21,-66,-32,-76,-92,-37,-4,-59,-100,-35,-51,-77,-55,-42,-12,-88,-29,-79,-20,-31,-93,-59,-73,-2,-52,-42,-2,-93,-46,-93,-64,-56,-29,-63,-37,-26,-40,-76,-93,-67,-70,-42,-25,-88,-94,-73,-60,-48,-82,-25,-46,-1,-27,-54,-26,-54,-18,-32,-84,-37,-83,-31,-84,-91,-59,-49,-22,-59,-8,-25,-87,-27,-77,-61,-21,-84,-34,-39,-76,-11,-36,-14,-8,-69,-60,-29,-44,-75,-51,-2,-24,-28,-33,-100,-89,-83,-11,-37,-10,-39,-74,-89,-62,-58,-11,-59,-47,-94,-98,-92,-21,-83,-88,-61,-54,-1,-24,-50,-27,-81,-28,-64,-29,-46,-68,-16,-54,-96,-86,-60,-77,-64,-76,-45,-8,-46,-62,-100,-63,-90,-37,-93,-54,-22,-3,-4,-89,-80,-72,-27,-14,-32,-33,-16,-67,-22,-3,-52,-88,-42,-19,-32,-62,-82,-44,-35,-85,-51,-46,-73,-3,-60,-66,-70,-2,-87,-48,-83,-98,-33,-20,-17,-65,-40,-4,-74,-100,-26,-40,-7,-15,-51,-25,-43,-12,-39,-47,-91,-26,-22,-67,-36,-22,-9,-19,-90,-68,-22,-55,-43,-4,-88,-12,-61,-64,-4,-5,-34,-42,-78,-46,-91,-93,-56,-78,-76,-45,-42,-78,-75,-48,-48,-96,-94,-64,-81,-42,-60,-46,-56,-12,-65,-43,-56,-15,-38,-48,-70,-17,-58,-43,-86,-45,-42,-44,-11,-8,-49,-37,-57,-55,-57,-1,-26,-78,-94,-61,-14,-97,-57,-77,-30,-76,-22,-63,-38,-32,-52,-68,-14,-57,-85,-97,-11,-47,-64,-21,-35,-32,-85,-44,-26,-51,-99,-30,-63,-67,-52,-54,-12,-1,-79,-22,-54,-10,-56,-58,-55,-44,-35,-66,-51,-29,-67,-78,-49,-90,-91,-90,-71,-99,-97,-33,-13,-48,-88,-74,-95,-80,-97,-37,-44,-83,-20,-57,-79,-45,-86,-15,-3,-78,-84,-80,-74,-84,-32,-95,-49,-17,-77,-46,-83,-72,-15,-57,-70,-17,-72,-80,-32,-80,-49,-33,-73,-73,-71,-5,-10,-74,-35,-94,-40,-98,-19,-77,-7,-24,-65,-79,-51,-70,-10,-49,-69,-24,-20,-35,-33,-17,-35,-48,-35,-84,-15,-82,-3,-8,-51,-77,-23,-58,-85,-31,-86,-21,-63,-6,-94,-16,-25,-90,-41,-17,-50,-84,-2,-67,-16,-73,-41,-33,-92,-96,-10,-95,-13,-73,-55,-71,-54,-53,-28,-70,-60,-62,-56,-59,-50,-80,-7,-37,-77,-52,-49,-97,-95,-48,-94,-100,-23,-3,-77,-22,-7,-58,-28,-59,-20,-79,-67,-50,-27,-77,-40,-57,-28,-80,-21,-84,-62,-82,-81,-45,-56,-10,-54,-92,-68,-64,-90,-88,-87,-48,-39,-95,-41,-99,-76,-46,-49,-36,-18,-23,-74,-84,-87,-26,-29,-9,-82,-23,-82,-94,-73,-76,-48,-14,-24,-27,-32,-16,-82,-60,-33,-9,-36,-21,-23,-59,-28,-58,-42,-38,-83,-67,-79,-49,-34,-61,-34,-9,-80,-69,-81,-55,-47,-58,-8,-29,-80,-91,-32,-11,-50,-39,-24,-85,-2,-56,-40,-18,-39,-63,-96,-55,-99,-95,-60,-58,-41,-59,-24,-100,-31,-30,-22,-40,-81,-59,-90,-68,-80,-88,-55,-68,-26,-86,-57,-7,-43,-98,-66,-96,-71,-47,-14,-81,-75,-18,-46,-11,-38,-93,-90,-19,-75,-88,-97,-63,-5,-57,-13,-51,-37,-4,-20,-24,-88,-84,-78,-11,-6,-63,-100,-64,-37,-2,-76,-7,-10,-25,-76,-47,-29,-2,-70,-93,-62,-95,-81,-13,-60,-33,-41,-86,-51,-11,-93,-79,-74,-33,-28,-17,-72,-92,-39,-89,-75,-30,-36,-14,-48,-98,-29,-90,-19,-4,-99,-45,-57,-88,-18,-5,-80,-93,-1,-83,-75,-84,-29,-51,-21,-78,-5,-56,-73,-79,-76,-6,-43,-75,-49,-95,-47,-45,-74,-25,-71,-34,-88,-19,-74,-30,-28,-64,-2,-10,-12,-83,-2,-54,-30,-67,-34,-59,-63,-99,-40,-24,-14,-5,-43,-82,-18,-4,-87,-60,-44,-96,-80,-8,-34,-33,-26,-80,-36,-27,-5,-94,-54,-19,-77,-76,-38,-70,-76,-88,-22,-30,-69,-14,-19,-54,-67,-77,-68,-25,-89,-12,-45,-33,-78,-9,-45,-57,-14,-78,-39,-78,-61,-90,-47,-97,-34,-31,-51,-64,-80,-51,-16,-33,-14,-26,-85,-40,-67,-74,-41,-66,-66,-49,-75,-100,-62,-5,-96,-16,-29,-69,-80,-98,-29,-91,-63,-9,-61,-47,-56,-67,-95,-30,-58,-5,-9,-55,-33,-36,-58,-10,-27,-84,-1,-39,-79,-69,-48,-82,-10,-17,-81,-37,-59,-51,-57,-90,-68,-65,-85,-45,-1,-2,-49,-58,-30,-98,-9,-69,-26,-95,-31,-100,-5,-30,-44,-26,-26,-18,-48,-12,-60,-99,-64,-80,-68,-87,-19,-45,-76,-49,-87,-15,-76,-10,-39,-91,-6,-85,-62,-88,-22,-71,-9,-20,-21,-19,-40,-17,-9,-58,-75,-38,-4,-15,-26,-91,-45,-70,-78,-74,-38,-5,-35,-9,-35,-84,-49,-13,-90,-48,-98,-89,-39,-57,-13,-11,-84,-27,-76,-95,-75,-80,-68,-88,-33,-29,-85,-86,-61,-39,-62,-79,-52,-48,-54,-72,-28,-34,-89,-58,-81,-93,-53,-32,-50,-56,-61,-16,-92,-13,-57,-49,-72,-33,-49,-18,-57,-50,-54,-36,-26,-86,-85,-82,-3,-92,-8,-79,-72,-69,-61,-65,-74,-92,-8,-18,-9,-74,-89,-34,-79,-64,-8,-37,-29,-17,-99,-67,-6,-79,-3,-39,-19,-59,-69,-3,-18,-14,-12,-17,-34,-14,-50,-50,-68,-45,-64,-65,-89,-36,-2,-4,-88,-67,-97,-73,-57,-13,-60,-53,-59,-87,-34,-9,-53,-99,-15,-51,-56,-34,-74,-79,-48,-43,-40,-7,-12,-71,-28,-12,-58,-33,-38,-10,-71,-3,-87,-34,-74,-32,-68,-80,-4,-21,-93,-95,-49,-87,-78,-44,-18,-27,-55,-84,-57,-45,-55,-39,-76,-25,-40,-51,-72,-86,-74,-13,-12,-72,-8,-95,-60,-84,-2,-84,-13,-28,-95,-18,-53,-32,-82,-54,-82,-54,-56,-31,-70,-4,-22,-3,-35,-36,-9,-77,-97,-42,-41,-13,-76,-37,-60,-95,-29,-83,-61,-89,-46,-9,-89,-42,-62,-73,-55,-74,-66,-22,-32,-67,-59,-18,-67,-87,-94,-71,-90,-70,-51,-89,-75,-24,-79,-94,-38,-13,-37,-70,-73,-99,-87,-97,-32,-64,-84,-10,-84,-18,-14,-66,-30,-86,-67,-33,-25,-15,-26,-27,-71,-99,-79,-4,-87,-86,-93,-71,-80,-89,-1,-60,-18,-11,-92,-57,-97,-31,-23,-61,-3,-36,-4,-61,-48,-50,-51,-3,-84,-67,-42,-46,-93,-46,-46,-14,-61,-96,-65,-48,-43,-48,-58,-19,-83,-52,-72,-14,-8,-79,-84,-39,-2,-59,-87,-52,-27,-43,-45,-80,-49,-34,-80,-52,-100,-70,-54,-97,-76,-64,-65,-100,-5,-71,-35,-60,-40,-47,-97,-10,-92,-2,-7,-62,-59,-73,-49,-17,-62,-36,-48,-22,-37,-92,-24,-19,-98,-74,-96,-93,-51,-96,-62,-75,-87,-71,-58,-74,-52,-99,-28,-75,-61,-44,-27,-82,-4,-7,-92,-44,-40,-89,-40,-35,-87,-6,-48,-61,-57,-19,-19,-52,-21,-3,-23,-85,-6,-9,-71,-70,-95,-12,-67,-33,-21,-13,-52,-37,-99,-59,-51,-49,-100,-73,-20,-30,-2,-49,-82,-44,-27,-48,-21,-100,-30,-29,-33,-27,-48,-29,-92,-58,-18,-21,-43,-29,-1,-25,-76,-38,-50,-35,-24,-99,-24,-17,-70,-11,-18,-61,-1,-29,-81,-39,-73,-31,-53,-10,-47,-31,-68,-15,-92,-42,-15,-62,-11,-80,-10,-67,-9,-70,-42,-23,-41,-79,-49,-83,-45,-90,-93,-20,-48,-35,-83,-89,-64,-29,-48,-59,-61,-34,-17,-78,-89,-47,-36,-54,-84,-56,-18,-94,-35,-24,-95,-86,-42,-75,-1,-61,-88,-20,-20,-42,-72,-32,-86,-13,-71,-6,-22,-70,-14,-70,-91,-69,-83,-70,-5,-20,-90,-77,-63,-40,-98,-50,-53,-81,-92,-76,-64,-92,-66,-57,-73,-12,-98,-49,-46,-77,-54,-73,-31,-48,-7,-94,-5,-8,-1,-51,-82,-19,-49,-46,-83,-64,-4,-44,-90,-3,-16,-16,-61,-19,-38,-50,-67,-30,-18,-24,-70,-46,-76,-34,-1,-72,-54,-30,-95,-51,-79,-73,-40,-9,-79,-97,-69,-13,-61,-48,-46,-59,-62,-26,-72,-55,-41,-50,-53,-89,-6,-59,-82,-72,-50,-1,-75,-73,-58,-42,-43,-70,-60,-89,-61,-44,-23,-77,-51,-14,-31,-79,-87,-56,-85,-23,-68,-85,-5,-47,-33,-76,-66,-17,-18,-90,-10,-39,-88,-43,-3,-25,-26,-67,-23,-68,-74,-76,-9}
{-43,-1,-93,-14,-92,-87,-26,-57,-15,-74,-86,-94,-33,-98,-96,-94,-35,-43,-50,-3,-34,-58,-63,-84,-33,-90,-7,-31,-72,-1,-100,-26,-93,-66,-14,-62,-55,-40,-70,-6,-38,-60,-76,-69,-89,-96,-26,-74,-60,-100,-73,-13,-88,-13,-68,-52,-21,-54,-78,-13,-52,-40,-18,-31,-19,-23,-48,-1,-53,-95,-22,-75,-9,-48,-86,-75,-94,-25,-87,-90,-21,-72,-25,-3,-30,-35,-21,-90,-18,-30,-79,-61,-76,-65,-25,-74,-83,-62,-61,-100,-25,-13,-53,-10,-16,-54,-59,-58,-65,-43,-50,-75,-13,-80,-27,-88,-69,-35,-25,-8,-23,-79,-28,-61,-76,-55,-20,-60,-17,-90,-32,-46,-14,-51,-81,-68,-24,-51,-71,-4,-20,-13,-57,-75,-16,-3,-79,-32,-54,-47,-55,-69,-25,-79,-96,-39,-23,-48,-50,-23,-55,-66,-98,-56,-49,-75,-25,-55,-9,-51,-80,-3,-57,-68,-73,-40,-30,-16,-17,-64,-72,-52,-11,-38,-50,-33,-71,-43,-27,-19,-70,-35,-85,-53,-13,-7,-53,-93,-66,-88,-16,-24,-98,-34,-78,-1,-65,-42,-46,-68,-92,-24,-61,-23,-6,-55,-32,-87,-40,-42,-60,-84,-33,-31,-22,-3,-49,-98,-70,-12,-46,-78,-42,-33,-91,-87,-13,-81,-98,-21,-32,-65,-70,-38,-61,-98,-68,-30,-11,-85,-100,-53,-6,-25,-99,-67,-14,-61,-2,-29,-22,-27,-90,-44,-47,-95,-99,-95,-92,-93,-67,-46,-49,-98,-67,-8,-74,-79,-76,-75,-51,-41,-97,-93,-34,-46,-80,-2,-70,-98,-44,-11,-91,-24,-44,-48,-87,-73,-82,-2,-27,-7,-39,-12,-91,-82,-98,-37,-60,-50,-14,-41,-88,-42,-78,-55,-100,-53,-100,-97,-11,-66,-80,-97,-22,-23,-51,-54,-72,-82,-1,-53,-23,-62,-40,-56,-49,-26,-61,-71,-58,-27,-55,-4,-1,-70,-85,-12,-71,-53,-82,-49,-47,-80,-48,-44,-56,-30,-42,-18,-49,-34,-4,-3,-17,-90,-45,-99,-3,-29,-34,-69,-24,-30,-69,-53,-9,-53,-59,-39,-71,-84,-62,-45,-79,-24,-27,-91,-84,-26,-56,-98,-13,-95,-61,-62,-42,-50,-13,-12,-35,-93,-11,-2,-4,-76,-52,-19,-90,-43,-80,-70,-58,-68,-32,-39,-31,-83,-88,-68,-27,-72,-87,-84,-38,-74,-100,-55,-6,-97,-31,-12,-69,-73,-53,-72,-23,-6,-85,-23,-30,-13,-24,-71,-23,-92,-96,-63,-95,-99,-51,-34,-43,-51,-50,-70,-37,-39,-90,-14,-13,-74,-95,-76,-38,-44,-65,-54,-4,-31,-17,-48,-91,-80,-48,-42,-15,-7,-63,-51,-16,-51,-83,-26,-59,-17,-79,-30,-48,-48,-33,-92,-94,-23,-5,-82,-73,-93,-3,-72,-14,-100,-72,-40,-10,-62,-3,-47,-88,-57,-62,-94,-88,-66,-13,-51,-22,-91,-44,-36,-38,-19,-85,-99,-71,-30,-100,-82,-14,-41,-5,-89,-28,-3,-78,-28,-20,-48,-68,-59,-78,-36,-73,-24,-86,-42,-72,-86,-85,-61,-98,-87,-39,-11,-12,-68,-43,-88,-97,-89,-57,-82,-37,-34,-25,-87,-28,-76,-93,-96,-8,-46,-100,-61,-99,-16,-15,-14,-60,-18,-6,-20,-44,-79,-9,-43,-52,-48,-98,-91,-78,-96,-15,-57,-80,-38,-4,-8,-61,-55,-15,-66,-64,-64,-75,-79,-49,-17,-93,-28,-38,-97,-86,-29,-32,-83,-11,-23,-23,-11,-50,-47,-85,-19,-6,-46,-31,-15,-29,-99,-68,-39,-82,-63,-58,-86,-75,-94,-53,-4,-44,-51,-47,-19,-20,-95,-77,-60,-25,-22,-38,-97,-100,-17,-45,-63,-72,-86,-33,-49,-96,-70,-24,-36,-16,-13,-32,-59,-3,-20,-100,-58,-37,-100,-44,-38,-77,-85,-5,-97,-81,-50,-58,-75,-26,-88,-26,-16,-16,-14,-25,-19,-26,-29,-48,-27,-19,-67,-6,-73,-87,-59,-3,-77,-28,-2,-72,-95,-9,-59,-22,-67,-19,-77,-59,-33,-90,-54,-6,-63,-71,-41,-26,-42,-83,-26,-81,-47,-38,-23,-66,-67,-9,-4,-85,-97,-44,-72,-52,-76,-79,-28,-7,-14,-68,-67,-36,-92,-78,-39,-81,-34,-83,-38,-39,-46,-17,-33,-96,-80,-64,-76,-72,-55,-50,-70,-94,-54,-83,-20,-98,-99,-16,-42,-36,-67,-61,-41,-24,-47,-61,-35,-85,-64,-34,-61,-75,-64,-33,-29,-31,-82,-53,-94,-92,-77,-67,-42,-39,-59,-42,-84,-58,-15,-99,-98,-21,-75,-64,-64,-42,-29,-82,-68,-46,-92,-74,-93,-11,-52,-84,-34,-42,-34,-72,-19,-67,-77,-91,-59,-58,-6,-70,-82,-84,-49,-58,-72,-84,-65,-36,-59,-69,-94,-67,-89,-57,-74,-92,-12,-68,-38,-87,-48,-89,-8,-69,-90,-89,-3,-54,-14,-1,-99,-42,-1,-19,-51,-10,-80,-49,-32,-14,-45,-44,-37,-63,-89,-80,-26,-5,-85,-17,-93,-68,-26,-42,-73,-71,-94,-21,-34,-34,-81,-47,-10,-68,-95,-15,-83,-8,-66,-64,-49,-21,-97,-82,-36,-100,-40,-70,-95,-69,-90,-4,-21,-31,-75,-11,-15,-4,-43,-22,-33,-32,-71,-43,-55,-14,-22,-76,-25,-27,-7,-44,-1,-97,-35,-30,-8,-76,-62,-29,-44,-24,-53,-7,-87,-49,-74,-8,-85,-41,-69,-15,-22,-71,-10,-63,-1,-57,-98,-25,-8,-68,-46,-40,-50,-64,-39,-32,-4,-70,-11,-78,-76,-55,-25,-13,-54,-81,-26,-23,-75,-69,-55,-67,-84,-22,-40,-99,-98,-65,-80,-91,-75,-87,-59,-34,-15,-2,-82,-31,-23,-79,-98,-60,-73,-86,-70,-26,-60,-19,-22,-37,-12,-90,-82,-4,-92,-49,-50,-78,-28,-94,-69,-30,-57,-52,-32,-63,-90,-64,-95,-93,-47,-79,-27,-66,-66,-89,-86,-89,-13,-54,-45,-49,-89,-41,-5,-42,-56,-86,-26,-93,-89,-19,-46,-65,-90,-24,-74,-55,-76,-5,-56,-51,-11,-14,-63,-84,-22,-30,-48,-45,-6,-67,-90,-38,-4,-37,-52,-50,-4,-39,-33,-72,-100,-88,-24,-54,-40,-61,-50,-7,-41,-45,-1,-81,-86,-4,-21,-80,-67,-31,-78,-13,-68,-52,-8,-40,-44,-46,-50,-34,-81,-3,-15,-65,-30,-94,-31,-76,-66,-49,-43,-75,-10,-49,-60,-95,-98,-86,-80,-90,-26,-60,-39,-92,-33,-52,-82,-60,-73,-84,-75,-47,-79,-20,-25,-55,-50,-83,-19,-56,-98,-61,-35,-93,-72,-37,-24,-72,-65,-72,-30,-54,-89,-46,-52,-89,-33,-35,-22,-1,-65,-34,-26,-25,-84,-46,-76,-100,-17,-79,-91,-99,-52,-31,-19,-22,-19,-20,-27,-97,-61,-39,-30,-65,-4,-20,-42,-75,-22,-82,-87,-23,-45,-97,-28,-48,-55,-55,-25,-95,-77,-36,-59,-61,-55,-65,-32,-16,-5,-55,-63,-39,-7,-39,-6,-40,-98,-80,-5,-63,-18,-6,-34,-21,-67,-58,-55,-24,-27,-63,-68,-58,-95,-16,-27,-39,-10,-69,-16,-16,-34,-29,-23,-47,-83,-36,-60,-29,-12,-77,-3,-13,-75,-94,-84,-39,-13,-85,-78,-98,-35,-72,-75,-49,-9,-91,-96,-86,-74,-7,-1,-75,-69,-72,-55,-74,-68,-68,-15,-34,-76,-36,-82,-60,-82,-80,-29,-97,-12,-52,-44,-92,-69,-52,-39,-1,-9,-72,-93,-57,-66,-76,-15,-95,-69,-86,-55,-21,-4,-35,-80,-62,-94,-92,-18,-66,-75,-31,-43,-49,-93,-79,-76,-59,-45,-36,-57,-90,-47,-59,-32,-69,-5,-20,-19,-2,-51,-6,-76,-17,-86,-9,-41,-3,-68,-57,-83,-3,-90,-70,-37,-67,-56,-9,-94,-72,-14,-43,-30,-19,-58,-22,-93,-99,-61,-52,-66,-40,-74,-81,-70,-9,-74,-70,-74,-28,-36,-6,-39,-56,-30,-18,-27,-46,-72,-4,-69,-35,-82,-32,-97,-34,-24,-99,-28,-96,-44,-18,-86,-88,-51,-88,-45,-89,-36,-72,-88,-17,-40,-97,-60,-50,-62,-62,-33,-36,-7,-61,-96,-15,-68,-73,-81,-62,-48,-27,-91,-25,-6,-68,-92,-9,-86,-60,-59,-41,-8,-25,-94,-9,-20,-10,-72,-5,-35,-46,-100,-3,-67,-65,-97,-7,-75,-45,-73,-72,-59,-93,-98,-31,-82,-70,-22,-14,-33,-47,-27,-13,-85,-11,-87,-76,-29,-8,-26,-16,-28,-92,-44,-4,-76,-54,-40,-12,-93,-64,-30,-65,-45,-10,-7,-34,-37,-37,-90,-60,-85,-3,-61,-16,-37,-17,-71,-28,-77,-31,-87,-55,-18,-42,-25,-1,-73,-21,-97,-56,-29,-31,-10,-90,-5,-22,-22,-43,-59,-82,-77,-73,-82,-88,-34,-47,-44,-100,-93,-35,-97,-10,-57,-3,-80,-27,-46,-92,-32,-29,-14,-17,-54,-4,-19,-78,-30,-33,-26,-97,-63,-99,-36,-84,-47,-6,-65,-34,-63,-71,-13,-80,-38,-5,-15,-100,-100,-56,-71,-63,-18,-62,-11,-93,-84,-1,-92,-8,-6,-52,-40,-33,-20,-70,-30,-7,-51,-64,-33,-11,-18,-8,-93,-34,-83,-73,-91,-28,-28,-40,-74,-76,-53,-96,-10,-80,-78,-21,-97,-93,-48,-79,-98,-78,-23,-94,-88,-27,-95,-54,-14,-17,-12,-97,-12,-59,-90,-56,-55,-13,-42,-31,-12,-73,-18,-91,-82,-87,-68,-97,-59,-98,-49,-2,-61,-64,-64,-44,-93,-27,-21,-62,-44,-15,-65,-84,-7,-30,-60,-96,-37,-54,-48,-91,-20,-9,-79,-18,-26,-70,-6,-67,-19,-72,-64,-28,-43,-71,-41,-44,-88,-25,-52,-3,-7,-43,-84,-72,-42,-89,-28,-75,-74,-76,-100,-85,-35,-9,-28,-100,-63,-92,-46,-72,-10,-18,-16,-32,-67,-90,-97,-81,-14,-48,-48,-77,-47,-86,-45,-27,-93,-18,-83,-82,-73,-12,-41,-2,-40,-52,-67,-85,-68,-9,-43,-88,-57,-77,-19,-36,-50,-20,-72,-28,-66,-25,-97,-55,-5,-72,-11,-16,-69,-45,-7,-99,-13,-4,-80,-92,-39,-73,-95,-45,-15,-78,-78,-65,-11,-41,-39,-12,-8,-80,-90,-7,-81,-10,-22,-88,-82,-97,-72,-70,-48,-65,-45,-20,-53,-34,-81,-39,-52,-2,-43,-92,-56,-96,-14,-10,-96,-94,-75,-10,-87,-52,-64,-62,-43,-20,-17,-39,-29,-73,-7,-70,-47,-91,-97,-87,-88,-77,-89,-53,-40,-16,-13,-30,-16,-56,-69,-80,-93,-77,-55,-8,-17,-50,-29,-72,-24,-12,-13,-42,-56,-97,-73,-57,-10,-34,-32,-59,-8,-81,-72,-86,-47,-22,-56,-21,-23,-35,-19,-12,-39,-68,-76,-92,-97,-5,-2,-76,-35,-72,-58,-87,-70,-54,-21,-73,-26,-99,-34,-99,-97,-68,-91,-80,-75,-65,-73,-83,-58,-6,-24,-67,-59,-7,-52,-55,-1,-90,-65,-31,-19,-38,-32,-27,-40,-36,-34,-19,-66,-15,-70,-89,-49,-67,-98,-28,-82,-62,-30,-13,-25,-67,-81,-8,-13,-24,-97,-29,-7,-53,-71,-93,-54,-43,-81,-14,-84,-90,-91,-43,-54,-82,-77,-73,-16,-67,-55,-73,-2,-56,-19,-31,-55,-8,-98,-97,-84,-10,-29,-36,-55,-91,-75,-21,-92,-84,-79,-53,-79,-93,-58,-53,-51,-52,-85,-19,-71,-94,-80,-23,-93,-97,-18,-52,-33,-93,-1,-21,-69,-99,-99,-61,-27,-37,-98,-8,-14,-21,-13,-93,-3,-49,-98,-53,-79,-24,-56,-8,-9,-15,-14,-95,-8,-56,-100,-82,-44,-70,-54,-40,-20,-88,-47,-62,-56,-76,-6,-37,-18,-89,-96,-28,-91,-10,-16,-4,-53,-72,-52,-53,-57,-72,-23,-85,-92,-48,-52,-40,-50,-6,-16,-63,-86,-69,-81,-90,-55,-91,-17,-62,-29,-51,-100,-37,-32,-24,-18,-10,-53,-100,-28,-35,-27,-28,-12,-56,-6,-97,-24,-2,-88,-51,-12,-46,-99,-98,-82,-49,-73,-25,-36,-13,-30,-60,-22,-39,-71,-10,-2,-35,-13,-11,-49,-70,-78,-53,-76,-61,-71,-13,-3,-76,-100,-18,-43,-16,-73,-78,-33,-65,-80,-74,-12,-26,-24,-59,-65,-76,-56,-56,-74,-32,-36,-14,-30,-100,-14,-25,-65,-83,-43,-1,-10,-92,-79,-96,-4,-20,-35,-77,-76,-96,-67,-3,-21,-99,-17,-100,-49,-25,-94,-36,-84,-13,-34,-45,-9,-3,-100,-59,-82,-7,-8,-93,-27,-32,-43,-86,-41,-4,-76,-64,-90,-54,-84,-91,-76,-74,-30,-86,-52,-32,-43,-66,-93,-28,-96,-21,-33,-40,-7,-61,-4,-7,-3,-6,-42,-67,-41,-60,-26,-4,-30,-74,-96,-62,-92,-92,-54,-41,-31,-42,-67,-64,-19,-71,-58,-84,-78,-14,-78,-13,-83,-6,-29,-70,-66,-24,-23,-36,-72,-44,-58,-77,-76,-92,-85,-28,-47,-30,-61,-66,-94,-9,-88,-1,-42,-84,-53,-75,-16,-56,-92,-62,-43,-46,-39,-34,-5,-1,-19,-35,-37,-36,-92,-48,-71,-72,-78,-48,-4,-15,-11,-54,-87,-67,-24,-39,-91,-70,-1,-49,-72,-56,-62,-73,-90,-35,-6,-62,-99,-1,-81,-45,-16,-29,-88,-85,-96,-74,-1,-35,-50,-83,-35,-21,-77,-76,-32,-29,-94,-73,-43,-94,-95,-63,-3,-22,-58,-85,-4,-28,-13,-47,-13,-74,-65,-85,-88,-97,-41,-24,-91,-70,-59,-66,-12,-6,-68,-44,-78,-29,-44,-87,-24,-48,-14,-30,-82,-40,-83,-42,-58,-41,-54,-8,-43,-27,-44,-8,-21,-59,-2,-6,-26,-80,-75,-78,-30,-98,-59,-27,-27,-93,-30,-59,-10,-34,-52,-24,-53,-1,-93,-94,-13,-84,-35,-7,-22,-8,-66,-64,-24,-63,-16,-74,-80,-40,-17,-38,-67,-93,-28,-46,-48,-77,-6,-4,-26,-30,-68,-46,-29,-39,-31,-100,-32,-87,-76,-48,-48,-36,-71,-9,-98,-88,-8,-90,-4,-3,-12,-5,-100,-74,-43,-31,-56,-74,-74,-60,-18,-44,-26,-85,-74,-85,-96,-39,-13,-14,-25,-78,-16,-92,-28,-53,-85,-5,-72,-88,-26,-46,-48,-51,-35}
{2,74,58,23,27,98,13,8,5,34,72,2,5,1,75,5,46,1,20,57,66,13,7,20,81,32,18,59,12,15,8,24,2,13,1,74,5,9,1,79,11,48,51,89,6,2,12,5,1,67,1,89,41,48,43,60,1,50,49,86,3,4,37,27,21,26,10,6,3,9,22,2,47,14,23,4,2,1,8,87,67,75,45,20,14,1,8,3,2,2,4,1,42,3,98,68,59,13,8,15,2,35,1,67,11,2,54,1,87,9,40,17,13,80,13,12,2,2,18,5,14,5,15,96,7,17,42,61,67,7,1,74,20,33,21,2,3,1,1,72,34,7,6,89,3,59,2,6,2,93,60,56,83,2,57,28,74,10,2,89,29,4,19,27,54,53,1,3,20,25,94,64,2,16,45,10,11,12,19,1,89,41,2,19,3,2,1,4,41,10,3,1,47,40,14,2,34,1,3,4,14,2,78,80,30,3,16,8,12,11,3,48,18,5,2,3,2,94,9,1,10,23,2,10,1,1,1,98,4,1,16,15,4,57,1,69,86,21,53,1,7,9,5,27,19,15,80,93,6,3,48,8,90,3,3,48,12,4,8,12,2,79,65,48,17,7,3,25,4,88,1,2,4,13,1,5,10,1,34,6,8,12,36,5,6,10,4,93,2,6,24,1,8,60,42,1,66,34,1,23,1,84,1,15,26,2,9,92,31,2,2,1,18,31,25,43,2,12,11,2,1,9,1,94,45,29,66,2,1,11,1,6,1,4,3,3,3,65,25,13,1,5,7,50,8,9,2,15,8,73,1,3,6,4,20,9,63,44,2,6,6,38,4,6,55,1,10,10,14,32,26,5,38,31,91,17,43,89,17,6,2,1,45,23,5,14,11,86,33,1,62,4,6,75,94,15,21,3,10,7,16,16,1,29,32,8,7,7,1,1,1,1,6,2,50,2,16,4,1,7,49,16,3,1,6,43,16,8,13,49,1,13,54,90,1,66,1,2,19,26,23,7,22,2,54,1,1,67,26,83,27,35,95,69,97,4,2,1,2,57,20,1,2,55,2,76,37,7,4,1,86,31,62,3,7,80,12,27,10,1,1,4,45,1,38,2,15,31,23,2,36,78,6,8,63,88,34,5,1,14,3,2,91,11,27,68,7,73,1,48,41,4,42,70,60,1,2,2,1,1,4,18,1,2,4,2,60,13,1,7,94,1,3,15,3,22,2,69,9,26,11,10,4,52,3,27,2,10,4,21,3,7,1,32,38,2,36,8,8,1,18,3,1,80,9,1,12,39,61,6,2,3,8,4,3,14,8,38,3,14,16,1,4,3,17,54,6,21,4,46,1,51,5,61,57,2,61,3,1,69,17,9,14,28,2,32,94,10,44,11,58,34,96,8,1,3,7,66,1,2,78,33,4,87,29,19,51,21,58,37,87,4,8,2,5,14,3,22,42,1,5,76,3,3,22,4,90,30,20,6,4,28,27,2,26,1,64,6,66,5,65,1,16,10,97,4,2,37,4,1,50,29,72,3,19,86,56,3,31,10,89,16,49,6,35,23,20,28,1,9,1,98,8,4,2,11,33,75,12,8,1,11,2,17,39,44,30,4,69,16,1,5,8,59,1,1,7,2,6,40,3,8,1,9,3,53,4,6,1,20,3,17,6,35,4,52,7,1,99,1,15,1,8,48,7,6,3,1,13,1,5,3,2,11,11,4,46,6,26,86,80,19,1,2,5,88,34,29,13,1,6,4,26,2,22,53,6,1,53,27,3,1,80,48,5,50,2,5,1,2,40,62,5,10,5,7,7,2,1,4,9,24,4,1,84,3,57,1,27,10,61,17,41,99,13,24,35,6,25,34,1,12,1,64,44,23,57,4,49,14,47,5,20,2,58,79,1,10,53,2,64,38,15,2,20,8,77,4,3,38,1,3,67,15,1,4,74,54,4,8,27,11,4,3,6,13,2,4,41,10,8,12,27,35,38,20,93,6,23,64,27,19,8,14,7,3,28,37,14,55,8,1,21,6,65,6,1,3,2,8,2,14,4,2,2,2,26,5,4,38,1,10,1,78,4,4,6,9,2,6,1,18,89,8,13,4,2,49,4,37,17,1,31,1,59,30,1,29,77,99,4,13,53,1,23,41,2,40,2,55,58,42,16,8,9,2,10,1,86,1,16,5,1,3,44,31,12,1,2,11,29,7,1,47,1,2,5,7,19,4,3,2,1,64,1,22,81,3,2,39,51,1,1,2,5,7,82,4,2,29,41,23,8,9,17,4,2,2,86,5,1,28,4,30,3,7,3,2,6,86,3,76,37,20,16,34,28,5,6,45,85,86,2,4,8,3,1,1,33,1,17,55,1,1,5,1,3,2,8,55,20,3,6,23,94,1,1,5,2,3,89,9,1,39,9,20,71,8,82,2,70,29,3,37,3,8,6,2,31,86,22,6,19,3,75,21,2,54,38,1,1,1,2,1,7,7,40,6,3,1,9,7,5,77,4,6,38,27,22,8,17,11,74,1,19,1,8,5,59,47,24,27,2,3,8,1,8,69,14,8,13,3,12,3,71,53,8,20,10,7,3,8,6,90,8,36,92,37,2,34,3,9,93,3,92,2,69,9,7,1,6,46,5,21,14,25,8,3,1,25,8,50,28,18,2,89,52,6,64,58,32,82,49,12,18,5,1,6,1,3,1,3,10,31,21,28,9,4,38,4,7,12,1,70,92,1,65,79,15,36,25,21,4,6,45,45,72,7,7,1,27,3,3,22,4,1,2,4,20,3,1,8,8,1,13,8,18,1,3,16,36,38,1,1,24,1,6,3,2,6,3,62,57,24,26,63,4,1,32,52,10,48,2,29,29,2,3,19,5,3,46,31,1,5,82,1,1,5,10,3,1,4,2,8,30,8,8,10,3,81,5,2,1,2,49,1,14,8,19,33,30,1,10,2,2,7,89,98,7,5,21,6,7,29,10,6,44,14,10,98,8,20,67,2,52,1,2,3,10,10,6,2,1,32,54,2,85,2,1,6,1,4,2,73,4,40,4,51,1,19,1,1,6,19,10,16,1,3,11,10,93,5,17,20,10,8,6,27,7,24,6,51,18,57,10,2,12,2,72,25,48,50,96,22,21,71,1,11,80,63,9,1,2,7,9,21,69,2,1,9,26,13,13,7,4,13,1,65,44,5,13,3,2,1,26,2,85,39,1,96,9,1,1,4,7,1,1,3,2,69,9,45,3,1,67,70,3,20,68,8,1,7,4,1,95,1,94,6,15,1,4,2,2,2,17,37,5,3,3,1,4,5,6,77,5,9,91,4,2,3,2,1,41,46,6,2,6,11,2,1,1,10,18,1,13,3,1,68,25,11,6,10,21,7,21,9,62,5,42,26,11,10,3,31,4,4,9,2,1,10,96,9,25,4,1,29,80,5,6,3,4,5,9,1,7,6,10,3,2,22,15,3,9,4,19,12,3,15,10,1,83,33,20,4,4,4,14,39,29,40,34,1,3,7,4,9,3,1,9,6,14,12,12,16,3,1,19,2,7,14,11,1,25,1,7,25,1,63,6,12,68,1,1,73,2,10,4,3,5,13,11,5,8,22,1,2,10,23,31,1,56,11,81,18,2,1,18,1,1,7,77,3,6,76,34,12,1,3,88,3,9,8,5,21,8,52,69,5,2,71,83,1,1,77,1,1,14,21,1,35,56,1,9,2,3,5,40,3,7,26,7,57,23,7,1,14,2,33,5,1,10,1,7,48,14,1,9,28,1,15,22,11,36,7,65,39,21,22,76,3,32,5,3,1,35,1,67,1,6,71,8,18,5,8,7,49,66,3,9,4,33,19,60,59,31,1,20,1,5,24,11,9,30,3,14,2,7,43,11,7,56,1,13,25,14,99,9,24,12,2,53,18,6,3,7,1,43,14,1,3,3,84,53,4,12,40,2,2,4,1,2,1,25,21,16,12,1,1,37,7,1,9,9,2,2,6,1,3,1,7,30,62,6,1,25,1,48,64,11,3,23,70,10,1,12,17,24,59,5,2,51,56,62,10,1,21,1,37,1,71,7,34,13,24,1,26,1,1,67,15,1,3,60,35,1,39,49,6,1,2,13,1,9,1,1,21,92,47,14,1,7,16,26,22,7,3,3,59,4,1,2,20,16,2,10,3,74,1,3,3,1,4,1,3,57,10,7,4,16,23,1,49,2,8,8,9,22,14,2,46,6,2,55,18,22,49,10,46,8,40,6,42,1,2,84,49,1,9,9,1,18,29,1,62,12,42,5,11,9,1,6,1,4,1,49,1,57,43,21,33,6,1,73,38,99,81,36,35,19,1,11,17,50,21,14,76,41,2,1,79,33,24,16,3,1,10,65,34,58,70,4,6,8,32,24,1,10,2,66,34,9,16,75,1,1,2,2,23,5,3,25,70,1,4,8,77,28,1,2,80,6,3,5,32,10,31,3,92,3,10,50,5,2,1,31,90,3,2,1,11,57,11,9,1,31,8,46,84,5,2,30,38,18,13,5,1,55,35,20,39,16,5,6,3,3,57,5,2,1,87,7,6,40,16,11,95,44,3,1,30,1,39,21,51,17,7,1,1,1,95,5,13,2,1,2,46,50,8,40,40,17,96,40,1,1,5,91,6,4,11,65,1,5,41,1,10,4,5,3,51,4,1,12,1,33,1,12,69,35,5,27,15,1,22,2,93,1,1,6,1,15,3,64,53,13,18,31,20,9,8,6,55,3,2,16,3,8,11,4,91,10,1,2,3,8,9,1,34,34,9,7,9,4,3,1,22,30,3,10,28,1,73,2,3,20,2,41,18,1,2,5,5,26,9,13,3,5,6,11,3,15,1,12,1,3,2,82,43,10,5,9,48,49,5,24,1,5,17,6,89,21,3,90,42,53,2,2,3,2,4,2,2,17,1,3,9,49,6,10,2,23,75,1,4,1,12,6,5,1,1,35,15,12,62,17,6,2,3,1,32,1,2,55,3,63,28,7,32,3,57,37,3,6,33,8,7,29,8,63,62,9,37,90,8,5,13,1,9,30,11,2,25,10,66,11,59,13,11,1,8,20,6,3,2,6,11,3,4,32,12,3,30,14,4,9,40,7,96,8,1,1,3,19,59,27,25,48,93,5,17,40,15,29,51,1,2,7,89,7,1,15,1,6,4,2,2,2,37,8,1,2,6,5,1,2,1,12,53,26,3,3,8,10,5,7,1,51,4,3,5,17,26,1,1,54,18,1,5,9,22,6,10,4,18,1,41,54,60,34,9,1,8,21,78,3,4,90,23,8,11,11,2,3,2,16,58,30,44,29,28,1,1,11,25,46,1,16,97,24,1,3,22,72,1,4,39,1,86,1,2,2,16,2,1,24,43,1,1,58,52,58,12,13,3,76,2,29,11,25,11,1,5,5,37,55,95,2,3,1,1,12,14,3,33,44,1,18,10,65,10,6,13,1,3,2,10,1,10,30,12,4,2,4,2,20,2,8,1,19,79,1,1,82,56,4,3,34,1,25,1,17,50,4,60,30,7,13,7,15,3,80,12,14,1,7,7,59,59,2,77,1,1,2,13,22,82,7,11,48,10,25,47,84,1,16,5,30,1,30,30,21,55,67,46,19,18,1,20,1,94}
Returns: 1.1448728730054939E9
{78,89,77,28,75,13,6,57,58,19,28,22,37,14,32,96,36,24,83,30,32,44,18,46,5,17,33,34,34,14,10,41,35,80,84,50,12,4,76,15,17,100,38,58,15,55,48,56,66,63,27,41,76,27,39,45,22,78,18,17,96,31,99,69,91,74,71,97,48,68,66,63,26,97,5,26,20,28,37,42,27,77,22,73,90,28,37,93,1,73,74,67,86,13,87,73,42,98,83,21,94,24,92,14,93,82,58,78,7,10,90,27,3,30,50,61,28,68,43,78,13,78,48,26,67,92,65,53,13,66,18,50,7,100,2,46,51,64,17,90,12,60,22,39,11,31,48,6,17,22,80,65,62,89,37,29,21,48,58,46,65,48,38,21,56,81,3,77,81,5,16,58,29,5,6,83,17,5,46,26,38,71,1,71,13,46,28,13,24,12,73,60,32,53,27,50,6,67,11,53,45,66,63,19,96,68,28,86,89,1,23,31,17,83,54,73,43,97,68,51,58,11,72,36,80,47,57,18,29,67,28,65,57,74,14,96,19,14,70,74,59,9,93,28,58,13,72,39,21,73,49,8,36,16,60,35,86,84,90,88,43,16,44,94,66,18,79,67,10,21,17,70,28,14,20,43,83,34,81,80,11,1,31,26,63,36,9,48,52,75,96,41,73,11,60,76,79,68,51,64,58,78,91,17,82,73,47,78,15,88,44,29,94,28,80,30,10,20,3,32,37,71,7,40,37,84,39,95,95,16,62,90,22,5,4,27,40,11,58,83,73,65,22,49,28,82,36,62,26,98,5,71,13,77,83,23,59,85,86,99,70,45,57,65,47,5,43,53,26,47,67,61,94,8,61,62,19,55,2,40,65,34,53,63,52,90,16,14,5,4,44,46,13,29,3,98,10,27,78,91,63,48,24,92,88,36,8,100,27,3,65,37,43,18,80,30,34,63,49,64,46,7,22,66,92,43,16,81,84,74,91,99,94,98,50,86,8,5,47,92,91,82,33,93,16,67,58,56,79,90,24,12,43,6,47,59,81,13,13,10,37,16,36,49,32,3,3,60,52,79,66,62,86,6,5,47,90,66,69,44,9,18,56,77,61,45,36,7,23,83,95,30,44,41,20,98,28,14,54,41,85,38,40,61,96,22,58,93,47,26,96,6,27,89,30,72,2,21,3,20,18,8,49,6,34,27,10,90,66,76,7,87,89,5,50,24,15,22,70,66,4,65,46,72,30,97,25,44,73,20,80,100,41,74,76,17,56,38,64,77,88,7,28,46,40,95,16,47,82,72,55,45,92,22,96,27,42,82,58,33,66,85,67,39,78,41,46,80,73,45,92,66,38,95,5,27,2,2,65,92,25,70,34,92,60,90,57,71,69,35,62,69,76,6,14,30,96,14,78,90,82,77,34,96,33,21,38,6,57,93,17,19,45,24,24,5,9,74,75,6,87,43,80,79,33,37,15,10,29,33,43,94,51,88,67,36,59,15,45,49,50,42,99,38,12,62,57,6,47,77,44,46,50,46,89,30,65,37,39,33,92,95,92,87,94,56,42,5,95,26,100,65,64,83,83,92,100,61,17,42,66,10,57,56,21,28,48,95,88,32,77,56,28,96,11,30,61,6,36,25,54,25,89,84,24,84,50,57,33,6,13,23,51,23,73,8,32,28,71,36,12,9,21,60,64,4,2,96,55,58,37,93,60,28,2,57,13,56,77,77,65,65,63,80,10,69,10,71,72,77,23,23,85,32,63,88,5,44,82,43,76,93,50,78,40,50,37,83,30,75,52,17,83,6,19,45,28,87,66,21,87,63,45,73,49,82,22,20,53,28,18,6,91,57,27,45,46,73,38,62,58,42,12,39,34,17,99,60,52,9,66,77,21,18,99,11,27,21,93,56,38,90,76,18,24,80,30,7,2,53,55,68,66,54,6,13,76,71,63,12,88,98,27,60,73,26,44,63,40,85,25,40,91,58,4,57,76,21,8,93,77,42,31,55,33,14,83,43,59,2,96,88,41,5,56,83,79,70,33,68,37,99,22,1,29,50,31,16,67,45,5,50,77,40,7,82,96,55,7,23,22,13,31,59,65,55,68,60,20,84,33,16,64,17,66,17,72,89,3,96,6,15,94,67,69,65,63,63,28,94,93,15,27,10,87,90,46,55,33,40,61,48,75,17,44,89,72,10,85,49,29,32,81,15,32,21,26,60,77,48,33,11,72,56,4,52,37,68,4,30,41,73,2,98,28,82,93,51,59,66,36,24,67,32,80,100,44,54,100,15,7,19,72,52,79,87,36,41,98,65,28,82,2,90,69,63,93,48,55,40,56,70,95,22,25,50,31,66,28,66,15,14,4,19,13,56,67,8,56,20,49,19,31,74,63,18,17,29,31,5,65,38,25,81,42,80,87,83,73,45,90,46,93,15,47,8,5,11,44,58,76,10,72,39,27,39,51,18,68,26,5,71,36,32,11,18,10,16,75,90,49,29,98,13,94,49,4,32,77,30,38,18,42,62,19,44,39,16,46,39,66,41,57,75,70,10,21,81,50,88,18,36,21,19,66,95,92,43,15,30,62,53,83,42,7,44,1,16,30,8,73,10,63,53,2,71,93,73,22,95,19,96,65,66,17,94,60,25,71,72,3,58,47,78,37,13,37,42,10,84,58,68,24,50,29,2,57,81,20,81,68,70,97,96,8,96,94,6,34,65,43,32,11,44,47,15,13,22,35,92,53,32,57,7,100,2,81,67,81,56,42,10,51,1,26,46,38,36,38,8,79,56,96,43,61,61,5,60,49,71,99,41,24,35,41,29,82,95,46,88,53,67,35,52,77,83,76,75,26,38,75,97,15,89,67,73,38,29,14,100,96,5,92,24,96,10,36,92,26,33,44,99,69,17,97,26,66,49,32,74,24,60,20,85,89,4,35,86,4,45,69,45,25,65,51,69,32,7,35,89,83,100,94,90,62,83,13,16,80,43,13,19,94,66,41,100,15,16,44,20,27,30,41,76,74,72,11,34,33,10,81,61,41,2,51,95,55,76,39,45,70,12,9,12,64,47,53,4,26,60,48,86,48,11,74,24,4,25,60,58,100,75,66,28,98,23,62,8,26,36,14,56,56,17,48,51,6,61,37,43,56,68,86,93,62,18,12,78,92,35,11,46,26,84,70,53,55,16,54,16,15,41,100,36,26,82,82,23,42,10,83,15,51,65,71,98,31,11,48,6,44,82,12,72,17,32,11,23,33,10,36,64,39,48,38,53,61,61,9,24,68,33,57,73,98,94,18,81,15,36,96,13,31,88,67,14,25,30,26,58,24,49,38,43,44,59,41,18,88,24,5,1,13,24,95,40,84,64,88,45,39,96,93,21,52,28,92,7,24,42,79,49,55,48,68,100,75,5,100,85,54,81,94,23,16,80,22,62,75,21,58,42,70,57,21,66,28,58,93,27,95,41,90,14,85,88,97,78,77,68,26,58,29,22,37,74,29,72,91,77,27,53,17,23,34,74,58,31,9,68,63,96,44,93,90,83,25,17,65,80,16,12,9,35,28,82,46,73,48,37,56,12,17,6,89,12,49,39,53,97,15,62,18,14,45,64,3,12,79,92,15,51,26,53,4,76,66,39,25,13,68,2,63,4,97,39,79,6,84,61,23,23,99,68,42,12,6,53,51,9,21,41,55,98,83,45,47,90,33,24,33,36,56,28,67,52,80,93,42,2,46,70,78,48,37,59,68,40,58,50,84,1,80,45,40,19,2,96,86,52,93,68,78,24,62,80,77,82,48,91,84,45,89,36,72,18,38,16,80,67,76,18,36,16,69,49,77,76,60,6,48,45,12,70,27,19,46,23,22,48,77,63,75,6,50,29,76,45,86,1,38,18,17,5,6,91,24,3,65,71,44,32,23,25,6,85,49,64,28,42,47,55,5,91,4,77,9,91,76,75,2,69,37,23,86,70,63,7,73,18,50,70,24,75,75,9,21,45,78,76,73,88,29,2,2,88,46,1,75,37,1,2,29,89,75,5,32,47,76,51,36,54,8,31,50,98,83,95,30,1,7,35,90,48,18,58,88,89,56,21,94,85,67,89,53,9,64,86,59,25,71,97,37,33,55,73,74,62,97,2,62,86,98,7,65,40,10,57,59,83,96,53,89,7,57,25,33,25,53,12,71,57,11,19,58,69,83,61,1,91,30,32,50,15,23,88,13,35,36,18,45,56,74,88,13,1,17,99,71,94,81,17,37,92,1,21,100,37,14,18,57,62,68,66,10,95,33,68,55,99,84,96,92,64,24,16,41,1,81,10,95,62,54,100,86,34,20,1,82,53,88,64,93,18,5,74,38,72,42,31,28,69,36,54,73,36,93,79,76,94,19,89,78,16,51,31,16,23,73,33,59,87,67,79,100,7,7,61,41,94,47,69,6,42,43,54,12,93,68,40,89,81,14,54,71,65,44,86,42,45,77,76,68,100,74,88,63,49,99,29,81,8,63,29,60,100,13,86,52,1,22,90,71,47,61,90,70,47,61,1,63,65,63,11,99,4,48,77,32,20,74,72,59,75,94,79,37,54,30,11,25,39,81,68,28,64,87,50,2,55,52,50,47,81,5,97,84,47,29,28,17,72,34,86,9,12,18,6,60,14,1,34,71,3,25,16,85,22,7,86,41,96,1,59,54,14,80,60,22,27,67,82,17,67,48,13,27,58,3,29,59,85,18,1,60,26,8,47,21,73,93,98,45,69,48,32,75,8,47,97,23,25,54,29,60,45,41,8,23,70,49,49,27,87,55,21,56,28,2,53,35,15,75,16,16,66,42,6,98,70,50,16,76,67,85,16,82,12,5,27,93,37,50,14,95,100,85,14,97,88,69,25,23,90,67,2,97,8,20,37,99,23,52,90,41,13,41,90,21,51,37,43,24,25,87,14,40,35,25,81,99,46,59,3,95,10,13,76,75,97,10,5,62,90,88,46,77,61,95,56,42,66,99,89,17,42,40,99,12,32,99,1,96,22,30,54,9,12,65,74,27,95,55,42,17,3,46,74,78,91,51,68,84,45,6,22,40,30,29,24,88,73,37,54,86,69,94,72,28,30,79,22,81,30,69,92,7,36,76,57,47,21,97,38,31,47,37,14,3,84,82,19,50,37,88,70,25,41,89,100,8,1,41,42,3,25,14,93,81,62,16,35,89,95,93,77,14,17,73,66,56,94,19,78,92,62,68,97,23,100,72,81,8,89,18,76,12,53,99,78,9,36,48,90,32,92,78,58,29,25,58,54,21,13,71,83,46,46,23,100,87,28,47,35,25,39,28,46,19,18,11,13,25,2,82,52,71,67,2,98,88,34,85,87,38,45,20,46,38,65,27,82,68,88,3,60,52,50,43,26,87,57,69,49,90,29,59,34,38,3,90,78,90,83,11,6,43,69,63,78,67,19,96,34,49,88,91,53,70,80,11,48,23,73,94,3,90,66,82,95,94,9,18,75,20,5,89,91,67,76,1,82,5,2,34,2,54,83,18,61,49,72,7,30,92,89,20,69,46,27,72,20,54,20,28,28,71,64,34,11,65,37,55,73,34,98,97,88,72,100,70,61,90,4,8,29,49,23,18,44,59,94,46,33,26,39,59,23,90,22}
{8,81,62,99,6,20,91,99,92,71,22,84,53,53,83,69,89,20,11,2,44,89,75,58,27,30,84,97,7,8,57,27,31,61,36,98,60,18,54,57,90,54,33,73,73,91,93,71,50,97,39,84,26,4,78,71,73,36,61,40,7,28,75,24,21,63,12,3,37,80,41,45,72,32,48,97,22,29,68,58,65,4,54,15,57,43,5,30,28,96,71,36,43,91,96,99,51,99,91,83,89,53,44,60,96,98,60,98,9,98,77,70,56,86,75,11,29,37,88,85,12,76,50,15,81,53,70,41,42,43,100,100,35,68,78,40,90,56,69,85,97,7,70,17,92,70,83,59,81,56,22,74,15,6,29,30,27,30,18,30,66,24,70,26,29,5,64,11,68,71,59,100,82,66,61,78,13,64,8,50,80,87,53,78,39,32,26,42,15,38,26,54,94,39,35,84,50,85,29,56,79,44,12,23,84,37,41,32,80,89,43,33,21,44,98,5,44,6,69,28,8,55,72,45,49,95,56,18,17,95,39,10,69,6,36,92,72,10,10,8,51,31,82,94,55,94,86,98,36,93,35,22,39,7,70,45,94,75,78,82,26,25,51,82,77,37,23,51,6,100,40,58,77,18,86,59,43,19,22,69,66,5,27,75,66,82,46,95,50,29,97,59,21,42,93,100,51,21,33,28,12,77,62,65,28,25,68,30,31,94,80,55,67,61,62,39,55,67,35,49,24,89,71,5,78,80,65,82,95,12,97,27,77,13,69,64,41,1,6,32,54,93,22,1,4,73,94,78,93,12,3,14,78,11,36,12,21,62,73,28,33,29,52,57,67,55,60,98,98,25,85,98,62,22,34,71,58,53,59,6,17,14,93,11,13,38,64,5,65,43,79,47,4,86,99,77,79,31,94,92,22,78,58,74,76,77,99,76,31,50,42,48,73,36,3,70,78,94,37,55,80,76,81,93,79,32,84,74,9,69,78,55,1,53,34,43,59,19,82,36,76,6,75,24,4,35,76,36,13,96,45,25,76,10,18,47,6,25,2,55,46,52,78,8,38,81,94,88,27,88,51,61,50,46,53,62,55,37,32,17,7,99,18,36,28,7,97,1,76,31,35,76,99,89,51,34,29,80,25,65,69,30,19,59,2,80,82,33,7,12,9,41,82,59,68,55,3,86,51,87,17,41,6,88,37,19,7,55,56,41,87,12,2,52,6,70,70,45,47,11,37,95,36,51,13,24,73,22,38,91,13,16,12,24,60,12,64,32,97,35,14,24,1,75,49,10,35,22,17,59,6,62,99,21,35,13,55,51,76,83,20,86,22,56,43,96,74,36,14,23,19,5,64,91,60,68,43,6,44,17,84,7,10,53,37,89,40,61,15,44,7,60,6,73,54,17,56,15,85,40,72,65,55,17,1,57,72,47,50,27,35,34,72,54,50,88,16,44,46,57,28,23,38,46,61,37,75,83,58,8,52,42,23,7,31,16,58,70,16,20,26,99,30,67,49,74,24,70,79,99,82,83,79,13,57,20,24,13,15,47,32,12,35,74,17,5,3,48,28,9,39,72,90,66,73,81,74,12,30,85,36,63,9,52,32,60,70,89,99,83,82,90,83,51,5,82,72,66,68,80,13,21,63,25,32,100,40,94,62,69,90,16,66,11,42,52,98,70,25,56,65,92,82,70,2,31,70,46,89,28,95,59,1,67,25,11,35,29,80,84,57,11,94,77,57,67,97,4,15,79,66,13,24,90,76,45,64,61,39,27,6,56,91,81,63,3,42,85,31,96,88,27,42,3,64,75,60,19,66,57,67,40,5,57,57,8,61,19,41,2,2,48,59,70,82,99,77,82,99,46,76,40,88,48,66,68,57,95,75,56,12,98,15,39,25,32,21,44,71,13,49,36,35,86,88,92,26,44,80,84,61,1,55,100,57,9,2,74,77,11,58,29,95,93,64,38,8,98,60,86,10,56,14,68,33,98,51,25,45,84,39,69,10,37,7,50,62,15,29,41,26,25,59,42,18,52,45,38,82,22,47,57,100,12,67,43,70,67,76,51,89,92,52,53,14,29,80,51,27,47,33,76,69,23,74,62,97,14,29,72,97,96,48,79,64,19,60,94,77,80,27,56,20,54,74,13,10,71,6,36,26,21,42,32,31,65,35,55,66,68,65,18,31,77,12,72,32,64,8,16,51,24,2,81,19,93,62,17,18,28,3,16,99,69,78,95,15,94,13,55,91,87,38,45,8,60,85,69,65,78,62,62,89,8,58,94,28,24,54,71,83,18,7,8,93,47,41,91,48,75,59,43,25,91,62,71,58,62,53,62,11,51,96,64,41,14,49,96,2,23,64,6,35,17,18,97,28,70,13,20,51,52,53,67,76,42,85,61,83,47,2,72,86,87,31,81,96,71,7,41,2,38,9,75,77,84,83,11,90,69,86,17,32,36,97,75,8,53,30,37,66,64,15,39,75,64,74,72,87,51,30,86,100,9,60,80,2,25,97,32,48,73,22,37,6,15,18,81,61,30,57,25,93,15,78,42,64,39,84,89,23,94,7,72,16,22,11,33,27,62,26,26,91,17,31,63,42,93,5,48,100,35,46,12,6,48,28,48,92,60,74,3,48,56,64,17,80,87,83,25,60,47,66,98,1,77,79,41,28,49,63,7,90,74,15,47,74,74,15,72,28,18,19,51,21,83,35,45,14,37,47,36,86,87,17,75,40,25,13,39,71,20,3,87,88,15,50,49,1,8,88,80,80,12,4,4,24,10,58,33,44,56,72,61,81,98,86,13,67,13,23,33,13,18,46,85,72,21,71,48,47,40,18,99,22,50,93,69,95,83,96,93,35,32,2,61,52,88,14,25,82,82,20,15,76,62,58,48,86,22,20,58,79,22,30,68,44,65,19,7,83,10,82,62,51,30,50,44,98,61,28,41,89,93,38,26,32,41,8,89,11,96,66,58,50,90,74,4,38,61,5,81,33,31,95,36,42,97,31,68,99,43,21,89,91,89,73,22,98,98,56,22,66,89,52,16,97,2,10,95,96,85,4,31,90,20,49,17,53,89,3,69,29,44,52,97,3,70,30,49,58,42,55,28,30,54,48,23,68,11,28,21,43,24,69,66,33,7,20,83,56,18,44,12,99,30,74,31,97,10,8,59,2,85,88,40,87,10,41,65,72,51,82,94,89,19,46,90,34,26,89,99,16,34,55,73,12,34,86,45,66,84,6,44,100,3,28,54,2,36,49,7,56,58,61,33,7,18,94,45,35,90,17,31,73,25,80,39,57,81,12,68,16,27,48,94,95,20,20,71,19,85,54,16,6,13,76,51,41,41,21,89,59,87,35,3,53,42,54,38,23,47,4,5,83,19,49,79,23,20,89,57,78,20,67,95,72,5,72,80,30,77,62,87,41,7,72,69,3,53,84,93,35,36,63,73,75,90,84,65,58,86,77,30,73,82,11,53,18,28,75,11,65,8,65,35,87,88,94,17,51,16,41,96,16,84,2,54,36,55,3,43,82,54,97,76,13,75,38,94,2,96,50,62,70,47,9,8,53,90,83,88,92,87,89,17,80,92,14,78,43,73,53,89,77,7,19,81,31,83,62,35,70,85,96,77,100,14,52,32,53,95,28,29,97,39,33,28,42,80,81,31,14,24,43,51,48,82,81,98,97,11,22,43,89,1,57,40,75,32,96,80,93,29,45,72,51,21,92,59,56,64,95,80,58,25,16,58,66,6,19,35,73,43,67,2,94,73,65,19,32,43,79,92,26,9,30,28,9,29,1,72,81,64,19,38,37,57,60,51,36,56,26,63,81,37,72,7,63,68,4,38,5,57,95,28,35,21,22,14,85,9,32,70,66,30,55,40,57,25,35,47,97,50,40,59,3,38,71,75,22,37,99,69,29,21,36,33,41,14,7,6,62,88,46,22,69,4,53,47,87,43,34,21,34,51,47,65,5,13,21,87,67,77,31,51,66,13,62,38,33,28,30,9,23,18,68,14,87,90,38,87,99,35,55,16,30,8,17,77,81,21,86,57,15,30,79,33,65,68,90,82,28,37,52,63,16,59,81,33,27,67,58,98,35,78,15,78,30,18,64,57,29,98,53,20,83,92,83,44,35,15,17,57,50,27,12,63,40,80,57,65,91,14,66,23,99,51,76,13,39,6,30,71,48,75,66,45,87,64,33,87,51,54,59,81,39,94,28,12,48,80,3,26,89,67,20,6,71,23,1,76,40,42,89,53,58,12,87,81,67,14,87,57,87,50,22,97,82,65,17,94,92,47,35,13,79,100,12,27,53,58,36,76,41,75,86,89,54,66,85,22,38,69,9,84,61,52,93,90,72,50,41,76,75,31,78,86,30,24,20,60,30,51,14,13,40,91,94,33,71,79,49,92,68,36,35,5,26,38,60,39,90,11,78,34,41,45,90,68,8,24,84,53,67,82,88,38,24,6,96,43,89,94,19,69,79,39,60,56,61,87,52,87,8,67,21,99,85,94,13,72,93,9,10,33,20,5,82,33,87,70,96,43,49,91,56,18,67,92,57,88,11,76,10,35,28,10,92,35,84,24,46,60,15,94,97,39,84,46,77,28,74,7,53,13,8,51,20,63,60,89,15,17,36,96,80,72,31,59,99,41,63,2,41,14,18,5,89,78,53,48,12,28,53,74,34,100,6,50,90,74,93,18,3,86,88,99,29,13,68,33,96,71,77,14,34,44,49,5,53,6,15,18,18,78,6,49,8,55,64,68,95,82,2,8,62,66,19,72,90,75,60,47,87,89,22,94,90,17,72,54,83,35,68,19,72,42,52,41,45,97,10,31,79,26,60,94,18,68,10,28,29,75,33,37,44,40,71,75,78,6,1,87,23,64,62,70,77,20,89,25,54,99,27,73,86,9,20,11,24,92,21,28,37,51,76,8,54,54,31,66,71,70,73,17,24,34,64,84,69,74,66,7,41,2,21,28,72,97,95,8,22,92,75,25,52,8,21,10,88,67,33,53,68,59,26,65,19,11,52,25,46,95,75,2,96,52,23,41,45,32,54,93,37,73,56,40,97,90,51,32,3,76,39,27,47,41,22,18,26,95,28,89,25,81,74,56,94,63,10,11,21,69,58,1,88,8,46,48,53,80,33,29,56,10,78,33,38,54,77,6,77,43,62,15,22,53,29,72,37,5,53,50,16,50,97,83,30,83,71,6,47,18,74,72,55,31,8,50,19,86,29,7,66,35,59,15,56,82,83,76,7,14,92,77,55,85,79,26,18,65,85,98,74,49,4,14,27,60,96,91,47,77,27,76,33,50,47,33,84,56,54,5,51,33,28,31,10,76,22,94,100,96,72,99,39,97,83,99,19,26,37,27,100,49,42,4,59,71,98,29,52,60,51,11,93,72,53,7,62,52,83,97,26,10,77,80,25,59,32,77,13,44,80,46,56,56,6,91,1,23,67,85,76,85,22,6,62,98,93,24,85,38,10,81,94,82,56,18,85,32,90,57,77,10,95,20,91,66,75,59,37,20,60,38,50,65,20,14,57,46,80,12,62,45,16,45,11,92,60,51,62,52,99,79,33,32,54,16,4,61,19,72,51,56,21,42,77,36,100,64,25,57,55,28,21,85,82,87}
{-84,-20,-35,-41,-29,-74,-8,-11,-57,-74,-44,-15,-65,-69,-35,-1,-29,-3,-55,-44,-21,-18,-40,-98,-73,-38,-86,-93,-93,-11,-78,-67,-36,-66,-53,-74,-62,-63,-8,-78,-96,-36,-1,-68,-90,-12,-82,-97,-90,-50,-66,-98,-89,-29,-81,-8,-99,-56,-15,-58,-4,-87,-20,-3,-46,-92,-67,-79,-27,-21,-85,-4,-16,-51,-70,-74,-41,-88,-51,-96,-37,-51,-23,-94,-38,-15,-1,-94,-57,-44,-37,-92,-81,-72,-43,-86,-11,-95,-85,-73,-4,-28,-6,-90,-75,-14,-92,-76,-48,-75,-47,-52,-36,-15,-54,-17,-4,-11,-7,-57,-31,-42,-92,-96,-97,-41,-2,-20,-39,-95,-82,-31,-25,-21,-24,-10,-14,-27,-12,-93,-62,-55,-5,-92,-15,-5,-58,-33,-60,-27,-57,-1,-53,-59,-88,-43,-23,-24,-98,-96,-63,-57,-21,-83,-47,-86,-12,-36,-86,-76,-15,-67,-26,-71,-29,-90,-97,-74,-53,-91,-93,-55,-3,-77,-30,-61,-52,-41,-24,-72,-27,-77,-82,-35,-12,-34,-39,-79,-18,-85,-95,-34,-86,-47,-77,-5,-53,-79,-47,-20,-37,-61,-11,-6,-60,-39,-6,-83,-1,-26,-64,-47,-61,-22,-22,-40,-90,-7,-7,-80,-48,-95,-69,-83,-99,-81,-65,-79,-35,-78,-52,-66,-81,-89,-75,-67,-1,-31,-45,-65,-38,-70,-46,-39,-43,-21,-32,-36,-19,-18,-30,-56,-74,-21,-61,-64,-19,-51,-12,-84,-61,-42,-24,-69,-48,-83,-54,-87,-80,-1,-39,-18,-79,-24,-74,-3,-16,-69,-94,-55,-18,-65,-36,-64,-65,-61,-63,-52,-46,-19,-76,-34,-94,-52,-26,-49,-30,-16,-3,-87,-70,-33,-45,-9,-97,-82,-38,-32,-74,-55,-65,-43,-20,-57,-86,-71,-44,-2,-56,-61,-71,-8,-57,-45,-28,-9,-26,-46,-19,-62,-72,-92,-40,-11,-38,-75,-95,-70,-27,-40,-38,-78,-41,-30,-48,-51,-99,-3,-71,-95,-83,-61,-60,-100,-18,-36,-83,-73,-71,-1,-95,-57,-35,-93,-44,-3,-100,-61,-7,-59,-67,-84,-53,-92,-48,-23,-20,-26,-94,-12,-50,-52,-40,-34,-68,-64,-36,-58,-16,-10,-94,-66,-46,-75,-45,-30,-43,-72,-23,-79,-16,-5,-80,-98,-20,-75,-58,-22,-77,-81,-55,-77,-61,-74,-3,-47,-70,-11,-77,-49,-57,-76,-39,-29,-4,-41,-17,-4,-49,-15,-50,-100,-7,-14,-73,-65,-43,-13,-26,-68,-37,-51,-26,-28,-16,-93,-69,-54,-27,-62,-92,-9,-77,-24,-14,-74,-19,-62,-30,-7,-95,-21,-28,-66,-34,-28,-50,-6,-6,-28,-55,-10,-76,-54,-30,-87,-43,-50,-30,-16,-64,-61,-44,-6,-73,-27,-68,-63,-44,-85,-60,-84,-32,-58,-93,-24,-23,-45,-46,-94,-73,-12,-90,-100,-30,-62,-10,-43,-91,-92,-70,-58,-86,-93,-59,-4,-83,-38,-92,-42,-55,-81,-35,-19,-41,-83,-80,-92,-93,-51,-92,-94,-14,-100,-28,-9,-25,-96,-100,-50,-66,-99,-84,-40,-12,-38,-94,-14,-24,-71,-51,-71,-90,-53,-16,-43,-89,-81,-57,-46,-1,-91,-1,-33,-58,-56,-63,-73,-29,-48,-14,-49,-83,-24,-24,-57,-32,-50,-44,-73,-53,-99,-32,-78,-19,-64,-2,-66,-87,-23,-80,-33,-18,-52,-78,-87,-66,-98,-45,-64,-35,-22,-67,-13,-52,-76,-74,-64,-97,-56,-61,-51,-62,-91,-23,-49,-33,-4,-60,-42,-94,-53,-82,-6,-26,-81,-60,-99,-34,-35,-75,-77,-62,-8,-18,-20,-83,-13,-41,-29,-27,-82,-6,-72,-82,-62,-16,-24,-60,-65,-82,-47,-30,-99,-76,-90,-42,-25,-74,-15,-17,-33,-17,-58,-82,-80,-38,-48,-18,-68,-79,-6,-45,-10,-20,-75,-29,-56,-32,-35,-8,-52,-64,-94,-25,-10,-93,-67,-61,-91,-28,-59,-82,-14,-41,-40,-81,-8,-100,-3,-92,-96,-37,-35,-39,-47,-28,-87,-66,-50,-79,-60,-32,-16,-13,-66,-87,-16,-41,-90,-35,-40,-19,-12,-82,-66,-83,-15,-30,-13,-1,-58,-10,-48,-26,-65,-48,-32,-61,-28,-86,-80,-22,-6,-22,-12,-78,-72,-96,-13,-85,-20,-66,-95,-73,-39,-57,-90,-40,-29,-95,-29,-4,-32,-56,-69,-16,-10,-69,-63,-3,-37,-33,-2,-91,-11,-26,-80,-2,-36,-23,-78,-57,-90,-32,-88,-4,-21,-64,-65,-82,-1,-63,-5,-6,-81,-27,-23,-63,-18,-96,-43,-71,-31,-37,-67,-7,-83,-84,-57,-7,-5,-78,-99,-94,-90,-32,-17,-2,-26,-19,-41,-93,-61,-95,-22,-29,-24,-87,-42,-46,-74,-77,-63,-8,-76,-74,-29,-33,-47,-100,-5,-97,-82,-77,-42,-89,-82,-61,-40,-47,-97,-84,-58,-36,-27,-10,-40,-41,-90,-51,-95,-45,-27,-3,-2,-12,-96,-60,-73,-54,-35,-30,-72,-89,-87,-37,-34,-81,-35,-6,-86,-41,-69,-57,-83,-40,-96,-82,-65,-98,-86,-92,-94,-35,-34,-14,-50,-81,-98,-62,-68,-75,-86,-1,-74,-70,-42,-94,-72,-61,-92,-71,-97,-74,-9,-6,-85,-22,-58,-75,-49,-11,-100,-74,-10,-7,-42,-38,-64,-94,-26,-36,-51,-56,-80,-52,-4,-74,-78,-51,-66,-7,-52,-21,-90,-10,-83,-17,-20,-19,-47,-94,-9,-42,-17,-6,-25,-14,-83,-48,-45,-2,-39,-91,-30,-55,-96,-100,-62,-93,-71,-48,-90,-40,-88,-59,-47,-97,-45,-68,-53,-59,-5,-66,-70,-17,-69,-28,-8,-42,-3,-50,-34,-60,-15,-76,-11,-14,-90,-29,-16,-2,-5,-50,-79,-11,-80,-22,-27,-6,-53,-35,-98,-45,-80,-40,-38,-75,-9,-16,-8,-9,-8,-92,-45,-70,-79,-96,-58,-55,-4,-13,-84,-18,-48,-75,-31,-8,-80,-3,-11,-91,-12,-10,-85,-77,-41,-20,-94,-32,-2,-13,-82,-82,-43,-98,-13,-59,-56,-48,-69,-13,-94,-51,-42,-80,-69,-33,-47,-90,-100,-97,-58,-77,-37,-60,-57,-87,-21,-19,-16,-75,-53,-89,-43,-25,-90,-31,-73,-79,-48,-86,-80,-83,-90,-37,-56,-52,-71,-99,-93,-46,-23,-81,-3,-72,-44,-98,-80,-3,-92,-35,-24,-80,-51,-21,-30,-73,-93,-77,-59,-28,-41,-7,-100,-1,-78,-50,-40,-59,-48,-5,-84,-77,-42,-3,-63,-2,-68,-85,-90,-44,-53,-57,-47,-57,-42,-1,-10,-22,-8,-55,-34,-1,-27,-67,-60,-46,-100,-72,-40,-37,-69,-60,-95,-6,-21,-10,-81,-75,-1,-58,-58,-32,-51,-94,-24,-16,-24,-69,-2,-56,-82,-50,-37,-66,-65,-20,-95,-67,-93,-27,-41,-17,-94,-97,-100,-14,-86,-94,-90,-68,-58,-76,-86,-29,-24,-29,-21,-59,-72,-68,-24,-90,-44,-80,-64,-59,-52,-77,-50,-35,-40,-51,-1,-29,-100,-41,-27,-95,-33,-65,-99,-35,-72,-100,-20,-9,-72,-98,-76,-1,-83,-27,-63,-43,-42,-72,-70,-15,-30,-100,-9,-20,-55,-80,-8,-33,-45,-3,-52,-40,-67,-49,-11,-50,-2,-94,-93,-42,-49,-91,-72,-12,-48,-69,-83,-32,-83,-81,-89,-9,-15,-9,-48,-95,-86,-69,-62,-75,-53,-100,-3,-48,-68,-12,-61,-62,-82,-48,-96,-10,-80,-87,-29,-83,-49,-41,-38,-96,-13,-20,-95,-38,-47,-27,-17,-64,-49,-32,-85,-66,-21,-100,-100,-59,-75,-4,-77,-87,-79,-31,-65,-49,-10,-4,-29,-22,-83,-76,-28,-40,-18,-22,-71,-15,-71,-39,-46,-11,-84,-10,-52,-90,-55,-93,-15,-11,-99,-36,-73,-18,-91,-67,-3,-13,-69,-78,-56,-71,-6,-68,-69,-7,-43,-23,-15,-96,-39,-83,-69,-80,-33,-61,-50,-33,-30,-82,-57,-25,-61,-75,-64,-62,-57,-35,-18,-62,-66,-67,-70,-50,-6,-85,-91,-73,-51,-76,-67,-29,-39,-59,-85,-78,-52,-76,-63,-38,-73,-6,-86,-14,-55,-67,-99,-100,-100,-94,-93,-81,-9,-83,-3,-21,-1,-98,-65,-70,-91,-84,-55,-27,-46,-73,-37,-1,-38,-24,-73,-87,-73,-84,-44,-16,-38,-87,-33,-77,-94,-35,-80,-15,-48,-41,-75,-86,-61,-41,-49,-33,-2,-61,-79,-69,-3,-99,-12,-87,-87,-15,-2,-7,-16,-83,-23,-54,-35,-10,-11,-13,-52,-60,-12,-39,-46,-43,-46,-3,-52,-87,-62,-67,-34,-17,-8,-24,-24,-61,-75,-94,-75,-92,-63,-97,-44,-13,-43,-16,-86,-6,-83,-37,-44,-75,-49,-44,-69,-80,-79,-29,-13,-65,-80,-48,-3,-66,-9,-98,-19,-58,-25,-99,-65,-48,-46,-89,-39,-50,-70,-69,-1,-70,-44,-52,-36,-25,-45,-54,-8,-57,-42,-90,-48,-82,-66,-41,-64,-66,-96,-12,-53,-92,-68,-33,-36,-69,-25,-24,-33,-76,-48,-88,-54,-63,-97,-21,-57,-37,-41,-64,-22,-56,-24,-68,-50,-87,-12,-47,-10,-77,-11,-98,-17,-35,-32,-24,-43,-98,-91,-60,-44,-49,-61,-19,-90,-86,-47,-78,-91,-2,-79,-8,-7,-6,-83,-28,-50,-50,-16,-76,-99,-42,-19,-27,-38,-20,-87,-81,-97,-28,-10,-100,-32,-3,-21,-59,-65,-82,-5,-66,-87,-72,-47,-46,-87,-92,-14,-54,-86,-69,-80,-38,-1,-6,-43,-55,-2,-51,-5,-96,-68,-19,-8,-52,-86,-62,-76,-64,-9,-54,-39,-97,-7,-87,-47,-82,-39,-82,-48,-20,-100,-6,-31,-73,-77,-43,-9,-97,-11,-42,-40,-67,-22,-37,-73,-5,-35,-85,-46,-89,-14,-13,-29,-40,-87,-26,-85,-99,-32,-84,-68,-82,-63,-37,-74,-87,-78,-22,-24,-29,-59,-81,-29,-57,-73,-22,-95,-38,-77,-40,-87,-40,-45,-55,-61,-35,-31,-85,-88,-30,-94,-21,-57,-99,-19,-42,-64,-32,-68,-88,-81,-13,-36,-20,-27,-64,-66,-83,-21,-47,-44,-93,-76,-60,-78,-54,-40,-26,-22,-72,-50,-43,-15,-36,-70,-71,-57,-7,-100,-95,-76,-75,-82,-40,-56,-84,-56,-31,-84,-6,-34,-5,-84,-32,-19,-38,-64,-88,-28,-24,-68,-40,-96,-59,-53,-23,-26,-11,-12,-55,-56,-26,-71,-40,-92,-14,-10,-13,-92,-68,-78,-6,-68,-39,-70,-9,-93,-44,-15,-84,-10,-95,-63,-33,-74,-91,-90,-80,-29,-37,-80,-11,-25,-79,-61,-26,-12,-41,-47,-25,-62,-5,-23,-83,-36,-37,-36,-12,-100,-84,-17,-92,-83,-70,-84,-64,-74,-8,-93,-88,-15,-89,-71,-74,-91,-84,-19,-41,-86,-62,-70,-2,-79,-72,-3,-23,-90,-77,-37,-56,-58,-87,-67,-86,-68,-86,-97,-14,-71,-26,-10,-13,-22,-75,-79,-32,-34,-45,-34,-76,-24,-97,-74,-8,-95,-2,-12,-8,-3,-87,-30,-8,-11,-13,-37,-80,-51,-40,-10,-61,-89,-23,-91,-38,-86,-34,-79,-88,-46,-62,-84,-34,-54,-21,-92,-22,-80,-52,-88,-59,-77,-19,-85,-26,-64,-87,-63,-82,-48,-85,-26,-29,-96,-78,-28,-17,-58,-36,-48,-24,-85,-73,-36,-93,-1,-64,-74,-4,-30,-65,-71,-6,-75,-61,-24,-31,-44,-54,-53,-63,-90,-34,-45,-61,-22,-38,-26,-50,-54,-92,-13,-76,-45,-29,-75,-92,-85,-34,-95,-85,-93,-38,-81,-73,-82,-62,-74,-4,-89,-69,-27,-55,-45,-2,-72,-27,-97,-4,-99,-93,-22,-4,-22,-47,-57,-88,-49,-39,-51,-67,-76,-77,-26,-32,-28,-2,-86,-93,-53,-100,-55,-100,-82,-77,-47,-65,-61,-43,-24,-52,-83,-81,-40,-31,-44,-34,-12,-38,-48,-49,-17,-3,-45,-14,-72,-94,-39,-88,-83,-21,-84,-100,-52,-66,-74,-79,-69,-49,-79,-26,-67,-66,-87,-86,-35,-78,-85,-90,-8,-43,-1,-1,-56,-80,-9,-13,-71,-14,-18,-48,-15,-23,-22,-74,-11,-92,-38,-18,-7,-39,-100,-66,-69,-8,-56,-95,-27,-21,-43,-2,-26,-12,-4,-27,-93,-64,-60,-65,-82,-98,-26,-15,-26,-7,-21,-79,-62,-96,-17,-50,-97,-20,-18,-32,-95,-5,-68,-14,-2,-45,-73,-1,-25,-96,-68,-18,-32,-98,-3,-47,-43,-75,-86,-50,-42,-76,-14,-77,-51,-94,-34,-61,-51,-32,-86,-94,-2,-68,-51,-96,-7,-12,-87,-94,-71,-13,-94,-62,-11,-71,-9,-61,-49,-20,-19,-88,-86,-4,-22,-82,-73,-39,-71,-8,-26,-66,-87,-76,-25,-27,-28,-97,-69,-59,-75,-18,-80,-87,-76,-6,-75,-23,-93,-96,-59,-9,-95,-99,-100,-42,-92,-27,-34,-73,-87,-96,-6,-66,-19,-30,-1,-98,-87,-53,-41,-11,-55,-25,-94,-27,-22,-36,-81,-66,-18,-17,-20,-97,-14,-85,-16,-49,-53,-60,-37,-18,-53,-73,-25,-75,-17,-37,-5,-73,-73,-84,-74,-25,-39,-91,-79,-18,-7,-91,-20,-36,-22,-80,-28,-17,-19,-94,-27,-49,-3,-65,-93,-77,-16,-52,-98,-90,-87,-37,-22,-36,-5,-26,-8,-60,-36,-41,-51,-41,-48,-100,-75,-64,-73,-67,-7,-13,-22,-62,-2,-9,-15,-2,-58,-74,-87,-65,-91,-52,-75,-73,-38,-2,-25,-81,-99,-69,-71,-15,-19,-27,-1,-35,-91,-78,-44,-54,-8,-87,-59,-78,-18,-46,-78,-83,-91,-10,-51,-26,-7,-57,-60,-73,-57,-80,-62,-99,-58,-17,-32,-44,-66,-18,-91,-7,-83,-27,-20,-95,-47,-80,-77,-77,-15,-59,-48,-61,-44,-47,-8,-38,-1,-93,-65,-46,-42,-68,-31,-80,-26,-22,-43,-58,-40,-72,-57,-64,-55,-29,-25,-37,-53,-72,-35,-57,-82,-80,-40,-52,-70,-16,-32,-10,-19,-1,-2,-12,-85,-61,-45,-5,-67,-28,-59,-22,-82,-78,-32,-37,-61,-46,-73,-60,-52,-11,-39,-20,-65,-60,-32,-81,-61,-52,-63,-7,-62,-65,-33,-51,-97,-97,-65,-86,-90}
{-94,-92,-87,-75,-5,-38,-95,-74,-83,-50,-38,-71,-65,-96,-37,-94,-72,-3,-48,-7,-51,-14,-21,-78,-18,-67,-79,-26,-20,-65,-52,-91,-13,-53,-77,-15,-74,-17,-29,-92,-14,-14,-29,-65,-100,-97,-41,-52,-40,-90,-28,-84,-56,-15,-73,-71,-85,-69,-49,-100,-69,-27,-47,-29,-55,-27,-95,-10,-52,-76,-66,-60,-29,-25,-86,-75,-83,-21,-44,-46,-97,-77,-85,-65,-65,-70,-29,-43,-42,-7,-74,-93,-91,-63,-59,-15,-37,-69,-53,-5,-75,-63,-2,-30,-9,-97,-99,-8,-4,-69,-77,-23,-66,-96,-19,-54,-62,-48,-55,-59,-99,-11,-86,-19,-88,-53,-79,-39,-14,-28,-33,-30,-91,-71,-63,-28,-26,-78,-56,-38,-38,-19,-58,-100,-63,-71,-36,-49,-80,-94,-84,-35,-21,-72,-1,-48,-75,-17,-75,-10,-95,-90,-64,-72,-36,-56,-91,-62,-69,-51,-30,-40,-15,-9,-83,-21,-29,-70,-44,-28,-80,-67,-17,-52,-56,-48,-29,-47,-71,-10,-98,-29,-92,-52,-36,-76,-27,-96,-51,-46,-87,-63,-97,-42,-23,-40,-40,-44,-85,-95,-69,-57,-65,-3,-44,-97,-2,-14,-95,-50,-18,-39,-12,-85,-82,-22,-24,-67,-84,-58,-70,-53,-71,-82,-70,-8,-41,-9,-56,-43,-16,-88,-3,-31,-8,-2,-93,-22,-90,-21,-91,-49,-16,-7,-45,-71,-6,-35,-51,-98,-76,-2,-96,-92,-48,-66,-64,-38,-83,-68,-57,-44,-70,-66,-70,-31,-17,-42,-4,-41,-1,-92,-53,-13,-93,-83,-73,-38,-79,-6,-70,-25,-91,-7,-82,-6,-10,-78,-85,-1,-85,-1,-66,-86,-94,-82,-25,-13,-13,-14,-22,-37,-97,-31,-60,-26,-88,-93,-17,-55,-43,-96,-67,-6,-37,-19,-99,-5,-57,-4,-42,-90,-97,-33,-13,-96,-88,-8,-71,-16,-40,-86,-25,-6,-87,-72,-61,-58,-74,-44,-78,-13,-26,-15,-96,-21,-55,-26,-67,-12,-76,-12,-87,-1,-22,-61,-83,-7,-84,-44,-4,-1,-3,-92,-68,-18,-12,-37,-25,-56,-91,-62,-90,-41,-41,-38,-38,-25,-74,-59,-21,-40,-41,-29,-76,-38,-56,-9,-78,-80,-53,-56,-82,-9,-19,-43,-59,-8,-57,-32,-19,-63,-16,-65,-97,-51,-2,-59,-78,-19,-77,-17,-91,-100,-34,-43,-61,-40,-76,-12,-8,-72,-39,-29,-22,-50,-10,-64,-54,-89,-88,-61,-6,-58,-50,-55,-55,-12,-66,-55,-17,-49,-95,-19,-14,-19,-94,-34,-98,-42,-38,-20,-12,-13,-5,-58,-16,-12,-3,-58,-81,-93,-15,-66,-74,-22,-34,-37,-69,-42,-3,-89,-3,-29,-37,-74,-71,-98,-97,-23,-93,-49,-3,-29,-95,-13,-25,-56,-78,-98,-69,-93,-87,-33,-76,-93,-83,-36,-89,-65,-38,-30,-88,-30,-83,-90,-26,-86,-45,-84,-49,-54,-57,-44,-92,-39,-98,-1,-81,-84,-16,-87,-79,-15,-13,-93,-52,-85,-45,-91,-79,-6,-40,-80,-20,-100,-95,-56,-77,-78,-7,-77,-12,-95,-1,-14,-62,-36,-86,-76,-97,-16,-20,-18,-90,-86,-89,-43,-1,-92,-22,-38,-5,-39,-34,-85,-63,-44,-66,-37,-91,-40,-27,-52,-57,-67,-45,-12,-9,-96,-67,-95,-97,-20,-87,-6,-52,-43,-58,-78,-20,-20,-53,-48,-16,-70,-86,-17,-17,-30,-49,-58,-76,-5,-8,-13,-31,-99,-59,-27,-97,-18,-32,-78,-79,-70,-66,-72,-42,-91,-22,-78,-37,-89,-4,-9,-53,-80,-31,-51,-9,-72,-78,-4,-93,-53,-47,-68,-66,-3,-25,-100,-6,-79,-26,-42,-27,-78,-22,-9,-24,-12,-20,-5,-15,-28,-46,-40,-7,-89,-42,-11,-10,-72,-51,-95,-27,-28,-20,-33,-94,-78,-28,-42,-16,-17,-30,-58,-38,-55,-38,-65,-30,-6,-18,-11,-93,-90,-53,-39,-17,-53,-42,-38,-82,-94,-38,-86,-86,-97,-92,-56,-2,-40,-64,-98,-2,-36,-88,-37,-79,-96,-30,-54,-70,-47,-40,-78,-50,-93,-31,-42,-81,-83,-28,-86,-44,-66,-12,-85,-18,-19,-54,-70,-4,-74,-84,-24,-68,-38,-42,-33,-68,-88,-90,-94,-69,-78,-7,-86,-85,-82,-65,-22,-94,-86,-30,-45,-61,-93,-6,-9,-60,-47,-81,-73,-41,-13,-53,-88,-95,-80,-100,-80,-76,-44,-63,-68,-19,-20,-19,-97,-37,-28,-100,-4,-19,-37,-83,-82,-70,-11,-95,-53,-8,-53,-18,-21,-6,-38,-43,-6,-20,-52,-29,-47,-62,-65,-32,-8,-69,-9,-44,-72,-15,-33,-36,-7,-69,-72,-38,-14,-17,-57,-5,-90,-14,-79,-90,-64,-91,-13,-42,-92,-40,-90,-69,-24,-28,-23,-47,-7,-28,-61,-48,-11,-64,-81,-58,-11,-29,-6,-86,-4,-28,-65,-42,-91,-7,-11,-38,-92,-66,-30,-95,-41,-37,-100,-77,-27,-96,-69,-62,-54,-6,-57,-38,-13,-50,-95,-87,-50,-92,-76,-15,-82,-99,-89,-52,-80,-37,-80,-79,-14,-71,-94,-65,-30,-32,-18,-92,-32,-18,-71,-8,-100,-65,-57,-37,-72,-73,-35,-53,-29,-25,-13,-89,-85,-18,-48,-1,-4,-51,-84,-92,-58,-49,-22,-25,-52,-60,-92,-27,-35,-3,-69,-90,-36,-7,-39,-81,-83,-3,-10,-97,-67,-60,-33,-49,-35,-6,-1,-85,-28,-85,-44,-25,-99,-86,-73,-69,-70,-76,-87,-84,-31,-75,-65,-2,-11,-82,-58,-42,-89,-39,-16,-100,-64,-6,-58,-44,-29,-85,-44,-59,-66,-85,-73,-35,-11,-95,-100,-48,-93,-81,-16,-99,-24,-52,-26,-73,-63,-22,-38,-75,-38,-3,-10,-28,-90,-91,-58,-87,-61,-71,-26,-94,-25,-58,-82,-45,-43,-8,-33,-40,-84,-73,-98,-5,-60,-53,-25,-39,-85,-98,-78,-92,-79,-45,-90,-15,-10,-30,-19,-30,-68,-92,-5,-64,-77,-36,-97,-30,-18,-2,-72,-32,-91,-26,-38,-24,-85,-27,-96,-35,-6,-6,-99,-58,-71,-84,-22,-55,-18,-7,-40,-71,-2,-33,-13,-45,-61,-80,-20,-28,-67,-51,-28,-36,-98,-92,-32,-88,-27,-10,-18,-17,-6,-73,-98,-18,-24,-65,-70,-37,-8,-97,-52,-82,-20,-2,-57,-57,-7,-94,-93,-73,-71,-97,-66,-27,-9,-29,-3,-73,-6,-5,-29,-2,-50,-95,-40,-38,-62,-52,-71,-91,-68,-5,-55,-62,-10,-22,-37,-11,-81,-77,-5,-59,-45,-52,-87,-9,-48,-52,-53,-71,-63,-87,-57,-45,-48,-90,-70,-84,-17,-37,-19,-62,-95,-27,-98,-18,-33,-52,-98,-99,-60,-90,-17,-23,-38,-21,-34,-98,-94,-13,-44,-79,-22,-35,-80,-25,-45,-87,-50,-15,-36,-74,-83,-18,-34,-43,-62,-69,-95,-28,-97,-97,-32,-54,-8,-53,-58,-50,-14,-39,-31,-99,-10,-18,-71,-84,-9,-73,-28,-30,-21,-10,-24,-45,-49,-67,-55,-33,-85,-71,-44,-34,-5,-100,-18,-73,-54,-29,-23,-3,-57,-44,-31,-66,-80,-72,-70,-11,-3,-12,-63,-16,-93,-13,-10,-46,-86,-15,-35,-13,-7,-77,-85,-91,-23,-75,-21,-75,-25,-77,-43,-59,-92,-57,-58,-84,-42,-55,-84,-37,-95,-24,-59,-51,-54,-5,-30,-96,-32,-38,-80,-5,-32,-12,-32,-75,-36,-46,-99,-89,-13,-60,-13,-39,-49,-36,-98,-20,-19,-4,-41,-58,-61,-52,-49,-34,-12,-5,-50,-78,-17,-84,-68,-21,-30,-77,-74,-66,-77,-2,-66,-38,-81,-82,-50,-51,-89,-76,-11,-40,-80,-92,-15,-1,-95,-14,-5,-67,-53,-91,-97,-97,-96,-1,-15,-84,-49,-80,-70,-10,-31,-26,-10,-60,-37,-31,-34,-71,-55,-39,-15,-32,-67,-76,-32,-4,-26,-48,-73,-87,-32,-46,-27,-70,-22,-82,-66,-63,-65,-89,-74,-13,-54,-57,-48,-56,-35,-30,-93,-33,-56,-21,-89,-62,-52,-55,-9,-24,-49,-86,-33,-25,-85,-33,-13,-36,-31,-49,-15,-43,-45,-11,-76,-63,-20,-65,-96,-59,-1,-31,-100,-64,-60,-40,-2,-54,-22,-68,-2,-62,-85,-42,-85,-92,-63,-94,-61,-91,-61,-45,-46,-8,-44,-97,-75,-67,-92,-64,-68,-34,-81,-20,-4,-23,-35,-51,-68,-86,-82,-10,-100,-26,-64,-38,-63,-84,-2,-69,-48,-55,-92,-68,-99,-63,-24,-68,-71,-25,-21,-44,-100,-92,-18,-55,-75,-85,-89,-80,-29,-21,-87,-69,-23,-5,-37,-44,-68,-19,-4,-46,-84,-53,-10,-17,-65,-70,-98,-71,-91,-20,-67,-25,-97,-46,-52,-22,-87,-32,-60,-93,-52,-62,-98,-96,-61,-79,-10,-49,-28,-92,-50,-34,-5,-33,-2,-69,-100,-14,-97,-62,-28,-34,-46,-38,-10,-73,-42,-26,-15,-81,-10,-79,-69,-23,-64,-99,-32,-47,-3,-57,-89,-65,-42,-60,-86,-96,-65,-80,-71,-91,-66,-1,-17,-97,-2,-40,-29,-17,-22,-98,-68,-36,-59,-68,-24,-38,-31,-52,-60,-82,-33,-7,-20,-67,-62,-92,-78,-63,-54,-12,-20,-28,-79,-89,-26,-49,-4,-36,-14,-5,-71,-29,-31,-57,-37,-65,-55,-84,-66,-43,-88,-16,-25,-13,-55,-35,-61,-86,-73,-59,-42,-82,-59,-16,-90,-18,-80,-36,-67,-43,-37,-96,-13,-35,-52,-63,-61,-18,-100,-35,-21,-40,-9,-41,-48,-40,-49,-70,-71,-61,-96,-28,-16,-38,-84,-82,-93,-51,-4,-30,-2,-71,-56,-53,-46,-35,-35,-54,-38,-2,-26,-41,-11,-78,-23,-42,-71,-93,-65,-20,-43,-94,-17,-65,-87,-62,-22,-73,-24,-28,-94,-67,-84,-28,-20,-38,-91,-71,-74,-62,-94,-35,-84,-27,-20,-80,-21,-48,-51,-41,-90,-89,-8,-44,-87,-82,-35,-93,-92,-75,-75,-91,-14,-18,-51,-53,-85,-31,-63,-32,-97,-26,-28,-18,-88,-23,-32,-97,-93,-22,-38,-58,-63,-71,-68,-100,-9,-93,-72,-81,-3,-50,-37,-40,-14,-85,-28,-74,-66,-80,-76,-24,-51,-88,-91,-92,-21,-17,-91,-75,-61,-57,-15,-96,-43,-11,-5,-54,-22,-27,-35,-60,-70,-4,-74,-13,-75,-11,-69,-90,-9,-70,-66,-49,-97,-20,-84,-34,-62,-28,-78,-44,-36,-12,-53,-79,-90,-84,-22,-98,-17,-61,-1,-51,-53,-74,-12,-89,-83,-33,-32,-77,-94,-20,-42,-19,-39,-75,-94,-65,-46,-15,-19,-38,-100,-63,-98,-18,-80,-7,-1,-47,-74,-88,-27,-86,-27,-45,-60,-17,-22,-42,-79,-21,-51,-3,-59,-90,-77,-55,-40,-92,-39,-99,-16,-35,-19,-92,-79,-62,-39,-72,-95,-86,-31,-99,-15,-60,-77,-89,-54,-70,-94,-81,-91,-76,-16,-95,-21,-19,-82,-18,-55,-67,-44,-19,-6,-24,-68,-81,-43,-65,-3,-4,-41,-43,-68,-98,-6,-7,-8,-29,-23,-23,-66,-59,-20,-43,-99,-42,-3,-57,-97,-96,-90,-81,-31,-7,-36,-93,-96,-54,-16,-79,-7,-46,-91,-91,-24,-34,-91,-1,-94,-32,-88,-61,-37,-98,-61,-81,-86,-60,-5,-50,-67,-49,-40,-72,-94,-92,-77,-51,-5,-23,-84,-77,-94,-66,-84,-62,-35,-69,-57,-82,-43,-21,-76,-2,-40,-100,-45,-38,-60,-53,-22,-81,-86,-36,-98,-68,-28,-25,-51,-68,-61,-75,-5,-95,-50,-93,-24,-2,-99,-60,-49,-4,-87,-16,-67,-56,-53,-38,-66,-4,-53,-63,-49,-28,-78,-17,-32,-47,-34,-36,-88,-39,-20,-76,-45,-1,-68,-73,-1,-44,-65,-75,-60,-15,-3,-99,-61,-2,-56,-75,-25,-1,-14,-38,-4,-49,-94,-74,-93,-25,-49,-8,-6,-75,-97,-98,-33,-94,-32,-54,-24,-99,-46,-24,-52,-56,-54,-2,-73,-91,-90,-9,-1,-83,-14,-28,-78,-93,-46,-63,-36,-75,-1,-78,-20,-26,-37,-81,-49,-17,-28,-96,-84,-85,-61,-27,-90,-88,-54,-28,-51,-76,-59,-41,-51,-71,-65,-9,-8,-34,-49,-88,-79,-57,-92,-69,-73,-13,-33,-7,-31,-10,-82,-3,-42,-73,-96,-98,-12,-39,-65,-83,-20,-69,-51,-62,-31,-11,-71,-28,-83,-31,-6,-1,-78,-88,-96,-40,-90,-5,-52,-11,-14,-71,-18,-80,-43,-59,-93,-55,-20,-85,-8,-46,-51,-13,-78,-81,-42,-56,-98,-72,-62,-17,-6,-22,-32,-29,-95,-62,-61,-99,-97,-8,-83,-55,-47,-21,-51,-64,-67,-61,-92,-49,-13,-57,-56,-94,-52,-59,-1,-69,-78,-68,-31,-5,-49,-94,-11,-94,-29,-24,-50,-48,-86,-49,-63,-96,-75,-14,-13,-52,-46,-81,-27,-26,-78,-33,-5,-63,-79,-84,-41,-62,-28,-100,-71,-25,-2,-55,-8,-96,-80,-55,-18,-94,-66,-4,-26,-46,-43,-79,-48,-82,-28,-74,-7,-33,-68,-8,-70,-94,-75,-58,-32,-47,-99,-58,-64,-84,-72,-35,-19,-2,-74,-84,-91,-37,-38,-65,-24,-49,-82,-21,-57,-82,-79,-1,-92,-87,-28,-97,-95,-65,-19,-20,-25,-22,-54,-11,-16,-51,-9,-86,-44,-30,-13,-10,-30,-29,-22,-78,-52,-32,-7,-16,-61,-40,-42,-62,-31,-6,-29,-85,-90,-55,-16,-86,-28,-77,-59,-97,-5,-68,-35,-23,-17,-55,-26,-9,-47,-88,-36,-97,-30,-30,-22,-23,-66,-35,-77,-61,-5,-35,-31,-46,-48,-79,-100,-20,-2,-24,-15,-51,-60,-85,-89,-8,-60,-50,-53,-61,-28,-39,-5,-66,-14,-25,-57,-12,-48,-78,-25,-89,-96,-93,-80,-77,-90,-40,-45,-23,-81,-58,-98,-46,-58,-19,-12,-40,-58,-53,-48,-100,-97,-83,-94,-25,-28,-19,-31,-29,-66,-89,-99,-38,-69,-53,-19,-70,-35,-9,-19,-55,-20,-37,-40,-67,-51,-41,-43,-88,-66,-48,-9,-93,-91,-86,-65,-38,-28,-27,-36,-73,-2,-94,-97,-36,-99,-43,-38,-94,-92,-27,-52,-74,-69,-88,-22}
{1,1,53,8,4,4,48,4,7,23,80,16,10,39,84,9,1,2,7,6,1,1,23,4,2,36,5,3,1,20,6,1,55,2,59,22,7,15,1,56,2,7,52,1,31,32,12,25,1,13,24,5,43,1,22,1,7,22,4,1,10,17,55,15,1,10,6,1,50,29,12,5,96,6,2,34,45,18,33,38,28,3,9,33,12,4,44,53,30,11,6,30,22,22,14,27,1,94,36,1,3,4,33,11,15,30,7,45,9,1,32,3,49,43,1,4,38,6,19,8,1,7,4,1,10,3,4,1,16,6,72,2,1,15,1,24,22,10,1,3,1,33,4,4,9,5,3,2,83,3,85,1,6,55,5,25,47,1,26,27,4,95,21,1,65,37,1,29,2,1,34,27,90,8,3,9,16,86,4,6,4,1,8,76,3,1,1,5,4,2,33,1,31,9,4,10,72,2,43,1,32,60,16,57,7,7,2,61,15,5,1,41,1,11,6,60,1,25,99,4,19,1,19,3,3,5,11,13,37,47,67,38,17,20,6,1,1,71,10,5,1,20,16,3,35,1,24,7,22,81,17,1,71,2,50,14,95,6,7,12,3,2,38,14,10,1,2,65,50,1,3,7,1,22,26,1,50,3,1,19,14,11,51,7,7,5,7,1,1,3,89,27,89,6,75,1,97,50,16,32,44,2,2,34,1,1,89,4,14,41,15,75,1,2,6,6,10,49,16,1,2,38,9,1,5,1,12,6,1,3,7,21,1,20,29,21,3,2,3,4,2,40,16,5,50,10,24,94,22,7,17,3,86,65,13,1,81,10,7,48,14,1,17,2,5,61,13,1,11,35,26,2,1,28,7,67,4,14,35,27,2,71,26,26,4,5,2,18,48,27,2,94,65,3,8,1,1,1,8,9,1,5,86,18,21,59,77,4,6,8,25,19,17,2,13,2,6,8,1,16,7,2,5,2,16,1,74,5,15,7,53,14,51,1,21,4,2,1,37,81,16,8,1,10,52,4,35,4,2,72,2,5,6,14,10,43,3,23,6,79,1,1,9,16,12,3,2,77,15,14,5,45,29,75,35,3,2,2,26,24,3,3,41,13,1,23,21,3,1,22,13,41,1,1,5,3,1,1,10,4,3,1,25,3,38,1,1,29,74,99,16,7,7,4,4,3,21,45,20,47,2,36,12,1,3,4,95,1,2,13,21,40,7,5,43,5,1,3,39,11,41,12,50,1,6,45,38,21,4,4,10,3,12,3,5,47,8,2,38,2,4,45,98,40,1,32,1,1,64,4,1,4,1,2,12,1,72,15,16,28,48,4,1,1,39,17,14,88,22,2,40,20,12,13,1,47,51,1,3,7,14,7,76,4,72,3,6,74,18,22,2,3,2,25,20,4,46,1,3,2,70,30,16,47,72,33,3,14,94,1,1,14,99,60,7,43,3,2,26,8,72,68,1,2,18,12,27,70,63,1,1,2,16,11,14,21,5,3,34,4,4,3,99,76,6,5,74,5,1,74,28,25,3,19,5,85,71,12,23,35,57,1,12,18,5,93,3,98,1,20,2,8,11,1,2,47,66,5,17,35,1,19,3,1,20,24,8,12,75,40,54,1,35,32,3,5,1,10,1,2,32,5,45,16,1,18,24,34,1,37,4,30,20,54,5,1,2,26,11,2,1,58,3,55,10,2,3,3,5,1,7,1,2,1,8,15,15,33,5,43,1,1,15,6,39,6,21,7,1,12,93,54,21,1,42,73,85,3,3,50,45,70,14,49,25,3,19,52,19,15,86,4,3,3,52,6,5,2,5,5,2,1,17,23,55,1,12,2,2,1,3,5,1,1,6,21,17,3,1,1,7,1,43,29,2,5,1,1,3,18,1,52,85,5,4,26,10,3,7,21,1,1,2,3,43,1,62,1,1,2,13,5,79,1,10,83,1,2,13,31,8,61,11,12,6,8,48,97,5,13,2,6,63,6,30,17,74,3,3,1,9,8,16,29,6,2,58,15,3,5,58,30,9,39,14,20,1,4,85,36,25,84,8,7,12,11,8,1,3,87,69,1,1,2,1,2,44,16,5,26,2,2,3,1,1,24,21,3,5,10,45,1,95,8,1,5,27,37,4,46,4,1,2,1,78,9,3,95,48,4,6,28,1,3,1,22,6,28,4,38,19,84,11,7,53,24,19,9,7,63,4,1,4,1,36,18,15,1,94,21,69,4,4,17,35,5,19,1,16,3,88,21,4,9,99,48,7,1,57,1,41,33,6,7,12,40,47,31,75,2,5,1,21,29,1,4,1,1,4,45,44,19,1,6,17,1,1,2,25,51,2,54,1,10,19,72,50,7,1,13,4,16,1,83,8,1,99,6,1,3,29,17,19,1,2,34,44,67,36,13,5,1,3,92,1,58,12,86,9,2,8,1,52,1,23,4,4,84,27,92,3,1,3,7,1,2,1,4,31,1,2,3,49,36,59,53,4,24,66,26,2,1,7,11,1,3,38,13,1,2,5,65,71,3,1,92,12,44,1,1,8,36,69,12,5,18,9,17,1,30,13,20,8,1,4,9,6,74,12,10,7,23,5,2,91,6,23,9,28,7,1,21,2,5,12,1,17,30,12,14,10,41,18,6,1,5,4,43,1,28,1,50,3,84,41,21,2,28,54,12,42,30,5,2,28,8,34,15,7,7,47,1,17,99,70,61,60,4,67,1,5,1,2,25,31,45,51,69,10,2,27,5,22,85,22,3,11,3,1,1,41,98,1,7,1,4,14,10,1,30,24,77,2,5,10,15,56,3,13,7,55,3,19,3,84,4,5,2,35,47,11,11,1,17,1,9,21,6,1,48,2,7,2,11,4,1,1,12,29,13,60,1,80,45,4,4,14,47,3,4,2,5,1,22,8,43,2,36,29,28,1,7,69,2,2,1,19,30,2,9,1,36,68,33,5,8,1,3,4,1,1,1,2,3,14,33,42,49,7,24,1,42,6,60,18,47,1,5,12,8,1,72,9,5,6,2,1,39,9,68,40,22,1,36,9,35,30,3,17,11,56,3,27,38,3,2,28,12,6,11,8,4,15,31,51,1,10,6,78,2,39,4,28,11,18,37,31,15,28,38,2,4,4,22,9,3,2,3,36,9,3,35,26,19,97,8,7,91,41,34,61,30,6,26,2,22,12,1,8,1,5,13,2,12,19,14,2,5,6,37,1,12,1,9,14,19,8,11,1,4,15,90,30,6,95,4,8,3,3,1,3,3,10,31,6,65,1,1,55,1,1,6,21,14,2,18,20,3,7,1,2,14,4,46,37,9,75,24,51,18,8,4,6,19,13,3,21,5,1,36,3,11,2,55,70,23,13,4,8,5,4,11,61,45,5,7,6,3,3,99,68,99,63,4,4,7,7,76,2,1,58,58,12,8,1,31,5,34,25,38,2,1,9,3,4,21,2,17,80,1,27,50,59,91,6,3,45,2,15,9,55,15,22,84,13,16,56,2,60,7,63,3,1,3,12,11,2,24,3,16,71,4,38,2,5,21,3,8,1,17,5,5,6,37,3,21,50,4,1,1,34,1,17,23,1,35,36,2,99,2,84,80,4,70,13,21,2,43,63,17,2,4,16,2,48,1,9,31,4,2,48,1,13,2,3,64,2,2,52,56,15,69,1,26,7,2,4,29,42,4,5,47,91,2,15,2,1,95,1,6,68,14,1,76,10,71,96,54,1,7,50,27,1,8,68,51,7,12,26,25,5,79,35,6,30,1,1,95,10,71,81,39,41,1,15,3,1,2,1,15,1,3,7,1,62,9,9,75,68,63,52,11,31,3,6,2,20,2,6,8,2,1,7,53,9,10,14,14,12,4,4,11,1,2,5,1,5,6,1,1,99,70,1,1,3,64,6,47,1,5,24,5,14,3,93,5,6,14,2,83,17,36,17,2,1,29,3,3,2,5,2,68,1,48,15,9,65,1,9,66,16,3,1,5,1,9,1,2,23,30,6,1,1,18,93,96,4,10,10,3,1,5,67,7,50,4,14,1,54,87,1,13,6,34,3,6,2,25,2,46,2,2,7,20,57,4,43,7,11,1,9,27,11,15,1,3,2,29,7,55,1,5,12,57,1,60,8,1,18,1,11,4,36,4,42,80,7,58,3,4,4,91,1,1,2,2,1,41,23,8,5,7,2,2,1,5,18,18,6,5,39,1,3,2,45,85,4,26,1,2,79,13,38,3,10,11,15,2,37,2,9,25,2,40,58,8,61,25,17,4,61,66,37,42,23,35,1,17,28,81,8,16,59,46,2,13,1,1,1,7,72,1,47,5,2,5,1,16,1,21,33,1,1,1,74,4,2,26,3,2,1,30,8,45,27,43,4,3,8,96,22,3,45,93,10,4,28,61,11,32,4,6,3,20,42,3,13,4,30,50,3,11,1,3,24,77,1,11,10,10,8,5,31,1,2,2,1,19,11,15,6,47,25,89,5,2,1,3,84,2,10,3,22,36,30,2,3,43,15,73,8,8,5,2,3,2,45,5,9,13,13,25,19,1,9,78,75,28,57,41,20,2,23,6,1,5,2,3,1,20,2,34,85,7,1,1,3,58,18,5,3,3,1,1,57,15,3,10,9,19,21,47,53,10,23,80,83,1,1,74,3,57,1,27,1,29,8,6,1,2,55,4,3,1,48,3,91,16,1,22,5,4,3,3,3,69,10,3,1,97,49,42,7,2,12,26,5,5,12,1,22,2,22,13,5,30,41,19,90,7,6,26,3,2,24,9,1,12,5,36,43,33,3,20,2,65,1,13,10,3,9,84,9,93,37,10,99,20,34,36,3,1,5,77,70,1,92,25,84,64,10,67,1,30,21,1,30,18,64,54,3,18,9,1,46,1,16,5,1,2,8,4,1,54,5,27,90,12,3,49,1,1,12,83,5,6,41,11,8,1,39,1,3,18,91,7,15,4,6,25,1,1,51,43,96,12,1,16,4,24,1,4,3,11,14,27,40,12,8,1,11,49,64,20,32,1,1,9,1,2,53,3,15,2,22,98,1,6,1,85,10,2,2,29,10,7,1,13,81,63,1,25,2,10,31,2,40,80,9,4,79,3,46,6,41,14,2,2,1,25,53,13,8,20,1,43,29,2,7,34,7,70,7,10,40,7,1,61,5,2,2,1,83,4,4,2,9,1,4,80,12,11,20,23,6,40,8,42,21,4,16,1,84,51,4,34,26,1,4,14,3,36,61,12,2,1,36,6,2,45,34,2,50,20,49,3,1,13,2,68,5,3,95,3,21,1,8,7,37,31,10,5,24,13,10,3,3,16,14,1,6,10,33,4,76,41,13,7,8,54,2,1,5,1,4,24,13,9,6,5,16,8,8,1,9,2,30,1,2,5,38,3,18,4,24,11,15,1,9,3,58,1,3,94,33,3,10,1,5,23,6,72,31,1,10,4,3,23,2,13,20,3,2,15,58,3,2,27,45,52,67,22,17,1,1,5,39,9,36,4,10,23,17,31,4,1,31,2,5,56,7,2,1,1,12,41,1,2,11,4,12,6,1,31,31,19,24,10,15,28,1,3,6,5,6,62,32,3,8,1,3,8,33,4,3,4,1,2,1,8,68,19,10,6,32,2,28,1,58,86}
Returns: 1.0969983204778953E9
{43,32,85,80,56,32,83,39,7,35,75,76,31,29,27,94,80,68,13,56,1,25,19,54,94,32,24,29,77,32,56,92,37,19,53,10,7,24,16,37,59,11,41,90,3,1,16,99,80,62,20,96,3,74,42,27,61,85,22,16,11,79,51,46,94,59,33,58,6,75,80,24,95,29,32,90,9,87,38,35,35,69,94,54,55,86,41,21,35,16,43,57,3,44,19,82,92,16,93,1,76,79,22,48,34,26,11,82,37,86,85,92,13,60,79,74,14,26,38,2,87,90,55,99,42,17,72,33,42,20,51,13,99,40,90,82,56,9,76,95,27,60,11,68,24,2,18,94,84,37,8,16,67,1,65,78,70,46,86,70,18,81,77,5,5,65,38,91,48,30,68,79,68,87,45,96,73,83,63,90,23,47,93,71,62,59,32,39,80,2,25,49,23,29,16,93,86,87,56,28,67,84,4,30,22,28,25,94,36,68,18,66,68,2,46,48,74,97,19,65,61,67,91,68,79,82,46,90,37,5,26,57,36,27,35,36,65,36,58,40,52,75,100,50,90,20,93,29,28,8,60,42,47,45,95,64,29,34,45,25,22,52,95,97,63,27,25,52,62,76,8,80,58,79,26,32,66,77,32,60,100,2,51,45,6,99,53,19,85,75,99,85,61,94,86,91,83,33,60,98,62,77,2,45,29,42,31,11,89,5,41,31,75,92,76,46,49,16,14,5,81,26,24,78,47,43,22,1,25,76,80,84,20,4,68,13,56,64,2,80,88,33,27,85,25,4,48,53,61,93,100,46,66,9,19,33,87,5,82,34,7,83,38,58,41,65,95,77,47,60,41,30,86,36,86,49,19,9,76,71,60,50,88,8,11,37,39,10,63,46,80,79,52,36,78,76,53,27,18,52,49,68,57,78,75,20,1,96,45,86,67,86,84,68,98,12,51,27,99,46,27,88,68,86,33,31,44,6,3,74,28,1,96,72,79,23,19,27,52,23,78,3,39,76,95,50,25,73,41,44,99,22,12,27,68,53,41,85,15,48,80,77,6,84,87,60,90,24,80,69,62,62,47,29,67,51,17,12,79,65,48,68,74,54,74,76,20,54,76,53,58,85,56,97,88,36,85,98,95,10,73,78,63,12,53,66,56,9,91,92,64,12,58,77,70,13,54,36,68,78,67,75,12,53,62,9,42,70,36,35,7,4,41,95,84,99,89,12,32,25,61,87,71,99,19,72,45,62,75,88,60,5,14,51,94,44,83,52,89,4,25,31,62,78,61,71,73,54,4,43,62,62,83,22,3,10,95,14,98,31,46,12,77,98,58,35,35,24,78,3,28,8,47,12,55,38,65,1,35,25,78,20,1,5,56,28,24,99,60,86,13,2,14,30,88,23,70,59,30,88,27,81,1,87,6,46,7,25,1,80,98,10,31,32,59,24,84,65,26,71,5,91,41,30,19,80,29,97,74,76,27,28,3,66,81,78,40,46,50,43,1,82,5,12,49,44,98,59,57,51,37,1,79,61,98,84,90,1,6,56,88,40,31,35,67,57,77,78,71,100,40,18,93,70,35,24,47,91,48,32,62,28,32,73,45,1,94,16,57,61,27,53,88,93,37,20,88,37,70,98,79,24,99,76,20,25,36,38,41,83,57,83,15,51,91,42,74,57,79,52,91,94,51,75,10,94,84,67,94,84,78,36,100,36,77,46,99,2,99,74,62,39,55,28,19,98,63,25,50,1,21,8,73,72,72,92,59,66,44,99,37,88,36,80,53,69,38,94,95,14,46,43,77,50,52,51,52,10,71,13,11,51,9,36,78,99,20,25,59,61,22,84,93,4,8,35,87,86,76,72,22,36,46,25,56,59,59,9,69,51,32,14,11,11,77,86,93,28,89,41,15,67,91,55,83,28,23,76,54,47,51,4,75,36,61,79,42,75,27,71,42,98,1,13,3,34,55,5,56,8,96,75,11,21,51,57,18,96,34,23,12,74,57,86,79,33,5,80,62,2,22,80,14,52,51,63,55,18,44,46,25,49,55,77,27,61,8,26,72,9,7,41,49,66,4,18,68,77,42,67,58,5,18,36,87,76,64,1,86,17,19,20,60,18,83,77,80,98,82,80,73,82,23,70,29,20,36,59,86,58,100,37,40,89,16,10,26,59,60,83,24,83,52,53,46,57,29,86,92,10,41,51,34,23,23,75,68,84,69,4,15,34,12,45,68,11,89,77,96,99,38,52,98,33,67,87,27,30,27,14,87,67,56,25,87,28,62,23,36,40,51,94,30,87,85,41,57,15,50,82,21,23,54,24,48,38,12,93,74,86,77,15,5,75,83,22,66,11,95,86,75,4,56,41,71,9,87,26,8,89,52,18,64,19,17,6,61,41,60,12,76,59,47,57,48,51,73,92,94,50,90,63,56,55,90,83,51,4,68,36,64,52,100,47,41,99,12,30,31,95,40,27,50,81,5,20,43,18,99,38,10,63,60,37,47,87,38,69,81,20,100,48,90,63,3,27,48,89,46,23,51,30,80,52,88,31,66,15,44,29,20,67,11,12,27,49,17,88,19,58,20,8,41,17,78,53,37,79,28,40,24,92,20,44,89,47,14,100,81,26,40,10,57,59,27,22,1,1,56,46,81,49,58,99,32,29,78,88,44,71,47,66,44,39,84,19,56,67,81,89,33,88,5,37,2,71,14,36,99,80,27,72,11,41,15,16,7,86,53,52,52,27,7,6,21,1,92,61,76,23,83,22,70,76,64,29,52,56,79,88,73,15,41,56,73,7,66,98,39,17,64,56,15,66,79,13,35,13,90,64,98,77,92,97,56,26,85,72,64,15,22,1,71,45,55,48,72,3,100,65,6,5,66,71,89,65,61,65,1,100,26,6,7,60,30,46,55,84,98,66,39,67,8,17,28,31,93,55,46,95,90,91,81,48,50,93,20,37,60,4,73,86,92,59,20,12,50,39,29,74,40,94,26,52,67,44,69,74,4,73,74,14,4,16,50,45,89,22,70,50,7,97,59,39,83,32,12,52,61,95,71,91,18,25,58,49,10,31,49,72,28,43,15,38,22,76,51,97,25,71,56,61,82,25,74,30,84,38,70,67,60,29,58,29,8,30,5,31,78,68,12,94,97,22,76,96,98,57,43,45,70,6,24,74,79,95,12,27,84,82,65,33,98,20,30,16,68,32,61,32,14,15,75,83,65,92,95,93,31,80,98,27,41,2,40,29,89,79,42,5,11,80,57,54,74,6,93,94,85,77,47,50,58,44,40,81,49,87,58,75,74,4,15,60,11,25,14,13,4,72,32,86,91,96,17,30,47,2,49,9,41,31,45,70,66,23,28,83,10,46,36,97,52,61,64,49,94,46,40,95,59,87,97,7,42,12,81,53,77,44,51,31,6,4,55,10,60,11,41,12,47,88,47,38,22,8,48,19,46,75,68,87,80,61,71,3,80,14,24,19,88,57,81,3,57,93,76,96,97,82,44,22,27,21,48,22,51,12,2,72,99,15,99,30,79,94,4,26,56,12,61,71,60,51,51,10,20,57,15,64,67,81,80,22,28,66,45,82,11,55,2,73,17,56,3,6,53,17,88,83,21,78,74,73,44,37,38,73,39,15,17,77,11,92,99,30,19,13,33,31,15,65,12,54,73,74,66,74,25,71,1,98,11,12,61,91,99,73,34,70,70,62,26,77,71,44,25,51,57,97,58,71,63,71,47,50,57,73,57,30,97,25,81,3,59,34,15,20,63,33,26,81,94,25,60,61,57,32,37,75,9,1,8,24,23,90,66,58,7,43,24,92,38,14,25,54,31,100,20,22,35,99,99,62,69,26,26,74,48,69,80,4,5,86,22,85,33,24,89,13,63,40,15,15,91,99,10,66,89,39,82,95,96,81,67,35,89,86,48,37,9,61,1,9,12,44,35,100,26,2,37,4,49,3,18,23,6,55,43,80,78,24,78,62,48,62,25,12,82,42,24,93,39,7,8,99,30,76,34,75,87,27,99,4,77,80,36,72,99,86,31,51,35,60,30,91,76,63,29,39,28,98,9,83,43,23,56,28,20,93,52,3,26,64,24,24,79,97,80,36,36,59,80,64,31,97,9,39,40,42,1,67,1,93,23,42,27,94,59,21,50,48,77,19,83,42,38,4,62,33,87,18,43,70,19,70,28,78,57,15,92,9,57,48,35,100,82,24,19,49,22,23,74,86,96,79,54,88,85,12,89,36,64,84,38,29,45,54,67,97,42,74,11,72,58,53,23,50,54,48,16,58,4,77,25,25,52,68,44,82,92,85,84,54,61,28,89,75,99,19,83,94,32,37,73,3,96,20,28,75,43,78,54,60,1,29,45,57,37,28,45,40,62,79,62,98,65,55,100,10,61,6,37,71,95,30,37,36,91,24,31,83,98,13,6,14,58,49,32,77,2,9,39,17,92,60,86,21,16,91,19,66,73,29,81,29,28,50,62,84,24,70,96,53,38,18,2,72,3,86,14,35,100,56,22,41,10,6,46,33,56,23,69,90,91,42,44,40,2,62,46,79,90,17,68,58,18,66,75,77,9,45,47,19,43,8,60,72,47,42,67,34,95,58,10,57,50,25,43,29,45,14,94,48,77,22,83,13,4,17,34,95,76,85,45,51,98,30,67,75,25,96,37,69,10,7,23,6,69,100,22,99,38,78,2,3,69,8,19,43,86,14,57,57,45,52,22,22,92,69,4,35,73,88,63,20,60,1,15,7,70,72,10,66,42,19,77,57,78,63,59,86,5,7,15,41,32,25,69,38,57,31,8,84,72,30,54,10,32,21,57,44,26,90,13,24,50,85,76,74,94,59,87,9,13,100,16,66,87,94,58,7,92,87,45,58,18,63,22,38,13,64,38,30,36,36,20,42,62,29,69,34,67,96,4,60,55,29,80,24,81,63,59,35,48,5,87,79,14,16,18,42,83,26,55,44,20,42,46,72,85,45,30,27,8,75,72,35,73,53,29,22,12,78,92,57,45,100,15,60,89,85,82,78,33,14,15,94,42,29,88,95,61,41,54,72,24,93,82,81,46,86,15,64,49,73,5,90,9,19,46,39,37,45,30,36,13,83,72,4,61,66,16,85,17,28,92,63,63,59,48,11,36,40,61,48,83,52,68,12,36,41,84,31,85,80,52,68,97,96,87,27,99,67,82,98,39,38,22,35,3,47,22,58,80,99,34,91,18,91,100,65,80,11,1,15,84,44,50,52,84,9,9,81,42,99,59,92,76,66,34,60,47,61,41,41,91,21,43,80,78,59,18,80,64,93,36,34,24,39,87,73,12,86,85,16,62,24,3,64,64,39,48,62,57,29,93,65,93,58,57,47,44,76,12,35,24,47,23,32,77,28,74,38,4,30,94,95,66,62,36,16,76,4,51,67,9,31,10,43,78,4,53,67,14,85,40,32,67,40,46,8,66,65,69,3,41,46,5,14,65,81,62,48,1,52,68,68,68,36,86,43,87,72,88,87,90,57,62,98,62,71,14,96,50,54,13,40,50,28,59,32,75,11,2,72,42,54,42,17,94,77,21,58,16,92,92,74,83,15,76,13,52,25,62,74,47,31,82,13,31,71,82,41,39,83,57,54,43,31}
{58,49,71,46,90,6,53,31,94,88,55,90,6,68,96,57,83,92,72,73,70,97,98,4,16,48,76,92,94,75,40,49,80,22,62,14,31,50,29,44,63,87,73,89,89,39,27,96,78,34,5,31,93,6,45,51,77,90,50,88,56,31,36,28,14,86,87,74,69,43,5,48,82,47,99,8,10,90,42,69,31,91,81,85,20,53,50,22,39,71,71,91,2,39,3,95,100,80,26,17,57,6,75,20,46,15,98,50,44,4,19,63,17,76,7,33,28,37,86,17,46,25,19,26,67,84,8,42,27,46,50,22,42,19,3,21,79,85,73,80,31,33,52,4,23,50,6,91,84,52,67,68,40,4,87,91,50,82,62,26,71,77,72,77,63,45,75,43,82,94,27,100,81,79,14,55,6,80,80,33,51,17,23,96,24,89,57,46,25,72,99,78,62,85,31,30,62,79,85,83,6,52,47,55,92,97,47,54,67,19,2,45,14,45,90,100,46,29,97,24,76,29,72,54,74,93,91,53,33,18,40,43,46,89,13,53,100,22,76,64,56,15,35,8,42,15,28,65,2,5,87,73,63,11,84,95,38,55,72,37,89,56,93,53,62,30,37,22,59,20,43,54,95,39,72,8,65,93,72,2,79,12,58,20,6,17,38,24,83,100,6,21,53,11,100,18,27,97,20,86,34,73,79,5,37,46,100,68,77,60,96,5,4,78,76,60,95,82,9,62,3,1,12,26,77,67,1,93,97,32,36,64,27,75,81,38,38,51,97,5,75,72,8,40,35,99,31,68,33,93,49,69,43,68,2,34,85,48,30,81,7,51,48,97,27,63,36,69,62,39,43,11,3,47,74,52,65,2,64,41,90,28,12,13,16,69,12,79,41,18,45,57,92,12,38,4,87,74,52,90,7,95,66,69,44,71,57,8,59,29,13,61,98,22,2,59,45,70,52,71,46,97,83,16,37,23,69,53,17,16,25,72,58,60,5,75,17,37,93,52,10,58,87,84,55,61,54,93,22,7,87,35,47,12,47,48,40,61,69,65,13,76,27,97,67,13,3,4,12,99,78,91,25,30,63,55,67,90,30,58,6,81,44,90,89,69,11,34,17,27,46,44,7,48,18,11,50,79,24,90,45,62,94,10,32,21,10,45,7,64,48,21,31,70,35,37,78,46,51,70,18,17,15,21,38,85,86,5,19,56,94,32,37,88,50,7,15,24,35,18,6,3,31,72,50,83,15,84,78,22,1,19,74,23,67,39,51,76,9,18,35,75,66,33,20,31,55,51,71,63,54,19,58,94,85,34,97,20,59,89,24,17,41,79,70,60,49,48,27,54,45,69,79,81,16,49,70,95,8,70,95,31,97,88,63,95,97,9,80,71,70,31,69,68,97,87,39,16,74,37,25,19,43,11,63,39,52,80,60,24,21,65,89,52,23,97,87,85,64,46,93,31,2,5,51,24,78,38,85,25,59,81,62,93,83,8,50,62,65,75,41,5,64,38,94,71,71,19,46,26,41,28,60,50,20,47,85,71,30,37,26,67,84,20,10,98,41,46,13,74,87,62,46,6,31,64,52,61,32,15,22,53,19,98,95,93,72,69,83,74,21,70,71,95,78,62,18,63,74,57,7,85,86,11,26,35,40,67,84,68,49,43,97,91,25,92,96,44,1,42,95,53,47,5,10,87,26,7,67,45,34,76,74,2,85,13,100,23,47,36,5,67,36,8,16,95,48,13,55,14,69,82,80,80,62,12,38,14,9,99,38,88,10,21,70,57,98,90,37,36,95,62,55,53,31,15,75,18,90,21,5,95,10,73,95,98,39,15,3,47,62,6,18,100,85,97,19,65,1,27,62,8,81,96,54,55,60,67,28,98,40,50,80,22,15,15,16,70,49,65,74,81,58,16,16,54,32,26,86,6,22,30,89,99,52,37,94,68,46,71,31,75,80,48,5,70,28,92,82,51,69,36,37,79,20,69,20,19,20,4,86,29,58,9,72,82,24,40,39,22,23,86,97,35,4,52,12,71,82,67,57,85,15,51,21,58,56,5,69,11,59,77,6,86,14,87,88,53,27,58,65,65,87,79,88,70,75,69,81,60,49,6,33,26,98,31,38,78,20,43,50,73,57,48,58,86,74,31,43,61,73,98,15,79,69,20,23,74,97,5,4,42,20,16,39,85,7,64,58,75,93,81,24,79,14,6,59,79,88,10,1,73,55,7,86,15,31,93,18,56,17,98,74,86,10,25,88,5,16,11,5,5,100,24,75,57,32,81,34,59,91,81,43,54,62,87,32,56,93,37,44,80,51,89,1,45,84,69,45,52,16,23,75,27,41,35,86,49,53,26,38,98,45,92,41,80,24,26,5,7,75,7,20,33,36,17,52,99,17,18,20,44,70,92,88,93,50,11,36,85,27,17,15,1,3,19,71,71,85,64,9,4,73,68,16,15,4,30,14,26,65,19,85,92,1,25,53,83,86,87,24,88,94,87,71,90,3,23,39,48,96,75,83,53,58,4,99,54,83,34,89,90,75,66,19,76,91,42,68,47,35,58,22,100,2,80,78,5,84,31,37,22,31,80,14,95,94,64,88,45,24,55,2,67,12,96,74,39,19,99,41,86,53,37,45,40,43,28,3,42,25,46,25,1,38,83,66,90,92,17,45,22,53,34,47,84,14,12,70,11,19,39,34,49,23,27,53,75,17,60,56,1,16,79,37,24,5,33,44,31,77,48,83,41,42,43,48,90,69,23,10,57,56,61,36,58,39,24,74,31,23,27,72,79,45,8,9,22,53,5,70,83,91,72,6,100,16,29,51,49,20,18,27,44,40,22,58,59,17,42,54,15,68,63,13,62,18,57,36,1,61,19,99,44,10,69,72,81,75,80,38,59,95,63,49,45,51,61,58,99,34,70,31,71,6,59,91,71,98,10,53,53,4,69,51,31,97,50,75,11,45,16,67,98,59,17,95,54,3,45,80,22,81,42,35,60,5,70,25,6,72,40,41,88,29,89,65,98,73,50,60,56,57,11,38,88,97,81,89,38,23,44,32,96,56,43,10,58,33,44,19,36,46,68,54,97,44,34,91,67,11,36,59,39,44,29,80,92,11,65,6,8,58,29,78,66,67,33,66,90,70,81,59,100,55,44,81,35,41,98,89,95,65,50,54,74,68,94,72,35,56,88,42,13,7,97,63,23,74,2,55,80,49,6,47,41,11,58,20,27,42,42,71,60,15,72,63,37,74,87,76,42,91,94,100,66,78,16,53,10,44,42,62,28,19,79,48,62,63,72,88,9,63,61,55,75,38,9,51,56,61,54,4,14,56,100,17,88,73,4,15,43,40,55,41,18,30,21,71,7,96,76,48,82,16,68,52,23,8,11,67,26,85,55,13,15,82,67,100,83,89,21,5,64,27,72,54,40,52,73,70,66,41,72,70,99,20,5,70,22,19,6,7,49,88,31,12,95,13,92,96,30,58,100,92,13,14,10,52,51,8,73,72,10,20,83,4,74,55,79,51,11,30,69,1,100,42,93,7,32,64,30,89,10,98,88,6,33,5,50,71,44,42,59,28,43,11,87,93,16,25,22,31,65,40,8,22,20,31,41,64,4,100,43,12,52,96,25,9,88,94,31,57,58,3,4,93,87,41,68,98,90,53,81,21,29,88,81,28,29,50,7,3,77,38,65,94,3,20,39,88,20,67,86,16,4,61,66,27,86,100,10,57,99,6,23,15,84,69,29,16,66,30,22,5,31,78,1,26,24,45,73,79,21,44,86,88,20,46,72,20,37,87,93,65,96,33,77,27,31,89,50,18,60,90,8,59,97,56,44,57,17,11,31,13,31,34,21,46,45,10,18,50,50,69,37,78,17,38,90,47,8,33,78,5,15,11,93,25,31,24,25,9,68,10,51,85,68,22,3,21,25,15,1,56,26,82,50,43,40,75,17,26,23,66,5,29,26,39,59,22,4,51,80,20,20,88,6,53,74,81,87,50,44,46,76,41,61,40,19,58,72,66,30,84,23,52,14,82,25,11,2,44,26,56,45,16,68,80,26,59,92,6,26,52,71,54,34,2,86,78,13,49,54,48,54,44,72,4,48,84,41,3,32,2,82,61,82,98,86,65,46,72,66,74,50,26,44,12,3,79,13,23,17,73,1,38,28,91,73,59,98,94,94,10,83,86,9,67,14,66,68,50,82,62,65,27,63,76,67,9,86,34,24,79,92,57,58,33,92,55,100,72,14,48,9,43,60,57,86,61,8,58,4,76,26,98,34,88,73,59,47,62,7,55,73,47,53,44,84,28,98,21,64,39,49,20,59,58,6,61,50,46,59,20,77,50,73,62,70,91,41,62,39,52,99,82,21,69,84,80,63,57,46,60,97,48,19,8,26,4,90,68,47,91,19,99,82,4,67,5,20,44,62,100,27,91,1,57,87,88,65,18,39,69,42,90,66,48,94,49,99,2,32,40,94,12,36,60,75,75,75,10,8,13,62,38,30,8,93,6,36,45,30,45,73,16,89,60,14,48,14,50,81,43,37,16,77,80,28,30,44,13,87,92,83,32,26,45,25,63,51,40,79,93,57,45,32,77,95,58,17,43,23,58,39,16,67,33,67,41,80,65,9,12,39,19,95,40,51,62,6,87,23,79,9,39,65,71,93,4,9,42,76,56,40,38,62,58,34,61,67,78,60,45,41,69,59,57,99,40,22,10,57,41,35,9,56,12,56,57,79,84,84,5,26,15,41,92,56,28,14,70,79,88,66,90,6,66,44,44,72,84,13,4,58,10,24,57,67,52,70,47,23,44,61,52,78,49,80,91,57,13,91,21,97,85,97,4,46,76,58,81,71,83,15,12,13,11,90,96,13,27,65,47,46,61,81,11,76,11,22,40,75,48,24,77,27,27,51,45,67,94,53,58,3,45,85,22,4,36,74,67,22,76,29,12,71,14,19,71,90,27,12,61,57,70,42,49,32,74,39,12,65,97,20,98,27,30,27,47,67,12,68,37,32,75,12,45,54,48,51,34,26,66,61,12,80,95,54,54,98,66,36,72,73,26,61,30,79,43,89,44,96,92,40,76,77,27,81,33,48,74,32,2,62,41,62,14,62,15,100,12,31,25,50,95,34,89,90,82,23,35,92,67,72,67,91,54,89,82,6,97,83,84,12,85,16,29,28,21,11,28,14,54,72,85,16,26,93,98,54,6,24,45,83,40,16,3,35,75,31,72,69,80,78,98,72,37,26,21,58,4,81,86,15,68,46,48,18,77,25,24,80,20,50,60,10,57,68,6,1,26,53,86,92,44,74,33,84,10,70,93,23,60,71,73,26,61,26,60,32,47,79,79,55,83,96,94,21,6,88,12,68,56,77,55,99,8,96,97,94,44,98,4,82,53,36,4,18,47,28,16,1,62,50,23,18,89,33,7,97,17,85,98,14,75,95,71,99,98,33,11,40,68,99,21,24,75,29,50,74,66,34,90,26,45,76,97,85,90,88,34,97,38,73,20,100,87,10,27,91,33,53,52,83,40,83,62,25,31,66,94,83,23,29,89,88,8,61,81,2,39,37,47,40,35,44,78,73,38,85,88,98,24,32,20,67,4,100,75,45,51,19,2,57,51,76,29,94}
{-73,-20,-72,-11,-64,-36,-42,-4,-14,-77,-3,-96,-95,-29,-75,-29,-10,-19,-38,-10,-72,-75,-31,-36,-30,-29,-23,-74,-1,-4,-44,-45,-9,-55,-96,-56,-66,-67,-45,-52,-71,-62,-73,-3,-49,-100,-89,-54,-12,-15,-67,-11,-35,-68,-47,-87,-86,-48,-22,-44,-59,-34,-10,-36,-8,-46,-37,-100,-33,-18,-53,-86,-68,-54,-48,-79,-41,-38,-47,-19,-12,-87,-55,-86,-93,-65,-37,-81,-47,-5,-21,-1,-85,-16,-3,-71,-71,-78,-96,-79,-94,-76,-89,-21,-30,-53,-36,-62,-16,-22,-52,-75,-61,-100,-2,-32,-21,-89,-81,-92,-67,-96,-83,-24,-79,-2,-76,-14,-29,-87,-73,-72,-86,-59,-90,-90,-71,-6,-78,-79,-99,-51,-84,-39,-9,-76,-56,-12,-42,-39,-26,-92,-57,-1,-10,-73,-66,-38,-63,-53,-88,-28,-71,-2,-51,-62,-18,-67,-42,-34,-65,-94,-97,-47,-12,-72,-56,-80,-36,-63,-47,-51,-6,-95,-53,-23,-66,-63,-19,-84,-7,-2,-93,-78,-34,-56,-58,-34,-92,-21,-7,-89,-77,-93,-31,-94,-44,-94,-42,-31,-73,-35,-20,-87,-93,-19,-96,-53,-34,-50,-92,-56,-18,-16,-25,-53,-96,-38,-48,-77,-53,-92,-41,-28,-42,-84,-82,-84,-85,-8,-43,-31,-79,-54,-2,-44,-65,-77,-50,-66,-87,-54,-89,-98,-48,-41,-16,-61,-73,-38,-7,-71,-43,-93,-54,-16,-26,-32,-73,-9,-34,-66,-8,-30,-46,-1,-71,-98,-7,-89,-35,-28,-89,-97,-52,-74,-96,-78,-93,-64,-62,-36,-58,-26,-21,-36,-41,-61,-50,-9,-69,-60,-99,-49,-10,-9,-61,-32,-53,-61,-36,-21,-91,-47,-24,-73,-76,-84,-37,-88,-48,-87,-77,-20,-87,-53,-95,-84,-58,-58,-24,-77,-5,-59,-36,-72,-30,-87,-53,-6,-56,-71,-42,-53,-62,-29,-44,-37,-50,-14,-79,-2,-27,-29,-4,-36,-89,-71,-85,-28,-18,-75,-11,-93,-40,-21,-21,-23,-63,-58,-63,-51,-26,-6,-69,-62,-10,-75,-48,-27,-21,-99,-35,-75,-54,-18,-85,-67,-35,-24,-5,-87,-17,-49,-18,-34,-32,-27,-35,-13,-43,-51,-36,-49,-35,-16,-4,-41,-54,-95,-78,-3,-86,-21,-35,-50,-66,-80,-27,-21,-71,-37,-73,-39,-83,-23,-6,-59,-43,-37,-87,-68,-6,-12,-45,-47,-85,-92,-9,-39,-27,-49,-49,-14,-2,-27,-51,-58,-90,-33,-27,-64,-40,-89,-53,-66,-52,-89,-33,-82,-64,-20,-49,-29,-66,-15,-30,-90,-45,-51,-59,-19,-65,-10,-100,-93,-32,-68,-48,-36,-29,-16,-38,-66,-26,-12,-5,-37,-65,-76,-11,-82,-70,-7,-27,-88,-21,-97,-73,-88,-7,-49,-24,-54,-19,-59,-66,-72,-5,-78,-72,-72,-83,-28,-44,-71,-28,-17,-80,-6,-92,-46,-99,-29,-93,-76,-53,-49,-84,-15,-90,-97,-74,-16,-60,-35,-93,-99,-84,-23,-11,-55,-42,-78,-93,-6,-71,-100,-51,-48,-21,-39,-84,-26,-16,-43,-30,-56,-97,-6,-40,-33,-49,-32,-63,-23,-36,-18,-3,-94,-13,-31,-10,-93,-91,-83,-8,-20,-18,-70,-35,-49,-8,-68,-46,-59,-78,-68,-68,-62,-13,-52,-24,-32,-20,-2,-44,-66,-79,-79,-67,-37,-92,-78,-77,-15,-10,-54,-76,-93,-15,-49,-93,-71,-9,-65,-35,-87,-63,-82,-35,-46,-3,-14,-28,-41,-39,-74,-94,-82,-48,-10,-13,-40,-8,-69,-63,-48,-35,-42,-65,-52,-4,-24,-90,-95,-73,-44,-87,-45,-95,-24,-78,-82,-9,-10,-33,-1,-4,-55,-86,-82,-30,-30,-20,-50,-5,-67,-89,-15,-46,-52,-7,-95,-46,-99,-30,-79,-34,-88,-62,-100,-65,-50,-69,-71,-31,-31,-60,-43,-97,-5,-92,-17,-68,-25,-76,-87,-2,-65,-57,-54,-95,-38,-61,-93,-54,-25,-88,-39,-51,-4,-24,-96,-62,-12,-28,-75,-66,-49,-58,-7,-27,-75,-20,-66,-2,-14,-69,-14,-51,-76,-93,-62,-66,-23,-11,-9,-50,-41,-48,-45,-66,-92,-36,-37,-42,-63,-76,-69,-77,-52,-100,-67,-99,-62,-74,-47,-45,-33,-93,-27,-6,-50,-10,-63,-49,-48,-82,-45,-46,-52,-75,-47,-88,-55,-86,-86,-10,-88,-16,-24,-82,-98,-23,-95,-11,-4,-32,-53,-82,-56,-92,-68,-31,-19,-99,-4,-44,-38,-84,-15,-54,-28,-16,-24,-7,-21,-36,-100,-42,-55,-30,-15,-72,-3,-77,-47,-69,-81,-63,-20,-91,-27,-16,-65,-19,-61,-42,-71,-95,-99,-77,-42,-13,-23,-17,-61,-26,-94,-96,-75,-15,-2,-11,-52,-53,-44,-8,-67,-37,-60,-53,-8,-89,-31,-9,-5,-49,-96,-56,-34,-36,-37,-71,-79,-53,-28,-70,-50,-21,-33,-24,-30,-75,-33,-16,-33,-11,-94,-64,-29,-3,-50,-68,-19,-10,-77,-25,-15,-58,-97,-54,-17,-77,-8,-35,-56,-70,-43,-85,-11,-31,-55,-51,-8,-26,-53,-37,-31,-5,-82,-24,-90,-77,-92,-35,-31,-97,-18,-57,-86,-41,-40,-36,-92,-6,-84,-46,-53,-39,-76,-87,-46,-61,-57,-27,-5,-39,-24,-10,-96,-83,-73,-56,-76,-5,-66,-55,-63,-28,-86,-7,-7,-82,-66,-5,-94,-16,-49,-58,-98,-43,-65,-33,-12,-23,-71,-99,-22,-94,-41,-40,-85,-22,-74,-96,-95,-21,-30,-32,-60,-65,-57,-68,-36,-100,-75,-7,-70,-59,-20,-89,-85,-30,-29,-64,-22,-96,-40,-10,-46,-45,-37,-55,-26,-97,-75,-51,-66,-9,-81,-34,-9,-22,-40,-36,-87,-26,-43,-94,-44,-31,-93,-46,-24,-98,-38,-72,-70,-5,-19,-19,-48,-1,-17,-78,-89,-71,-97,-36,-83,-3,-40,-76,-73,-66,-94,-50,-49,-6,-66,-14,-13,-67,-15,-63,-14,-96,-16,-98,-80,-41,-3,-58,-18,-50,-9,-39,-1,-11,-82,-23,-97,-7,-63,-30,-58,-43,-63,-49,-24,-25,-23,-30,-66,-76,-73,-72,-37,-65,-62,-51,-85,-87,-78,-98,-13,-87,-44,-91,-73,-32,-98,-26,-27,-34,-77,-57,-95,-16,-43,-62,-94,-56,-74,-56,-25,-95,-23,-94,-80,-88,-96,-59,-19,-85,-97,-53,-37,-84,-61,-74,-58,-60,-71,-4,-92,-82,-42,-67,-58,-49,-70,-22,-11,-41,-73,-21,-17,-63,-29,-59,-86,-74,-38,-35,-53,-17,-81,-6,-44,-76,-40,-82,-31,-26,-45,-92,-76,-25,-37,-100,-97,-97,-33,-96,-14,-88,-10,-63,-67,-32,-35,-48,-21,-65,-4,-75,-34,-17,-50,-53,-67,-75,-52,-75,-95,-83,-66,-59,-3,-33,-69,-39,-4,-33,-17,-53,-68,-96,-82,-42,-16,-90,-63,-61,-76,-73,-28,-81,-70,-8,-68,-81,-71,-7,-40,-96,-15,-44,-86,-86,-56,-18,-12,-41,-99,-92,-64,-49,-31,-11,-83,-79,-67,-19,-30,-9,-83,-27,-11,-5,-23,-59,-26,-68,-29,-80,-28,-34,-72,-54,-98,-70,-8,-2,-65,-96,-44,-48,-61,-38,-44,-97,-20,-20,-49,-71,-95,-37,-67,-64,-99,-20,-36,-70,-38,-2,-30,-64,-45,-95,-45,-74,-94,-59,-77,-13,-42,-10,-78,-8,-58,-8,-49,-37,-59,-32,-17,-75,-29,-59,-15,-34,-75,-19,-85,-86,-74,-38,-3,-14,-82,-6,-19,-6,-50,-6,-20,-4,-77,-17,-81,-37,-5,-47,-25,-62,-88,-9,-67,-64,-11,-34,-77,-30,-86,-33,-54,-30,-4,-67,-69,-99,-73,-41,-11,-29,-28,-46,-32,-96,-66,-6,-64,-6,-15,-25,-57,-1,-13,-20,-80,-28,-50,-54,-81,-45,-92,-77,-32,-63,-83,-17,-26,-74,-99,-77,-35,-65,-15,-7,-89,-53,-27,-88,-77,-62,-57,-7,-29,-54,-72,-68,-94,-96,-24,-63,-88,-58,-37,-26,-40,-70,-45,-75,-45,-63,-18,-68,-73,-75,-79,-37,-2,-70,-82,-74,-50,-29,-64,-92,-34,-96,-79,-84,-92,-39,-58,-1,-56,-37,-50,-5,-82,-68,-36,-42,-2,-72,-17,-50,-92,-72,-50,-61,-4,-96,-71,-84,-55,-29,-80,-73,-18,-3,-92,-41,-28,-97,-17,-74,-44,-74,-68,-15,-19,-46,-60,-100,-31,-33,-97,-67,-67,-61,-29,-60,-59,-79,-90,-86,-91,-31,-17,-24,-47,-100,-5,-90,-64,-36,-23,-42,-31,-39,-84,-74,-70,-20,-60,-17,-2,-60,-74,-21,-41,-13,-24,-80,-96,-33,-48,-45,-1,-21,-48,-14,-95,-39,-64,-33,-44,-23,-4,-41,-62,-65,-21,-97,-34,-22,-19,-70,-21,-43,-9,-57,-7,-45,-1,-58,-69,-36,-55,-17,-8,-4,-20,-38,-60,-100,-8,-3,-86,-36,-65,-24,-20,-56,-28,-80,-45,-9,-83,-92,-65,-59,-65,-56,-12,-49,-76,-80,-42,-49,-34,-51,-73,-21,-95,-85,-8,-16,-43,-90,-100,-86,-81,-33,-26,-13,-10,-33,-44,-97,-19,-49,-29,-9,-83,-69,-89,-24,-13,-64,-96,-58,-54,-25,-90,-5,-11,-23,-35,-25,-25,-69,-32,-77,-17,-84,-57,-100,-68,-18,-78,-24,-84,-37,-7,-85,-91,-68,-15,-45,-65,-61,-67,-45,-95,-5,-95,-45,-72,-9,-58,-44,-84,-75,-34,-82,-77,-96,-96,-18,-80,-25,-31,-32,-35,-8,-94,-57,-33,-22,-92,-58,-29,-86,-3,-84,-30,-27,-2,-88,-66,-28,-33,-71,-64,-89,-59,-46,-71,-23,-3,-18,-95,-65,-64,-80,-48,-21,-17,-83,-19,-100,-51,-92,-27,-79,-50,-60,-40,-9,-68,-64,-99,-53,-93,-13,-90,-50,-75,-18,-10,-31,-11,-29,-57,-93,-2,-77,-75,-11,-84,-54,-12,-100,-85,-4,-16,-78,-59,-13,-48,-79,-81,-28,-61,-34,-19,-33,-62,-1,-13,-4,-32,-86,-49,-18,-56,-54,-23,-46,-17,-94,-66,-49,-27,-98,-6,-42,-22,-30,-23,-5,-77,-42,-69,-39,-16,-7,-22,-26,-70,-49,-37,-44,-38,-72,-89,-71,-1,-54,-91,-4,-30,-87,-98,-33,-65,-30,-26,-41,-95,-21,-36,-22,-43,-54,-44,-51,-16,-33,-66,-26,-37,-57,-33,-18,-74,-38,-18,-99,-14,-55,-4,-76,-47,-61,-7,-61,-64,-91,-62,-33,-94,-28,-77,-87,-61,-38,-56,-44,-40,-61,-7,-23,-86,-59,-32,-75,-14,-63,-34,-74,-60,-99,-65,-29,-32,-11,-68,-24,-81,-63,-68,-97,-95,-3,-18,-5,-81,-16,-89,-63,-56,-10,-57,-21,-36,-100,-51,-87,-92,-47,-69,-79,-92,-52,-89,-33,-57,-61,-78,-6,-97,-69,-93,-17,-20,-77,-64,-38,-51,-66,-69,-97,-13,-85,-77,-10,-12,-99,-65,-26,-37,-35,-35,-100,-25,-74,-22,-45,-2,-82,-64,-79,-46,-50,-59,-80,-2,-93,-3,-92,-2,-6,-2,-74,-57,-14,-88,-69,-95,-43,-98,-71,-53,-56,-97,-23,-33,-19,-96,-19,-83,-46,-8,-10,-70,-64,-73,-89,-62,-58,-100,-45,-61,-5,-36,-86,-62,-6,-21,-89,-83,-96,-43,-34,-7,-90,-71,-72,-78,-54,-100,-46,-5,-99,-99,-3,-98,-20,-51,-4,-20,-24,-1,-83,-82,-13,-53,-34,-5,-43,-72,-29,-88,-46,-5,-17,-53,-65,-43,-68,-52,-3,-82,-5,-35,-59,-16,-63,-53,-23,-79,-13,-25,-98,-70,-76,-15,-24,-74,-100,-46,-86,-99,-85,-51,-64,-72,-89,-77,-71,-17,-3,-52,-24,-76,-59,-6,-43,-26,-81,-80,-58,-94,-18,-16,-67,-46,-71,-82,-56,-5,-51,-47,-18,-39,-97,-82,-97,-7,-91,-67,-7,-89,-57,-83,-98,-46,-56,-44,-12,-17,-50,-98,-88,-91,-54,-5,-56,-29,-10,-99,-61,-92,-54,-10,-1,-42,-71,-34,-82,-68,-64,-7,-47,-42,-21,-77,-57,-70,-70,-19,-51,-48,-4,-88,-85,-50,-32,-80,-10,-90,-76,-1,-60,-15,-29,-42,-64,-44,-34,-88,-87,-48,-3,-1,-30,-68,-63,-43,-24,-32,-60,-20,-64,-27,-79,-89,-77,-98,-4,-44,-96,-4,-64,-14,-99,-96,-18,-42,-17,-53,-4,-76,-73,-51,-38,-16,-86,-16,-1,-40,-91,-51,-53,-61,-98,-15,-2,-33,-33,-86,-51,-72,-38,-12,-70,-30,-35,-39,-88,-18,-84,-68,-96,-17,-89,-80,-35,-51,-69,-63,-18,-75,-7,-31,-57,-3,-98,-58,-6,-97,-59,-99,-7,-87,-69,-2,-19,-29,-44,-91,-47,-23,-71,-15,-45,-92,-81,-57,-28,-36,-36,-10,-89,-31,-8,-35,-96,-8,-72,-33,-67,-85,-28,-84,-96,-79,-11,-21,-3,-6,-55,-31,-98,-22,-43,-19,-57,-31,-37,-69,-72,-49,-30,-9,-42,-7,-55,-86,-68,-16,-1,-32,-68,-33,-32,-9,-95,-28,-85,-8,-53,-36,-7,-82,-7,-80,-47,-89,-90,-30,-50,-34,-19,-65,-5,-3,-35,-2,-12,-93,-32,-45,-53,-62,-85,-35,-61,-42,-35,-69,-38,-55,-34,-62,-36,-50,-4,-75,-41,-38,-44,-96,-5,-98,-27,-22,-64,-2,-70,-3,-36,-96,-19,-18,-41,-76,-6,-2,-3,-59,-8,-68,-99,-90,-65,-1,-78,-82,-4,-40,-57,-21,-100,-14,-99,-51,-86,-20,-33,-81,-17,-18,-5,-50,-66,-18,-92,-23,-62,-40,-73,-75,-14,-39,-61,-88,-61,-84,-11,-61,-55,-25,-91,-2,-59,-37,-80,-71,-72,-40,-48,-97,-80,-16,-59,-16,-75,-60,-47,-29,-96,-55,-66,-1,-26,-67,-84,-4,-6,-17,-5,-12,-11,-84,-13,-44,-27,-5,-8,-95,-26,-90,-76,-42,-71,-9,-71,-92,-2,-94,-88,-98,-51,-81,-30,-22,-80,-74,-28,-33,-44,-63,-13,-41,-31,-96,-3,-25,-11,-89,-47,-12,-61,-74,-60,-12,-22,-43,-47,-62,-64,-33,-84,-42,-79,-40,-77,-9,-96,-96,-9,-94,-4,-58,-73,-2,-99,-98,-13,-80,-44,-53,-85,-81,-87,-89,-81,-2,-17,-26}
{-45,-67,-74,-5,-67,-34,-84,-15,-1,-46,-14,-96,-76,-41,-37,-44,-49,-78,-74,-50,-56,-63,-41,-52,-64,-73,-67,-45,-60,-33,-47,-75,-22,-13,-4,-26,-32,-86,-83,-60,-37,-87,-63,-93,-21,-96,-95,-32,-82,-98,-62,-27,-13,-43,-70,-46,-54,-47,-94,-10,-67,-93,-93,-91,-1,-87,-70,-7,-60,-50,-97,-28,-36,-39,-54,-21,-5,-9,-15,-87,-81,-76,-13,-31,-77,-15,-54,-44,-38,-35,-100,-80,-68,-14,-33,-54,-76,-16,-37,-76,-68,-51,-59,-24,-67,-66,-94,-12,-18,-43,-49,-37,-25,-66,-46,-30,-8,-45,-100,-68,-28,-66,-78,-77,-97,-67,-74,-50,-23,-34,-63,-33,-82,-34,-59,-87,-45,-23,-28,-6,-58,-82,-1,-13,-2,-59,-94,-23,-24,-30,-45,-50,-6,-9,-42,-65,-41,-84,-13,-21,-55,-88,-51,-23,-38,-50,-2,-96,-85,-11,-8,-80,-32,-67,-100,-7,-65,-90,-79,-29,-10,-96,-34,-47,-88,-42,-3,-99,-64,-4,-10,-31,-86,-61,-40,-43,-6,-50,-100,-95,-77,-57,-80,-9,-97,-54,-95,-60,-16,-75,-8,-2,-58,-7,-25,-83,-14,-44,-74,-94,-49,-48,-5,-74,-32,-20,-12,-62,-38,-22,-84,-55,-88,-23,-4,-48,-4,-1,-73,-71,-15,-78,-96,-68,-25,-9,-5,-15,-62,-17,-97,-22,-64,-10,-45,-91,-32,-95,-27,-79,-46,-39,-40,-45,-94,-35,-96,-39,-86,-73,-4,-37,-15,-95,-16,-90,-24,-96,-53,-29,-91,-26,-1,-29,-58,-88,-41,-21,-91,-78,-88,-96,-96,-38,-79,-44,-27,-42,-91,-44,-62,-83,-12,-7,-16,-67,-69,-59,-32,-1,-5,-54,-2,-72,-76,-84,-76,-22,-52,-74,-53,-43,-20,-20,-34,-24,-16,-68,-56,-94,-37,-6,-65,-43,-68,-75,-56,-19,-83,-6,-30,-9,-62,-5,-31,-83,-83,-47,-5,-71,-91,-28,-99,-6,-84,-90,-41,-99,-93,-24,-87,-51,-11,-27,-1,-59,-10,-89,-13,-23,-36,-41,-61,-100,-14,-53,-62,-34,-77,-66,-40,-10,-57,-58,-64,-91,-10,-30,-97,-13,-10,-92,-92,-13,-62,-81,-28,-29,-87,-83,-42,-81,-2,-21,-22,-14,-89,-12,-69,-88,-65,-97,-77,-49,-95,-78,-88,-35,-62,-23,-90,-44,-92,-27,-62,-77,-75,-41,-61,-87,-32,-45,-34,-45,-27,-32,-70,-43,-30,-62,-78,-72,-81,-47,-32,-82,-71,-18,-83,-10,-15,-16,-35,-100,-78,-92,-83,-19,-61,-43,-4,-57,-52,-97,-98,-47,-23,-10,-65,-45,-99,-86,-61,-61,-98,-50,-87,-60,-88,-20,-33,-78,-75,-44,-23,-50,-30,-9,-39,-98,-81,-65,-4,-39,-51,-10,-71,-69,-93,-78,-27,-84,-96,-41,-45,-7,-46,-56,-49,-87,-12,-67,-10,-59,-6,-81,-99,-71,-78,-44,-38,-89,-80,-36,-32,-20,-72,-38,-50,-23,-79,-7,-22,-100,-17,-51,-59,-74,-75,-55,-55,-38,-32,-25,-27,-37,-94,-20,-58,-36,-76,-5,-68,-41,-54,-69,-90,-6,-69,-78,-53,-71,-34,-11,-80,-93,-26,-19,-94,-12,-29,-24,-81,-15,-41,-20,-3,-84,-33,-72,-71,-6,-97,-78,-71,-54,-47,-20,-41,-81,-100,-59,-2,-56,-20,-56,-27,-47,-56,-74,-94,-51,-54,-92,-88,-9,-42,-36,-64,-8,-33,-94,-34,-66,-43,-79,-48,-90,-62,-67,-62,-96,-49,-53,-30,-70,-29,-2,-47,-63,-36,-40,-71,-17,-23,-41,-90,-5,-82,-40,-59,-30,-58,-40,-41,-78,-82,-32,-84,-1,-6,-24,-28,-74,-66,-7,-16,-36,-35,-65,-69,-29,-42,-20,-48,-76,-91,-22,-50,-98,-11,-26,-12,-81,-82,-36,-86,-55,-15,-78,-1,-86,-53,-69,-16,-45,-41,-7,-45,-29,-61,-9,-82,-10,-72,-22,-17,-7,-75,-4,-91,-44,-58,-94,-89,-33,-78,-86,-84,-66,-64,-2,-38,-75,-41,-3,-36,-8,-99,-65,-88,-2,-83,-58,-67,-63,-47,-98,-37,-91,-60,-42,-48,-30,-44,-46,-96,-44,-30,-96,-25,-66,-80,-87,-51,-31,-81,-33,-86,-13,-14,-28,-16,-61,-47,-37,-62,-77,-36,-9,-43,-32,-23,-75,-29,-73,-12,-7,-98,-34,-60,-23,-41,-47,-88,-98,-39,-86,-5,-83,-31,-72,-60,-15,-28,-43,-21,-32,-47,-43,-10,-22,-88,-2,-91,-41,-9,-36,-83,-80,-71,-86,-97,-57,-14,-18,-49,-82,-100,-92,-30,-22,-15,-92,-78,-77,-15,-33,-65,-84,-59,-38,-16,-22,-9,-8,-18,-30,-53,-86,-40,-12,-65,-72,-59,-19,-93,-7,-45,-99,-8,-8,-49,-24,-83,-35,-69,-86,-38,-1,-31,-3,-25,-48,-75,-59,-15,-84,-91,-48,-54,-54,-34,-100,-5,-1,-62,-89,-48,-89,-94,-79,-11,-2,-49,-52,-41,-5,-17,-41,-41,-64,-84,-2,-24,-1,-12,-12,-4,-15,-56,-16,-3,-39,-17,-6,-15,-96,-56,-58,-42,-40,-92,-100,-65,-85,-49,-65,-39,-53,-32,-8,-86,-75,-50,-68,-79,-40,-8,-85,-100,-77,-74,-89,-80,-30,-98,-15,-55,-92,-88,-2,-32,-15,-70,-92,-82,-65,-72,-50,-70,-13,-17,-81,-6,-34,-90,-44,-60,-9,-69,-17,-21,-7,-1,-1,-77,-49,-26,-2,-4,-62,-81,-89,-90,-53,-87,-70,-7,-32,-34,-82,-6,-66,-68,-66,-93,-25,-97,-50,-31,-72,-34,-35,-69,-97,-91,-37,-36,-27,-97,-31,-44,-69,-52,-99,-58,-100,-43,-85,-24,-60,-56,-4,-54,-16,-89,-92,-4,-82,-17,-17,-3,-48,-97,-11,-40,-13,-22,-27,-20,-98,-86,-81,-93,-38,-42,-82,-15,-69,-15,-6,-81,-41,-14,-39,-30,-9,-41,-50,-100,-73,-100,-56,-25,-84,-61,-61,-72,-37,-55,-68,-4,-23,-4,-94,-40,-58,-76,-28,-83,-12,-23,-24,-43,-40,-99,-18,-72,-57,-5,-52,-97,-14,-70,-42,-98,-43,-9,-59,-100,-38,-10,-67,-94,-37,-79,-48,-27,-8,-52,-77,-48,-28,-15,-81,-68,-80,-12,-42,-66,-8,-84,-15,-57,-7,-25,-30,-4,-16,-9,-81,-58,-65,-72,-14,-71,-17,-67,-54,-36,-4,-48,-38,-10,-90,-86,-28,-14,-41,-76,-63,-6,-23,-19,-77,-89,-2,-59,-98,-79,-67,-39,-70,-82,-67,-17,-74,-59,-86,-80,-83,-15,-76,-60,-43,-56,-95,-9,-1,-59,-99,-84,-92,-67,-89,-32,-27,-91,-85,-8,-4,-88,-100,-38,-32,-58,-35,-69,-12,-16,-30,-44,-11,-24,-69,-59,-26,-62,-47,-6,-28,-60,-79,-62,-32,-20,-52,-100,-71,-4,-91,-24,-81,-47,-44,-80,-49,-83,-72,-76,-35,-53,-44,-83,-94,-5,-66,-78,-24,-14,-56,-31,-57,-30,-35,-58,-37,-54,-76,-44,-17,-94,-38,-74,-50,-53,-73,-76,-26,-58,-85,-19,-63,-80,-8,-24,-68,-79,-39,-22,-100,-62,-72,-84,-15,-34,-58,-62,-92,-38,-31,-56,-84,-66,-96,-63,-57,-49,-46,-3,-53,-100,-8,-33,-26,-68,-83,-30,-71,-64,-26,-6,-99,-89,-29,-53,-80,-25,-9,-50,-26,-98,-98,-36,-40,-92,-71,-76,-39,-8,-73,-48,-1,-82,-40,-71,-82,-49,-30,-59,-90,-29,-27,-9,-22,-14,-33,-73,-95,-91,-71,-42,-39,-22,-6,-67,-62,-76,-14,-60,-12,-51,-4,-91,-40,-100,-21,-74,-63,-28,-59,-42,-39,-57,-33,-65,-30,-13,-60,-16,-91,-33,-35,-2,-64,-95,-90,-7,-22,-30,-67,-14,-87,-75,-47,-2,-76,-63,-20,-80,-49,-30,-3,-94,-51,-43,-75,-72,-68,-74,-84,-6,-44,-69,-3,-50,-48,-50,-78,-9,-100,-90,-19,-16,-7,-22,-7,-67,-25,-7,-53,-52,-58,-67,-11,-42,-10,-21,-96,-24,-18,-65,-31,-55,-55,-63,-20,-6,-61,-50,-96,-67,-15,-46,-95,-69,-13,-64,-52,-39,-1,-32,-35,-33,-68,-30,-73,-88,-91,-1,-57,-74,-77,-37,-60,-27,-55,-70,-33,-53,-28,-93,-10,-83,-95,-100,-69,-73,-32,-12,-4,-17,-34,-73,-39,-20,-66,-9,-65,-86,-39,-48,-56,-22,-56,-46,-61,-29,-36,-25,-69,-32,-89,-47,-75,-66,-51,-51,-4,-27,-91,-55,-56,-43,-13,-84,-97,-76,-15,-34,-22,-51,-66,-75,-83,-20,-8,-6,-88,-19,-100,-33,-42,-57,-77,-97,-29,-46,-1,-6,-9,-46,-57,-24,-10,-27,-53,-59,-14,-53,-47,-44,-36,-91,-74,-63,-93,-8,-79,-60,-10,-49,-48,-8,-85,-56,-32,-34,-99,-22,-95,-8,-33,-12,-2,-74,-46,-2,-88,-66,-17,-46,-91,-82,-76,-65,-3,-8,-4,-78,-88,-79,-88,-28,-76,-15,-9,-40,-30,-56,-32,-34,-82,-100,-74,-47,-87,-100,-8,-100,-86,-15,-17,-78,-11,-9,-35,-64,-9,-96,-26,-56,-23,-90,-81,-7,-9,-57,-78,-91,-42,-99,-61,-50,-95,-6,-14,-9,-86,-70,-27,-47,-94,-48,-10,-96,-81,-49,-3,-17,-55,-92,-9,-14,-71,-21,-72,-96,-59,-69,-21,-80,-18,-94,-85,-94,-62,-40,-89,-17,-14,-93,-53,-94,-5,-54,-90,-6,-77,-61,-66,-26,-41,-68,-19,-3,-71,-78,-24,-1,-96,-52,-60,-9,-91,-46,-77,-86,-41,-42,-70,-95,-100,-97,-27,-68,-46,-8,-98,-23,-100,-23,-23,-23,-49,-44,-35,-16,-87,-43,-54,-86,-61,-22,-71,-79,-16,-41,-25,-12,-83,-33,-79,-51,-71,-48,-70,-45,-2,-34,-87,-53,-20,-60,-37,-47,-19,-64,-81,-73,-13,-100,-40,-66,-93,-86,-57,-78,-23,-76,-86,-21,-14,-1,-24,-68,-67,-85,-100,-52,-54,-2,-15,-97,-49,-80,-4,-59,-45,-87,-67,-26,-96,-83,-47,-13,-81,-51,-63,-98,-100,-13,-72,-40,-52,-8,-65,-30,-83,-81,-68,-96,-47,-33,-70,-76,-32,-46,-54,-67,-100,-13,-72,-4,-93,-49,-81,-1,-49,-42,-3,-80,-7,-62,-58,-25,-38,-27,-98,-71,-30,-28,-29,-7,-82,-49,-7,-91,-71,-67,-69,-89,-84,-25,-40,-64,-42,-80,-69,-67,-57,-65,-17,-78,-99,-87,-20,-24,-100,-96,-70,-45,-24,-54,-30,-24,-36,-30,-21,-95,-68,-16,-32,-30,-98,-65,-5,-80,-67,-7,-58,-99,-31,-74,-52,-49,-94,-33,-91,-77,-37,-7,-18,-24,-4,-53,-27,-89,-100,-7,-37,-5,-99,-75,-99,-92,-44,-24,-44,-56,-4,-58,-47,-48,-19,-80,-68,-73,-47,-84,-49,-32,-32,-10,-25,-26,-66,-55,-26,-74,-49,-78,-35,-24,-4,-1,-94,-6,-44,-71,-48,-56,-53,-30,-39,-71,-72,-80,-73,-91,-65,-44,-23,-91,-86,-48,-17,-53,-32,-5,-46,-32,-33,-48,-87,-99,-12,-22,-34,-90,-93,-90,-26,-68,-54,-95,-18,-89,-45,-100,-74,-75,-36,-42,-27,-82,-81,-19,-67,-72,-35,-78,-13,-77,-97,-92,-31,-98,-85,-50,-74,-27,-31,-60,-29,-86,-87,-19,-55,-78,-31,-85,-61,-17,-87,-61,-24,-49,-64,-55,-39,-12,-37,-18,-73,-77,-19,-43,-62,-16,-88,-28,-80,-77,-42,-44,-96,-26,-3,-13,-33,-84,-11,-92,-15,-46,-70,-96,-8,-74,-60,-32,-45,-80,-63,-97,-35,-87,-81,-14,-52,-2,-85,-98,-24,-7,-75,-16,-37,-54,-72,-5,-3,-59,-40,-19,-34,-69,-66,-34,-10,-22,-8,-6,-38,-18,-73,-2,-37,-96,-59,-32,-94,-14,-58,-93,-8,-48,-96,-3,-25,-51,-61,-44,-61,-22,-46,-64,-97,-41,-20,-59,-40,-11,-18,-69,-22,-68,-42,-47,-32,-5,-42,-4,-69,-98,-54,-55,-11,-77,-61,-58,-28,-98,-35,-20,-49,-54,-64,-92,-38,-50,-100,-81,-38,-4,-64,-36,-88,-75,-81,-12,-12,-26,-72,-8,-43,-93,-56,-78,-59,-24,-11,-57,-53,-84,-86,-17,-89,-7,-85,-47,-57,-41,-75,-95,-66,-32,-89,-47,-80,-8,-74,-1,-39,-9,-14,-8,-82,-56,-75,-77,-25,-7,-1,-19,-26,-42,-79,-83,-30,-41,-45,-73,-51,-50,-29,-59,-13,-37,-45,-9,-80,-6,-40,-33,-19,-93,-46,-93,-1,-22,-74,-80,-48,-84,-43,-50,-89,-13,-37,-33,-30,-92,-21,-70,-66,-77,-92,-1,-30,-41,-49,-50,-21,-52,-28,-50,-89,-80,-78,-43,-27,-78,-14,-47,-81,-39,-85,-19,-26,-23,-35,-72,-59,-55,-64,-69,-85,-74,-95,-48,-91,-42,-76,-2,-27,-74,-23,-56,-32,-39,-95,-17,-97,-69,-18,-11,-64,-89,-6,-52,-15,-3,-30,-42,-23,-4,-57,-38,-29,-62,-57,-84,-76,-32,-65,-13,-72,-62,-92,-77,-18,-30,-18,-70,-75,-28,-75,-51,-21,-13,-37,-50,-99,-17,-15,-2,-25,-23,-89,-5,-90,-73,-89,-27,-81,-43,-57,-78,-70,-19,-45,-53,-75,-56,-6,-93,-96,-28,-55,-78,-79,-14,-18,-42,-89,-25,-89,-23,-35,-75,-65,-13,-91,-16,-30,-38,-53,-16,-54,-99,-85,-34,-26,-41,-69,-35,-67,-76,-37,-61,-55,-59,-18,-95,-63,-49,-91,-70,-67,-11,-100,-88,-30,-98,-58,-69,-5,-51,-49,-98,-8,-68,-75,-79,-23,-60,-31,-7,-1,-100,-7,-46,-70,-58,-43,-73,-62,-86,-52,-82,-100,-60,-68,-68,-31,-88,-39,-96,-4,-25,-19,-56,-30,-75,-45,-31,-12,-49,-91,-56,-67,-51,-68,-52,-92,-2,-80,-6,-7,-79,-34,-23,-29,-26,-41,-38,-91,-37,-24,-86,-96,-31,-19,-28,-26,-45,-43,-22,-21,-53,-45,-60,-79,-58,-81,-55,-22,-78,-95,-51,-35,-13,-22,-38,-62,-23,-57,-4,-15,-69,-7,-23,-55,-50,-42,-88,-60,-93,-68,-9,-15,-38,-47,-72,-18,-64,-70,-18,-23,-48,-49,-49,-6,-4,-39,-45,-76}
{10,64,5,2,17,21,29,3,1,37,6,5,1,1,28,1,3,2,1,37,1,2,76,56,71,16,3,97,72,1,7,7,7,39,70,99,9,31,1,80,5,1,10,2,18,1,7,3,11,1,1,4,7,68,12,4,43,1,5,6,26,1,12,42,7,45,8,38,6,2,6,2,7,49,22,10,11,7,7,3,20,5,2,3,49,28,8,3,19,14,1,6,2,99,28,4,87,11,16,8,64,36,67,3,2,1,2,5,6,12,16,2,2,43,13,70,14,5,16,2,54,67,3,52,53,4,13,19,53,8,19,22,11,28,43,2,37,15,36,1,13,19,11,88,6,3,4,73,1,8,11,3,5,97,8,2,40,66,5,77,28,6,34,8,1,1,10,1,1,37,2,17,82,9,18,2,7,27,2,69,56,20,17,2,2,21,4,28,73,69,15,7,28,1,6,99,11,16,1,5,3,85,2,12,12,3,25,4,17,1,89,6,5,1,16,10,2,86,57,2,7,17,4,2,15,12,48,26,1,82,10,13,8,12,28,1,72,26,16,3,7,2,2,1,1,70,8,72,30,15,26,4,10,29,1,84,43,41,1,10,19,59,7,2,8,23,7,10,1,6,3,13,43,39,3,50,34,22,4,1,16,16,35,1,3,71,5,28,2,14,2,5,14,19,11,51,10,1,2,52,29,9,77,54,45,98,8,2,15,90,56,16,83,8,46,10,1,12,4,96,13,1,5,1,10,2,3,15,2,3,4,28,2,13,14,11,11,1,48,5,6,2,45,1,2,1,1,29,60,19,46,19,31,21,19,6,10,38,14,46,3,10,5,1,4,23,23,9,1,1,20,1,7,3,31,13,3,13,14,3,82,2,3,77,46,1,1,3,84,42,21,1,3,80,2,5,5,53,2,6,2,3,9,26,2,2,1,18,26,20,1,2,62,20,7,44,23,14,5,4,16,38,3,1,38,1,38,1,53,19,33,1,11,15,14,54,39,57,6,49,55,51,18,2,45,16,2,5,21,6,38,33,37,30,88,92,6,82,3,21,1,93,2,1,53,82,2,15,78,64,1,3,7,17,8,12,48,57,41,14,16,23,8,7,85,29,1,81,33,12,95,34,29,5,3,14,83,6,10,4,95,23,66,25,32,47,32,1,28,28,82,7,1,9,3,1,11,23,1,30,40,4,87,4,6,2,16,24,1,3,10,6,18,2,3,23,3,9,35,1,71,5,32,1,86,91,2,31,39,7,15,65,5,1,37,9,1,6,53,16,10,12,5,32,1,3,3,2,2,24,1,9,30,24,1,13,89,1,7,56,3,1,54,55,1,71,1,1,4,5,5,5,10,8,47,26,19,48,13,39,9,60,2,4,41,4,8,2,56,1,3,1,3,11,1,2,1,1,13,6,33,86,37,33,6,9,1,4,82,71,45,9,47,4,5,77,38,32,5,56,17,1,25,26,7,2,1,3,55,26,4,13,1,1,91,7,67,11,22,21,4,4,92,89,5,22,24,1,5,1,49,6,57,12,66,1,2,5,4,75,5,14,14,1,1,94,6,4,40,2,46,17,18,56,7,45,1,2,4,78,7,5,18,29,30,15,4,6,9,1,42,35,81,11,94,1,25,12,9,2,32,18,78,23,41,81,18,22,1,66,2,2,11,1,38,92,31,4,10,1,57,2,2,4,10,1,2,1,4,1,5,23,9,2,4,2,8,1,44,18,3,42,43,2,17,2,13,4,1,1,37,16,45,19,1,24,21,2,81,1,40,38,68,4,1,46,3,62,44,74,1,96,6,75,2,2,93,5,8,2,3,4,16,6,1,1,88,5,6,25,2,99,1,12,67,86,21,6,1,3,37,7,42,2,2,1,2,4,9,2,19,1,8,78,41,6,8,17,28,5,56,24,13,49,5,11,12,8,3,3,1,25,7,4,48,1,21,5,7,14,1,44,11,66,83,3,3,4,2,81,4,5,5,48,1,73,19,12,1,9,47,4,50,31,16,25,20,5,1,1,17,1,2,9,16,5,1,5,57,40,57,27,25,17,26,67,99,12,15,3,1,30,37,1,6,4,47,1,2,1,4,2,75,6,3,38,13,1,86,14,8,75,73,40,69,6,38,21,2,2,25,94,3,4,8,2,12,7,9,12,3,26,1,13,3,6,8,16,18,69,66,17,6,2,34,13,14,7,5,71,12,18,12,5,2,4,1,25,5,2,2,2,76,27,64,24,28,1,8,88,2,2,30,23,1,6,4,7,11,69,1,73,6,1,6,18,1,38,40,15,67,1,4,20,10,7,4,1,15,5,48,6,17,4,59,4,1,96,45,29,24,4,47,72,62,3,1,90,8,52,2,7,2,48,3,7,6,1,15,12,4,10,5,5,6,2,56,44,26,22,50,25,4,2,4,1,53,9,92,1,47,1,24,1,15,85,1,22,13,26,27,1,34,1,79,1,12,24,1,16,1,1,12,46,7,1,36,3,7,1,10,2,42,1,20,78,1,79,5,45,52,3,3,62,84,77,4,7,91,9,52,2,2,1,2,7,3,60,1,1,19,13,14,69,97,24,4,11,7,34,13,3,1,2,10,1,32,2,15,3,21,1,8,83,3,9,84,9,11,43,2,8,8,5,9,84,60,12,3,96,25,2,1,3,22,1,1,3,92,1,3,94,10,46,57,43,13,8,83,14,3,23,6,19,64,60,1,10,2,1,1,52,53,22,3,2,7,24,2,9,30,3,7,1,49,71,5,5,47,19,9,5,5,3,5,4,12,74,24,2,2,13,52,15,2,51,1,50,27,65,1,30,92,5,4,3,69,27,14,66,1,6,11,1,5,19,1,7,2,3,11,3,19,35,1,12,1,1,1,3,4,10,2,38,4,9,46,70,45,76,21,4,1,2,16,4,2,21,5,38,42,9,23,56,10,6,1,1,33,80,14,18,14,27,50,45,2,9,22,1,15,81,58,13,4,1,32,1,7,54,1,24,29,2,22,21,6,30,2,56,2,5,3,7,15,2,57,6,60,1,10,60,10,3,3,61,3,8,38,2,13,11,1,2,1,2,18,40,81,6,65,60,40,2,40,63,46,1,98,19,15,1,5,41,31,2,26,76,52,2,48,33,69,83,20,8,19,4,86,1,16,1,1,75,58,55,43,32,50,31,1,38,35,20,7,10,2,1,1,15,1,41,1,1,5,2,1,2,8,1,1,80,11,29,1,1,2,2,1,1,5,4,64,49,10,82,1,1,20,7,42,4,3,2,1,13,10,15,40,22,4,1,33,46,50,90,3,21,6,66,21,11,16,18,2,13,20,5,17,65,97,5,18,17,92,5,3,2,3,3,82,26,2,92,86,4,2,30,7,20,15,6,1,38,24,7,2,26,12,1,16,8,82,14,11,98,5,3,8,1,3,1,10,1,19,4,87,20,5,1,8,52,70,1,3,2,15,51,6,7,33,25,38,34,63,2,1,36,8,7,98,1,1,3,12,1,2,6,62,1,3,17,6,7,28,1,3,59,1,2,5,1,1,11,6,49,75,92,16,11,26,4,63,2,79,18,44,5,3,7,61,2,5,5,2,2,30,1,7,15,1,27,1,3,2,8,3,6,3,2,13,10,1,2,2,11,30,1,12,1,12,23,7,3,29,55,7,5,17,3,60,9,92,1,74,28,17,20,8,74,39,68,62,13,30,1,11,1,2,8,9,1,71,4,87,1,3,87,16,4,24,25,1,17,69,4,1,1,2,2,33,46,93,6,17,92,2,95,18,6,1,16,3,44,3,2,21,8,4,49,5,76,84,2,32,91,3,3,60,28,22,1,30,1,77,2,2,85,1,65,28,93,87,23,47,46,26,34,13,14,1,9,2,44,5,40,1,16,4,1,1,3,5,14,98,23,38,13,6,1,28,1,11,1,5,84,7,1,1,51,71,2,87,4,4,1,4,35,67,1,14,1,15,1,10,12,14,2,3,12,1,50,37,2,67,38,25,3,9,1,4,58,33,25,10,1,27,3,6,31,40,2,22,1,39,1,1,2,23,4,13,23,31,3,1,72,15,4,10,7,1,71,2,69,27,4,1,67,11,4,7,1,10,68,6,9,15,34,2,3,22,1,7,7,19,15,29,2,2,14,19,4,2,10,7,31,1,70,10,89,28,2,30,54,4,8,85,2,54,13,41,96,2,70,12,15,47,1,14,1,18,1,14,31,80,1,1,2,6,47,78,39,78,12,13,2,11,62,13,3,5,1,62,23,38,3,1,2,1,50,37,59,5,46,1,51,7,15,45,67,10,82,3,4,15,5,72,1,53,31,1,50,84,20,90,13,6,4,26,9,1,26,28,5,7,52,6,25,83,68,28,61,85,1,11,1,3,6,17,2,16,68,6,4,1,18,2,21,12,1,5,1,48,18,1,6,5,9,50,1,19,1,40,69,38,41,16,6,2,8,6,2,17,70,3,99,3,44,39,1,5,4,91,6,28,2,8,17,8,11,45,19,4,2,4,34,67,57,4,4,7,1,16,1,36,3,2,5,6,9,7,5,2,11,47,98,1,3,12,16,5,66,1,1,7,32,6,46,27,44,6,3,23,4,36,38,19,4,88,15,8,55,3,8,3,6,11,50,73,5,9,1,33,8,1,1,14,6,2,1,70,1,4,3,35,3,42,4,3,48,1,2,4,51,36,11,9,31,1,1,48,11,28,15,7,88,3,6,36,13,33,37,18,26,20,4,3,88,1,13,13,23,12,1,2,1,6,2,79,1,1,3,3,1,10,1,14,11,23,80,9,26,41,16,24,2,6,1,6,9,1,2,5,53,44,14,46,31,31,2,2,12,23,4,2,13,8,3,3,1,27,4,15,17,2,9,3,13,52,34,1,15,1,36,6,6,5,1,4,52,26,32,1,11,1,8,14,3,10,8,3,1,5,22,21,92,1,59,26,77,10,2,3,78,3,5,1,2,33,5,42,2,5,1,3,30,74,13,20,1,1,27,1,1,7,17,16,3,51,37,14,75,4,3,35,14,26,79,4,4,1,4,2,11,4,94,4,2,4,8,50,8,1,1,1,3,34,2,5,35,29,1,1,20,1,11,48,9,2,11,29,4,2,5,31,1,7,1,4,1,21,71,19,75,5,1,1,13,1,1,1,1,10,2,6,39,4,2,9,12,54,3,6,74,53,2,30,18,5,56,90,2,14,17,66,8,29,11,19,6,84,15,5,6,5,47,1,1,2,3,44,30,2,50,5,2,15,25,10,8,61,1,11,3,40,4,4,97,11,17,1,18,16,1,29,40,2,4,6,18,17,24,14,7,3,2,8,4,72,9,3,3,1,77,75,38,18,9,2,1,90,5,5,48,30,71,17,86,1,30,4,4,67,3,1,2,4,8,60,9,1,7,2,5,1,4,5,1,11,99,7,4,30,24,64,1,93,15,3,22,11,18,29,7,7,11,4,7,7,1,36,2,10,1,2,1,6,43,73,3,1,2,20,95,51,62,20,5,54,6,1,6,3,53,4,4,14,22,4,92,16,1,1,13,5,97,35,47,42,18,10,2,19,1,73,24,48,1,15,2,88,27,5,1,18,28,42,38,98,2,35,1,93,3,72,1,4,7,12,9,67,31,2,73,11,65,4,3,1,22}
Returns: 1.1866517983107023E9