This repository was archived by the owner on Sep 20, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathbricks-falling-when-hit_test.go
executable file
·89 lines (73 loc) · 318 KB
/
bricks-falling-when-hit_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package problem0803
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
)
// tcs is testcase slice
var tcs = []struct {
grid [][]int
hits [][]int
ans []int
}{
{
[][]int { { 1,0,1 },{ 0,0,1 } },
[][]int { { 1,0 },{ 0,0 } },
[]int { 0,0 },
},
{
[][]int { { 1 },{ 1 },{ 1 },{ 1 },{ 1 } },
[][]int { { 3,0 },{ 4,0 },{ 1,0 },{ 2,0 },{ 0,0 } },
[]int { 1,0,1,0,0 },
},
{
[][]int{{1, 0, 0, 0}, {1, 1, 1, 0}},
[][]int{{1, 0}},
[]int{2},
},
{
[][]int{{1, 0, 0, 0}, {1, 1, 0, 0}},
[][]int{{1, 1}, {1, 0}},
[]int{0, 0},
},
{
[][]int{{1, 0, 0, 0, 0, 0}, {1, 0, 0, 0, 0, 0}, {1, 1, 1, 1, 1, 0}},
[][]int{{2, 1}},
[]int{3},
},
{
[][]int{{1, 0, 0, 0, 0, 0}, {1, 0, 0, 0, 0, 0}, {1, 1, 1, 1, 1, 0}},
[][]int{{2, 4}},
[]int{0},
},
{
[][]int{{1, 0, 0, 0, 0, 0}, {1, 0, 0, 0, 0, 0}, {1, 1, 1, 1, 1, 0}, {1, 1, 1, 1, 1, 1}},
[][]int{{2, 0}},
[]int{10},
},
{
[][]int{{1, 0, 0, 0, 0, 0}, {1, 0, 0, 0, 1, 0}, {1, 1, 1, 1, 1, 0}, {1, 1, 1, 1, 1, 1}},
[][]int{{2, 0}},
[]int{11},
},
{
[][]int { { 1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 } },
[][]int {{169,0},{169,1},{169,2},{169,3},{169,4},{169,5},{169,6},{169,7},{169,8},{169,9},{169,10},{169,11},{169,12},{169,13},{169,14},{169,15},{169,16},{169,17},{169,18},{169,19},{169,20},{169,21},{169,22},{169,23},{169,24},{169,25},{169,26},{169,27},{169,28},{169,29},{169,30},{169,31},{169,32},{169,33},{169,34},{169,35},{169,36},{169,37},{169,38},{169,39},{169,40},{169,41},{169,42},{169,43},{169,44},{169,45},{169,46},{169,47},{169,48},{169,49},{169,50},{169,51},{169,52},{169,53},{169,54},{169,55},{169,56},{169,57},{169,58},{169,59},{169,60},{169,61},{169,62},{169,63},{169,64},{169,65},{169,66},{169,67},{169,68},{169,69},{169,70},{169,71},{169,72},{169,73},{169,74},{169,75},{169,76},{169,77},{169,78},{169,79},{169,80},{169,81},{169,82},{169,83},{169,84},{169,85},{169,86},{169,87},{169,88},{169,89},{169,90},{169,91},{169,92},{169,93},{169,94},{169,95},{169,96},{169,97},{169,98},{169,99},{169,100},{169,101},{169,102},{169,103},{169,104},{169,105},{169,106},{169,107},{169,108},{169,109},{169,110},{169,111},{169,112},{169,113},{169,114},{169,115},{169,116},{169,117},{169,118},{169,119},{169,120},{169,121},{169,122},{169,123},{169,124},{169,125},{169,126},{169,127},{169,128},{169,129},{169,130},{169,131},{169,132},{169,133},{169,134},{169,135},{169,136},{169,137},{169,138},{169,139},{169,140},{169,141},{169,142},{169,143},{169,144},{169,145},{169,146},{169,147},{169,148},{169,149},{169,150},{168,0},{168,1},{168,2},{168,3},{168,4},{168,5},{168,6},{168,7},{168,8},{168,9},{168,10},{168,11},{168,12},{168,13},{168,14},{168,15},{168,16},{168,17},{168,18},{168,19},{168,20},{168,21},{168,22},{168,23},{168,24},{168,25},{168,26},{168,27},{168,28},{168,29},{168,30},{168,31},{168,32},{168,33},{168,34},{168,35},{168,36},{168,37},{168,38},{168,39},{168,40},{168,41},{168,42},{168,43},{168,44},{168,45},{168,46},{168,47},{168,48},{168,49},{168,50},{168,51},{168,52},{168,53},{168,54},{168,55},{168,56},{168,57},{168,58},{168,59},{168,60},{168,61},{168,62},{168,63},{168,64},{168,65},{168,66},{168,67},{168,68},{168,69},{168,70},{168,71},{168,72},{168,73},{168,74},{168,75},{168,76},{168,77},{168,78},{168,79},{168,80},{168,81},{168,82},{168,83},{168,84},{168,85},{168,86},{168,87},{168,88},{168,89},{168,90},{168,91},{168,92},{168,93},{168,94},{168,95},{168,96},{168,97},{168,98},{168,99},{168,100},{168,101},{168,102},{168,103},{168,104},{168,105},{168,106},{168,107},{168,108},{168,109},{168,110},{168,111},{168,112},{168,113},{168,114},{168,115},{168,116},{168,117},{168,118},{168,119},{168,120},{168,121},{168,122},{168,123},{168,124},{168,125},{168,126},{168,127},{168,128},{168,129},{168,130},{168,131},{168,132},{168,133},{168,134},{168,135},{168,136},{168,137},{168,138},{168,139},{168,140},{168,141},{168,142},{168,143},{168,144},{168,145},{168,146},{168,147},{168,148},{168,149},{168,150},{167,0},{167,1},{167,2},{167,3},{167,4},{167,5},{167,6},{167,7},{167,8},{167,9},{167,10},{167,11},{167,12},{167,13},{167,14},{167,15},{167,16},{167,17},{167,18},{167,19},{167,20},{167,21},{167,22},{167,23},{167,24},{167,25},{167,26},{167,27},{167,28},{167,29},{167,30},{167,31},{167,32},{167,33},{167,34},{167,35},{167,36},{167,37},{167,38},{167,39},{167,40},{167,41},{167,42},{167,43},{167,44},{167,45},{167,46},{167,47},{167,48},{167,49},{167,50},{167,51},{167,52},{167,53},{167,54},{167,55},{167,56},{167,57},{167,58},{167,59},{167,60},{167,61},{167,62},{167,63},{167,64},{167,65},{167,66},{167,67},{167,68},{167,69},{167,70},{167,71},{167,72},{167,73},{167,74},{167,75},{167,76},{167,77},{167,78},{167,79},{167,80},{167,81},{167,82},{167,83},{167,84},{167,85},{167,86},{167,87},{167,88},{167,89},{167,90},{167,91},{167,92},{167,93},{167,94},{167,95},{167,96},{167,97},{167,98},{167,99},{167,100},{167,101},{167,102},{167,103},{167,104},{167,105},{167,106},{167,107},{167,108},{167,109},{167,110},{167,111},{167,112},{167,113},{167,114},{167,115},{167,116},{167,117},{167,118},{167,119},{167,120},{167,121},{167,122},{167,123},{167,124},{167,125},{167,126},{167,127},{167,128},{167,129},{167,130},{167,131},{167,132},{167,133},{167,134},{167,135},{167,136},{167,137},{167,138},{167,139},{167,140},{167,141},{167,142},{167,143},{167,144},{167,145},{167,146},{167,147},{167,148},{167,149},{167,150},{166,0},{166,1},{166,2},{166,3},{166,4},{166,5},{166,6},{166,7},{166,8},{166,9},{166,10},{166,11},{166,12},{166,13},{166,14},{166,15},{166,16},{166,17},{166,18},{166,19},{166,20},{166,21},{166,22},{166,23},{166,24},{166,25},{166,26},{166,27},{166,28},{166,29},{166,30},{166,31},{166,32},{166,33},{166,34},{166,35},{166,36},{166,37},{166,38},{166,39},{166,40},{166,41},{166,42},{166,43},{166,44},{166,45},{166,46},{166,47},{166,48},{166,49},{166,50},{166,51},{166,52},{166,53},{166,54},{166,55},{166,56},{166,57},{166,58},{166,59},{166,60},{166,61},{166,62},{166,63},{166,64},{166,65},{166,66},{166,67},{166,68},{166,69},{166,70},{166,71},{166,72},{166,73},{166,74},{166,75},{166,76},{166,77},{166,78},{166,79},{166,80},{166,81},{166,82},{166,83},{166,84},{166,85},{166,86},{166,87},{166,88},{166,89},{166,90},{166,91},{166,92},{166,93},{166,94},{166,95},{166,96},{166,97},{166,98},{166,99},{166,100},{166,101},{166,102},{166,103},{166,104},{166,105},{166,106},{166,107},{166,108},{166,109},{166,110},{166,111},{166,112},{166,113},{166,114},{166,115},{166,116},{166,117},{166,118},{166,119},{166,120},{166,121},{166,122},{166,123},{166,124},{166,125},{166,126},{166,127},{166,128},{166,129},{166,130},{166,131},{166,132},{166,133},{166,134},{166,135},{166,136},{166,137},{166,138},{166,139},{166,140},{166,141},{166,142},{166,143},{166,144},{166,145},{166,146},{166,147},{166,148},{166,149},{166,150},{165,0},{165,1},{165,2},{165,3},{165,4},{165,5},{165,6},{165,7},{165,8},{165,9},{165,10},{165,11},{165,12},{165,13},{165,14},{165,15},{165,16},{165,17},{165,18},{165,19},{165,20},{165,21},{165,22},{165,23},{165,24},{165,25},{165,26},{165,27},{165,28},{165,29},{165,30},{165,31},{165,32},{165,33},{165,34},{165,35},{165,36},{165,37},{165,38},{165,39},{165,40},{165,41},{165,42},{165,43},{165,44},{165,45},{165,46},{165,47},{165,48},{165,49},{165,50},{165,51},{165,52},{165,53},{165,54},{165,55},{165,56},{165,57},{165,58},{165,59},{165,60},{165,61},{165,62},{165,63},{165,64},{165,65},{165,66},{165,67},{165,68},{165,69},{165,70},{165,71},{165,72},{165,73},{165,74},{165,75},{165,76},{165,77},{165,78},{165,79},{165,80},{165,81},{165,82},{165,83},{165,84},{165,85},{165,86},{165,87},{165,88},{165,89},{165,90},{165,91},{165,92},{165,93},{165,94},{165,95},{165,96},{165,97},{165,98},{165,99},{165,100},{165,101},{165,102},{165,103},{165,104},{165,105},{165,106},{165,107},{165,108},{165,109},{165,110},{165,111},{165,112},{165,113},{165,114},{165,115},{165,116},{165,117},{165,118},{165,119},{165,120},{165,121},{165,122},{165,123},{165,124},{165,125},{165,126},{165,127},{165,128},{165,129},{165,130},{165,131},{165,132},{165,133},{165,134},{165,135},{165,136},{165,137},{165,138},{165,139},{165,140},{165,141},{165,142},{165,143},{165,144},{165,145},{165,146},{165,147},{165,148},{165,149},{165,150},{164,0},{164,1},{164,2},{164,3},{164,4},{164,5},{164,6},{164,7},{164,8},{164,9},{164,10},{164,11},{164,12},{164,13},{164,14},{164,15},{164,16},{164,17},{164,18},{164,19},{164,20},{164,21},{164,22},{164,23},{164,24},{164,25},{164,26},{164,27},{164,28},{164,29},{164,30},{164,31},{164,32},{164,33},{164,34},{164,35},{164,36},{164,37},{164,38},{164,39},{164,40},{164,41},{164,42},{164,43},{164,44},{164,45},{164,46},{164,47},{164,48},{164,49},{164,50},{164,51},{164,52},{164,53},{164,54},{164,55},{164,56},{164,57},{164,58},{164,59},{164,60},{164,61},{164,62},{164,63},{164,64},{164,65},{164,66},{164,67},{164,68},{164,69},{164,70},{164,71},{164,72},{164,73},{164,74},{164,75},{164,76},{164,77},{164,78},{164,79},{164,80},{164,81},{164,82},{164,83},{164,84},{164,85},{164,86},{164,87},{164,88},{164,89},{164,90},{164,91},{164,92},{164,93},{164,94},{164,95},{164,96},{164,97},{164,98},{164,99},{164,100},{164,101},{164,102},{164,103},{164,104},{164,105},{164,106},{164,107},{164,108},{164,109},{164,110},{164,111},{164,112},{164,113},{164,114},{164,115},{164,116},{164,117},{164,118},{164,119},{164,120},{164,121},{164,122},{164,123},{164,124},{164,125},{164,126},{164,127},{164,128},{164,129},{164,130},{164,131},{164,132},{164,133},{164,134},{164,135},{164,136},{164,137},{164,138},{164,139},{164,140},{164,141},{164,142},{164,143},{164,144},{164,145},{164,146},{164,147},{164,148},{164,149},{164,150},{163,0},{163,1},{163,2},{163,3},{163,4},{163,5},{163,6},{163,7},{163,8},{163,9},{163,10},{163,11},{163,12},{163,13},{163,14},{163,15},{163,16},{163,17},{163,18},{163,19},{163,20},{163,21},{163,22},{163,23},{163,24},{163,25},{163,26},{163,27},{163,28},{163,29},{163,30},{163,31},{163,32},{163,33},{163,34},{163,35},{163,36},{163,37},{163,38},{163,39},{163,40},{163,41},{163,42},{163,43},{163,44},{163,45},{163,46},{163,47},{163,48},{163,49},{163,50},{163,51},{163,52},{163,53},{163,54},{163,55},{163,56},{163,57},{163,58},{163,59},{163,60},{163,61},{163,62},{163,63},{163,64},{163,65},{163,66},{163,67},{163,68},{163,69},{163,70},{163,71},{163,72},{163,73},{163,74},{163,75},{163,76},{163,77},{163,78},{163,79},{163,80},{163,81},{163,82},{163,83},{163,84},{163,85},{163,86},{163,87},{163,88},{163,89},{163,90},{163,91},{163,92},{163,93},{163,94},{163,95},{163,96},{163,97},{163,98},{163,99},{163,100},{163,101},{163,102},{163,103},{163,104},{163,105},{163,106},{163,107},{163,108},{163,109},{163,110},{163,111},{163,112},{163,113},{163,114},{163,115},{163,116},{163,117},{163,118},{163,119},{163,120},{163,121},{163,122},{163,123},{163,124},{163,125},{163,126},{163,127},{163,128},{163,129},{163,130},{163,131},{163,132},{163,133},{163,134},{163,135},{163,136},{163,137},{163,138},{163,139},{163,140},{163,141},{163,142},{163,143},{163,144},{163,145},{163,146},{163,147},{163,148},{163,149},{163,150},{162,0},{162,1},{162,2},{162,3},{162,4},{162,5},{162,6},{162,7},{162,8},{162,9},{162,10},{162,11},{162,12},{162,13},{162,14},{162,15},{162,16},{162,17},{162,18},{162,19},{162,20},{162,21},{162,22},{162,23},{162,24},{162,25},{162,26},{162,27},{162,28},{162,29},{162,30},{162,31},{162,32},{162,33},{162,34},{162,35},{162,36},{162,37},{162,38},{162,39},{162,40},{162,41},{162,42},{162,43},{162,44},{162,45},{162,46},{162,47},{162,48},{162,49},{162,50},{162,51},{162,52},{162,53},{162,54},{162,55},{162,56},{162,57},{162,58},{162,59},{162,60},{162,61},{162,62},{162,63},{162,64},{162,65},{162,66},{162,67},{162,68},{162,69},{162,70},{162,71},{162,72},{162,73},{162,74},{162,75},{162,76},{162,77},{162,78},{162,79},{162,80},{162,81},{162,82},{162,83},{162,84},{162,85},{162,86},{162,87},{162,88},{162,89},{162,90},{162,91},{162,92},{162,93},{162,94},{162,95},{162,96},{162,97},{162,98},{162,99},{162,100},{162,101},{162,102},{162,103},{162,104},{162,105},{162,106},{162,107},{162,108},{162,109},{162,110},{162,111},{162,112},{162,113},{162,114},{162,115},{162,116},{162,117},{162,118},{162,119},{162,120},{162,121},{162,122},{162,123},{162,124},{162,125},{162,126},{162,127},{162,128},{162,129},{162,130},{162,131},{162,132},{162,133},{162,134},{162,135},{162,136},{162,137},{162,138},{162,139},{162,140},{162,141},{162,142},{162,143},{162,144},{162,145},{162,146},{162,147},{162,148},{162,149},{162,150},{161,0},{161,1},{161,2},{161,3},{161,4},{161,5},{161,6},{161,7},{161,8},{161,9},{161,10},{161,11},{161,12},{161,13},{161,14},{161,15},{161,16},{161,17},{161,18},{161,19},{161,20},{161,21},{161,22},{161,23},{161,24},{161,25},{161,26},{161,27},{161,28},{161,29},{161,30},{161,31},{161,32},{161,33},{161,34},{161,35},{161,36},{161,37},{161,38},{161,39},{161,40},{161,41},{161,42},{161,43},{161,44},{161,45},{161,46},{161,47},{161,48},{161,49},{161,50},{161,51},{161,52},{161,53},{161,54},{161,55},{161,56},{161,57},{161,58},{161,59},{161,60},{161,61},{161,62},{161,63},{161,64},{161,65},{161,66},{161,67},{161,68},{161,69},{161,70},{161,71},{161,72},{161,73},{161,74},{161,75},{161,76},{161,77},{161,78},{161,79},{161,80},{161,81},{161,82},{161,83},{161,84},{161,85},{161,86},{161,87},{161,88},{161,89},{161,90},{161,91},{161,92},{161,93},{161,94},{161,95},{161,96},{161,97},{161,98},{161,99},{161,100},{161,101},{161,102},{161,103},{161,104},{161,105},{161,106},{161,107},{161,108},{161,109},{161,110},{161,111},{161,112},{161,113},{161,114},{161,115},{161,116},{161,117},{161,118},{161,119},{161,120},{161,121},{161,122},{161,123},{161,124},{161,125},{161,126},{161,127},{161,128},{161,129},{161,130},{161,131},{161,132},{161,133},{161,134},{161,135},{161,136},{161,137},{161,138},{161,139},{161,140},{161,141},{161,142},{161,143},{161,144},{161,145},{161,146},{161,147},{161,148},{161,149},{161,150},{160,0},{160,1},{160,2},{160,3},{160,4},{160,5},{160,6},{160,7},{160,8},{160,9},{160,10},{160,11},{160,12},{160,13},{160,14},{160,15},{160,16},{160,17},{160,18},{160,19},{160,20},{160,21},{160,22},{160,23},{160,24},{160,25},{160,26},{160,27},{160,28},{160,29},{160,30},{160,31},{160,32},{160,33},{160,34},{160,35},{160,36},{160,37},{160,38},{160,39},{160,40},{160,41},{160,42},{160,43},{160,44},{160,45},{160,46},{160,47},{160,48},{160,49},{160,50},{160,51},{160,52},{160,53},{160,54},{160,55},{160,56},{160,57},{160,58},{160,59},{160,60},{160,61},{160,62},{160,63},{160,64},{160,65},{160,66},{160,67},{160,68},{160,69},{160,70},{160,71},{160,72},{160,73},{160,74},{160,75},{160,76},{160,77},{160,78},{160,79},{160,80},{160,81},{160,82},{160,83},{160,84},{160,85},{160,86},{160,87},{160,88},{160,89},{160,90},{160,91},{160,92},{160,93},{160,94},{160,95},{160,96},{160,97},{160,98},{160,99},{160,100},{160,101},{160,102},{160,103},{160,104},{160,105},{160,106},{160,107},{160,108},{160,109},{160,110},{160,111},{160,112},{160,113},{160,114},{160,115},{160,116},{160,117},{160,118},{160,119},{160,120},{160,121},{160,122},{160,123},{160,124},{160,125},{160,126},{160,127},{160,128},{160,129},{160,130},{160,131},{160,132},{160,133},{160,134},{160,135},{160,136},{160,137},{160,138},{160,139},{160,140},{160,141},{160,142},{160,143},{160,144},{160,145},{160,146},{160,147},{160,148},{160,149},{160,150},{159,0},{159,1},{159,2},{159,3},{159,4},{159,5},{159,6},{159,7},{159,8},{159,9},{159,10},{159,11},{159,12},{159,13},{159,14},{159,15},{159,16},{159,17},{159,18},{159,19},{159,20},{159,21},{159,22},{159,23},{159,24},{159,25},{159,26},{159,27},{159,28},{159,29},{159,30},{159,31},{159,32},{159,33},{159,34},{159,35},{159,36},{159,37},{159,38},{159,39},{159,40},{159,41},{159,42},{159,43},{159,44},{159,45},{159,46},{159,47},{159,48},{159,49},{159,50},{159,51},{159,52},{159,53},{159,54},{159,55},{159,56},{159,57},{159,58},{159,59},{159,60},{159,61},{159,62},{159,63},{159,64},{159,65},{159,66},{159,67},{159,68},{159,69},{159,70},{159,71},{159,72},{159,73},{159,74},{159,75},{159,76},{159,77},{159,78},{159,79},{159,80},{159,81},{159,82},{159,83},{159,84},{159,85},{159,86},{159,87},{159,88},{159,89},{159,90},{159,91},{159,92},{159,93},{159,94},{159,95},{159,96},{159,97},{159,98},{159,99},{159,100},{159,101},{159,102},{159,103},{159,104},{159,105},{159,106},{159,107},{159,108},{159,109},{159,110},{159,111},{159,112},{159,113},{159,114},{159,115},{159,116},{159,117},{159,118},{159,119},{159,120},{159,121},{159,122},{159,123},{159,124},{159,125},{159,126},{159,127},{159,128},{159,129},{159,130},{159,131},{159,132},{159,133},{159,134},{159,135},{159,136},{159,137},{159,138},{159,139},{159,140},{159,141},{159,142},{159,143},{159,144},{159,145},{159,146},{159,147},{159,148},{159,149},{159,150},{158,0},{158,1},{158,2},{158,3},{158,4},{158,5},{158,6},{158,7},{158,8},{158,9},{158,10},{158,11},{158,12},{158,13},{158,14},{158,15},{158,16},{158,17},{158,18},{158,19},{158,20},{158,21},{158,22},{158,23},{158,24},{158,25},{158,26},{158,27},{158,28},{158,29},{158,30},{158,31},{158,32},{158,33},{158,34},{158,35},{158,36},{158,37},{158,38},{158,39},{158,40},{158,41},{158,42},{158,43},{158,44},{158,45},{158,46},{158,47},{158,48},{158,49},{158,50},{158,51},{158,52},{158,53},{158,54},{158,55},{158,56},{158,57},{158,58},{158,59},{158,60},{158,61},{158,62},{158,63},{158,64},{158,65},{158,66},{158,67},{158,68},{158,69},{158,70},{158,71},{158,72},{158,73},{158,74},{158,75},{158,76},{158,77},{158,78},{158,79},{158,80},{158,81},{158,82},{158,83},{158,84},{158,85},{158,86},{158,87},{158,88},{158,89},{158,90},{158,91},{158,92},{158,93},{158,94},{158,95},{158,96},{158,97},{158,98},{158,99},{158,100},{158,101},{158,102},{158,103},{158,104},{158,105},{158,106},{158,107},{158,108},{158,109},{158,110},{158,111},{158,112},{158,113},{158,114},{158,115},{158,116},{158,117},{158,118},{158,119},{158,120},{158,121},{158,122},{158,123},{158,124},{158,125},{158,126},{158,127},{158,128},{158,129},{158,130},{158,131},{158,132},{158,133},{158,134},{158,135},{158,136},{158,137},{158,138},{158,139},{158,140},{158,141},{158,142},{158,143},{158,144},{158,145},{158,146},{158,147},{158,148},{158,149},{158,150},{157,0},{157,1},{157,2},{157,3},{157,4},{157,5},{157,6},{157,7},{157,8},{157,9},{157,10},{157,11},{157,12},{157,13},{157,14},{157,15},{157,16},{157,17},{157,18},{157,19},{157,20},{157,21},{157,22},{157,23},{157,24},{157,25},{157,26},{157,27},{157,28},{157,29},{157,30},{157,31},{157,32},{157,33},{157,34},{157,35},{157,36},{157,37},{157,38},{157,39},{157,40},{157,41},{157,42},{157,43},{157,44},{157,45},{157,46},{157,47},{157,48},{157,49},{157,50},{157,51},{157,52},{157,53},{157,54},{157,55},{157,56},{157,57},{157,58},{157,59},{157,60},{157,61},{157,62},{157,63},{157,64},{157,65},{157,66},{157,67},{157,68},{157,69},{157,70},{157,71},{157,72},{157,73},{157,74},{157,75},{157,76},{157,77},{157,78},{157,79},{157,80},{157,81},{157,82},{157,83},{157,84},{157,85},{157,86},{157,87},{157,88},{157,89},{157,90},{157,91},{157,92},{157,93},{157,94},{157,95},{157,96},{157,97},{157,98},{157,99},{157,100},{157,101},{157,102},{157,103},{157,104},{157,105},{157,106},{157,107},{157,108},{157,109},{157,110},{157,111},{157,112},{157,113},{157,114},{157,115},{157,116},{157,117},{157,118},{157,119},{157,120},{157,121},{157,122},{157,123},{157,124},{157,125},{157,126},{157,127},{157,128},{157,129},{157,130},{157,131},{157,132},{157,133},{157,134},{157,135},{157,136},{157,137},{157,138},{157,139},{157,140},{157,141},{157,142},{157,143},{157,144},{157,145},{157,146},{157,147},{157,148},{157,149},{157,150},{156,0},{156,1},{156,2},{156,3},{156,4},{156,5},{156,6},{156,7},{156,8},{156,9},{156,10},{156,11},{156,12},{156,13},{156,14},{156,15},{156,16},{156,17},{156,18},{156,19},{156,20},{156,21},{156,22},{156,23},{156,24},{156,25},{156,26},{156,27},{156,28},{156,29},{156,30},{156,31},{156,32},{156,33},{156,34},{156,35},{156,36},{156,37},{156,38},{156,39},{156,40},{156,41},{156,42},{156,43},{156,44},{156,45},{156,46},{156,47},{156,48},{156,49},{156,50},{156,51},{156,52},{156,53},{156,54},{156,55},{156,56},{156,57},{156,58},{156,59},{156,60},{156,61},{156,62},{156,63},{156,64},{156,65},{156,66},{156,67},{156,68},{156,69},{156,70},{156,71},{156,72},{156,73},{156,74},{156,75},{156,76},{156,77},{156,78},{156,79},{156,80},{156,81},{156,82},{156,83},{156,84},{156,85},{156,86},{156,87},{156,88},{156,89},{156,90},{156,91},{156,92},{156,93},{156,94},{156,95},{156,96},{156,97},{156,98},{156,99},{156,100},{156,101},{156,102},{156,103},{156,104},{156,105},{156,106},{156,107},{156,108},{156,109},{156,110},{156,111},{156,112},{156,113},{156,114},{156,115},{156,116},{156,117},{156,118},{156,119},{156,120},{156,121},{156,122},{156,123},{156,124},{156,125},{156,126},{156,127},{156,128},{156,129},{156,130},{156,131},{156,132},{156,133},{156,134},{156,135},{156,136},{156,137},{156,138},{156,139},{156,140},{156,141},{156,142},{156,143},{156,144},{156,145},{156,146},{156,147},{156,148},{156,149},{156,150},{155,0},{155,1},{155,2},{155,3},{155,4},{155,5},{155,6},{155,7},{155,8},{155,9},{155,10},{155,11},{155,12},{155,13},{155,14},{155,15},{155,16},{155,17},{155,18},{155,19},{155,20},{155,21},{155,22},{155,23},{155,24},{155,25},{155,26},{155,27},{155,28},{155,29},{155,30},{155,31},{155,32},{155,33},{155,34},{155,35},{155,36},{155,37},{155,38},{155,39},{155,40},{155,41},{155,42},{155,43},{155,44},{155,45},{155,46},{155,47},{155,48},{155,49},{155,50},{155,51},{155,52},{155,53},{155,54},{155,55},{155,56},{155,57},{155,58},{155,59},{155,60},{155,61},{155,62},{155,63},{155,64},{155,65},{155,66},{155,67},{155,68},{155,69},{155,70},{155,71},{155,72},{155,73},{155,74},{155,75},{155,76},{155,77},{155,78},{155,79},{155,80},{155,81},{155,82},{155,83},{155,84},{155,85},{155,86},{155,87},{155,88},{155,89},{155,90},{155,91},{155,92},{155,93},{155,94},{155,95},{155,96},{155,97},{155,98},{155,99},{155,100},{155,101},{155,102},{155,103},{155,104},{155,105},{155,106},{155,107},{155,108},{155,109},{155,110},{155,111},{155,112},{155,113},{155,114},{155,115},{155,116},{155,117},{155,118},{155,119},{155,120},{155,121},{155,122},{155,123},{155,124},{155,125},{155,126},{155,127},{155,128},{155,129},{155,130},{155,131},{155,132},{155,133},{155,134},{155,135},{155,136},{155,137},{155,138},{155,139},{155,140},{155,141},{155,142},{155,143},{155,144},{155,145},{155,146},{155,147},{155,148},{155,149},{155,150},{154,0},{154,1},{154,2},{154,3},{154,4},{154,5},{154,6},{154,7},{154,8},{154,9},{154,10},{154,11},{154,12},{154,13},{154,14},{154,15},{154,16},{154,17},{154,18},{154,19},{154,20},{154,21},{154,22},{154,23},{154,24},{154,25},{154,26},{154,27},{154,28},{154,29},{154,30},{154,31},{154,32},{154,33},{154,34},{154,35},{154,36},{154,37},{154,38},{154,39},{154,40},{154,41},{154,42},{154,43},{154,44},{154,45},{154,46},{154,47},{154,48},{154,49},{154,50},{154,51},{154,52},{154,53},{154,54},{154,55},{154,56},{154,57},{154,58},{154,59},{154,60},{154,61},{154,62},{154,63},{154,64},{154,65},{154,66},{154,67},{154,68},{154,69},{154,70},{154,71},{154,72},{154,73},{154,74},{154,75},{154,76},{154,77},{154,78},{154,79},{154,80},{154,81},{154,82},{154,83},{154,84},{154,85},{154,86},{154,87},{154,88},{154,89},{154,90},{154,91},{154,92},{154,93},{154,94},{154,95},{154,96},{154,97},{154,98},{154,99},{154,100},{154,101},{154,102},{154,103},{154,104},{154,105},{154,106},{154,107},{154,108},{154,109},{154,110},{154,111},{154,112},{154,113},{154,114},{154,115},{154,116},{154,117},{154,118},{154,119},{154,120},{154,121},{154,122},{154,123},{154,124},{154,125},{154,126},{154,127},{154,128},{154,129},{154,130},{154,131},{154,132},{154,133},{154,134},{154,135},{154,136},{154,137},{154,138},{154,139},{154,140},{154,141},{154,142},{154,143},{154,144},{154,145},{154,146},{154,147},{154,148},{154,149},{154,150},{153,0},{153,1},{153,2},{153,3},{153,4},{153,5},{153,6},{153,7},{153,8},{153,9},{153,10},{153,11},{153,12},{153,13},{153,14},{153,15},{153,16},{153,17},{153,18},{153,19},{153,20},{153,21},{153,22},{153,23},{153,24},{153,25},{153,26},{153,27},{153,28},{153,29},{153,30},{153,31},{153,32},{153,33},{153,34},{153,35},{153,36},{153,37},{153,38},{153,39},{153,40},{153,41},{153,42},{153,43},{153,44},{153,45},{153,46},{153,47},{153,48},{153,49},{153,50},{153,51},{153,52},{153,53},{153,54},{153,55},{153,56},{153,57},{153,58},{153,59},{153,60},{153,61},{153,62},{153,63},{153,64},{153,65},{153,66},{153,67},{153,68},{153,69},{153,70},{153,71},{153,72},{153,73},{153,74},{153,75},{153,76},{153,77},{153,78},{153,79},{153,80},{153,81},{153,82},{153,83},{153,84},{153,85},{153,86},{153,87},{153,88},{153,89},{153,90},{153,91},{153,92},{153,93},{153,94},{153,95},{153,96},{153,97},{153,98},{153,99},{153,100},{153,101},{153,102},{153,103},{153,104},{153,105},{153,106},{153,107},{153,108},{153,109},{153,110},{153,111},{153,112},{153,113},{153,114},{153,115},{153,116},{153,117},{153,118},{153,119},{153,120},{153,121},{153,122},{153,123},{153,124},{153,125},{153,126},{153,127},{153,128},{153,129},{153,130},{153,131},{153,132},{153,133},{153,134},{153,135},{153,136},{153,137},{153,138},{153,139},{153,140},{153,141},{153,142},{153,143},{153,144},{153,145},{153,146},{153,147},{153,148},{153,149},{153,150},{152,0},{152,1},{152,2},{152,3},{152,4},{152,5},{152,6},{152,7},{152,8},{152,9},{152,10},{152,11},{152,12},{152,13},{152,14},{152,15},{152,16},{152,17},{152,18},{152,19},{152,20},{152,21},{152,22},{152,23},{152,24},{152,25},{152,26},{152,27},{152,28},{152,29},{152,30},{152,31},{152,32},{152,33},{152,34},{152,35},{152,36},{152,37},{152,38},{152,39},{152,40},{152,41},{152,42},{152,43},{152,44},{152,45},{152,46},{152,47},{152,48},{152,49},{152,50},{152,51},{152,52},{152,53},{152,54},{152,55},{152,56},{152,57},{152,58},{152,59},{152,60},{152,61},{152,62},{152,63},{152,64},{152,65},{152,66},{152,67},{152,68},{152,69},{152,70},{152,71},{152,72},{152,73},{152,74},{152,75},{152,76},{152,77},{152,78},{152,79},{152,80},{152,81},{152,82},{152,83},{152,84},{152,85},{152,86},{152,87},{152,88},{152,89},{152,90},{152,91},{152,92},{152,93},{152,94},{152,95},{152,96},{152,97},{152,98},{152,99},{152,100},{152,101},{152,102},{152,103},{152,104},{152,105},{152,106},{152,107},{152,108},{152,109},{152,110},{152,111},{152,112},{152,113},{152,114},{152,115},{152,116},{152,117},{152,118},{152,119},{152,120},{152,121},{152,122},{152,123},{152,124},{152,125},{152,126},{152,127},{152,128},{152,129},{152,130},{152,131},{152,132},{152,133},{152,134},{152,135},{152,136},{152,137},{152,138},{152,139},{152,140},{152,141},{152,142},{152,143},{152,144},{152,145},{152,146},{152,147},{152,148},{152,149},{152,150},{151,0},{151,1},{151,2},{151,3},{151,4},{151,5},{151,6},{151,7},{151,8},{151,9},{151,10},{151,11},{151,12},{151,13},{151,14},{151,15},{151,16},{151,17},{151,18},{151,19},{151,20},{151,21},{151,22},{151,23},{151,24},{151,25},{151,26},{151,27},{151,28},{151,29},{151,30},{151,31},{151,32},{151,33},{151,34},{151,35},{151,36},{151,37},{151,38},{151,39},{151,40},{151,41},{151,42},{151,43},{151,44},{151,45},{151,46},{151,47},{151,48},{151,49},{151,50},{151,51},{151,52},{151,53},{151,54},{151,55},{151,56},{151,57},{151,58},{151,59},{151,60},{151,61},{151,62},{151,63},{151,64},{151,65},{151,66},{151,67},{151,68},{151,69},{151,70},{151,71},{151,72},{151,73},{151,74},{151,75},{151,76},{151,77},{151,78},{151,79},{151,80},{151,81},{151,82},{151,83},{151,84},{151,85},{151,86},{151,87},{151,88},{151,89},{151,90},{151,91},{151,92},{151,93},{151,94},{151,95},{151,96},{151,97},{151,98},{151,99},{151,100},{151,101},{151,102},{151,103},{151,104},{151,105},{151,106},{151,107},{151,108},{151,109},{151,110},{151,111},{151,112},{151,113},{151,114},{151,115},{151,116},{151,117},{151,118},{151,119},{151,120},{151,121},{151,122},{151,123},{151,124},{151,125},{151,126},{151,127},{151,128},{151,129},{151,130},{151,131},{151,132},{151,133},{151,134},{151,135},{151,136},{151,137},{151,138},{151,139},{151,140},{151,141},{151,142},{151,143},{151,144},{151,145},{151,146},{151,147},{151,148},{151,149},{151,150},{150,0},{150,1},{150,2},{150,3},{150,4},{150,5},{150,6},{150,7},{150,8},{150,9},{150,10},{150,11},{150,12},{150,13},{150,14},{150,15},{150,16},{150,17},{150,18},{150,19},{150,20},{150,21},{150,22},{150,23},{150,24},{150,25},{150,26},{150,27},{150,28},{150,29},{150,30},{150,31},{150,32},{150,33},{150,34},{150,35},{150,36},{150,37},{150,38},{150,39},{150,40},{150,41},{150,42},{150,43},{150,44},{150,45},{150,46},{150,47},{150,48},{150,49},{150,50},{150,51},{150,52},{150,53},{150,54},{150,55},{150,56},{150,57},{150,58},{150,59},{150,60},{150,61},{150,62},{150,63},{150,64},{150,65},{150,66},{150,67},{150,68},{150,69},{150,70},{150,71},{150,72},{150,73},{150,74},{150,75},{150,76},{150,77},{150,78},{150,79},{150,80},{150,81},{150,82},{150,83},{150,84},{150,85},{150,86},{150,87},{150,88},{150,89},{150,90},{150,91},{150,92},{150,93},{150,94},{150,95},{150,96},{150,97},{150,98},{150,99},{150,100},{150,101},{150,102},{150,103},{150,104},{150,105},{150,106},{150,107},{150,108},{150,109},{150,110},{150,111},{150,112},{150,113},{150,114},{150,115},{150,116},{150,117},{150,118},{150,119},{150,120},{150,121},{150,122},{150,123},{150,124},{150,125},{150,126},{150,127},{150,128},{150,129},{150,130},{150,131},{150,132},{150,133},{150,134},{150,135},{150,136},{150,137},{150,138},{150,139},{150,140},{150,141},{150,142},{150,143},{150,144},{150,145},{150,146},{150,147},{150,148},{150,149},{150,150},{149,0},{149,1},{149,2},{149,3},{149,4},{149,5},{149,6},{149,7},{149,8},{149,9},{149,10},{149,11},{149,12},{149,13},{149,14},{149,15},{149,16},{149,17},{149,18},{149,19},{149,20},{149,21},{149,22},{149,23},{149,24},{149,25},{149,26},{149,27},{149,28},{149,29},{149,30},{149,31},{149,32},{149,33},{149,34},{149,35},{149,36},{149,37},{149,38},{149,39},{149,40},{149,41},{149,42},{149,43},{149,44},{149,45},{149,46},{149,47},{149,48},{149,49},{149,50},{149,51},{149,52},{149,53},{149,54},{149,55},{149,56},{149,57},{149,58},{149,59},{149,60},{149,61},{149,62},{149,63},{149,64},{149,65},{149,66},{149,67},{149,68},{149,69},{149,70},{149,71},{149,72},{149,73},{149,74},{149,75},{149,76},{149,77},{149,78},{149,79},{149,80},{149,81},{149,82},{149,83},{149,84},{149,85},{149,86},{149,87},{149,88},{149,89},{149,90},{149,91},{149,92},{149,93},{149,94},{149,95},{149,96},{149,97},{149,98},{149,99},{149,100},{149,101},{149,102},{149,103},{149,104},{149,105},{149,106},{149,107},{149,108},{149,109},{149,110},{149,111},{149,112},{149,113},{149,114},{149,115},{149,116},{149,117},{149,118},{149,119},{149,120},{149,121},{149,122},{149,123},{149,124},{149,125},{149,126},{149,127},{149,128},{149,129},{149,130},{149,131},{149,132},{149,133},{149,134},{149,135},{149,136},{149,137},{149,138},{149,139},{149,140},{149,141},{149,142},{149,143},{149,144},{149,145},{149,146},{149,147},{149,148},{149,149},{149,150},{148,0},{148,1},{148,2},{148,3},{148,4},{148,5},{148,6},{148,7},{148,8},{148,9},{148,10},{148,11},{148,12},{148,13},{148,14},{148,15},{148,16},{148,17},{148,18},{148,19},{148,20},{148,21},{148,22},{148,23},{148,24},{148,25},{148,26},{148,27},{148,28},{148,29},{148,30},{148,31},{148,32},{148,33},{148,34},{148,35},{148,36},{148,37},{148,38},{148,39},{148,40},{148,41},{148,42},{148,43},{148,44},{148,45},{148,46},{148,47},{148,48},{148,49},{148,50},{148,51},{148,52},{148,53},{148,54},{148,55},{148,56},{148,57},{148,58},{148,59},{148,60},{148,61},{148,62},{148,63},{148,64},{148,65},{148,66},{148,67},{148,68},{148,69},{148,70},{148,71},{148,72},{148,73},{148,74},{148,75},{148,76},{148,77},{148,78},{148,79},{148,80},{148,81},{148,82},{148,83},{148,84},{148,85},{148,86},{148,87},{148,88},{148,89},{148,90},{148,91},{148,92},{148,93},{148,94},{148,95},{148,96},{148,97},{148,98},{148,99},{148,100},{148,101},{148,102},{148,103},{148,104},{148,105},{148,106},{148,107},{148,108},{148,109},{148,110},{148,111},{148,112},{148,113},{148,114},{148,115},{148,116},{148,117},{148,118},{148,119},{148,120},{148,121},{148,122},{148,123},{148,124},{148,125},{148,126},{148,127},{148,128},{148,129},{148,130},{148,131},{148,132},{148,133},{148,134},{148,135},{148,136},{148,137},{148,138},{148,139},{148,140},{148,141},{148,142},{148,143},{148,144},{148,145},{148,146},{148,147},{148,148},{148,149},{148,150},{147,0},{147,1},{147,2},{147,3},{147,4},{147,5},{147,6},{147,7},{147,8},{147,9},{147,10},{147,11},{147,12},{147,13},{147,14},{147,15},{147,16},{147,17},{147,18},{147,19},{147,20},{147,21},{147,22},{147,23},{147,24},{147,25},{147,26},{147,27},{147,28},{147,29},{147,30},{147,31},{147,32},{147,33},{147,34},{147,35},{147,36},{147,37},{147,38},{147,39},{147,40},{147,41},{147,42},{147,43},{147,44},{147,45},{147,46},{147,47},{147,48},{147,49},{147,50},{147,51},{147,52},{147,53},{147,54},{147,55},{147,56},{147,57},{147,58},{147,59},{147,60},{147,61},{147,62},{147,63},{147,64},{147,65},{147,66},{147,67},{147,68},{147,69},{147,70},{147,71},{147,72},{147,73},{147,74},{147,75},{147,76},{147,77},{147,78},{147,79},{147,80},{147,81},{147,82},{147,83},{147,84},{147,85},{147,86},{147,87},{147,88},{147,89},{147,90},{147,91},{147,92},{147,93},{147,94},{147,95},{147,96},{147,97},{147,98},{147,99},{147,100},{147,101},{147,102},{147,103},{147,104},{147,105},{147,106},{147,107},{147,108},{147,109},{147,110},{147,111},{147,112},{147,113},{147,114},{147,115},{147,116},{147,117},{147,118},{147,119},{147,120},{147,121},{147,122},{147,123},{147,124},{147,125},{147,126},{147,127},{147,128},{147,129},{147,130},{147,131},{147,132},{147,133},{147,134},{147,135},{147,136},{147,137},{147,138},{147,139},{147,140},{147,141},{147,142},{147,143},{147,144},{147,145},{147,146},{147,147},{147,148},{147,149},{147,150},{146,0},{146,1},{146,2},{146,3},{146,4},{146,5},{146,6},{146,7},{146,8},{146,9},{146,10},{146,11},{146,12},{146,13},{146,14},{146,15},{146,16},{146,17},{146,18},{146,19},{146,20},{146,21},{146,22},{146,23},{146,24},{146,25},{146,26},{146,27},{146,28},{146,29},{146,30},{146,31},{146,32},{146,33},{146,34},{146,35},{146,36},{146,37},{146,38},{146,39},{146,40},{146,41},{146,42},{146,43},{146,44},{146,45},{146,46},{146,47},{146,48},{146,49},{146,50},{146,51},{146,52},{146,53},{146,54},{146,55},{146,56},{146,57},{146,58},{146,59},{146,60},{146,61},{146,62},{146,63},{146,64},{146,65},{146,66},{146,67},{146,68},{146,69},{146,70},{146,71},{146,72},{146,73},{146,74},{146,75},{146,76},{146,77},{146,78},{146,79},{146,80},{146,81},{146,82},{146,83},{146,84},{146,85},{146,86},{146,87},{146,88},{146,89},{146,90},{146,91},{146,92},{146,93},{146,94},{146,95},{146,96},{146,97},{146,98},{146,99},{146,100},{146,101},{146,102},{146,103},{146,104},{146,105},{146,106},{146,107},{146,108},{146,109},{146,110},{146,111},{146,112},{146,113},{146,114},{146,115},{146,116},{146,117},{146,118},{146,119},{146,120},{146,121},{146,122},{146,123},{146,124},{146,125},{146,126},{146,127},{146,128},{146,129},{146,130},{146,131},{146,132},{146,133},{146,134},{146,135},{146,136},{146,137},{146,138},{146,139},{146,140},{146,141},{146,142},{146,143},{146,144},{146,145},{146,146},{146,147},{146,148},{146,149},{146,150},{145,0},{145,1},{145,2},{145,3},{145,4},{145,5},{145,6},{145,7},{145,8},{145,9},{145,10},{145,11},{145,12},{145,13},{145,14},{145,15},{145,16},{145,17},{145,18},{145,19},{145,20},{145,21},{145,22},{145,23},{145,24},{145,25},{145,26},{145,27},{145,28},{145,29},{145,30},{145,31},{145,32},{145,33},{145,34},{145,35},{145,36},{145,37},{145,38},{145,39},{145,40},{145,41},{145,42},{145,43},{145,44},{145,45},{145,46},{145,47},{145,48},{145,49},{145,50},{145,51},{145,52},{145,53},{145,54},{145,55},{145,56},{145,57},{145,58},{145,59},{145,60},{145,61},{145,62},{145,63},{145,64},{145,65},{145,66},{145,67},{145,68},{145,69},{145,70},{145,71},{145,72},{145,73},{145,74},{145,75},{145,76},{145,77},{145,78},{145,79},{145,80},{145,81},{145,82},{145,83},{145,84},{145,85},{145,86},{145,87},{145,88},{145,89},{145,90},{145,91},{145,92},{145,93},{145,94},{145,95},{145,96},{145,97},{145,98},{145,99},{145,100},{145,101},{145,102},{145,103},{145,104},{145,105},{145,106},{145,107},{145,108},{145,109},{145,110},{145,111},{145,112},{145,113},{145,114},{145,115},{145,116},{145,117},{145,118},{145,119},{145,120},{145,121},{145,122},{145,123},{145,124},{145,125},{145,126},{145,127},{145,128},{145,129},{145,130},{145,131},{145,132},{145,133},{145,134},{145,135},{145,136},{145,137},{145,138},{145,139},{145,140},{145,141},{145,142},{145,143},{145,144},{145,145},{145,146},{145,147},{145,148},{145,149},{145,150},{144,0},{144,1},{144,2},{144,3},{144,4},{144,5},{144,6},{144,7},{144,8},{144,9},{144,10},{144,11},{144,12},{144,13},{144,14},{144,15},{144,16},{144,17},{144,18},{144,19},{144,20},{144,21},{144,22},{144,23},{144,24},{144,25},{144,26},{144,27},{144,28},{144,29},{144,30},{144,31},{144,32},{144,33},{144,34},{144,35},{144,36},{144,37},{144,38},{144,39},{144,40},{144,41},{144,42},{144,43},{144,44},{144,45},{144,46},{144,47},{144,48},{144,49},{144,50},{144,51},{144,52},{144,53},{144,54},{144,55},{144,56},{144,57},{144,58},{144,59},{144,60},{144,61},{144,62},{144,63},{144,64},{144,65},{144,66},{144,67},{144,68},{144,69},{144,70},{144,71},{144,72},{144,73},{144,74},{144,75},{144,76},{144,77},{144,78},{144,79},{144,80},{144,81},{144,82},{144,83},{144,84},{144,85},{144,86},{144,87},{144,88},{144,89},{144,90},{144,91},{144,92},{144,93},{144,94},{144,95},{144,96},{144,97},{144,98},{144,99},{144,100},{144,101},{144,102},{144,103},{144,104},{144,105},{144,106},{144,107},{144,108},{144,109},{144,110},{144,111},{144,112},{144,113},{144,114},{144,115},{144,116},{144,117},{144,118},{144,119},{144,120},{144,121},{144,122},{144,123},{144,124},{144,125},{144,126},{144,127},{144,128},{144,129},{144,130},{144,131},{144,132},{144,133},{144,134},{144,135},{144,136},{144,137},{144,138},{144,139},{144,140},{144,141},{144,142},{144,143},{144,144},{144,145},{144,146},{144,147},{144,148},{144,149},{144,150},{143,0},{143,1},{143,2},{143,3},{143,4},{143,5},{143,6},{143,7},{143,8},{143,9},{143,10},{143,11},{143,12},{143,13},{143,14},{143,15},{143,16},{143,17},{143,18},{143,19},{143,20},{143,21},{143,22},{143,23},{143,24},{143,25},{143,26},{143,27},{143,28},{143,29},{143,30},{143,31},{143,32},{143,33},{143,34},{143,35},{143,36},{143,37},{143,38},{143,39},{143,40},{143,41},{143,42},{143,43},{143,44},{143,45},{143,46},{143,47},{143,48},{143,49},{143,50},{143,51},{143,52},{143,53},{143,54},{143,55},{143,56},{143,57},{143,58},{143,59},{143,60},{143,61},{143,62},{143,63},{143,64},{143,65},{143,66},{143,67},{143,68},{143,69},{143,70},{143,71},{143,72},{143,73},{143,74},{143,75},{143,76},{143,77},{143,78},{143,79},{143,80},{143,81},{143,82},{143,83},{143,84},{143,85},{143,86},{143,87},{143,88},{143,89},{143,90},{143,91},{143,92},{143,93},{143,94},{143,95},{143,96},{143,97},{143,98},{143,99},{143,100},{143,101},{143,102},{143,103},{143,104},{143,105},{143,106},{143,107},{143,108},{143,109},{143,110},{143,111},{143,112},{143,113},{143,114},{143,115},{143,116},{143,117},{143,118},{143,119},{143,120},{143,121},{143,122},{143,123},{143,124},{143,125},{143,126},{143,127},{143,128},{143,129},{143,130},{143,131},{143,132},{143,133},{143,134},{143,135},{143,136},{143,137},{143,138},{143,139},{143,140},{143,141},{143,142},{143,143},{143,144},{143,145},{143,146},{143,147},{143,148},{143,149},{143,150},{142,0},{142,1},{142,2},{142,3},{142,4},{142,5},{142,6},{142,7},{142,8},{142,9},{142,10},{142,11},{142,12},{142,13},{142,14},{142,15},{142,16},{142,17},{142,18},{142,19},{142,20},{142,21},{142,22},{142,23},{142,24},{142,25},{142,26},{142,27},{142,28},{142,29},{142,30},{142,31},{142,32},{142,33},{142,34},{142,35},{142,36},{142,37},{142,38},{142,39},{142,40},{142,41},{142,42},{142,43},{142,44},{142,45},{142,46},{142,47},{142,48},{142,49},{142,50},{142,51},{142,52},{142,53},{142,54},{142,55},{142,56},{142,57},{142,58},{142,59},{142,60},{142,61},{142,62},{142,63},{142,64},{142,65},{142,66},{142,67},{142,68},{142,69},{142,70},{142,71},{142,72},{142,73},{142,74},{142,75},{142,76},{142,77},{142,78},{142,79},{142,80},{142,81},{142,82},{142,83},{142,84},{142,85},{142,86},{142,87},{142,88},{142,89},{142,90},{142,91},{142,92},{142,93},{142,94},{142,95},{142,96},{142,97},{142,98},{142,99},{142,100},{142,101},{142,102},{142,103},{142,104},{142,105},{142,106},{142,107},{142,108},{142,109},{142,110},{142,111},{142,112},{142,113},{142,114},{142,115},{142,116},{142,117},{142,118},{142,119},{142,120},{142,121},{142,122},{142,123},{142,124},{142,125},{142,126},{142,127},{142,128},{142,129},{142,130},{142,131},{142,132},{142,133},{142,134},{142,135},{142,136},{142,137},{142,138},{142,139},{142,140},{142,141},{142,142},{142,143},{142,144},{142,145},{142,146},{142,147},{142,148},{142,149},{142,150},{141,0},{141,1},{141,2},{141,3},{141,4},{141,5},{141,6},{141,7},{141,8},{141,9},{141,10},{141,11},{141,12},{141,13},{141,14},{141,15},{141,16},{141,17},{141,18},{141,19},{141,20},{141,21},{141,22},{141,23},{141,24},{141,25},{141,26},{141,27},{141,28},{141,29},{141,30},{141,31},{141,32},{141,33},{141,34},{141,35},{141,36},{141,37},{141,38},{141,39},{141,40},{141,41},{141,42},{141,43},{141,44},{141,45},{141,46},{141,47},{141,48},{141,49},{141,50},{141,51},{141,52},{141,53},{141,54},{141,55},{141,56},{141,57},{141,58},{141,59},{141,60},{141,61},{141,62},{141,63},{141,64},{141,65},{141,66},{141,67},{141,68},{141,69},{141,70},{141,71},{141,72},{141,73},{141,74},{141,75},{141,76},{141,77},{141,78},{141,79},{141,80},{141,81},{141,82},{141,83},{141,84},{141,85},{141,86},{141,87},{141,88},{141,89},{141,90},{141,91},{141,92},{141,93},{141,94},{141,95},{141,96},{141,97},{141,98},{141,99},{141,100},{141,101},{141,102},{141,103},{141,104},{141,105},{141,106},{141,107},{141,108},{141,109},{141,110},{141,111},{141,112},{141,113},{141,114},{141,115},{141,116},{141,117},{141,118},{141,119},{141,120},{141,121},{141,122},{141,123},{141,124},{141,125},{141,126},{141,127},{141,128},{141,129},{141,130},{141,131},{141,132},{141,133},{141,134},{141,135},{141,136},{141,137},{141,138},{141,139},{141,140},{141,141},{141,142},{141,143},{141,144},{141,145},{141,146},{141,147},{141,148},{141,149},{141,150},{140,0},{140,1},{140,2},{140,3},{140,4},{140,5},{140,6},{140,7},{140,8},{140,9},{140,10},{140,11},{140,12},{140,13},{140,14},{140,15},{140,16},{140,17},{140,18},{140,19},{140,20},{140,21},{140,22},{140,23},{140,24},{140,25},{140,26},{140,27},{140,28},{140,29},{140,30},{140,31},{140,32},{140,33},{140,34},{140,35},{140,36},{140,37},{140,38},{140,39},{140,40},{140,41},{140,42},{140,43},{140,44},{140,45},{140,46},{140,47},{140,48},{140,49},{140,50},{140,51},{140,52},{140,53},{140,54},{140,55},{140,56},{140,57},{140,58},{140,59},{140,60},{140,61},{140,62},{140,63},{140,64},{140,65},{140,66},{140,67},{140,68},{140,69},{140,70},{140,71},{140,72},{140,73},{140,74},{140,75},{140,76},{140,77},{140,78},{140,79},{140,80},{140,81},{140,82},{140,83},{140,84},{140,85},{140,86},{140,87},{140,88},{140,89},{140,90},{140,91},{140,92},{140,93},{140,94},{140,95},{140,96},{140,97},{140,98},{140,99},{140,100},{140,101},{140,102},{140,103},{140,104},{140,105},{140,106},{140,107},{140,108},{140,109},{140,110},{140,111},{140,112},{140,113},{140,114},{140,115},{140,116},{140,117},{140,118},{140,119},{140,120},{140,121},{140,122},{140,123},{140,124},{140,125},{140,126},{140,127},{140,128},{140,129},{140,130},{140,131},{140,132},{140,133},{140,134},{140,135},{140,136},{140,137},{140,138},{140,139},{140,140},{140,141},{140,142},{140,143},{140,144},{140,145},{140,146},{140,147},{140,148},{140,149},{140,150},{139,0},{139,1},{139,2},{139,3},{139,4},{139,5},{139,6},{139,7},{139,8},{139,9},{139,10},{139,11},{139,12},{139,13},{139,14},{139,15},{139,16},{139,17},{139,18},{139,19},{139,20},{139,21},{139,22},{139,23},{139,24},{139,25},{139,26},{139,27},{139,28},{139,29},{139,30},{139,31},{139,32},{139,33},{139,34},{139,35},{139,36},{139,37},{139,38},{139,39},{139,40},{139,41},{139,42},{139,43},{139,44},{139,45},{139,46},{139,47},{139,48},{139,49},{139,50},{139,51},{139,52},{139,53},{139,54},{139,55},{139,56},{139,57},{139,58},{139,59},{139,60},{139,61},{139,62},{139,63},{139,64},{139,65},{139,66},{139,67},{139,68},{139,69},{139,70},{139,71},{139,72},{139,73},{139,74},{139,75},{139,76},{139,77},{139,78},{139,79},{139,80},{139,81},{139,82},{139,83},{139,84},{139,85},{139,86},{139,87},{139,88},{139,89},{139,90},{139,91},{139,92},{139,93},{139,94},{139,95},{139,96},{139,97},{139,98},{139,99},{139,100},{139,101},{139,102},{139,103},{139,104},{139,105},{139,106},{139,107},{139,108},{139,109},{139,110},{139,111},{139,112},{139,113},{139,114},{139,115},{139,116},{139,117},{139,118},{139,119},{139,120},{139,121},{139,122},{139,123},{139,124},{139,125},{139,126},{139,127},{139,128},{139,129},{139,130},{139,131},{139,132},{139,133},{139,134},{139,135},{139,136},{139,137},{139,138},{139,139},{139,140},{139,141},{139,142},{139,143},{139,144},{139,145},{139,146},{139,147},{139,148},{139,149},{139,150},{138,0},{138,1},{138,2},{138,3},{138,4},{138,5},{138,6},{138,7},{138,8},{138,9},{138,10},{138,11},{138,12},{138,13},{138,14},{138,15},{138,16},{138,17},{138,18},{138,19},{138,20},{138,21},{138,22},{138,23},{138,24},{138,25},{138,26},{138,27},{138,28},{138,29},{138,30},{138,31},{138,32},{138,33},{138,34},{138,35},{138,36},{138,37},{138,38},{138,39},{138,40},{138,41},{138,42},{138,43},{138,44},{138,45},{138,46},{138,47},{138,48},{138,49},{138,50},{138,51},{138,52},{138,53},{138,54},{138,55},{138,56},{138,57},{138,58},{138,59},{138,60},{138,61},{138,62},{138,63},{138,64},{138,65},{138,66},{138,67},{138,68},{138,69},{138,70},{138,71},{138,72},{138,73},{138,74},{138,75},{138,76},{138,77},{138,78},{138,79},{138,80},{138,81},{138,82},{138,83},{138,84},{138,85},{138,86},{138,87},{138,88},{138,89},{138,90},{138,91},{138,92},{138,93},{138,94},{138,95},{138,96},{138,97},{138,98},{138,99},{138,100},{138,101},{138,102},{138,103},{138,104},{138,105},{138,106},{138,107},{138,108},{138,109},{138,110},{138,111},{138,112},{138,113},{138,114},{138,115},{138,116},{138,117},{138,118},{138,119},{138,120},{138,121},{138,122},{138,123},{138,124},{138,125},{138,126},{138,127},{138,128},{138,129},{138,130},{138,131},{138,132},{138,133},{138,134},{138,135},{138,136},{138,137},{138,138},{138,139},{138,140},{138,141},{138,142},{138,143},{138,144},{138,145},{138,146},{138,147},{138,148},{138,149},{138,150},{137,0},{137,1},{137,2},{137,3},{137,4},{137,5},{137,6},{137,7},{137,8},{137,9},{137,10},{137,11},{137,12},{137,13},{137,14},{137,15},{137,16},{137,17},{137,18},{137,19},{137,20},{137,21},{137,22},{137,23},{137,24},{137,25},{137,26},{137,27},{137,28},{137,29},{137,30},{137,31},{137,32},{137,33},{137,34},{137,35},{137,36},{137,37},{137,38},{137,39},{137,40},{137,41},{137,42},{137,43},{137,44},{137,45},{137,46},{137,47},{137,48},{137,49},{137,50},{137,51},{137,52},{137,53},{137,54},{137,55},{137,56},{137,57},{137,58},{137,59},{137,60},{137,61},{137,62},{137,63},{137,64},{137,65},{137,66},{137,67},{137,68},{137,69},{137,70},{137,71},{137,72},{137,73},{137,74},{137,75},{137,76},{137,77},{137,78},{137,79},{137,80},{137,81},{137,82},{137,83},{137,84},{137,85},{137,86},{137,87},{137,88},{137,89},{137,90},{137,91},{137,92},{137,93},{137,94},{137,95},{137,96},{137,97},{137,98},{137,99},{137,100},{137,101},{137,102},{137,103},{137,104},{137,105},{137,106},{137,107},{137,108},{137,109},{137,110},{137,111},{137,112},{137,113},{137,114},{137,115},{137,116},{137,117},{137,118},{137,119},{137,120},{137,121},{137,122},{137,123},{137,124},{137,125},{137,126},{137,127},{137,128},{137,129},{137,130},{137,131},{137,132},{137,133},{137,134},{137,135},{137,136},{137,137},{137,138},{137,139},{137,140},{137,141},{137,142},{137,143},{137,144},{137,145},{137,146},{137,147},{137,148},{137,149},{137,150},{136,0},{136,1},{136,2},{136,3},{136,4},{136,5},{136,6},{136,7},{136,8},{136,9},{136,10},{136,11},{136,12},{136,13},{136,14},{136,15},{136,16},{136,17},{136,18},{136,19},{136,20},{136,21},{136,22},{136,23},{136,24},{136,25},{136,26},{136,27},{136,28},{136,29},{136,30},{136,31},{136,32},{136,33},{136,34},{136,35},{136,36},{136,37},{136,38},{136,39},{136,40},{136,41},{136,42},{136,43},{136,44},{136,45},{136,46},{136,47},{136,48},{136,49},{136,50},{136,51},{136,52},{136,53},{136,54},{136,55},{136,56},{136,57},{136,58},{136,59},{136,60},{136,61},{136,62},{136,63},{136,64},{136,65},{136,66},{136,67},{136,68},{136,69},{136,70},{136,71},{136,72},{136,73},{136,74},{136,75},{136,76},{136,77},{136,78},{136,79},{136,80},{136,81},{136,82},{136,83},{136,84},{136,85},{136,86},{136,87},{136,88},{136,89},{136,90},{136,91},{136,92},{136,93},{136,94},{136,95},{136,96},{136,97},{136,98},{136,99},{136,100},{136,101},{136,102},{136,103},{136,104},{136,105},{136,106},{136,107},{136,108},{136,109},{136,110},{136,111},{136,112},{136,113},{136,114},{136,115},{136,116},{136,117},{136,118},{136,119},{136,120},{136,121},{136,122},{136,123},{136,124},{136,125},{136,126},{136,127},{136,128},{136,129},{136,130},{136,131},{136,132},{136,133},{136,134},{136,135},{136,136},{136,137},{136,138},{136,139},{136,140},{136,141},{136,142},{136,143},{136,144},{136,145},{136,146},{136,147},{136,148},{136,149},{136,150},{135,0},{135,1},{135,2},{135,3},{135,4},{135,5},{135,6},{135,7},{135,8},{135,9},{135,10},{135,11},{135,12},{135,13},{135,14},{135,15},{135,16},{135,17},{135,18},{135,19},{135,20},{135,21},{135,22},{135,23},{135,24},{135,25},{135,26},{135,27},{135,28},{135,29},{135,30},{135,31},{135,32},{135,33},{135,34},{135,35},{135,36},{135,37},{135,38},{135,39},{135,40},{135,41},{135,42},{135,43},{135,44},{135,45},{135,46},{135,47},{135,48},{135,49},{135,50},{135,51},{135,52},{135,53},{135,54},{135,55},{135,56},{135,57},{135,58},{135,59},{135,60},{135,61},{135,62},{135,63},{135,64},{135,65},{135,66},{135,67},{135,68},{135,69},{135,70},{135,71},{135,72},{135,73},{135,74},{135,75},{135,76},{135,77},{135,78},{135,79},{135,80},{135,81},{135,82},{135,83},{135,84},{135,85},{135,86},{135,87},{135,88},{135,89},{135,90},{135,91},{135,92},{135,93},{135,94},{135,95},{135,96},{135,97},{135,98},{135,99},{135,100},{135,101},{135,102},{135,103},{135,104},{135,105},{135,106},{135,107},{135,108},{135,109},{135,110},{135,111},{135,112},{135,113},{135,114},{135,115},{135,116},{135,117},{135,118},{135,119},{135,120},{135,121},{135,122},{135,123},{135,124},{135,125},{135,126},{135,127},{135,128},{135,129},{135,130},{135,131},{135,132},{135,133},{135,134},{135,135},{135,136},{135,137},{135,138},{135,139},{135,140},{135,141},{135,142},{135,143},{135,144},{135,145},{135,146},{135,147},{135,148},{135,149},{135,150},{134,0},{134,1},{134,2},{134,3},{134,4},{134,5},{134,6},{134,7},{134,8},{134,9},{134,10},{134,11},{134,12},{134,13},{134,14},{134,15},{134,16},{134,17},{134,18},{134,19},{134,20},{134,21},{134,22},{134,23},{134,24},{134,25},{134,26},{134,27},{134,28},{134,29},{134,30},{134,31},{134,32},{134,33},{134,34},{134,35},{134,36},{134,37},{134,38},{134,39},{134,40},{134,41},{134,42},{134,43},{134,44},{134,45},{134,46},{134,47},{134,48},{134,49},{134,50},{134,51},{134,52},{134,53},{134,54},{134,55},{134,56},{134,57},{134,58},{134,59},{134,60},{134,61},{134,62},{134,63},{134,64},{134,65},{134,66},{134,67},{134,68},{134,69},{134,70},{134,71},{134,72},{134,73},{134,74},{134,75},{134,76},{134,77},{134,78},{134,79},{134,80},{134,81},{134,82},{134,83},{134,84},{134,85},{134,86},{134,87},{134,88},{134,89},{134,90},{134,91},{134,92},{134,93},{134,94},{134,95},{134,96},{134,97},{134,98},{134,99},{134,100},{134,101},{134,102},{134,103},{134,104},{134,105},{134,106},{134,107},{134,108},{134,109},{134,110},{134,111},{134,112},{134,113},{134,114},{134,115},{134,116},{134,117},{134,118},{134,119},{134,120},{134,121},{134,122},{134,123},{134,124},{134,125},{134,126},{134,127},{134,128},{134,129},{134,130},{134,131},{134,132},{134,133},{134,134},{134,135},{134,136},{134,137},{134,138},{134,139},{134,140},{134,141},{134,142},{134,143},{134,144},{134,145},{134,146},{134,147},{134,148},{134,149},{134,150},{133,0},{133,1},{133,2},{133,3},{133,4},{133,5},{133,6},{133,7},{133,8},{133,9},{133,10},{133,11},{133,12},{133,13},{133,14},{133,15},{133,16},{133,17},{133,18},{133,19},{133,20},{133,21},{133,22},{133,23},{133,24},{133,25},{133,26},{133,27},{133,28},{133,29},{133,30},{133,31},{133,32},{133,33},{133,34},{133,35},{133,36},{133,37},{133,38},{133,39},{133,40},{133,41},{133,42},{133,43},{133,44},{133,45},{133,46},{133,47},{133,48},{133,49},{133,50},{133,51},{133,52},{133,53},{133,54},{133,55},{133,56},{133,57},{133,58},{133,59},{133,60},{133,61},{133,62},{133,63},{133,64},{133,65},{133,66},{133,67},{133,68},{133,69},{133,70},{133,71},{133,72},{133,73},{133,74},{133,75},{133,76},{133,77},{133,78},{133,79},{133,80},{133,81},{133,82},{133,83},{133,84},{133,85},{133,86},{133,87},{133,88},{133,89},{133,90},{133,91},{133,92},{133,93},{133,94},{133,95},{133,96},{133,97},{133,98},{133,99},{133,100},{133,101},{133,102},{133,103},{133,104},{133,105},{133,106},{133,107},{133,108},{133,109},{133,110},{133,111},{133,112},{133,113},{133,114},{133,115},{133,116},{133,117},{133,118},{133,119},{133,120},{133,121},{133,122},{133,123},{133,124},{133,125},{133,126},{133,127},{133,128},{133,129},{133,130},{133,131},{133,132},{133,133},{133,134},{133,135},{133,136},{133,137},{133,138},{133,139},{133,140},{133,141},{133,142},{133,143},{133,144},{133,145},{133,146},{133,147},{133,148},{133,149},{133,150},{132,0},{132,1},{132,2},{132,3},{132,4},{132,5},{132,6},{132,7},{132,8},{132,9},{132,10},{132,11},{132,12},{132,13},{132,14},{132,15},{132,16},{132,17},{132,18},{132,19},{132,20},{132,21},{132,22},{132,23},{132,24},{132,25},{132,26},{132,27},{132,28},{132,29},{132,30},{132,31},{132,32},{132,33},{132,34},{132,35},{132,36},{132,37},{132,38},{132,39},{132,40},{132,41},{132,42},{132,43},{132,44},{132,45},{132,46},{132,47},{132,48},{132,49},{132,50},{132,51},{132,52},{132,53},{132,54},{132,55},{132,56},{132,57},{132,58},{132,59},{132,60},{132,61},{132,62},{132,63},{132,64},{132,65},{132,66},{132,67},{132,68},{132,69},{132,70},{132,71},{132,72},{132,73},{132,74},{132,75},{132,76},{132,77},{132,78},{132,79},{132,80},{132,81},{132,82},{132,83},{132,84},{132,85},{132,86},{132,87},{132,88},{132,89},{132,90},{132,91},{132,92},{132,93},{132,94},{132,95},{132,96},{132,97},{132,98},{132,99},{132,100},{132,101},{132,102},{132,103},{132,104},{132,105},{132,106},{132,107},{132,108},{132,109},{132,110},{132,111},{132,112},{132,113},{132,114},{132,115},{132,116},{132,117},{132,118},{132,119},{132,120},{132,121},{132,122},{132,123},{132,124},{132,125},{132,126},{132,127},{132,128},{132,129},{132,130},{132,131},{132,132},{132,133},{132,134},{132,135},{132,136},{132,137},{132,138},{132,139},{132,140},{132,141},{132,142},{132,143},{132,144},{132,145},{132,146},{132,147},{132,148},{132,149},{132,150},{131,0},{131,1},{131,2},{131,3},{131,4},{131,5},{131,6},{131,7},{131,8},{131,9},{131,10},{131,11},{131,12},{131,13},{131,14},{131,15},{131,16},{131,17},{131,18},{131,19},{131,20},{131,21},{131,22},{131,23},{131,24},{131,25},{131,26},{131,27},{131,28},{131,29},{131,30},{131,31},{131,32},{131,33},{131,34},{131,35},{131,36},{131,37},{131,38},{131,39},{131,40},{131,41},{131,42},{131,43},{131,44},{131,45},{131,46},{131,47},{131,48},{131,49},{131,50},{131,51},{131,52},{131,53},{131,54},{131,55},{131,56},{131,57},{131,58},{131,59},{131,60},{131,61},{131,62},{131,63},{131,64},{131,65},{131,66},{131,67},{131,68},{131,69},{131,70},{131,71},{131,72},{131,73},{131,74},{131,75},{131,76},{131,77},{131,78},{131,79},{131,80},{131,81},{131,82},{131,83},{131,84},{131,85},{131,86},{131,87},{131,88},{131,89},{131,90},{131,91},{131,92},{131,93},{131,94},{131,95},{131,96},{131,97},{131,98},{131,99},{131,100},{131,101},{131,102},{131,103},{131,104},{131,105},{131,106},{131,107},{131,108},{131,109},{131,110},{131,111},{131,112},{131,113},{131,114},{131,115},{131,116},{131,117},{131,118},{131,119},{131,120},{131,121},{131,122},{131,123},{131,124},{131,125},{131,126},{131,127},{131,128},{131,129},{131,130},{131,131},{131,132},{131,133},{131,134},{131,135},{131,136},{131,137},{131,138},{131,139},{131,140},{131,141},{131,142},{131,143},{131,144},{131,145},{131,146},{131,147},{131,148},{131,149},{131,150},{130,0},{130,1},{130,2},{130,3},{130,4},{130,5},{130,6},{130,7},{130,8},{130,9},{130,10},{130,11},{130,12},{130,13},{130,14},{130,15},{130,16},{130,17},{130,18},{130,19},{130,20},{130,21},{130,22},{130,23},{130,24},{130,25},{130,26},{130,27},{130,28},{130,29},{130,30},{130,31},{130,32},{130,33},{130,34},{130,35},{130,36},{130,37},{130,38},{130,39},{130,40},{130,41},{130,42},{130,43},{130,44},{130,45},{130,46},{130,47},{130,48},{130,49},{130,50},{130,51},{130,52},{130,53},{130,54},{130,55},{130,56},{130,57},{130,58},{130,59},{130,60},{130,61},{130,62},{130,63},{130,64},{130,65},{130,66},{130,67},{130,68},{130,69},{130,70},{130,71},{130,72},{130,73},{130,74},{130,75},{130,76},{130,77},{130,78},{130,79},{130,80},{130,81},{130,82},{130,83},{130,84},{130,85},{130,86},{130,87},{130,88},{130,89},{130,90},{130,91},{130,92},{130,93},{130,94},{130,95},{130,96},{130,97},{130,98},{130,99},{130,100},{130,101},{130,102},{130,103},{130,104},{130,105},{130,106},{130,107},{130,108},{130,109},{130,110},{130,111},{130,112},{130,113},{130,114},{130,115},{130,116},{130,117},{130,118},{130,119},{130,120},{130,121},{130,122},{130,123},{130,124},{130,125},{130,126},{130,127},{130,128},{130,129},{130,130},{130,131},{130,132},{130,133},{130,134},{130,135},{130,136},{130,137},{130,138},{130,139},{130,140},{130,141},{130,142},{130,143},{130,144},{130,145},{130,146},{130,147},{130,148},{130,149},{130,150},{129,0},{129,1},{129,2},{129,3},{129,4},{129,5},{129,6},{129,7},{129,8},{129,9},{129,10},{129,11},{129,12},{129,13},{129,14},{129,15},{129,16},{129,17},{129,18},{129,19},{129,20},{129,21},{129,22},{129,23},{129,24},{129,25},{129,26},{129,27},{129,28},{129,29},{129,30},{129,31},{129,32},{129,33},{129,34},{129,35},{129,36},{129,37},{129,38},{129,39},{129,40},{129,41},{129,42},{129,43},{129,44},{129,45},{129,46},{129,47},{129,48},{129,49},{129,50},{129,51},{129,52},{129,53},{129,54},{129,55},{129,56},{129,57},{129,58},{129,59},{129,60},{129,61},{129,62},{129,63},{129,64},{129,65},{129,66},{129,67},{129,68},{129,69},{129,70},{129,71},{129,72},{129,73},{129,74},{129,75},{129,76},{129,77},{129,78},{129,79},{129,80},{129,81},{129,82},{129,83},{129,84},{129,85},{129,86},{129,87},{129,88},{129,89},{129,90},{129,91},{129,92},{129,93},{129,94},{129,95},{129,96},{129,97},{129,98},{129,99},{129,100},{129,101},{129,102},{129,103},{129,104},{129,105},{129,106},{129,107},{129,108},{129,109},{129,110},{129,111},{129,112},{129,113},{129,114},{129,115},{129,116},{129,117},{129,118},{129,119},{129,120},{129,121},{129,122},{129,123},{129,124},{129,125},{129,126},{129,127},{129,128},{129,129},{129,130},{129,131},{129,132},{129,133},{129,134},{129,135},{129,136},{129,137},{129,138},{129,139},{129,140},{129,141},{129,142},{129,143},{129,144},{129,145},{129,146},{129,147},{129,148},{129,149},{129,150},{128,0},{128,1},{128,2},{128,3},{128,4},{128,5},{128,6},{128,7},{128,8},{128,9},{128,10},{128,11},{128,12},{128,13},{128,14},{128,15},{128,16},{128,17},{128,18},{128,19},{128,20},{128,21},{128,22},{128,23},{128,24},{128,25},{128,26},{128,27},{128,28},{128,29},{128,30},{128,31},{128,32},{128,33},{128,34},{128,35},{128,36},{128,37},{128,38},{128,39},{128,40},{128,41},{128,42},{128,43},{128,44},{128,45},{128,46},{128,47},{128,48},{128,49},{128,50},{128,51},{128,52},{128,53},{128,54},{128,55},{128,56},{128,57},{128,58},{128,59},{128,60},{128,61},{128,62},{128,63},{128,64},{128,65},{128,66},{128,67},{128,68},{128,69},{128,70},{128,71},{128,72},{128,73},{128,74},{128,75},{128,76},{128,77},{128,78},{128,79},{128,80},{128,81},{128,82},{128,83},{128,84},{128,85},{128,86},{128,87},{128,88},{128,89},{128,90},{128,91},{128,92},{128,93},{128,94},{128,95},{128,96},{128,97},{128,98},{128,99},{128,100},{128,101},{128,102},{128,103},{128,104},{128,105},{128,106},{128,107},{128,108},{128,109},{128,110},{128,111},{128,112},{128,113},{128,114},{128,115},{128,116},{128,117},{128,118},{128,119},{128,120},{128,121},{128,122},{128,123},{128,124},{128,125},{128,126},{128,127},{128,128},{128,129},{128,130},{128,131},{128,132},{128,133},{128,134},{128,135},{128,136},{128,137},{128,138},{128,139},{128,140},{128,141},{128,142},{128,143},{128,144},{128,145},{128,146},{128,147},{128,148},{128,149},{128,150},{127,0},{127,1},{127,2},{127,3},{127,4},{127,5},{127,6},{127,7},{127,8},{127,9},{127,10},{127,11},{127,12},{127,13},{127,14},{127,15},{127,16},{127,17},{127,18},{127,19},{127,20},{127,21},{127,22},{127,23},{127,24},{127,25},{127,26},{127,27},{127,28},{127,29},{127,30},{127,31},{127,32},{127,33},{127,34},{127,35},{127,36},{127,37},{127,38},{127,39},{127,40},{127,41},{127,42},{127,43},{127,44},{127,45},{127,46},{127,47},{127,48},{127,49},{127,50},{127,51},{127,52},{127,53},{127,54},{127,55},{127,56},{127,57},{127,58},{127,59},{127,60},{127,61},{127,62},{127,63},{127,64},{127,65},{127,66},{127,67},{127,68},{127,69},{127,70},{127,71},{127,72},{127,73},{127,74},{127,75},{127,76},{127,77},{127,78},{127,79},{127,80},{127,81},{127,82},{127,83},{127,84},{127,85},{127,86},{127,87},{127,88},{127,89},{127,90},{127,91},{127,92},{127,93},{127,94},{127,95},{127,96},{127,97},{127,98},{127,99},{127,100},{127,101},{127,102},{127,103},{127,104},{127,105},{127,106},{127,107},{127,108},{127,109},{127,110},{127,111},{127,112},{127,113},{127,114},{127,115},{127,116},{127,117},{127,118},{127,119},{127,120},{127,121},{127,122},{127,123},{127,124},{127,125},{127,126},{127,127},{127,128},{127,129},{127,130},{127,131},{127,132},{127,133},{127,134},{127,135},{127,136},{127,137},{127,138},{127,139},{127,140},{127,141},{127,142},{127,143},{127,144},{127,145},{127,146},{127,147},{127,148},{127,149},{127,150},{126,0},{126,1},{126,2},{126,3},{126,4},{126,5},{126,6},{126,7},{126,8},{126,9},{126,10},{126,11},{126,12},{126,13},{126,14},{126,15},{126,16},{126,17},{126,18},{126,19},{126,20},{126,21},{126,22},{126,23},{126,24},{126,25},{126,26},{126,27},{126,28},{126,29},{126,30},{126,31},{126,32},{126,33},{126,34},{126,35},{126,36},{126,37},{126,38},{126,39},{126,40},{126,41},{126,42},{126,43},{126,44},{126,45},{126,46},{126,47},{126,48},{126,49},{126,50},{126,51},{126,52},{126,53},{126,54},{126,55},{126,56},{126,57},{126,58},{126,59},{126,60},{126,61},{126,62},{126,63},{126,64},{126,65},{126,66},{126,67},{126,68},{126,69},{126,70},{126,71},{126,72},{126,73},{126,74},{126,75},{126,76},{126,77},{126,78},{126,79},{126,80},{126,81},{126,82},{126,83},{126,84},{126,85},{126,86},{126,87},{126,88},{126,89},{126,90},{126,91},{126,92},{126,93},{126,94},{126,95},{126,96},{126,97},{126,98},{126,99},{126,100},{126,101},{126,102},{126,103},{126,104},{126,105},{126,106},{126,107},{126,108},{126,109},{126,110},{126,111},{126,112},{126,113},{126,114},{126,115},{126,116},{126,117},{126,118},{126,119},{126,120},{126,121},{126,122},{126,123},{126,124},{126,125},{126,126},{126,127},{126,128},{126,129},{126,130},{126,131},{126,132},{126,133},{126,134},{126,135},{126,136},{126,137},{126,138},{126,139},{126,140},{126,141},{126,142},{126,143},{126,144},{126,145},{126,146},{126,147},{126,148},{126,149},{126,150},{125,0},{125,1},{125,2},{125,3},{125,4},{125,5},{125,6},{125,7},{125,8},{125,9},{125,10},{125,11},{125,12},{125,13},{125,14},{125,15},{125,16},{125,17},{125,18},{125,19},{125,20},{125,21},{125,22},{125,23},{125,24},{125,25},{125,26},{125,27},{125,28},{125,29},{125,30},{125,31},{125,32},{125,33},{125,34},{125,35},{125,36},{125,37},{125,38},{125,39},{125,40},{125,41},{125,42},{125,43},{125,44},{125,45},{125,46},{125,47},{125,48},{125,49},{125,50},{125,51},{125,52},{125,53},{125,54},{125,55},{125,56},{125,57},{125,58},{125,59},{125,60},{125,61},{125,62},{125,63},{125,64},{125,65},{125,66},{125,67},{125,68},{125,69},{125,70},{125,71},{125,72},{125,73},{125,74},{125,75},{125,76},{125,77},{125,78},{125,79},{125,80},{125,81},{125,82},{125,83},{125,84},{125,85},{125,86},{125,87},{125,88},{125,89},{125,90},{125,91},{125,92},{125,93},{125,94},{125,95},{125,96},{125,97},{125,98},{125,99},{125,100},{125,101},{125,102},{125,103},{125,104},{125,105},{125,106},{125,107},{125,108},{125,109},{125,110},{125,111},{125,112},{125,113},{125,114},{125,115},{125,116},{125,117},{125,118},{125,119},{125,120},{125,121},{125,122},{125,123},{125,124},{125,125},{125,126},{125,127},{125,128},{125,129},{125,130},{125,131},{125,132},{125,133},{125,134},{125,135},{125,136},{125,137},{125,138},{125,139},{125,140},{125,141},{125,142},{125,143},{125,144},{125,145},{125,146},{125,147},{125,148},{125,149},{125,150},{124,0},{124,1},{124,2},{124,3},{124,4},{124,5},{124,6},{124,7},{124,8},{124,9},{124,10},{124,11},{124,12},{124,13},{124,14},{124,15},{124,16},{124,17},{124,18},{124,19},{124,20},{124,21},{124,22},{124,23},{124,24},{124,25},{124,26},{124,27},{124,28},{124,29},{124,30},{124,31},{124,32},{124,33},{124,34},{124,35},{124,36},{124,37},{124,38},{124,39},{124,40},{124,41},{124,42},{124,43},{124,44},{124,45},{124,46},{124,47},{124,48},{124,49},{124,50},{124,51},{124,52},{124,53},{124,54},{124,55},{124,56},{124,57},{124,58},{124,59},{124,60},{124,61},{124,62},{124,63},{124,64},{124,65},{124,66},{124,67},{124,68},{124,69},{124,70},{124,71},{124,72},{124,73},{124,74},{124,75},{124,76},{124,77},{124,78},{124,79},{124,80},{124,81},{124,82},{124,83},{124,84},{124,85},{124,86},{124,87},{124,88},{124,89},{124,90},{124,91},{124,92},{124,93},{124,94},{124,95},{124,96},{124,97},{124,98},{124,99},{124,100},{124,101},{124,102},{124,103},{124,104},{124,105},{124,106},{124,107},{124,108},{124,109},{124,110},{124,111},{124,112},{124,113},{124,114},{124,115},{124,116},{124,117},{124,118},{124,119},{124,120},{124,121},{124,122},{124,123},{124,124},{124,125},{124,126},{124,127},{124,128},{124,129},{124,130},{124,131},{124,132},{124,133},{124,134},{124,135},{124,136},{124,137},{124,138},{124,139},{124,140},{124,141},{124,142},{124,143},{124,144},{124,145},{124,146},{124,147},{124,148},{124,149},{124,150},{123,0},{123,1},{123,2},{123,3},{123,4},{123,5},{123,6},{123,7},{123,8},{123,9},{123,10},{123,11},{123,12},{123,13},{123,14},{123,15},{123,16},{123,17},{123,18},{123,19},{123,20},{123,21},{123,22},{123,23},{123,24},{123,25},{123,26},{123,27},{123,28},{123,29},{123,30},{123,31},{123,32},{123,33},{123,34},{123,35},{123,36},{123,37},{123,38},{123,39},{123,40},{123,41},{123,42},{123,43},{123,44},{123,45},{123,46},{123,47},{123,48},{123,49},{123,50},{123,51},{123,52},{123,53},{123,54},{123,55},{123,56},{123,57},{123,58},{123,59},{123,60},{123,61},{123,62},{123,63},{123,64},{123,65},{123,66},{123,67},{123,68},{123,69},{123,70},{123,71},{123,72},{123,73},{123,74},{123,75},{123,76},{123,77},{123,78},{123,79},{123,80},{123,81},{123,82},{123,83},{123,84},{123,85},{123,86},{123,87},{123,88},{123,89},{123,90},{123,91},{123,92},{123,93},{123,94},{123,95},{123,96},{123,97},{123,98},{123,99},{123,100},{123,101},{123,102},{123,103},{123,104},{123,105},{123,106},{123,107},{123,108},{123,109},{123,110},{123,111},{123,112},{123,113},{123,114},{123,115},{123,116},{123,117},{123,118},{123,119},{123,120},{123,121},{123,122},{123,123},{123,124},{123,125},{123,126},{123,127},{123,128},{123,129},{123,130},{123,131},{123,132},{123,133},{123,134},{123,135},{123,136},{123,137},{123,138},{123,139},{123,140},{123,141},{123,142},{123,143},{123,144},{123,145},{123,146},{123,147},{123,148},{123,149},{123,150},{122,0},{122,1},{122,2},{122,3},{122,4},{122,5},{122,6},{122,7},{122,8},{122,9},{122,10},{122,11},{122,12},{122,13},{122,14},{122,15},{122,16},{122,17},{122,18},{122,19},{122,20},{122,21},{122,22},{122,23},{122,24},{122,25},{122,26},{122,27},{122,28},{122,29},{122,30},{122,31},{122,32},{122,33},{122,34},{122,35},{122,36},{122,37},{122,38},{122,39},{122,40},{122,41},{122,42},{122,43},{122,44},{122,45},{122,46},{122,47},{122,48},{122,49},{122,50},{122,51},{122,52},{122,53},{122,54},{122,55},{122,56},{122,57},{122,58},{122,59},{122,60},{122,61},{122,62},{122,63},{122,64},{122,65},{122,66},{122,67},{122,68},{122,69},{122,70},{122,71},{122,72},{122,73},{122,74},{122,75},{122,76},{122,77},{122,78},{122,79},{122,80},{122,81},{122,82},{122,83},{122,84},{122,85},{122,86},{122,87},{122,88},{122,89},{122,90},{122,91},{122,92},{122,93},{122,94},{122,95},{122,96},{122,97},{122,98},{122,99},{122,100},{122,101},{122,102},{122,103},{122,104},{122,105},{122,106},{122,107},{122,108},{122,109},{122,110},{122,111},{122,112},{122,113},{122,114},{122,115},{122,116},{122,117},{122,118},{122,119},{122,120},{122,121},{122,122},{122,123},{122,124},{122,125},{122,126},{122,127},{122,128},{122,129},{122,130},{122,131},{122,132},{122,133},{122,134},{122,135},{122,136},{122,137},{122,138},{122,139},{122,140},{122,141},{122,142},{122,143},{122,144},{122,145},{122,146},{122,147},{122,148},{122,149},{122,150},{121,0},{121,1},{121,2},{121,3},{121,4},{121,5},{121,6},{121,7},{121,8},{121,9},{121,10},{121,11},{121,12},{121,13},{121,14},{121,15},{121,16},{121,17},{121,18},{121,19},{121,20},{121,21},{121,22},{121,23},{121,24},{121,25},{121,26},{121,27},{121,28},{121,29},{121,30},{121,31},{121,32},{121,33},{121,34},{121,35},{121,36},{121,37},{121,38},{121,39},{121,40},{121,41},{121,42},{121,43},{121,44},{121,45},{121,46},{121,47},{121,48},{121,49},{121,50},{121,51},{121,52},{121,53},{121,54},{121,55},{121,56},{121,57},{121,58},{121,59},{121,60},{121,61},{121,62},{121,63},{121,64},{121,65},{121,66},{121,67},{121,68},{121,69},{121,70},{121,71},{121,72},{121,73},{121,74},{121,75},{121,76},{121,77},{121,78},{121,79},{121,80},{121,81},{121,82},{121,83},{121,84},{121,85},{121,86},{121,87},{121,88},{121,89},{121,90},{121,91},{121,92},{121,93},{121,94},{121,95},{121,96},{121,97},{121,98},{121,99},{121,100},{121,101},{121,102},{121,103},{121,104},{121,105},{121,106},{121,107},{121,108},{121,109},{121,110},{121,111},{121,112},{121,113},{121,114},{121,115},{121,116},{121,117},{121,118},{121,119},{121,120},{121,121},{121,122},{121,123},{121,124},{121,125},{121,126},{121,127},{121,128},{121,129},{121,130},{121,131},{121,132},{121,133},{121,134},{121,135},{121,136},{121,137},{121,138},{121,139},{121,140},{121,141},{121,142},{121,143},{121,144},{121,145},{121,146},{121,147},{121,148},{121,149},{121,150},{120,0},{120,1},{120,2},{120,3},{120,4},{120,5},{120,6},{120,7},{120,8},{120,9},{120,10},{120,11},{120,12},{120,13},{120,14},{120,15},{120,16},{120,17},{120,18},{120,19},{120,20},{120,21},{120,22},{120,23},{120,24},{120,25},{120,26},{120,27},{120,28},{120,29},{120,30},{120,31},{120,32},{120,33},{120,34},{120,35},{120,36},{120,37},{120,38},{120,39},{120,40},{120,41},{120,42},{120,43},{120,44},{120,45},{120,46},{120,47},{120,48},{120,49},{120,50},{120,51},{120,52},{120,53},{120,54},{120,55},{120,56},{120,57},{120,58},{120,59},{120,60},{120,61},{120,62},{120,63},{120,64},{120,65},{120,66},{120,67},{120,68},{120,69},{120,70},{120,71},{120,72},{120,73},{120,74},{120,75},{120,76},{120,77},{120,78},{120,79},{120,80},{120,81},{120,82},{120,83},{120,84},{120,85},{120,86},{120,87},{120,88},{120,89},{120,90},{120,91},{120,92},{120,93},{120,94},{120,95},{120,96},{120,97},{120,98},{120,99},{120,100},{120,101},{120,102},{120,103},{120,104},{120,105},{120,106},{120,107},{120,108},{120,109},{120,110},{120,111},{120,112},{120,113},{120,114},{120,115},{120,116},{120,117},{120,118},{120,119},{120,120},{120,121},{120,122},{120,123},{120,124},{120,125},{120,126},{120,127},{120,128},{120,129},{120,130},{120,131},{120,132},{120,133},{120,134},{120,135},{120,136},{120,137},{120,138},{120,139},{120,140},{120,141},{120,142},{120,143},{120,144},{120,145},{120,146},{120,147},{120,148},{120,149},{120,150},{119,0},{119,1},{119,2},{119,3},{119,4},{119,5},{119,6},{119,7},{119,8},{119,9},{119,10},{119,11},{119,12},{119,13},{119,14},{119,15},{119,16},{119,17},{119,18},{119,19},{119,20},{119,21},{119,22},{119,23},{119,24},{119,25},{119,26},{119,27},{119,28},{119,29},{119,30},{119,31},{119,32},{119,33},{119,34},{119,35},{119,36},{119,37},{119,38},{119,39},{119,40},{119,41},{119,42},{119,43},{119,44},{119,45},{119,46},{119,47},{119,48},{119,49},{119,50},{119,51},{119,52},{119,53},{119,54},{119,55},{119,56},{119,57},{119,58},{119,59},{119,60},{119,61},{119,62},{119,63},{119,64},{119,65},{119,66},{119,67},{119,68},{119,69},{119,70},{119,71},{119,72},{119,73},{119,74},{119,75},{119,76},{119,77},{119,78},{119,79},{119,80},{119,81},{119,82},{119,83},{119,84},{119,85},{119,86},{119,87},{119,88},{119,89},{119,90},{119,91},{119,92},{119,93},{119,94},{119,95},{119,96},{119,97},{119,98},{119,99},{119,100},{119,101},{119,102},{119,103},{119,104},{119,105},{119,106},{119,107},{119,108},{119,109},{119,110},{119,111},{119,112},{119,113},{119,114},{119,115},{119,116},{119,117},{119,118},{119,119},{119,120},{119,121},{119,122},{119,123},{119,124},{119,125},{119,126},{119,127},{119,128},{119,129},{119,130},{119,131},{119,132},{119,133},{119,134},{119,135},{119,136},{119,137},{119,138},{119,139},{119,140},{119,141},{119,142},{119,143},{119,144},{119,145},{119,146},{119,147},{119,148},{119,149},{119,150},{118,0},{118,1},{118,2},{118,3},{118,4},{118,5},{118,6},{118,7},{118,8},{118,9},{118,10},{118,11},{118,12},{118,13},{118,14},{118,15},{118,16},{118,17},{118,18},{118,19},{118,20},{118,21},{118,22},{118,23},{118,24},{118,25},{118,26},{118,27},{118,28},{118,29},{118,30},{118,31},{118,32},{118,33},{118,34},{118,35},{118,36},{118,37},{118,38},{118,39},{118,40},{118,41},{118,42},{118,43},{118,44},{118,45},{118,46},{118,47},{118,48},{118,49},{118,50},{118,51},{118,52},{118,53},{118,54},{118,55},{118,56},{118,57},{118,58},{118,59},{118,60},{118,61},{118,62},{118,63},{118,64},{118,65},{118,66},{118,67},{118,68},{118,69},{118,70},{118,71},{118,72},{118,73},{118,74},{118,75},{118,76},{118,77},{118,78},{118,79},{118,80},{118,81},{118,82},{118,83},{118,84},{118,85},{118,86},{118,87},{118,88},{118,89},{118,90},{118,91},{118,92},{118,93},{118,94},{118,95},{118,96},{118,97},{118,98},{118,99},{118,100},{118,101},{118,102},{118,103},{118,104},{118,105},{118,106},{118,107},{118,108},{118,109},{118,110},{118,111},{118,112},{118,113},{118,114},{118,115},{118,116},{118,117},{118,118},{118,119},{118,120},{118,121},{118,122},{118,123},{118,124},{118,125},{118,126},{118,127},{118,128},{118,129},{118,130},{118,131},{118,132},{118,133},{118,134},{118,135},{118,136},{118,137},{118,138},{118,139},{118,140},{118,141},{118,142},{118,143},{118,144},{118,145},{118,146},{118,147},{118,148},{118,149},{118,150},{117,0},{117,1},{117,2},{117,3},{117,4},{117,5},{117,6},{117,7},{117,8},{117,9},{117,10},{117,11},{117,12},{117,13},{117,14},{117,15},{117,16},{117,17},{117,18},{117,19},{117,20},{117,21},{117,22},{117,23},{117,24},{117,25},{117,26},{117,27},{117,28},{117,29},{117,30},{117,31},{117,32},{117,33},{117,34},{117,35},{117,36},{117,37},{117,38},{117,39},{117,40},{117,41},{117,42},{117,43},{117,44},{117,45},{117,46},{117,47},{117,48},{117,49},{117,50},{117,51},{117,52},{117,53},{117,54},{117,55},{117,56},{117,57},{117,58},{117,59},{117,60},{117,61},{117,62},{117,63},{117,64},{117,65},{117,66},{117,67},{117,68},{117,69},{117,70},{117,71},{117,72},{117,73},{117,74},{117,75},{117,76},{117,77},{117,78},{117,79},{117,80},{117,81},{117,82},{117,83},{117,84},{117,85},{117,86},{117,87},{117,88},{117,89},{117,90},{117,91},{117,92},{117,93},{117,94},{117,95},{117,96},{117,97},{117,98},{117,99},{117,100},{117,101},{117,102},{117,103},{117,104},{117,105},{117,106},{117,107},{117,108},{117,109},{117,110},{117,111},{117,112},{117,113},{117,114},{117,115},{117,116},{117,117},{117,118},{117,119},{117,120},{117,121},{117,122},{117,123},{117,124},{117,125},{117,126},{117,127},{117,128},{117,129},{117,130},{117,131},{117,132},{117,133},{117,134},{117,135},{117,136},{117,137},{117,138},{117,139},{117,140},{117,141},{117,142},{117,143},{117,144},{117,145},{117,146},{117,147},{117,148},{117,149},{117,150},{116,0},{116,1},{116,2},{116,3},{116,4},{116,5},{116,6},{116,7},{116,8},{116,9},{116,10},{116,11},{116,12},{116,13},{116,14},{116,15},{116,16},{116,17},{116,18},{116,19},{116,20},{116,21},{116,22},{116,23},{116,24},{116,25},{116,26},{116,27},{116,28},{116,29},{116,30},{116,31},{116,32},{116,33},{116,34},{116,35},{116,36},{116,37},{116,38},{116,39},{116,40},{116,41},{116,42},{116,43},{116,44},{116,45},{116,46},{116,47},{116,48},{116,49},{116,50},{116,51},{116,52},{116,53},{116,54},{116,55},{116,56},{116,57},{116,58},{116,59},{116,60},{116,61},{116,62},{116,63},{116,64},{116,65},{116,66},{116,67},{116,68},{116,69},{116,70},{116,71},{116,72},{116,73},{116,74},{116,75},{116,76},{116,77},{116,78},{116,79},{116,80},{116,81},{116,82},{116,83},{116,84},{116,85},{116,86},{116,87},{116,88},{116,89},{116,90},{116,91},{116,92},{116,93},{116,94},{116,95},{116,96},{116,97},{116,98},{116,99},{116,100},{116,101},{116,102},{116,103},{116,104},{116,105},{116,106},{116,107},{116,108},{116,109},{116,110},{116,111},{116,112},{116,113},{116,114},{116,115},{116,116},{116,117},{116,118},{116,119},{116,120},{116,121},{116,122},{116,123},{116,124},{116,125},{116,126},{116,127},{116,128},{116,129},{116,130},{116,131},{116,132},{116,133},{116,134},{116,135},{116,136},{116,137},{116,138},{116,139},{116,140},{116,141},{116,142},{116,143},{116,144},{116,145},{116,146},{116,147},{116,148},{116,149},{116,150},{115,0},{115,1},{115,2},{115,3},{115,4},{115,5},{115,6},{115,7},{115,8},{115,9},{115,10},{115,11},{115,12},{115,13},{115,14},{115,15},{115,16},{115,17},{115,18},{115,19},{115,20},{115,21},{115,22},{115,23},{115,24},{115,25},{115,26},{115,27},{115,28},{115,29},{115,30},{115,31},{115,32},{115,33},{115,34},{115,35},{115,36},{115,37},{115,38},{115,39},{115,40},{115,41},{115,42},{115,43},{115,44},{115,45},{115,46},{115,47},{115,48},{115,49},{115,50},{115,51},{115,52},{115,53},{115,54},{115,55},{115,56},{115,57},{115,58},{115,59},{115,60},{115,61},{115,62},{115,63},{115,64},{115,65},{115,66},{115,67},{115,68},{115,69},{115,70},{115,71},{115,72},{115,73},{115,74},{115,75},{115,76},{115,77},{115,78},{115,79},{115,80},{115,81},{115,82},{115,83},{115,84},{115,85},{115,86},{115,87},{115,88},{115,89},{115,90},{115,91},{115,92},{115,93},{115,94},{115,95},{115,96},{115,97},{115,98},{115,99},{115,100},{115,101},{115,102},{115,103},{115,104},{115,105},{115,106},{115,107},{115,108},{115,109},{115,110},{115,111},{115,112},{115,113},{115,114},{115,115},{115,116},{115,117},{115,118},{115,119},{115,120},{115,121},{115,122},{115,123},{115,124},{115,125},{115,126},{115,127},{115,128},{115,129},{115,130},{115,131},{115,132},{115,133},{115,134},{115,135},{115,136},{115,137},{115,138},{115,139},{115,140},{115,141},{115,142},{115,143},{115,144},{115,145},{115,146},{115,147},{115,148},{115,149},{115,150},{114,0},{114,1},{114,2},{114,3},{114,4},{114,5},{114,6},{114,7},{114,8},{114,9},{114,10},{114,11},{114,12},{114,13},{114,14},{114,15},{114,16},{114,17},{114,18},{114,19},{114,20},{114,21},{114,22},{114,23},{114,24},{114,25},{114,26},{114,27},{114,28},{114,29},{114,30},{114,31},{114,32},{114,33},{114,34},{114,35},{114,36},{114,37},{114,38},{114,39},{114,40},{114,41},{114,42},{114,43},{114,44},{114,45},{114,46},{114,47},{114,48},{114,49},{114,50},{114,51},{114,52},{114,53},{114,54},{114,55},{114,56},{114,57},{114,58},{114,59},{114,60},{114,61},{114,62},{114,63},{114,64},{114,65},{114,66},{114,67},{114,68},{114,69},{114,70},{114,71},{114,72},{114,73},{114,74},{114,75},{114,76},{114,77},{114,78},{114,79},{114,80},{114,81},{114,82},{114,83},{114,84},{114,85},{114,86},{114,87},{114,88},{114,89},{114,90},{114,91},{114,92},{114,93},{114,94},{114,95},{114,96},{114,97},{114,98},{114,99},{114,100},{114,101},{114,102},{114,103},{114,104},{114,105},{114,106},{114,107},{114,108},{114,109},{114,110},{114,111},{114,112},{114,113},{114,114},{114,115},{114,116},{114,117},{114,118},{114,119},{114,120},{114,121},{114,122},{114,123},{114,124},{114,125},{114,126},{114,127},{114,128},{114,129},{114,130},{114,131},{114,132},{114,133},{114,134},{114,135},{114,136},{114,137},{114,138},{114,139},{114,140},{114,141},{114,142},{114,143},{114,144},{114,145},{114,146},{114,147},{114,148},{114,149},{114,150},{113,0},{113,1},{113,2},{113,3},{113,4},{113,5},{113,6},{113,7},{113,8},{113,9},{113,10},{113,11},{113,12},{113,13},{113,14},{113,15},{113,16},{113,17},{113,18},{113,19},{113,20},{113,21},{113,22},{113,23},{113,24},{113,25},{113,26},{113,27},{113,28},{113,29},{113,30},{113,31},{113,32},{113,33},{113,34},{113,35},{113,36},{113,37},{113,38},{113,39},{113,40},{113,41},{113,42},{113,43},{113,44},{113,45},{113,46},{113,47},{113,48},{113,49},{113,50},{113,51},{113,52},{113,53},{113,54},{113,55},{113,56},{113,57},{113,58},{113,59},{113,60},{113,61},{113,62},{113,63},{113,64},{113,65},{113,66},{113,67},{113,68},{113,69},{113,70},{113,71},{113,72},{113,73},{113,74},{113,75},{113,76},{113,77},{113,78},{113,79},{113,80},{113,81},{113,82},{113,83},{113,84},{113,85},{113,86},{113,87},{113,88},{113,89},{113,90},{113,91},{113,92},{113,93},{113,94},{113,95},{113,96},{113,97},{113,98},{113,99},{113,100},{113,101},{113,102},{113,103},{113,104},{113,105},{113,106},{113,107},{113,108},{113,109},{113,110},{113,111},{113,112},{113,113},{113,114},{113,115},{113,116},{113,117},{113,118},{113,119},{113,120},{113,121},{113,122},{113,123},{113,124},{113,125},{113,126},{113,127},{113,128},{113,129},{113,130},{113,131},{113,132},{113,133},{113,134},{113,135},{113,136},{113,137},{113,138},{113,139},{113,140},{113,141},{113,142},{113,143},{113,144},{113,145},{113,146},{113,147},{113,148},{113,149},{113,150},{112,0},{112,1},{112,2},{112,3},{112,4},{112,5},{112,6},{112,7},{112,8},{112,9},{112,10},{112,11},{112,12},{112,13},{112,14},{112,15},{112,16},{112,17},{112,18},{112,19},{112,20},{112,21},{112,22},{112,23},{112,24},{112,25},{112,26},{112,27},{112,28},{112,29},{112,30},{112,31},{112,32},{112,33},{112,34},{112,35},{112,36},{112,37},{112,38},{112,39},{112,40},{112,41},{112,42},{112,43},{112,44},{112,45},{112,46},{112,47},{112,48},{112,49},{112,50},{112,51},{112,52},{112,53},{112,54},{112,55},{112,56},{112,57},{112,58},{112,59},{112,60},{112,61},{112,62},{112,63},{112,64},{112,65},{112,66},{112,67},{112,68},{112,69},{112,70},{112,71},{112,72},{112,73},{112,74},{112,75},{112,76},{112,77},{112,78},{112,79},{112,80},{112,81},{112,82},{112,83},{112,84},{112,85},{112,86},{112,87},{112,88},{112,89},{112,90},{112,91},{112,92},{112,93},{112,94},{112,95},{112,96},{112,97},{112,98},{112,99},{112,100},{112,101},{112,102},{112,103},{112,104},{112,105},{112,106},{112,107},{112,108},{112,109},{112,110},{112,111},{112,112},{112,113},{112,114},{112,115},{112,116},{112,117},{112,118},{112,119},{112,120},{112,121},{112,122},{112,123},{112,124},{112,125},{112,126},{112,127},{112,128},{112,129},{112,130},{112,131},{112,132},{112,133},{112,134},{112,135},{112,136},{112,137},{112,138},{112,139},{112,140},{112,141},{112,142},{112,143},{112,144},{112,145},{112,146},{112,147},{112,148},{112,149},{112,150},{111,0},{111,1},{111,2},{111,3},{111,4},{111,5},{111,6},{111,7},{111,8},{111,9},{111,10},{111,11},{111,12},{111,13},{111,14},{111,15},{111,16},{111,17},{111,18},{111,19},{111,20},{111,21},{111,22},{111,23},{111,24},{111,25},{111,26},{111,27},{111,28},{111,29},{111,30},{111,31},{111,32},{111,33},{111,34},{111,35},{111,36},{111,37},{111,38},{111,39},{111,40},{111,41},{111,42},{111,43},{111,44},{111,45},{111,46},{111,47},{111,48},{111,49},{111,50},{111,51},{111,52},{111,53},{111,54},{111,55},{111,56},{111,57},{111,58},{111,59},{111,60},{111,61},{111,62},{111,63},{111,64},{111,65},{111,66},{111,67},{111,68},{111,69},{111,70},{111,71},{111,72},{111,73},{111,74},{111,75},{111,76},{111,77},{111,78},{111,79},{111,80},{111,81},{111,82},{111,83},{111,84},{111,85},{111,86},{111,87},{111,88},{111,89},{111,90},{111,91},{111,92},{111,93},{111,94},{111,95},{111,96},{111,97},{111,98},{111,99},{111,100},{111,101},{111,102},{111,103},{111,104},{111,105},{111,106},{111,107},{111,108},{111,109},{111,110},{111,111},{111,112},{111,113},{111,114},{111,115},{111,116},{111,117},{111,118},{111,119},{111,120},{111,121},{111,122},{111,123},{111,124},{111,125},{111,126},{111,127},{111,128},{111,129},{111,130},{111,131},{111,132},{111,133},{111,134},{111,135},{111,136},{111,137},{111,138},{111,139},{111,140},{111,141},{111,142},{111,143},{111,144},{111,145},{111,146},{111,147},{111,148},{111,149},{111,150},{110,0},{110,1},{110,2},{110,3},{110,4},{110,5},{110,6},{110,7},{110,8},{110,9},{110,10},{110,11},{110,12},{110,13},{110,14},{110,15},{110,16},{110,17},{110,18},{110,19},{110,20},{110,21},{110,22},{110,23},{110,24},{110,25},{110,26},{110,27},{110,28},{110,29},{110,30},{110,31},{110,32},{110,33},{110,34},{110,35},{110,36},{110,37},{110,38},{110,39},{110,40},{110,41},{110,42},{110,43},{110,44},{110,45},{110,46},{110,47},{110,48},{110,49},{110,50},{110,51},{110,52},{110,53},{110,54},{110,55},{110,56},{110,57},{110,58},{110,59},{110,60},{110,61},{110,62},{110,63},{110,64},{110,65},{110,66},{110,67},{110,68},{110,69},{110,70},{110,71},{110,72},{110,73},{110,74},{110,75},{110,76},{110,77},{110,78},{110,79},{110,80},{110,81},{110,82},{110,83},{110,84},{110,85},{110,86},{110,87},{110,88},{110,89},{110,90},{110,91},{110,92},{110,93},{110,94},{110,95},{110,96},{110,97},{110,98},{110,99},{110,100},{110,101},{110,102},{110,103},{110,104},{110,105},{110,106},{110,107},{110,108},{110,109},{110,110},{110,111},{110,112},{110,113},{110,114},{110,115},{110,116},{110,117},{110,118},{110,119},{110,120},{110,121},{110,122},{110,123},{110,124},{110,125},{110,126},{110,127},{110,128},{110,129},{110,130},{110,131},{110,132},{110,133},{110,134},{110,135},{110,136},{110,137},{110,138},{110,139},{110,140},{110,141},{110,142},{110,143},{110,144},{110,145},{110,146},{110,147},{110,148},{110,149},{110,150},{109,0},{109,1},{109,2},{109,3},{109,4},{109,5},{109,6},{109,7},{109,8},{109,9},{109,10},{109,11},{109,12},{109,13},{109,14},{109,15},{109,16},{109,17},{109,18},{109,19},{109,20},{109,21},{109,22},{109,23},{109,24},{109,25},{109,26},{109,27},{109,28},{109,29},{109,30},{109,31},{109,32},{109,33},{109,34},{109,35},{109,36},{109,37},{109,38},{109,39},{109,40},{109,41},{109,42},{109,43},{109,44},{109,45},{109,46},{109,47},{109,48},{109,49},{109,50},{109,51},{109,52},{109,53},{109,54},{109,55},{109,56},{109,57},{109,58},{109,59},{109,60},{109,61},{109,62},{109,63},{109,64},{109,65},{109,66},{109,67},{109,68},{109,69},{109,70},{109,71},{109,72},{109,73},{109,74},{109,75},{109,76},{109,77},{109,78},{109,79},{109,80},{109,81},{109,82},{109,83},{109,84},{109,85},{109,86},{109,87},{109,88},{109,89},{109,90},{109,91},{109,92},{109,93},{109,94},{109,95},{109,96},{109,97},{109,98},{109,99},{109,100},{109,101},{109,102},{109,103},{109,104},{109,105},{109,106},{109,107},{109,108},{109,109},{109,110},{109,111},{109,112},{109,113},{109,114},{109,115},{109,116},{109,117},{109,118},{109,119},{109,120},{109,121},{109,122},{109,123},{109,124},{109,125},{109,126},{109,127},{109,128},{109,129},{109,130},{109,131},{109,132},{109,133},{109,134},{109,135},{109,136},{109,137},{109,138},{109,139},{109,140},{109,141},{109,142},{109,143},{109,144},{109,145},{109,146},{109,147},{109,148},{109,149},{109,150},{108,0},{108,1},{108,2},{108,3},{108,4},{108,5},{108,6},{108,7},{108,8},{108,9},{108,10},{108,11},{108,12},{108,13},{108,14},{108,15},{108,16},{108,17},{108,18},{108,19},{108,20},{108,21},{108,22},{108,23},{108,24},{108,25},{108,26},{108,27},{108,28},{108,29},{108,30},{108,31},{108,32},{108,33},{108,34},{108,35},{108,36},{108,37},{108,38},{108,39},{108,40},{108,41},{108,42},{108,43},{108,44},{108,45},{108,46},{108,47},{108,48},{108,49},{108,50},{108,51},{108,52},{108,53},{108,54},{108,55},{108,56},{108,57},{108,58},{108,59},{108,60},{108,61},{108,62},{108,63},{108,64},{108,65},{108,66},{108,67},{108,68},{108,69},{108,70},{108,71},{108,72},{108,73},{108,74},{108,75},{108,76},{108,77},{108,78},{108,79},{108,80},{108,81},{108,82},{108,83},{108,84},{108,85},{108,86},{108,87},{108,88},{108,89},{108,90},{108,91},{108,92},{108,93},{108,94},{108,95},{108,96},{108,97},{108,98},{108,99},{108,100},{108,101},{108,102},{108,103},{108,104},{108,105},{108,106},{108,107},{108,108},{108,109},{108,110},{108,111},{108,112},{108,113},{108,114},{108,115},{108,116},{108,117},{108,118},{108,119},{108,120},{108,121},{108,122},{108,123},{108,124},{108,125},{108,126},{108,127},{108,128},{108,129},{108,130},{108,131},{108,132},{108,133},{108,134},{108,135},{108,136},{108,137},{108,138},{108,139},{108,140},{108,141},{108,142},{108,143},{108,144},{108,145},{108,146},{108,147},{108,148},{108,149},{108,150},{107,0},{107,1},{107,2},{107,3},{107,4},{107,5},{107,6},{107,7},{107,8},{107,9},{107,10},{107,11},{107,12},{107,13},{107,14},{107,15},{107,16},{107,17},{107,18},{107,19},{107,20},{107,21},{107,22},{107,23},{107,24},{107,25},{107,26},{107,27},{107,28},{107,29},{107,30},{107,31},{107,32},{107,33},{107,34},{107,35},{107,36},{107,37},{107,38},{107,39},{107,40},{107,41},{107,42},{107,43},{107,44},{107,45},{107,46},{107,47},{107,48},{107,49},{107,50},{107,51},{107,52},{107,53},{107,54},{107,55},{107,56},{107,57},{107,58},{107,59},{107,60},{107,61},{107,62},{107,63},{107,64},{107,65},{107,66},{107,67},{107,68},{107,69},{107,70},{107,71},{107,72},{107,73},{107,74},{107,75},{107,76},{107,77},{107,78},{107,79},{107,80},{107,81},{107,82},{107,83},{107,84},{107,85},{107,86},{107,87},{107,88},{107,89},{107,90},{107,91},{107,92},{107,93},{107,94},{107,95},{107,96},{107,97},{107,98},{107,99},{107,100},{107,101},{107,102},{107,103},{107,104},{107,105},{107,106},{107,107},{107,108},{107,109},{107,110},{107,111},{107,112},{107,113},{107,114},{107,115},{107,116},{107,117},{107,118},{107,119},{107,120},{107,121},{107,122},{107,123},{107,124},{107,125},{107,126},{107,127},{107,128},{107,129},{107,130},{107,131},{107,132},{107,133},{107,134},{107,135},{107,136},{107,137},{107,138},{107,139},{107,140},{107,141},{107,142},{107,143},{107,144},{107,145},{107,146},{107,147},{107,148},{107,149},{107,150},{106,0},{106,1},{106,2},{106,3},{106,4},{106,5},{106,6},{106,7},{106,8},{106,9},{106,10},{106,11},{106,12},{106,13},{106,14},{106,15},{106,16},{106,17},{106,18},{106,19},{106,20},{106,21},{106,22},{106,23},{106,24},{106,25},{106,26},{106,27},{106,28},{106,29},{106,30},{106,31},{106,32},{106,33},{106,34},{106,35},{106,36},{106,37},{106,38},{106,39},{106,40},{106,41},{106,42},{106,43},{106,44},{106,45},{106,46},{106,47},{106,48},{106,49},{106,50},{106,51},{106,52},{106,53},{106,54},{106,55},{106,56},{106,57},{106,58},{106,59},{106,60},{106,61},{106,62},{106,63},{106,64},{106,65},{106,66},{106,67},{106,68},{106,69},{106,70},{106,71},{106,72},{106,73},{106,74},{106,75},{106,76},{106,77},{106,78},{106,79},{106,80},{106,81},{106,82},{106,83},{106,84},{106,85},{106,86},{106,87},{106,88},{106,89},{106,90},{106,91},{106,92},{106,93},{106,94},{106,95},{106,96},{106,97},{106,98},{106,99},{106,100},{106,101},{106,102},{106,103},{106,104},{106,105},{106,106},{106,107},{106,108},{106,109},{106,110},{106,111},{106,112},{106,113},{106,114},{106,115},{106,116},{106,117},{106,118},{106,119},{106,120},{106,121},{106,122},{106,123},{106,124},{106,125},{106,126},{106,127},{106,128},{106,129},{106,130},{106,131},{106,132},{106,133},{106,134},{106,135},{106,136},{106,137},{106,138},{106,139},{106,140},{106,141},{106,142},{106,143},{106,144},{106,145},{106,146},{106,147},{106,148},{106,149},{106,150},{105,0},{105,1},{105,2},{105,3},{105,4},{105,5},{105,6},{105,7},{105,8},{105,9},{105,10},{105,11},{105,12},{105,13},{105,14},{105,15},{105,16},{105,17},{105,18},{105,19},{105,20},{105,21},{105,22},{105,23},{105,24},{105,25},{105,26},{105,27},{105,28},{105,29},{105,30},{105,31},{105,32},{105,33},{105,34},{105,35},{105,36},{105,37},{105,38},{105,39},{105,40},{105,41},{105,42},{105,43},{105,44},{105,45},{105,46},{105,47},{105,48},{105,49},{105,50},{105,51},{105,52},{105,53},{105,54},{105,55},{105,56},{105,57},{105,58},{105,59},{105,60},{105,61},{105,62},{105,63},{105,64},{105,65},{105,66},{105,67},{105,68},{105,69},{105,70},{105,71},{105,72},{105,73},{105,74},{105,75},{105,76},{105,77},{105,78},{105,79},{105,80},{105,81},{105,82},{105,83},{105,84},{105,85},{105,86},{105,87},{105,88},{105,89},{105,90},{105,91},{105,92},{105,93},{105,94},{105,95},{105,96},{105,97},{105,98},{105,99},{105,100},{105,101},{105,102},{105,103},{105,104},{105,105},{105,106},{105,107},{105,108},{105,109},{105,110},{105,111},{105,112},{105,113},{105,114},{105,115},{105,116},{105,117},{105,118},{105,119},{105,120},{105,121},{105,122},{105,123},{105,124},{105,125},{105,126},{105,127},{105,128},{105,129},{105,130},{105,131},{105,132},{105,133},{105,134},{105,135},{105,136},{105,137},{105,138},{105,139},{105,140},{105,141},{105,142},{105,143},{105,144},{105,145},{105,146},{105,147},{105,148},{105,149},{105,150},{104,0},{104,1},{104,2},{104,3},{104,4},{104,5},{104,6},{104,7},{104,8},{104,9},{104,10},{104,11},{104,12},{104,13},{104,14},{104,15},{104,16},{104,17},{104,18},{104,19},{104,20},{104,21},{104,22},{104,23},{104,24},{104,25},{104,26},{104,27},{104,28},{104,29},{104,30},{104,31},{104,32},{104,33},{104,34},{104,35},{104,36},{104,37},{104,38},{104,39},{104,40},{104,41},{104,42},{104,43},{104,44},{104,45},{104,46},{104,47},{104,48},{104,49},{104,50},{104,51},{104,52},{104,53},{104,54},{104,55},{104,56},{104,57},{104,58},{104,59},{104,60},{104,61},{104,62},{104,63},{104,64},{104,65},{104,66},{104,67},{104,68},{104,69},{104,70},{104,71},{104,72},{104,73},{104,74},{104,75},{104,76},{104,77},{104,78},{104,79},{104,80},{104,81},{104,82},{104,83},{104,84},{104,85},{104,86},{104,87},{104,88},{104,89},{104,90},{104,91},{104,92},{104,93},{104,94},{104,95},{104,96},{104,97},{104,98},{104,99},{104,100},{104,101},{104,102},{104,103},{104,104},{104,105},{104,106},{104,107},{104,108},{104,109},{104,110},{104,111},{104,112},{104,113},{104,114},{104,115},{104,116},{104,117},{104,118},{104,119},{104,120},{104,121},{104,122},{104,123},{104,124},{104,125},{104,126},{104,127},{104,128},{104,129},{104,130},{104,131},{104,132},{104,133},{104,134},{104,135},{104,136},{104,137},{104,138},{104,139},{104,140},{104,141},{104,142},{104,143},{104,144},{104,145},{104,146},{104,147},{104,148},{104,149},{104,150},{103,0},{103,1},{103,2},{103,3},{103,4},{103,5},{103,6},{103,7},{103,8},{103,9},{103,10},{103,11},{103,12},{103,13},{103,14},{103,15},{103,16},{103,17},{103,18},{103,19},{103,20},{103,21},{103,22},{103,23},{103,24},{103,25},{103,26},{103,27},{103,28},{103,29},{103,30},{103,31},{103,32},{103,33},{103,34},{103,35},{103,36},{103,37},{103,38},{103,39},{103,40},{103,41},{103,42},{103,43},{103,44},{103,45},{103,46},{103,47},{103,48},{103,49},{103,50},{103,51},{103,52},{103,53},{103,54},{103,55},{103,56},{103,57},{103,58},{103,59},{103,60},{103,61},{103,62},{103,63},{103,64},{103,65},{103,66},{103,67},{103,68},{103,69},{103,70},{103,71},{103,72},{103,73},{103,74},{103,75},{103,76},{103,77},{103,78},{103,79},{103,80},{103,81},{103,82},{103,83},{103,84},{103,85},{103,86},{103,87},{103,88},{103,89},{103,90},{103,91},{103,92},{103,93},{103,94},{103,95},{103,96},{103,97},{103,98},{103,99},{103,100},{103,101},{103,102},{103,103},{103,104},{103,105},{103,106},{103,107},{103,108},{103,109},{103,110},{103,111},{103,112},{103,113},{103,114},{103,115},{103,116},{103,117},{103,118},{103,119},{103,120},{103,121},{103,122},{103,123},{103,124},{103,125},{103,126},{103,127},{103,128},{103,129},{103,130},{103,131},{103,132},{103,133},{103,134},{103,135},{103,136},{103,137},{103,138},{103,139},{103,140},{103,141},{103,142},{103,143},{103,144},{103,145},{103,146},{103,147},{103,148},{103,149},{103,150},{102,0},{102,1},{102,2},{102,3},{102,4},{102,5},{102,6},{102,7},{102,8},{102,9},{102,10},{102,11},{102,12},{102,13},{102,14},{102,15},{102,16},{102,17},{102,18},{102,19},{102,20},{102,21},{102,22},{102,23},{102,24},{102,25},{102,26},{102,27},{102,28},{102,29},{102,30},{102,31},{102,32},{102,33},{102,34},{102,35},{102,36},{102,37},{102,38},{102,39},{102,40},{102,41},{102,42},{102,43},{102,44},{102,45},{102,46},{102,47},{102,48},{102,49},{102,50},{102,51},{102,52},{102,53},{102,54},{102,55},{102,56},{102,57},{102,58},{102,59},{102,60},{102,61},{102,62},{102,63},{102,64},{102,65},{102,66},{102,67},{102,68},{102,69},{102,70},{102,71},{102,72},{102,73},{102,74},{102,75},{102,76},{102,77},{102,78},{102,79},{102,80},{102,81},{102,82},{102,83},{102,84},{102,85},{102,86},{102,87},{102,88},{102,89},{102,90},{102,91},{102,92},{102,93},{102,94},{102,95},{102,96},{102,97},{102,98},{102,99},{102,100},{102,101},{102,102},{102,103},{102,104},{102,105},{102,106},{102,107},{102,108},{102,109},{102,110},{102,111},{102,112},{102,113},{102,114},{102,115},{102,116},{102,117},{102,118},{102,119},{102,120},{102,121},{102,122},{102,123},{102,124},{102,125},{102,126},{102,127},{102,128},{102,129},{102,130},{102,131},{102,132},{102,133},{102,134},{102,135},{102,136},{102,137},{102,138},{102,139},{102,140},{102,141},{102,142},{102,143},{102,144},{102,145},{102,146},{102,147},{102,148},{102,149},{102,150},{101,0},{101,1},{101,2},{101,3},{101,4},{101,5},{101,6},{101,7},{101,8},{101,9},{101,10},{101,11},{101,12},{101,13},{101,14},{101,15},{101,16},{101,17},{101,18},{101,19},{101,20},{101,21},{101,22},{101,23},{101,24},{101,25},{101,26},{101,27},{101,28},{101,29},{101,30},{101,31},{101,32},{101,33},{101,34},{101,35},{101,36},{101,37},{101,38},{101,39},{101,40},{101,41},{101,42},{101,43},{101,44},{101,45},{101,46},{101,47},{101,48},{101,49},{101,50},{101,51},{101,52},{101,53},{101,54},{101,55},{101,56},{101,57},{101,58},{101,59},{101,60},{101,61},{101,62},{101,63},{101,64},{101,65},{101,66},{101,67},{101,68},{101,69},{101,70},{101,71},{101,72},{101,73},{101,74},{101,75},{101,76},{101,77},{101,78},{101,79},{101,80},{101,81},{101,82},{101,83},{101,84},{101,85},{101,86},{101,87},{101,88},{101,89},{101,90},{101,91},{101,92},{101,93},{101,94},{101,95},{101,96},{101,97},{101,98},{101,99},{101,100},{101,101},{101,102},{101,103},{101,104},{101,105},{101,106},{101,107},{101,108},{101,109},{101,110},{101,111},{101,112},{101,113},{101,114},{101,115},{101,116},{101,117},{101,118},{101,119},{101,120},{101,121},{101,122},{101,123},{101,124},{101,125},{101,126},{101,127},{101,128},{101,129},{101,130},{101,131},{101,132},{101,133},{101,134},{101,135},{101,136},{101,137},{101,138},{101,139},{101,140},{101,141},{101,142},{101,143},{101,144},{101,145},{101,146},{101,147},{101,148},{101,149},{101,150},{100,0},{100,1},{100,2},{100,3},{100,4},{100,5},{100,6},{100,7},{100,8},{100,9},{100,10},{100,11},{100,12},{100,13},{100,14},{100,15},{100,16},{100,17},{100,18},{100,19},{100,20},{100,21},{100,22},{100,23},{100,24},{100,25},{100,26},{100,27},{100,28},{100,29},{100,30},{100,31},{100,32},{100,33},{100,34},{100,35},{100,36},{100,37},{100,38},{100,39},{100,40},{100,41},{100,42},{100,43},{100,44},{100,45},{100,46},{100,47},{100,48},{100,49},{100,50},{100,51},{100,52},{100,53},{100,54},{100,55},{100,56},{100,57},{100,58},{100,59},{100,60},{100,61},{100,62},{100,63},{100,64},{100,65},{100,66},{100,67},{100,68},{100,69},{100,70},{100,71},{100,72},{100,73},{100,74},{100,75},{100,76},{100,77},{100,78},{100,79},{100,80},{100,81},{100,82},{100,83},{100,84},{100,85},{100,86},{100,87},{100,88},{100,89},{100,90},{100,91},{100,92},{100,93},{100,94},{100,95},{100,96},{100,97},{100,98},{100,99},{100,100},{100,101},{100,102},{100,103},{100,104},{100,105},{100,106},{100,107},{100,108},{100,109},{100,110},{100,111},{100,112},{100,113},{100,114},{100,115},{100,116},{100,117},{100,118},{100,119},{100,120},{100,121},{100,122},{100,123},{100,124},{100,125},{100,126},{100,127},{100,128},{100,129},{100,130},{100,131},{100,132},{100,133},{100,134},{100,135},{100,136},{100,137},{100,138},{100,139},{100,140},{100,141},{100,142},{100,143},{100,144},{100,145},{100,146},{100,147},{100,148},{100,149},{100,150},{99,0},{99,1},{99,2},{99,3},{99,4},{99,5},{99,6},{99,7},{99,8},{99,9},{99,10},{99,11},{99,12},{99,13},{99,14},{99,15},{99,16},{99,17},{99,18},{99,19},{99,20},{99,21},{99,22},{99,23},{99,24},{99,25},{99,26},{99,27},{99,28},{99,29},{99,30},{99,31},{99,32},{99,33},{99,34},{99,35},{99,36},{99,37},{99,38},{99,39},{99,40},{99,41},{99,42},{99,43},{99,44},{99,45},{99,46},{99,47},{99,48},{99,49},{99,50},{99,51},{99,52},{99,53},{99,54},{99,55},{99,56},{99,57},{99,58},{99,59},{99,60},{99,61},{99,62},{99,63},{99,64},{99,65},{99,66},{99,67},{99,68},{99,69},{99,70},{99,71},{99,72},{99,73},{99,74},{99,75},{99,76},{99,77},{99,78},{99,79},{99,80},{99,81},{99,82},{99,83},{99,84},{99,85},{99,86},{99,87},{99,88},{99,89},{99,90},{99,91},{99,92},{99,93},{99,94},{99,95},{99,96},{99,97},{99,98},{99,99},{99,100},{99,101},{99,102},{99,103},{99,104},{99,105},{99,106},{99,107},{99,108},{99,109},{99,110},{99,111},{99,112},{99,113},{99,114},{99,115},{99,116},{99,117},{99,118},{99,119},{99,120},{99,121},{99,122},{99,123},{99,124},{99,125},{99,126},{99,127},{99,128},{99,129},{99,130},{99,131},{99,132},{99,133},{99,134},{99,135},{99,136},{99,137},{99,138},{99,139},{99,140},{99,141},{99,142},{99,143},{99,144},{99,145},{99,146},{99,147},{99,148},{99,149},{99,150},{98,0},{98,1},{98,2},{98,3},{98,4},{98,5},{98,6},{98,7},{98,8},{98,9},{98,10},{98,11},{98,12},{98,13},{98,14},{98,15},{98,16},{98,17},{98,18},{98,19},{98,20},{98,21},{98,22},{98,23},{98,24},{98,25},{98,26},{98,27},{98,28},{98,29},{98,30},{98,31},{98,32},{98,33},{98,34},{98,35},{98,36},{98,37},{98,38},{98,39},{98,40},{98,41},{98,42},{98,43},{98,44},{98,45},{98,46},{98,47},{98,48},{98,49},{98,50},{98,51},{98,52},{98,53},{98,54},{98,55},{98,56},{98,57},{98,58},{98,59},{98,60},{98,61},{98,62},{98,63},{98,64},{98,65},{98,66},{98,67},{98,68},{98,69},{98,70},{98,71},{98,72},{98,73},{98,74},{98,75},{98,76},{98,77},{98,78},{98,79},{98,80},{98,81},{98,82},{98,83},{98,84},{98,85},{98,86},{98,87},{98,88},{98,89},{98,90},{98,91},{98,92},{98,93},{98,94},{98,95},{98,96},{98,97},{98,98},{98,99},{98,100},{98,101},{98,102},{98,103},{98,104},{98,105},{98,106},{98,107},{98,108},{98,109},{98,110},{98,111},{98,112},{98,113},{98,114},{98,115},{98,116},{98,117},{98,118},{98,119},{98,120},{98,121},{98,122},{98,123},{98,124},{98,125},{98,126},{98,127},{98,128},{98,129},{98,130},{98,131},{98,132},{98,133},{98,134},{98,135},{98,136},{98,137},{98,138},{98,139},{98,140},{98,141},{98,142},{98,143},{98,144},{98,145},{98,146},{98,147},{98,148},{98,149},{98,150},{97,0},{97,1},{97,2},{97,3},{97,4},{97,5},{97,6},{97,7},{97,8},{97,9},{97,10},{97,11},{97,12},{97,13},{97,14},{97,15},{97,16},{97,17},{97,18},{97,19},{97,20},{97,21},{97,22},{97,23},{97,24},{97,25},{97,26},{97,27},{97,28},{97,29},{97,30},{97,31},{97,32},{97,33},{97,34},{97,35},{97,36},{97,37},{97,38},{97,39},{97,40},{97,41},{97,42},{97,43},{97,44},{97,45},{97,46},{97,47},{97,48},{97,49},{97,50},{97,51},{97,52},{97,53},{97,54},{97,55},{97,56},{97,57},{97,58},{97,59},{97,60},{97,61},{97,62},{97,63},{97,64},{97,65},{97,66},{97,67},{97,68},{97,69},{97,70},{97,71},{97,72},{97,73},{97,74},{97,75},{97,76},{97,77},{97,78},{97,79},{97,80},{97,81},{97,82},{97,83},{97,84},{97,85},{97,86},{97,87},{97,88},{97,89},{97,90},{97,91},{97,92},{97,93},{97,94},{97,95},{97,96},{97,97},{97,98},{97,99},{97,100},{97,101},{97,102},{97,103},{97,104},{97,105},{97,106},{97,107},{97,108},{97,109},{97,110},{97,111},{97,112},{97,113},{97,114},{97,115},{97,116},{97,117},{97,118},{97,119},{97,120},{97,121},{97,122},{97,123},{97,124},{97,125},{97,126},{97,127},{97,128},{97,129},{97,130},{97,131},{97,132},{97,133},{97,134},{97,135},{97,136},{97,137},{97,138},{97,139},{97,140},{97,141},{97,142},{97,143},{97,144},{97,145},{97,146},{97,147},{97,148},{97,149},{97,150},{96,0},{96,1},{96,2},{96,3},{96,4},{96,5},{96,6},{96,7},{96,8},{96,9},{96,10},{96,11},{96,12},{96,13},{96,14},{96,15},{96,16},{96,17},{96,18},{96,19},{96,20},{96,21},{96,22},{96,23},{96,24},{96,25},{96,26},{96,27},{96,28},{96,29},{96,30},{96,31},{96,32},{96,33},{96,34},{96,35},{96,36},{96,37},{96,38},{96,39},{96,40},{96,41},{96,42},{96,43},{96,44},{96,45},{96,46},{96,47},{96,48},{96,49},{96,50},{96,51},{96,52},{96,53},{96,54},{96,55},{96,56},{96,57},{96,58},{96,59},{96,60},{96,61},{96,62},{96,63},{96,64},{96,65},{96,66},{96,67},{96,68},{96,69},{96,70},{96,71},{96,72},{96,73},{96,74},{96,75},{96,76},{96,77},{96,78},{96,79},{96,80},{96,81},{96,82},{96,83},{96,84},{96,85},{96,86},{96,87},{96,88},{96,89},{96,90},{96,91},{96,92},{96,93},{96,94},{96,95},{96,96},{96,97},{96,98},{96,99},{96,100},{96,101},{96,102},{96,103},{96,104},{96,105},{96,106},{96,107},{96,108},{96,109},{96,110},{96,111},{96,112},{96,113},{96,114},{96,115},{96,116},{96,117},{96,118},{96,119},{96,120},{96,121},{96,122},{96,123},{96,124},{96,125},{96,126},{96,127},{96,128},{96,129},{96,130},{96,131},{96,132},{96,133},{96,134},{96,135},{96,136},{96,137},{96,138},{96,139},{96,140},{96,141},{96,142},{96,143},{96,144},{96,145},{96,146},{96,147},{96,148},{96,149},{96,150},{95,0},{95,1},{95,2},{95,3},{95,4},{95,5},{95,6},{95,7},{95,8},{95,9},{95,10},{95,11},{95,12},{95,13},{95,14},{95,15},{95,16},{95,17},{95,18},{95,19},{95,20},{95,21},{95,22},{95,23},{95,24},{95,25},{95,26},{95,27},{95,28},{95,29},{95,30},{95,31},{95,32},{95,33},{95,34},{95,35},{95,36},{95,37},{95,38},{95,39},{95,40},{95,41},{95,42},{95,43},{95,44},{95,45},{95,46},{95,47},{95,48},{95,49},{95,50},{95,51},{95,52},{95,53},{95,54},{95,55},{95,56},{95,57},{95,58},{95,59},{95,60},{95,61},{95,62},{95,63},{95,64},{95,65},{95,66},{95,67},{95,68},{95,69},{95,70},{95,71},{95,72},{95,73},{95,74},{95,75},{95,76},{95,77},{95,78},{95,79},{95,80},{95,81},{95,82},{95,83},{95,84},{95,85},{95,86},{95,87},{95,88},{95,89},{95,90},{95,91},{95,92},{95,93},{95,94},{95,95},{95,96},{95,97},{95,98},{95,99},{95,100},{95,101},{95,102},{95,103},{95,104},{95,105},{95,106},{95,107},{95,108},{95,109},{95,110},{95,111},{95,112},{95,113},{95,114},{95,115},{95,116},{95,117},{95,118},{95,119},{95,120},{95,121},{95,122},{95,123},{95,124},{95,125},{95,126},{95,127},{95,128},{95,129},{95,130},{95,131},{95,132},{95,133},{95,134},{95,135},{95,136},{95,137},{95,138},{95,139},{95,140},{95,141},{95,142},{95,143},{95,144},{95,145},{95,146},{95,147},{95,148},{95,149},{95,150},{94,0},{94,1},{94,2},{94,3},{94,4},{94,5},{94,6},{94,7},{94,8},{94,9},{94,10},{94,11},{94,12},{94,13},{94,14},{94,15},{94,16},{94,17},{94,18},{94,19},{94,20},{94,21},{94,22},{94,23},{94,24},{94,25},{94,26},{94,27},{94,28},{94,29},{94,30},{94,31},{94,32},{94,33},{94,34},{94,35},{94,36},{94,37},{94,38},{94,39},{94,40},{94,41},{94,42},{94,43},{94,44},{94,45},{94,46},{94,47},{94,48},{94,49},{94,50},{94,51},{94,52},{94,53},{94,54},{94,55},{94,56},{94,57},{94,58},{94,59},{94,60},{94,61},{94,62},{94,63},{94,64},{94,65},{94,66},{94,67},{94,68},{94,69},{94,70},{94,71},{94,72},{94,73},{94,74},{94,75},{94,76},{94,77},{94,78},{94,79},{94,80},{94,81},{94,82},{94,83},{94,84},{94,85},{94,86},{94,87},{94,88},{94,89},{94,90},{94,91},{94,92},{94,93},{94,94},{94,95},{94,96},{94,97},{94,98},{94,99},{94,100},{94,101},{94,102},{94,103},{94,104},{94,105},{94,106},{94,107},{94,108},{94,109},{94,110},{94,111},{94,112},{94,113},{94,114},{94,115},{94,116},{94,117},{94,118},{94,119},{94,120},{94,121},{94,122},{94,123},{94,124},{94,125},{94,126},{94,127},{94,128},{94,129},{94,130},{94,131},{94,132},{94,133},{94,134},{94,135},{94,136},{94,137},{94,138},{94,139},{94,140},{94,141},{94,142},{94,143},{94,144},{94,145},{94,146},{94,147},{94,148},{94,149},{94,150},{93,0},{93,1},{93,2},{93,3},{93,4},{93,5},{93,6},{93,7},{93,8},{93,9},{93,10},{93,11},{93,12},{93,13},{93,14},{93,15},{93,16},{93,17},{93,18},{93,19},{93,20},{93,21},{93,22},{93,23},{93,24},{93,25},{93,26},{93,27},{93,28},{93,29},{93,30},{93,31},{93,32},{93,33},{93,34},{93,35},{93,36},{93,37},{93,38},{93,39},{93,40},{93,41},{93,42},{93,43},{93,44},{93,45},{93,46},{93,47},{93,48},{93,49},{93,50},{93,51},{93,52},{93,53},{93,54},{93,55},{93,56},{93,57},{93,58},{93,59},{93,60},{93,61},{93,62},{93,63},{93,64},{93,65},{93,66},{93,67},{93,68},{93,69},{93,70},{93,71},{93,72},{93,73},{93,74},{93,75},{93,76},{93,77},{93,78},{93,79},{93,80},{93,81},{93,82},{93,83},{93,84},{93,85},{93,86},{93,87},{93,88},{93,89},{93,90},{93,91},{93,92},{93,93},{93,94},{93,95},{93,96},{93,97},{93,98},{93,99},{93,100},{93,101},{93,102},{93,103},{93,104},{93,105},{93,106},{93,107},{93,108},{93,109},{93,110},{93,111},{93,112},{93,113},{93,114},{93,115},{93,116},{93,117},{93,118},{93,119},{93,120},{93,121},{93,122},{93,123},{93,124},{93,125},{93,126},{93,127},{93,128},{93,129},{93,130},{93,131},{93,132},{93,133},{93,134},{93,135},{93,136},{93,137},{93,138},{93,139},{93,140},{93,141},{93,142},{93,143},{93,144},{93,145},{93,146},{93,147},{93,148},{93,149},{93,150},{92,0},{92,1},{92,2},{92,3},{92,4},{92,5},{92,6},{92,7},{92,8},{92,9},{92,10},{92,11},{92,12},{92,13},{92,14},{92,15},{92,16},{92,17},{92,18},{92,19},{92,20},{92,21},{92,22},{92,23},{92,24},{92,25},{92,26},{92,27},{92,28},{92,29},{92,30},{92,31},{92,32},{92,33},{92,34},{92,35},{92,36},{92,37},{92,38},{92,39},{92,40},{92,41},{92,42},{92,43},{92,44},{92,45},{92,46},{92,47},{92,48},{92,49},{92,50},{92,51},{92,52},{92,53},{92,54},{92,55},{92,56},{92,57},{92,58},{92,59},{92,60},{92,61},{92,62},{92,63},{92,64},{92,65},{92,66},{92,67},{92,68},{92,69},{92,70},{92,71},{92,72},{92,73},{92,74},{92,75},{92,76},{92,77},{92,78},{92,79},{92,80},{92,81},{92,82},{92,83},{92,84},{92,85},{92,86},{92,87},{92,88},{92,89},{92,90},{92,91},{92,92},{92,93},{92,94},{92,95},{92,96},{92,97},{92,98},{92,99},{92,100},{92,101},{92,102},{92,103},{92,104},{92,105},{92,106},{92,107},{92,108},{92,109},{92,110},{92,111},{92,112},{92,113},{92,114},{92,115},{92,116},{92,117},{92,118},{92,119},{92,120},{92,121},{92,122},{92,123},{92,124},{92,125},{92,126},{92,127},{92,128},{92,129},{92,130},{92,131},{92,132},{92,133},{92,134},{92,135},{92,136},{92,137},{92,138},{92,139},{92,140},{92,141},{92,142},{92,143},{92,144},{92,145},{92,146},{92,147},{92,148},{92,149},{92,150},{91,0},{91,1},{91,2},{91,3},{91,4},{91,5},{91,6},{91,7},{91,8},{91,9},{91,10},{91,11},{91,12},{91,13},{91,14},{91,15},{91,16},{91,17},{91,18},{91,19},{91,20},{91,21},{91,22},{91,23},{91,24},{91,25},{91,26},{91,27},{91,28},{91,29},{91,30},{91,31},{91,32},{91,33},{91,34},{91,35},{91,36},{91,37},{91,38},{91,39},{91,40},{91,41},{91,42},{91,43},{91,44},{91,45},{91,46},{91,47},{91,48},{91,49},{91,50},{91,51},{91,52},{91,53},{91,54},{91,55},{91,56},{91,57},{91,58},{91,59},{91,60},{91,61},{91,62},{91,63},{91,64},{91,65},{91,66},{91,67},{91,68},{91,69},{91,70},{91,71},{91,72},{91,73},{91,74},{91,75},{91,76},{91,77},{91,78},{91,79},{91,80},{91,81},{91,82},{91,83},{91,84},{91,85},{91,86},{91,87},{91,88},{91,89},{91,90},{91,91},{91,92},{91,93},{91,94},{91,95},{91,96},{91,97},{91,98},{91,99},{91,100},{91,101},{91,102},{91,103},{91,104},{91,105},{91,106},{91,107},{91,108},{91,109},{91,110},{91,111},{91,112},{91,113},{91,114},{91,115},{91,116},{91,117},{91,118},{91,119},{91,120},{91,121},{91,122},{91,123},{91,124},{91,125},{91,126},{91,127},{91,128},{91,129},{91,130},{91,131},{91,132},{91,133},{91,134},{91,135},{91,136},{91,137},{91,138},{91,139},{91,140},{91,141},{91,142},{91,143},{91,144},{91,145},{91,146},{91,147},{91,148},{91,149},{91,150},{90,0},{90,1},{90,2},{90,3},{90,4},{90,5},{90,6},{90,7},{90,8},{90,9},{90,10},{90,11},{90,12},{90,13},{90,14},{90,15},{90,16},{90,17},{90,18},{90,19},{90,20},{90,21},{90,22},{90,23},{90,24},{90,25},{90,26},{90,27},{90,28},{90,29},{90,30},{90,31},{90,32},{90,33},{90,34},{90,35},{90,36},{90,37},{90,38},{90,39},{90,40},{90,41},{90,42},{90,43},{90,44},{90,45},{90,46},{90,47},{90,48},{90,49},{90,50},{90,51},{90,52},{90,53},{90,54},{90,55},{90,56},{90,57},{90,58},{90,59},{90,60},{90,61},{90,62},{90,63},{90,64},{90,65},{90,66},{90,67},{90,68},{90,69},{90,70},{90,71},{90,72},{90,73},{90,74},{90,75},{90,76},{90,77},{90,78},{90,79},{90,80},{90,81},{90,82},{90,83},{90,84},{90,85},{90,86},{90,87},{90,88},{90,89},{90,90},{90,91},{90,92},{90,93},{90,94},{90,95},{90,96},{90,97},{90,98},{90,99},{90,100},{90,101},{90,102},{90,103},{90,104},{90,105},{90,106},{90,107},{90,108},{90,109},{90,110},{90,111},{90,112},{90,113},{90,114},{90,115},{90,116},{90,117},{90,118},{90,119},{90,120},{90,121},{90,122},{90,123},{90,124},{90,125},{90,126},{90,127},{90,128},{90,129},{90,130},{90,131},{90,132},{90,133},{90,134},{90,135},{90,136},{90,137},{90,138},{90,139},{90,140},{90,141},{90,142},{90,143},{90,144},{90,145},{90,146},{90,147},{90,148},{90,149},{90,150},{89,0},{89,1},{89,2},{89,3},{89,4},{89,5},{89,6},{89,7},{89,8},{89,9},{89,10},{89,11},{89,12},{89,13},{89,14},{89,15},{89,16},{89,17},{89,18},{89,19},{89,20},{89,21},{89,22},{89,23},{89,24},{89,25},{89,26},{89,27},{89,28},{89,29},{89,30},{89,31},{89,32},{89,33},{89,34},{89,35},{89,36},{89,37},{89,38},{89,39},{89,40},{89,41},{89,42},{89,43},{89,44},{89,45},{89,46},{89,47},{89,48},{89,49},{89,50},{89,51},{89,52},{89,53},{89,54},{89,55},{89,56},{89,57},{89,58},{89,59},{89,60},{89,61},{89,62},{89,63},{89,64},{89,65},{89,66},{89,67},{89,68},{89,69},{89,70},{89,71},{89,72},{89,73},{89,74},{89,75},{89,76},{89,77},{89,78},{89,79},{89,80},{89,81},{89,82},{89,83},{89,84},{89,85},{89,86},{89,87},{89,88},{89,89},{89,90},{89,91},{89,92},{89,93},{89,94},{89,95},{89,96},{89,97},{89,98},{89,99},{89,100},{89,101},{89,102},{89,103},{89,104},{89,105},{89,106},{89,107},{89,108},{89,109},{89,110},{89,111},{89,112},{89,113},{89,114},{89,115},{89,116},{89,117},{89,118},{89,119},{89,120},{89,121},{89,122},{89,123},{89,124},{89,125},{89,126},{89,127},{89,128},{89,129},{89,130},{89,131},{89,132},{89,133},{89,134},{89,135},{89,136},{89,137},{89,138},{89,139},{89,140},{89,141},{89,142},{89,143},{89,144},{89,145},{89,146},{89,147},{89,148},{89,149},{89,150},{88,0},{88,1},{88,2},{88,3},{88,4},{88,5},{88,6},{88,7},{88,8},{88,9},{88,10},{88,11},{88,12},{88,13},{88,14},{88,15},{88,16},{88,17},{88,18},{88,19},{88,20},{88,21},{88,22},{88,23},{88,24},{88,25},{88,26},{88,27},{88,28},{88,29},{88,30},{88,31},{88,32},{88,33},{88,34},{88,35},{88,36},{88,37},{88,38},{88,39},{88,40},{88,41},{88,42},{88,43},{88,44},{88,45},{88,46},{88,47},{88,48},{88,49},{88,50},{88,51},{88,52},{88,53},{88,54},{88,55},{88,56},{88,57},{88,58},{88,59},{88,60},{88,61},{88,62},{88,63},{88,64},{88,65},{88,66},{88,67},{88,68},{88,69},{88,70},{88,71},{88,72},{88,73},{88,74},{88,75},{88,76},{88,77},{88,78},{88,79},{88,80},{88,81},{88,82},{88,83},{88,84},{88,85},{88,86},{88,87},{88,88},{88,89},{88,90},{88,91},{88,92},{88,93},{88,94},{88,95},{88,96},{88,97},{88,98},{88,99},{88,100},{88,101},{88,102},{88,103},{88,104},{88,105},{88,106},{88,107},{88,108},{88,109},{88,110},{88,111},{88,112},{88,113},{88,114},{88,115},{88,116},{88,117},{88,118},{88,119},{88,120},{88,121},{88,122},{88,123},{88,124},{88,125},{88,126},{88,127},{88,128},{88,129},{88,130},{88,131},{88,132},{88,133},{88,134},{88,135},{88,136},{88,137},{88,138},{88,139},{88,140},{88,141},{88,142},{88,143},{88,144},{88,145},{88,146},{88,147},{88,148},{88,149},{88,150},{87,0},{87,1},{87,2},{87,3},{87,4},{87,5},{87,6},{87,7},{87,8},{87,9},{87,10},{87,11},{87,12},{87,13},{87,14},{87,15},{87,16},{87,17},{87,18},{87,19},{87,20},{87,21},{87,22},{87,23},{87,24},{87,25},{87,26},{87,27},{87,28},{87,29},{87,30},{87,31},{87,32},{87,33},{87,34},{87,35},{87,36},{87,37},{87,38},{87,39},{87,40},{87,41},{87,42},{87,43},{87,44},{87,45},{87,46},{87,47},{87,48},{87,49},{87,50},{87,51},{87,52},{87,53},{87,54},{87,55},{87,56},{87,57},{87,58},{87,59},{87,60},{87,61},{87,62},{87,63},{87,64},{87,65},{87,66},{87,67},{87,68},{87,69},{87,70},{87,71},{87,72},{87,73},{87,74},{87,75},{87,76},{87,77},{87,78},{87,79},{87,80},{87,81},{87,82},{87,83},{87,84},{87,85},{87,86},{87,87},{87,88},{87,89},{87,90},{87,91},{87,92},{87,93},{87,94},{87,95},{87,96},{87,97},{87,98},{87,99},{87,100},{87,101},{87,102},{87,103},{87,104},{87,105},{87,106},{87,107},{87,108},{87,109},{87,110},{87,111},{87,112},{87,113},{87,114},{87,115},{87,116},{87,117},{87,118},{87,119},{87,120},{87,121},{87,122},{87,123},{87,124},{87,125},{87,126},{87,127},{87,128},{87,129},{87,130},{87,131},{87,132},{87,133},{87,134},{87,135},{87,136},{87,137},{87,138},{87,139},{87,140},{87,141},{87,142},{87,143},{87,144},{87,145},{87,146},{87,147},{87,148},{87,149},{87,150},{86,0},{86,1},{86,2},{86,3},{86,4},{86,5},{86,6},{86,7},{86,8},{86,9},{86,10},{86,11},{86,12},{86,13},{86,14},{86,15},{86,16},{86,17},{86,18},{86,19},{86,20},{86,21},{86,22},{86,23},{86,24},{86,25},{86,26},{86,27},{86,28},{86,29},{86,30},{86,31},{86,32},{86,33},{86,34},{86,35},{86,36},{86,37},{86,38},{86,39},{86,40},{86,41},{86,42},{86,43},{86,44},{86,45},{86,46},{86,47},{86,48},{86,49},{86,50},{86,51},{86,52},{86,53},{86,54},{86,55},{86,56},{86,57},{86,58},{86,59},{86,60},{86,61},{86,62},{86,63},{86,64},{86,65},{86,66},{86,67},{86,68},{86,69},{86,70},{86,71},{86,72},{86,73},{86,74},{86,75},{86,76},{86,77},{86,78},{86,79},{86,80},{86,81},{86,82},{86,83},{86,84},{86,85},{86,86},{86,87},{86,88},{86,89},{86,90},{86,91},{86,92},{86,93},{86,94},{86,95},{86,96},{86,97},{86,98},{86,99},{86,100},{86,101},{86,102},{86,103},{86,104},{86,105},{86,106},{86,107},{86,108},{86,109},{86,110},{86,111},{86,112},{86,113},{86,114},{86,115},{86,116},{86,117},{86,118},{86,119},{86,120},{86,121},{86,122},{86,123},{86,124},{86,125},{86,126},{86,127},{86,128},{86,129},{86,130},{86,131},{86,132},{86,133},{86,134},{86,135},{86,136},{86,137},{86,138},{86,139},{86,140},{86,141},{86,142},{86,143},{86,144},{86,145},{86,146},{86,147},{86,148},{86,149},{86,150},{85,0},{85,1},{85,2},{85,3},{85,4},{85,5},{85,6},{85,7},{85,8},{85,9},{85,10},{85,11},{85,12},{85,13},{85,14},{85,15},{85,16},{85,17},{85,18},{85,19},{85,20},{85,21},{85,22},{85,23},{85,24},{85,25},{85,26},{85,27},{85,28},{85,29},{85,30},{85,31},{85,32},{85,33},{85,34},{85,35},{85,36},{85,37},{85,38},{85,39},{85,40},{85,41},{85,42},{85,43},{85,44},{85,45},{85,46},{85,47},{85,48},{85,49},{85,50},{85,51},{85,52},{85,53},{85,54},{85,55},{85,56},{85,57},{85,58},{85,59},{85,60},{85,61},{85,62},{85,63},{85,64},{85,65},{85,66},{85,67},{85,68},{85,69},{85,70},{85,71},{85,72},{85,73},{85,74},{85,75},{85,76},{85,77},{85,78},{85,79},{85,80},{85,81},{85,82},{85,83},{85,84},{85,85},{85,86},{85,87},{85,88},{85,89},{85,90},{85,91},{85,92},{85,93},{85,94},{85,95},{85,96},{85,97},{85,98},{85,99},{85,100},{85,101},{85,102},{85,103},{85,104},{85,105},{85,106},{85,107},{85,108},{85,109},{85,110},{85,111},{85,112},{85,113},{85,114},{85,115},{85,116},{85,117},{85,118},{85,119},{85,120},{85,121},{85,122},{85,123},{85,124},{85,125},{85,126},{85,127},{85,128},{85,129},{85,130},{85,131},{85,132},{85,133},{85,134},{85,135},{85,136},{85,137},{85,138},{85,139},{85,140},{85,141},{85,142},{85,143},{85,144},{85,145},{85,146},{85,147},{85,148},{85,149},{85,150},{84,0},{84,1},{84,2},{84,3},{84,4},{84,5},{84,6},{84,7},{84,8},{84,9},{84,10},{84,11},{84,12},{84,13},{84,14},{84,15},{84,16},{84,17},{84,18},{84,19},{84,20},{84,21},{84,22},{84,23},{84,24},{84,25},{84,26},{84,27},{84,28},{84,29},{84,30},{84,31},{84,32},{84,33},{84,34},{84,35},{84,36},{84,37},{84,38},{84,39},{84,40},{84,41},{84,42},{84,43},{84,44},{84,45},{84,46},{84,47},{84,48},{84,49},{84,50},{84,51},{84,52},{84,53},{84,54},{84,55},{84,56},{84,57},{84,58},{84,59},{84,60},{84,61},{84,62},{84,63},{84,64},{84,65},{84,66},{84,67},{84,68},{84,69},{84,70},{84,71},{84,72},{84,73},{84,74},{84,75},{84,76},{84,77},{84,78},{84,79},{84,80},{84,81},{84,82},{84,83},{84,84},{84,85},{84,86},{84,87},{84,88},{84,89},{84,90},{84,91},{84,92},{84,93},{84,94},{84,95},{84,96},{84,97},{84,98},{84,99},{84,100},{84,101},{84,102},{84,103},{84,104},{84,105},{84,106},{84,107},{84,108},{84,109},{84,110},{84,111},{84,112},{84,113},{84,114},{84,115},{84,116},{84,117},{84,118},{84,119},{84,120},{84,121},{84,122},{84,123},{84,124},{84,125},{84,126},{84,127},{84,128},{84,129},{84,130},{84,131},{84,132},{84,133},{84,134},{84,135},{84,136},{84,137},{84,138},{84,139},{84,140},{84,141},{84,142},{84,143},{84,144},{84,145},{84,146},{84,147},{84,148},{84,149},{84,150},{83,0},{83,1},{83,2},{83,3},{83,4},{83,5},{83,6},{83,7},{83,8},{83,9},{83,10},{83,11},{83,12},{83,13},{83,14},{83,15},{83,16},{83,17},{83,18},{83,19},{83,20},{83,21},{83,22},{83,23},{83,24},{83,25},{83,26},{83,27},{83,28},{83,29},{83,30},{83,31},{83,32},{83,33},{83,34},{83,35},{83,36},{83,37},{83,38},{83,39},{83,40},{83,41},{83,42},{83,43},{83,44},{83,45},{83,46},{83,47},{83,48},{83,49},{83,50},{83,51},{83,52},{83,53},{83,54},{83,55},{83,56},{83,57},{83,58},{83,59},{83,60},{83,61},{83,62},{83,63},{83,64},{83,65},{83,66},{83,67},{83,68},{83,69},{83,70},{83,71},{83,72},{83,73},{83,74},{83,75},{83,76},{83,77},{83,78},{83,79},{83,80},{83,81},{83,82},{83,83},{83,84},{83,85},{83,86},{83,87},{83,88},{83,89},{83,90},{83,91},{83,92},{83,93},{83,94},{83,95},{83,96},{83,97},{83,98},{83,99},{83,100},{83,101},{83,102},{83,103},{83,104},{83,105},{83,106},{83,107},{83,108},{83,109},{83,110},{83,111},{83,112},{83,113},{83,114},{83,115},{83,116},{83,117},{83,118},{83,119},{83,120},{83,121},{83,122},{83,123},{83,124},{83,125},{83,126},{83,127},{83,128},{83,129},{83,130},{83,131},{83,132},{83,133},{83,134},{83,135},{83,136},{83,137},{83,138},{83,139},{83,140},{83,141},{83,142},{83,143},{83,144},{83,145},{83,146},{83,147},{83,148},{83,149},{83,150},{82,0},{82,1},{82,2},{82,3},{82,4},{82,5},{82,6},{82,7},{82,8},{82,9},{82,10},{82,11},{82,12},{82,13},{82,14},{82,15},{82,16},{82,17},{82,18},{82,19},{82,20},{82,21},{82,22},{82,23},{82,24},{82,25},{82,26},{82,27},{82,28},{82,29},{82,30},{82,31},{82,32},{82,33},{82,34},{82,35},{82,36},{82,37},{82,38},{82,39},{82,40},{82,41},{82,42},{82,43},{82,44},{82,45},{82,46},{82,47},{82,48},{82,49},{82,50},{82,51},{82,52},{82,53},{82,54},{82,55},{82,56},{82,57},{82,58},{82,59},{82,60},{82,61},{82,62},{82,63},{82,64},{82,65},{82,66},{82,67},{82,68},{82,69},{82,70},{82,71},{82,72},{82,73},{82,74},{82,75},{82,76},{82,77},{82,78},{82,79},{82,80},{82,81},{82,82},{82,83},{82,84},{82,85},{82,86},{82,87},{82,88},{82,89},{82,90},{82,91},{82,92},{82,93},{82,94},{82,95},{82,96},{82,97},{82,98},{82,99},{82,100},{82,101},{82,102},{82,103},{82,104},{82,105},{82,106},{82,107},{82,108},{82,109},{82,110},{82,111},{82,112},{82,113},{82,114},{82,115},{82,116},{82,117},{82,118},{82,119},{82,120},{82,121},{82,122},{82,123},{82,124},{82,125},{82,126},{82,127},{82,128},{82,129},{82,130},{82,131},{82,132},{82,133},{82,134},{82,135},{82,136},{82,137},{82,138},{82,139},{82,140},{82,141},{82,142},{82,143},{82,144},{82,145},{82,146},{82,147},{82,148},{82,149},{82,150},{81,0},{81,1},{81,2},{81,3},{81,4},{81,5},{81,6},{81,7},{81,8},{81,9},{81,10},{81,11},{81,12},{81,13},{81,14},{81,15},{81,16},{81,17},{81,18},{81,19},{81,20},{81,21},{81,22},{81,23},{81,24},{81,25},{81,26},{81,27},{81,28},{81,29},{81,30},{81,31},{81,32},{81,33},{81,34},{81,35},{81,36},{81,37},{81,38},{81,39},{81,40},{81,41},{81,42},{81,43},{81,44},{81,45},{81,46},{81,47},{81,48},{81,49},{81,50},{81,51},{81,52},{81,53},{81,54},{81,55},{81,56},{81,57},{81,58},{81,59},{81,60},{81,61},{81,62},{81,63},{81,64},{81,65},{81,66},{81,67},{81,68},{81,69},{81,70},{81,71},{81,72},{81,73},{81,74},{81,75},{81,76},{81,77},{81,78},{81,79},{81,80},{81,81},{81,82},{81,83},{81,84},{81,85},{81,86},{81,87},{81,88},{81,89},{81,90},{81,91},{81,92},{81,93},{81,94},{81,95},{81,96},{81,97},{81,98},{81,99},{81,100},{81,101},{81,102},{81,103},{81,104},{81,105},{81,106},{81,107},{81,108},{81,109},{81,110},{81,111},{81,112},{81,113},{81,114},{81,115},{81,116},{81,117},{81,118},{81,119},{81,120},{81,121},{81,122},{81,123},{81,124},{81,125},{81,126},{81,127},{81,128},{81,129},{81,130},{81,131},{81,132},{81,133},{81,134},{81,135},{81,136},{81,137},{81,138},{81,139},{81,140},{81,141},{81,142},{81,143},{81,144},{81,145},{81,146},{81,147},{81,148},{81,149},{81,150},{80,0},{80,1},{80,2},{80,3},{80,4},{80,5},{80,6},{80,7},{80,8},{80,9},{80,10},{80,11},{80,12},{80,13},{80,14},{80,15},{80,16},{80,17},{80,18},{80,19},{80,20},{80,21},{80,22},{80,23},{80,24},{80,25},{80,26},{80,27},{80,28},{80,29},{80,30},{80,31},{80,32},{80,33},{80,34},{80,35},{80,36},{80,37},{80,38},{80,39},{80,40},{80,41},{80,42},{80,43},{80,44},{80,45},{80,46},{80,47},{80,48},{80,49},{80,50},{80,51},{80,52},{80,53},{80,54},{80,55},{80,56},{80,57},{80,58},{80,59},{80,60},{80,61},{80,62},{80,63},{80,64},{80,65},{80,66},{80,67},{80,68},{80,69},{80,70},{80,71},{80,72},{80,73},{80,74},{80,75},{80,76},{80,77},{80,78},{80,79},{80,80},{80,81},{80,82},{80,83},{80,84},{80,85},{80,86},{80,87},{80,88},{80,89},{80,90},{80,91},{80,92},{80,93},{80,94},{80,95},{80,96},{80,97},{80,98},{80,99},{80,100},{80,101},{80,102},{80,103},{80,104},{80,105},{80,106},{80,107},{80,108},{80,109},{80,110},{80,111},{80,112},{80,113},{80,114},{80,115},{80,116},{80,117},{80,118},{80,119},{80,120},{80,121},{80,122},{80,123},{80,124},{80,125},{80,126},{80,127},{80,128},{80,129},{80,130},{80,131},{80,132},{80,133},{80,134},{80,135},{80,136},{80,137},{80,138},{80,139},{80,140},{80,141},{80,142},{80,143},{80,144},{80,145},{80,146},{80,147},{80,148},{80,149},{80,150},{79,0},{79,1},{79,2},{79,3},{79,4},{79,5},{79,6},{79,7},{79,8},{79,9},{79,10},{79,11},{79,12},{79,13},{79,14},{79,15},{79,16},{79,17},{79,18},{79,19},{79,20},{79,21},{79,22},{79,23},{79,24},{79,25},{79,26},{79,27},{79,28},{79,29},{79,30},{79,31},{79,32},{79,33},{79,34},{79,35},{79,36},{79,37},{79,38},{79,39},{79,40},{79,41},{79,42},{79,43},{79,44},{79,45},{79,46},{79,47},{79,48},{79,49},{79,50},{79,51},{79,52},{79,53},{79,54},{79,55},{79,56},{79,57},{79,58},{79,59},{79,60},{79,61},{79,62},{79,63},{79,64},{79,65},{79,66},{79,67},{79,68},{79,69},{79,70},{79,71},{79,72},{79,73},{79,74},{79,75},{79,76},{79,77},{79,78},{79,79},{79,80},{79,81},{79,82},{79,83},{79,84},{79,85},{79,86},{79,87},{79,88},{79,89},{79,90},{79,91},{79,92},{79,93},{79,94},{79,95},{79,96},{79,97},{79,98},{79,99},{79,100},{79,101},{79,102},{79,103},{79,104},{79,105},{79,106},{79,107},{79,108},{79,109},{79,110},{79,111},{79,112},{79,113},{79,114},{79,115},{79,116},{79,117},{79,118},{79,119},{79,120},{79,121},{79,122},{79,123},{79,124},{79,125},{79,126},{79,127},{79,128},{79,129},{79,130},{79,131},{79,132},{79,133},{79,134},{79,135},{79,136},{79,137},{79,138},{79,139},{79,140},{79,141},{79,142},{79,143},{79,144},{79,145},{79,146},{79,147},{79,148},{79,149},{79,150},{78,0},{78,1},{78,2},{78,3},{78,4},{78,5},{78,6},{78,7},{78,8},{78,9},{78,10},{78,11},{78,12},{78,13},{78,14},{78,15},{78,16},{78,17},{78,18},{78,19},{78,20},{78,21},{78,22},{78,23},{78,24},{78,25},{78,26},{78,27},{78,28},{78,29},{78,30},{78,31},{78,32},{78,33},{78,34},{78,35},{78,36},{78,37},{78,38},{78,39},{78,40},{78,41},{78,42},{78,43},{78,44},{78,45},{78,46},{78,47},{78,48},{78,49},{78,50},{78,51},{78,52},{78,53},{78,54},{78,55},{78,56},{78,57},{78,58},{78,59},{78,60},{78,61},{78,62},{78,63},{78,64},{78,65},{78,66},{78,67},{78,68},{78,69},{78,70},{78,71},{78,72},{78,73},{78,74},{78,75},{78,76},{78,77},{78,78},{78,79},{78,80},{78,81},{78,82},{78,83},{78,84},{78,85},{78,86},{78,87},{78,88},{78,89},{78,90},{78,91},{78,92},{78,93},{78,94},{78,95},{78,96},{78,97},{78,98},{78,99},{78,100},{78,101},{78,102},{78,103},{78,104},{78,105},{78,106},{78,107},{78,108},{78,109},{78,110},{78,111},{78,112},{78,113},{78,114},{78,115},{78,116},{78,117},{78,118},{78,119},{78,120},{78,121},{78,122},{78,123},{78,124},{78,125},{78,126},{78,127},{78,128},{78,129},{78,130},{78,131},{78,132},{78,133},{78,134},{78,135},{78,136},{78,137},{78,138},{78,139},{78,140},{78,141},{78,142},{78,143},{78,144},{78,145},{78,146},{78,147},{78,148},{78,149},{78,150},{77,0},{77,1},{77,2},{77,3},{77,4},{77,5},{77,6},{77,7},{77,8},{77,9},{77,10},{77,11},{77,12},{77,13},{77,14},{77,15},{77,16},{77,17},{77,18},{77,19},{77,20},{77,21},{77,22},{77,23},{77,24},{77,25},{77,26},{77,27},{77,28},{77,29},{77,30},{77,31},{77,32},{77,33},{77,34},{77,35},{77,36},{77,37},{77,38},{77,39},{77,40},{77,41},{77,42},{77,43},{77,44},{77,45},{77,46},{77,47},{77,48},{77,49},{77,50},{77,51},{77,52},{77,53},{77,54},{77,55},{77,56},{77,57},{77,58},{77,59},{77,60},{77,61},{77,62},{77,63},{77,64},{77,65},{77,66},{77,67},{77,68},{77,69},{77,70},{77,71},{77,72},{77,73},{77,74},{77,75},{77,76},{77,77},{77,78},{77,79},{77,80},{77,81},{77,82},{77,83},{77,84},{77,85},{77,86},{77,87},{77,88},{77,89},{77,90},{77,91},{77,92},{77,93},{77,94},{77,95},{77,96},{77,97},{77,98},{77,99},{77,100},{77,101},{77,102},{77,103},{77,104},{77,105},{77,106},{77,107},{77,108},{77,109},{77,110},{77,111},{77,112},{77,113},{77,114},{77,115},{77,116},{77,117},{77,118},{77,119},{77,120},{77,121},{77,122},{77,123},{77,124},{77,125},{77,126},{77,127},{77,128},{77,129},{77,130},{77,131},{77,132},{77,133},{77,134},{77,135},{77,136},{77,137},{77,138},{77,139},{77,140},{77,141},{77,142},{77,143},{77,144},{77,145},{77,146},{77,147},{77,148},{77,149},{77,150},{76,0},{76,1},{76,2},{76,3},{76,4},{76,5},{76,6},{76,7},{76,8},{76,9},{76,10},{76,11},{76,12},{76,13},{76,14},{76,15},{76,16},{76,17},{76,18},{76,19},{76,20},{76,21},{76,22},{76,23},{76,24},{76,25},{76,26},{76,27},{76,28},{76,29},{76,30},{76,31},{76,32},{76,33},{76,34},{76,35},{76,36},{76,37},{76,38},{76,39},{76,40},{76,41},{76,42},{76,43},{76,44},{76,45},{76,46},{76,47},{76,48},{76,49},{76,50},{76,51},{76,52},{76,53},{76,54},{76,55},{76,56},{76,57},{76,58},{76,59},{76,60},{76,61},{76,62},{76,63},{76,64},{76,65},{76,66},{76,67},{76,68},{76,69},{76,70},{76,71},{76,72},{76,73},{76,74},{76,75},{76,76},{76,77},{76,78},{76,79},{76,80},{76,81},{76,82},{76,83},{76,84},{76,85},{76,86},{76,87},{76,88},{76,89},{76,90},{76,91},{76,92},{76,93},{76,94},{76,95},{76,96},{76,97},{76,98},{76,99},{76,100},{76,101},{76,102},{76,103},{76,104},{76,105},{76,106},{76,107},{76,108},{76,109},{76,110},{76,111},{76,112},{76,113},{76,114},{76,115},{76,116},{76,117},{76,118},{76,119},{76,120},{76,121},{76,122},{76,123},{76,124},{76,125},{76,126},{76,127},{76,128},{76,129},{76,130},{76,131},{76,132},{76,133},{76,134},{76,135},{76,136},{76,137},{76,138},{76,139},{76,140},{76,141},{76,142},{76,143},{76,144},{76,145},{76,146},{76,147},{76,148},{76,149},{76,150},{75,0},{75,1},{75,2},{75,3},{75,4},{75,5},{75,6},{75,7},{75,8},{75,9},{75,10},{75,11},{75,12},{75,13},{75,14},{75,15},{75,16},{75,17},{75,18},{75,19},{75,20},{75,21},{75,22},{75,23},{75,24},{75,25},{75,26},{75,27},{75,28},{75,29},{75,30},{75,31},{75,32},{75,33},{75,34},{75,35},{75,36},{75,37},{75,38},{75,39},{75,40},{75,41},{75,42},{75,43},{75,44},{75,45},{75,46},{75,47},{75,48},{75,49},{75,50},{75,51},{75,52},{75,53},{75,54},{75,55},{75,56},{75,57},{75,58},{75,59},{75,60},{75,61},{75,62},{75,63},{75,64},{75,65},{75,66},{75,67},{75,68},{75,69},{75,70},{75,71},{75,72},{75,73},{75,74},{75,75},{75,76},{75,77},{75,78},{75,79},{75,80},{75,81},{75,82},{75,83},{75,84},{75,85},{75,86},{75,87},{75,88},{75,89},{75,90},{75,91},{75,92},{75,93},{75,94},{75,95},{75,96},{75,97},{75,98},{75,99},{75,100},{75,101},{75,102},{75,103},{75,104},{75,105},{75,106},{75,107},{75,108},{75,109},{75,110},{75,111},{75,112},{75,113},{75,114},{75,115},{75,116},{75,117},{75,118},{75,119},{75,120},{75,121},{75,122},{75,123},{75,124},{75,125},{75,126},{75,127},{75,128},{75,129},{75,130},{75,131},{75,132},{75,133},{75,134},{75,135},{75,136},{75,137},{75,138},{75,139},{75,140},{75,141},{75,142},{75,143},{75,144},{75,145},{75,146},{75,147},{75,148},{75,149},{75,150},{74,0},{74,1},{74,2},{74,3},{74,4},{74,5},{74,6},{74,7},{74,8},{74,9},{74,10},{74,11},{74,12},{74,13},{74,14},{74,15},{74,16},{74,17},{74,18},{74,19},{74,20},{74,21},{74,22},{74,23},{74,24},{74,25},{74,26},{74,27},{74,28},{74,29},{74,30},{74,31},{74,32},{74,33},{74,34},{74,35},{74,36},{74,37},{74,38},{74,39},{74,40},{74,41},{74,42},{74,43},{74,44},{74,45},{74,46},{74,47},{74,48},{74,49},{74,50},{74,51},{74,52},{74,53},{74,54},{74,55},{74,56},{74,57},{74,58},{74,59},{74,60},{74,61},{74,62},{74,63},{74,64},{74,65},{74,66},{74,67},{74,68},{74,69},{74,70},{74,71},{74,72},{74,73},{74,74},{74,75},{74,76},{74,77},{74,78},{74,79},{74,80},{74,81},{74,82},{74,83},{74,84},{74,85},{74,86},{74,87},{74,88},{74,89},{74,90},{74,91},{74,92},{74,93},{74,94},{74,95},{74,96},{74,97},{74,98},{74,99},{74,100},{74,101},{74,102},{74,103},{74,104},{74,105},{74,106},{74,107},{74,108},{74,109},{74,110},{74,111},{74,112},{74,113},{74,114},{74,115},{74,116},{74,117},{74,118},{74,119},{74,120},{74,121},{74,122},{74,123},{74,124},{74,125},{74,126},{74,127},{74,128},{74,129},{74,130},{74,131},{74,132},{74,133},{74,134},{74,135},{74,136},{74,137},{74,138},{74,139},{74,140},{74,141},{74,142},{74,143},{74,144},{74,145},{74,146},{74,147},{74,148},{74,149},{74,150},{73,0},{73,1},{73,2},{73,3},{73,4},{73,5},{73,6},{73,7},{73,8},{73,9},{73,10},{73,11},{73,12},{73,13},{73,14},{73,15},{73,16},{73,17},{73,18},{73,19},{73,20},{73,21},{73,22},{73,23},{73,24},{73,25},{73,26},{73,27},{73,28},{73,29},{73,30},{73,31},{73,32},{73,33},{73,34},{73,35},{73,36},{73,37},{73,38},{73,39},{73,40},{73,41},{73,42},{73,43},{73,44},{73,45},{73,46},{73,47},{73,48},{73,49},{73,50},{73,51},{73,52},{73,53},{73,54},{73,55},{73,56},{73,57},{73,58},{73,59},{73,60},{73,61},{73,62},{73,63},{73,64},{73,65},{73,66},{73,67},{73,68},{73,69},{73,70},{73,71},{73,72},{73,73},{73,74},{73,75},{73,76},{73,77},{73,78},{73,79},{73,80},{73,81},{73,82},{73,83},{73,84},{73,85},{73,86},{73,87},{73,88},{73,89},{73,90},{73,91},{73,92},{73,93},{73,94},{73,95},{73,96},{73,97},{73,98},{73,99},{73,100},{73,101},{73,102},{73,103},{73,104},{73,105},{73,106},{73,107},{73,108},{73,109},{73,110},{73,111},{73,112},{73,113},{73,114},{73,115},{73,116},{73,117},{73,118},{73,119},{73,120},{73,121},{73,122},{73,123},{73,124},{73,125},{73,126},{73,127},{73,128},{73,129},{73,130},{73,131},{73,132},{73,133},{73,134},{73,135},{73,136},{73,137},{73,138},{73,139},{73,140},{73,141},{73,142},{73,143},{73,144},{73,145},{73,146},{73,147},{73,148},{73,149},{73,150},{72,0},{72,1},{72,2},{72,3},{72,4},{72,5},{72,6},{72,7},{72,8},{72,9},{72,10},{72,11},{72,12},{72,13},{72,14},{72,15},{72,16},{72,17},{72,18},{72,19},{72,20},{72,21},{72,22},{72,23},{72,24},{72,25},{72,26},{72,27},{72,28},{72,29},{72,30},{72,31},{72,32},{72,33},{72,34},{72,35},{72,36},{72,37},{72,38},{72,39},{72,40},{72,41},{72,42},{72,43},{72,44},{72,45},{72,46},{72,47},{72,48},{72,49},{72,50},{72,51},{72,52},{72,53},{72,54},{72,55},{72,56},{72,57},{72,58},{72,59},{72,60},{72,61},{72,62},{72,63},{72,64},{72,65},{72,66},{72,67},{72,68},{72,69},{72,70},{72,71},{72,72},{72,73},{72,74},{72,75},{72,76},{72,77},{72,78},{72,79},{72,80},{72,81},{72,82},{72,83},{72,84},{72,85},{72,86},{72,87},{72,88},{72,89},{72,90},{72,91},{72,92},{72,93},{72,94},{72,95},{72,96},{72,97},{72,98},{72,99},{72,100},{72,101},{72,102},{72,103},{72,104},{72,105},{72,106},{72,107},{72,108},{72,109},{72,110},{72,111},{72,112},{72,113},{72,114},{72,115},{72,116},{72,117},{72,118},{72,119},{72,120},{72,121},{72,122},{72,123},{72,124},{72,125},{72,126},{72,127},{72,128},{72,129},{72,130},{72,131},{72,132},{72,133},{72,134},{72,135},{72,136},{72,137},{72,138},{72,139},{72,140},{72,141},{72,142},{72,143},{72,144},{72,145},{72,146},{72,147},{72,148},{72,149},{72,150},{71,0},{71,1},{71,2},{71,3},{71,4},{71,5},{71,6},{71,7},{71,8},{71,9},{71,10},{71,11},{71,12},{71,13},{71,14},{71,15},{71,16},{71,17},{71,18},{71,19},{71,20},{71,21},{71,22},{71,23},{71,24},{71,25},{71,26},{71,27},{71,28},{71,29},{71,30},{71,31},{71,32},{71,33},{71,34},{71,35},{71,36},{71,37},{71,38},{71,39},{71,40},{71,41},{71,42},{71,43},{71,44},{71,45},{71,46},{71,47},{71,48},{71,49},{71,50},{71,51},{71,52},{71,53},{71,54},{71,55},{71,56},{71,57},{71,58},{71,59},{71,60},{71,61},{71,62},{71,63},{71,64},{71,65},{71,66},{71,67},{71,68},{71,69},{71,70},{71,71},{71,72},{71,73},{71,74},{71,75},{71,76},{71,77},{71,78},{71,79},{71,80},{71,81},{71,82},{71,83},{71,84},{71,85},{71,86},{71,87},{71,88},{71,89},{71,90},{71,91},{71,92},{71,93},{71,94},{71,95},{71,96},{71,97},{71,98},{71,99},{71,100},{71,101},{71,102},{71,103},{71,104},{71,105},{71,106},{71,107},{71,108},{71,109},{71,110},{71,111},{71,112},{71,113},{71,114},{71,115},{71,116},{71,117},{71,118},{71,119},{71,120},{71,121},{71,122},{71,123},{71,124},{71,125},{71,126},{71,127},{71,128},{71,129},{71,130},{71,131},{71,132},{71,133},{71,134},{71,135},{71,136},{71,137},{71,138},{71,139},{71,140},{71,141},{71,142},{71,143},{71,144},{71,145},{71,146},{71,147},{71,148},{71,149},{71,150},{70,0},{70,1},{70,2},{70,3},{70,4},{70,5},{70,6},{70,7},{70,8},{70,9},{70,10},{70,11},{70,12},{70,13},{70,14},{70,15},{70,16},{70,17},{70,18},{70,19},{70,20},{70,21},{70,22},{70,23},{70,24},{70,25},{70,26},{70,27},{70,28},{70,29},{70,30},{70,31},{70,32},{70,33},{70,34},{70,35},{70,36},{70,37},{70,38},{70,39},{70,40},{70,41},{70,42},{70,43},{70,44},{70,45},{70,46},{70,47},{70,48},{70,49},{70,50},{70,51},{70,52},{70,53},{70,54},{70,55},{70,56},{70,57},{70,58},{70,59},{70,60},{70,61},{70,62},{70,63},{70,64},{70,65},{70,66},{70,67},{70,68},{70,69},{70,70},{70,71},{70,72},{70,73},{70,74},{70,75},{70,76},{70,77},{70,78},{70,79},{70,80},{70,81},{70,82},{70,83},{70,84},{70,85},{70,86},{70,87},{70,88},{70,89},{70,90},{70,91},{70,92},{70,93},{70,94},{70,95},{70,96},{70,97},{70,98},{70,99},{70,100},{70,101},{70,102},{70,103},{70,104},{70,105},{70,106},{70,107},{70,108},{70,109},{70,110},{70,111},{70,112},{70,113},{70,114},{70,115},{70,116},{70,117},{70,118},{70,119},{70,120},{70,121},{70,122},{70,123},{70,124},{70,125},{70,126},{70,127},{70,128},{70,129},{70,130},{70,131},{70,132},{70,133},{70,134},{70,135},{70,136},{70,137},{70,138},{70,139},{70,140},{70,141},{70,142},{70,143},{70,144},{70,145},{70,146},{70,147},{70,148},{70,149},{70,150},{69,0},{69,1},{69,2},{69,3},{69,4},{69,5},{69,6},{69,7},{69,8},{69,9},{69,10},{69,11},{69,12},{69,13},{69,14},{69,15},{69,16},{69,17},{69,18},{69,19},{69,20},{69,21},{69,22},{69,23},{69,24},{69,25},{69,26},{69,27},{69,28},{69,29},{69,30},{69,31},{69,32},{69,33},{69,34},{69,35},{69,36},{69,37},{69,38},{69,39},{69,40},{69,41},{69,42},{69,43},{69,44},{69,45},{69,46},{69,47},{69,48},{69,49},{69,50},{69,51},{69,52},{69,53},{69,54},{69,55},{69,56},{69,57},{69,58},{69,59},{69,60},{69,61},{69,62},{69,63},{69,64},{69,65},{69,66},{69,67},{69,68},{69,69},{69,70},{69,71},{69,72},{69,73},{69,74},{69,75},{69,76},{69,77},{69,78},{69,79},{69,80},{69,81},{69,82},{69,83},{69,84},{69,85},{69,86},{69,87},{69,88},{69,89},{69,90},{69,91},{69,92},{69,93},{69,94},{69,95},{69,96},{69,97},{69,98},{69,99},{69,100},{69,101},{69,102},{69,103},{69,104},{69,105},{69,106},{69,107},{69,108},{69,109},{69,110},{69,111},{69,112},{69,113},{69,114},{69,115},{69,116},{69,117},{69,118},{69,119},{69,120},{69,121},{69,122},{69,123},{69,124},{69,125},{69,126},{69,127},{69,128},{69,129},{69,130},{69,131},{69,132},{69,133},{69,134},{69,135},{69,136},{69,137},{69,138},{69,139},{69,140},{69,141},{69,142},{69,143},{69,144},{69,145},{69,146},{69,147},{69,148},{69,149},{69,150},{68,0},{68,1},{68,2},{68,3},{68,4},{68,5},{68,6},{68,7},{68,8},{68,9},{68,10},{68,11},{68,12},{68,13},{68,14},{68,15},{68,16},{68,17},{68,18},{68,19},{68,20},{68,21},{68,22},{68,23},{68,24},{68,25},{68,26},{68,27},{68,28},{68,29},{68,30},{68,31},{68,32},{68,33},{68,34},{68,35},{68,36},{68,37},{68,38},{68,39},{68,40},{68,41},{68,42},{68,43},{68,44},{68,45},{68,46},{68,47},{68,48},{68,49},{68,50},{68,51},{68,52},{68,53},{68,54},{68,55},{68,56},{68,57},{68,58},{68,59},{68,60},{68,61},{68,62},{68,63},{68,64},{68,65},{68,66},{68,67},{68,68},{68,69},{68,70},{68,71},{68,72},{68,73},{68,74},{68,75},{68,76},{68,77},{68,78},{68,79},{68,80},{68,81},{68,82},{68,83},{68,84},{68,85},{68,86},{68,87},{68,88},{68,89},{68,90},{68,91},{68,92},{68,93},{68,94},{68,95},{68,96},{68,97},{68,98},{68,99},{68,100},{68,101},{68,102},{68,103},{68,104},{68,105},{68,106},{68,107},{68,108},{68,109},{68,110},{68,111},{68,112},{68,113},{68,114},{68,115},{68,116},{68,117},{68,118},{68,119},{68,120},{68,121},{68,122},{68,123},{68,124},{68,125},{68,126},{68,127},{68,128},{68,129},{68,130},{68,131},{68,132},{68,133},{68,134},{68,135},{68,136},{68,137},{68,138},{68,139},{68,140},{68,141},{68,142},{68,143},{68,144},{68,145},{68,146},{68,147},{68,148},{68,149},{68,150},{67,0},{67,1},{67,2},{67,3},{67,4},{67,5},{67,6},{67,7},{67,8},{67,9},{67,10},{67,11},{67,12},{67,13},{67,14},{67,15},{67,16},{67,17},{67,18},{67,19},{67,20},{67,21},{67,22},{67,23},{67,24},{67,25},{67,26},{67,27},{67,28},{67,29},{67,30},{67,31},{67,32},{67,33},{67,34},{67,35},{67,36},{67,37},{67,38},{67,39},{67,40},{67,41},{67,42},{67,43},{67,44},{67,45},{67,46},{67,47},{67,48},{67,49},{67,50},{67,51},{67,52},{67,53},{67,54},{67,55},{67,56},{67,57},{67,58},{67,59},{67,60},{67,61},{67,62},{67,63},{67,64},{67,65},{67,66},{67,67},{67,68},{67,69},{67,70},{67,71},{67,72},{67,73},{67,74},{67,75},{67,76},{67,77},{67,78},{67,79},{67,80},{67,81},{67,82},{67,83},{67,84},{67,85},{67,86},{67,87},{67,88},{67,89},{67,90},{67,91},{67,92},{67,93},{67,94},{67,95},{67,96},{67,97},{67,98},{67,99},{67,100},{67,101},{67,102},{67,103},{67,104},{67,105},{67,106},{67,107},{67,108},{67,109},{67,110},{67,111},{67,112},{67,113},{67,114},{67,115},{67,116},{67,117},{67,118},{67,119},{67,120},{67,121},{67,122},{67,123},{67,124},{67,125},{67,126},{67,127},{67,128},{67,129},{67,130},{67,131},{67,132},{67,133},{67,134},{67,135},{67,136},{67,137},{67,138},{67,139},{67,140},{67,141},{67,142},{67,143},{67,144},{67,145},{67,146},{67,147},{67,148},{67,149},{67,150},{66,0},{66,1},{66,2},{66,3},{66,4},{66,5},{66,6},{66,7},{66,8},{66,9},{66,10},{66,11},{66,12},{66,13},{66,14},{66,15},{66,16},{66,17},{66,18},{66,19},{66,20},{66,21},{66,22},{66,23},{66,24},{66,25},{66,26},{66,27},{66,28},{66,29},{66,30},{66,31},{66,32},{66,33},{66,34},{66,35},{66,36},{66,37},{66,38},{66,39},{66,40},{66,41},{66,42},{66,43},{66,44},{66,45},{66,46},{66,47},{66,48},{66,49},{66,50},{66,51},{66,52},{66,53},{66,54},{66,55},{66,56},{66,57},{66,58},{66,59},{66,60},{66,61},{66,62},{66,63},{66,64},{66,65},{66,66},{66,67},{66,68},{66,69},{66,70},{66,71},{66,72},{66,73},{66,74},{66,75},{66,76},{66,77},{66,78},{66,79},{66,80},{66,81},{66,82},{66,83},{66,84},{66,85},{66,86},{66,87},{66,88},{66,89},{66,90},{66,91},{66,92},{66,93},{66,94},{66,95},{66,96},{66,97},{66,98},{66,99},{66,100},{66,101},{66,102},{66,103},{66,104},{66,105},{66,106},{66,107},{66,108},{66,109},{66,110},{66,111},{66,112},{66,113},{66,114},{66,115},{66,116},{66,117},{66,118},{66,119},{66,120},{66,121},{66,122},{66,123},{66,124},{66,125},{66,126},{66,127},{66,128},{66,129},{66,130},{66,131},{66,132},{66,133},{66,134},{66,135},{66,136},{66,137},{66,138},{66,139},{66,140},{66,141},{66,142},{66,143},{66,144},{66,145},{66,146},{66,147},{66,148},{66,149},{66,150},{65,0},{65,1},{65,2},{65,3},{65,4},{65,5},{65,6},{65,7},{65,8},{65,9},{65,10},{65,11},{65,12},{65,13},{65,14},{65,15},{65,16},{65,17},{65,18},{65,19},{65,20},{65,21},{65,22},{65,23},{65,24},{65,25},{65,26},{65,27},{65,28},{65,29},{65,30},{65,31},{65,32},{65,33},{65,34},{65,35},{65,36},{65,37},{65,38},{65,39},{65,40},{65,41},{65,42},{65,43},{65,44},{65,45},{65,46},{65,47},{65,48},{65,49},{65,50},{65,51},{65,52},{65,53},{65,54},{65,55},{65,56},{65,57},{65,58},{65,59},{65,60},{65,61},{65,62},{65,63},{65,64},{65,65},{65,66},{65,67},{65,68},{65,69},{65,70},{65,71},{65,72},{65,73},{65,74},{65,75},{65,76},{65,77},{65,78},{65,79},{65,80},{65,81},{65,82},{65,83},{65,84},{65,85},{65,86},{65,87},{65,88},{65,89},{65,90},{65,91},{65,92},{65,93},{65,94},{65,95},{65,96},{65,97},{65,98},{65,99},{65,100},{65,101},{65,102},{65,103},{65,104},{65,105},{65,106},{65,107},{65,108},{65,109},{65,110},{65,111},{65,112},{65,113},{65,114},{65,115},{65,116},{65,117},{65,118},{65,119},{65,120},{65,121},{65,122},{65,123},{65,124},{65,125},{65,126},{65,127},{65,128},{65,129},{65,130},{65,131},{65,132},{65,133},{65,134},{65,135},{65,136},{65,137},{65,138},{65,139},{65,140},{65,141},{65,142},{65,143},{65,144},{65,145},{65,146},{65,147},{65,148},{65,149},{65,150},{64,0},{64,1},{64,2},{64,3},{64,4},{64,5},{64,6},{64,7},{64,8},{64,9},{64,10},{64,11},{64,12},{64,13},{64,14},{64,15},{64,16},{64,17},{64,18},{64,19},{64,20},{64,21},{64,22},{64,23},{64,24},{64,25},{64,26},{64,27},{64,28},{64,29},{64,30},{64,31},{64,32},{64,33},{64,34},{64,35},{64,36},{64,37},{64,38},{64,39},{64,40},{64,41},{64,42},{64,43},{64,44},{64,45},{64,46},{64,47},{64,48},{64,49},{64,50},{64,51},{64,52},{64,53},{64,54},{64,55},{64,56},{64,57},{64,58},{64,59},{64,60},{64,61},{64,62},{64,63},{64,64},{64,65},{64,66},{64,67},{64,68},{64,69},{64,70},{64,71},{64,72},{64,73},{64,74},{64,75},{64,76},{64,77},{64,78},{64,79},{64,80},{64,81},{64,82},{64,83},{64,84},{64,85},{64,86},{64,87},{64,88},{64,89},{64,90},{64,91},{64,92},{64,93},{64,94},{64,95},{64,96},{64,97},{64,98},{64,99},{64,100},{64,101},{64,102},{64,103},{64,104},{64,105},{64,106},{64,107},{64,108},{64,109},{64,110},{64,111},{64,112},{64,113},{64,114},{64,115},{64,116},{64,117},{64,118},{64,119},{64,120},{64,121},{64,122},{64,123},{64,124},{64,125},{64,126},{64,127},{64,128},{64,129},{64,130},{64,131},{64,132},{64,133},{64,134},{64,135},{64,136},{64,137},{64,138},{64,139},{64,140},{64,141},{64,142},{64,143},{64,144},{64,145},{64,146},{64,147},{64,148},{64,149},{64,150},{63,0},{63,1},{63,2},{63,3},{63,4},{63,5},{63,6},{63,7},{63,8},{63,9},{63,10},{63,11},{63,12},{63,13},{63,14},{63,15},{63,16},{63,17},{63,18},{63,19},{63,20},{63,21},{63,22},{63,23},{63,24},{63,25},{63,26},{63,27},{63,28},{63,29},{63,30},{63,31},{63,32},{63,33},{63,34},{63,35},{63,36},{63,37},{63,38},{63,39},{63,40},{63,41},{63,42},{63,43},{63,44},{63,45},{63,46},{63,47},{63,48},{63,49},{63,50},{63,51},{63,52},{63,53},{63,54},{63,55},{63,56},{63,57},{63,58},{63,59},{63,60},{63,61},{63,62},{63,63},{63,64},{63,65},{63,66},{63,67},{63,68},{63,69},{63,70},{63,71},{63,72},{63,73},{63,74},{63,75},{63,76},{63,77},{63,78},{63,79},{63,80},{63,81},{63,82},{63,83},{63,84},{63,85},{63,86},{63,87},{63,88},{63,89},{63,90},{63,91},{63,92},{63,93},{63,94},{63,95},{63,96},{63,97},{63,98},{63,99},{63,100},{63,101},{63,102},{63,103},{63,104},{63,105},{63,106},{63,107},{63,108},{63,109},{63,110},{63,111},{63,112},{63,113},{63,114},{63,115},{63,116},{63,117},{63,118},{63,119},{63,120},{63,121},{63,122},{63,123},{63,124},{63,125},{63,126},{63,127},{63,128},{63,129},{63,130},{63,131},{63,132},{63,133},{63,134},{63,135},{63,136},{63,137},{63,138},{63,139},{63,140},{63,141},{63,142},{63,143},{63,144},{63,145},{63,146},{63,147},{63,148},{63,149},{63,150},{62,0},{62,1},{62,2},{62,3},{62,4},{62,5},{62,6},{62,7},{62,8},{62,9},{62,10},{62,11},{62,12},{62,13},{62,14},{62,15},{62,16},{62,17},{62,18},{62,19},{62,20},{62,21},{62,22},{62,23},{62,24},{62,25},{62,26},{62,27},{62,28},{62,29},{62,30},{62,31},{62,32},{62,33},{62,34},{62,35},{62,36},{62,37},{62,38},{62,39},{62,40},{62,41},{62,42},{62,43},{62,44},{62,45},{62,46},{62,47},{62,48},{62,49},{62,50},{62,51},{62,52},{62,53},{62,54},{62,55},{62,56},{62,57},{62,58},{62,59},{62,60},{62,61},{62,62},{62,63},{62,64},{62,65},{62,66},{62,67},{62,68},{62,69},{62,70},{62,71},{62,72},{62,73},{62,74},{62,75},{62,76},{62,77},{62,78},{62,79},{62,80},{62,81},{62,82},{62,83},{62,84},{62,85},{62,86},{62,87},{62,88},{62,89},{62,90},{62,91},{62,92},{62,93},{62,94},{62,95},{62,96},{62,97},{62,98},{62,99},{62,100},{62,101},{62,102},{62,103},{62,104},{62,105},{62,106},{62,107},{62,108},{62,109},{62,110},{62,111},{62,112},{62,113},{62,114},{62,115},{62,116},{62,117},{62,118},{62,119},{62,120},{62,121},{62,122},{62,123},{62,124},{62,125},{62,126},{62,127},{62,128},{62,129},{62,130},{62,131},{62,132},{62,133},{62,134},{62,135},{62,136},{62,137},{62,138},{62,139},{62,140},{62,141},{62,142},{62,143},{62,144},{62,145},{62,146},{62,147},{62,148},{62,149},{62,150},{61,0},{61,1},{61,2},{61,3},{61,4},{61,5},{61,6},{61,7},{61,8},{61,9},{61,10},{61,11},{61,12},{61,13},{61,14},{61,15},{61,16},{61,17},{61,18},{61,19},{61,20},{61,21},{61,22},{61,23},{61,24},{61,25},{61,26},{61,27},{61,28},{61,29},{61,30},{61,31},{61,32},{61,33},{61,34},{61,35},{61,36},{61,37},{61,38},{61,39},{61,40},{61,41},{61,42},{61,43},{61,44},{61,45},{61,46},{61,47},{61,48},{61,49},{61,50},{61,51},{61,52},{61,53},{61,54},{61,55},{61,56},{61,57},{61,58},{61,59},{61,60},{61,61},{61,62},{61,63},{61,64},{61,65},{61,66},{61,67},{61,68},{61,69},{61,70},{61,71},{61,72},{61,73},{61,74},{61,75},{61,76},{61,77},{61,78},{61,79},{61,80},{61,81},{61,82},{61,83},{61,84},{61,85},{61,86},{61,87},{61,88},{61,89},{61,90},{61,91},{61,92},{61,93},{61,94},{61,95},{61,96},{61,97},{61,98},{61,99},{61,100},{61,101},{61,102},{61,103},{61,104},{61,105},{61,106},{61,107},{61,108},{61,109},{61,110},{61,111},{61,112},{61,113},{61,114},{61,115},{61,116},{61,117},{61,118},{61,119},{61,120},{61,121},{61,122},{61,123},{61,124},{61,125},{61,126},{61,127},{61,128},{61,129},{61,130},{61,131},{61,132},{61,133},{61,134},{61,135},{61,136},{61,137},{61,138},{61,139},{61,140},{61,141},{61,142},{61,143},{61,144},{61,145},{61,146},{61,147},{61,148},{61,149},{61,150},{60,0},{60,1},{60,2},{60,3},{60,4},{60,5},{60,6},{60,7},{60,8},{60,9},{60,10},{60,11},{60,12},{60,13},{60,14},{60,15},{60,16},{60,17},{60,18},{60,19},{60,20},{60,21},{60,22},{60,23},{60,24},{60,25},{60,26},{60,27},{60,28},{60,29},{60,30},{60,31},{60,32},{60,33},{60,34},{60,35},{60,36},{60,37},{60,38},{60,39},{60,40},{60,41},{60,42},{60,43},{60,44},{60,45},{60,46},{60,47},{60,48},{60,49},{60,50},{60,51},{60,52},{60,53},{60,54},{60,55},{60,56},{60,57},{60,58},{60,59},{60,60},{60,61},{60,62},{60,63},{60,64},{60,65},{60,66},{60,67},{60,68},{60,69},{60,70},{60,71},{60,72},{60,73},{60,74},{60,75},{60,76},{60,77},{60,78},{60,79},{60,80},{60,81},{60,82},{60,83},{60,84},{60,85},{60,86},{60,87},{60,88},{60,89},{60,90},{60,91},{60,92},{60,93},{60,94},{60,95},{60,96},{60,97},{60,98},{60,99},{60,100},{60,101},{60,102},{60,103},{60,104},{60,105},{60,106},{60,107},{60,108},{60,109},{60,110},{60,111},{60,112},{60,113},{60,114},{60,115},{60,116},{60,117},{60,118},{60,119},{60,120},{60,121},{60,122},{60,123},{60,124},{60,125},{60,126},{60,127},{60,128},{60,129},{60,130},{60,131},{60,132},{60,133},{60,134},{60,135},{60,136},{60,137},{60,138},{60,139},{60,140},{60,141},{60,142},{60,143},{60,144},{60,145},{60,146},{60,147},{60,148},{60,149},{60,150},{59,0},{59,1},{59,2},{59,3},{59,4},{59,5},{59,6},{59,7},{59,8},{59,9},{59,10},{59,11},{59,12},{59,13},{59,14},{59,15},{59,16},{59,17},{59,18},{59,19},{59,20},{59,21},{59,22},{59,23},{59,24},{59,25},{59,26},{59,27},{59,28},{59,29},{59,30},{59,31},{59,32},{59,33},{59,34},{59,35},{59,36},{59,37},{59,38},{59,39},{59,40},{59,41},{59,42},{59,43},{59,44},{59,45},{59,46},{59,47},{59,48},{59,49},{59,50},{59,51},{59,52},{59,53},{59,54},{59,55},{59,56},{59,57},{59,58},{59,59},{59,60},{59,61},{59,62},{59,63},{59,64},{59,65},{59,66},{59,67},{59,68},{59,69},{59,70},{59,71},{59,72},{59,73},{59,74},{59,75},{59,76},{59,77},{59,78},{59,79},{59,80},{59,81},{59,82},{59,83},{59,84},{59,85},{59,86},{59,87},{59,88},{59,89},{59,90},{59,91},{59,92},{59,93},{59,94},{59,95},{59,96},{59,97},{59,98},{59,99},{59,100},{59,101},{59,102},{59,103},{59,104},{59,105},{59,106},{59,107},{59,108},{59,109},{59,110},{59,111},{59,112},{59,113},{59,114},{59,115},{59,116},{59,117},{59,118},{59,119},{59,120},{59,121},{59,122},{59,123},{59,124},{59,125},{59,126},{59,127},{59,128},{59,129},{59,130},{59,131},{59,132},{59,133},{59,134},{59,135},{59,136},{59,137},{59,138},{59,139},{59,140},{59,141},{59,142},{59,143},{59,144},{59,145},{59,146},{59,147},{59,148},{59,149},{59,150},{58,0},{58,1},{58,2},{58,3},{58,4},{58,5},{58,6},{58,7},{58,8},{58,9},{58,10},{58,11},{58,12},{58,13},{58,14},{58,15},{58,16},{58,17},{58,18},{58,19},{58,20},{58,21},{58,22},{58,23},{58,24},{58,25},{58,26},{58,27},{58,28},{58,29},{58,30},{58,31},{58,32},{58,33},{58,34},{58,35},{58,36},{58,37},{58,38},{58,39},{58,40},{58,41},{58,42},{58,43},{58,44},{58,45},{58,46},{58,47},{58,48},{58,49},{58,50},{58,51},{58,52},{58,53},{58,54},{58,55},{58,56},{58,57},{58,58},{58,59},{58,60},{58,61},{58,62},{58,63},{58,64},{58,65},{58,66},{58,67},{58,68},{58,69},{58,70},{58,71},{58,72},{58,73},{58,74},{58,75},{58,76},{58,77},{58,78},{58,79},{58,80},{58,81},{58,82},{58,83},{58,84},{58,85},{58,86},{58,87},{58,88},{58,89},{58,90},{58,91},{58,92},{58,93},{58,94},{58,95},{58,96},{58,97},{58,98},{58,99},{58,100},{58,101},{58,102},{58,103},{58,104},{58,105},{58,106},{58,107},{58,108},{58,109},{58,110},{58,111},{58,112},{58,113},{58,114},{58,115},{58,116},{58,117},{58,118},{58,119},{58,120},{58,121},{58,122},{58,123},{58,124},{58,125},{58,126},{58,127},{58,128},{58,129},{58,130},{58,131},{58,132},{58,133},{58,134},{58,135},{58,136},{58,137},{58,138},{58,139},{58,140},{58,141},{58,142},{58,143},{58,144},{58,145},{58,146},{58,147},{58,148},{58,149},{58,150},{57,0},{57,1},{57,2},{57,3},{57,4},{57,5},{57,6},{57,7},{57,8},{57,9},{57,10},{57,11},{57,12},{57,13},{57,14},{57,15},{57,16},{57,17},{57,18},{57,19},{57,20},{57,21},{57,22},{57,23},{57,24},{57,25},{57,26},{57,27},{57,28},{57,29},{57,30},{57,31},{57,32},{57,33},{57,34},{57,35},{57,36},{57,37},{57,38},{57,39},{57,40},{57,41},{57,42},{57,43},{57,44},{57,45},{57,46},{57,47},{57,48},{57,49},{57,50},{57,51},{57,52},{57,53},{57,54},{57,55},{57,56},{57,57},{57,58},{57,59},{57,60},{57,61},{57,62},{57,63},{57,64},{57,65},{57,66},{57,67},{57,68},{57,69},{57,70},{57,71},{57,72},{57,73},{57,74},{57,75},{57,76},{57,77},{57,78},{57,79},{57,80},{57,81},{57,82},{57,83},{57,84},{57,85},{57,86},{57,87},{57,88},{57,89},{57,90},{57,91},{57,92},{57,93},{57,94},{57,95},{57,96},{57,97},{57,98},{57,99},{57,100},{57,101},{57,102},{57,103},{57,104},{57,105},{57,106},{57,107},{57,108},{57,109},{57,110},{57,111},{57,112},{57,113},{57,114},{57,115},{57,116},{57,117},{57,118},{57,119},{57,120},{57,121},{57,122},{57,123},{57,124},{57,125},{57,126},{57,127},{57,128},{57,129},{57,130},{57,131},{57,132},{57,133},{57,134},{57,135},{57,136},{57,137},{57,138},{57,139},{57,140},{57,141},{57,142},{57,143},{57,144},{57,145},{57,146},{57,147},{57,148},{57,149},{57,150},{56,0},{56,1},{56,2},{56,3},{56,4},{56,5},{56,6},{56,7},{56,8},{56,9},{56,10},{56,11},{56,12},{56,13},{56,14},{56,15},{56,16},{56,17},{56,18},{56,19},{56,20},{56,21},{56,22},{56,23},{56,24},{56,25},{56,26},{56,27},{56,28},{56,29},{56,30},{56,31},{56,32},{56,33},{56,34},{56,35},{56,36},{56,37},{56,38},{56,39},{56,40},{56,41},{56,42},{56,43},{56,44},{56,45},{56,46},{56,47},{56,48},{56,49},{56,50},{56,51},{56,52},{56,53},{56,54},{56,55},{56,56},{56,57},{56,58},{56,59},{56,60},{56,61},{56,62},{56,63},{56,64},{56,65},{56,66},{56,67},{56,68},{56,69},{56,70},{56,71},{56,72},{56,73},{56,74},{56,75},{56,76},{56,77},{56,78},{56,79},{56,80},{56,81},{56,82},{56,83},{56,84},{56,85},{56,86},{56,87},{56,88},{56,89},{56,90},{56,91},{56,92},{56,93},{56,94},{56,95},{56,96},{56,97},{56,98},{56,99},{56,100},{56,101},{56,102},{56,103},{56,104},{56,105},{56,106},{56,107},{56,108},{56,109},{56,110},{56,111},{56,112},{56,113},{56,114},{56,115},{56,116},{56,117},{56,118},{56,119},{56,120},{56,121},{56,122},{56,123},{56,124},{56,125},{56,126},{56,127},{56,128},{56,129},{56,130},{56,131},{56,132},{56,133},{56,134},{56,135},{56,136},{56,137},{56,138},{56,139},{56,140},{56,141},{56,142},{56,143},{56,144},{56,145},{56,146},{56,147},{56,148},{56,149},{56,150},{55,0},{55,1},{55,2},{55,3},{55,4},{55,5},{55,6},{55,7},{55,8},{55,9},{55,10},{55,11},{55,12},{55,13},{55,14},{55,15},{55,16},{55,17},{55,18},{55,19},{55,20},{55,21},{55,22},{55,23},{55,24},{55,25},{55,26},{55,27},{55,28},{55,29},{55,30},{55,31},{55,32},{55,33},{55,34},{55,35},{55,36},{55,37},{55,38},{55,39},{55,40},{55,41},{55,42},{55,43},{55,44},{55,45},{55,46},{55,47},{55,48},{55,49},{55,50},{55,51},{55,52},{55,53},{55,54},{55,55},{55,56},{55,57},{55,58},{55,59},{55,60},{55,61},{55,62},{55,63},{55,64},{55,65},{55,66},{55,67},{55,68},{55,69},{55,70},{55,71},{55,72},{55,73},{55,74},{55,75},{55,76},{55,77},{55,78},{55,79},{55,80},{55,81},{55,82},{55,83},{55,84},{55,85},{55,86},{55,87},{55,88},{55,89},{55,90},{55,91},{55,92},{55,93},{55,94},{55,95},{55,96},{55,97},{55,98},{55,99},{55,100},{55,101},{55,102},{55,103},{55,104},{55,105},{55,106},{55,107},{55,108},{55,109},{55,110},{55,111},{55,112},{55,113},{55,114},{55,115},{55,116},{55,117},{55,118},{55,119},{55,120},{55,121},{55,122},{55,123},{55,124},{55,125},{55,126},{55,127},{55,128},{55,129},{55,130},{55,131},{55,132},{55,133},{55,134},{55,135},{55,136},{55,137},{55,138},{55,139},{55,140},{55,141},{55,142},{55,143},{55,144},{55,145},{55,146},{55,147},{55,148},{55,149},{55,150},{54,0},{54,1},{54,2},{54,3},{54,4},{54,5},{54,6},{54,7},{54,8},{54,9},{54,10},{54,11},{54,12},{54,13},{54,14},{54,15},{54,16},{54,17},{54,18},{54,19},{54,20},{54,21},{54,22},{54,23},{54,24},{54,25},{54,26},{54,27},{54,28},{54,29},{54,30},{54,31},{54,32},{54,33},{54,34},{54,35},{54,36},{54,37},{54,38},{54,39},{54,40},{54,41},{54,42},{54,43},{54,44},{54,45},{54,46},{54,47},{54,48},{54,49},{54,50},{54,51},{54,52},{54,53},{54,54},{54,55},{54,56},{54,57},{54,58},{54,59},{54,60},{54,61},{54,62},{54,63},{54,64},{54,65},{54,66},{54,67},{54,68},{54,69},{54,70},{54,71},{54,72},{54,73},{54,74},{54,75},{54,76},{54,77},{54,78},{54,79},{54,80},{54,81},{54,82},{54,83},{54,84},{54,85},{54,86},{54,87},{54,88},{54,89},{54,90},{54,91},{54,92},{54,93},{54,94},{54,95},{54,96},{54,97},{54,98},{54,99},{54,100},{54,101},{54,102},{54,103},{54,104},{54,105},{54,106},{54,107},{54,108},{54,109},{54,110},{54,111},{54,112},{54,113},{54,114},{54,115},{54,116},{54,117},{54,118},{54,119},{54,120},{54,121},{54,122},{54,123},{54,124},{54,125},{54,126},{54,127},{54,128},{54,129},{54,130},{54,131},{54,132},{54,133},{54,134},{54,135},{54,136},{54,137},{54,138},{54,139},{54,140},{54,141},{54,142},{54,143},{54,144},{54,145},{54,146},{54,147},{54,148},{54,149},{54,150},{53,0},{53,1},{53,2},{53,3},{53,4},{53,5},{53,6},{53,7},{53,8},{53,9},{53,10},{53,11},{53,12},{53,13},{53,14},{53,15},{53,16},{53,17},{53,18},{53,19},{53,20},{53,21},{53,22},{53,23},{53,24},{53,25},{53,26},{53,27},{53,28},{53,29},{53,30},{53,31},{53,32},{53,33},{53,34},{53,35},{53,36},{53,37},{53,38},{53,39},{53,40},{53,41},{53,42},{53,43},{53,44},{53,45},{53,46},{53,47},{53,48},{53,49},{53,50},{53,51},{53,52},{53,53},{53,54},{53,55},{53,56},{53,57},{53,58},{53,59},{53,60},{53,61},{53,62},{53,63},{53,64},{53,65},{53,66},{53,67},{53,68},{53,69},{53,70},{53,71},{53,72},{53,73},{53,74},{53,75},{53,76},{53,77},{53,78},{53,79},{53,80},{53,81},{53,82},{53,83},{53,84},{53,85},{53,86},{53,87},{53,88},{53,89},{53,90},{53,91},{53,92},{53,93},{53,94},{53,95},{53,96},{53,97},{53,98},{53,99},{53,100},{53,101},{53,102},{53,103},{53,104},{53,105},{53,106},{53,107},{53,108},{53,109},{53,110},{53,111},{53,112},{53,113},{53,114},{53,115},{53,116},{53,117},{53,118},{53,119},{53,120},{53,121},{53,122},{53,123},{53,124},{53,125},{53,126},{53,127},{53,128},{53,129},{53,130},{53,131},{53,132},{53,133},{53,134},{53,135},{53,136},{53,137},{53,138},{53,139},{53,140},{53,141},{53,142},{53,143},{53,144},{53,145},{53,146},{53,147},{53,148},{53,149},{53,150},{52,0},{52,1},{52,2},{52,3},{52,4},{52,5},{52,6},{52,7},{52,8},{52,9},{52,10},{52,11},{52,12},{52,13},{52,14},{52,15},{52,16},{52,17},{52,18},{52,19},{52,20},{52,21},{52,22},{52,23},{52,24},{52,25},{52,26},{52,27},{52,28},{52,29},{52,30},{52,31},{52,32},{52,33},{52,34},{52,35},{52,36},{52,37},{52,38},{52,39},{52,40},{52,41},{52,42},{52,43},{52,44},{52,45},{52,46},{52,47},{52,48},{52,49},{52,50},{52,51},{52,52},{52,53},{52,54},{52,55},{52,56},{52,57},{52,58},{52,59},{52,60},{52,61},{52,62},{52,63},{52,64},{52,65},{52,66},{52,67},{52,68},{52,69},{52,70},{52,71},{52,72},{52,73},{52,74},{52,75},{52,76},{52,77},{52,78},{52,79},{52,80},{52,81},{52,82},{52,83},{52,84},{52,85},{52,86},{52,87},{52,88},{52,89},{52,90},{52,91},{52,92},{52,93},{52,94},{52,95},{52,96},{52,97},{52,98},{52,99},{52,100},{52,101},{52,102},{52,103},{52,104},{52,105},{52,106},{52,107},{52,108},{52,109},{52,110},{52,111},{52,112},{52,113},{52,114},{52,115},{52,116},{52,117},{52,118},{52,119},{52,120},{52,121},{52,122},{52,123},{52,124},{52,125},{52,126},{52,127},{52,128},{52,129},{52,130},{52,131},{52,132},{52,133},{52,134},{52,135},{52,136},{52,137},{52,138},{52,139},{52,140},{52,141},{52,142},{52,143},{52,144},{52,145},{52,146},{52,147},{52,148},{52,149},{52,150},{51,0},{51,1},{51,2},{51,3},{51,4},{51,5},{51,6},{51,7},{51,8},{51,9},{51,10},{51,11},{51,12},{51,13},{51,14},{51,15},{51,16},{51,17},{51,18},{51,19},{51,20},{51,21},{51,22},{51,23},{51,24},{51,25},{51,26},{51,27},{51,28},{51,29},{51,30},{51,31},{51,32},{51,33},{51,34},{51,35},{51,36},{51,37},{51,38},{51,39},{51,40},{51,41},{51,42},{51,43},{51,44},{51,45},{51,46},{51,47},{51,48},{51,49},{51,50},{51,51},{51,52},{51,53},{51,54},{51,55},{51,56},{51,57},{51,58},{51,59},{51,60},{51,61},{51,62},{51,63},{51,64},{51,65},{51,66},{51,67},{51,68},{51,69},{51,70},{51,71},{51,72},{51,73},{51,74},{51,75},{51,76},{51,77},{51,78},{51,79},{51,80},{51,81},{51,82},{51,83},{51,84},{51,85},{51,86},{51,87},{51,88},{51,89},{51,90},{51,91},{51,92},{51,93},{51,94},{51,95},{51,96},{51,97},{51,98},{51,99},{51,100},{51,101},{51,102},{51,103},{51,104},{51,105},{51,106},{51,107},{51,108},{51,109},{51,110},{51,111},{51,112},{51,113},{51,114},{51,115},{51,116},{51,117},{51,118},{51,119},{51,120},{51,121},{51,122},{51,123},{51,124},{51,125},{51,126},{51,127},{51,128},{51,129},{51,130},{51,131},{51,132},{51,133},{51,134},{51,135},{51,136},{51,137},{51,138},{51,139},{51,140},{51,141},{51,142},{51,143},{51,144},{51,145},{51,146},{51,147},{51,148},{51,149},{51,150},{50,0},{50,1},{50,2},{50,3},{50,4},{50,5},{50,6},{50,7},{50,8},{50,9},{50,10},{50,11},{50,12},{50,13},{50,14},{50,15},{50,16},{50,17},{50,18},{50,19},{50,20},{50,21},{50,22},{50,23},{50,24},{50,25},{50,26},{50,27},{50,28},{50,29},{50,30},{50,31},{50,32},{50,33},{50,34},{50,35},{50,36},{50,37},{50,38},{50,39},{50,40},{50,41},{50,42},{50,43},{50,44},{50,45},{50,46},{50,47},{50,48},{50,49},{50,50},{50,51},{50,52},{50,53},{50,54},{50,55},{50,56},{50,57},{50,58},{50,59},{50,60},{50,61},{50,62},{50,63},{50,64},{50,65},{50,66},{50,67},{50,68},{50,69},{50,70},{50,71},{50,72},{50,73},{50,74},{50,75},{50,76},{50,77},{50,78},{50,79},{50,80},{50,81},{50,82},{50,83},{50,84},{50,85},{50,86},{50,87},{50,88},{50,89},{50,90},{50,91},{50,92},{50,93},{50,94},{50,95},{50,96},{50,97},{50,98},{50,99},{50,100},{50,101},{50,102},{50,103},{50,104},{50,105},{50,106},{50,107},{50,108},{50,109},{50,110},{50,111},{50,112},{50,113},{50,114},{50,115},{50,116},{50,117},{50,118},{50,119},{50,120},{50,121},{50,122},{50,123},{50,124},{50,125},{50,126},{50,127},{50,128},{50,129},{50,130},{50,131},{50,132},{50,133},{50,134},{50,135},{50,136},{50,137},{50,138},{50,139},{50,140},{50,141},{50,142},{50,143},{50,144},{50,145},{50,146},{50,147},{50,148},{50,149},{50,150},{49,0},{49,1},{49,2},{49,3},{49,4},{49,5},{49,6},{49,7},{49,8},{49,9},{49,10},{49,11},{49,12},{49,13},{49,14},{49,15},{49,16},{49,17},{49,18},{49,19},{49,20},{49,21},{49,22},{49,23},{49,24},{49,25},{49,26},{49,27},{49,28},{49,29},{49,30},{49,31},{49,32},{49,33},{49,34},{49,35},{49,36},{49,37},{49,38},{49,39},{49,40},{49,41},{49,42},{49,43},{49,44},{49,45},{49,46},{49,47},{49,48},{49,49},{49,50},{49,51},{49,52},{49,53},{49,54},{49,55},{49,56},{49,57},{49,58},{49,59},{49,60},{49,61},{49,62},{49,63},{49,64},{49,65},{49,66},{49,67},{49,68},{49,69},{49,70},{49,71},{49,72},{49,73},{49,74},{49,75},{49,76},{49,77},{49,78},{49,79},{49,80},{49,81},{49,82},{49,83},{49,84},{49,85},{49,86},{49,87},{49,88},{49,89},{49,90},{49,91},{49,92},{49,93},{49,94},{49,95},{49,96},{49,97},{49,98},{49,99},{49,100},{49,101},{49,102},{49,103},{49,104},{49,105},{49,106},{49,107},{49,108},{49,109},{49,110},{49,111},{49,112},{49,113},{49,114},{49,115},{49,116},{49,117},{49,118},{49,119},{49,120},{49,121},{49,122},{49,123},{49,124},{49,125},{49,126},{49,127},{49,128},{49,129},{49,130},{49,131},{49,132},{49,133},{49,134},{49,135},{49,136},{49,137},{49,138},{49,139},{49,140},{49,141},{49,142},{49,143},{49,144},{49,145},{49,146},{49,147},{49,148},{49,149},{49,150},{48,0},{48,1},{48,2},{48,3},{48,4},{48,5},{48,6},{48,7},{48,8},{48,9},{48,10},{48,11},{48,12},{48,13},{48,14},{48,15},{48,16},{48,17},{48,18},{48,19},{48,20},{48,21},{48,22},{48,23},{48,24},{48,25},{48,26},{48,27},{48,28},{48,29},{48,30},{48,31},{48,32},{48,33},{48,34},{48,35},{48,36},{48,37},{48,38},{48,39},{48,40},{48,41},{48,42},{48,43},{48,44},{48,45},{48,46},{48,47},{48,48},{48,49},{48,50},{48,51},{48,52},{48,53},{48,54},{48,55},{48,56},{48,57},{48,58},{48,59},{48,60},{48,61},{48,62},{48,63},{48,64},{48,65},{48,66},{48,67},{48,68},{48,69},{48,70},{48,71},{48,72},{48,73},{48,74},{48,75},{48,76},{48,77},{48,78},{48,79},{48,80},{48,81},{48,82},{48,83},{48,84},{48,85},{48,86},{48,87},{48,88},{48,89},{48,90},{48,91},{48,92},{48,93},{48,94},{48,95},{48,96},{48,97},{48,98},{48,99},{48,100},{48,101},{48,102},{48,103},{48,104},{48,105},{48,106},{48,107},{48,108},{48,109},{48,110},{48,111},{48,112},{48,113},{48,114},{48,115},{48,116},{48,117},{48,118},{48,119},{48,120},{48,121},{48,122},{48,123},{48,124},{48,125},{48,126},{48,127},{48,128},{48,129},{48,130},{48,131},{48,132},{48,133},{48,134},{48,135},{48,136},{48,137},{48,138},{48,139},{48,140},{48,141},{48,142},{48,143},{48,144},{48,145},{48,146},{48,147},{48,148},{48,149},{48,150},{47,0},{47,1},{47,2},{47,3},{47,4},{47,5},{47,6},{47,7},{47,8},{47,9},{47,10},{47,11},{47,12},{47,13},{47,14},{47,15},{47,16},{47,17},{47,18},{47,19},{47,20},{47,21},{47,22},{47,23},{47,24},{47,25},{47,26},{47,27},{47,28},{47,29},{47,30},{47,31},{47,32},{47,33},{47,34},{47,35},{47,36},{47,37},{47,38},{47,39},{47,40},{47,41},{47,42},{47,43},{47,44},{47,45},{47,46},{47,47},{47,48},{47,49},{47,50},{47,51},{47,52},{47,53},{47,54},{47,55},{47,56},{47,57},{47,58},{47,59},{47,60},{47,61},{47,62},{47,63},{47,64},{47,65},{47,66},{47,67},{47,68},{47,69},{47,70},{47,71},{47,72},{47,73},{47,74},{47,75},{47,76},{47,77},{47,78},{47,79},{47,80},{47,81},{47,82},{47,83},{47,84},{47,85},{47,86},{47,87},{47,88},{47,89},{47,90},{47,91},{47,92},{47,93},{47,94},{47,95},{47,96},{47,97},{47,98},{47,99},{47,100},{47,101},{47,102},{47,103},{47,104},{47,105},{47,106},{47,107},{47,108},{47,109},{47,110},{47,111},{47,112},{47,113},{47,114},{47,115},{47,116},{47,117},{47,118},{47,119},{47,120},{47,121},{47,122},{47,123},{47,124},{47,125},{47,126},{47,127},{47,128},{47,129},{47,130},{47,131},{47,132},{47,133},{47,134},{47,135},{47,136},{47,137},{47,138},{47,139},{47,140},{47,141},{47,142},{47,143},{47,144},{47,145},{47,146},{47,147},{47,148},{47,149},{47,150},{46,0},{46,1},{46,2},{46,3},{46,4},{46,5},{46,6},{46,7},{46,8},{46,9},{46,10},{46,11},{46,12},{46,13},{46,14},{46,15},{46,16},{46,17},{46,18},{46,19},{46,20},{46,21},{46,22},{46,23},{46,24},{46,25},{46,26},{46,27},{46,28},{46,29},{46,30},{46,31},{46,32},{46,33},{46,34},{46,35},{46,36},{46,37},{46,38},{46,39},{46,40},{46,41},{46,42},{46,43},{46,44},{46,45},{46,46},{46,47},{46,48},{46,49},{46,50},{46,51},{46,52},{46,53},{46,54},{46,55},{46,56},{46,57},{46,58},{46,59},{46,60},{46,61},{46,62},{46,63},{46,64},{46,65},{46,66},{46,67},{46,68},{46,69},{46,70},{46,71},{46,72},{46,73},{46,74},{46,75},{46,76},{46,77},{46,78},{46,79},{46,80},{46,81},{46,82},{46,83},{46,84},{46,85},{46,86},{46,87},{46,88},{46,89},{46,90},{46,91},{46,92},{46,93},{46,94},{46,95},{46,96},{46,97},{46,98},{46,99},{46,100},{46,101},{46,102},{46,103},{46,104},{46,105},{46,106},{46,107},{46,108},{46,109},{46,110},{46,111},{46,112},{46,113},{46,114},{46,115},{46,116},{46,117},{46,118},{46,119},{46,120},{46,121},{46,122},{46,123},{46,124},{46,125},{46,126},{46,127},{46,128},{46,129},{46,130},{46,131},{46,132},{46,133},{46,134},{46,135},{46,136},{46,137},{46,138},{46,139},{46,140},{46,141},{46,142},{46,143},{46,144},{46,145},{46,146},{46,147},{46,148},{46,149},{46,150},{45,0},{45,1},{45,2},{45,3},{45,4},{45,5},{45,6},{45,7},{45,8},{45,9},{45,10},{45,11},{45,12},{45,13},{45,14},{45,15},{45,16},{45,17},{45,18},{45,19},{45,20},{45,21},{45,22},{45,23},{45,24},{45,25},{45,26},{45,27},{45,28},{45,29},{45,30},{45,31},{45,32},{45,33},{45,34},{45,35},{45,36},{45,37},{45,38},{45,39},{45,40},{45,41},{45,42},{45,43},{45,44},{45,45},{45,46},{45,47},{45,48},{45,49},{45,50},{45,51},{45,52},{45,53},{45,54},{45,55},{45,56},{45,57},{45,58},{45,59},{45,60},{45,61},{45,62},{45,63},{45,64},{45,65},{45,66},{45,67},{45,68},{45,69},{45,70},{45,71},{45,72},{45,73},{45,74},{45,75},{45,76},{45,77},{45,78},{45,79},{45,80},{45,81},{45,82},{45,83},{45,84},{45,85},{45,86},{45,87},{45,88},{45,89},{45,90},{45,91},{45,92},{45,93},{45,94},{45,95},{45,96},{45,97},{45,98},{45,99},{45,100},{45,101},{45,102},{45,103},{45,104},{45,105},{45,106},{45,107},{45,108},{45,109},{45,110},{45,111},{45,112},{45,113},{45,114},{45,115},{45,116},{45,117},{45,118},{45,119},{45,120},{45,121},{45,122},{45,123},{45,124},{45,125},{45,126},{45,127},{45,128},{45,129},{45,130},{45,131},{45,132},{45,133},{45,134},{45,135},{45,136},{45,137},{45,138},{45,139},{45,140},{45,141},{45,142},{45,143},{45,144},{45,145},{45,146},{45,147},{45,148},{45,149},{45,150},{44,0},{44,1},{44,2},{44,3},{44,4},{44,5},{44,6},{44,7},{44,8},{44,9},{44,10},{44,11},{44,12},{44,13},{44,14},{44,15},{44,16},{44,17},{44,18},{44,19},{44,20},{44,21},{44,22},{44,23},{44,24},{44,25},{44,26},{44,27},{44,28},{44,29},{44,30},{44,31},{44,32},{44,33},{44,34},{44,35},{44,36},{44,37},{44,38},{44,39},{44,40},{44,41},{44,42},{44,43},{44,44},{44,45},{44,46},{44,47},{44,48},{44,49},{44,50},{44,51},{44,52},{44,53},{44,54},{44,55},{44,56},{44,57},{44,58},{44,59},{44,60},{44,61},{44,62},{44,63},{44,64},{44,65},{44,66},{44,67},{44,68},{44,69},{44,70},{44,71},{44,72},{44,73},{44,74},{44,75},{44,76},{44,77},{44,78},{44,79},{44,80},{44,81},{44,82},{44,83},{44,84},{44,85},{44,86},{44,87},{44,88},{44,89},{44,90},{44,91},{44,92},{44,93},{44,94},{44,95},{44,96},{44,97},{44,98},{44,99},{44,100},{44,101},{44,102},{44,103},{44,104},{44,105},{44,106},{44,107},{44,108},{44,109},{44,110},{44,111},{44,112},{44,113},{44,114},{44,115},{44,116},{44,117},{44,118},{44,119},{44,120},{44,121},{44,122},{44,123},{44,124},{44,125},{44,126},{44,127},{44,128},{44,129},{44,130},{44,131},{44,132},{44,133},{44,134},{44,135},{44,136},{44,137},{44,138},{44,139},{44,140},{44,141},{44,142},{44,143},{44,144},{44,145},{44,146},{44,147},{44,148},{44,149},{44,150},{43,0},{43,1},{43,2},{43,3},{43,4},{43,5},{43,6},{43,7},{43,8},{43,9},{43,10},{43,11},{43,12},{43,13},{43,14},{43,15},{43,16},{43,17},{43,18},{43,19},{43,20},{43,21},{43,22},{43,23},{43,24},{43,25},{43,26},{43,27},{43,28},{43,29},{43,30},{43,31},{43,32},{43,33},{43,34},{43,35},{43,36},{43,37},{43,38},{43,39},{43,40},{43,41},{43,42},{43,43},{43,44},{43,45},{43,46},{43,47},{43,48},{43,49},{43,50},{43,51},{43,52},{43,53},{43,54},{43,55},{43,56},{43,57},{43,58},{43,59},{43,60},{43,61},{43,62},{43,63},{43,64},{43,65},{43,66},{43,67},{43,68},{43,69},{43,70},{43,71},{43,72},{43,73},{43,74},{43,75},{43,76},{43,77},{43,78},{43,79},{43,80},{43,81},{43,82},{43,83},{43,84},{43,85},{43,86},{43,87},{43,88},{43,89},{43,90},{43,91},{43,92},{43,93},{43,94},{43,95},{43,96},{43,97},{43,98},{43,99},{43,100},{43,101},{43,102},{43,103},{43,104},{43,105},{43,106},{43,107},{43,108},{43,109},{43,110},{43,111},{43,112},{43,113},{43,114},{43,115},{43,116},{43,117},{43,118},{43,119},{43,120},{43,121},{43,122},{43,123},{43,124},{43,125},{43,126},{43,127},{43,128},{43,129},{43,130},{43,131},{43,132},{43,133},{43,134},{43,135},{43,136},{43,137},{43,138},{43,139},{43,140},{43,141},{43,142},{43,143},{43,144},{43,145},{43,146},{43,147},{43,148},{43,149},{43,150},{42,0},{42,1},{42,2},{42,3},{42,4},{42,5},{42,6},{42,7},{42,8},{42,9},{42,10},{42,11},{42,12},{42,13},{42,14},{42,15},{42,16},{42,17},{42,18},{42,19},{42,20},{42,21},{42,22},{42,23},{42,24},{42,25},{42,26},{42,27},{42,28},{42,29},{42,30},{42,31},{42,32},{42,33},{42,34},{42,35},{42,36},{42,37},{42,38},{42,39},{42,40},{42,41},{42,42},{42,43},{42,44},{42,45},{42,46},{42,47},{42,48},{42,49},{42,50},{42,51},{42,52},{42,53},{42,54},{42,55},{42,56},{42,57},{42,58},{42,59},{42,60},{42,61},{42,62},{42,63},{42,64},{42,65},{42,66},{42,67},{42,68},{42,69},{42,70},{42,71},{42,72},{42,73},{42,74},{42,75},{42,76},{42,77},{42,78},{42,79},{42,80},{42,81},{42,82},{42,83},{42,84},{42,85},{42,86},{42,87},{42,88},{42,89},{42,90},{42,91},{42,92},{42,93},{42,94},{42,95},{42,96},{42,97},{42,98},{42,99},{42,100},{42,101},{42,102},{42,103},{42,104},{42,105},{42,106},{42,107},{42,108},{42,109},{42,110},{42,111},{42,112},{42,113},{42,114},{42,115},{42,116},{42,117},{42,118},{42,119},{42,120},{42,121},{42,122},{42,123},{42,124},{42,125},{42,126},{42,127},{42,128},{42,129},{42,130},{42,131},{42,132},{42,133},{42,134},{42,135},{42,136},{42,137},{42,138},{42,139},{42,140},{42,141},{42,142},{42,143},{42,144},{42,145},{42,146},{42,147},{42,148},{42,149},{42,150},{41,0},{41,1},{41,2},{41,3},{41,4},{41,5},{41,6},{41,7},{41,8},{41,9},{41,10},{41,11},{41,12},{41,13},{41,14},{41,15},{41,16},{41,17},{41,18},{41,19},{41,20},{41,21},{41,22},{41,23},{41,24},{41,25},{41,26},{41,27},{41,28},{41,29},{41,30},{41,31},{41,32},{41,33},{41,34},{41,35},{41,36},{41,37},{41,38},{41,39},{41,40},{41,41},{41,42},{41,43},{41,44},{41,45},{41,46},{41,47},{41,48},{41,49},{41,50},{41,51},{41,52},{41,53},{41,54},{41,55},{41,56},{41,57},{41,58},{41,59},{41,60},{41,61},{41,62},{41,63},{41,64},{41,65},{41,66},{41,67},{41,68},{41,69},{41,70},{41,71},{41,72},{41,73},{41,74},{41,75},{41,76},{41,77},{41,78},{41,79},{41,80},{41,81},{41,82},{41,83},{41,84},{41,85},{41,86},{41,87},{41,88},{41,89},{41,90},{41,91},{41,92},{41,93},{41,94},{41,95},{41,96},{41,97},{41,98},{41,99},{41,100},{41,101},{41,102},{41,103},{41,104},{41,105},{41,106},{41,107},{41,108},{41,109},{41,110},{41,111},{41,112},{41,113},{41,114},{41,115},{41,116},{41,117},{41,118},{41,119},{41,120},{41,121},{41,122},{41,123},{41,124},{41,125},{41,126},{41,127},{41,128},{41,129},{41,130},{41,131},{41,132},{41,133},{41,134},{41,135},{41,136},{41,137},{41,138},{41,139},{41,140},{41,141},{41,142},{41,143},{41,144},{41,145},{41,146},{41,147},{41,148},{41,149},{41,150},{40,0},{40,1},{40,2},{40,3},{40,4},{40,5},{40,6},{40,7},{40,8},{40,9},{40,10},{40,11},{40,12},{40,13},{40,14},{40,15},{40,16},{40,17},{40,18},{40,19},{40,20},{40,21},{40,22},{40,23},{40,24},{40,25},{40,26},{40,27},{40,28},{40,29},{40,30},{40,31},{40,32},{40,33},{40,34},{40,35},{40,36},{40,37},{40,38},{40,39},{40,40},{40,41},{40,42},{40,43},{40,44},{40,45},{40,46},{40,47},{40,48},{40,49},{40,50},{40,51},{40,52},{40,53},{40,54},{40,55},{40,56},{40,57},{40,58},{40,59},{40,60},{40,61},{40,62},{40,63},{40,64},{40,65},{40,66},{40,67},{40,68},{40,69},{40,70},{40,71},{40,72},{40,73},{40,74},{40,75},{40,76},{40,77},{40,78},{40,79},{40,80},{40,81},{40,82},{40,83},{40,84},{40,85},{40,86},{40,87},{40,88},{40,89},{40,90},{40,91},{40,92},{40,93},{40,94},{40,95},{40,96},{40,97},{40,98},{40,99},{40,100},{40,101},{40,102},{40,103},{40,104},{40,105},{40,106},{40,107},{40,108},{40,109},{40,110},{40,111},{40,112},{40,113},{40,114},{40,115},{40,116},{40,117},{40,118},{40,119},{40,120},{40,121},{40,122},{40,123},{40,124},{40,125},{40,126},{40,127},{40,128},{40,129},{40,130},{40,131},{40,132},{40,133},{40,134},{40,135},{40,136},{40,137},{40,138},{40,139},{40,140},{40,141},{40,142},{40,143},{40,144},{40,145},{40,146},{40,147},{40,148},{40,149},{40,150},{39,0},{39,1},{39,2},{39,3},{39,4},{39,5},{39,6},{39,7},{39,8},{39,9},{39,10},{39,11},{39,12},{39,13},{39,14},{39,15},{39,16},{39,17},{39,18},{39,19},{39,20},{39,21},{39,22},{39,23},{39,24},{39,25},{39,26},{39,27},{39,28},{39,29},{39,30},{39,31},{39,32},{39,33},{39,34},{39,35},{39,36},{39,37},{39,38},{39,39},{39,40},{39,41},{39,42},{39,43},{39,44},{39,45},{39,46},{39,47},{39,48},{39,49},{39,50},{39,51},{39,52},{39,53},{39,54},{39,55},{39,56},{39,57},{39,58},{39,59},{39,60},{39,61},{39,62},{39,63},{39,64},{39,65},{39,66},{39,67},{39,68},{39,69},{39,70},{39,71},{39,72},{39,73},{39,74},{39,75},{39,76},{39,77},{39,78},{39,79},{39,80},{39,81},{39,82},{39,83},{39,84},{39,85},{39,86},{39,87},{39,88},{39,89},{39,90},{39,91},{39,92},{39,93},{39,94},{39,95},{39,96},{39,97},{39,98},{39,99},{39,100},{39,101},{39,102},{39,103},{39,104},{39,105},{39,106},{39,107},{39,108},{39,109},{39,110},{39,111},{39,112},{39,113},{39,114},{39,115},{39,116},{39,117},{39,118},{39,119},{39,120},{39,121},{39,122},{39,123},{39,124},{39,125},{39,126},{39,127},{39,128},{39,129},{39,130},{39,131},{39,132},{39,133},{39,134},{39,135},{39,136},{39,137},{39,138},{39,139},{39,140},{39,141},{39,142},{39,143},{39,144},{39,145},{39,146},{39,147},{39,148},{39,149},{39,150},{38,0},{38,1},{38,2},{38,3},{38,4},{38,5},{38,6},{38,7},{38,8},{38,9},{38,10},{38,11},{38,12},{38,13},{38,14},{38,15},{38,16},{38,17},{38,18},{38,19},{38,20},{38,21},{38,22},{38,23},{38,24},{38,25},{38,26},{38,27},{38,28},{38,29},{38,30},{38,31},{38,32},{38,33},{38,34},{38,35},{38,36},{38,37},{38,38},{38,39},{38,40},{38,41},{38,42},{38,43},{38,44},{38,45},{38,46},{38,47},{38,48},{38,49},{38,50},{38,51},{38,52},{38,53},{38,54},{38,55},{38,56},{38,57},{38,58},{38,59},{38,60},{38,61},{38,62},{38,63},{38,64},{38,65},{38,66},{38,67},{38,68},{38,69},{38,70},{38,71},{38,72},{38,73},{38,74},{38,75},{38,76},{38,77},{38,78},{38,79},{38,80},{38,81},{38,82},{38,83},{38,84},{38,85},{38,86},{38,87},{38,88},{38,89},{38,90},{38,91},{38,92},{38,93},{38,94},{38,95},{38,96},{38,97},{38,98},{38,99},{38,100},{38,101},{38,102},{38,103},{38,104},{38,105},{38,106},{38,107},{38,108},{38,109},{38,110},{38,111},{38,112},{38,113},{38,114},{38,115},{38,116},{38,117},{38,118},{38,119},{38,120},{38,121},{38,122},{38,123},{38,124},{38,125},{38,126},{38,127},{38,128},{38,129},{38,130},{38,131},{38,132},{38,133},{38,134},{38,135},{38,136},{38,137},{38,138},{38,139},{38,140},{38,141},{38,142},{38,143},{38,144},{38,145},{38,146},{38,147},{38,148},{38,149},{38,150},{37,0},{37,1},{37,2},{37,3},{37,4},{37,5},{37,6},{37,7},{37,8},{37,9},{37,10},{37,11},{37,12},{37,13},{37,14},{37,15},{37,16},{37,17},{37,18},{37,19},{37,20},{37,21},{37,22},{37,23},{37,24},{37,25},{37,26},{37,27},{37,28},{37,29},{37,30},{37,31},{37,32},{37,33},{37,34},{37,35},{37,36},{37,37},{37,38},{37,39},{37,40},{37,41},{37,42},{37,43},{37,44},{37,45},{37,46},{37,47},{37,48},{37,49},{37,50},{37,51},{37,52},{37,53},{37,54},{37,55},{37,56},{37,57},{37,58},{37,59},{37,60},{37,61},{37,62},{37,63},{37,64},{37,65},{37,66},{37,67},{37,68},{37,69},{37,70},{37,71},{37,72},{37,73},{37,74},{37,75},{37,76},{37,77},{37,78},{37,79},{37,80},{37,81},{37,82},{37,83},{37,84},{37,85},{37,86},{37,87},{37,88},{37,89},{37,90},{37,91},{37,92},{37,93},{37,94},{37,95},{37,96},{37,97},{37,98},{37,99},{37,100},{37,101},{37,102},{37,103},{37,104},{37,105},{37,106},{37,107},{37,108},{37,109},{37,110},{37,111},{37,112},{37,113},{37,114},{37,115},{37,116},{37,117},{37,118},{37,119},{37,120},{37,121},{37,122},{37,123},{37,124},{37,125},{37,126},{37,127},{37,128},{37,129},{37,130},{37,131},{37,132},{37,133},{37,134},{37,135},{37,136},{37,137},{37,138},{37,139},{37,140},{37,141},{37,142},{37,143},{37,144},{37,145},{37,146},{37,147},{37,148},{37,149},{37,150},{36,0},{36,1},{36,2},{36,3},{36,4},{36,5},{36,6},{36,7},{36,8},{36,9},{36,10},{36,11},{36,12},{36,13},{36,14},{36,15},{36,16},{36,17},{36,18},{36,19},{36,20},{36,21},{36,22},{36,23},{36,24},{36,25},{36,26},{36,27},{36,28},{36,29},{36,30},{36,31},{36,32},{36,33},{36,34},{36,35},{36,36},{36,37},{36,38},{36,39},{36,40},{36,41},{36,42},{36,43},{36,44},{36,45},{36,46},{36,47},{36,48},{36,49},{36,50},{36,51},{36,52},{36,53},{36,54},{36,55},{36,56},{36,57},{36,58},{36,59},{36,60},{36,61},{36,62},{36,63},{36,64},{36,65},{36,66},{36,67},{36,68},{36,69},{36,70},{36,71},{36,72},{36,73},{36,74},{36,75},{36,76},{36,77},{36,78},{36,79},{36,80},{36,81},{36,82},{36,83},{36,84},{36,85},{36,86},{36,87},{36,88},{36,89},{36,90},{36,91},{36,92},{36,93},{36,94},{36,95},{36,96},{36,97},{36,98},{36,99},{36,100},{36,101},{36,102},{36,103},{36,104},{36,105},{36,106},{36,107},{36,108},{36,109},{36,110},{36,111},{36,112},{36,113},{36,114},{36,115},{36,116},{36,117},{36,118},{36,119},{36,120},{36,121},{36,122},{36,123},{36,124},{36,125},{36,126},{36,127},{36,128},{36,129},{36,130},{36,131},{36,132},{36,133},{36,134},{36,135},{36,136},{36,137},{36,138},{36,139},{36,140},{36,141},{36,142},{36,143},{36,144},{36,145},{36,146},{36,147},{36,148},{36,149},{36,150},{35,0},{35,1},{35,2},{35,3},{35,4},{35,5},{35,6},{35,7},{35,8},{35,9},{35,10},{35,11},{35,12},{35,13},{35,14},{35,15},{35,16},{35,17},{35,18},{35,19},{35,20},{35,21},{35,22},{35,23},{35,24},{35,25},{35,26},{35,27},{35,28},{35,29},{35,30},{35,31},{35,32},{35,33},{35,34},{35,35},{35,36},{35,37},{35,38},{35,39},{35,40},{35,41},{35,42},{35,43},{35,44},{35,45},{35,46},{35,47},{35,48},{35,49},{35,50},{35,51},{35,52},{35,53},{35,54},{35,55},{35,56},{35,57},{35,58},{35,59},{35,60},{35,61},{35,62},{35,63},{35,64},{35,65},{35,66},{35,67},{35,68},{35,69},{35,70},{35,71},{35,72},{35,73},{35,74},{35,75},{35,76},{35,77},{35,78},{35,79},{35,80},{35,81},{35,82},{35,83},{35,84},{35,85},{35,86},{35,87},{35,88},{35,89},{35,90},{35,91},{35,92},{35,93},{35,94},{35,95},{35,96},{35,97},{35,98},{35,99},{35,100},{35,101},{35,102},{35,103},{35,104},{35,105},{35,106},{35,107},{35,108},{35,109},{35,110},{35,111},{35,112},{35,113},{35,114},{35,115},{35,116},{35,117},{35,118},{35,119},{35,120},{35,121},{35,122},{35,123},{35,124},{35,125},{35,126},{35,127},{35,128},{35,129},{35,130},{35,131},{35,132},{35,133},{35,134},{35,135},{35,136},{35,137},{35,138},{35,139},{35,140},{35,141},{35,142},{35,143},{35,144},{35,145},{35,146},{35,147},{35,148},{35,149},{35,150},{34,0},{34,1},{34,2},{34,3},{34,4},{34,5},{34,6},{34,7},{34,8},{34,9},{34,10},{34,11},{34,12},{34,13},{34,14},{34,15},{34,16},{34,17},{34,18},{34,19},{34,20},{34,21},{34,22},{34,23},{34,24},{34,25},{34,26},{34,27},{34,28},{34,29},{34,30},{34,31},{34,32},{34,33},{34,34},{34,35},{34,36},{34,37},{34,38},{34,39},{34,40},{34,41},{34,42},{34,43},{34,44},{34,45},{34,46},{34,47},{34,48},{34,49},{34,50},{34,51},{34,52},{34,53},{34,54},{34,55},{34,56},{34,57},{34,58},{34,59},{34,60},{34,61},{34,62},{34,63},{34,64},{34,65},{34,66},{34,67},{34,68},{34,69},{34,70},{34,71},{34,72},{34,73},{34,74},{34,75},{34,76},{34,77},{34,78},{34,79},{34,80},{34,81},{34,82},{34,83},{34,84},{34,85},{34,86},{34,87},{34,88},{34,89},{34,90},{34,91},{34,92},{34,93},{34,94},{34,95},{34,96},{34,97},{34,98},{34,99},{34,100},{34,101},{34,102},{34,103},{34,104},{34,105},{34,106},{34,107},{34,108},{34,109},{34,110},{34,111},{34,112},{34,113},{34,114},{34,115},{34,116},{34,117},{34,118},{34,119},{34,120},{34,121},{34,122},{34,123},{34,124},{34,125},{34,126},{34,127},{34,128},{34,129},{34,130},{34,131},{34,132},{34,133},{34,134},{34,135},{34,136},{34,137},{34,138},{34,139},{34,140},{34,141},{34,142},{34,143},{34,144},{34,145},{34,146},{34,147},{34,148},{34,149},{34,150},{33,0},{33,1},{33,2},{33,3},{33,4},{33,5},{33,6},{33,7},{33,8},{33,9},{33,10},{33,11},{33,12},{33,13},{33,14},{33,15},{33,16},{33,17},{33,18},{33,19},{33,20},{33,21},{33,22},{33,23},{33,24},{33,25},{33,26},{33,27},{33,28},{33,29},{33,30},{33,31},{33,32},{33,33},{33,34},{33,35},{33,36},{33,37},{33,38},{33,39},{33,40},{33,41},{33,42},{33,43},{33,44},{33,45},{33,46},{33,47},{33,48},{33,49},{33,50},{33,51},{33,52},{33,53},{33,54},{33,55},{33,56},{33,57},{33,58},{33,59},{33,60},{33,61},{33,62},{33,63},{33,64},{33,65},{33,66},{33,67},{33,68},{33,69},{33,70},{33,71},{33,72},{33,73},{33,74},{33,75},{33,76},{33,77},{33,78},{33,79},{33,80},{33,81},{33,82},{33,83},{33,84},{33,85},{33,86},{33,87},{33,88},{33,89},{33,90},{33,91},{33,92},{33,93},{33,94},{33,95},{33,96},{33,97},{33,98},{33,99},{33,100},{33,101},{33,102},{33,103},{33,104},{33,105},{33,106},{33,107},{33,108},{33,109},{33,110},{33,111},{33,112},{33,113},{33,114},{33,115},{33,116},{33,117},{33,118},{33,119},{33,120},{33,121},{33,122},{33,123},{33,124},{33,125},{33,126},{33,127},{33,128},{33,129},{33,130},{33,131},{33,132},{33,133},{33,134},{33,135},{33,136},{33,137},{33,138},{33,139},{33,140},{33,141},{33,142},{33,143},{33,144},{33,145},{33,146},{33,147},{33,148},{33,149},{33,150},{32,0},{32,1},{32,2},{32,3},{32,4},{32,5},{32,6},{32,7},{32,8},{32,9},{32,10},{32,11},{32,12},{32,13},{32,14},{32,15},{32,16},{32,17},{32,18},{32,19},{32,20},{32,21},{32,22},{32,23},{32,24},{32,25},{32,26},{32,27},{32,28},{32,29},{32,30},{32,31},{32,32},{32,33},{32,34},{32,35},{32,36},{32,37},{32,38},{32,39},{32,40},{32,41},{32,42},{32,43},{32,44},{32,45},{32,46},{32,47},{32,48},{32,49},{32,50},{32,51},{32,52},{32,53},{32,54},{32,55},{32,56},{32,57},{32,58},{32,59},{32,60},{32,61},{32,62},{32,63},{32,64},{32,65},{32,66},{32,67},{32,68},{32,69},{32,70},{32,71},{32,72},{32,73},{32,74},{32,75},{32,76},{32,77},{32,78},{32,79},{32,80},{32,81},{32,82},{32,83},{32,84},{32,85},{32,86},{32,87},{32,88},{32,89},{32,90},{32,91},{32,92},{32,93},{32,94},{32,95},{32,96},{32,97},{32,98},{32,99},{32,100},{32,101},{32,102},{32,103},{32,104},{32,105},{32,106},{32,107},{32,108},{32,109},{32,110},{32,111},{32,112},{32,113},{32,114},{32,115},{32,116},{32,117},{32,118},{32,119},{32,120},{32,121},{32,122},{32,123},{32,124},{32,125},{32,126},{32,127},{32,128},{32,129},{32,130},{32,131},{32,132},{32,133},{32,134},{32,135},{32,136},{32,137},{32,138},{32,139},{32,140},{32,141},{32,142},{32,143},{32,144},{32,145},{32,146},{32,147},{32,148},{32,149},{32,150},{31,0},{31,1},{31,2},{31,3},{31,4},{31,5},{31,6},{31,7},{31,8},{31,9},{31,10},{31,11},{31,12},{31,13},{31,14},{31,15},{31,16},{31,17},{31,18},{31,19},{31,20},{31,21},{31,22},{31,23},{31,24},{31,25},{31,26},{31,27},{31,28},{31,29},{31,30},{31,31},{31,32},{31,33},{31,34},{31,35},{31,36},{31,37},{31,38},{31,39},{31,40},{31,41},{31,42},{31,43},{31,44},{31,45},{31,46},{31,47},{31,48},{31,49},{31,50},{31,51},{31,52},{31,53},{31,54},{31,55},{31,56},{31,57},{31,58},{31,59},{31,60},{31,61},{31,62},{31,63},{31,64},{31,65},{31,66},{31,67},{31,68},{31,69},{31,70},{31,71},{31,72},{31,73},{31,74},{31,75},{31,76},{31,77},{31,78},{31,79},{31,80},{31,81},{31,82},{31,83},{31,84},{31,85},{31,86},{31,87},{31,88},{31,89},{31,90},{31,91},{31,92},{31,93},{31,94},{31,95},{31,96},{31,97},{31,98},{31,99},{31,100},{31,101},{31,102},{31,103},{31,104},{31,105},{31,106},{31,107},{31,108},{31,109},{31,110},{31,111},{31,112},{31,113},{31,114},{31,115},{31,116},{31,117},{31,118},{31,119},{31,120},{31,121},{31,122},{31,123},{31,124},{31,125},{31,126},{31,127},{31,128},{31,129},{31,130},{31,131},{31,132},{31,133},{31,134},{31,135},{31,136},{31,137},{31,138},{31,139},{31,140},{31,141},{31,142},{31,143},{31,144},{31,145},{31,146},{31,147},{31,148},{31,149},{31,150},{30,0},{30,1},{30,2},{30,3},{30,4},{30,5},{30,6},{30,7},{30,8},{30,9},{30,10},{30,11},{30,12},{30,13},{30,14},{30,15},{30,16},{30,17},{30,18},{30,19},{30,20},{30,21},{30,22},{30,23},{30,24},{30,25},{30,26},{30,27},{30,28},{30,29},{30,30},{30,31},{30,32},{30,33},{30,34},{30,35},{30,36},{30,37},{30,38},{30,39},{30,40},{30,41},{30,42},{30,43},{30,44},{30,45},{30,46},{30,47},{30,48},{30,49},{30,50},{30,51},{30,52},{30,53},{30,54},{30,55},{30,56},{30,57},{30,58},{30,59},{30,60},{30,61},{30,62},{30,63},{30,64},{30,65},{30,66},{30,67},{30,68},{30,69},{30,70},{30,71},{30,72},{30,73},{30,74},{30,75},{30,76},{30,77},{30,78},{30,79},{30,80},{30,81},{30,82},{30,83},{30,84},{30,85},{30,86},{30,87},{30,88},{30,89},{30,90},{30,91},{30,92},{30,93},{30,94},{30,95},{30,96},{30,97},{30,98},{30,99},{30,100},{30,101},{30,102},{30,103},{30,104},{30,105},{30,106},{30,107},{30,108},{30,109},{30,110},{30,111},{30,112},{30,113},{30,114},{30,115},{30,116},{30,117},{30,118},{30,119},{30,120},{30,121},{30,122},{30,123},{30,124},{30,125},{30,126},{30,127},{30,128},{30,129},{30,130},{30,131},{30,132},{30,133},{30,134},{30,135},{30,136},{30,137},{30,138},{30,139},{30,140},{30,141},{30,142},{30,143},{30,144},{30,145},{30,146},{30,147},{30,148},{30,149},{30,150},{29,0},{29,1},{29,2},{29,3},{29,4},{29,5},{29,6},{29,7},{29,8},{29,9},{29,10},{29,11},{29,12},{29,13},{29,14},{29,15},{29,16},{29,17},{29,18},{29,19},{29,20},{29,21},{29,22},{29,23},{29,24},{29,25},{29,26},{29,27},{29,28},{29,29},{29,30},{29,31},{29,32},{29,33},{29,34},{29,35},{29,36},{29,37},{29,38},{29,39},{29,40},{29,41},{29,42},{29,43},{29,44},{29,45},{29,46},{29,47},{29,48},{29,49},{29,50},{29,51},{29,52},{29,53},{29,54},{29,55},{29,56},{29,57},{29,58},{29,59},{29,60},{29,61},{29,62},{29,63},{29,64},{29,65},{29,66},{29,67},{29,68},{29,69},{29,70},{29,71},{29,72},{29,73},{29,74},{29,75},{29,76},{29,77},{29,78},{29,79},{29,80},{29,81},{29,82},{29,83},{29,84},{29,85},{29,86},{29,87},{29,88},{29,89},{29,90},{29,91},{29,92},{29,93},{29,94},{29,95},{29,96},{29,97},{29,98},{29,99},{29,100},{29,101},{29,102},{29,103},{29,104},{29,105},{29,106},{29,107},{29,108},{29,109},{29,110},{29,111},{29,112},{29,113},{29,114},{29,115},{29,116},{29,117},{29,118},{29,119},{29,120},{29,121},{29,122},{29,123},{29,124},{29,125},{29,126},{29,127},{29,128},{29,129},{29,130},{29,131},{29,132},{29,133},{29,134},{29,135},{29,136},{29,137},{29,138},{29,139},{29,140},{29,141},{29,142},{29,143},{29,144},{29,145},{29,146},{29,147},{29,148},{29,149},{29,150},{28,0},{28,1},{28,2},{28,3},{28,4},{28,5},{28,6},{28,7},{28,8},{28,9},{28,10},{28,11},{28,12},{28,13},{28,14},{28,15},{28,16},{28,17},{28,18},{28,19},{28,20},{28,21},{28,22},{28,23},{28,24},{28,25},{28,26},{28,27},{28,28},{28,29},{28,30},{28,31},{28,32},{28,33},{28,34},{28,35},{28,36},{28,37},{28,38},{28,39},{28,40},{28,41},{28,42},{28,43},{28,44},{28,45},{28,46},{28,47},{28,48},{28,49},{28,50},{28,51},{28,52},{28,53},{28,54},{28,55},{28,56},{28,57},{28,58},{28,59},{28,60},{28,61},{28,62},{28,63},{28,64},{28,65},{28,66},{28,67},{28,68},{28,69},{28,70},{28,71},{28,72},{28,73},{28,74},{28,75},{28,76},{28,77},{28,78},{28,79},{28,80},{28,81},{28,82},{28,83},{28,84},{28,85},{28,86},{28,87},{28,88},{28,89},{28,90},{28,91},{28,92},{28,93},{28,94},{28,95},{28,96},{28,97},{28,98},{28,99},{28,100},{28,101},{28,102},{28,103},{28,104},{28,105},{28,106},{28,107},{28,108},{28,109},{28,110},{28,111},{28,112},{28,113},{28,114},{28,115},{28,116},{28,117},{28,118},{28,119},{28,120},{28,121},{28,122},{28,123},{28,124},{28,125},{28,126},{28,127},{28,128},{28,129},{28,130},{28,131},{28,132},{28,133},{28,134},{28,135},{28,136},{28,137},{28,138},{28,139},{28,140},{28,141},{28,142},{28,143},{28,144},{28,145},{28,146},{28,147},{28,148},{28,149},{28,150},{27,0},{27,1},{27,2},{27,3},{27,4},{27,5},{27,6},{27,7},{27,8},{27,9},{27,10},{27,11},{27,12},{27,13},{27,14},{27,15},{27,16},{27,17},{27,18},{27,19},{27,20},{27,21},{27,22},{27,23},{27,24},{27,25},{27,26},{27,27},{27,28},{27,29},{27,30},{27,31},{27,32},{27,33},{27,34},{27,35},{27,36},{27,37},{27,38},{27,39},{27,40},{27,41},{27,42},{27,43},{27,44},{27,45},{27,46},{27,47},{27,48},{27,49},{27,50},{27,51},{27,52},{27,53},{27,54},{27,55},{27,56},{27,57},{27,58},{27,59},{27,60},{27,61},{27,62},{27,63},{27,64},{27,65},{27,66},{27,67},{27,68},{27,69},{27,70},{27,71},{27,72},{27,73},{27,74},{27,75},{27,76},{27,77},{27,78},{27,79},{27,80},{27,81},{27,82},{27,83},{27,84},{27,85},{27,86},{27,87},{27,88},{27,89},{27,90},{27,91},{27,92},{27,93},{27,94},{27,95},{27,96},{27,97},{27,98},{27,99},{27,100},{27,101},{27,102},{27,103},{27,104},{27,105},{27,106},{27,107},{27,108},{27,109},{27,110},{27,111},{27,112},{27,113},{27,114},{27,115},{27,116},{27,117},{27,118},{27,119},{27,120},{27,121},{27,122},{27,123},{27,124},{27,125},{27,126},{27,127},{27,128},{27,129},{27,130},{27,131},{27,132},{27,133},{27,134},{27,135},{27,136},{27,137},{27,138},{27,139},{27,140},{27,141},{27,142},{27,143},{27,144},{27,145},{27,146},{27,147},{27,148},{27,149},{27,150},{26,0},{26,1},{26,2},{26,3},{26,4},{26,5},{26,6},{26,7},{26,8},{26,9},{26,10},{26,11},{26,12},{26,13},{26,14},{26,15},{26,16},{26,17},{26,18},{26,19},{26,20},{26,21},{26,22},{26,23},{26,24},{26,25},{26,26},{26,27},{26,28},{26,29},{26,30},{26,31},{26,32},{26,33},{26,34},{26,35},{26,36},{26,37},{26,38},{26,39},{26,40},{26,41},{26,42},{26,43},{26,44},{26,45},{26,46},{26,47},{26,48},{26,49},{26,50},{26,51},{26,52},{26,53},{26,54},{26,55},{26,56},{26,57},{26,58},{26,59},{26,60},{26,61},{26,62},{26,63},{26,64},{26,65},{26,66},{26,67},{26,68},{26,69},{26,70},{26,71},{26,72},{26,73},{26,74},{26,75},{26,76},{26,77},{26,78},{26,79},{26,80},{26,81},{26,82},{26,83},{26,84},{26,85},{26,86},{26,87},{26,88},{26,89},{26,90},{26,91},{26,92},{26,93},{26,94},{26,95},{26,96},{26,97},{26,98},{26,99},{26,100},{26,101},{26,102},{26,103},{26,104},{26,105},{26,106},{26,107},{26,108},{26,109},{26,110},{26,111},{26,112},{26,113},{26,114},{26,115},{26,116},{26,117},{26,118},{26,119},{26,120},{26,121},{26,122},{26,123},{26,124},{26,125},{26,126},{26,127},{26,128},{26,129},{26,130},{26,131},{26,132},{26,133},{26,134},{26,135},{26,136},{26,137},{26,138},{26,139},{26,140},{26,141},{26,142},{26,143},{26,144},{26,145},{26,146},{26,147},{26,148},{26,149},{26,150},{25,0},{25,1},{25,2},{25,3},{25,4},{25,5},{25,6},{25,7},{25,8},{25,9},{25,10},{25,11},{25,12},{25,13},{25,14},{25,15},{25,16},{25,17},{25,18},{25,19},{25,20},{25,21},{25,22},{25,23},{25,24},{25,25},{25,26},{25,27},{25,28},{25,29},{25,30},{25,31},{25,32},{25,33},{25,34},{25,35},{25,36},{25,37},{25,38},{25,39},{25,40},{25,41},{25,42},{25,43},{25,44},{25,45},{25,46},{25,47},{25,48},{25,49},{25,50},{25,51},{25,52},{25,53},{25,54},{25,55},{25,56},{25,57},{25,58},{25,59},{25,60},{25,61},{25,62},{25,63},{25,64},{25,65},{25,66},{25,67},{25,68},{25,69},{25,70},{25,71},{25,72},{25,73},{25,74},{25,75},{25,76},{25,77},{25,78},{25,79},{25,80},{25,81},{25,82},{25,83},{25,84},{25,85},{25,86},{25,87},{25,88},{25,89},{25,90},{25,91},{25,92},{25,93},{25,94},{25,95},{25,96},{25,97},{25,98},{25,99},{25,100},{25,101},{25,102},{25,103},{25,104},{25,105},{25,106},{25,107},{25,108},{25,109},{25,110},{25,111},{25,112},{25,113},{25,114},{25,115},{25,116},{25,117},{25,118},{25,119},{25,120},{25,121},{25,122},{25,123},{25,124},{25,125},{25,126},{25,127},{25,128},{25,129},{25,130},{25,131},{25,132},{25,133},{25,134},{25,135},{25,136},{25,137},{25,138},{25,139},{25,140},{25,141},{25,142},{25,143},{25,144},{25,145},{25,146},{25,147},{25,148},{25,149},{25,150},{24,0},{24,1},{24,2},{24,3},{24,4},{24,5},{24,6},{24,7},{24,8},{24,9},{24,10},{24,11},{24,12},{24,13},{24,14},{24,15},{24,16},{24,17},{24,18},{24,19},{24,20},{24,21},{24,22},{24,23},{24,24},{24,25},{24,26},{24,27},{24,28},{24,29},{24,30},{24,31},{24,32},{24,33},{24,34},{24,35},{24,36},{24,37},{24,38},{24,39},{24,40},{24,41},{24,42},{24,43},{24,44},{24,45},{24,46},{24,47},{24,48},{24,49},{24,50},{24,51},{24,52},{24,53},{24,54},{24,55},{24,56},{24,57},{24,58},{24,59},{24,60},{24,61},{24,62},{24,63},{24,64},{24,65},{24,66},{24,67},{24,68},{24,69},{24,70},{24,71},{24,72},{24,73},{24,74},{24,75},{24,76},{24,77},{24,78},{24,79},{24,80},{24,81},{24,82},{24,83},{24,84},{24,85},{24,86},{24,87},{24,88},{24,89},{24,90},{24,91},{24,92},{24,93},{24,94},{24,95},{24,96},{24,97},{24,98},{24,99},{24,100},{24,101},{24,102},{24,103},{24,104},{24,105},{24,106},{24,107},{24,108},{24,109},{24,110},{24,111},{24,112},{24,113},{24,114},{24,115},{24,116},{24,117},{24,118},{24,119},{24,120},{24,121},{24,122},{24,123},{24,124},{24,125},{24,126},{24,127},{24,128},{24,129},{24,130},{24,131},{24,132},{24,133},{24,134},{24,135},{24,136},{24,137},{24,138},{24,139},{24,140},{24,141},{24,142},{24,143},{24,144},{24,145},{24,146},{24,147},{24,148},{24,149},{24,150},{23,0},{23,1},{23,2},{23,3},{23,4},{23,5},{23,6},{23,7},{23,8},{23,9},{23,10},{23,11},{23,12},{23,13},{23,14},{23,15},{23,16},{23,17},{23,18},{23,19},{23,20},{23,21},{23,22},{23,23},{23,24},{23,25},{23,26},{23,27},{23,28},{23,29},{23,30},{23,31},{23,32},{23,33},{23,34},{23,35},{23,36},{23,37},{23,38},{23,39},{23,40},{23,41},{23,42},{23,43},{23,44},{23,45},{23,46},{23,47},{23,48},{23,49},{23,50},{23,51},{23,52},{23,53},{23,54},{23,55},{23,56},{23,57},{23,58},{23,59},{23,60},{23,61},{23,62},{23,63},{23,64},{23,65},{23,66},{23,67},{23,68},{23,69},{23,70},{23,71},{23,72},{23,73},{23,74},{23,75},{23,76},{23,77},{23,78},{23,79},{23,80},{23,81},{23,82},{23,83},{23,84},{23,85},{23,86},{23,87},{23,88},{23,89},{23,90},{23,91},{23,92},{23,93},{23,94},{23,95},{23,96},{23,97},{23,98},{23,99},{23,100},{23,101},{23,102},{23,103},{23,104},{23,105},{23,106},{23,107},{23,108},{23,109},{23,110},{23,111},{23,112},{23,113},{23,114},{23,115},{23,116},{23,117},{23,118},{23,119},{23,120},{23,121},{23,122},{23,123},{23,124},{23,125},{23,126},{23,127},{23,128},{23,129},{23,130},{23,131},{23,132},{23,133},{23,134},{23,135},{23,136},{23,137},{23,138},{23,139},{23,140},{23,141},{23,142},{23,143},{23,144},{23,145},{23,146},{23,147},{23,148},{23,149},{23,150},{22,0},{22,1},{22,2},{22,3},{22,4},{22,5},{22,6},{22,7},{22,8},{22,9},{22,10},{22,11},{22,12},{22,13},{22,14},{22,15},{22,16},{22,17},{22,18},{22,19},{22,20},{22,21},{22,22},{22,23},{22,24},{22,25},{22,26},{22,27},{22,28},{22,29},{22,30},{22,31},{22,32},{22,33},{22,34},{22,35},{22,36},{22,37},{22,38},{22,39},{22,40},{22,41},{22,42},{22,43},{22,44},{22,45},{22,46},{22,47},{22,48},{22,49},{22,50},{22,51},{22,52},{22,53},{22,54},{22,55},{22,56},{22,57},{22,58},{22,59},{22,60},{22,61},{22,62},{22,63},{22,64},{22,65},{22,66},{22,67},{22,68},{22,69},{22,70},{22,71},{22,72},{22,73},{22,74},{22,75},{22,76},{22,77},{22,78},{22,79},{22,80},{22,81},{22,82},{22,83},{22,84},{22,85},{22,86},{22,87},{22,88},{22,89},{22,90},{22,91},{22,92},{22,93},{22,94},{22,95},{22,96},{22,97},{22,98},{22,99},{22,100},{22,101},{22,102},{22,103},{22,104},{22,105},{22,106},{22,107},{22,108},{22,109},{22,110},{22,111},{22,112},{22,113},{22,114},{22,115},{22,116},{22,117},{22,118},{22,119},{22,120},{22,121},{22,122},{22,123},{22,124},{22,125},{22,126},{22,127},{22,128},{22,129},{22,130},{22,131},{22,132},{22,133},{22,134},{22,135},{22,136},{22,137},{22,138},{22,139},{22,140},{22,141},{22,142},{22,143},{22,144},{22,145},{22,146},{22,147},{22,148},{22,149},{22,150},{21,0},{21,1},{21,2},{21,3},{21,4},{21,5},{21,6},{21,7},{21,8},{21,9},{21,10},{21,11},{21,12},{21,13},{21,14},{21,15},{21,16},{21,17},{21,18},{21,19},{21,20},{21,21},{21,22},{21,23},{21,24},{21,25},{21,26},{21,27},{21,28},{21,29},{21,30},{21,31},{21,32},{21,33},{21,34},{21,35},{21,36},{21,37},{21,38},{21,39},{21,40},{21,41},{21,42},{21,43},{21,44},{21,45},{21,46},{21,47},{21,48},{21,49},{21,50},{21,51},{21,52},{21,53},{21,54},{21,55},{21,56},{21,57},{21,58},{21,59},{21,60},{21,61},{21,62},{21,63},{21,64},{21,65},{21,66},{21,67},{21,68},{21,69},{21,70},{21,71},{21,72},{21,73},{21,74},{21,75},{21,76},{21,77},{21,78},{21,79},{21,80},{21,81},{21,82},{21,83},{21,84},{21,85},{21,86},{21,87},{21,88},{21,89},{21,90},{21,91},{21,92},{21,93},{21,94},{21,95},{21,96},{21,97},{21,98},{21,99},{21,100},{21,101},{21,102},{21,103},{21,104},{21,105},{21,106},{21,107},{21,108},{21,109},{21,110},{21,111},{21,112},{21,113},{21,114},{21,115},{21,116},{21,117},{21,118},{21,119},{21,120},{21,121},{21,122},{21,123},{21,124},{21,125},{21,126},{21,127},{21,128},{21,129},{21,130},{21,131},{21,132},{21,133},{21,134},{21,135},{21,136},{21,137},{21,138},{21,139},{21,140},{21,141},{21,142},{21,143},{21,144},{21,145},{21,146},{21,147},{21,148},{21,149},{21,150},{20,0},{20,1},{20,2},{20,3},{20,4},{20,5},{20,6},{20,7},{20,8},{20,9},{20,10},{20,11},{20,12},{20,13},{20,14},{20,15},{20,16},{20,17},{20,18},{20,19},{20,20},{20,21},{20,22},{20,23},{20,24},{20,25},{20,26},{20,27},{20,28},{20,29},{20,30},{20,31},{20,32},{20,33},{20,34},{20,35},{20,36},{20,37},{20,38},{20,39},{20,40},{20,41},{20,42},{20,43},{20,44},{20,45},{20,46},{20,47},{20,48},{20,49},{20,50},{20,51},{20,52},{20,53},{20,54},{20,55},{20,56},{20,57},{20,58},{20,59},{20,60},{20,61},{20,62},{20,63},{20,64},{20,65},{20,66},{20,67},{20,68},{20,69},{20,70},{20,71},{20,72},{20,73},{20,74},{20,75},{20,76},{20,77},{20,78},{20,79},{20,80},{20,81},{20,82},{20,83},{20,84},{20,85},{20,86},{20,87},{20,88},{20,89},{20,90},{20,91},{20,92},{20,93},{20,94},{20,95},{20,96},{20,97},{20,98},{20,99},{20,100},{20,101},{20,102},{20,103},{20,104},{20,105},{20,106},{20,107},{20,108},{20,109},{20,110},{20,111},{20,112},{20,113},{20,114},{20,115},{20,116},{20,117},{20,118},{20,119},{20,120},{20,121},{20,122},{20,123},{20,124},{20,125},{20,126},{20,127},{20,128},{20,129},{20,130},{20,131},{20,132},{20,133},{20,134},{20,135},{20,136},{20,137},{20,138},{20,139},{20,140},{20,141},{20,142},{20,143},{20,144},{20,145},{20,146},{20,147},{20,148},{20,149},{20,150},{19,0},{19,1},{19,2},{19,3},{19,4},{19,5},{19,6},{19,7},{19,8},{19,9},{19,10},{19,11},{19,12},{19,13},{19,14},{19,15},{19,16},{19,17},{19,18},{19,19},{19,20},{19,21},{19,22},{19,23},{19,24},{19,25},{19,26},{19,27},{19,28},{19,29},{19,30},{19,31},{19,32},{19,33},{19,34},{19,35},{19,36},{19,37},{19,38},{19,39},{19,40},{19,41},{19,42},{19,43},{19,44},{19,45},{19,46},{19,47},{19,48},{19,49},{19,50},{19,51},{19,52},{19,53},{19,54},{19,55},{19,56},{19,57},{19,58},{19,59},{19,60},{19,61},{19,62},{19,63},{19,64},{19,65},{19,66},{19,67},{19,68},{19,69},{19,70},{19,71},{19,72},{19,73},{19,74},{19,75},{19,76},{19,77},{19,78},{19,79},{19,80},{19,81},{19,82},{19,83},{19,84},{19,85},{19,86},{19,87},{19,88},{19,89},{19,90},{19,91},{19,92},{19,93},{19,94},{19,95},{19,96},{19,97},{19,98},{19,99},{19,100},{19,101},{19,102},{19,103},{19,104},{19,105},{19,106},{19,107},{19,108},{19,109},{19,110},{19,111},{19,112},{19,113},{19,114},{19,115},{19,116},{19,117},{19,118},{19,119},{19,120},{19,121},{19,122},{19,123},{19,124},{19,125},{19,126},{19,127},{19,128},{19,129},{19,130},{19,131},{19,132},{19,133},{19,134},{19,135},{19,136},{19,137},{19,138},{19,139},{19,140},{19,141},{19,142},{19,143},{19,144},{19,145},{19,146},{19,147},{19,148},{19,149},{19,150},{18,0},{18,1},{18,2},{18,3},{18,4},{18,5},{18,6},{18,7},{18,8},{18,9},{18,10},{18,11},{18,12},{18,13},{18,14},{18,15},{18,16},{18,17},{18,18},{18,19},{18,20},{18,21},{18,22},{18,23},{18,24},{18,25},{18,26},{18,27},{18,28},{18,29},{18,30},{18,31},{18,32},{18,33},{18,34},{18,35},{18,36},{18,37},{18,38},{18,39},{18,40},{18,41},{18,42},{18,43},{18,44},{18,45},{18,46},{18,47},{18,48},{18,49},{18,50},{18,51},{18,52},{18,53},{18,54},{18,55},{18,56},{18,57},{18,58},{18,59},{18,60},{18,61},{18,62},{18,63},{18,64},{18,65},{18,66},{18,67},{18,68},{18,69},{18,70},{18,71},{18,72},{18,73},{18,74},{18,75},{18,76},{18,77},{18,78},{18,79},{18,80},{18,81},{18,82},{18,83},{18,84},{18,85},{18,86},{18,87},{18,88},{18,89},{18,90},{18,91},{18,92},{18,93},{18,94},{18,95},{18,96},{18,97},{18,98},{18,99},{18,100},{18,101},{18,102},{18,103},{18,104},{18,105},{18,106},{18,107},{18,108},{18,109},{18,110},{18,111},{18,112},{18,113},{18,114},{18,115},{18,116},{18,117},{18,118},{18,119},{18,120},{18,121},{18,122},{18,123},{18,124},{18,125},{18,126},{18,127},{18,128},{18,129},{18,130},{18,131},{18,132},{18,133},{18,134},{18,135},{18,136},{18,137},{18,138},{18,139},{18,140},{18,141},{18,142},{18,143},{18,144},{18,145},{18,146},{18,147},{18,148},{18,149},{18,150},{17,0},{17,1},{17,2},{17,3},{17,4},{17,5},{17,6},{17,7},{17,8},{17,9},{17,10},{17,11},{17,12},{17,13},{17,14},{17,15},{17,16},{17,17},{17,18},{17,19},{17,20},{17,21},{17,22},{17,23},{17,24},{17,25},{17,26},{17,27},{17,28},{17,29},{17,30},{17,31},{17,32},{17,33},{17,34},{17,35},{17,36},{17,37},{17,38},{17,39},{17,40},{17,41},{17,42},{17,43},{17,44},{17,45},{17,46},{17,47},{17,48},{17,49},{17,50},{17,51},{17,52},{17,53},{17,54},{17,55},{17,56},{17,57},{17,58},{17,59},{17,60},{17,61},{17,62},{17,63},{17,64},{17,65},{17,66},{17,67},{17,68},{17,69},{17,70},{17,71},{17,72},{17,73},{17,74},{17,75},{17,76},{17,77},{17,78},{17,79},{17,80},{17,81},{17,82},{17,83},{17,84},{17,85},{17,86},{17,87},{17,88},{17,89},{17,90},{17,91},{17,92},{17,93},{17,94},{17,95},{17,96},{17,97},{17,98},{17,99},{17,100},{17,101},{17,102},{17,103},{17,104},{17,105},{17,106},{17,107},{17,108},{17,109},{17,110},{17,111},{17,112},{17,113},{17,114},{17,115},{17,116},{17,117},{17,118},{17,119},{17,120},{17,121},{17,122},{17,123},{17,124},{17,125},{17,126},{17,127},{17,128},{17,129},{17,130},{17,131},{17,132},{17,133},{17,134},{17,135},{17,136},{17,137},{17,138},{17,139},{17,140},{17,141},{17,142},{17,143},{17,144},{17,145},{17,146},{17,147},{17,148},{17,149},{17,150},{16,0},{16,1},{16,2},{16,3},{16,4},{16,5},{16,6},{16,7},{16,8},{16,9},{16,10},{16,11},{16,12},{16,13},{16,14},{16,15},{16,16},{16,17},{16,18},{16,19},{16,20},{16,21},{16,22},{16,23},{16,24},{16,25},{16,26},{16,27},{16,28},{16,29},{16,30},{16,31},{16,32},{16,33},{16,34},{16,35},{16,36},{16,37},{16,38},{16,39},{16,40},{16,41},{16,42},{16,43},{16,44},{16,45},{16,46},{16,47},{16,48},{16,49},{16,50},{16,51},{16,52},{16,53},{16,54},{16,55},{16,56},{16,57},{16,58},{16,59},{16,60},{16,61},{16,62},{16,63},{16,64},{16,65},{16,66},{16,67},{16,68},{16,69},{16,70},{16,71},{16,72},{16,73},{16,74},{16,75},{16,76},{16,77},{16,78},{16,79},{16,80},{16,81},{16,82},{16,83},{16,84},{16,85},{16,86},{16,87},{16,88},{16,89},{16,90},{16,91},{16,92},{16,93},{16,94},{16,95},{16,96},{16,97},{16,98},{16,99},{16,100},{16,101},{16,102},{16,103},{16,104},{16,105},{16,106},{16,107},{16,108},{16,109},{16,110},{16,111},{16,112},{16,113},{16,114},{16,115},{16,116},{16,117},{16,118},{16,119},{16,120},{16,121},{16,122},{16,123},{16,124},{16,125},{16,126},{16,127},{16,128},{16,129},{16,130},{16,131},{16,132},{16,133},{16,134},{16,135},{16,136},{16,137},{16,138},{16,139},{16,140},{16,141},{16,142},{16,143},{16,144},{16,145},{16,146},{16,147},{16,148},{16,149},{16,150},{15,0},{15,1},{15,2},{15,3},{15,4},{15,5},{15,6},{15,7},{15,8},{15,9},{15,10},{15,11},{15,12},{15,13},{15,14},{15,15},{15,16},{15,17},{15,18},{15,19},{15,20},{15,21},{15,22},{15,23},{15,24},{15,25},{15,26},{15,27},{15,28},{15,29},{15,30},{15,31},{15,32},{15,33},{15,34},{15,35},{15,36},{15,37},{15,38},{15,39},{15,40},{15,41},{15,42},{15,43},{15,44},{15,45},{15,46},{15,47},{15,48},{15,49},{15,50},{15,51},{15,52},{15,53},{15,54},{15,55},{15,56},{15,57},{15,58},{15,59},{15,60},{15,61},{15,62},{15,63},{15,64},{15,65},{15,66},{15,67},{15,68},{15,69},{15,70},{15,71},{15,72},{15,73},{15,74},{15,75},{15,76},{15,77},{15,78},{15,79},{15,80},{15,81},{15,82},{15,83},{15,84},{15,85},{15,86},{15,87},{15,88},{15,89},{15,90},{15,91},{15,92},{15,93},{15,94},{15,95},{15,96},{15,97},{15,98},{15,99},{15,100},{15,101},{15,102},{15,103},{15,104},{15,105},{15,106},{15,107},{15,108},{15,109},{15,110},{15,111},{15,112},{15,113},{15,114},{15,115},{15,116},{15,117},{15,118},{15,119},{15,120},{15,121},{15,122},{15,123},{15,124},{15,125},{15,126},{15,127},{15,128},{15,129},{15,130},{15,131},{15,132},{15,133},{15,134},{15,135},{15,136},{15,137},{15,138},{15,139},{15,140},{15,141},{15,142},{15,143},{15,144},{15,145},{15,146},{15,147},{15,148},{15,149},{15,150},{14,0},{14,1},{14,2},{14,3},{14,4},{14,5},{14,6},{14,7},{14,8},{14,9},{14,10},{14,11},{14,12},{14,13},{14,14},{14,15},{14,16},{14,17},{14,18},{14,19},{14,20},{14,21},{14,22},{14,23},{14,24},{14,25},{14,26},{14,27},{14,28},{14,29},{14,30},{14,31},{14,32},{14,33},{14,34},{14,35},{14,36},{14,37},{14,38},{14,39},{14,40},{14,41},{14,42},{14,43},{14,44},{14,45},{14,46},{14,47},{14,48},{14,49},{14,50},{14,51},{14,52},{14,53},{14,54},{14,55},{14,56},{14,57},{14,58},{14,59},{14,60},{14,61},{14,62},{14,63},{14,64},{14,65},{14,66},{14,67},{14,68},{14,69},{14,70},{14,71},{14,72},{14,73},{14,74},{14,75},{14,76},{14,77},{14,78},{14,79},{14,80},{14,81},{14,82},{14,83},{14,84},{14,85},{14,86},{14,87},{14,88},{14,89},{14,90},{14,91},{14,92},{14,93},{14,94},{14,95},{14,96},{14,97},{14,98},{14,99},{14,100},{14,101},{14,102},{14,103},{14,104},{14,105},{14,106},{14,107},{14,108},{14,109},{14,110},{14,111},{14,112},{14,113},{14,114},{14,115},{14,116},{14,117},{14,118},{14,119},{14,120},{14,121},{14,122},{14,123},{14,124},{14,125},{14,126},{14,127},{14,128},{14,129},{14,130},{14,131},{14,132},{14,133},{14,134},{14,135},{14,136},{14,137},{14,138},{14,139},{14,140},{14,141},{14,142},{14,143},{14,144},{14,145},{14,146},{14,147},{14,148},{14,149},{14,150},{13,0},{13,1},{13,2},{13,3},{13,4},{13,5},{13,6},{13,7},{13,8},{13,9},{13,10},{13,11},{13,12},{13,13},{13,14},{13,15},{13,16},{13,17},{13,18},{13,19},{13,20},{13,21},{13,22},{13,23},{13,24},{13,25},{13,26},{13,27},{13,28},{13,29},{13,30},{13,31},{13,32},{13,33},{13,34},{13,35},{13,36},{13,37},{13,38},{13,39},{13,40},{13,41},{13,42},{13,43},{13,44},{13,45},{13,46},{13,47},{13,48},{13,49},{13,50},{13,51},{13,52},{13,53},{13,54},{13,55},{13,56},{13,57},{13,58},{13,59},{13,60},{13,61},{13,62},{13,63},{13,64},{13,65},{13,66},{13,67},{13,68},{13,69},{13,70},{13,71},{13,72},{13,73},{13,74},{13,75},{13,76},{13,77},{13,78},{13,79},{13,80},{13,81},{13,82},{13,83},{13,84},{13,85},{13,86},{13,87},{13,88},{13,89},{13,90},{13,91},{13,92},{13,93},{13,94},{13,95},{13,96},{13,97},{13,98},{13,99},{13,100},{13,101},{13,102},{13,103},{13,104},{13,105},{13,106},{13,107},{13,108},{13,109},{13,110},{13,111},{13,112},{13,113},{13,114},{13,115},{13,116},{13,117},{13,118},{13,119},{13,120},{13,121},{13,122},{13,123},{13,124},{13,125},{13,126},{13,127},{13,128},{13,129},{13,130},{13,131},{13,132},{13,133},{13,134},{13,135},{13,136},{13,137},{13,138},{13,139},{13,140},{13,141},{13,142},{13,143},{13,144},{13,145},{13,146},{13,147},{13,148},{13,149},{13,150},{12,0},{12,1},{12,2},{12,3},{12,4},{12,5},{12,6},{12,7},{12,8},{12,9},{12,10},{12,11},{12,12},{12,13},{12,14},{12,15},{12,16},{12,17},{12,18},{12,19},{12,20},{12,21},{12,22},{12,23},{12,24},{12,25},{12,26},{12,27},{12,28},{12,29},{12,30},{12,31},{12,32},{12,33},{12,34},{12,35},{12,36},{12,37},{12,38},{12,39},{12,40},{12,41},{12,42},{12,43},{12,44},{12,45},{12,46},{12,47},{12,48},{12,49},{12,50},{12,51},{12,52},{12,53},{12,54},{12,55},{12,56},{12,57},{12,58},{12,59},{12,60},{12,61},{12,62},{12,63},{12,64},{12,65},{12,66},{12,67},{12,68},{12,69},{12,70},{12,71},{12,72},{12,73},{12,74},{12,75},{12,76},{12,77},{12,78},{12,79},{12,80},{12,81},{12,82},{12,83},{12,84},{12,85},{12,86},{12,87},{12,88},{12,89},{12,90},{12,91},{12,92},{12,93},{12,94},{12,95},{12,96},{12,97},{12,98},{12,99},{12,100},{12,101},{12,102},{12,103},{12,104},{12,105},{12,106},{12,107},{12,108},{12,109},{12,110},{12,111},{12,112},{12,113},{12,114},{12,115},{12,116},{12,117},{12,118},{12,119},{12,120},{12,121},{12,122},{12,123},{12,124},{12,125},{12,126},{12,127},{12,128},{12,129},{12,130},{12,131},{12,132},{12,133},{12,134},{12,135},{12,136},{12,137},{12,138},{12,139},{12,140},{12,141},{12,142},{12,143},{12,144},{12,145},{12,146},{12,147},{12,148},{12,149},{12,150},{11,0},{11,1},{11,2},{11,3},{11,4},{11,5},{11,6},{11,7},{11,8},{11,9},{11,10},{11,11},{11,12},{11,13},{11,14},{11,15},{11,16},{11,17},{11,18},{11,19},{11,20},{11,21},{11,22},{11,23},{11,24},{11,25},{11,26},{11,27},{11,28},{11,29},{11,30},{11,31},{11,32},{11,33},{11,34},{11,35},{11,36},{11,37},{11,38},{11,39},{11,40},{11,41},{11,42},{11,43},{11,44},{11,45},{11,46},{11,47},{11,48},{11,49},{11,50},{11,51},{11,52},{11,53},{11,54},{11,55},{11,56},{11,57},{11,58},{11,59},{11,60},{11,61},{11,62},{11,63},{11,64},{11,65},{11,66},{11,67},{11,68},{11,69},{11,70},{11,71},{11,72},{11,73},{11,74},{11,75},{11,76},{11,77},{11,78},{11,79},{11,80},{11,81},{11,82},{11,83},{11,84},{11,85},{11,86},{11,87},{11,88},{11,89},{11,90},{11,91},{11,92},{11,93},{11,94},{11,95},{11,96},{11,97},{11,98},{11,99},{11,100},{11,101},{11,102},{11,103},{11,104},{11,105},{11,106},{11,107},{11,108},{11,109},{11,110},{11,111},{11,112},{11,113},{11,114},{11,115},{11,116},{11,117},{11,118},{11,119},{11,120},{11,121},{11,122},{11,123},{11,124},{11,125},{11,126},{11,127},{11,128},{11,129},{11,130},{11,131},{11,132},{11,133},{11,134},{11,135},{11,136},{11,137},{11,138},{11,139},{11,140},{11,141},{11,142},{11,143},{11,144},{11,145},{11,146},{11,147},{11,148},{11,149},{11,150},{10,0},{10,1},{10,2},{10,3},{10,4},{10,5},{10,6},{10,7},{10,8},{10,9},{10,10},{10,11},{10,12},{10,13},{10,14},{10,15},{10,16},{10,17},{10,18},{10,19},{10,20},{10,21},{10,22},{10,23},{10,24},{10,25},{10,26},{10,27},{10,28},{10,29},{10,30},{10,31},{10,32},{10,33},{10,34},{10,35},{10,36},{10,37},{10,38},{10,39},{10,40},{10,41},{10,42},{10,43},{10,44},{10,45},{10,46},{10,47},{10,48},{10,49},{10,50},{10,51},{10,52},{10,53},{10,54},{10,55},{10,56},{10,57},{10,58},{10,59},{10,60},{10,61},{10,62},{10,63},{10,64},{10,65},{10,66},{10,67},{10,68},{10,69},{10,70},{10,71},{10,72},{10,73},{10,74},{10,75},{10,76},{10,77},{10,78},{10,79},{10,80},{10,81},{10,82},{10,83},{10,84},{10,85},{10,86},{10,87},{10,88},{10,89},{10,90},{10,91},{10,92},{10,93},{10,94},{10,95},{10,96},{10,97},{10,98},{10,99},{10,100},{10,101},{10,102},{10,103},{10,104},{10,105},{10,106},{10,107},{10,108},{10,109},{10,110},{10,111},{10,112},{10,113},{10,114},{10,115},{10,116},{10,117},{10,118},{10,119},{10,120},{10,121},{10,122},{10,123},{10,124},{10,125},{10,126},{10,127},{10,128},{10,129},{10,130},{10,131},{10,132},{10,133},{10,134},{10,135},{10,136},{10,137},{10,138},{10,139},{10,140},{10,141},{10,142},{10,143},{10,144},{10,145},{10,146},{10,147},{10,148},{10,149},{10,150},{9,0},{9,1},{9,2},{9,3},{9,4},{9,5},{9,6},{9,7},{9,8},{9,9},{9,10},{9,11},{9,12},{9,13},{9,14},{9,15},{9,16},{9,17},{9,18},{9,19},{9,20},{9,21},{9,22},{9,23},{9,24},{9,25},{9,26},{9,27},{9,28},{9,29},{9,30},{9,31},{9,32},{9,33},{9,34},{9,35},{9,36},{9,37},{9,38},{9,39},{9,40},{9,41},{9,42},{9,43},{9,44},{9,45},{9,46},{9,47},{9,48},{9,49},{9,50},{9,51},{9,52},{9,53},{9,54},{9,55},{9,56},{9,57},{9,58},{9,59},{9,60},{9,61},{9,62},{9,63},{9,64},{9,65},{9,66},{9,67},{9,68},{9,69},{9,70},{9,71},{9,72},{9,73},{9,74},{9,75},{9,76},{9,77},{9,78},{9,79},{9,80},{9,81},{9,82},{9,83},{9,84},{9,85},{9,86},{9,87},{9,88},{9,89},{9,90},{9,91},{9,92},{9,93},{9,94},{9,95},{9,96},{9,97},{9,98},{9,99},{9,100},{9,101},{9,102},{9,103},{9,104},{9,105},{9,106},{9,107},{9,108},{9,109},{9,110},{9,111},{9,112},{9,113},{9,114},{9,115},{9,116},{9,117},{9,118},{9,119},{9,120},{9,121},{9,122},{9,123},{9,124},{9,125},{9,126},{9,127},{9,128},{9,129},{9,130},{9,131},{9,132},{9,133},{9,134},{9,135},{9,136},{9,137},{9,138},{9,139},{9,140},{9,141},{9,142},{9,143},{9,144},{9,145},{9,146},{9,147},{9,148},{9,149},{9,150},{8,0},{8,1},{8,2},{8,3},{8,4},{8,5},{8,6},{8,7},{8,8},{8,9},{8,10},{8,11},{8,12},{8,13},{8,14},{8,15},{8,16},{8,17},{8,18},{8,19},{8,20},{8,21},{8,22},{8,23},{8,24},{8,25},{8,26},{8,27},{8,28},{8,29},{8,30},{8,31},{8,32},{8,33},{8,34},{8,35},{8,36},{8,37},{8,38},{8,39},{8,40},{8,41},{8,42},{8,43},{8,44},{8,45},{8,46},{8,47},{8,48},{8,49},{8,50},{8,51},{8,52},{8,53},{8,54},{8,55},{8,56},{8,57},{8,58},{8,59},{8,60},{8,61},{8,62},{8,63},{8,64},{8,65},{8,66},{8,67},{8,68},{8,69},{8,70},{8,71},{8,72},{8,73},{8,74},{8,75},{8,76},{8,77},{8,78},{8,79},{8,80},{8,81},{8,82},{8,83},{8,84},{8,85},{8,86},{8,87},{8,88},{8,89},{8,90},{8,91},{8,92},{8,93},{8,94},{8,95},{8,96},{8,97},{8,98},{8,99},{8,100},{8,101},{8,102},{8,103},{8,104},{8,105},{8,106},{8,107},{8,108},{8,109},{8,110},{8,111},{8,112},{8,113},{8,114},{8,115},{8,116},{8,117},{8,118},{8,119},{8,120},{8,121},{8,122},{8,123},{8,124},{8,125},{8,126},{8,127},{8,128},{8,129},{8,130},{8,131},{8,132},{8,133},{8,134},{8,135},{8,136},{8,137},{8,138},{8,139},{8,140},{8,141},{8,142},{8,143},{8,144},{8,145},{8,146},{8,147},{8,148},{8,149},{8,150},{7,0},{7,1},{7,2},{7,3},{7,4},{7,5},{7,6},{7,7},{7,8},{7,9},{7,10},{7,11},{7,12},{7,13},{7,14},{7,15},{7,16},{7,17},{7,18},{7,19},{7,20},{7,21},{7,22},{7,23},{7,24},{7,25},{7,26},{7,27},{7,28},{7,29},{7,30},{7,31},{7,32},{7,33},{7,34},{7,35},{7,36},{7,37},{7,38},{7,39},{7,40},{7,41},{7,42},{7,43},{7,44},{7,45},{7,46},{7,47},{7,48},{7,49},{7,50},{7,51},{7,52},{7,53},{7,54},{7,55},{7,56},{7,57},{7,58},{7,59},{7,60},{7,61},{7,62},{7,63},{7,64},{7,65},{7,66},{7,67},{7,68},{7,69},{7,70},{7,71},{7,72},{7,73},{7,74},{7,75},{7,76},{7,77},{7,78},{7,79},{7,80},{7,81},{7,82},{7,83},{7,84},{7,85},{7,86},{7,87},{7,88},{7,89},{7,90},{7,91},{7,92},{7,93},{7,94},{7,95},{7,96},{7,97},{7,98},{7,99},{7,100},{7,101},{7,102},{7,103},{7,104},{7,105},{7,106},{7,107},{7,108},{7,109},{7,110},{7,111},{7,112},{7,113},{7,114},{7,115},{7,116},{7,117},{7,118},{7,119},{7,120},{7,121},{7,122},{7,123},{7,124},{7,125},{7,126},{7,127},{7,128},{7,129},{7,130},{7,131},{7,132},{7,133},{7,134},{7,135},{7,136},{7,137},{7,138},{7,139},{7,140},{7,141},{7,142},{7,143},{7,144},{7,145},{7,146},{7,147},{7,148},{7,149},{7,150},{6,0},{6,1},{6,2},{6,3},{6,4},{6,5},{6,6},{6,7},{6,8},{6,9},{6,10},{6,11},{6,12},{6,13},{6,14},{6,15},{6,16},{6,17},{6,18},{6,19},{6,20},{6,21},{6,22},{6,23},{6,24},{6,25},{6,26},{6,27},{6,28},{6,29},{6,30},{6,31},{6,32},{6,33},{6,34},{6,35},{6,36},{6,37},{6,38},{6,39},{6,40},{6,41},{6,42},{6,43},{6,44},{6,45},{6,46},{6,47},{6,48},{6,49},{6,50},{6,51},{6,52},{6,53},{6,54},{6,55},{6,56},{6,57},{6,58},{6,59},{6,60},{6,61},{6,62},{6,63},{6,64},{6,65},{6,66},{6,67},{6,68},{6,69},{6,70},{6,71},{6,72},{6,73},{6,74},{6,75},{6,76},{6,77},{6,78},{6,79},{6,80},{6,81},{6,82},{6,83},{6,84},{6,85},{6,86},{6,87},{6,88},{6,89},{6,90},{6,91},{6,92},{6,93},{6,94},{6,95},{6,96},{6,97},{6,98},{6,99},{6,100},{6,101},{6,102},{6,103},{6,104},{6,105},{6,106},{6,107},{6,108},{6,109},{6,110},{6,111},{6,112},{6,113},{6,114},{6,115},{6,116},{6,117},{6,118},{6,119},{6,120},{6,121},{6,122},{6,123},{6,124},{6,125},{6,126},{6,127},{6,128},{6,129},{6,130},{6,131},{6,132},{6,133},{6,134},{6,135},{6,136},{6,137},{6,138},{6,139},{6,140},{6,141},{6,142},{6,143},{6,144},{6,145},{6,146},{6,147},{6,148},{6,149},{6,150},{5,0},{5,1},{5,2},{5,3},{5,4},{5,5},{5,6},{5,7},{5,8},{5,9},{5,10},{5,11},{5,12},{5,13},{5,14},{5,15},{5,16},{5,17},{5,18},{5,19},{5,20},{5,21},{5,22},{5,23},{5,24},{5,25},{5,26},{5,27},{5,28},{5,29},{5,30},{5,31},{5,32},{5,33},{5,34},{5,35},{5,36},{5,37},{5,38},{5,39},{5,40},{5,41},{5,42},{5,43},{5,44},{5,45},{5,46},{5,47},{5,48},{5,49},{5,50},{5,51},{5,52},{5,53},{5,54},{5,55},{5,56},{5,57},{5,58},{5,59},{5,60},{5,61},{5,62},{5,63},{5,64},{5,65},{5,66},{5,67},{5,68},{5,69},{5,70},{5,71},{5,72},{5,73},{5,74},{5,75},{5,76},{5,77},{5,78},{5,79},{5,80},{5,81},{5,82},{5,83},{5,84},{5,85},{5,86},{5,87},{5,88},{5,89},{5,90},{5,91},{5,92},{5,93},{5,94},{5,95},{5,96},{5,97},{5,98},{5,99},{5,100},{5,101},{5,102},{5,103},{5,104},{5,105},{5,106},{5,107},{5,108},{5,109},{5,110},{5,111},{5,112},{5,113},{5,114},{5,115},{5,116},{5,117},{5,118},{5,119},{5,120},{5,121},{5,122},{5,123},{5,124},{5,125},{5,126},{5,127},{5,128},{5,129},{5,130},{5,131},{5,132},{5,133},{5,134},{5,135},{5,136},{5,137},{5,138},{5,139},{5,140},{5,141},{5,142},{5,143},{5,144},{5,145},{5,146},{5,147},{5,148},{5,149},{5,150},{4,0},{4,1},{4,2},{4,3},{4,4},{4,5},{4,6},{4,7},{4,8},{4,9},{4,10},{4,11},{4,12},{4,13},{4,14},{4,15},{4,16},{4,17},{4,18},{4,19},{4,20},{4,21},{4,22},{4,23},{4,24},{4,25},{4,26},{4,27},{4,28},{4,29},{4,30},{4,31},{4,32},{4,33},{4,34},{4,35},{4,36},{4,37},{4,38},{4,39},{4,40},{4,41},{4,42},{4,43},{4,44},{4,45},{4,46},{4,47},{4,48},{4,49},{4,50},{4,51},{4,52},{4,53},{4,54},{4,55},{4,56},{4,57},{4,58},{4,59},{4,60},{4,61},{4,62},{4,63},{4,64},{4,65},{4,66},{4,67},{4,68},{4,69},{4,70},{4,71},{4,72},{4,73},{4,74},{4,75},{4,76},{4,77},{4,78},{4,79},{4,80},{4,81},{4,82},{4,83},{4,84},{4,85},{4,86},{4,87},{4,88},{4,89},{4,90},{4,91},{4,92},{4,93},{4,94},{4,95},{4,96},{4,97},{4,98},{4,99},{4,100},{4,101},{4,102},{4,103},{4,104},{4,105},{4,106},{4,107},{4,108},{4,109},{4,110},{4,111},{4,112},{4,113},{4,114},{4,115},{4,116},{4,117},{4,118},{4,119},{4,120},{4,121},{4,122},{4,123},{4,124},{4,125},{4,126},{4,127},{4,128},{4,129},{4,130},{4,131},{4,132},{4,133},{4,134},{4,135},{4,136},{4,137},{4,138},{4,139},{4,140},{4,141},{4,142},{4,143},{4,144},{4,145},{4,146},{4,147},{4,148},{4,149},{4,150},{3,0},{3,1},{3,2},{3,3},{3,4},{3,5},{3,6},{3,7},{3,8},{3,9},{3,10},{3,11},{3,12},{3,13},{3,14},{3,15},{3,16},{3,17},{3,18},{3,19},{3,20},{3,21},{3,22},{3,23},{3,24},{3,25},{3,26},{3,27},{3,28},{3,29},{3,30},{3,31},{3,32},{3,33},{3,34},{3,35},{3,36},{3,37},{3,38},{3,39},{3,40},{3,41},{3,42},{3,43},{3,44},{3,45},{3,46},{3,47},{3,48},{3,49},{3,50},{3,51},{3,52},{3,53},{3,54},{3,55},{3,56},{3,57},{3,58},{3,59},{3,60},{3,61},{3,62},{3,63},{3,64},{3,65},{3,66},{3,67},{3,68},{3,69},{3,70},{3,71},{3,72},{3,73},{3,74},{3,75},{3,76},{3,77},{3,78},{3,79},{3,80},{3,81},{3,82},{3,83},{3,84},{3,85},{3,86},{3,87},{3,88},{3,89},{3,90},{3,91},{3,92},{3,93},{3,94},{3,95},{3,96},{3,97},{3,98},{3,99},{3,100},{3,101},{3,102},{3,103},{3,104},{3,105},{3,106},{3,107},{3,108},{3,109},{3,110},{3,111},{3,112},{3,113},{3,114},{3,115},{3,116},{3,117},{3,118},{3,119},{3,120},{3,121},{3,122},{3,123},{3,124},{3,125},{3,126},{3,127},{3,128},{3,129},{3,130},{3,131},{3,132},{3,133},{3,134},{3,135},{3,136},{3,137},{3,138},{3,139},{3,140},{3,141},{3,142},{3,143},{3,144},{3,145},{3,146},{3,147},{3,148},{3,149},{3,150},{2,0},{2,1},{2,2},{2,3},{2,4},{2,5},{2,6},{2,7},{2,8},{2,9},{2,10},{2,11},{2,12},{2,13},{2,14},{2,15},{2,16},{2,17},{2,18},{2,19},{2,20},{2,21},{2,22},{2,23},{2,24},{2,25},{2,26},{2,27},{2,28},{2,29},{2,30},{2,31},{2,32},{2,33},{2,34},{2,35},{2,36},{2,37},{2,38},{2,39},{2,40},{2,41},{2,42},{2,43},{2,44},{2,45},{2,46},{2,47},{2,48},{2,49},{2,50},{2,51},{2,52},{2,53},{2,54},{2,55},{2,56},{2,57},{2,58},{2,59},{2,60},{2,61},{2,62},{2,63},{2,64},{2,65},{2,66},{2,67},{2,68},{2,69},{2,70},{2,71},{2,72},{2,73},{2,74},{2,75},{2,76},{2,77},{2,78},{2,79},{2,80},{2,81},{2,82},{2,83},{2,84},{2,85},{2,86},{2,87},{2,88},{2,89},{2,90},{2,91},{2,92},{2,93},{2,94},{2,95},{2,96},{2,97},{2,98},{2,99},{2,100},{2,101},{2,102},{2,103},{2,104},{2,105},{2,106},{2,107},{2,108},{2,109},{2,110},{2,111},{2,112},{2,113},{2,114},{2,115},{2,116},{2,117},{2,118},{2,119},{2,120},{2,121},{2,122},{2,123},{2,124},{2,125},{2,126},{2,127},{2,128},{2,129},{2,130},{2,131},{2,132},{2,133},{2,134},{2,135},{2,136},{2,137},{2,138},{2,139},{2,140},{2,141},{2,142},{2,143},{2,144},{2,145},{2,146},{2,147},{2,148},{2,149},{2,150},{1,0},{1,1},{1,2},{1,3},{1,4},{1,5},{1,6},{1,7},{1,8},{1,9},{1,10},{1,11},{1,12},{1,13},{1,14},{1,15},{1,16},{1,17},{1,18},{1,19},{1,20},{1,21},{1,22},{1,23},{1,24},{1,25},{1,26},{1,27},{1,28},{1,29},{1,30},{1,31},{1,32},{1,33},{1,34},{1,35},{1,36},{1,37},{1,38},{1,39},{1,40},{1,41},{1,42},{1,43},{1,44},{1,45},{1,46},{1,47},{1,48},{1,49},{1,50},{1,51},{1,52},{1,53},{1,54},{1,55},{1,56},{1,57},{1,58},{1,59},{1,60},{1,61},{1,62},{1,63},{1,64},{1,65},{1,66},{1,67},{1,68},{1,69},{1,70},{1,71},{1,72},{1,73},{1,74},{1,75},{1,76},{1,77},{1,78},{1,79},{1,80},{1,81},{1,82},{1,83},{1,84},{1,85},{1,86},{1,87},{1,88},{1,89},{1,90},{1,91},{1,92},{1,93},{1,94},{1,95},{1,96},{1,97},{1,98},{1,99},{1,100},{1,101},{1,102},{1,103},{1,104},{1,105},{1,106},{1,107},{1,108},{1,109},{1,110},{1,111},{1,112},{1,113},{1,114},{1,115},{1,116},{1,117},{1,118},{1,119},{1,120},{1,121},{1,122},{1,123},{1,124},{1,125},{1,126},{1,127},{1,128},{1,129},{1,130},{1,131},{1,132},{1,133},{1,134},{1,135},{1,136},{1,137},{1,138},{1,139},{1,140},{1,141},{1,142},{1,143},{1,144},{1,145},{1,146},{1,147},{1,148},{1,149},{1,150},{0,0},{0,1},{0,2},{0,3},{0,4},{0,5},{0,6},{0,7},{0,8},{0,9},{0,10},{0,11},{0,12},{0,13},{0,14},{0,15},{0,16},{0,17},{0,18},{0,19},{0,20},{0,21},{0,22},{0,23},{0,24},{0,25},{0,26},{0,27},{0,28},{0,29},{0,30},{0,31},{0,32},{0,33},{0,34},{0,35},{0,36},{0,37},{0,38},{0,39},{0,40},{0,41},{0,42},{0,43},{0,44},{0,45},{0,46},{0,47},{0,48},{0,49},{0,50},{0,51},{0,52},{0,53},{0,54},{0,55},{0,56},{0,57},{0,58},{0,59},{0,60},{0,61},{0,62},{0,63},{0,64},{0,65},{0,66},{0,67},{0,68},{0,69},{0,70},{0,71},{0,72},{0,73},{0,74},{0,75},{0,76},{0,77},{0,78},{0,79},{0,80},{0,81},{0,82},{0,83},{0,84},{0,85},{0,86},{0,87},{0,88},{0,89},{0,90},{0,91},{0,92},{0,93},{0,94},{0,95},{0,96},{0,97},{0,98},{0,99},{0,100},{0,101},{0,102},{0,103},{0,104},{0,105},{0,106},{0,107},{0,108},{0,109},{0,110},{0,111},{0,112},{0,113},{0,114},{0,115},{0,116},{0,117},{0,118},{0,119},{0,120},{0,121},{0,122},{0,123},{0,124},{0,125},{0,126},{0,127},{0,128},{0,129},{0,130},{0,131},{0,132},{0,133},{0,134},{0,135},{0,136},{0,137},{0,138},{0,139},{0,140},{0,141},{0,142},{0,143},{0,144},{0,145},{0,146},{0,147},{0,148},{0,149},{0,150}},
[]int{ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 },
},
// 可以有多个 testcase
}
func Test_hitBricks(t *testing.T) {
ast := assert.New(t)
for _, tc := range tcs {
fmt.Printf("~~%v~~\n", tc)
ast.Equal(tc.ans, hitBricks(tc.grid, tc.hits), "输入:%v", tc)
}
}
func Benchmark_hitBricks(b *testing.B) {
for i := 0; i < b.N; i++ {
for _, tc := range tcs {
hitBricks(tc.grid, tc.hits)
}
}
}