Working on a tile example.

This commit is contained in:
Scott Duensing 2024-01-15 16:08:12 -06:00
parent edfd5e5aee
commit 86f4063006
27 changed files with 9049 additions and 103 deletions

4
.gitattributes vendored
View file

@ -4,3 +4,7 @@
*.bmp filter=lfs diff=lfs merge=lfs -text
*.skp filter=lfs diff=lfs merge=lfs -text
*.pmp filter=lfs diff=lfs merge=lfs -text
*.tiles filter=lfs diff=lfs merge=lfs -text
*.map filter=lfs diff=lfs merge=lfs -text
*.clut filter=lfs diff=lfs merge=lfs -text
*.indexed filter=lfs diff=lfs merge=lfs -text

2
.gitignore vendored
View file

@ -13,6 +13,7 @@ software/
*.lst
*.hex
*.o
makemap
# Crap for CrossOver
.windows-serial
@ -36,6 +37,7 @@ aseprite/
aseprite-source/
intelFPGA_lite/
header/header
imageconvert/imageconvert
include/
# Dumb QtCreator junk

33
build-tools.sh Executable file
View file

@ -0,0 +1,33 @@
#!/bin/bash
#
# Copyright (c) 2024 Scott Duensing, scott@kangaroopunch.com
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
pushd header
cc header.c -o header -lm
popd
pushd imageconvert
cc imageconvert.c -o imageconvert -lm
popd

View file

@ -0,0 +1,55 @@
#
# Copyright (c) 2024 Scott Duensing, scott@kangaroopunch.com
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
# This is only to make my IDE happy.
# We can't actually build with it until I get llvm-mos integrated into
# toolchains. -- SCD
cmake_minimum_required(VERSION 3.22)
set(CMAKE_C_STANDARD 17)
project(u5map)
set(DEFINES ${CMAKE_SOURCE_DIR}/../../include)
set(F256LIB ${CMAKE_SOURCE_DIR}/../../f256lib)
set(DATA_SOURCE
${F256LIB}/f256.h
${F256LIB}/f256.c
u5map.c
)
add_executable(${CMAKE_PROJECT_NAME}
${DATA_SOURCE}
makemap.c
)
target_include_directories(${CMAKE_PROJECT_NAME} PUBLIC
${CMAKE_SOURCE_DIR}
${DEFINES}
${F256LIB}
)
#target_link_libraries(${CMAKE_PROJECT_NAME}
# -lm
#)

BIN
examples/tilemap/brita.tiles (Stored with Git LFS) Normal file

Binary file not shown.

56
examples/tilemap/build.sh Executable file
View file

@ -0,0 +1,56 @@
#!/bin/bash -ex
#
# Copyright (c) 2024 Scott Duensing, scott@kangaroopunch.com
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
PROJECT=u5map
START=0x200
F256=$(pwd)/../..
LLVM=${F256}/llvm-mos
SETTINGS=${LLVM}/mos-platform/f256k/lib/settings.ld
PATH=${LLVM}/bin:${PATH}
echo "__f256_start = ${START};" > ${SETTINGS}
CLANG="mos-f256k-clang -I${F256}/include -I${F256}/f256lib -O3"
${CLANG} -c ${F256}/f256lib/f256.c
${CLANG} -c ${PROJECT}.c
${CLANG} -o ${PROJECT} ${PROJECT}.o f256.o
mv -f ${PROJECT} ${PROJECT}.bin
${F256}/header/header \
pgz 24 \
${PROJECT}.pgz \
${START} \
${PROJECT}.bin ${START} \
brita.tiles 0x10000 \
under.tiles 0x30000 \
u5tiles.indexed 0x50000 \
u5tiles.clut 0x70000
#llvm-nm ${PROJECT}.elf > ${PROJECT}.lst
llvm-objdump -d --print-imm-hex ${PROJECT}.elf > ${PROJECT}.lst
hexdump -C ${PROJECT}.pgz > ${PROJECT}.hex

View file

@ -0,0 +1,7 @@
[DEFAULT]
port=/dev/ttyUSB1
labels=sample.lbl
flash_address=380000
chunk_size=1024
cpu=65c02
data_rate=6000000

100
examples/tilemap/makemap.c Normal file
View file

@ -0,0 +1,100 @@
/*
* Copyright (c) 2024 Scott Duensing, scott@kangaroopunch.com
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
/*
* The original map data was swiped from http://grumdrig.com/u4map/ and then
* converted to binary using makeBinMaps.js. This program takes the binary
* maps and turns them into F256 tilemaps.
*
* These Ultima V maps have a tileset stored in a 256x512 bitmap. This is
* 16x32 tiles of 16x16 pixels for a total of 512 tiles. F256 tilesets are
* limited to 256 tiles so we set this up as two tilesets. Any tile index
* over 255 is in set 2.
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <stdint.h>
char *replaceExtension(char *org, char *new_ext) {
char *ext;
char *tmp = strdup(org);
size_t newSize;
char *newName;
ext = strrchr(tmp , '.');
if (ext) *ext = 0;
newSize = strlen(tmp) + strlen(new_ext) + 1;
newName = malloc(newSize);
sprintf(newName, "%s%s", tmp, new_ext);
free(tmp);
return newName;
}
int main(int argc, char *argv[]) {
char *filename;
FILE *in;
FILE *out;
uint16_t tile;
int16_t byte;
if (argc != 2) {
printf("Usage: %s [mapfile]\n", argv[0]);
return 1;
}
in = fopen(argv[1], "rb");
if (in == NULL) {
printf("Unable to open %s!\n", argv[1]);
return 2;
}
filename = replaceExtension(argv[1], ".tiles");
printf("Creating %s...\n", filename);
out = fopen(filename, "wb");
if (out == NULL) {
printf("Unable to create %s!\n", filename);
fclose(in);
free(filename);
return 3;
}
while ((byte = fgetc(in)) != EOF) {
// We always use CLUT0, so there's no need to set it here.
tile = ((byte > 255 ? 1 : 0) << 8) | (byte & 0x00ff);
fwrite(&tile, sizeof(uint16_t), 1, out);
}
fclose(out);
fclose(in);
free(filename);
return 0;
}

View file

@ -0,0 +1,6 @@
[Desktop Entry]
Encoding=UTF-8
Name=Link to Ultima IV/V Map Explorer
Type=Link
URL=http://grumdrig.com/u4map/
Icon=text-html

BIN
examples/tilemap/rawdata/brita.map (Stored with Git LFS) Normal file

Binary file not shown.

BIN
examples/tilemap/rawdata/brita.tiles (Stored with Git LFS) Normal file

Binary file not shown.

View file

@ -0,0 +1,19 @@
var over = require('./u5world');
var under = require('./u5underworld');
var fs = require('fs');
function writeMap(name, data) {
var out = fs.createWriteStream(name);
var buffer = Buffer.from(data[0]);
var i;
for (i=1; i<256; i++) {
buffer = Buffer.concat([ buffer, Uint8Array.from(data[i]) ]);
}
out.write(buffer);
out.end();
}
writeMap('brita.map', over.map());
writeMap('under.map', under.map());

BIN
examples/tilemap/rawdata/u5tiles.png (Stored with Git LFS) Normal file

Binary file not shown.

View file

@ -0,0 +1,261 @@
exports.map = function() {
var map5u=[
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,12,12,12,12,13,12,12,13,13,13,12,12,13,13,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,13,12,13,13,12,13,13,12,12,12,13,13,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,13,13,13,12,12,12,13,13,12,13,12,13,13,12,12,12,13,13,12,12,13,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,15,5,5,14,13,12,15,5,14,12,15,4,4,4,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,13,12,13,12,12,12,13,13,13,15,5,14,12,13,12,12,13,13,13,12,12,13,13,15,108,108,14,12,12,13,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,13,13,12,12,13,12,12,12,13,12,13,12,12,15,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,14,12,13,12,12,12,12,12,12,12,13,12,13,12,12,13,13,13,13,12,12,15,14,12,13,12,12,12,12,12,15,50,50,108,50,50,50,14,12,12,12,12,12,12,15,50,54,3,3,55,14,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,13,12,12,12,13,13,12,13,12,13,12,12,12,12,15,5,5,5,5,14,12,12,12,15,5,5,4,4,4,4,4,4,4,4,4,4,4,4,14,13,12,12,12,12,12,13,12,12,12,13,13,12,12,12,12,12,12,12,15,108,50,50,50,14,12,15,54,3,3,3,3,3,3,55,50,14,12,12,12,15,54,3,3,2,2,3,109,14,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,11,11,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,13,12,13,12,15,14,12,12,12,12,12,13,13,12,15,5,5,5,14,12,12,12,12,12,12,12,12,12,15,14,12,12,12,15,4,4,4,4,4,4,4,14,13,13,12,12,12,13,12,15,14,12,12,12,12,15,14,12,15,50,50,54,3,3,3,3,55,50,54,3,2,2,2,2,2,2,3,3,55,14,12,12,15,53,3,2,2,2,3,55,108,50,14,12,12,12,13,12,13,13,12,12,12,12,13,13,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,15,14,11,11,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,15,14,15,14,12,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,4,4,4,4,14,13,12,12,12,12,12,13,12,15,14,12,12,15,108,50,108,54,3,3,3,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,2,3,55,108,50,108,54,3,2,2,2,2,3,3,3,55,14,12,12,13,12,12,12,12,13,13,13,12,12,12,12,12,12,13,12,12,12,13,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,13,12,13,12,15,14,13,12,11,11,11,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,15,14,12,12,15,14,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,4,4,14,12,13,12,12,12,12,13,12,12,12,15,14,15,54,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,2,2,2,2,2,2,2,2,3,109,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,13,13,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,13,13,12,13,13,13,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,13,12,12,12,15,5,14,12,13,12,11,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,5,5,5,14,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,15,4,4,4,14,12,13,12,12,12,12,12,13,12,12,12,15,54,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,55,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,13,12,12,13,12,12,12,13,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,15,108,14,12,13,12,12,11,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,5,5,5,14,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,15,5,5,14,15,14,12,12,12,12,12,12,12,15,4,4,4,14,13,12,12,12,12,13,12,12,12,15,54,3,2,2,2,2,2,2,2,3,3,3,3,2,2,2,2,2,52,48,48,110,53,2,2,2,2,2,2,2,2,2,3,3,3,3,3,2,2,2,2,3,55,14,12,11,11,11,11,12,12,12,12,12,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,13,12,12,12,12,12,12,13,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,15,96,14,13,12,12,11,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,15,5,5,14,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,15,4,4,4,4,14,13,12,12,12,13,12,12,12,15,111,3,2,2,2,2,2,2,2,3,52,110,48,48,53,2,2,2,52,14,12,12,15,49,2,2,2,2,2,2,2,2,3,52,48,48,110,53,3,2,2,2,3,52,14,11,11,13,12,11,11,11,11,11,11,11,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,13,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,99,101,14,12,13,11,11,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,15,5,5,14,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,15,4,4,4,4,14,12,13,12,12,12,12,13,12,12,12,15,53,3,2,2,2,2,2,3,52,14,12,12,12,15,48,110,48,14,12,12,12,15,49,3,2,2,2,2,2,2,2,3,109,14,12,12,15,53,3,3,3,52,14,12,12,13,12,12,12,11,11,12,12,12,12,12,11,11,11,11,11,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,14,12,12,15,96,14,12,12,13,11,11,11,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,13,13,13,12,12,12,12,13,12,13,12,13,13,12,12,12,12,12,12,12,12,13,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,15,4,4,4,4,4,14,13,12,12,12,12,12,12,13,12,12,12,15,53,3,2,2,3,3,52,14,12,12,12,15,14,12,15,14,12,12,12,12,15,111,3,2,2,2,2,2,2,2,3,109,14,12,12,12,15,110,48,110,14,12,12,12,13,12,12,15,14,12,12,12,12,12,12,12,12,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,14,12,15,96,5,14,13,12,11,11,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,13,12,12,13,12,12,12,12,12,12,13,12,12,13,12,12,12,13,13,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,15,5,5,14,12,15,5,5,14,12,12,12,12,12,15,5,5,5,14,12,12,12,15,4,4,4,4,4,14,12,13,12,12,12,12,12,12,12,13,12,12,12,15,53,3,3,52,110,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,53,3,3,2,2,2,3,3,52,14,12,12,12,12,15,5,14,12,12,12,12,13,12,12,12,15,14,12,12,12,12,12,12,13,12,12,12,12,12,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,13,12,12,13,13,12,13,12,12,12,12,12,15,99,97,101,14,12,12,13,12,11,11,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,11,11,11,11,11,11,12,12,13,13,12,12,11,11,11,11,11,11,13,12,12,12,12,13,12,12,12,12,15,5,14,12,12,12,15,5,5,5,14,12,15,5,5,5,5,5,5,5,5,5,5,14,12,12,12,12,15,5,14,12,12,12,12,15,5,5,5,14,12,12,12,12,15,4,4,4,4,4,14,13,12,13,12,12,12,12,12,13,12,12,12,12,12,15,110,48,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,110,53,3,2,3,52,48,14,12,12,12,12,12,12,15,14,12,12,12,13,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,13,13,13,12,13,12,12,12,12,12,12,15,96,14,12,12,13,12,12,13,12,11,11,11,12,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,11,11,11,11,12,12,12,11,11,11,11,11,11,11,11,11,11,12,12,11,11,12,13,12,12,13,12,12,12,12,15,5,5,14,12,12,15,5,14,12,15,5,5,5,14,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,15,5,14,12,12,15,5,5,14,12,12,12,12,12,12,15,4,4,4,4,4,14,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,15,53,3,52,14,12,12,12,12,13,12,12,13,15,14,12,12,13,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,108,96,108,14,12,12,13,12,12,13,13,11,11,11,11,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,11,11,11,11,12,12,12,12,12,11,11,11,11,11,11,11,12,12,12,13,12,11,11,12,13,12,12,13,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,15,4,4,4,14,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,212,14,12,12,13,13,13,12,13,13,15,14,13,13,13,12,12,12,12,12,15,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,11,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,11,11,11,11,15,14,12,15,108,54,2,2,2,55,14,12,12,12,12,12,12,13,11,11,11,11,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,13,13,12,13,12,11,11,11,12,12,12,12,12,11,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,12,12,13,13,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,13,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,13,13,15,96,14,13,13,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,11,11,11,12,12,12,12,15,50,54,2,2,2,2,2,2,55,14,12,12,15,14,12,13,12,11,11,11,11,11,12,12,13,12,12,12,12,12,12,13,13,12,12,12,12,13,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,11,11,12,12,12,13,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,15,14,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,13,212,13,12,12,13,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,11,11,11,12,12,12,12,12,15,54,2,2,2,2,2,2,2,2,2,97,97,100,14,12,12,12,13,12,12,12,11,11,11,12,12,13,12,13,12,13,13,13,12,12,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,11,12,13,12,12,12,12,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,15,14,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,14,12,15,96,4,14,13,12,12,12,11,11,11,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,11,12,12,12,12,12,12,12,15,54,2,2,2,2,52,48,110,53,2,52,14,15,98,97,109,14,12,12,13,12,12,12,11,11,11,12,12,13,12,13,13,12,12,12,11,11,11,11,12,12,12,12,12,12,12,12,11,12,12,12,12,12,12,11,12,12,12,12,13,12,12,12,12,12,11,11,12,12,13,12,12,12,12,12,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,24,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,13,12,12,12,15,14,15,14,15,212,14,12,12,13,12,15,11,13,11,11,11,11,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,12,12,12,12,12,12,12,15,54,2,2,2,52,110,14,12,12,15,96,14,12,13,12,15,14,15,14,12,12,13,12,12,11,11,11,11,12,12,12,12,12,13,12,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,11,11,12,12,12,13,12,12,12,12,12,12,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,12,15,14,12,12,15,5,14,12,12,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,14,12,12,12,12,15,5,5,5,5,5,5,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,13,12,12,12,12,12,12,13,15,99,104,14,12,13,12,15,14,12,12,12,12,12,11,11,12,12,12,12,15,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,11,11,12,12,12,12,12,12,15,111,2,2,2,52,5,14,12,12,13,15,96,14,13,12,13,12,13,12,15,14,12,12,13,12,13,12,11,11,11,11,12,12,12,12,11,11,11,11,12,12,12,12,12,12,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,11,11,11,12,12,13,12,13,12,12,12,12,12,12,12,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,15,5,5,5,5,5,5,14,15,5,5,14,12,15,5,5,5,14,15,5,5,5,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,15,96,212,14,12,12,13,13,12,12,12,12,12,12,12,11,12,12,12,12,15,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,12,12,12,12,12,12,12,15,54,2,2,2,51,14,12,13,12,12,15,110,14,12,13,12,13,12,13,12,15,14,12,12,13,12,13,12,12,11,11,11,11,11,11,11,11,11,12,12,12,11,11,12,11,11,11,12,12,12,12,13,12,12,13,12,12,12,12,12,13,12,12,11,11,11,11,11,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,15,5,5,5,5,5,14,12,12,12,15,14,15,5,5,14,12,12,12,13,13,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,15,14,15,212,102,55,14,12,12,12,13,12,12,12,12,12,12,11,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,11,11,12,12,12,12,12,11,15,49,2,2,2,2,109,5,14,12,12,13,12,15,14,12,12,12,12,12,12,12,15,14,12,12,12,13,11,12,12,12,12,13,12,12,11,11,11,12,13,12,12,11,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,11,11,12,12,12,12,12,13,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,13,13,13,12,12,12,12,13,12,12,12,12,12,12,13,12,12,11,15,14,15,14,15,99,104,212,3,51,14,12,12,13,12,12,12,12,11,11,11,12,12,12,15,14,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,11,12,12,12,12,12,12,11,12,15,53,2,2,2,108,14,12,13,12,12,12,12,15,14,12,12,13,12,13,12,15,14,12,12,13,11,11,11,13,12,12,12,12,12,13,12,12,12,12,13,12,12,11,13,11,11,12,12,12,12,12,15,14,12,12,12,12,12,12,13,12,11,11,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,12,12,12,12,12,12,13,12,12,12,11,12,15,14,13,15,96,98,104,212,14,12,13,13,12,12,12,12,12,11,12,12,12,12,15,14,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,11,12,12,12,11,11,11,11,12,15,111,2,2,2,2,55,50,14,12,12,12,13,12,12,12,12,12,12,12,12,13,15,14,12,12,13,11,13,13,13,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,14,12,13,13,12,13,12,12,11,11,11,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,13,12,11,11,12,12,12,13,15,212,13,212,3,100,14,12,12,13,12,12,12,11,11,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,11,11,12,12,11,12,13,12,12,11,15,53,2,2,2,2,2,55,108,14,12,12,12,12,13,12,12,12,12,13,12,12,15,14,12,12,13,12,12,13,13,12,13,13,12,12,13,12,12,13,12,12,12,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,11,11,11,11,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,24,12,12,12,12,15,14,12,12,12,12,12,12,15,4,14,15,14,12,13,13,12,12,12,12,13,12,11,12,12,12,13,12,15,96,4,102,52,98,100,14,12,12,13,12,11,11,11,12,12,12,15,14,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,11,11,11,11,13,12,12,13,12,12,15,53,2,2,2,1,2,2,55,14,12,12,12,12,13,12,12,12,12,12,15,14,15,14,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,11,11,11,12,12,13,12,12,15,5,14,12,13,12,12,12,12,12,11,11,11,11,11,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,15,14,12,12,12,15,4,14,12,12,12,15,14,12,13,12,12,12,13,12,12,11,12,12,12,12,12,15,212,4,212,13,99,104,14,12,11,12,13,11,11,11,12,12,12,15,14,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,11,11,11,11,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,13,11,11,11,11,12,13,12,11,11,12,12,13,15,49,2,2,1,1,1,1,2,55,14,12,12,12,12,12,12,12,12,15,14,12,12,15,14,12,12,12,12,12,12,15,14,12,13,12,12,12,12,12,12,12,11,11,11,11,12,12,13,13,12,15,14,12,12,12,12,13,12,12,11,11,11,11,11,11,11,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,15,14,12,12,12,12,12,12,15,5,5,5,5,14,12,12,12,15,5,5,14,12,12,15,5,14,12,12,12,12,12,12,12,12,15,5,5,5,5,5,4,4,4,4,4,4,4,14,12,12,12,12,12,12,15,12,13,12,12,13,12,12,12,11,11,12,12,12,12,15,96,13,96,4,212,212,14,11,11,13,12,11,11,12,12,13,12,15,14,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,11,11,12,11,11,11,11,12,12,12,12,12,13,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,13,12,11,11,15,14,12,12,11,15,14,12,12,15,5,111,2,1,1,1,1,1,1,2,55,14,12,12,12,12,12,12,15,14,12,12,13,12,15,14,12,12,12,12,15,14,12,13,12,12,12,12,12,12,13,12,12,11,11,11,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,11,11,11,11,11,11,11,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,15,14,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,15,5,5,5,5,5,5,5,4,4,14,12,12,12,12,12,12,12,12,15,14,12,13,12,12,12,13,12,12,12,11,12,12,12,12,15,98,100,212,4,102,101,14,12,13,12,12,12,11,12,13,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,11,11,11,11,11,12,12,12,12,13,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,11,11,15,14,15,5,14,11,12,12,15,49,2,1,1,1,1,1,1,1,2,51,5,14,12,12,11,15,14,12,12,13,12,12,12,15,14,11,12,12,11,11,11,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,13,12,12,12,11,11,11,11,11,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,15,14,12,12,15,5,14,12,12,12,15,5,5,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,15,5,4,14,12,12,12,12,12,12,12,12,12,15,14,12,13,12,12,12,13,12,12,12,11,11,12,12,12,12,12,15,98,104,13,212,14,12,12,13,13,12,12,11,13,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,11,11,12,11,11,11,12,12,12,13,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,15,14,12,15,5,14,11,12,13,15,111,2,1,1,1,1,1,1,1,2,109,14,12,12,15,14,12,12,12,12,12,13,12,12,12,12,15,14,11,15,14,11,12,12,13,12,12,12,11,11,11,12,12,12,12,13,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,14,12,12,12,15,5,14,12,15,14,12,12,12,12,12,12,12,15,14,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,4,14,13,12,13,12,12,13,12,12,12,12,11,12,12,12,12,12,12,12,15,212,99,101,14,12,12,13,12,12,11,11,12,13,12,13,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,13,13,12,12,12,12,12,12,12,12,11,11,11,11,11,12,12,13,11,11,12,12,13,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,11,15,14,12,15,14,11,12,12,12,15,54,2,1,1,1,1,1,1,1,2,55,14,12,15,14,12,12,12,12,15,108,108,14,13,12,12,12,12,12,12,11,13,12,12,12,13,12,12,11,11,11,11,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,13,12,12,12,12,11,11,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,15,5,14,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,13,13,13,12,12,12,13,12,12,12,11,12,12,12,12,12,12,12,15,102,101,14,12,12,12,13,12,12,11,12,12,12,13,12,12,15,14,12,15,5,5,5,14,12,15,14,12,12,12,15,14,12,12,12,12,12,12,12,13,12,12,12,12,12,11,11,11,13,12,11,11,12,13,12,12,11,11,12,12,13,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,11,11,12,13,11,11,12,12,15,108,54,2,2,2,1,1,1,1,1,2,2,2,55,108,14,12,12,12,12,15,54,2,2,55,14,12,12,13,12,12,12,15,14,11,11,13,12,12,12,13,11,11,11,12,12,13,13,12,12,13,12,12,12,12,12,13,12,12,12,13,12,12,12,13,12,12,12,12,11,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,15,5,14,12,12,12,12,12,12,15,5,5,5,14,12,12,12,15,5,14,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,13,12,12,12,12,12,13,12,12,12,11,11,12,12,12,12,12,12,15,212,14,12,12,12,13,12,12,12,11,12,12,12,12,13,15,14,12,12,12,12,15,5,5,5,5,5,14,12,15,14,12,12,12,12,12,12,12,12,12,13,12,12,12,11,11,11,12,13,11,11,12,13,12,12,11,11,11,12,12,12,13,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,14,11,12,12,12,13,15,54,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,55,14,12,12,15,5,53,2,2,2,55,14,12,12,12,13,11,11,11,11,11,11,13,12,13,12,13,13,12,13,13,13,12,13,13,12,13,12,12,12,12,12,13,12,13,12,12,13,12,12,12,13,12,12,11,12,12,11,11,11,11,11,12,12,13,12,12,12,12,12,12,13,12,12,12,15,5,14,12,12,12,12,12,15,5,5,14,15,5,5,5,5,5,14,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,11,12,12,12,12,12,15,99,104,14,12,12,13,12,12,12,12,11,11,11,11,12,12,13,12,13,12,12,12,11,12,12,12,15,5,5,5,14,12,12,12,12,12,12,13,12,12,12,12,12,13,12,11,12,11,11,12,11,11,13,12,12,11,11,11,11,12,12,12,13,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,11,11,11,12,13,15,108,54,2,2,2,52,48,48,53,2,2,2,2,2,2,2,2,2,2,55,14,12,12,15,111,2,2,2,52,14,13,12,12,12,11,11,12,13,11,11,11,13,12,12,12,13,13,13,12,11,11,11,11,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,11,11,11,11,12,12,12,11,11,12,13,12,12,12,12,12,12,12,13,12,15,5,14,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,11,12,12,12,12,15,99,104,212,14,12,12,12,13,12,12,12,11,12,12,11,11,12,12,13,12,12,12,11,11,12,12,12,12,12,15,5,5,14,12,12,12,12,13,12,12,12,12,12,12,12,11,11,12,13,11,11,11,11,11,11,11,11,11,11,11,12,12,13,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,11,11,11,15,54,2,2,2,2,52,14,12,12,15,110,48,48,53,2,2,2,2,2,2,2,55,14,12,15,54,2,2,2,109,14,12,13,12,15,14,11,12,12,12,13,11,11,11,12,12,12,12,12,11,11,12,12,11,11,12,12,13,12,13,12,12,12,12,13,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,11,11,12,13,12,12,12,12,12,12,12,13,15,5,5,14,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,12,12,15,14,12,15,14,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,11,11,12,12,12,15,96,212,102,100,14,12,13,12,12,15,14,11,12,12,12,11,11,12,12,13,12,12,11,12,12,12,12,12,13,12,15,5,14,12,12,12,12,13,12,12,12,12,12,12,12,11,12,12,12,11,11,11,11,11,11,11,12,11,11,12,12,13,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,111,2,2,2,2,52,14,12,12,13,11,15,14,12,15,48,53,2,2,2,2,2,2,55,108,54,2,2,2,52,14,12,13,11,11,11,11,15,14,13,12,12,12,11,11,11,11,11,12,12,11,12,12,12,12,11,11,13,12,13,12,13,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,11,13,12,12,12,12,12,12,12,12,12,13,15,5,14,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,15,14,15,14,12,12,13,13,12,12,12,12,12,13,12,12,12,12,12,12,12,15,14,12,12,15,212,96,212,96,14,13,12,12,15,14,15,14,12,12,13,12,11,12,13,12,12,12,11,12,12,12,13,12,12,12,15,5,5,14,12,12,12,12,13,12,12,12,13,12,12,11,11,11,11,11,12,13,11,11,11,12,12,12,12,12,12,12,13,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,54,2,2,2,101,14,12,12,13,12,12,15,14,12,12,12,15,48,53,2,2,2,2,2,2,2,2,52,48,14,12,13,12,11,12,12,13,12,11,12,13,11,11,11,11,12,12,11,11,11,11,12,12,12,12,12,11,12,13,12,12,12,13,12,13,13,12,13,12,13,12,12,12,13,12,12,12,12,13,12,13,12,12,11,12,13,12,12,12,12,12,12,12,13,12,15,5,5,14,12,12,12,12,12,15,14,12,12,12,15,5,5,14,15,5,5,5,5,5,14,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,15,14,12,12,12,15,98,2,104,212,14,12,13,15,14,12,12,15,14,13,12,12,11,11,12,13,12,11,11,12,12,13,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,13,13,13,11,11,11,12,13,12,12,11,11,11,12,12,12,12,12,13,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,54,2,2,2,52,14,12,13,12,12,12,15,14,12,12,12,12,12,12,15,48,53,2,2,2,2,2,2,51,14,13,12,12,12,11,12,12,12,12,11,11,11,11,12,11,11,12,12,12,11,12,12,12,12,12,12,12,11,11,11,11,11,11,11,11,12,12,13,12,13,13,12,12,12,12,13,12,12,13,12,12,12,12,11,11,13,12,12,12,12,12,12,12,12,12,13,12,15,5,14,12,15,14,12,12,12,12,12,12,15,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,13,13,12,12,12,12,12,12,13,12,12,12,12,15,14,12,12,12,12,12,15,96,212,96,14,12,13,12,15,14,15,14,12,12,13,12,12,11,13,12,12,11,12,12,12,12,12,12,13,12,12,15,5,5,14,12,12,12,12,13,12,12,12,12,12,12,11,11,11,13,12,12,11,11,11,11,12,12,12,12,13,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,111,2,2,2,2,109,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,15,53,2,2,2,2,2,2,55,108,14,12,13,12,15,14,13,12,12,13,12,12,12,12,12,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,11,12,12,12,13,12,12,12,12,12,13,12,12,12,13,12,11,12,12,13,12,12,12,12,12,12,12,13,12,12,15,5,14,15,5,14,12,12,12,12,12,15,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,15,5,14,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,15,14,12,12,12,12,11,15,98,3,101,14,13,12,13,12,15,14,12,12,13,12,12,12,11,12,13,12,11,12,12,12,12,12,12,12,13,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,13,12,11,11,11,11,11,11,11,11,11,12,12,12,13,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,15,111,2,2,2,2,55,14,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,53,2,2,2,2,2,2,2,55,14,12,13,11,12,12,13,12,12,12,12,12,12,12,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,12,12,13,12,12,12,12,13,13,12,12,12,12,11,12,13,12,12,12,12,12,12,12,13,12,12,12,15,5,5,5,5,5,14,12,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,15,4,14,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,14,12,12,15,14,12,15,212,14,12,12,13,12,13,12,12,12,13,12,12,13,12,11,11,12,11,11,12,13,12,12,13,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,13,12,11,11,11,11,11,11,11,11,12,12,12,12,12,13,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,53,2,2,2,2,55,14,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,15,48,53,2,2,2,2,2,3,55,14,15,14,12,12,12,12,12,12,12,12,12,12,12,11,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,12,13,12,12,13,12,12,13,12,12,12,11,11,13,12,12,12,12,12,12,12,12,13,12,12,15,5,5,5,5,5,5,5,14,15,5,5,5,5,14,13,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,13,12,12,12,13,13,13,12,12,12,12,12,12,12,12,15,14,15,14,12,12,15,96,14,12,12,12,13,12,12,12,13,12,12,13,12,12,12,11,11,11,12,12,12,12,12,12,12,12,13,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,11,11,11,15,14,11,11,11,11,11,12,12,12,13,13,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,53,2,2,2,52,14,13,12,12,12,12,12,12,12,12,13,12,12,12,12,15,14,12,15,110,48,53,2,2,2,2,55,108,108,14,12,12,12,12,12,12,12,12,12,12,11,12,13,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,11,12,12,13,13,12,12,12,12,13,12,12,12,11,12,13,12,12,12,12,12,12,12,12,13,12,12,15,14,12,12,15,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,15,5,5,14,12,12,15,14,12,12,15,14,12,12,12,12,15,4,14,12,12,12,12,12,13,13,13,12,12,12,12,12,12,15,14,12,12,12,12,15,14,12,12,12,15,212,4,14,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,11,11,11,11,12,12,13,12,12,12,13,12,12,15,14,12,12,12,12,11,11,12,13,12,13,11,11,11,11,11,11,11,11,11,11,11,11,12,13,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,48,110,48,14,12,12,11,11,11,11,13,12,12,12,12,12,12,12,15,14,12,12,12,15,14,15,110,53,2,2,2,2,2,55,108,108,14,12,12,12,12,12,15,14,11,13,12,12,12,13,12,12,12,13,12,12,12,12,12,13,12,12,13,12,13,12,13,12,12,11,11,11,11,12,12,12,12,13,12,12,13,12,11,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,15,14,12,12,12,12,12,15,5,5,14,12,12,12,15,5,14,12,12,15,14,12,12,12,12,15,14,12,12,15,4,14,12,12,12,12,12,13,12,12,12,13,12,12,12,12,15,14,12,12,12,12,15,14,12,12,12,12,15,96,14,15,14,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,11,11,11,11,11,12,12,12,12,12,15,5,14,12,12,12,12,11,11,11,12,11,11,11,11,11,11,11,11,11,11,11,12,12,13,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,15,5,14,12,12,11,11,11,11,11,11,12,12,12,12,12,12,12,11,12,12,12,12,12,15,14,12,15,53,2,2,2,2,2,2,2,55,14,12,12,12,15,14,15,14,12,12,12,12,12,13,12,12,12,13,12,12,12,13,12,13,12,13,12,12,13,12,13,12,12,12,12,11,12,12,12,12,12,13,12,12,12,11,11,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,15,5,5,14,12,12,12,15,5,14,12,12,12,12,12,15,5,14,12,15,14,12,12,12,12,12,12,15,14,15,4,4,14,12,12,13,13,13,12,12,12,12,12,13,12,12,15,14,12,12,12,12,15,14,12,12,12,12,12,15,212,14,12,15,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,11,12,12,11,11,11,11,11,12,12,15,14,12,12,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,11,11,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,11,12,12,11,11,12,12,12,11,11,12,12,13,12,12,12,11,11,12,12,12,12,13,12,12,12,12,15,53,2,2,2,2,2,2,2,55,50,14,15,14,12,13,15,14,12,12,12,13,12,12,12,12,12,13,12,13,12,12,12,13,12,12,12,12,12,12,13,12,12,12,11,11,11,12,12,12,12,13,12,12,12,11,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,5,5,14,12,12,15,14,12,12,15,5,14,12,12,12,15,5,14,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,15,4,4,4,14,12,12,13,13,12,12,12,12,12,12,12,13,12,12,12,15,14,12,12,15,14,12,12,12,12,12,15,54,3,55,14,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,11,11,12,13,12,12,12,12,11,11,11,15,14,12,12,12,12,12,12,13,12,11,11,13,11,11,11,11,11,11,11,12,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,11,11,11,11,11,12,12,12,12,11,11,12,12,12,13,12,11,12,12,12,12,12,12,12,12,12,12,12,15,48,53,2,2,2,2,2,2,2,55,14,12,13,12,12,15,5,14,12,12,13,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,15,14,12,15,14,12,12,12,11,12,12,12,13,12,13,12,12,11,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,5,5,14,12,12,15,14,12,12,15,5,14,15,5,5,14,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,15,4,4,14,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,15,14,15,14,15,14,12,12,12,12,15,212,212,212,50,14,12,12,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,11,12,12,12,13,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,11,11,11,11,11,13,11,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,11,12,12,12,12,12,11,11,11,12,12,11,11,11,12,12,12,13,12,12,12,13,12,12,12,12,12,15,110,53,2,2,2,2,2,2,55,14,13,13,12,12,12,15,14,12,12,13,12,13,12,12,12,12,12,12,12,13,12,13,12,15,5,5,14,15,14,13,12,12,11,11,11,12,12,13,12,12,11,11,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,15,5,14,12,15,14,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,15,4,4,14,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,14,12,12,15,14,12,12,15,54,3,3,3,3,55,14,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,11,12,12,12,12,13,12,12,12,12,15,5,14,12,12,12,12,12,12,11,11,11,11,11,11,11,11,11,11,11,12,13,12,13,13,13,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,11,11,11,11,11,11,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,15,53,2,2,2,2,2,3,13,11,12,13,13,12,12,15,14,12,12,13,12,13,12,12,13,12,12,13,12,12,12,13,15,5,5,5,14,12,12,13,13,12,12,11,12,13,13,12,12,11,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,15,5,4,14,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,14,12,12,15,14,12,12,12,15,212,13,212,13,96,212,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,11,11,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,13,11,13,12,11,11,11,11,11,11,12,11,11,13,13,13,12,13,13,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,13,12,13,12,12,12,12,11,11,11,11,11,12,12,12,12,12,13,12,13,12,12,12,12,13,12,13,12,12,15,110,53,3,2,2,2,55,5,14,12,12,13,12,12,15,14,13,12,12,12,13,13,12,13,13,12,12,12,12,12,13,15,5,5,14,12,12,12,12,13,12,11,12,13,13,13,12,11,12,12,13,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,15,5,5,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,15,14,12,12,15,14,15,14,15,14,12,12,12,15,99,104,13,96,13,212,96,14,15,14,13,12,12,13,12,12,12,12,12,12,12,12,12,11,12,12,12,12,12,12,12,12,12,12,15,14,15,14,12,12,12,13,11,11,12,13,12,11,11,11,11,11,12,12,11,11,11,12,12,12,13,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,12,12,11,11,11,11,12,12,13,12,13,12,12,12,13,12,13,12,13,12,13,13,12,12,15,53,3,2,2,3,108,14,12,13,12,12,15,14,12,12,13,12,12,12,12,12,12,13,12,12,12,12,13,12,12,15,14,12,12,12,12,13,12,12,13,13,13,13,12,11,11,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,15,5,14,12,12,12,12,15,5,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,15,14,15,14,12,12,15,14,12,12,12,12,15,212,102,100,212,99,104,212,5,14,13,12,12,12,12,13,12,12,12,12,12,12,12,12,11,12,12,12,12,12,12,12,13,12,12,12,12,15,14,12,12,13,11,11,12,12,12,13,11,11,11,11,11,12,13,13,13,11,11,11,12,13,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,11,11,11,12,12,12,12,12,12,13,12,13,12,15,14,12,12,13,12,12,15,111,2,2,2,2,3,55,14,12,13,15,14,12,12,13,12,12,12,12,12,12,12,13,12,12,12,13,12,12,13,13,12,12,13,12,12,12,13,13,13,13,13,11,11,11,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,15,5,14,12,12,12,12,12,15,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,14,12,12,12,12,12,12,12,12,15,99,101,212,212,3,212,212,96,14,12,12,13,12,12,12,13,12,12,12,12,12,12,12,11,11,11,11,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,11,13,12,12,12,12,11,11,11,11,12,13,12,12,13,12,12,12,12,13,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,11,11,12,12,12,13,12,13,12,12,12,15,50,50,14,12,12,13,13,13,15,53,2,2,2,2,3,109,14,12,15,14,12,13,12,12,12,12,13,13,12,13,12,12,12,12,12,13,13,12,12,13,13,12,13,13,12,12,12,13,12,12,11,12,13,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,15,14,12,12,15,5,5,14,12,12,12,12,15,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,12,12,12,12,12,12,12,12,15,212,13,102,104,212,102,104,212,14,12,12,15,14,12,12,12,13,12,12,12,12,12,12,11,12,12,11,11,11,12,12,12,12,12,12,12,15,5,14,12,12,12,11,12,12,12,12,12,11,12,12,12,13,12,12,12,12,13,12,13,13,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,11,11,11,12,13,12,13,12,12,15,108,54,2,2,55,108,108,13,13,11,13,15,53,2,2,2,2,55,14,15,14,13,12,12,13,12,12,13,12,12,13,12,12,12,15,14,11,13,11,11,11,12,12,12,12,12,13,13,12,12,13,12,11,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,5,14,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,15,14,12,12,15,5,14,12,12,12,12,15,5,5,5,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,11,12,15,14,12,12,12,15,99,105,100,212,98,104,212,98,2,100,14,12,12,15,14,12,12,12,13,12,12,12,12,12,11,12,12,12,12,11,11,11,12,12,12,13,12,15,5,5,14,12,12,12,12,12,12,12,11,11,11,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,11,11,11,12,13,12,15,50,54,2,2,2,2,2,2,2,108,13,15,99,97,97,3,2,2,2,3,55,5,14,12,12,13,12,13,13,12,12,12,12,13,12,15,54,55,14,12,12,12,11,11,11,12,12,12,12,12,12,11,11,13,11,11,12,12,13,13,13,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,5,14,13,13,15,5,5,5,14,12,12,15,5,14,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,15,5,14,12,15,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,11,15,14,12,12,15,14,15,212,13,212,104,13,212,104,13,212,212,14,12,12,12,15,14,12,12,12,13,12,12,12,12,11,12,12,12,12,12,12,11,11,12,12,12,12,12,15,5,14,12,12,12,12,13,12,12,11,13,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,11,11,11,11,15,49,3,2,101,110,98,2,2,2,2,2,2,55,212,13,15,48,53,2,2,2,52,14,12,12,13,12,12,12,12,13,12,12,12,12,15,54,2,52,5,5,14,13,12,12,11,11,11,12,12,12,12,11,13,12,12,11,12,12,11,11,11,11,13,12,12,12,12,12,12,13,12,12,12,12,12,12,15,5,14,12,12,12,13,15,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,15,14,12,12,12,15,5,5,14,12,12,15,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,14,12,12,12,12,15,99,104,5,102,104,12,102,105,100,102,2,100,14,12,15,14,12,12,12,13,12,12,12,12,12,11,12,12,12,12,12,12,12,11,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,11,11,11,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,11,11,15,5,54,2,2,109,18,111,2,2,2,2,2,2,2,101,14,13,15,49,2,2,2,109,14,12,13,12,12,13,12,12,12,13,12,12,15,111,2,2,109,14,12,12,13,12,12,12,12,11,11,11,11,11,11,13,12,12,11,12,12,11,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,14,13,13,13,12,12,13,15,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,12,15,14,12,12,12,15,5,14,12,12,12,12,15,14,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,14,12,12,12,15,96,212,212,96,212,5,212,13,212,96,212,212,14,15,14,12,12,12,12,12,13,13,12,12,12,11,12,12,12,12,12,12,12,11,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,11,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,11,15,53,2,2,100,108,99,2,2,2,2,2,2,52,14,13,12,15,111,2,2,2,55,14,13,12,13,15,14,12,13,12,12,13,12,15,54,2,2,51,14,12,12,13,13,12,12,12,12,12,12,11,12,12,12,13,12,11,11,11,11,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,14,13,12,12,12,12,13,12,13,15,14,12,13,15,5,5,5,5,14,12,15,14,12,12,15,14,12,12,12,15,5,14,12,12,12,15,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,14,15,14,12,12,15,212,98,104,212,96,99,104,99,104,212,98,2,100,14,11,11,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,11,11,13,12,12,12,12,15,5,14,12,12,12,12,12,12,12,13,12,11,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,15,53,2,2,2,2,2,2,52,48,110,48,14,12,12,13,15,49,2,2,2,3,51,14,12,15,14,12,13,12,12,13,12,15,111,2,2,2,109,5,14,12,12,13,12,13,12,12,13,12,11,12,12,12,13,12,11,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,14,13,12,12,13,13,13,12,13,12,13,12,13,12,13,15,5,5,5,5,5,14,12,12,12,15,14,12,12,15,5,14,12,12,12,15,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,14,12,12,15,14,12,15,102,100,212,98,104,212,212,212,102,2,100,212,96,14,12,11,11,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,11,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,11,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,53,2,2,2,2,52,14,13,12,15,14,12,13,12,12,15,53,2,2,2,55,14,15,14,12,12,13,12,13,12,12,15,54,2,2,52,5,14,12,12,12,13,13,12,12,12,12,12,11,11,11,13,12,12,11,12,13,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,14,13,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,15,5,5,5,14,12,12,15,14,12,12,12,12,15,5,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,14,12,12,15,14,15,212,212,102,100,212,98,104,96,212,96,212,96,212,14,12,12,11,11,11,12,12,12,12,12,12,12,13,13,12,12,12,12,11,12,12,12,12,13,12,12,15,5,14,12,12,12,12,12,12,12,12,11,11,11,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,5,14,15,53,2,52,48,14,12,12,13,15,14,12,12,13,12,15,49,2,2,2,3,55,14,12,12,13,12,13,12,12,15,111,3,2,2,51,14,12,12,13,12,12,13,12,12,13,12,13,12,12,13,13,12,11,11,12,12,13,12,13,12,13,12,12,12,12,12,12,12,13,12,12,12,12,15,14,12,13,12,12,13,13,13,12,13,12,12,12,12,13,12,13,12,15,5,5,14,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,14,15,14,12,12,15,99,104,96,212,212,96,5,212,212,96,212,96,212,96,14,12,12,12,12,11,11,11,11,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,13,12,12,12,12,12,12,11,11,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,13,13,12,12,15,14,12,15,110,14,12,15,14,12,12,13,15,14,13,12,15,5,111,2,2,2,2,3,109,14,12,12,12,13,12,12,15,54,3,2,2,51,14,12,12,12,12,13,12,13,12,12,12,12,12,13,13,11,11,11,11,11,12,12,12,12,13,12,13,12,12,12,12,12,12,13,12,12,12,15,5,14,12,13,12,13,12,11,13,13,12,13,13,13,12,12,13,12,13,12,15,5,5,14,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,13,12,12,15,14,12,12,12,12,12,15,96,212,212,102,101,212,99,3,104,212,98,104,102,104,14,12,12,12,12,12,12,12,11,11,11,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,13,12,12,12,11,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,13,12,12,15,14,12,13,12,15,14,12,13,15,14,12,12,13,13,12,15,14,15,49,2,2,2,2,3,55,14,12,12,13,12,13,15,49,3,2,2,2,55,5,14,12,12,13,12,12,12,13,13,12,13,13,12,12,12,12,11,12,11,11,11,12,12,11,11,11,13,12,12,12,12,13,12,12,12,12,15,14,12,12,13,13,12,11,11,14,11,11,11,12,13,12,12,12,12,12,13,12,15,5,14,12,12,12,12,12,15,5,5,5,4,14,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,11,12,12,12,12,12,15,212,102,104,212,99,104,212,212,212,102,100,212,96,212,4,14,12,12,12,12,12,12,12,12,12,11,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,11,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,13,12,12,12,15,14,12,12,15,14,12,12,13,15,14,13,12,12,15,14,12,12,15,53,2,2,2,2,3,55,14,13,12,12,12,15,111,3,2,2,2,52,14,12,12,13,12,13,12,12,12,12,12,12,12,13,12,12,11,11,12,12,12,11,11,11,11,12,13,12,12,12,12,13,12,12,12,12,12,15,14,12,13,12,12,13,11,11,11,15,11,11,14,11,13,13,12,12,13,12,12,15,5,14,12,12,12,12,15,14,13,15,5,5,4,4,14,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,11,12,15,14,12,12,15,98,104,212,96,212,212,3,3,3,212,212,96,212,96,4,4,14,12,12,12,12,12,12,12,12,11,11,12,13,12,12,12,12,12,13,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,11,11,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,13,12,15,14,15,14,13,12,13,12,15,14,12,12,15,14,12,12,12,12,15,53,53,2,2,2,3,55,14,12,13,11,15,54,3,2,2,2,51,14,12,12,12,13,12,12,13,12,12,13,12,12,12,12,12,11,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,15,5,14,12,12,13,12,12,12,15,11,11,11,11,11,14,12,12,13,12,12,13,15,5,5,14,12,12,12,12,12,12,12,12,15,5,4,4,4,4,14,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,11,15,14,15,14,15,14,15,212,96,212,3,3,2,2,2,3,3,212,96,212,4,14,12,12,12,12,12,12,12,12,12,12,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,13,12,12,12,11,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,15,14,15,14,12,12,12,12,12,12,15,49,2,2,2,2,3,55,14,12,15,49,3,2,2,2,52,14,12,12,13,13,12,13,12,12,22,12,12,12,13,12,12,13,11,12,12,12,13,12,12,12,13,13,12,12,12,12,12,13,12,12,12,15,5,14,12,12,13,12,12,13,12,13,13,11,11,11,11,11,13,12,12,13,12,13,12,15,5,5,14,12,12,12,12,12,12,12,12,15,5,4,4,4,4,14,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,15,14,12,12,15,14,12,15,96,212,3,2,2,2,2,2,2,2,3,212,96,14,12,12,12,12,12,12,12,12,12,12,12,11,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,11,11,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,13,12,12,15,14,12,12,12,12,12,12,12,12,15,53,2,2,2,2,3,55,108,50,54,3,2,2,2,108,14,12,12,13,12,15,14,13,15,5,14,12,11,11,11,12,12,11,12,12,13,12,13,12,13,12,12,12,12,12,12,13,12,12,12,15,5,14,12,12,13,12,12,13,12,13,15,14,13,11,14,11,12,13,12,12,13,12,12,13,12,15,5,14,12,12,12,12,12,12,12,12,12,15,5,4,4,4,4,4,14,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,15,14,12,12,15,212,3,2,2,2,2,2,2,2,2,2,3,212,14,12,12,12,12,12,12,12,12,12,12,12,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,11,12,12,12,12,12,12,12,13,12,13,12,13,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,13,12,13,13,13,12,13,12,12,12,12,12,13,12,12,15,111,2,2,2,2,2,3,3,3,3,2,2,2,2,2,55,14,12,12,13,11,12,12,13,15,5,14,11,12,11,11,11,11,12,13,12,12,12,13,12,12,12,12,12,12,12,13,12,12,15,5,14,12,12,12,12,13,13,12,12,12,15,12,13,12,12,12,13,12,12,13,12,12,12,12,13,15,5,5,14,12,12,12,12,12,12,12,12,12,12,15,4,4,4,4,14,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,14,11,12,15,49,3,2,2,2,2,2,2,2,2,2,2,2,3,51,14,12,12,12,12,12,12,12,12,12,11,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,11,11,11,11,11,11,12,12,12,12,13,12,12,13,12,13,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,13,12,13,12,13,12,12,12,13,12,12,15,53,2,2,2,2,2,2,2,2,2,2,2,2,2,2,55,50,14,12,13,12,15,108,108,14,12,12,12,12,12,13,12,13,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,15,5,14,12,12,12,12,12,13,12,15,14,12,12,13,12,13,12,12,13,12,12,12,13,12,12,13,15,5,14,12,12,12,12,12,12,12,12,12,12,12,15,4,4,4,4,14,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,11,11,15,49,3,2,2,2,2,2,2,2,2,2,2,2,3,51,4,14,13,12,12,12,12,12,12,11,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,11,11,11,11,12,12,13,13,11,13,12,12,12,13,12,15,14,12,12,13,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,13,12,13,12,12,13,12,12,12,15,48,53,2,2,2,2,2,2,2,2,2,2,2,2,2,2,55,50,108,50,54,2,2,109,14,12,12,12,13,12,13,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,15,5,5,14,15,14,12,12,12,15,14,12,13,13,12,13,12,13,12,12,12,12,13,12,12,13,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,15,4,4,14,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,15,54,3,2,2,2,2,2,2,2,2,2,2,2,3,51,14,12,13,12,12,12,12,12,12,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,11,11,12,12,12,12,13,12,12,13,12,13,12,13,12,12,15,5,14,12,12,13,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,13,12,12,12,15,53,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,109,14,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,15,14,15,5,5,5,14,12,15,14,12,13,12,12,15,14,13,12,13,12,13,13,12,13,13,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,4,4,14,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,49,3,2,2,2,2,2,2,2,2,2,2,2,2,3,55,14,13,12,13,12,12,12,12,12,11,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,11,12,12,12,13,13,12,12,12,12,12,12,13,12,12,12,15,5,5,14,12,12,13,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,11,11,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,13,12,15,5,53,2,2,2,2,2,52,48,110,48,53,2,2,2,2,2,2,2,2,2,52,14,13,12,13,13,12,12,12,12,12,12,12,12,13,12,12,13,12,13,12,12,12,12,12,15,5,14,12,12,15,5,5,14,12,15,14,12,15,14,12,15,5,5,14,13,15,5,14,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,4,4,4,14,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,15,54,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,51,14,12,13,13,12,12,12,12,11,11,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,13,12,12,12,12,24,12,12,12,13,12,12,12,12,15,5,5,14,13,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,11,11,11,11,11,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,15,5,48,110,48,48,110,14,12,12,12,15,48,110,53,2,2,2,52,48,48,14,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,13,12,13,12,12,12,12,12,15,5,14,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,5,14,15,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,4,4,14,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,15,54,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,55,54,55,14,12,13,13,12,12,11,11,11,12,12,13,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,5,5,14,12,12,12,13,12,12,12,15,5,14,12,12,12,13,12,12,12,12,15,5,14,12,13,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,11,11,11,11,11,11,11,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,14,12,15,14,12,12,12,12,12,12,12,12,15,48,48,110,14,12,15,14,12,12,13,12,12,12,12,13,12,12,12,13,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,5,5,5,5,5,5,5,14,12,12,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,4,4,14,12,13,12,12,12,12,12,12,13,12,12,12,12,15,54,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,51,14,12,13,13,12,11,11,11,12,13,12,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,15,5,14,12,12,12,12,13,12,15,5,5,5,14,12,12,13,12,12,12,12,15,5,14,12,13,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,11,11,11,11,11,12,12,12,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,15,14,15,14,12,12,12,12,13,12,12,12,12,13,12,13,12,13,13,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,15,14,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,15,4,4,14,12,13,12,12,12,12,12,12,13,12,12,15,49,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,55,14,12,12,13,12,12,11,11,13,12,12,12,15,5,5,5,5,5,5,14,12,12,12,12,12,12,15,5,14,12,12,12,12,13,12,13,15,5,14,12,12,13,12,12,12,12,15,5,5,14,13,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,11,11,11,12,12,12,12,12,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,15,14,12,12,12,12,12,12,12,12,12,12,13,13,12,13,12,12,15,14,12,12,12,12,13,12,12,12,12,12,13,12,12,13,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,15,4,4,14,13,12,12,12,12,12,12,13,12,12,15,54,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,51,14,12,13,12,12,11,13,12,12,12,15,5,5,5,5,5,5,5,14,12,12,12,12,12,12,15,5,5,14,12,12,12,12,13,12,12,12,12,13,13,12,12,12,12,12,15,5,5,14,12,13,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,11,12,12,12,12,12,12,12,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,15,14,12,12,12,12,12,13,12,12,12,13,12,12,13,12,13,12,12,12,12,13,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,15,4,14,13,12,12,12,12,12,13,12,12,15,49,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,2,3,51,14,12,13,12,12,11,12,12,12,12,15,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,15,5,14,12,12,12,12,13,12,12,13,13,12,12,12,12,12,12,12,15,5,14,12,12,13,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,11,12,12,12,12,12,12,15,14,12,12,13,13,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,15,14,12,12,12,13,12,13,12,13,12,12,12,12,12,12,13,13,12,13,12,13,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,13,12,13,12,13,12,12,12,12,12,13,12,13,12,12,12,13,13,12,12,12,12,15,5,14,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,15,4,4,14,13,12,12,12,12,12,12,13,12,15,49,3,2,2,2,2,2,2,2,2,3,52,48,53,3,2,2,2,2,2,2,2,3,51,14,12,13,12,11,11,12,12,13,12,15,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,15,5,14,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,15,5,5,14,12,13,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,12,12,12,12,12,15,5,5,5,5,14,12,12,13,12,13,12,13,12,12,12,13,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,13,12,13,12,12,12,13,12,12,12,13,12,13,12,12,13,12,12,12,15,5,5,14,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,15,4,4,4,4,14,13,12,12,12,12,12,12,12,13,12,15,53,3,2,2,2,2,2,2,2,3,51,5,49,3,2,2,2,2,2,2,2,3,51,14,11,11,11,11,11,11,12,12,13,15,5,5,5,5,5,5,5,5,5,14,12,12,12,12,12,15,5,14,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,15,5,5,14,12,13,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,11,12,12,12,12,15,5,5,5,5,5,5,14,12,12,13,12,13,12,13,13,13,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,13,13,12,12,13,12,12,12,12,12,15,5,14,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,15,4,4,4,4,14,13,12,12,12,12,12,12,12,12,12,13,12,15,53,3,2,2,2,2,2,2,3,55,50,54,3,2,2,2,2,2,2,3,52,14,12,12,13,11,11,11,11,12,13,12,12,15,5,5,5,5,5,14,12,15,5,5,14,12,12,15,5,5,14,12,12,13,11,11,13,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,13,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,11,12,12,15,5,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,13,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,15,5,5,14,12,12,15,14,12,12,12,12,12,12,12,12,12,15,4,4,4,4,14,12,12,13,12,12,12,12,12,12,12,13,12,12,15,49,3,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,51,14,12,13,12,11,11,11,11,13,12,12,12,12,15,5,5,5,14,12,12,12,15,5,5,14,12,15,5,14,12,12,12,11,11,11,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,13,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,11,12,15,5,5,5,4,4,5,5,5,5,14,12,12,12,12,11,11,11,11,12,12,12,13,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,13,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,13,13,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,15,5,14,12,15,14,12,12,12,12,12,12,12,12,12,12,15,4,4,4,4,14,12,13,12,12,12,12,12,12,12,13,12,12,12,12,15,53,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,52,14,12,13,12,12,12,11,11,11,12,13,12,12,11,11,12,12,12,12,12,12,12,12,15,5,5,14,15,5,14,12,12,12,11,11,11,11,12,12,12,12,12,12,12,12,15,5,5,14,12,12,13,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,11,15,5,5,5,4,4,4,5,5,5,5,14,12,11,11,11,11,12,12,11,11,11,12,12,12,12,12,12,12,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,13,13,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,15,4,4,4,4,14,12,13,12,12,12,12,12,12,13,13,12,12,12,12,12,12,15,53,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,51,14,12,13,12,12,12,11,11,12,13,12,11,11,11,12,12,12,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,11,11,11,12,12,12,12,12,12,12,15,5,5,5,14,12,12,13,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,5,5,4,4,4,4,5,5,5,5,14,11,12,12,12,12,13,12,12,11,11,11,11,11,11,12,12,12,12,13,13,12,12,13,12,12,12,12,12,13,12,13,12,12,11,11,11,11,11,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,13,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,15,4,4,4,4,14,12,12,12,13,12,12,12,12,13,12,12,13,12,12,12,12,12,15,111,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,52,14,12,12,13,12,12,12,11,12,13,12,12,11,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,15,5,5,5,14,12,12,13,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,15,5,5,5,5,4,4,4,4,5,5,5,5,14,12,12,12,12,13,12,12,13,12,12,12,12,12,11,11,11,12,12,12,12,13,13,12,13,12,12,12,13,12,13,12,12,11,11,12,12,12,11,11,11,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,15,4,4,4,14,12,15,14,12,13,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,15,53,3,3,2,2,2,2,2,2,2,2,2,2,2,3,51,14,12,12,12,12,12,11,11,12,12,12,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,15,14,12,12,12,12,15,5,5,5,5,14,12,12,12,13,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,15,5,5,5,5,5,5,4,4,4,4,4,5,5,5,5,14,12,12,13,12,12,12,12,12,12,13,12,12,12,13,11,11,11,12,12,12,12,12,12,13,13,13,12,12,12,12,11,11,12,12,12,12,12,12,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,15,5,5,5,14,12,12,15,4,4,4,4,14,12,12,12,15,14,12,13,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,15,48,53,3,3,3,3,3,3,3,3,3,3,3,52,14,13,12,13,12,12,12,11,12,12,13,12,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,15,14,12,15,5,5,5,5,5,14,12,12,12,13,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,5,5,5,5,4,4,4,4,4,4,5,5,5,5,5,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,12,12,12,12,12,12,12,12,12,12,12,15,14,15,4,14,13,13,12,11,12,12,12,13,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,13,12,12,12,12,13,12,13,12,12,12,12,12,12,12,15,5,4,4,4,4,4,4,4,14,12,12,12,12,12,12,15,14,12,13,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,15,48,110,48,48,53,52,110,48,48,48,110,14,11,12,12,12,12,12,12,11,12,13,12,12,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,15,5,5,5,5,5,5,5,14,12,12,12,12,12,13,12,12,],
[12,12,12,12,12,12,12,12,12,12,13,12,13,12,15,5,5,5,5,5,5,4,4,4,4,4,4,4,4,5,5,5,5,14,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,15,4,4,4,4,14,12,12,12,12,12,12,15,4,4,4,4,14,12,11,11,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,13,12,12,12,12,13,12,13,12,13,12,12,12,12,12,15,5,4,4,4,4,4,14,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,14,12,15,14,12,12,12,15,14,13,11,11,12,12,12,12,11,11,11,12,13,12,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,15,5,5,5,5,5,5,14,12,12,12,12,12,12,13,12,12,12,],
[12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,5,5,5,5,5,4,4,4,4,4,4,4,4,4,5,5,5,5,14,12,13,12,12,12,12,13,12,12,12,12,12,12,12,13,15,5,5,5,5,4,4,4,4,4,14,12,15,4,4,4,4,4,4,4,14,11,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,13,13,12,13,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,13,12,13,12,12,12,12,12,15,4,4,4,4,14,12,12,12,12,13,12,12,12,13,13,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,13,12,11,12,12,12,12,12,11,11,12,12,13,12,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,15,5,5,5,14,12,15,14,12,12,12,12,12,12,12,13,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,13,12,12,15,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,14,12,15,14,12,12,12,12,15,14,12,12,12,12,12,15,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,13,13,12,12,12,12,13,12,13,12,12,12,12,13,12,12,12,12,13,13,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,13,12,12,13,13,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,15,14,12,12,12,12,13,12,13,12,13,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,13,12,11,11,12,12,12,12,12,11,11,12,13,12,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,15,14,15,5,5,14,12,12,15,5,5,5,14,12,12,12,15,14,12,12,12,12,12,12,13,12,12,12,],
[12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,5,5,5,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,14,12,12,15,14,12,12,13,12,12,15,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,14,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,13,12,12,12,12,13,13,12,13,13,13,12,11,11,11,12,12,12,12,12,12,11,12,12,13,12,11,11,15,5,14,12,12,12,12,12,12,12,12,12,12,12,15,5,5,5,14,15,5,5,5,14,12,12,12,12,12,15,14,12,12,12,12,13,12,12,12,12,],
[12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,5,5,5,5,5,4,4,4,4,4,4,5,5,5,5,5,5,5,4,4,4,4,4,5,5,5,14,12,12,12,12,13,12,15,5,5,4,4,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,14,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,13,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,15,14,15,14,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,13,12,12,12,12,13,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,13,13,12,13,12,12,13,12,13,12,12,11,11,11,11,12,12,12,12,12,11,12,12,12,13,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,15,5,5,5,5,5,5,14,12,12,12,13,12,15,14,12,12,12,12,13,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,13,12,13,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,5,5,5,5,14,12,12,15,5,5,4,4,4,4,4,5,5,5,5,5,5,5,5,4,4,4,4,4,4,14,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,12,12,15,14,12,12,15,14,12,12,15,14,12,12,15,14,12,12,15,14,12,13,12,13,12,13,12,13,12,12,12,12,12,12,12,13,12,13,12,12,13,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,13,12,12,12,12,12,13,12,11,11,11,11,11,11,12,12,12,12,11,12,12,12,13,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,13,12,12,12,12,12,13,13,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,13,12,15,14,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,5,5,5,5,5,5,5,5,5,4,4,4,4,4,14,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,15,14,12,12,15,14,12,12,15,14,12,12,15,14,12,12,15,14,12,13,12,12,12,13,12,13,12,13,12,13,12,12,12,13,12,13,12,12,12,12,13,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,13,12,11,11,11,12,11,11,11,11,11,11,11,12,12,12,13,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,12,13,12,12,13,13,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,13,12,13,15,5,5,5,5,5,5,5,4,4,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,14,13,12,13,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,15,14,15,14,12,12,15,14,12,12,12,12,15,14,12,15,14,12,12,13,12,15,14,12,12,12,12,13,12,13,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,11,11,11,11,11,12,12,12,12,13,12,15,5,5,5,14,12,12,12,12,12,12,12,12,15,5,5,5,5,14,15,14,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,13,12,12,15,5,5,5,5,5,5,4,4,4,4,4,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,14,12,12,12,13,12,12,12,13,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,13,12,12,12,13,12,12,12,12,15,50,50,50,50,50,54,55,50,50,50,50,54,55,50,50,50,14,12,12,15,14,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,13,12,12,12,13,12,13,12,13,12,13,12,13,13,13,12,12,12,12,12,12,12,11,11,12,12,12,12,13,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,15,5,5,5,14,12,12,15,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,13,12,13,12,12,12,12,15,5,5,5,4,4,4,4,4,4,4,4,4,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,14,12,12,12,12,12,12,12,12,13,13,13,13,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,13,12,13,12,12,15,54,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,3,55,50,50,50,5,14,12,12,12,12,12,15,14,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,13,12,13,12,13,12,12,12,13,12,13,12,12,12,13,13,13,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,5,5,14,12,12,12,11,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,13,12,13,12,12,12,13,15,5,5,5,4,4,4,4,4,4,4,4,4,4,4,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,14,12,13,15,4,14,12,12,12,12,13,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,15,14,12,12,12,13,12,15,54,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,55,50,54,55,14,12,15,14,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,13,12,12,12,12,5,5,14,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,11,11,11,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,13,12,12,12,12,12,12,12,13,15,5,5,4,4,4,4,4,4,4,4,4,4,4,4,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,15,14,12,12,12,15,49,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,55,54,55,50,14,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,5,14,12,12,12,12,12,12,15,5,5,5,5,14,12,12,15,14,12,12,12,13,12,13,12,12,13,13,12,12,12,12,12,12,12,11,11,11,11,12,12,12,12,12,15,5,5,5,5,14,12,12,12,11,11,11,11,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,13,12,12,11,11,12,12,12,12,15,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,4,4,4,4,5,14,12,15,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,14,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,14,12,12,12,15,5,14,15,5,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,51,14,12,15,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,15,5,5,5,5,5,14,12,15,14,12,12,15,5,5,5,5,5,5,14,12,12,12,13,13,12,12,13,13,12,12,13,12,12,12,11,11,11,11,12,12,11,15,14,12,12,12,15,5,5,5,14,12,12,12,12,11,11,11,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,13,12,12,11,11,11,11,13,12,12,15,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,4,4,4,4,5,14,12,23,12,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,14,15,14,12,15,14,13,12,12,12,12,13,12,13,12,12,15,14,12,12,15,15,14,12,12,12,15,50,50,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,55,14,15,14,12,15,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,15,5,5,5,14,12,15,5,5,5,5,14,15,5,5,5,14,15,5,5,5,5,5,14,12,13,12,12,11,12,12,12,13,12,11,11,11,11,12,12,12,12,12,12,12,15,14,12,15,5,5,5,14,12,12,12,12,12,12,11,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,13,13,12,11,11,11,11,12,12,13,12,15,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,4,4,4,4,4,5,14,15,14,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,12,12,15,4,4,4,4,4,4,4,4,4,14,11,13,13,13,13,13,12,13,12,15,5,14,12,12,15,14,11,15,14,12,15,54,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,55,14,12,12,12,15,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,5,14,12,12,12,12,12,12,15,5,5,5,5,5,14,12,12,12,15,5,5,5,5,14,13,12,15,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,14,15,5,5,14,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,13,12,11,11,11,11,12,12,12,12,12,15,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,4,4,5,5,5,14,12,12,12,12,12,15,4,4,4,4,4,4,4,4,4,14,15,14,13,12,15,14,12,15,5,5,5,14,15,5,14,12,12,15,50,54,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,51,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,15,14,12,15,5,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,5,5,14,11,11,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,13,12,11,12,12,12,13,12,12,12,12,15,5,5,4,4,4,4,4,4,4,14,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,4,4,4,4,14,12,12,12,12,13,12,12,12,12,15,4,4,4,4,4,4,4,4,4,4,14,13,12,15,5,5,5,5,5,5,5,5,5,14,15,54,3,3,2,2,2,2,2,2,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,51,14,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,5,5,14,12,12,12,12,13,13,13,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,15,5,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,15,14,12,12,12,15,5,5,5,14,12,12,11,11,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,13,12,12,11,11,12,12,12,13,12,13,12,15,5,5,4,4,4,4,4,4,4,4,14,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,4,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,4,4,4,4,14,11,12,12,12,13,12,12,12,12,12,12,15,4,4,4,4,4,4,4,4,14,13,12,12,12,15,5,5,5,5,5,5,5,50,50,54,3,2,2,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,14,12,12,12,15,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,14,12,12,12,12,12,13,13,13,12,12,12,13,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,15,14,12,15,5,5,5,5,5,14,12,12,12,12,12,15,5,5,5,14,15,5,5,5,5,14,12,12,12,12,11,11,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,13,12,12,11,11,12,12,12,13,12,15,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,5,4,4,4,4,4,4,4,5,5,5,5,5,5,4,4,4,14,12,12,11,11,12,12,12,13,12,13,12,12,12,12,12,15,14,12,12,13,15,14,12,13,12,13,12,12,15,5,5,5,5,5,54,3,3,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,51,14,12,15,14,12,13,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,13,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,5,5,5,5,14,12,15,5,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,],
[12,12,13,12,12,12,12,11,11,11,11,11,15,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,14,12,12,12,15,4,4,5,5,5,5,5,4,4,4,4,4,4,5,5,5,5,5,4,4,4,4,14,12,12,12,11,11,12,12,12,13,12,12,12,13,12,12,12,12,12,13,12,12,15,14,12,13,12,13,12,12,15,5,5,5,49,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,14,15,14,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,13,12,12,13,12,12,13,13,12,12,12,12,12,12,12,12,12,13,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,13,12,11,11,11,12,12,12,12,12,15,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,14,12,12,12,13,12,12,15,4,5,5,5,5,5,5,4,4,4,4,5,5,5,5,4,4,4,4,4,14,12,13,12,12,12,11,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,15,5,5,14,12,12,13,12,12,12,15,5,5,54,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,51,14,13,12,12,12,12,15,14,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,5,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,13,12,11,11,12,12,12,12,12,12,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,14,12,12,12,13,12,12,12,12,15,5,5,4,4,5,5,5,5,5,5,5,5,5,4,4,4,4,4,4,14,12,12,12,12,12,11,12,12,12,12,13,12,12,12,13,12,13,12,12,13,13,12,15,14,12,12,13,12,12,12,12,12,15,49,3,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,3,55,50,14,12,12,12,15,14,15,14,12,12,13,12,13,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,15,5,5,14,12,12,13,13,13,13,12,13,12,12,12,12,12,12,12,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,13,12,11,12,12,12,12,12,12,12,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,12,13,12,12,13,12,12,12,12,15,4,4,4,4,5,5,5,5,5,4,4,4,4,4,4,4,14,13,12,13,12,12,12,11,11,12,12,13,12,13,12,13,12,13,12,13,13,12,12,13,12,12,13,13,12,12,12,12,12,12,15,54,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,3,55,14,13,15,14,12,12,15,14,12,12,13,12,13,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,5,14,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,12,12,12,12,12,11,11,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,13,12,12,11,12,12,12,12,12,12,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,12,12,12,12,12,13,12,13,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,12,12,11,12,12,12,11,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,15,54,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,55,50,14,12,12,12,13,12,12,13,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,5,5,14,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,12,12,11,11,11,11,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,],
[13,12,12,12,11,12,12,12,12,12,12,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,14,12,12,12,12,12,13,12,12,12,12,12,11,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,12,11,11,11,13,12,11,11,12,12,12,13,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,15,49,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,52,48,110,48,143,53,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,51,14,12,13,12,12,12,12,13,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,5,14,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,11,11,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,13,12,11,11,12,12,12,12,12,12,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,12,12,12,12,12,13,12,12,13,12,11,12,12,15,4,4,4,4,4,4,4,4,4,4,14,12,13,12,13,11,11,11,11,12,13,12,11,12,12,13,12,12,12,12,13,13,12,12,12,13,12,12,12,12,15,99,97,100,14,15,54,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,3,3,3,52,48,48,110,48,14,12,12,15,143,5,53,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,50,14,12,13,12,12,13,12,15,14,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,5,14,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,13,12,11,12,12,12,12,12,12,12,12,15,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,13,12,13,12,12,12,12,12,12,11,11,12,12,12,15,4,4,4,4,4,4,4,4,14,12,12,12,12,12,12,11,11,11,12,12,13,11,12,12,12,13,12,12,12,13,12,12,12,12,13,12,12,15,111,97,101,5,98,100,49,3,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,3,3,3,52,48,110,14,13,12,15,14,12,13,12,15,143,12,15,110,48,53,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,55,50,14,13,12,12,15,14,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,15,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,13,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,13,11,12,12,12,12,12,12,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,14,12,12,12,12,12,12,12,12,11,11,11,11,12,12,13,12,12,15,4,4,4,4,4,4,14,11,11,11,12,12,12,12,12,12,11,11,13,12,11,12,12,13,12,12,12,12,12,13,12,12,12,12,13,12,12,12,15,14,12,15,98,97,3,2,2,2,1,1,1,1,2,2,2,2,2,2,3,3,52,48,110,14,12,15,14,12,12,15,14,12,12,15,143,143,14,12,12,15,49,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,55,14,12,15,5,14,12,12,12,15,14,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,15,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,13,12,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,13,11,12,12,12,12,12,12,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,12,12,12,12,11,11,11,11,12,12,12,12,12,12,12,13,15,4,4,4,4,4,14,12,12,12,11,11,11,11,12,12,13,12,11,12,11,11,12,13,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,15,53,3,2,2,1,1,1,1,1,2,2,2,2,3,52,48,14,15,14,13,12,12,15,14,12,12,15,143,14,12,143,12,15,14,12,13,15,53,3,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,55,50,50,14,12,12,12,12,12,15,14,15,14,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,13,12,11,11,12,12,12,12,12,12,15,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,14,12,12,12,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,13,15,4,4,4,4,14,12,12,13,12,12,12,11,11,11,12,12,11,11,11,12,12,12,13,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,13,13,13,12,15,49,3,2,2,1,1,1,1,1,2,2,2,3,52,14,12,12,12,12,12,12,15,14,12,13,12,15,143,12,12,143,12,12,12,12,12,12,15,53,52,53,3,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,3,55,50,14,12,12,12,12,15,14,15,14,13,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,14,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,13,12,12,11,12,12,12,12,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,12,12,11,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,14,12,12,12,12,13,12,13,12,12,12,12,11,11,11,11,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,13,12,13,13,12,12,12,15,5,54,3,2,2,1,1,1,1,1,2,2,2,3,109,14,12,13,12,12,12,15,14,12,12,12,12,12,143,143,13,143,12,12,13,12,12,12,15,14,15,54,3,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,3,55,14,12,12,15,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,5,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,13,12,11,12,12,12,12,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,14,12,12,11,11,12,12,12,12,12,13,13,12,12,12,12,12,13,12,12,12,12,11,11,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,13,12,12,12,13,15,49,3,2,2,2,1,1,1,1,2,2,2,3,52,14,12,12,12,12,13,12,13,15,14,12,12,12,13,12,143,143,143,13,12,12,12,12,15,14,12,15,53,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,55,14,15,14,12,12,12,12,13,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,13,12,11,11,12,12,12,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,14,11,11,11,11,12,12,12,12,12,13,12,12,13,12,12,12,12,12,13,12,12,12,12,11,11,12,12,12,12,12,12,13,12,13,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,13,15,5,49,3,2,2,2,1,1,1,1,1,2,2,3,55,14,12,13,12,12,12,12,12,13,15,14,12,13,143,143,143,13,12,12,13,13,12,12,15,14,13,12,15,53,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,51,14,12,12,13,12,12,13,12,13,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,13,13,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,13,12,11,11,12,12,12,15,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,14,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,11,12,13,12,13,12,12,13,12,13,12,12,13,13,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,49,3,2,2,1,1,1,1,1,1,2,2,2,3,55,14,12,15,14,12,12,13,12,12,12,13,12,143,12,12,12,13,13,12,12,13,15,14,12,12,13,12,15,48,110,53,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,14,12,12,12,12,12,12,12,12,13,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,13,13,12,12,12,13,12,12,12,12,15,14,12,12,12,11,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,],
[12,12,12,12,13,12,11,12,12,11,15,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,14,13,12,12,12,12,13,13,12,12,13,13,12,12,12,12,13,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,13,12,13,12,12,15,5,49,3,2,2,1,1,1,1,1,1,2,2,2,3,52,5,14,11,15,14,12,12,13,12,13,12,13,255,255,255,255,255,255,255,12,12,13,13,12,12,12,12,15,14,12,15,53,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,14,12,13,12,15,14,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,14,12,12,11,11,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,],
[12,12,12,13,12,12,11,11,11,11,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,5,14,12,12,12,13,12,13,13,12,12,13,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,13,12,12,12,12,12,12,15,54,3,3,2,2,1,1,1,1,1,2,2,2,3,109,14,12,15,14,15,14,12,12,13,12,12,255,255,255,255,255,255,255,255,255,12,12,12,13,12,12,15,14,12,12,15,111,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,14,12,12,12,13,15,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,12,12,15,14,12,12,12,12,12,12,13,12,12,12,12,12,12,15,14,12,12,11,11,11,11,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,13,12,12,12,11,12,12,12,15,4,4,4,4,4,4,4,4,4,4,4,5,5,14,12,12,15,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,13,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,13,12,12,12,12,15,14,12,15,53,52,54,3,2,1,1,1,1,1,1,2,2,3,51,14,12,12,12,15,14,12,13,13,12,255,255,255,255,255,255,255,255,255,255,255,12,12,12,13,12,12,13,12,12,143,143,53,3,2,2,2,2,2,1,1,1,1,2,1,1,1,1,1,1,1,2,2,3,55,50,14,13,12,12,15,14,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,15,5,5,14,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,11,11,11,11,13,12,12,12,12,12,13,12,13,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,],
[12,12,12,13,12,12,12,12,11,12,12,15,5,4,4,4,4,4,4,4,4,4,4,4,5,14,12,12,12,12,15,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,13,15,14,12,15,14,12,13,12,15,49,3,2,2,1,1,1,1,1,1,2,2,3,109,14,13,12,12,15,14,13,12,143,143,255,255,255,255,255,255,255,255,255,255,255,143,143,12,12,143,143,143,143,143,143,14,15,3,2,2,2,2,2,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,3,3,55,14,12,15,14,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,13,12,13,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,13,13,12,12,11,12,12,15,5,4,4,4,4,4,4,4,4,4,4,4,5,14,12,12,12,12,12,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,13,12,12,15,14,15,108,14,12,13,15,54,3,2,2,1,1,1,1,1,1,2,2,3,55,14,12,12,15,14,13,12,12,143,12,255,255,255,255,255,255,255,255,255,255,255,12,143,143,143,143,12,12,12,13,12,15,111,3,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,2,2,2,2,2,3,55,50,14,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,13,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,13,11,11,12,12,15,5,4,4,4,4,4,4,4,4,4,4,5,14,12,12,12,12,12,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,13,12,12,15,5,96,14,12,15,99,3,2,2,2,2,1,1,1,1,1,2,2,2,3,109,14,12,12,12,12,13,143,143,12,255,255,255,255,30,22,31,255,255,255,255,12,143,12,12,13,12,12,13,12,12,12,15,53,3,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,3,3,55,14,12,15,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,13,12,12,15,14,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,13,12,11,12,12,12,12,15,5,4,4,4,4,4,4,4,4,4,14,12,12,12,12,12,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,15,98,100,5,99,101,53,3,2,2,2,1,1,1,1,1,1,2,2,3,55,14,12,13,12,13,12,143,12,12,255,255,255,255,255,255,255,255,255,255,255,12,143,143,13,12,12,12,12,13,12,12,15,5,53,3,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,55,50,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,13,12,12,15,5,14,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,13,11,12,12,12,12,12,15,4,4,4,4,4,4,4,5,5,14,12,12,12,12,12,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,15,98,97,101,14,15,53,3,2,2,1,1,1,1,1,1,2,2,2,3,55,14,12,12,143,143,143,12,12,255,255,255,255,255,255,255,255,255,255,255,12,12,143,143,143,143,143,12,12,13,12,12,15,111,3,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,2,2,2,2,2,3,3,3,2,3,3,51,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,13,13,12,12,12,15,14,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,13,12,11,11,12,12,12,15,5,4,4,4,4,4,4,4,5,14,12,12,12,12,12,12,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,13,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,5,14,12,15,49,3,2,2,1,1,1,1,1,1,1,1,2,2,3,143,143,143,143,12,12,13,12,255,255,255,255,255,255,255,255,255,255,255,12,12,13,12,12,12,143,143,143,143,143,12,15,49,3,2,2,2,2,1,1,1,1,2,2,2,2,2,2,1,2,2,2,2,3,52,48,53,3,2,3,55,14,12,12,15,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,13,12,12,13,13,12,12,12,13,12,12,12,12,13,12,12,12,12,15,5,14,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,13,12,11,11,12,12,12,15,4,4,4,4,4,4,4,14,12,12,12,12,11,11,11,11,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,13,12,12,12,12,13,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,13,15,14,12,15,49,3,2,2,1,1,1,1,1,1,1,1,2,2,3,51,14,12,15,14,12,13,12,12,255,255,255,255,255,255,255,255,255,12,12,13,12,12,13,12,12,12,13,12,143,143,143,143,3,2,2,2,2,2,1,1,1,1,2,2,2,1,1,1,2,2,2,2,3,51,14,15,53,3,2,3,55,14,15,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,13,13,12,12,12,12,12,12,13,12,12,13,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,13,12,12,11,11,12,11,15,5,4,4,4,4,4,4,14,12,12,12,11,11,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,13,12,12,12,12,13,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,13,12,12,12,12,12,15,5,54,3,2,2,1,1,1,1,1,1,1,2,2,2,3,55,14,12,12,15,14,12,13,12,12,255,255,255,255,255,255,255,12,12,13,12,13,12,12,12,13,12,12,13,12,12,15,49,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,1,2,2,2,2,3,51,14,15,49,3,2,2,3,51,14,12,12,13,12,12,12,12,12,12,12,12,12,13,13,13,13,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,],
[12,12,12,12,12,13,12,12,12,12,11,11,11,12,15,4,4,4,4,4,4,5,14,12,11,11,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,15,53,3,2,2,2,1,1,1,1,1,1,2,2,2,2,3,109,14,12,12,12,12,12,13,13,12,12,12,13,12,12,143,12,12,12,13,12,12,12,12,12,12,12,12,13,12,15,54,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,3,52,14,12,12,15,53,3,3,52,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,13,13,13,12,12,12,11,12,15,4,4,4,4,4,4,5,5,5,14,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,50,50,14,12,12,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,13,12,12,12,15,49,3,2,2,2,1,1,1,1,1,1,2,2,2,2,3,55,5,14,12,13,12,12,15,14,13,13,12,12,143,143,143,143,12,13,12,12,12,13,12,12,12,12,13,12,15,111,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,3,51,14,12,12,12,15,48,48,14,12,12,12,13,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,13,12,11,11,15,4,4,4,4,4,4,4,4,4,4,4,5,5,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,54,3,3,55,14,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,13,15,49,3,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,55,108,50,14,12,15,14,12,12,12,13,143,143,12,13,143,13,12,12,12,12,12,12,13,15,14,12,12,15,49,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,3,52,14,12,12,12,15,14,12,15,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,13,12,12,11,12,12,15,5,4,4,4,4,4,4,4,4,4,4,4,5,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,15,54,3,2,3,3,51,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,15,54,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,3,3,55,108,50,14,12,13,12,12,143,12,13,12,143,143,12,12,13,15,14,12,12,12,15,14,15,5,54,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,3,51,14,15,14,12,12,15,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,13,12,11,12,12,15,5,4,4,4,4,4,4,4,4,4,4,4,5,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,15,49,3,2,2,2,3,55,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,49,3,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,3,3,55,50,108,14,15,143,12,12,12,12,143,14,12,15,14,12,13,12,12,12,15,5,49,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,3,52,14,12,11,15,14,12,12,15,14,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,15,5,14,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,13,12,12,11,12,12,12,15,4,4,4,4,4,4,4,4,4,4,5,14,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,111,3,3,2,3,3,52,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,5,54,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,3,3,3,55,14,12,15,14,15,143,50,50,50,14,12,12,12,13,12,12,15,111,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,3,51,14,12,12,12,15,14,15,11,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,13,12,11,11,12,12,15,5,5,4,4,4,4,4,4,4,4,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,53,3,3,3,3,51,14,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,15,53,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,3,55,108,108,54,3,3,3,3,55,108,50,14,12,15,14,15,54,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,3,51,14,12,12,12,12,15,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,13,12,12,11,11,12,12,11,15,5,5,4,4,4,4,4,5,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,15,48,53,3,52,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,15,49,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,2,2,2,2,3,3,3,55,50,50,108,54,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,5,14,12,12,15,14,12,12,12,13,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,13,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,13,12,12,11,11,11,11,12,12,15,5,5,5,5,5,14,12,13,15,14,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,15,49,3,51,14,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,15,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,55,14,12,15,14,12,12,12,13,12,13,12,13,13,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,13,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,15,5,14,12,13,15,14,15,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,15,164,96,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,15,49,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,55,50,14,12,12,12,13,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,12,13,13,12,12,13,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,13,13,12,13,12,12,11,12,13,12,12,15,14,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,98,100,14,13,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,13,12,13,15,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,2,3,3,55,14,12,12,12,13,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,13,12,13,13,13,12,12,13,15,14,12,12,12,12,13,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,13,12,13,12,11,11,12,13,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,13,96,13,12,15,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,49,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,52,53,3,3,2,3,51,14,12,13,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,13,12,15,5,14,12,12,12,12,13,13,13,13,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,11,11,11,11,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,13,13,15,98,103,97,97,100,14,12,13,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,49,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,52,48,14,15,48,53,3,52,14,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,13,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,96,14,15,98,97,100,14,12,13,12,13,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,11,15,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,3,3,52,48,48,14,12,12,13,12,15,48,14,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,13,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,15,99,101,13,12,12,15,96,14,12,12,12,13,12,13,12,12,12,13,13,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,14,12,12,15,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,3,52,48,48,14,12,13,12,12,12,12,13,12,12,12,12,12,13,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,15,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,96,5,14,13,12,15,98,100,14,13,15,14,13,12,13,12,13,12,12,15,5,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,14,15,54,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,52,48,48,14,12,15,14,12,12,12,12,13,12,12,12,12,12,13,13,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,5,14,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,13,12,12,15,5,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,96,14,12,13,12,12,15,98,100,14,12,13,12,12,13,12,13,12,15,5,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,49,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,52,14,12,15,14,12,12,12,12,12,12,12,12,13,12,13,13,13,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,5,14,12,12,12,12,12,15,14,15,14,15,14,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,15,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,96,14,12,12,13,12,12,15,96,14,12,12,13,12,12,13,12,13,15,14,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,53,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,2,2,2,3,52,48,14,12,12,13,15,14,12,12,12,12,13,12,12,12,13,12,12,12,12,13,12,12,13,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,5,14,12,12,12,15,14,12,12,15,14,15,14,12,12,12,15,14,12,12,12,13,12,12,13,12,12,12,15,5,5,5,5,14,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,99,101,14,12,12,13,12,12,15,96,14,15,14,12,13,12,12,12,15,14,13,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,15,48,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,3,3,3,3,52,48,53,3,3,2,2,2,2,2,3,51,14,12,13,12,12,12,12,12,12,12,13,12,13,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,5,5,14,12,15,14,12,12,12,12,12,12,15,14,12,15,5,5,14,12,12,12,13,13,12,12,12,15,5,5,5,5,5,14,12,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,96,14,15,14,13,12,12,12,15,98,100,14,12,12,12,12,12,12,15,5,5,14,13,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,15,14,12,15,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,52,48,53,3,2,2,2,2,3,52,48,48,48,48,14,12,15,48,53,3,2,2,2,2,3,51,14,12,12,12,13,12,12,13,12,13,12,12,12,13,12,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,13,12,12,12,12,15,5,5,5,5,5,14,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,15,5,96,14,12,12,13,12,12,13,12,15,96,14,12,15,14,12,12,15,5,14,15,5,14,12,12,12,13,12,13,12,13,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,15,49,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,52,48,14,12,15,53,3,2,2,3,52,14,12,15,14,12,12,12,12,15,49,3,2,2,2,3,52,5,5,14,12,12,12,13,13,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,13,13,12,13,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,15,5,5,5,14,12,12,13,12,12,12,12,15,5,5,5,5,5,14,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,96,14,12,12,12,13,12,12,12,15,98,97,97,97,100,14,13,11,11,12,13,15,5,14,12,12,12,13,12,12,12,13,12,13,12,12,12,12,12,12,12,13,13,12,12,12,12,15,53,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,51,14,12,12,15,49,3,2,2,3,51,14,12,12,12,13,12,13,12,15,49,3,2,2,2,3,51,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,13,13,12,12,12,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,13,12,12,12,12,12,15,5,5,5,14,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,98,100,14,15,14,11,13,12,12,12,15,14,12,15,98,100,14,11,12,13,12,12,15,5,14,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,13,12,15,53,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,52,14,12,12,12,12,15,53,3,3,52,14,12,12,12,12,12,13,12,12,15,5,53,3,2,2,3,55,14,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,15,5,14,13,12,13,13,12,12,13,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,13,12,12,12,12,12,15,5,5,14,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,13,12,12,12,13,13,12,12,13,12,12,13,12,12,15,96,14,12,12,11,11,13,13,12,12,12,12,12,15,96,14,15,14,12,13,15,5,14,12,13,12,12,12,13,12,15,14,12,13,12,12,12,12,13,12,12,12,12,12,12,12,15,14,15,53,3,3,2,2,2,2,2,2,2,2,2,3,3,3,52,48,48,14,12,12,13,12,12,12,15,48,48,14,12,12,12,12,12,13,12,12,15,14,11,15,53,3,3,2,3,55,14,12,12,12,13,12,12,12,12,12,13,12,12,13,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,5,5,5,14,12,13,12,12,12,12,12,13,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,5,5,14,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,12,12,13,13,13,12,13,12,13,12,12,13,13,12,12,13,12,12,13,15,96,14,13,13,12,11,11,12,13,13,12,12,12,15,98,97,97,97,100,13,12,15,5,14,12,13,12,12,15,14,12,15,14,12,13,12,12,13,12,12,12,12,12,13,12,15,14,12,12,15,48,53,3,2,2,2,2,2,2,3,3,52,48,48,14,12,12,12,12,13,12,13,12,12,12,15,14,12,12,12,13,13,13,12,13,12,12,12,12,12,15,48,53,3,2,3,51,14,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,5,5,5,14,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,5,5,14,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,13,13,12,13,12,12,15,98,100,14,12,13,12,11,11,11,12,13,12,12,13,15,14,13,15,98,97,97,97,97,97,97,100,13,15,14,12,13,15,14,12,12,13,13,12,12,12,12,12,12,12,12,12,15,14,12,12,15,49,3,2,2,2,2,2,3,52,48,14,12,15,14,12,12,12,13,12,12,12,13,12,12,12,12,12,12,13,12,13,12,12,12,13,12,12,12,12,12,12,15,53,3,52,5,14,12,12,13,12,12,12,12,12,13,12,12,12,12,13,13,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,5,14,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,14,15,5,14,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,212,13,13,12,12,12,12,11,13,12,12,13,12,13,12,12,12,15,14,12,15,5,14,13,98,97,100,13,12,12,12,15,14,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,15,49,3,2,2,2,2,3,52,14,11,12,13,12,15,14,12,12,12,13,12,12,13,12,12,12,13,12,13,12,12,12,12,12,12,13,12,12,13,12,12,12,12,15,48,14,12,12,12,13,12,12,12,12,12,12,12,13,13,13,13,12,13,13,12,12,12,12,12,12,13,12,12,12,15,5,5,14,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,5,5,14,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,99,97,97,100,14,15,14,12,12,12,13,12,13,12,15,14,12,15,99,97,101,14,12,13,12,12,12,11,12,13,13,12,12,13,12,12,12,12,15,14,12,13,12,13,12,15,98,103,97,97,97,97,100,13,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,15,53,3,2,2,2,3,51,14,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,13,12,13,12,12,12,12,12,12,12,12,13,13,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,15,5,14,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,13,12,12,12,12,12,12,13,13,12,12,12,12,12,15,5,14,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,99,101,14,15,98,100,5,5,14,12,13,12,12,15,99,97,97,103,97,101,14,12,12,12,12,13,13,12,11,11,11,12,12,13,12,12,13,12,12,12,12,13,12,13,12,12,12,15,98,100,13,12,15,98,100,13,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,15,49,3,2,2,2,3,51,14,12,12,13,12,13,12,13,13,12,12,12,12,13,13,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,13,12,13,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,15,5,5,5,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,13,13,12,12,12,12,13,12,12,12,12,12,15,5,5,14,12,12,12,13,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,15,96,14,12,12,15,98,55,14,12,12,13,15,99,97,101,14,15,96,13,15,5,14,13,13,12,13,12,13,12,12,11,11,11,12,13,13,12,13,12,12,13,12,11,12,13,12,13,12,15,98,100,13,12,13,96,13,12,13,12,13,13,12,12,12,13,12,12,12,13,12,12,15,49,3,2,2,3,52,14,12,12,13,12,13,12,13,12,12,13,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,13,12,12,15,5,5,5,5,5,14,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,13,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,13,13,12,12,12,12,12,15,5,5,5,14,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,12,12,12,12,12,12,15,96,14,12,12,13,15,98,100,14,13,15,5,96,13,12,13,12,98,100,14,12,13,12,12,13,12,12,12,13,12,12,12,11,11,11,11,11,12,13,13,12,11,11,11,12,13,12,13,13,15,98,103,97,97,101,13,12,13,12,12,12,13,13,12,12,12,12,12,13,12,12,12,15,53,3,2,3,51,14,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,13,12,12,12,12,12,13,12,12,15,5,5,5,5,5,5,5,14,12,13,12,12,12,12,12,12,12,12,12,12,13,13,13,12,13,13,12,12,13,12,12,12,13,13,12,12,13,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,15,99,101,14,12,13,12,13,13,96,13,12,13,15,98,100,5,14,13,15,98,100,13,12,12,12,12,12,15,14,13,12,13,13,12,12,13,13,11,11,11,11,11,11,12,11,11,12,12,12,12,13,15,96,13,15,14,13,13,12,12,12,12,12,12,13,13,13,13,12,12,13,12,12,15,49,3,2,3,51,14,12,12,12,12,15,50,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,13,12,12,15,5,5,5,5,5,14,12,13,12,12,12,12,12,12,12,12,12,12,13,12,13,13,13,13,13,12,13,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,13,12,12,15,99,101,14,12,12,13,12,12,15,98,97,100,12,13,15,96,14,13,12,12,15,98,97,100,14,12,12,15,14,12,12,13,12,12,13,13,12,12,13,13,13,13,12,12,13,12,11,11,11,12,13,12,15,96,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,15,14,15,53,3,3,55,50,14,12,13,15,54,3,55,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,15,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,13,12,13,13,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,5,5,14,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,15,14,15,14,12,12,12,13,15,99,101,14,12,12,13,12,12,15,14,12,13,96,14,12,15,96,14,13,12,13,12,12,15,98,97,97,100,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,13,12,13,12,12,11,11,12,13,15,96,14,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,49,3,2,3,3,55,50,50,54,3,2,3,51,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,13,13,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,13,13,12,13,12,12,12,13,13,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,15,5,5,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,13,12,12,15,14,12,12,15,5,14,12,12,13,212,13,11,13,13,12,12,15,14,12,12,15,102,97,97,97,101,14,12,13,12,13,12,13,13,12,15,98,100,14,12,13,12,12,12,12,12,13,12,22,12,12,13,12,12,12,12,13,12,12,11,12,13,12,96,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,53,3,2,2,3,3,3,3,3,3,52,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,13,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,13,12,12,12,12,12,12,15,14,12,12,15,99,97,100,99,101,14,11,12,13,12,15,14,12,12,15,99,101,14,12,12,12,13,12,12,12,12,13,12,12,13,13,15,96,14,12,12,13,12,12,12,12,12,15,4,14,12,12,12,12,12,13,12,12,11,11,12,12,13,212,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,15,14,15,53,3,2,2,2,2,3,52,48,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,13,13,13,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,15,5,5,5,5,5,5,5,5,14,12,12,12,12,13,12,12,12,15,14,12,15,5,5,5,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,11,11,11,11,12,12,12,12,12,15,99,97,97,101,13,98,101,14,12,12,13,12,15,14,12,12,12,15,96,13,12,12,13,12,12,12,12,12,13,12,12,15,99,100,13,98,100,14,13,12,12,13,12,12,15,4,4,4,14,12,13,12,12,12,13,11,11,12,12,13,54,3,55,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,15,53,3,3,3,3,52,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,13,13,12,12,12,12,12,12,13,13,13,12,13,12,13,13,12,12,13,12,12,12,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,14,12,12,12,12,12,12,13,12,12,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,12,12,13,12,12,15,5,5,5,5,5,5,5,5,14,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,13,12,11,11,11,12,12,11,15,14,12,12,15,99,101,14,12,15,14,15,14,12,13,13,12,13,13,15,14,12,12,15,98,100,14,12,12,13,12,12,12,13,12,12,15,99,101,96,14,13,96,14,12,13,12,12,12,12,12,15,4,14,12,12,12,13,12,13,12,11,12,12,13,99,2,52,102,100,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,48,48,48,48,14,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,13,13,12,12,13,12,12,12,13,13,13,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,13,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,5,5,5,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,15,5,5,5,5,5,5,5,5,14,12,12,12,12,13,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,13,12,11,11,11,11,12,12,12,15,99,100,13,99,101,14,12,12,12,12,12,12,13,15,14,12,15,14,13,15,14,13,12,13,96,14,12,12,12,13,12,13,12,13,15,5,96,13,98,97,97,101,5,14,13,12,12,13,12,12,12,11,12,12,12,13,12,12,13,12,11,12,13,12,96,212,13,102,2,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,15,14,12,15,14,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,15,14,15,14,13,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,5,5,5,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,12,12,13,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,13,11,11,11,12,12,12,15,99,101,98,97,101,14,12,12,12,12,12,12,13,12,13,11,15,5,14,15,99,97,97,97,97,101,13,12,12,13,12,13,12,12,13,12,15,96,14,13,13,12,15,14,13,12,12,12,12,12,13,12,11,11,12,12,12,12,13,12,11,11,12,12,13,212,102,55,212,212,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,15,14,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,13,12,13,12,15,14,12,15,14,13,12,13,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,13,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,15,5,5,14,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,15,96,5,14,12,12,11,12,12,12,11,11,12,12,12,12,13,15,14,12,15,96,5,14,12,15,14,12,12,13,12,15,14,12,12,13,13,15,102,97,100,14,13,12,13,12,12,15,14,11,12,12,13,13,11,11,11,11,12,13,12,11,12,12,12,13,98,2,2,3,101,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,13,12,15,14,12,12,12,15,14,13,12,13,13,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,14,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,96,14,12,12,12,12,11,11,11,11,11,13,12,12,13,99,97,97,97,97,101,14,12,12,12,12,12,13,12,15,50,50,14,13,12,15,99,101,13,98,100,14,13,12,12,15,14,12,11,11,11,11,13,12,12,12,11,11,13,12,11,11,11,11,12,13,53,3,52,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,13,13,13,12,12,12,13,12,12,13,12,13,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,14,13,12,13,13,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,14,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,13,13,13,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,14,12,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,15,99,101,14,12,12,12,12,12,12,11,12,12,13,12,13,15,96,13,12,15,14,12,12,13,12,12,12,13,12,15,54,3,3,55,13,99,97,101,14,12,15,98,97,97,97,100,14,12,12,13,12,12,11,12,13,12,12,12,11,12,13,12,12,12,11,12,12,13,212,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,13,13,13,12,13,13,12,13,12,12,12,15,5,5,14,15,5,5,5,5,5,5,5,5,5,14,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,13,15,5,5,5,14,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,15,96,14,12,12,12,12,12,12,12,11,11,12,12,13,12,13,212,13,13,12,12,12,13,12,12,13,12,13,15,49,3,3,3,3,97,101,14,13,12,13,13,15,14,12,15,98,97,100,14,12,12,12,11,11,12,13,12,11,11,12,12,13,12,11,11,12,12,15,96,14,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,5,5,5,14,12,12,15,14,15,5,5,5,5,5,5,5,5,5,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,15,5,5,5,5,5,5,14,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,13,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,15,54,2,55,50,14,12,12,12,12,12,12,11,12,13,12,12,15,96,14,12,13,12,12,12,12,12,12,13,12,15,49,3,3,52,48,13,12,13,12,13,12,12,13,12,12,12,12,15,98,100,14,12,12,12,11,11,13,12,11,12,12,12,13,13,11,12,12,12,15,96,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,5,5,5,14,12,12,15,14,12,12,15,5,5,5,5,5,5,5,5,5,14,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,15,5,5,5,5,5,5,5,5,14,12,15,14,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,12,13,13,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,15,49,3,3,3,3,55,50,50,14,12,12,13,12,13,12,12,15,99,101,14,12,13,13,12,12,12,12,13,12,12,12,15,53,3,51,14,12,13,12,13,12,11,11,12,12,12,12,12,12,15,96,14,12,13,12,12,11,12,13,11,12,12,12,12,13,15,14,12,15,99,101,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,5,5,5,14,12,12,15,14,12,12,12,12,12,12,15,5,5,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,5,5,5,5,5,5,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,15,14,15,14,15,5,5,5,14,12,13,12,12,12,12,12,12,15,14,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,15,53,3,2,2,3,3,3,55,14,12,12,13,12,12,15,99,101,14,12,13,12,12,13,12,13,12,13,12,12,13,12,15,48,14,12,13,12,11,12,13,12,11,11,12,12,12,12,12,15,98,100,14,12,12,11,11,12,13,11,11,12,12,12,12,13,15,5,99,101,14,15,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,15,5,5,5,5,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,15,14,15,5,14,12,12,12,13,12,12,12,12,12,12,15,14,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,15,49,3,2,2,2,2,2,3,55,14,13,12,12,15,99,101,14,12,12,13,12,11,12,13,12,13,12,13,13,12,12,12,13,12,13,12,11,11,13,12,12,12,11,11,12,12,12,12,12,15,96,14,12,13,11,12,13,12,12,11,11,12,12,12,12,13,15,96,14,12,12,15,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,13,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,15,5,5,5,5,5,14,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,13,12,12,12,12,15,5,14,12,12,12,12,13,13,12,13,13,13,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,13,12,12,15,53,3,2,2,2,2,2,3,55,14,12,15,54,3,51,14,12,12,12,13,11,11,12,12,12,12,12,12,13,12,13,12,13,12,11,11,12,12,13,12,12,12,11,11,12,15,14,13,12,96,5,14,11,11,11,12,13,13,12,11,11,12,12,12,13,15,96,14,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,13,12,12,13,13,13,12,12,12,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,5,5,5,5,5,5,14,12,12,12,13,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,13,12,12,12,12,12,12,15,14,12,12,12,12,13,12,12,12,12,12,13,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,13,12,12,12,13,12,12,13,12,12,12,12,12,12,15,53,3,2,2,2,2,3,55,50,50,54,3,3,55,14,13,12,13,12,12,15,14,12,12,12,12,15,14,13,12,12,12,11,11,11,12,13,12,12,12,12,12,15,99,97,97,100,13,96,14,12,12,12,11,11,12,12,13,12,11,12,12,12,13,15,102,97,100,14,12,12,13,12,13,12,13,12,13,12,12,12,13,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,15,5,5,5,14,12,15,14,12,12,12,12,13,12,12,13,13,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,5,5,5,5,5,5,5,14,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,14,12,12,12,12,13,12,12,12,12,12,12,13,13,13,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,13,12,12,12,15,49,3,2,2,2,2,2,3,3,3,3,2,2,3,55,50,13,12,13,12,12,15,14,12,12,15,14,12,12,15,14,11,11,12,12,12,12,13,12,12,12,12,15,96,13,15,98,103,101,14,11,12,12,12,11,11,12,13,12,15,14,12,12,15,99,101,13,98,100,14,12,13,12,12,13,12,12,12,13,13,13,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,15,5,5,14,12,13,12,15,14,12,12,13,12,13,13,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,5,5,5,5,5,5,14,12,12,12,13,13,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,13,12,11,11,11,12,13,12,12,12,12,12,12,12,12,15,53,3,2,2,2,2,2,2,2,2,2,2,2,3,3,55,14,12,12,15,14,12,12,15,50,14,12,15,14,12,12,12,12,12,12,12,12,13,12,12,15,5,96,14,12,15,96,14,12,15,14,13,12,12,11,11,13,12,12,15,14,15,99,101,14,12,15,96,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,13,12,12,12,13,12,12,15,5,14,13,12,13,12,13,13,12,12,13,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,14,12,15,5,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,12,13,12,12,13,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,15,14,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,15,5,14,12,12,12,13,12,13,12,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,13,12,11,11,11,11,11,11,13,12,12,12,12,13,12,11,11,15,53,3,2,2,2,2,2,2,2,2,2,2,2,2,3,55,50,50,14,12,12,15,54,3,55,50,50,14,12,12,12,12,12,12,12,13,12,12,12,12,15,96,14,12,13,98,100,14,12,15,14,12,12,12,15,14,13,12,12,15,99,101,14,13,12,15,98,100,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,13,12,13,12,12,12,15,5,14,12,13,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,14,12,12,12,15,5,5,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,13,13,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,15,5,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,13,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,13,12,12,11,11,11,11,11,11,12,13,12,12,12,12,11,11,12,12,13,53,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,55,50,50,50,54,3,3,3,3,55,14,12,12,12,12,12,12,12,13,13,12,12,15,98,100,14,12,15,98,97,97,100,14,12,12,15,14,12,12,13,12,15,96,14,12,12,13,12,15,96,14,12,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,13,13,12,12,12,12,12,13,12,12,12,15,5,5,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,15,5,5,14,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,14,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,13,12,12,12,12,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,13,12,12,12,12,12,11,11,15,14,11,11,13,12,12,11,11,12,12,13,15,49,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,3,2,2,2,2,3,55,14,12,12,12,12,12,12,12,12,13,13,12,15,98,100,13,12,12,13,15,98,100,14,13,12,15,14,13,12,12,15,96,14,12,12,12,13,15,96,14,13,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,13,12,12,13,15,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,14,15,5,14,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,13,12,12,12,15,14,12,12,15,5,5,5,5,5,5,5,14,12,12,13,12,12,12,12,12,12,13,13,12,12,13,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,13,12,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,],
[12,12,12,13,12,12,12,12,12,12,15,14,12,12,13,12,11,11,12,13,12,12,12,15,53,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,51,14,12,12,12,12,12,12,12,12,12,13,12,15,98,100,14,13,12,12,15,96,14,12,12,15,14,12,13,15,99,101,14,12,12,13,12,15,96,14,12,12,12,13,12,12,15,99,97,97,100,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,13,12,13,15,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,13,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,14,12,13,12,12,15,5,5,5,5,5,5,5,14,12,13,12,12,12,12,12,12,12,12,13,13,12,13,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,13,13,13,12,13,12,12,12,12,12,12,12,],
[12,12,13,12,15,14,12,12,12,15,14,12,12,13,12,12,11,12,13,12,12,12,12,15,49,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,52,14,11,11,12,12,12,12,12,12,12,13,12,12,12,15,96,14,12,13,15,5,98,100,14,15,14,12,13,12,15,96,14,12,12,13,12,12,15,96,14,12,12,12,12,12,15,99,101,14,15,98,100,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,14,15,5,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,13,12,12,15,5,5,5,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,13,12,12,12,12,12,],
[12,12,12,13,15,99,97,97,100,14,12,12,12,12,13,12,11,13,12,12,12,12,12,12,15,53,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,52,14,12,12,11,11,11,12,12,12,12,12,12,13,12,12,15,96,14,12,13,12,15,5,96,5,14,12,13,12,12,15,96,14,12,13,12,12,15,99,101,14,12,12,13,12,12,15,96,14,12,12,15,98,100,14,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,13,12,12,15,5,5,5,5,5,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,13,13,12,13,12,12,12,12,12,12,12,15,5,5,5,5,5,14,12,12,12,15,14,12,12,13,12,15,14,12,12,12,13,12,12,12,12,12,],
[12,12,13,15,99,101,14,15,98,100,14,12,12,12,12,13,11,12,13,12,12,12,12,12,15,49,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,52,14,12,12,12,12,12,11,11,12,12,12,12,13,12,12,12,15,96,14,12,12,13,12,15,96,14,12,12,12,12,15,99,101,14,12,13,12,12,15,96,14,12,12,12,12,12,15,4,96,14,12,12,12,15,98,100,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,5,5,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,13,12,13,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,15,5,14,15,5,5,5,5,5,14,12,12,13,12,12,15,5,14,12,12,12,13,12,12,12,12,],
[12,13,12,15,96,14,12,12,15,98,100,14,12,12,13,12,11,11,12,13,12,12,12,15,5,49,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,3,52,48,14,12,12,12,12,12,11,11,11,11,12,12,12,12,13,12,15,99,101,14,12,12,12,13,15,96,14,12,12,13,13,15,96,14,12,13,12,12,15,99,101,14,12,12,12,12,12,12,15,96,14,12,12,12,12,15,96,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,13,12,12,12,13,12,13,12,12,12,12,12,13,12,13,13,13,12,12,12,15,5,14,15,5,5,5,14,12,12,13,12,12,15,5,5,14,12,12,12,12,13,13,13,12,],
[13,12,12,15,96,14,12,12,12,15,96,14,12,12,12,13,11,11,11,12,12,12,15,14,12,15,53,3,2,2,2,2,2,2,2,2,2,2,3,3,3,3,52,48,48,48,14,12,12,12,12,12,12,12,11,11,11,11,12,12,12,12,13,15,99,101,14,12,12,12,13,12,15,98,100,14,12,12,12,15,96,14,12,13,12,12,15,96,14,12,13,12,12,13,12,12,15,96,14,12,12,12,12,15,98,100,14,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,15,5,14,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,13,12,12,15,5,5,5,14,12,12,12,12,12,13,12,12,15,5,5,14,12,12,12,13,12,12,12,13,],
[13,15,14,15,96,14,12,12,12,15,96,14,12,12,13,11,11,11,11,12,12,12,12,12,12,12,15,53,3,2,2,2,2,2,2,2,2,3,52,48,48,48,14,12,12,12,12,12,12,12,12,12,12,11,11,11,12,12,12,12,12,13,12,15,96,14,12,12,15,4,14,13,12,15,98,100,14,12,15,99,101,14,12,13,12,12,15,96,14,12,12,13,12,12,12,12,15,96,14,12,15,14,12,12,15,96,14,12,12,12,13,12,12,12,12,12,12,13,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,14,13,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,15,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,14,12,12,12,12,12,12,13,12,12,15,5,5,14,12,12,13,12,12,12,12,12,],
[13,12,12,15,96,14,13,12,12,15,96,14,12,12,12,13,11,11,13,12,12,12,12,12,13,12,15,49,3,2,2,2,2,2,2,2,3,52,14,15,14,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,102,97,100,99,100,14,13,12,12,12,15,98,97,97,97,101,14,12,13,12,12,12,15,98,97,100,14,12,12,12,15,99,97,101,14,12,15,4,14,12,15,98,100,14,12,12,12,13,12,12,12,12,13,12,12,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,5,14,12,12,13,12,12,12,12,12,12,],
[12,13,12,15,98,100,14,12,12,15,98,100,14,12,12,12,13,12,12,12,13,12,12,13,12,13,12,15,53,3,2,2,2,2,2,2,3,51,14,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,99,101,5,98,101,96,14,13,12,12,12,12,12,12,15,14,12,12,13,12,12,12,12,12,15,4,98,97,97,97,97,97,101,14,12,12,12,15,4,14,12,12,15,96,14,12,12,12,12,13,12,12,13,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,5,5,14,12,12,12,13,12,12,12,12,12,],
[12,12,13,12,15,96,14,12,12,12,15,96,14,12,12,13,12,12,12,12,12,13,12,12,12,12,12,15,49,3,2,2,2,2,2,3,52,14,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,15,99,101,14,13,12,15,96,13,12,12,12,12,12,12,12,12,15,14,12,12,13,12,15,4,14,11,14,12,12,12,12,12,12,12,12,12,15,4,4,4,4,14,12,15,96,14,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,15,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,15,5,5,5,14,12,12,13,12,12,12,12,12,12,],
[12,12,13,12,15,96,14,12,12,12,15,96,14,12,12,13,12,12,12,12,12,12,12,12,12,15,14,15,49,3,2,2,2,2,2,3,51,14,12,12,13,12,12,12,12,15,14,12,12,12,12,12,13,12,12,13,13,12,12,12,12,15,96,14,12,12,13,15,96,14,13,12,13,13,12,12,13,12,12,13,12,13,12,15,4,4,4,14,12,12,12,12,12,12,12,12,12,15,4,4,4,4,4,14,12,15,96,14,12,12,12,12,12,13,12,12,12,12,12,15,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,15,14,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,13,13,12,12,12,15,5,5,5,5,14,12,12,13,12,12,12,12,12,],
[12,13,12,12,15,96,14,12,12,12,15,96,14,12,13,12,12,12,12,13,12,12,12,12,14,15,14,12,15,53,3,2,2,2,2,3,51,14,12,12,12,13,12,12,15,14,12,12,12,12,12,13,12,13,13,12,12,12,12,12,15,50,96,14,12,13,12,15,98,100,14,13,12,12,13,13,12,13,13,12,13,12,12,15,4,4,4,14,12,12,12,12,12,12,12,12,15,4,4,4,4,4,4,14,12,15,98,100,14,12,12,12,12,13,12,12,12,12,15,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,14,12,12,15,14,12,12,15,5,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,13,12,12,12,12,12,12,15,5,5,5,14,12,12,12,13,12,12,12,12,],
[12,13,12,12,15,98,100,14,12,12,15,98,100,14,12,13,12,13,12,12,13,12,12,12,15,14,12,12,15,49,3,2,2,2,3,52,14,15,14,12,12,13,12,15,14,12,12,12,12,12,13,12,12,12,12,12,15,14,12,15,54,3,3,55,50,14,13,13,15,98,97,100,13,12,12,12,12,12,12,12,12,12,12,15,4,4,4,4,14,12,12,12,15,14,12,15,4,4,4,4,4,4,4,14,12,12,15,96,14,12,12,12,12,13,12,12,12,15,14,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,15,5,5,5,5,14,12,12,15,5,5,14,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,13,13,13,12,12,12,15,14,12,12,15,5,5,5,14,12,12,12,12,13,12,12,12,],
[13,12,12,12,12,15,98,100,14,12,12,15,96,14,12,12,13,12,13,12,12,12,13,12,12,12,12,12,15,49,3,2,2,2,3,51,14,12,15,14,13,12,15,14,12,12,12,12,12,12,12,13,12,12,12,15,14,11,15,54,3,2,2,3,3,51,14,12,13,12,15,98,97,100,14,12,15,99,100,14,12,12,12,12,15,4,4,4,4,4,4,4,14,12,15,4,4,4,4,4,4,4,4,14,12,12,15,96,14,12,12,12,13,12,12,12,15,5,5,14,12,12,15,5,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,13,13,12,12,12,12,12,12,15,14,12,12,13,13,12,13,12,12,12,12,13,15,14,15,5,14,12,15,5,5,5,5,5,5,5,5,14,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,15,14,12,12,15,5,14,12,12,12,12,13,12,12,12,12,],
[13,12,12,12,12,12,15,96,14,12,12,15,96,14,12,12,12,12,13,12,12,12,12,12,12,13,12,13,12,15,53,2,2,2,52,14,12,12,12,12,13,12,12,15,14,12,12,12,12,12,12,12,13,12,15,14,12,12,15,53,3,2,2,2,3,55,14,12,13,12,12,13,15,98,100,13,99,101,98,97,100,14,12,12,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,15,96,14,12,12,12,13,12,12,15,5,5,5,5,5,5,5,5,5,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,13,13,12,13,13,12,12,12,12,12,12,12,15,5,14,12,12,12,12,13,12,12,12,15,5,5,5,5,14,12,12,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,12,13,13,12,13,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,5,14,12,12,12,12,12,13,12,12,12,12,],
[12,13,12,12,12,12,15,96,14,12,12,15,96,5,14,12,12,12,12,13,12,12,12,12,12,12,13,12,13,12,15,53,2,52,14,12,12,12,12,12,12,13,12,12,15,14,12,12,12,11,11,12,12,13,12,15,14,12,15,49,3,2,2,2,2,3,55,14,12,13,13,12,13,15,98,97,101,14,12,15,98,100,14,12,12,12,12,12,12,15,4,4,4,4,4,4,4,4,14,12,12,15,4,4,14,12,15,96,14,12,12,12,13,12,12,15,5,5,5,5,5,5,5,5,5,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,13,12,12,12,15,14,12,12,13,12,12,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,13,12,13,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,13,12,12,15,5,5,14,12,12,15,14,12,12,12,13,12,12,12,12,12,],
[12,13,12,12,12,12,15,96,5,14,12,15,96,14,15,14,12,12,12,12,13,12,13,13,13,12,12,13,12,13,13,54,2,55,14,12,12,12,12,12,13,12,12,12,12,12,12,12,11,11,12,12,13,12,15,14,12,12,12,15,53,3,2,2,2,2,3,51,14,12,12,12,12,13,12,15,14,12,12,12,15,98,100,14,12,12,12,12,12,12,15,4,4,4,4,4,4,14,12,12,12,12,12,15,14,12,15,96,14,12,12,12,12,13,12,15,5,5,5,5,5,5,5,5,5,5,14,13,12,12,12,12,12,12,12,12,12,12,12,12,15,5,5,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,15,14,12,12,12,12,15,5,5,5,14,12,12,12,12,13,12,12,12,13,12,12,12,13,12,12,12,12,12,12,13,12,12,15,5,14,12,12,12,13,12,13,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,13,12,15,5,5,14,12,12,12,12,12,12,13,12,12,12,12,12,12,],
[12,12,13,12,12,12,15,96,14,12,12,15,96,14,12,15,14,12,12,12,12,13,12,12,12,13,13,12,12,12,15,96,48,96,14,12,12,12,12,13,12,12,12,12,12,12,12,11,11,11,12,12,12,13,15,14,12,12,12,15,49,3,2,2,2,2,3,51,14,12,12,12,13,12,15,14,12,12,12,12,12,15,98,97,97,97,100,14,12,12,12,15,4,4,4,4,14,12,12,15,14,12,12,12,12,12,15,96,14,12,12,12,12,13,12,12,15,5,5,5,5,5,5,5,5,5,14,12,13,12,12,12,12,12,12,12,12,12,12,15,5,14,15,5,14,12,12,12,12,13,12,12,12,12,12,12,12,15,5,5,5,5,5,14,12,12,13,12,12,12,13,12,12,12,12,15,5,5,5,5,14,12,12,15,5,5,5,5,14,12,12,12,12,12,13,12,12,12,12,12,12,12,13,13,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,13,12,12,13,12,12,12,13,12,12,13,15,14,12,12,12,12,13,13,13,12,12,12,12,12,12,12,],
[12,12,12,13,12,15,99,101,14,12,12,15,96,14,12,12,15,14,12,12,12,12,12,12,13,12,12,12,12,15,99,101,5,98,100,14,12,12,13,12,12,12,12,12,12,12,11,11,11,12,12,12,13,12,15,14,12,12,12,12,15,53,3,3,2,3,52,14,12,12,12,13,12,12,12,11,12,12,12,12,12,12,12,12,15,4,96,14,12,12,12,15,4,4,4,4,14,12,15,14,12,12,12,12,12,15,99,101,14,12,12,12,12,13,13,12,12,12,15,5,5,5,5,5,5,14,12,13,12,12,12,12,12,12,12,12,12,12,15,5,5,5,14,15,5,14,12,12,13,12,12,12,12,12,12,12,15,5,5,5,5,5,5,5,14,12,13,12,12,13,12,12,15,5,5,5,4,4,4,4,5,14,15,5,5,5,5,14,13,12,12,12,12,12,12,13,13,12,12,12,12,13,12,12,13,12,13,12,12,12,13,12,12,12,13,12,12,12,12,12,13,12,13,12,13,12,12,12,12,12,12,13,12,12,12,12,13,12,13,12,13,12,13,13,13,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,13,12,15,96,14,12,12,12,15,96,14,12,12,12,15,14,12,12,12,12,15,14,13,12,12,15,99,101,14,12,15,96,14,12,13,12,12,12,12,12,15,14,12,12,11,12,12,12,13,12,15,14,12,12,12,12,12,12,15,48,53,3,52,14,12,12,12,12,13,12,12,12,11,12,12,12,12,12,12,12,12,12,15,96,4,14,12,12,12,15,4,4,4,14,12,12,15,14,12,12,12,15,99,101,14,12,12,12,12,12,12,13,12,12,12,12,12,15,5,14,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,15,5,14,15,5,14,12,13,12,12,12,12,12,12,12,12,12,15,5,5,5,5,5,14,12,13,12,12,12,13,12,15,5,5,4,4,4,4,4,4,4,5,5,5,5,5,5,5,14,13,12,12,12,12,13,12,12,13,12,12,13,12,12,12,12,13,12,12,12,12,12,13,12,13,12,12,12,12,12,13,12,13,12,12,12,13,13,12,12,12,13,12,12,12,12,13,12,13,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,13,12,12,15,96,14,12,12,12,15,96,14,12,12,12,12,15,14,12,15,14,15,5,14,13,12,13,96,14,12,12,15,98,100,14,13,12,12,12,15,99,97,100,14,12,12,13,12,13,12,15,14,12,12,12,12,12,12,12,11,12,15,48,14,12,12,12,12,13,12,12,12,11,11,12,12,12,12,12,12,12,12,12,15,98,97,100,14,12,12,12,11,12,12,12,12,12,12,15,14,12,15,5,96,14,12,12,12,12,12,12,12,13,13,13,12,12,12,15,14,12,12,13,13,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,15,5,14,12,12,12,13,12,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,13,12,13,12,15,5,5,4,4,4,4,4,4,4,4,4,4,4,5,5,5,5,14,12,12,12,12,13,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,13,12,12,15,14,12,12,12,13,12,12,12,12,12,12,12,13,12,12,15,5,5,5,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,13,12,12,15,99,101,14,12,12,12,15,98,100,14,12,12,12,12,15,14,15,14,15,14,12,12,13,15,96,14,13,12,12,15,96,13,12,15,14,15,99,101,13,96,13,12,13,12,13,12,15,14,12,12,12,12,13,12,11,11,11,12,12,12,12,12,12,12,12,13,12,12,12,11,12,12,12,12,12,12,12,12,12,12,12,15,4,96,4,14,12,11,11,12,12,12,12,12,15,99,97,97,97,97,101,14,12,12,12,12,12,12,13,12,12,12,13,12,12,12,15,14,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,12,12,12,13,12,12,12,15,5,4,4,4,4,4,4,4,4,4,4,4,4,5,5,14,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,15,5,5,5,5,5,14,12,13,12,12,12,12,12,12,13,12,15,5,5,5,5,5,14,12,12,13,12,12,12,12,12,12,12,12,12,12,],
[13,12,12,12,15,96,14,12,12,12,12,12,15,96,14,12,15,14,12,12,15,14,12,12,12,12,12,12,15,96,13,12,13,12,15,98,97,100,14,15,99,101,13,15,96,14,13,12,12,12,12,15,14,12,12,12,12,13,13,11,12,12,12,12,12,12,12,12,12,13,12,12,12,12,11,12,12,12,12,12,12,12,12,12,12,12,12,15,98,97,100,14,11,12,12,12,12,15,99,97,101,14,12,12,12,12,15,14,12,12,12,12,13,12,12,12,12,12,13,12,12,12,15,14,12,12,13,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,15,5,14,12,12,12,13,12,13,12,12,12,12,12,15,5,5,5,5,4,4,4,4,4,4,4,5,14,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,15,5,5,5,5,5,5,5,14,13,12,12,12,12,12,13,12,15,5,5,5,5,5,5,5,14,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,13,13,12,15,96,14,12,12,12,12,12,15,98,97,100,14,12,12,15,14,12,12,12,12,12,12,15,99,101,14,12,12,13,12,12,15,98,97,97,101,13,13,99,101,13,12,12,12,12,15,14,12,12,12,12,13,11,11,11,13,12,13,12,12,12,13,12,12,13,12,12,12,12,12,11,12,12,12,12,12,12,12,12,12,12,12,12,12,15,98,97,100,14,12,15,99,97,101,14,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,13,13,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,13,12,13,12,12,12,12,13,12,15,14,12,12,15,5,5,4,4,4,4,5,14,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,5,5,5,5,5,5,14,12,13,12,12,12,12,12,13,15,5,5,5,5,5,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,],
[12,12,12,13,15,96,5,14,12,12,12,15,14,12,15,98,97,97,100,14,12,12,12,12,12,12,15,99,101,14,12,12,12,12,13,12,15,14,13,13,13,12,15,96,14,12,13,12,12,15,14,12,12,12,12,12,13,11,11,13,12,13,12,13,12,13,12,13,13,12,13,12,12,12,12,12,11,11,11,12,12,12,12,12,12,12,12,12,15,14,12,15,98,97,97,97,101,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,13,12,12,13,12,12,12,12,12,12,12,13,12,13,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,5,4,4,4,5,14,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,5,5,5,5,5,14,12,12,12,13,12,12,12,12,12,13,15,5,5,5,5,5,5,5,14,12,12,13,12,13,12,12,12,12,12,12,],
[12,12,12,12,13,96,14,12,12,12,15,14,12,12,15,14,12,15,98,100,14,12,12,12,15,99,97,101,14,12,12,12,12,12,12,13,13,13,12,15,14,12,15,96,14,13,12,12,15,14,12,12,12,12,12,12,13,12,13,12,12,12,12,12,13,12,12,12,12,12,12,13,13,12,13,12,12,12,11,11,12,12,12,12,12,12,12,15,14,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,13,12,13,12,12,12,12,12,12,12,13,13,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,13,12,13,13,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,5,5,14,12,15,14,12,12,12,12,13,12,12,12,12,12,12,13,15,5,5,5,5,5,14,12,12,12,12,13,12,13,12,12,12,12,12,],
[12,12,12,13,15,96,14,12,12,12,12,12,12,15,14,12,12,12,15,98,97,97,97,97,97,101,14,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,99,101,14,12,13,12,12,12,13,12,13,12,12,13,12,13,12,12,12,12,12,12,12,11,11,12,12,15,14,12,12,13,12,13,12,12,12,11,11,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,13,13,13,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,13,12,13,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,13,13,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,15,5,5,5,5,5,14,12,13,12,12,13,12,13,12,12,12,12,12,],
[12,12,13,12,15,98,100,14,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,15,14,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,96,14,15,14,12,13,12,13,12,13,12,13,13,12,12,12,12,12,12,12,12,12,12,11,12,12,15,14,12,12,12,12,12,12,13,12,12,12,11,11,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,13,13,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,13,12,13,13,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,15,5,5,5,14,12,12,12,12,13,12,12,13,12,12,12,12,12,],
[12,13,12,12,12,15,98,100,14,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,15,14,12,13,12,12,12,11,11,12,12,12,13,12,12,15,14,15,96,14,12,15,14,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,15,4,4,4,4,14,12,12,12,12,12,12,13,12,12,12,12,11,11,11,11,12,12,12,12,12,11,11,11,15,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,13,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,13,12,12,13,12,13,12,12,12,13,12,12,13,12,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,13,13,12,12,15,14,12,13,12,13,13,12,12,13,12,12,12,12,12,12,],
[12,13,12,12,12,12,15,98,100,14,12,12,12,12,12,12,12,12,12,12,12,15,14,15,14,12,12,12,13,12,11,11,11,11,12,12,12,13,15,5,14,15,96,14,12,12,12,12,12,11,11,11,12,12,12,12,12,12,12,12,15,4,4,4,4,4,4,4,4,4,4,4,14,12,12,12,12,13,12,12,12,12,12,12,11,11,11,12,12,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,13,12,13,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,13,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,13,12,12,12,13,12,13,12,12,12,13,12,12,15,5,14,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,13,12,12,13,12,12,13,12,12,12,13,12,12,12,12,12,12,],
[12,12,13,12,12,12,12,15,96,14,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,13,12,11,11,11,11,11,12,12,12,12,13,15,5,99,101,14,12,12,12,11,11,11,12,11,15,14,12,12,12,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,12,12,13,12,12,12,13,12,12,12,11,11,11,11,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,13,12,13,13,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,13,12,12,12,13,12,12,12,12,13,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,],
[12,12,13,12,12,12,12,15,96,14,12,12,12,12,12,12,12,12,12,12,12,12,15,14,12,12,13,12,13,12,11,11,11,11,12,12,12,13,12,12,15,96,14,12,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,13,12,13,12,13,12,13,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,13,12,13,13,12,13,12,12,12,13,12,12,12,12,12,13,12,13,12,13,12,12,12,12,12,12,12,12,13,13,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,13,13,12,12,12,12,12,13,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,14,12,12,12,12,13,12,12,12,12,12,12,12,13,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,],
[12,12,13,12,12,12,12,13,212,13,12,12,12,13,12,12,12,12,12,12,12,12,12,15,14,13,12,13,12,12,15,14,11,12,12,12,13,12,13,12,15,98,97,100,14,12,12,12,12,12,12,12,12,12,15,14,12,12,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,13,12,12,12,13,15,14,11,12,13,13,13,12,12,12,13,13,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,13,12,12,12,13,12,12,12,13,12,13,12,12,12,13,12,12,12,12,12,12,13,12,12,13,12,13,12,12,12,15,14,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,13,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,5,5,14,12,12,12,12,13,12,12,12,12,13,12,12,13,12,12,15,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,13,13,12,12,12,12,13,12,12,12,12,12,12,12,],
[12,13,12,12,12,12,13,15,96,14,13,12,13,12,13,13,13,12,12,12,12,12,12,12,12,12,13,12,12,15,5,5,14,12,12,13,12,12,12,13,11,12,15,96,14,12,12,12,12,12,11,11,12,12,12,15,14,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,13,12,12,15,5,5,5,5,14,12,13,13,13,13,12,12,12,12,13,13,13,13,12,13,12,13,12,15,222,14,12,13,12,12,13,12,12,12,12,12,13,12,12,12,13,12,12,12,13,12,12,12,12,12,12,13,12,15,14,12,12,12,15,14,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,15,14,12,12,12,12,12,12,13,13,12,12,15,14,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,5,5,5,5,5,14,12,13,12,12,12,12,13,12,12,12,12,13,12,12,12,15,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,],
[12,13,12,12,12,13,12,13,212,13,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,15,5,5,5,5,14,11,11,13,12,11,13,13,12,15,96,14,12,12,12,12,11,11,12,12,12,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,13,12,11,15,5,5,5,5,14,11,11,12,12,12,12,12,12,12,12,12,12,13,12,15,5,137,137,137,137,137,5,14,12,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,15,14,12,15,14,13,15,14,12,12,15,14,12,13,12,12,12,12,12,13,12,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,15,5,5,5,5,14,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,5,5,14,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,15,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,13,12,13,12,12,15,96,14,12,12,12,12,12,12,12,12,13,12,13,12,12,12,13,12,15,5,5,5,5,5,5,14,12,11,11,11,11,13,12,15,4,96,14,12,12,12,12,11,12,12,12,15,4,4,4,4,4,4,4,4,4,14,15,4,4,4,4,4,4,4,4,4,4,14,12,12,12,12,11,11,15,5,14,11,12,13,11,11,11,12,15,14,12,12,15,14,12,12,15,5,49,49,49,49,49,49,5,5,14,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,13,15,5,5,5,14,15,5,14,15,5,5,14,12,13,12,13,12,13,12,12,12,12,15,5,5,5,5,5,14,12,12,12,12,12,15,5,5,5,5,5,5,14,12,13,12,12,12,12,12,12,12,12,13,12,12,12,15,14,12,15,5,5,14,12,12,13,12,12,13,12,12,12,12,13,12,12,12,15,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,13,12,12,12,15,98,100,14,12,12,12,12,12,12,12,12,13,12,13,12,13,12,15,5,5,5,5,5,5,5,14,12,12,13,11,11,13,13,12,15,102,55,14,12,12,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,15,4,4,4,4,4,4,14,12,12,11,11,12,15,14,11,12,13,12,12,12,11,15,5,5,14,12,15,5,14,15,5,5,5,48,48,48,48,48,5,5,5,14,11,11,11,13,12,12,12,12,12,12,12,12,12,12,12,13,12,13,13,12,12,12,13,12,15,5,5,5,5,5,5,5,5,5,14,12,12,12,13,12,13,13,12,12,12,12,15,5,5,5,5,5,5,5,14,12,15,5,5,5,5,5,5,5,5,14,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,15,5,5,14,12,12,13,12,12,12,12,12,12,12,13,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,13,12,12,12,15,96,14,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,5,5,5,5,5,5,14,12,12,12,13,11,12,13,12,12,15,102,104,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,15,4,4,4,4,4,4,4,14,12,15,14,12,12,12,12,12,13,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,13,12,12,12,15,5,5,5,5,5,5,5,14,12,12,12,13,12,12,13,12,15,14,12,12,15,14,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,15,5,14,12,12,13,12,12,12,12,12,12,13,12,15,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,13,12,12,13,98,100,14,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,5,5,5,5,5,14,12,12,12,13,11,12,12,13,12,15,53,2,55,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,11,12,12,12,12,12,13,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,13,12,12,15,5,5,5,5,5,5,14,12,12,13,12,12,12,13,12,12,15,14,15,14,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,5,14,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,13,13,12,12,12,12,12,15,14,12,12,12,13,12,12,12,12,12,13,12,15,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,13,12,12,13,12,13,212,13,12,12,12,12,12,12,15,14,12,12,12,12,13,12,15,5,5,5,5,14,12,12,12,12,13,11,12,13,12,15,4,99,2,3,108,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,13,12,12,12,13,12,12,12,12,12,12,15,5,5,5,5,14,15,5,5,5,5,5,5,5,5,5,5,5,5,14,12,12,12,13,13,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,12,13,12,12,12,12,13,15,5,5,5,5,5,14,12,12,12,12,13,12,12,12,13,12,12,15,14,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,13,12,15,5,5,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,13,12,13,12,12,15,98,100,14,12,12,12,12,15,14,15,14,12,12,12,12,13,12,15,5,5,5,14,12,12,12,13,12,11,13,12,15,4,99,3,2,2,3,100,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,12,13,12,12,13,13,13,12,12,12,13,12,12,15,14,12,13,12,15,5,5,5,5,5,5,5,5,5,14,12,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,13,12,12,12,12,12,15,5,5,5,5,14,12,12,12,12,13,12,12,12,12,13,12,13,12,12,12,13,12,12,15,5,5,5,5,5,5,5,5,5,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,13,12,12,12,15,5,14,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,13,12,12,12,13,15,98,97,100,14,12,15,14,12,12,15,14,12,12,13,12,15,5,5,5,14,12,12,12,12,13,11,11,13,12,15,4,53,3,2,2,3,101,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,12,12,13,13,12,12,12,13,12,13,12,13,12,15,5,14,13,12,12,15,5,5,5,5,14,15,5,14,12,13,13,12,13,12,12,12,13,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,13,12,12,15,5,5,5,5,5,14,12,12,12,12,13,12,12,12,12,12,12,13,12,13,13,13,12,13,12,12,15,14,12,12,15,5,5,5,14,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,12,12,12,12,13,13,13,12,12,13,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,13,12,13,12,13,12,15,98,97,100,14,12,12,12,12,12,12,13,15,5,5,5,5,5,14,12,12,13,13,12,11,12,12,12,12,15,4,98,3,3,52,4,4,4,4,4,4,4,4,4,4,14,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,12,12,12,12,12,12,12,12,13,12,11,12,13,12,15,14,12,13,12,12,15,5,14,12,13,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,13,12,12,15,5,5,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,15,14,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,13,13,12,12,12,12,13,12,12,12,13,12,12,12,13,12,12,13,12,12,12,13,12,12,12,12,13,12,12,13,12,13,143,13,13,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,13,12,12,13,12,12,12,15,98,97,100,14,12,12,12,13,12,15,5,5,5,5,14,12,12,13,12,12,11,11,12,11,11,15,4,4,99,3,3,55,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,15,14,12,12,12,12,12,12,11,11,12,13,12,15,5,14,12,13,12,12,12,13,13,12,13,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,13,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,12,12,13,12,12,13,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,13,12,12,13,12,11,12,12,12,13,13,12,13,143,143,143,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,13,12,12,12,12,13,12,13,12,12,15,98,100,14,12,12,12,13,12,15,5,5,5,14,12,13,12,12,11,11,11,11,11,12,12,15,4,98,101,53,3,100,14,15,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,12,15,14,12,12,12,12,11,11,12,12,12,13,12,12,15,14,12,13,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,15,5,14,12,12,12,13,13,12,12,12,12,12,12,12,12,15,14,12,13,12,12,12,12,12,13,13,13,12,13,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,12,12,12,12,12,12,13,12,13,13,12,12,12,13,12,12,12,13,12,13,12,12,12,12,13,13,13,12,12,12,13,13,12,12,11,12,12,12,13,12,13,143,143,143,143,143,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,13,12,12,12,12,13,12,13,15,14,15,96,14,12,12,12,12,13,15,5,5,5,14,13,12,13,11,11,11,11,11,12,12,12,12,15,4,4,4,98,101,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,12,12,15,14,12,12,11,11,11,11,12,12,13,12,13,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,13,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,14,12,12,12,13,12,12,13,12,12,12,12,12,12,15,14,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,13,12,12,13,12,12,12,13,13,13,13,12,12,12,13,12,12,12,13,12,12,11,12,12,13,12,12,12,13,143,143,143,13,12,12,12,13,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,13,12,15,96,14,12,12,12,13,11,15,5,5,14,12,12,13,12,12,12,11,11,12,12,12,12,15,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,12,12,12,15,14,12,15,5,5,5,5,14,12,12,13,12,13,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,14,12,12,12,13,12,12,12,13,13,13,12,12,12,15,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,12,12,15,14,12,13,12,12,12,12,12,13,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,11,12,12,13,12,13,12,13,13,143,13,13,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,13,12,12,12,12,12,12,12,13,15,99,97,97,101,14,12,12,12,12,11,12,15,14,12,12,13,13,12,13,12,12,12,12,12,12,12,12,15,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,14,12,12,12,12,15,5,14,11,15,5,5,5,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,14,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,14,12,13,12,12,12,12,12,12,13,12,12,15,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,5,5,14,12,13,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,13,12,12,12,13,12,12,12,12,11,11,12,13,12,12,13,12,12,11,12,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,212,13,12,12,15,14,11,12,11,11,13,12,12,13,13,12,12,13,12,13,12,13,12,12,12,12,12,15,5,5,5,4,4,4,4,4,4,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,5,14,12,15,5,5,5,5,5,5,4,4,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,5,5,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,15,5,5,14,12,13,12,12,12,12,12,12,12,13,12,12,15,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,5,5,5,14,12,12,12,13,12,13,12,12,12,12,15,14,12,12,12,12,13,12,12,12,13,12,13,12,12,12,12,13,12,13,12,13,12,12,12,12,11,12,13,12,12,12,12,11,11,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,13,12,12,12,12,12,12,12,15,54,2,55,14,12,12,12,15,14,11,12,13,13,13,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,15,5,5,5,4,4,4,4,5,14,15,5,4,4,4,4,4,4,4,4,4,4,4,4,4,5,5,4,4,4,4,4,4,4,4,4,4,5,14,15,5,5,5,4,4,4,4,4,4,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,14,12,12,12,13,12,12,12,12,12,12,12,15,14,12,12,13,12,15,14,12,13,12,12,12,12,12,12,12,12,12,13,12,15,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,5,5,14,12,12,12,12,12,13,13,13,12,12,12,15,5,5,5,14,12,12,12,13,12,12,12,13,12,12,15,14,12,12,13,12,12,12,13,12,12,12,11,11,12,12,13,11,11,11,12,12,12,13,12,13,12,12,13,12,12,13,12,12,13,12,12,12,12,12,12,12,12,],
[12,12,12,12,13,12,12,12,12,12,12,12,15,54,2,2,2,55,14,12,12,12,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,5,5,5,5,5,4,4,4,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,5,14,15,5,4,4,4,4,4,4,4,4,4,4,5,5,5,4,4,4,4,4,4,4,4,4,4,5,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,5,5,5,5,14,12,12,12,13,12,12,12,12,15,5,5,5,14,12,12,13,12,13,12,12,13,12,12,12,12,12,12,12,13,12,15,5,5,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,15,5,14,12,12,12,12,12,12,13,13,12,13,13,12,13,15,5,5,5,5,5,5,14,12,12,13,12,12,12,15,5,5,5,14,12,12,12,12,13,12,12,12,12,12,11,11,11,11,11,12,12,12,12,13,12,12,12,12,12,12,13,13,12,13,12,12,13,12,12,12,12,12,12,12,],
[12,12,12,12,13,12,12,12,12,12,12,15,111,2,2,2,2,2,109,14,12,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,11,12,15,5,5,5,5,5,4,4,4,4,4,4,4,4,5,5,4,4,4,4,4,4,5,14,11,15,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,15,4,4,4,4,4,4,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,5,5,5,5,5,14,12,13,12,13,12,12,15,5,5,5,5,5,14,12,12,13,12,13,13,12,12,12,12,12,12,12,13,12,15,5,5,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,13,12,15,5,5,5,14,12,12,12,12,13,12,12,12,13,12,13,143,13,15,5,5,5,5,5,5,14,13,13,12,12,15,5,5,5,5,5,5,14,12,12,12,13,12,13,12,12,12,13,12,12,12,12,12,13,13,12,12,12,12,23,12,13,12,12,12,13,12,12,12,13,12,12,12,12,12,12,],
[12,12,12,12,12,13,12,12,12,12,12,12,15,53,2,2,2,52,14,12,12,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,14,12,12,15,5,5,5,5,5,4,4,4,4,4,5,14,15,5,4,4,4,4,4,4,5,14,11,15,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,5,5,5,5,5,14,13,12,12,12,13,12,15,5,5,5,5,5,14,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,15,5,5,5,5,5,14,12,13,12,12,12,12,13,12,12,12,12,13,12,12,12,13,12,13,12,15,5,5,5,14,12,12,12,12,13,12,12,12,12,13,12,143,143,143,13,15,5,5,5,14,12,12,12,13,12,12,15,5,5,5,5,5,5,5,5,14,12,12,13,12,13,12,12,12,13,12,12,13,13,12,12,12,12,13,15,5,14,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,],
[12,12,12,12,12,13,12,12,12,12,12,12,15,49,3,2,52,14,12,12,12,11,12,13,12,12,12,12,12,12,11,15,14,11,11,12,12,12,12,13,12,12,12,12,11,12,12,12,12,12,15,5,5,5,5,4,4,4,4,5,5,5,4,4,4,4,4,4,4,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,5,5,5,5,14,12,12,13,12,13,12,12,12,15,5,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,5,5,5,14,12,12,13,13,12,13,12,13,13,12,13,12,12,15,14,12,13,15,5,5,5,5,5,5,14,12,12,13,12,12,12,12,12,13,12,12,143,13,11,15,14,13,12,12,13,12,12,12,13,12,15,5,5,5,5,5,5,5,5,5,14,12,12,12,12,13,12,13,12,12,13,12,12,12,13,12,15,5,5,5,5,14,12,12,12,13,12,12,12,13,12,12,12,12,12,12,],
[12,12,12,12,13,12,12,12,12,12,12,12,12,15,48,110,14,12,12,12,11,11,13,12,12,12,12,12,12,11,15,4,4,4,14,12,12,12,12,12,13,12,12,12,11,11,12,12,12,12,11,12,15,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,15,14,12,12,12,13,12,12,12,13,12,12,12,12,15,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,5,14,12,12,13,12,12,13,12,12,12,15,13,12,12,15,5,5,5,5,5,5,5,5,5,5,5,14,12,13,12,12,12,12,12,12,12,13,12,12,12,11,11,13,143,13,12,12,12,12,13,12,12,12,15,5,5,5,5,5,5,5,5,5,5,14,12,12,12,13,12,13,12,12,12,12,13,12,15,5,5,5,5,5,5,14,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,11,11,12,12,12,11,13,12,12,12,12,12,12,11,15,4,4,4,4,4,14,12,12,12,12,12,13,12,13,12,11,11,11,11,11,11,12,12,15,14,12,12,15,5,4,4,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,13,13,13,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,15,5,14,12,12,13,12,12,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,12,13,12,12,12,12,12,12,12,13,12,13,12,11,11,13,143,143,143,13,12,12,13,12,13,12,12,12,15,5,14,12,15,5,5,5,5,5,5,14,12,12,12,12,12,13,12,13,12,12,12,12,15,5,5,5,5,5,14,12,12,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,11,12,12,12,11,11,12,13,12,12,12,12,12,12,11,15,4,4,4,4,14,12,12,12,12,12,12,13,12,13,11,12,12,12,12,13,12,12,12,12,12,12,15,5,5,5,14,15,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,11,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,15,14,12,12,13,12,12,12,13,12,12,15,14,12,12,15,5,5,5,5,5,5,5,5,14,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,11,11,11,12,12,13,143,13,13,12,13,12,12,13,12,12,12,12,12,12,12,12,15,5,5,5,5,5,5,5,14,12,12,12,12,13,12,13,13,12,12,12,15,5,5,5,14,12,13,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,13,12,12,12,12,12,12,12,12,12,12,11,11,11,12,12,11,11,12,13,12,13,12,12,12,12,12,12,11,15,4,4,14,12,12,12,12,13,13,13,12,12,13,12,12,13,12,13,12,13,12,12,12,12,15,14,12,12,12,15,5,4,4,4,4,4,4,4,4,4,4,4,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,14,15,4,4,4,4,4,14,11,11,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,13,12,13,12,13,12,12,12,12,12,12,12,12,13,12,12,12,13,12,13,13,12,13,12,13,12,13,12,13,12,12,12,12,12,12,12,12,15,5,14,12,15,14,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,11,11,11,11,11,13,13,12,12,13,12,13,12,12,13,13,12,12,12,13,12,12,12,12,15,5,5,5,5,5,5,14,12,12,12,12,12,12,12,13,13,12,12,13,15,14,13,13,12,13,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,13,12,13,12,12,12,12,12,12,11,11,12,12,12,12,11,12,13,12,12,12,13,13,12,12,12,12,12,12,15,14,12,12,12,13,13,12,12,12,12,12,12,13,13,12,13,12,12,13,12,12,12,15,14,12,12,12,12,11,12,12,12,15,4,4,4,4,4,4,4,4,5,14,15,5,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,14,11,11,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,12,12,12,12,13,12,12,12,13,13,13,13,12,13,12,13,12,12,12,12,13,12,12,12,13,12,12,12,13,12,12,12,12,12,12,15,14,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,143,12,11,12,12,13,12,12,12,12,12,13,13,12,12,12,13,12,12,13,12,12,12,12,12,12,12,15,5,5,5,5,5,14,12,12,12,13,12,12,12,12,13,13,12,13,15,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,13,12,13,12,13,12,12,12,11,12,12,12,12,11,11,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,11,11,12,12,11,11,12,12,12,15,5,4,4,4,4,4,5,5,5,5,5,5,5,4,4,4,4,4,4,4,4,4,4,4,4,4,5,14,11,11,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,15,14,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,13,13,12,12,13,12,12,12,12,12,12,13,12,12,13,12,12,12,12,13,12,13,12,12,13,12,15,5,5,5,5,5,14,13,12,12,12,12,13,12,12,12,15,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,13,12,13,12,12,11,11,12,12,11,11,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,11,11,11,11,11,12,12,12,15,14,12,15,4,4,4,5,5,5,5,5,5,5,5,5,5,4,4,4,4,5,5,5,5,14,12,12,12,11,11,11,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,15,14,12,12,12,12,12,13,12,12,12,13,12,12,12,12,12,12,12,12,12,13,13,12,13,12,12,12,12,12,12,13,13,12,13,13,12,12,12,12,12,13,13,13,13,12,12,12,12,12,12,13,12,15,5,5,5,5,5,14,13,12,12,13,12,12,12,15,5,5,5,14,12,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,13,12,12,11,11,11,11,13,12,12,12,12,12,12,12,12,12,13,12,12,13,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,11,11,11,11,12,12,12,11,12,12,12,12,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,12,12,12,12,12,12,12,12,12,11,11,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,15,14,12,12,12,12,12,13,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,15,5,5,5,14,12,12,12,13,12,13,12,12,12,15,5,14,12,12,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,11,11,11,11,11,11,11,12,12,12,12,12,12,15,5,5,5,5,5,5,5,14,12,12,12,12,12,15,14,12,12,13,12,13,12,13,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,12,12,12,12,13,12,12,12,13,12,12,12,12,12,13,12,12,13,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,12,11,11,12,12,12,12,12,12,12,15,14,12,12,15,14,11,11,11,15,14,12,13,12,12,12,12,12,13,12,13,12,13,12,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,12,12,12,13,12,12,13,12,12,13,12,12,12,12,13,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,13,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,13,12,12,13,12,12,13,15,14,15,14,12,12,12,12,15,14,11,11,12,12,13,12,13,12,13,12,13,12,12,12,12,12,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,13,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,13,12,12,12,13,13,13,12,12,12,12,12,12,13,13,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,13,13,12,13,13,12,13,15,14,12,13,13,13,12,12,13,12,13,13,13,12,12,12,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,13,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,12,12,12,12,12,12,12,12,12,12,],
[12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,13,13,12,12,12,13,13,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,13,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,12,],
];
return map5u;
}

View file

@ -0,0 +1,261 @@
exports.map = function() {
var map5=[
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,3,2,2,2,2,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,52,14,15,53,3,2,2,2,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,53,52,14,12,12,12,15,53,3,2,2,2,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,14,13,12,13,12,12,15,3,2,2,2,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,164,14,12,11,11,12,15,53,3,2,2,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,14,12,13,15,14,12,11,15,3,2,2,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,1,1,1,1,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,14,12,18,12,13,15,54,3,2,2,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,52,3,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,3,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,14,12,13,12,15,54,3,2,2,2,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,48,54,3,2,2,2,2,2,2,2,2,3,3,3,3,2,2,2,2,2,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,55,14,15,54,3,2,2,2,2,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,5,49,3,2,2,2,2,2,2,2,2,3,52,4,4,3,2,2,3,3,3,3,25,4,4,53,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,3,2,2,2,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,51,5,54,3,2,2,2,2,2,2,2,3,52,4,4,4,3,2,2,2,2,3,3,55,4,8,8,8,8,53,3,3,3,3,2,2,2,2,2,2,2,3,3,3,3,2,2,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,5,49,3,2,2,2,1,2,2,2,3,52,4,4,5,54,3,2,2,2,2,2,2,3,55,8,8,8,8,8,8,8,8,53,3,3,3,3,2,3,3,52,4,4,53,3,2,2,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,3,3,52,54,52,48,53,52,53,3,2,2,3,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,51,5,49,3,2,2,1,1,2,2,2,3,51,5,5,49,3,2,2,2,2,2,2,2,2,3,55,50,8,8,9,9,9,8,8,8,8,48,53,3,52,4,4,4,4,4,53,3,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,52,53,52,14,12,12,12,12,12,15,53,3,52,54,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,53,100,6,5,53,3,2,1,1,2,2,3,52,5,5,5,49,3,2,2,2,2,2,2,2,2,2,3,3,55,8,8,9,9,9,9,9,9,8,8,110,8,5,4,4,4,4,4,3,2,3,3,2,2,1,1,1,2,2,2,1,1,1,1,2,2,2,2,2,2,3,52,14,15,53,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,52,14,12,12,12,12,13,12,12,12,12,12,12,11,15,53,3,2,2,2,2,1,1,2,2,2,2,2,2,2,2,52,53,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,3,52,53,52,53,3,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,5,110,5,8,49,3,2,1,2,2,3,52,5,5,5,5,54,3,2,2,2,2,2,1,1,2,2,2,2,3,55,8,8,9,9,9,9,9,9,9,9,8,8,5,5,5,4,54,3,2,3,2,2,2,2,2,2,2,2,2,2,2,1,2,2,2,2,2,3,3,52,14,11,11,11,11,15,53,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,52,14,15,14,11,11,12,12,12,11,11,12,12,12,12,12,11,15,53,3,2,2,2,2,2,2,2,2,2,2,2,2,3,51,5,53,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,3,52,48,110,5,30,7,31,53,52,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,6,6,5,5,6,53,3,2,2,3,3,51,5,5,5,49,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,55,8,8,8,9,9,9,9,9,9,9,8,8,8,5,4,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,52,14,11,11,11,12,12,12,11,11,15,53,3,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,3,53,52,5,5,50,50,14,11,11,11,11,15,14,11,13,12,12,12,13,11,5,53,2,2,2,2,2,2,2,2,2,3,3,3,52,8,8,49,3,2,2,2,1,1,1,1,1,2,2,2,2,2,52,48,5,30,31,30,7,7,7,31,49,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,9,10,8,8,6,5,49,3,2,3,52,48,5,5,5,5,54,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,3,55,8,8,9,9,9,9,9,9,9,9,8,8,8,54,3,2,2,2,2,2,2,2,2,3,3,3,3,2,2,2,2,2,3,52,8,8,8,14,11,12,12,12,12,12,12,11,15,53,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3,3,55,5,5,49,3,3,3,55,14,11,11,15,5,14,11,12,12,12,12,12,15,49,3,2,2,2,2,2,2,2,3,52,11,48,8,8,8,49,3,2,2,2,1,1,1,1,1,2,2,2,2,3,51,5,30,7,7,7,7,7,31,5,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,52,52,9,9,9,9,8,6,5,53,3,52,6,5,5,5,5,49,3,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,3,52,8,8,9,9,9,9,9,9,9,9,8,8,8,3,2,2,2,2,2,2,2,2,3,52,4,48,53,3,3,3,3,3,52,8,8,8,8,8,14,11,11,11,12,12,12,12,11,15,3,2,2,2,2,1,1,1,1,1,1,1,2,2,3,3,52,5,50,54,3,2,2,3,55,14,15,5,5,5,5,14,12,12,12,12,15,5,48,53,3,2,2,2,2,3,52,11,11,8,8,8,50,54,2,2,2,1,1,1,1,1,3,3,2,2,3,52,5,30,7,47,7,7,7,31,5,54,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,6,6,9,9,9,9,10,6,49,3,51,8,6,5,5,5,49,3,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,55,5,8,8,9,9,9,9,9,9,8,8,8,54,3,2,2,2,2,2,2,2,3,52,4,4,5,5,48,48,53,52,8,8,8,8,8,8,8,8,8,14,11,11,12,12,24,11,15,53,3,2,2,2,1,1,1,1,1,1,1,2,2,3,3,51,54,3,3,2,2,71,71,71,5,5,5,5,5,20,5,11,12,12,12,12,11,15,54,3,2,2,2,3,52,11,11,11,8,8,54,3,2,2,2,2,1,1,1,1,2,2,3,3,3,52,5,30,7,7,7,7,7,31,5,111,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,6,9,9,9,10,9,9,8,8,96,6,8,8,6,5,5,49,52,53,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,52,5,5,8,8,9,9,9,9,8,8,8,54,3,2,2,2,2,2,2,2,2,3,4,4,4,4,5,5,5,5,5,5,5,6,8,8,8,8,8,8,8,8,14,11,12,12,12,12,15,3,2,2,2,1,1,1,1,1,1,1,2,2,2,3,51,48,53,3,2,2,2,2,3,51,5,5,14,15,5,5,14,11,12,12,12,11,49,3,2,2,3,3,52,11,11,11,8,8,5,53,2,2,2,2,1,1,1,1,2,2,2,2,55,98,109,5,30,7,7,7,7,7,7,31,54,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,6,6,9,9,9,9,9,8,8,8,96,5,6,8,8,8,5,5,5,49,3,2,2,2,1,1,1,1,1,2,2,3,3,3,52,5,5,5,5,8,8,8,8,8,8,8,49,52,3,2,2,2,2,2,2,2,3,52,4,4,54,3,55,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,8,14,11,11,12,12,15,53,2,2,2,2,1,1,1,1,1,1,2,2,2,3,55,5,49,3,2,2,2,2,3,55,108,14,11,5,5,14,11,11,12,12,12,15,5,53,53,2,52,11,11,11,11,11,5,5,5,54,2,2,2,2,1,1,1,2,2,2,3,3,52,5,30,7,7,7,47,7,7,31,50,5,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,9,9,10,9,9,9,9,8,99,97,104,6,5,6,8,8,6,5,5,54,3,2,2,2,1,1,1,2,2,2,3,3,55,53,51,5,5,5,5,5,5,8,8,8,8,54,55,54,3,2,2,2,2,2,2,2,3,54,3,3,3,2,3,55,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,14,11,11,12,12,15,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,51,54,3,2,2,3,3,3,3,3,14,11,11,15,14,11,13,12,12,12,15,4,4,4,96,11,11,11,11,11,5,5,5,54,2,2,2,2,2,1,1,2,2,52,53,52,48,5,30,7,7,28,7,7,7,31,54,3,55,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,53,9,9,9,10,9,8,8,5,106,5,96,6,6,8,9,9,9,8,5,53,3,2,2,2,2,2,2,2,2,3,55,53,3,51,5,5,5,5,5,5,5,5,5,5,5,53,3,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,2,3,51,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,11,11,11,12,12,2,2,2,2,1,1,1,1,1,1,1,2,2,2,3,51,53,3,2,2,3,27,53,3,52,14,11,12,13,15,14,12,12,12,11,11,4,4,99,105,109,11,11,11,11,5,5,49,3,2,2,2,2,2,2,2,2,2,55,5,5,5,30,7,7,7,7,7,7,31,49,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,51,9,9,9,9,9,8,8,99,97,104,5,106,5,6,8,9,9,9,9,6,49,3,2,2,2,2,2,2,2,2,2,3,51,48,5,5,5,5,5,5,5,5,5,5,5,5,54,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,55,54,55,5,5,5,5,5,5,5,5,5,5,5,6,8,8,14,11,11,12,15,2,2,2,2,1,1,1,1,1,1,1,2,2,2,3,55,54,3,2,2,3,55,5,48,14,12,12,12,12,15,14,11,11,11,11,11,15,4,110,4,4,4,11,11,5,5,5,49,3,2,2,2,2,2,2,2,2,3,3,14,15,30,7,31,30,7,7,7,31,5,54,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,6,9,9,9,8,8,99,101,6,96,8,98,100,8,8,8,9,9,9,8,5,53,3,3,2,2,2,2,2,2,3,52,5,5,5,5,5,5,5,5,5,5,5,5,5,49,3,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,3,3,3,51,5,5,5,5,5,5,5,5,5,5,5,8,8,8,11,12,12,54,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,3,3,2,2,2,2,3,55,13,12,12,12,11,11,11,15,14,11,11,14,15,8,4,4,4,4,8,8,5,5,5,5,54,2,2,2,2,2,2,2,2,3,3,52,11,11,15,5,8,8,8,5,5,5,54,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,52,6,9,10,9,8,8,96,6,8,96,8,6,96,6,8,8,9,9,9,8,6,49,52,53,3,2,2,3,3,3,52,5,5,5,5,5,5,6,6,5,5,5,5,5,5,99,3,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,51,5,5,5,5,5,5,5,5,5,5,5,6,8,8,11,12,15,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,55,24,12,11,50,54,109,14,11,11,11,8,8,8,8,8,8,8,8,8,5,5,49,3,2,2,2,2,2,2,3,3,52,48,14,11,11,5,8,8,8,8,8,8,5,53,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,52,6,9,9,9,9,8,8,110,8,6,96,8,8,102,97,100,8,9,9,9,9,8,5,5,54,3,2,3,52,48,48,5,5,5,5,5,6,8,8,6,5,5,5,5,5,111,101,53,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,3,51,5,5,5,5,5,5,5,5,5,5,5,5,8,14,11,15,54,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,3,3,3,3,52,14,11,11,4,4,8,8,8,8,8,8,8,8,8,8,8,54,2,2,2,2,3,3,52,48,48,14,11,11,11,15,5,8,8,8,8,8,8,8,54,3,2,2,2,2,2,3,3,3,3,2,2,2,2,2,2,2,2,2,2,3,3,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,51,8,10,9,9,9,9,8,8,8,99,101,8,8,96,6,110,8,9,9,9,9,8,6,5,53,3,2,3,55,5,5,5,5,5,5,6,6,8,8,5,5,5,5,5,5,50,50,54,3,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,55,53,51,5,5,5,5,5,5,5,5,5,5,5,5,8,11,12,15,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,55,14,15,99,100,4,8,8,8,8,8,8,8,8,8,8,54,3,2,3,3,52,48,48,8,8,8,8,11,11,11,11,14,11,8,8,8,8,14,15,3,2,2,2,2,2,3,52,48,48,53,3,2,2,2,2,2,2,2,2,3,52,48,48,53,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,3,52,6,8,10,9,9,9,9,9,8,8,96,8,8,99,101,8,8,8,9,9,9,9,8,8,5,5,53,3,3,52,5,5,5,5,5,6,8,8,8,6,5,5,5,5,5,54,3,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,3,52,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,11,15,54,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,3,3,101,8,8,8,8,8,8,8,8,8,50,54,3,3,52,48,48,5,5,8,8,8,8,8,14,11,11,14,12,11,11,8,8,14,15,54,3,2,52,53,3,52,48,5,30,31,5,53,3,2,2,2,2,2,2,3,52,5,5,8,8,53,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,3,3,52,48,48,5,6,6,9,9,9,9,9,9,9,8,110,8,8,96,8,8,8,9,9,9,9,9,8,6,5,5,5,48,98,100,6,5,5,5,6,8,8,8,6,5,5,5,5,5,49,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,3,3,52,48,8,5,5,5,5,5,5,5,5,5,5,5,5,5,14,15,54,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,52,8,14,11,15,8,8,8,8,8,54,2,52,48,48,8,8,5,5,5,5,5,8,8,8,14,11,14,12,12,12,11,15,14,11,54,3,3,3,55,5,48,30,7,7,7,7,31,5,53,3,3,3,2,3,52,48,5,5,5,5,8,8,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,53,52,48,5,5,5,5,5,6,8,9,9,9,9,9,9,8,8,8,8,110,8,8,8,9,9,9,9,8,8,5,5,5,5,5,6,96,8,6,5,6,8,8,8,8,6,5,5,5,5,5,54,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,52,48,96,48,8,8,8,5,5,5,5,5,5,5,5,5,5,108,5,5,5,54,3,2,2,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,51,14,11,11,8,8,8,8,8,8,102,52,8,8,8,8,5,5,5,5,5,5,5,8,14,15,14,12,12,12,12,12,12,11,15,53,3,52,48,48,30,7,7,7,7,7,7,7,7,31,48,48,53,3,52,5,5,5,5,5,5,8,8,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,51,5,5,5,5,5,5,5,5,5,8,10,9,9,9,9,9,9,8,8,8,8,8,8,9,9,9,9,9,8,6,5,5,5,5,5,8,98,100,8,8,8,8,8,8,8,5,5,5,5,5,49,3,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,52,48,8,99,105,100,8,8,5,5,5,5,5,5,5,5,5,5,5,98,55,50,54,3,2,2,2,2,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,14,11,11,8,8,8,8,99,100,8,96,8,8,8,8,5,5,5,5,5,5,5,5,8,8,8,14,11,12,12,12,12,11,11,11,99,101,5,30,7,7,7,7,7,7,7,7,7,7,7,31,5,8,96,8,5,5,5,5,5,8,8,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,5,5,5,5,5,5,5,5,5,6,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,6,5,5,5,6,8,8,96,8,8,8,8,8,8,6,5,5,5,108,5,49,3,2,2,2,2,2,2,2,2,2,2,2,3,3,52,48,8,8,8,98,103,101,8,8,5,5,5,5,5,5,5,5,5,5,5,5,53,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,52,11,11,15,8,8,8,8,96,98,97,104,8,8,8,8,5,5,5,5,5,5,5,5,5,8,8,8,11,12,12,12,11,11,15,99,101,5,30,7,7,7,7,7,7,7,7,7,7,7,31,5,8,8,96,8,8,8,5,5,8,8,8,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,52,5,5,5,5,5,5,35,33,33,33,33,33,33,33,36,10,9,9,9,9,9,9,9,9,9,9,9,9,9,8,8,5,5,5,8,8,99,105,100,8,8,8,8,8,5,5,5,5,53,55,54,3,2,2,2,2,2,2,2,2,3,3,3,52,48,8,8,8,8,8,8,110,8,8,5,5,5,5,5,5,5,5,5,5,5,5,5,99,3,3,3,2,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,52,14,11,15,8,8,8,8,8,110,8,8,106,8,8,8,8,8,5,5,5,5,5,5,5,5,8,8,8,14,11,12,12,11,99,97,105,100,30,7,7,7,7,7,7,47,7,7,7,31,5,6,8,8,99,105,100,8,8,8,8,8,8,54,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,2,2,2,3,3,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,52,5,5,5,35,33,33,33,37,10,9,9,9,9,9,10,5,5,9,9,9,9,9,9,9,9,9,9,9,9,9,10,8,6,5,6,8,8,96,6,102,97,100,8,8,6,5,5,5,5,49,3,3,2,2,2,2,2,2,2,2,3,52,53,52,8,8,8,8,8,8,8,8,8,8,5,5,5,5,5,5,5,5,5,5,5,5,6,99,101,53,3,52,3,2,3,3,2,2,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,52,14,11,11,15,5,5,6,8,8,8,8,8,99,105,100,8,8,8,8,5,5,5,5,5,5,5,5,5,8,8,8,11,12,12,11,110,8,99,105,100,30,7,7,7,7,7,7,7,7,7,7,31,8,99,97,104,8,98,100,5,8,8,8,5,53,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,2,2,2,3,3,2,2,2,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,51,5,35,33,37,6,9,9,9,9,9,9,9,108,9,9,5,5,5,10,9,9,9,9,9,9,9,9,9,9,9,9,8,6,6,8,8,99,101,8,96,8,110,8,8,5,5,5,5,5,54,3,2,2,2,2,2,2,2,2,2,3,55,8,8,8,8,8,8,8,8,8,8,5,5,5,5,5,5,5,5,5,5,5,5,6,8,99,101,5,5,48,54,3,3,52,53,3,3,52,11,11,53,3,3,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,3,52,14,11,11,15,5,5,5,5,6,8,8,8,99,101,8,96,8,8,8,8,8,5,5,5,5,5,5,5,5,8,8,8,14,12,11,11,11,8,98,100,110,5,30,7,47,7,7,7,7,7,7,7,31,8,110,8,96,99,97,101,5,5,5,5,5,49,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,2,2,2,2,3,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,3,55,5,32,6,9,9,10,9,9,9,9,9,99,101,9,9,9,5,5,33,36,9,9,9,9,9,9,9,9,9,9,9,9,6,8,8,111,101,8,8,96,8,8,8,6,5,5,5,5,54,3,2,2,2,2,2,2,2,2,3,3,52,53,109,8,8,8,8,8,8,8,8,5,5,5,5,5,5,5,5,5,5,6,5,6,8,8,106,8,6,5,49,3,3,3,51,54,52,14,12,12,11,15,53,52,48,53,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,3,3,52,5,5,14,15,5,5,5,5,5,6,8,8,8,98,100,8,102,97,100,8,8,8,6,5,5,5,5,5,5,5,5,8,8,14,12,11,11,15,8,111,101,5,30,7,7,7,28,47,7,7,7,7,7,7,31,8,111,101,98,100,5,30,7,7,7,31,5,53,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,2,2,2,3,3,52,48,48,48,53,3,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,3,52,53,52,5,32,10,9,9,9,9,9,9,9,99,101,9,9,9,9,10,9,9,32,9,9,9,9,9,9,9,9,9,9,9,10,9,6,8,8,8,8,99,101,8,8,6,5,5,5,5,49,3,2,2,2,2,2,2,2,2,3,52,110,5,5,5,5,5,8,8,8,8,5,5,5,5,5,5,5,5,5,5,5,5,8,8,8,8,99,101,8,8,6,99,101,53,52,54,3,14,11,12,12,12,11,15,5,5,49,3,2,2,2,2,1,1,1,1,2,2,2,2,2,3,52,48,5,5,5,5,5,5,5,5,5,5,8,8,8,99,97,101,8,96,8,96,8,8,8,8,5,5,5,5,5,5,5,5,5,8,11,11,11,11,8,8,8,5,30,7,7,7,47,7,7,7,7,7,47,7,7,7,31,8,8,8,110,30,7,7,7,7,31,14,15,53,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,2,2,3,52,48,5,6,6,5,5,53,3,3,2,2,2,2,1,1,1,1,1,1,1,2,2,2,3,55,50,5,5,32,9,9,9,9,9,9,9,99,101,9,9,9,99,97,97,109,9,34,36,9,10,9,9,9,10,9,9,9,9,9,9,9,6,8,8,99,101,8,8,8,5,5,5,5,5,54,3,2,2,2,2,2,2,2,2,3,51,5,5,5,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,8,96,8,8,8,8,106,8,5,5,53,52,5,14,11,11,12,12,11,15,5,54,3,2,2,2,2,1,1,1,2,2,2,2,2,3,3,55,5,8,5,5,5,5,5,5,5,5,5,8,8,8,96,8,8,99,101,8,102,97,100,8,8,6,5,5,5,5,5,5,5,5,14,11,11,11,15,5,5,5,30,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,31,30,7,7,7,7,7,7,31,14,11,15,53,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,2,3,52,4,4,5,8,8,8,5,5,48,53,3,2,2,2,2,1,1,1,1,1,2,2,2,2,2,3,3,55,5,34,36,9,10,9,8,8,99,101,9,9,99,97,101,8,9,9,9,9,34,36,9,8,8,8,9,9,9,9,9,9,9,9,108,8,99,101,8,8,8,8,6,5,5,5,54,3,2,2,2,2,2,2,2,2,3,52,5,5,6,8,8,8,8,6,5,5,5,5,5,5,5,5,5,5,5,5,5,8,8,8,99,97,103,101,8,8,99,97,104,8,8,5,5,5,5,5,14,11,12,12,12,11,15,3,2,2,2,2,1,1,1,1,2,2,2,2,3,52,48,110,8,8,5,14,15,5,5,5,5,5,5,8,8,8,110,8,8,98,100,8,96,99,101,8,8,8,5,5,5,5,5,5,5,5,5,11,12,11,5,164,30,7,7,47,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,31,14,11,15,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,2,3,55,4,4,4,5,8,8,8,5,5,5,53,3,3,2,2,2,2,1,1,2,2,2,2,2,2,2,2,3,55,50,34,33,36,8,8,99,101,8,99,97,101,6,8,9,9,9,9,9,9,34,33,5,5,8,8,9,9,9,9,9,9,10,98,97,101,8,8,8,8,6,6,5,5,49,3,2,2,2,2,2,2,2,2,2,3,51,5,6,8,10,10,9,10,8,8,6,5,5,5,5,5,5,5,5,5,5,5,8,8,111,101,8,96,6,8,8,98,100,102,97,100,5,5,5,5,5,5,14,11,12,12,15,54,3,2,2,2,2,1,1,1,2,2,2,2,2,3,55,5,8,8,8,5,5,14,15,5,5,5,5,5,8,8,8,8,99,100,99,101,99,101,98,100,8,8,6,5,5,5,5,5,5,5,5,14,11,12,11,15,30,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,47,7,7,7,7,7,7,7,31,5,14,11,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,2,2,3,3,55,4,5,5,8,6,5,5,5,54,52,53,3,2,2,2,2,2,2,2,2,3,3,3,2,3,3,3,3,97,100,32,8,8,102,97,97,101,99,97,97,109,9,9,9,9,10,9,9,8,5,20,5,8,9,9,9,9,9,10,9,9,9,9,9,9,8,8,6,5,5,5,49,2,2,2,2,2,2,2,2,3,3,52,5,5,8,10,10,10,9,9,9,10,8,5,5,5,5,5,5,5,5,5,5,5,8,8,8,8,8,102,97,100,8,111,101,96,8,110,6,5,5,5,5,5,5,11,12,12,15,3,2,2,2,2,1,1,1,1,2,2,2,2,2,3,52,5,8,8,5,5,14,11,15,5,5,5,5,5,6,8,8,8,96,98,104,8,98,100,8,110,8,8,5,5,5,5,5,5,5,5,5,11,12,12,11,11,15,30,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,31,30,7,7,31,50,50,54,54,2,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,2,2,2,3,3,55,5,5,5,5,6,5,48,5,54,3,2,2,2,2,2,3,3,3,3,3,3,3,52,48,48,6,8,98,107,103,97,101,8,6,99,101,6,8,9,10,9,9,9,9,9,9,8,8,5,5,8,9,9,9,9,9,9,108,9,9,9,9,9,8,8,5,5,5,5,49,2,2,2,2,2,2,3,3,52,53,51,5,6,8,9,10,9,10,9,10,9,8,5,5,5,5,5,5,5,5,5,5,5,8,8,8,6,99,101,6,98,100,6,99,101,8,8,8,5,5,5,5,5,5,14,11,12,12,53,2,2,2,2,1,1,1,1,2,2,2,2,2,3,51,5,8,5,5,14,11,11,15,5,5,5,5,5,5,8,8,8,98,100,96,8,8,96,8,8,8,6,5,5,5,5,5,5,5,5,14,11,12,12,11,11,11,15,30,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,31,5,30,31,50,54,3,3,3,2,3,52,14,15,53,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,2,2,2,2,2,3,51,5,5,6,8,8,5,5,53,3,2,3,3,2,2,2,2,3,3,52,48,48,6,8,6,6,8,8,32,96,6,8,8,99,101,99,100,6,8,9,9,9,9,9,9,9,9,8,8,8,9,9,9,10,9,9,99,101,10,9,9,9,9,9,8,6,5,5,5,54,2,2,2,3,3,3,52,53,52,5,5,6,8,9,10,9,9,9,10,9,10,8,5,5,5,5,5,5,5,5,5,5,6,8,6,99,97,104,8,8,99,101,99,105,100,6,8,6,5,5,5,5,5,5,5,14,11,12,15,3,2,2,2,2,1,1,2,2,2,2,2,2,3,51,5,5,5,14,11,12,12,15,5,5,5,5,5,6,8,8,99,97,101,96,8,8,110,8,8,8,5,5,5,5,5,5,5,5,5,11,12,12,12,12,11,11,11,15,30,7,7,7,7,7,7,25,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,31,54,3,3,3,2,2,2,3,8,8,14,15,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,2,2,2,2,2,3,55,5,5,8,8,8,6,5,49,3,3,3,3,3,3,2,2,52,48,5,6,8,6,8,8,6,8,35,37,102,97,103,97,105,97,101,98,97,100,6,99,100,6,9,9,9,9,10,9,9,9,9,9,9,9,9,98,100,6,8,9,9,9,9,8,8,6,6,6,53,3,2,3,52,53,3,51,5,5,6,8,8,9,10,10,9,10,9,10,9,8,6,5,5,5,5,5,5,5,5,5,5,5,6,99,101,8,98,100,8,110,99,101,99,101,5,5,5,5,5,5,5,5,5,5,5,11,11,15,53,2,2,2,2,2,2,2,2,2,2,2,2,3,55,5,5,14,11,12,12,12,11,15,5,5,5,5,8,8,8,96,8,8,98,100,8,8,8,8,8,5,5,5,5,5,5,5,6,8,11,12,12,12,12,11,108,11,11,15,30,7,7,7,7,7,7,28,7,7,7,7,7,7,7,7,7,7,7,7,7,31,54,3,3,2,2,2,2,2,3,55,8,14,11,15,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,2,2,2,2,2,3,51,5,6,8,8,8,6,5,53,52,53,3,3,3,52,6,6,5,5,5,8,8,8,35,33,33,37,99,101,8,96,6,8,6,8,8,6,98,97,101,96,6,99,100,6,9,9,9,10,9,9,9,9,9,10,8,98,100,6,8,8,9,9,8,8,8,6,8,54,3,3,3,55,5,53,51,5,8,8,9,9,9,9,9,9,10,10,10,8,6,5,5,5,5,5,5,5,99,97,100,5,5,99,101,8,8,99,101,6,99,101,99,101,5,5,5,5,5,5,5,5,5,5,5,5,14,11,11,11,2,2,2,2,2,2,2,2,2,2,2,2,2,3,51,5,5,14,12,12,12,12,15,5,5,5,5,8,8,8,110,8,8,8,96,8,8,8,8,6,5,5,5,5,5,5,5,8,8,11,11,12,12,12,11,96,14,15,30,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,31,30,7,7,7,31,53,3,2,2,3,3,3,3,2,3,55,6,14,15,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,2,2,2,2,2,3,55,5,5,8,8,8,8,5,6,6,49,3,52,48,6,8,6,5,5,5,5,35,33,37,9,9,6,98,100,6,98,97,103,97,100,9,9,9,9,6,98,100,96,98,97,109,9,9,9,9,9,9,9,9,8,8,6,98,97,100,8,8,8,8,8,8,6,54,3,52,48,48,98,100,5,5,6,8,9,9,10,9,10,10,10,9,10,8,6,5,5,5,5,5,5,5,99,101,5,98,97,103,101,5,6,8,96,8,8,110,5,96,5,5,5,5,5,5,5,5,5,5,5,5,5,5,11,11,15,3,2,2,2,2,2,2,2,2,2,2,2,2,3,55,5,5,5,14,12,12,12,11,5,5,5,5,6,8,8,8,8,8,8,96,8,8,8,8,5,5,5,5,5,5,5,6,8,8,8,11,12,12,12,11,98,100,5,30,7,7,7,7,7,7,7,7,7,7,7,7,31,30,7,31,30,7,7,7,47,7,31,3,2,3,52,30,31,53,3,3,52,8,5,5,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,2,2,2,2,2,3,51,5,6,8,8,8,8,8,8,6,96,8,8,8,5,5,5,5,5,35,37,9,9,9,9,8,6,98,109,8,8,96,8,98,100,9,9,9,9,6,98,101,6,9,9,9,9,9,9,9,9,9,10,111,100,6,8,8,96,6,8,8,6,99,97,97,101,6,6,5,5,6,96,5,5,8,9,9,10,9,9,10,9,9,10,9,8,6,5,5,5,5,5,5,111,101,5,5,5,99,101,5,5,5,99,101,8,6,5,99,101,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,11,11,53,2,2,2,2,2,2,2,2,2,2,2,2,2,3,51,5,5,14,12,12,12,11,15,5,5,5,5,6,8,8,8,8,8,96,8,8,8,6,5,5,5,5,5,5,5,8,8,8,8,11,12,12,11,11,54,3,51,5,30,7,7,7,7,7,7,7,7,47,7,7,31,108,30,31,108,30,7,7,7,7,31,3,2,3,30,7,7,31,53,52,8,8,6,14,15,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,2,2,2,2,3,55,5,5,8,8,8,8,8,8,8,98,100,8,6,5,5,21,33,33,37,8,9,9,9,9,9,9,8,8,8,8,98,100,9,98,100,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,98,100,6,99,105,97,103,97,97,101,8,8,8,8,8,6,5,8,102,100,5,8,9,9,9,9,9,9,10,9,9,9,10,8,8,6,5,5,5,5,5,5,5,5,99,101,5,5,99,97,101,5,5,5,99,101,5,5,5,5,5,5,5,5,5,5,5,5,5,5,99,100,11,11,15,53,2,2,2,2,2,2,2,2,2,2,2,2,3,55,108,14,11,12,12,11,11,11,5,5,5,5,5,6,8,8,8,8,110,8,8,6,5,5,5,5,5,5,5,5,8,8,8,8,11,12,12,11,54,3,3,51,30,7,7,7,7,7,7,7,7,7,7,7,7,31,98,100,8,102,109,30,7,7,31,54,3,2,3,30,7,7,31,6,8,9,9,8,5,49,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,2,2,2,2,3,55,5,6,8,8,8,6,8,8,6,102,97,100,5,5,5,5,5,6,8,9,9,9,9,9,9,9,9,8,8,8,110,9,9,98,97,97,100,9,9,9,9,9,8,8,9,10,9,9,10,9,9,8,8,98,97,101,8,6,96,8,8,8,8,8,8,8,8,6,6,99,101,98,100,6,8,9,9,8,8,9,9,10,10,9,10,9,10,8,6,5,5,5,5,5,5,5,110,5,5,99,101,5,5,5,5,5,110,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,98,3,100,11,15,54,3,2,3,3,3,3,3,2,2,2,2,2,2,3,52,14,12,12,12,11,11,11,15,5,5,5,5,5,5,6,8,8,8,6,5,5,5,5,5,5,5,5,5,5,8,8,8,8,11,11,12,15,3,2,3,55,30,7,7,7,7,47,7,7,7,7,7,7,7,7,31,98,97,104,8,30,31,50,54,3,2,2,3,30,7,47,7,31,9,10,9,10,5,49,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,2,2,2,3,51,5,6,8,8,8,6,8,8,98,100,98,100,5,5,5,6,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,110,9,9,9,8,8,8,8,8,9,9,9,9,9,10,9,8,8,8,6,8,99,101,8,8,9,10,9,8,8,6,8,99,105,97,100,98,100,8,8,8,6,6,8,9,9,9,10,9,10,9,9,10,8,5,5,5,5,5,5,5,5,5,96,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,49,3,105,100,54,3,3,3,52,53,52,48,53,3,2,2,2,2,3,52,14,11,12,12,11,11,11,11,11,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,8,8,8,8,11,12,15,3,2,2,3,51,30,7,7,7,7,7,7,7,7,7,7,7,47,7,31,8,98,100,30,54,3,3,2,2,2,3,55,30,7,31,8,9,9,9,9,9,5,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,5,5,6,6,8,6,8,8,6,98,100,96,8,5,6,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,8,8,8,8,8,9,9,9,9,9,9,9,9,9,10,8,8,111,101,8,8,10,9,9,10,8,8,8,99,101,5,99,101,5,96,5,5,5,14,15,6,8,9,10,10,9,10,9,10,9,9,8,5,5,5,5,5,5,5,111,101,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,98,103,3,3,3,52,11,11,11,15,5,49,3,2,2,2,2,3,55,14,12,12,11,11,11,12,12,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,8,8,8,11,11,11,53,3,2,3,51,30,7,7,7,7,31,8,30,7,7,7,7,7,7,7,7,31,98,97,3,2,2,2,2,2,2,3,51,30,7,31,9,10,9,10,9,14,15,53,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,5,5,5,5,6,8,8,8,99,101,98,109,6,6,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,8,8,8,8,9,9,9,9,10,9,9,9,9,9,10,9,10,10,8,8,8,8,10,9,10,9,8,8,6,8,98,100,6,96,5,5,98,100,5,5,14,15,5,6,8,10,9,10,9,10,9,9,10,9,8,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,9,9,9,9,9,9,6,5,5,5,5,5,5,5,5,49,104,102,101,11,11,11,11,11,11,15,5,53,3,3,2,2,2,3,55,12,11,11,11,12,12,12,11,11,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,4,5,5,5,5,5,8,8,8,8,11,11,15,3,2,3,30,7,7,7,7,31,8,108,8,8,108,30,7,7,7,31,14,11,11,15,53,3,2,2,3,2,2,3,55,5,30,31,6,9,9,9,9,14,11,54,52,54,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,51,5,6,6,8,108,8,8,110,8,8,8,8,6,8,8,8,8,8,9,9,9,9,9,9,9,9,9,9,9,9,9,8,8,8,8,8,9,9,9,10,9,9,9,9,8,8,8,10,9,10,10,10,10,9,10,10,9,10,9,10,8,8,5,6,99,101,5,110,5,5,5,98,100,14,11,11,5,5,8,9,9,9,9,10,9,9,9,10,8,5,5,5,5,5,5,5,5,5,5,5,5,5,6,9,9,9,9,9,9,9,9,9,9,6,5,5,5,5,5,5,5,98,104,11,11,11,11,12,12,12,11,15,49,52,53,3,2,2,3,52,14,11,11,11,12,12,12,12,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,8,8,8,8,11,15,3,2,3,55,30,7,7,7,7,31,98,100,99,101,5,30,7,7,31,5,14,11,15,49,3,2,2,3,3,2,2,3,55,6,8,8,9,10,9,10,9,11,15,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,5,5,8,99,101,8,8,8,8,8,6,14,11,15,6,8,8,8,8,8,9,9,9,9,9,9,9,8,8,8,8,8,8,8,8,9,9,9,9,9,9,9,10,9,8,8,8,8,9,9,10,10,10,10,10,9,10,10,9,8,8,6,6,99,101,6,5,5,5,5,5,5,96,5,14,11,15,5,6,8,10,9,10,9,10,10,10,9,8,5,5,5,5,5,5,5,5,5,5,5,5,6,8,9,9,9,9,9,9,9,9,9,9,9,6,5,5,5,5,5,5,5,110,11,12,12,12,12,12,12,12,15,14,15,54,3,2,2,3,55,14,15,5,11,11,12,12,12,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,8,8,8,8,49,3,2,3,52,5,30,7,7,7,7,99,101,96,8,5,5,30,7,7,7,31,14,11,15,53,3,2,2,3,2,2,2,3,55,6,9,9,10,10,9,9,14,11,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,5,99,101,6,8,6,6,8,6,14,15,6,6,14,15,6,6,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,9,10,9,9,10,9,9,9,9,9,8,8,8,8,8,10,10,10,10,9,10,10,8,8,8,6,5,6,110,8,6,5,5,5,5,5,5,110,14,15,11,11,5,5,8,9,10,9,10,9,10,9,8,6,5,5,5,5,5,5,5,5,5,5,6,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,9,6,5,5,5,5,14,11,11,11,11,12,12,12,12,12,12,11,11,53,3,2,2,3,52,5,5,5,14,11,12,12,12,11,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,8,8,8,54,2,2,3,51,30,7,7,7,7,31,98,97,104,8,108,30,7,7,7,31,54,55,14,11,15,3,2,2,2,2,2,2,3,52,9,10,9,9,9,9,14,11,15,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,53,53,97,105,100,99,100,99,109,14,15,6,8,8,14,11,15,8,8,6,8,8,8,8,8,8,8,8,8,9,10,9,8,8,8,8,8,9,9,9,9,9,10,9,10,9,9,9,8,8,8,8,10,10,10,10,9,8,8,6,6,5,5,5,6,6,5,5,14,11,15,5,5,5,14,11,14,11,15,5,6,8,9,10,9,10,8,8,6,5,5,5,5,5,5,5,5,5,5,5,9,9,9,9,9,9,8,8,8,8,8,8,9,9,9,9,9,9,5,5,5,5,5,5,14,11,11,11,11,11,12,12,12,11,11,15,53,3,2,3,51,5,5,14,11,12,12,12,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,8,8,49,3,2,2,52,30,7,7,7,7,7,7,31,8,102,97,101,5,30,7,31,54,3,3,3,55,54,2,2,2,2,2,2,3,52,9,9,9,10,9,9,14,11,15,54,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,8,8,6,98,101,98,101,14,11,11,15,8,14,11,15,6,8,8,8,6,8,8,9,9,8,8,8,9,9,9,10,9,8,8,8,8,9,9,10,9,10,9,9,9,9,10,9,8,8,8,8,10,9,10,10,9,8,8,8,5,5,5,5,5,5,14,15,5,14,11,15,5,14,11,11,15,11,11,5,5,6,8,8,8,8,6,5,5,5,5,5,5,5,5,5,5,5,5,5,9,9,9,9,9,8,8,4,4,4,4,8,8,9,9,9,9,9,6,5,5,5,5,5,5,5,14,11,11,11,11,12,12,12,11,11,49,3,3,52,5,5,5,14,12,12,12,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,6,5,5,5,5,5,5,5,5,8,8,53,2,3,30,7,7,7,16,7,7,7,31,99,101,5,5,5,5,5,49,3,2,2,2,3,3,3,2,2,2,2,3,52,9,9,9,10,9,10,9,11,15,54,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,53,14,11,8,8,14,11,11,11,11,15,6,8,6,6,6,8,8,8,6,8,8,9,9,9,10,9,9,10,9,10,9,9,9,9,8,8,8,9,9,10,9,9,10,9,9,9,8,8,8,9,10,9,10,9,10,10,9,8,8,6,5,5,5,5,14,15,14,11,11,11,5,5,5,14,11,11,14,11,11,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,9,9,9,9,8,8,4,4,4,4,4,4,8,8,9,9,9,9,9,5,5,5,5,5,5,5,5,8,11,11,11,12,12,12,11,15,54,3,3,51,14,15,14,11,12,12,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,8,8,8,8,8,8,8,6,5,5,5,5,5,5,8,54,3,2,3,30,7,7,7,7,7,7,31,50,96,5,5,5,5,5,50,54,3,2,2,2,2,3,3,3,2,2,2,3,9,9,10,10,10,9,10,9,11,54,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,14,11,11,15,14,11,11,13,12,15,6,8,8,9,9,9,9,8,8,8,8,8,9,10,9,9,9,9,9,10,9,10,9,10,9,9,8,8,8,8,9,9,9,9,9,8,8,8,8,9,10,10,10,10,10,10,9,9,8,6,5,5,5,5,5,5,5,5,14,11,15,5,5,14,11,11,15,14,11,11,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,9,9,9,9,9,8,4,4,4,108,4,4,4,4,8,8,9,9,9,9,6,5,5,5,5,5,5,5,8,14,11,11,11,12,12,11,54,3,3,52,14,15,14,11,11,11,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,8,8,8,8,8,6,5,5,5,5,49,3,2,2,3,55,30,7,7,7,7,31,54,3,3,55,5,5,5,54,3,3,2,2,2,2,3,52,11,3,2,2,3,52,9,10,9,10,10,10,9,14,15,53,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,11,11,15,14,11,13,12,12,11,15,8,8,9,9,9,10,9,9,9,8,8,8,8,9,9,10,9,10,9,16,10,9,10,9,10,9,8,8,8,8,8,8,8,8,8,6,6,8,10,10,9,10,10,10,10,9,10,9,8,5,5,5,5,5,5,5,5,14,11,11,5,5,14,11,11,11,11,12,11,11,11,11,11,15,5,5,14,15,5,5,5,5,5,5,5,5,5,5,5,9,9,9,9,9,8,4,108,4,96,4,108,4,108,4,8,8,9,9,9,9,5,5,5,5,5,5,5,8,8,11,11,11,13,12,11,96,53,3,14,13,11,11,11,11,11,15,8,8,5,5,5,5,5,5,5,5,5,5,5,6,5,8,8,8,8,8,108,8,8,8,8,8,6,5,5,5,49,3,2,2,2,3,55,30,7,7,31,54,3,2,2,3,55,54,55,53,3,2,2,2,2,3,52,11,11,53,3,2,3,9,9,9,10,9,10,9,9,9,5,49,3,52,48,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,14,11,11,11,13,12,11,15,6,8,8,8,10,9,10,9,9,10,9,9,8,8,8,8,9,9,10,9,9,10,9,9,10,9,9,8,8,8,8,6,8,8,8,8,6,6,8,10,9,10,10,10,9,10,10,10,9,9,6,5,5,5,5,5,5,5,14,11,11,15,5,5,5,14,11,11,13,12,12,11,11,11,11,11,15,14,15,5,5,5,5,5,5,5,5,5,5,5,5,9,9,9,9,9,8,4,98,97,104,4,98,103,101,4,4,8,9,9,9,9,5,5,5,5,5,5,8,8,8,11,11,12,12,11,15,96,99,52,12,13,12,11,11,11,15,8,8,8,8,5,5,5,5,5,5,5,5,5,5,5,8,8,8,8,108,99,101,8,8,108,8,8,8,5,5,5,49,3,2,2,2,2,3,51,30,31,54,3,2,2,2,2,3,3,52,5,53,3,2,2,2,3,8,8,11,11,3,2,3,9,10,9,9,9,9,9,8,8,8,5,48,5,5,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,14,11,12,12,11,15,54,55,5,8,8,8,8,9,10,9,9,10,9,9,8,8,8,9,9,9,10,10,9,10,9,9,8,8,8,8,6,5,5,5,6,6,6,8,8,9,10,10,10,10,10,10,9,10,9,9,8,6,5,5,5,5,5,5,5,5,14,15,5,5,5,14,11,11,12,13,12,12,15,14,11,11,11,11,11,11,14,11,15,5,5,5,5,5,5,5,5,5,9,9,9,9,9,8,4,4,99,101,4,4,98,100,4,108,8,9,9,9,9,5,5,5,5,5,5,8,8,8,14,11,13,12,11,54,3,52,14,13,12,12,11,11,15,8,8,8,8,8,5,5,5,5,5,5,5,5,5,5,5,6,8,108,8,96,98,97,100,8,96,8,8,8,6,5,54,55,53,3,2,2,2,3,55,54,3,3,2,2,2,2,2,2,3,55,50,54,3,2,2,2,3,8,8,11,54,3,2,3,14,15,9,9,9,9,8,8,8,8,8,5,5,49,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,14,11,11,15,54,3,3,55,54,55,6,8,8,8,10,9,9,10,9,9,10,9,9,10,10,9,10,9,9,8,8,8,6,5,5,5,5,5,5,5,5,8,8,10,9,9,10,10,9,10,10,10,10,8,8,6,5,5,5,5,5,5,5,5,5,5,5,5,14,11,11,11,13,13,12,13,13,11,11,11,13,12,12,11,11,11,11,11,11,11,15,5,5,5,5,5,5,6,9,9,9,9,8,8,4,98,97,100,4,4,102,97,101,8,9,9,9,9,5,5,5,5,5,5,8,8,8,8,11,12,11,15,102,52,14,11,12,13,12,11,15,8,8,8,8,8,8,8,5,5,5,5,5,5,5,5,5,5,5,8,98,97,104,8,6,102,97,101,8,8,8,8,8,53,3,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,3,3,3,2,2,2,2,3,8,8,54,3,2,2,3,55,14,11,15,9,8,8,8,8,8,8,8,5,5,53,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,3,3,3,2,2,3,3,3,55,6,8,8,9,9,10,9,10,10,9,9,10,10,9,9,8,8,8,8,6,5,5,5,5,5,5,164,5,5,5,8,8,10,10,10,9,10,10,10,10,8,8,8,6,5,5,5,5,5,5,5,5,5,5,5,5,14,11,11,11,13,12,12,12,12,12,11,11,11,12,12,13,12,11,11,11,11,11,11,11,11,15,5,5,5,5,5,6,9,9,9,9,8,8,4,4,96,4,99,101,4,8,8,9,9,9,9,5,5,5,5,5,5,6,8,8,8,11,12,11,111,101,14,11,13,13,12,11,15,8,8,8,8,8,8,8,8,5,5,5,5,5,5,5,5,5,5,5,8,8,99,101,6,99,101,4,6,8,8,8,6,4,54,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,55,8,3,2,2,2,2,3,55,14,11,11,15,8,108,25,108,8,8,8,5,49,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,3,3,2,2,2,2,3,51,8,8,8,9,9,10,9,10,9,9,10,8,8,8,8,6,5,5,5,5,5,5,5,5,5,5,5,5,5,8,8,9,9,9,10,9,10,8,8,8,8,6,5,5,5,5,5,5,5,5,5,14,15,5,14,11,11,11,11,13,12,22,12,12,11,11,11,12,12,12,12,13,11,11,11,15,5,14,11,15,5,5,5,5,5,5,5,9,9,9,9,9,8,8,4,98,97,104,4,8,8,9,9,9,9,8,5,5,5,5,5,5,5,8,8,8,14,11,13,11,11,11,13,12,12,13,11,15,8,8,8,8,8,8,8,8,5,5,5,5,5,5,5,5,5,5,5,6,8,96,99,97,104,4,4,4,6,8,4,4,54,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,1,1,2,2,2,2,3,55,53,3,2,2,2,3,52,11,11,12,11,15,98,97,104,8,8,8,8,8,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,3,2,2,2,2,3,55,6,8,8,10,9,9,10,9,9,8,8,8,8,6,5,5,5,5,6,8,8,8,6,5,5,5,5,5,6,8,8,8,10,10,9,6,5,8,8,6,5,5,5,5,5,14,15,5,5,14,11,11,11,15,5,14,11,11,13,12,12,11,12,12,11,11,11,12,12,13,11,11,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,6,9,9,9,9,9,8,8,8,4,96,8,8,9,9,9,9,9,8,5,5,5,5,5,5,5,6,8,8,8,14,11,13,12,13,12,12,12,12,13,11,15,8,8,8,8,8,8,8,5,5,5,5,5,5,5,5,5,5,5,5,8,98,101,4,98,100,4,4,4,4,4,54,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,3,52,14,11,11,13,12,11,8,8,98,100,8,8,8,54,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,2,3,51,8,8,9,9,10,9,10,9,8,8,8,6,5,5,5,5,6,8,9,9,9,8,6,5,5,5,6,8,8,8,8,8,8,8,8,6,5,5,5,5,5,5,5,14,11,11,15,14,11,11,11,11,11,15,14,11,11,12,13,12,11,11,11,11,11,12,12,12,11,11,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,9,9,9,9,9,8,8,96,8,9,9,9,9,9,8,8,6,5,5,5,5,5,5,5,8,8,14,11,13,12,12,12,12,12,12,12,13,15,8,8,8,8,8,8,8,11,15,5,5,5,5,5,5,5,5,5,5,5,6,8,4,4,4,96,4,4,54,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,14,11,11,12,12,12,11,15,8,8,98,55,54,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,55,6,8,8,9,10,9,10,9,8,8,8,5,5,5,5,8,8,9,9,9,9,9,8,5,5,5,8,8,8,8,8,6,5,5,5,5,5,5,5,5,14,11,11,11,11,11,11,11,11,11,11,11,11,11,14,11,12,12,12,13,12,12,13,12,12,12,13,11,11,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,9,9,9,9,54,3,51,9,9,9,8,8,8,8,8,5,5,5,5,5,5,5,5,8,14,11,12,13,12,12,12,12,12,13,11,15,8,8,8,8,8,8,14,11,11,15,5,5,5,5,5,5,5,5,5,5,5,6,8,4,49,3,55,54,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,52,4,11,11,12,12,13,12,11,15,8,54,3,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,55,6,6,8,9,10,9,10,9,8,8,5,5,5,8,9,9,9,9,9,9,9,8,6,5,5,6,8,8,6,5,5,5,5,5,5,5,5,14,11,11,11,11,11,11,12,12,13,11,11,11,11,11,15,11,12,12,13,13,12,12,12,12,13,13,12,12,11,15,8,8,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,8,9,9,9,54,3,52,9,9,9,8,8,8,8,8,8,5,5,5,5,5,5,5,5,14,11,11,13,12,12,12,12,13,13,11,15,8,8,8,8,8,8,8,14,11,11,11,15,5,5,5,5,5,5,5,5,5,5,5,6,4,54,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,4,4,14,11,13,12,12,12,15,54,3,3,3,52,14,11,15,53,3,3,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3,6,6,8,10,9,10,9,9,8,8,6,5,5,8,9,9,9,9,9,9,9,8,5,5,5,5,8,6,5,5,5,5,5,5,5,5,14,11,12,13,11,11,12,12,12,12,12,12,13,11,11,11,15,11,12,13,12,12,13,13,12,13,12,12,13,11,15,8,8,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,9,9,9,54,3,3,55,50,9,9,8,8,8,8,8,8,5,5,5,5,5,5,14,11,11,11,13,12,12,12,12,13,11,11,15,8,8,8,8,8,8,8,14,11,12,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,49,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,4,4,11,11,12,12,12,15,54,3,2,2,3,14,11,12,12,12,15,53,3,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,52,6,8,9,10,10,9,9,9,8,8,8,5,5,6,8,9,9,9,9,9,8,6,6,6,5,5,5,5,5,5,5,5,5,5,14,11,11,13,12,12,13,12,12,12,12,12,12,12,12,12,13,11,11,14,11,12,12,12,12,12,13,12,11,11,11,15,8,8,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,9,9,9,49,3,3,2,3,3,55,50,6,8,8,8,8,8,6,5,5,5,5,14,11,11,12,13,12,12,12,12,13,11,11,15,8,8,8,8,8,8,8,14,11,12,13,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,49,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,4,4,14,11,12,12,15,54,3,2,2,3,52,11,12,12,24,12,12,15,3,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,3,51,8,8,9,10,9,10,9,10,9,8,8,6,5,5,6,8,9,9,9,8,6,8,8,14,15,5,5,5,5,5,5,5,14,11,11,11,11,12,12,12,12,13,12,13,11,11,12,12,12,13,12,12,11,15,14,11,11,12,12,12,12,11,11,11,15,8,8,8,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,9,54,55,54,3,2,2,2,2,3,3,55,50,50,6,8,8,8,5,5,5,14,13,12,12,13,12,12,18,12,12,13,11,15,8,8,8,8,8,8,8,14,11,13,13,11,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,53,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,4,4,4,11,11,13,15,53,3,2,2,3,55,14,12,11,14,12,11,54,3,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,52,53,3,2,2,2,3,51,8,8,10,9,9,10,9,9,10,8,8,6,8,5,5,6,8,8,8,6,6,14,11,15,8,6,5,5,5,5,14,11,11,11,11,11,12,12,12,12,11,11,11,11,15,14,11,11,12,12,13,12,11,11,15,11,11,11,11,11,11,11,11,15,8,8,8,8,8,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,54,3,3,3,2,2,1,1,2,2,2,3,3,3,55,6,8,8,6,5,5,14,12,12,12,13,12,13,12,13,13,11,15,8,8,8,8,8,8,8,14,11,13,12,12,11,11,15,5,5,5,5,5,5,50,50,50,5,5,5,5,50,54,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,4,4,14,11,12,15,54,3,2,2,2,3,55,14,15,14,12,15,53,3,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,48,8,8,53,3,2,2,3,55,6,8,8,9,10,9,10,9,9,9,8,8,8,6,5,5,5,6,8,8,6,6,14,11,15,6,5,5,5,5,11,11,11,11,12,12,12,13,12,11,11,11,15,6,8,8,6,14,11,12,12,11,11,11,14,11,11,11,11,11,11,11,11,15,8,8,8,8,8,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,49,3,2,2,2,2,1,1,1,1,1,2,2,2,2,3,55,50,6,8,5,14,11,11,11,13,12,13,12,13,12,11,11,15,8,8,8,8,8,14,11,11,13,12,12,13,13,11,11,15,5,5,5,50,54,3,3,3,55,50,50,54,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,4,4,11,11,15,54,3,2,2,2,2,2,3,55,14,12,15,54,55,3,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,8,8,8,8,3,2,2,2,3,51,8,8,9,10,9,9,10,9,9,9,10,8,8,6,5,5,5,6,8,8,6,6,14,11,15,5,5,5,14,11,11,12,12,13,12,12,11,11,11,15,6,8,8,8,8,8,6,14,11,11,11,11,15,14,11,11,11,11,13,12,13,11,11,11,15,8,8,8,8,6,5,5,5,6,8,8,6,8,8,6,5,5,5,5,5,5,4,53,3,2,2,1,1,1,1,1,1,1,2,2,2,2,3,3,55,50,50,5,99,100,11,11,11,12,12,11,11,11,15,8,8,8,8,8,14,11,12,13,12,12,13,12,12,12,12,11,15,5,54,3,3,2,2,2,3,3,3,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,4,4,14,11,11,53,3,2,2,2,2,2,2,3,14,15,54,3,3,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,53,109,8,8,8,53,3,2,2,3,55,6,8,8,10,10,9,9,10,9,10,9,9,8,8,6,5,5,5,6,6,5,14,15,14,11,11,15,5,11,11,12,12,12,12,12,11,11,15,6,8,8,8,8,8,8,8,8,8,6,14,11,15,164,6,14,11,11,11,12,13,12,13,12,11,11,11,11,15,8,8,8,6,6,8,8,8,6,8,8,8,6,5,5,6,6,4,4,49,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,3,97,101,98,97,109,11,11,11,11,11,15,8,8,8,8,14,11,11,13,13,12,12,13,12,11,11,11,15,50,5,5,53,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,55,4,4,11,15,5,53,3,2,2,2,2,2,3,51,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,51,8,8,5,5,8,8,53,2,2,2,3,51,8,8,8,9,10,9,10,9,10,9,10,8,8,8,6,5,5,5,5,5,5,14,11,15,5,5,14,11,12,13,12,13,12,11,11,15,6,8,8,8,8,6,8,8,8,8,8,8,8,8,8,8,8,8,6,14,11,11,11,12,13,13,12,13,13,11,11,11,11,8,8,8,8,8,8,8,6,8,8,8,6,6,8,6,4,4,54,3,2,2,2,1,1,1,1,1,2,2,2,2,2,3,3,3,3,52,14,13,12,12,11,11,11,11,11,11,11,11,11,11,11,11,12,13,12,12,12,12,11,11,15,54,55,54,3,55,50,54,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,55,4,14,15,50,54,3,2,2,2,2,3,52,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,8,5,5,5,5,8,54,3,2,2,3,55,6,8,8,9,9,10,9,9,10,10,9,9,8,8,8,6,5,5,5,5,5,5,5,5,5,14,11,11,13,12,5,12,13,11,15,6,8,8,8,8,8,6,6,6,8,8,8,8,8,8,8,8,8,8,8,8,6,14,11,11,11,12,13,12,12,13,12,11,11,11,11,8,8,8,8,8,8,8,8,8,8,8,6,4,4,99,3,3,3,2,2,2,2,1,1,2,2,3,3,3,3,52,48,53,52,14,12,12,12,12,12,12,11,11,11,11,11,11,11,11,12,12,13,12,12,11,11,11,15,50,54,2,3,3,2,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,52,4,4,54,3,3,2,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,52,5,5,5,5,5,5,53,52,54,2,2,3,51,8,8,8,9,9,10,10,9,9,10,9,9,9,8,8,8,6,5,5,5,5,5,5,5,5,11,11,11,13,12,13,11,15,6,8,8,8,8,8,8,8,5,6,8,8,8,8,8,8,8,8,6,6,5,5,5,5,5,14,11,11,11,11,12,12,12,12,12,11,11,11,11,11,8,8,8,8,8,8,8,6,4,4,4,102,101,4,53,3,2,2,2,2,2,2,3,52,48,53,52,4,4,4,14,11,12,12,12,13,12,12,13,12,11,11,11,12,12,13,12,12,12,11,11,11,11,15,54,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,3,4,4,4,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,5,5,5,5,9,9,5,5,49,3,2,2,3,55,6,8,8,9,10,9,9,10,10,9,10,9,9,9,8,8,8,6,5,5,5,5,5,5,5,14,11,11,12,13,12,11,6,8,8,8,8,8,6,6,5,5,5,5,6,8,8,8,8,6,6,5,5,5,5,5,5,5,5,5,14,11,11,11,13,12,13,12,12,12,13,11,11,11,11,8,8,8,8,8,6,4,4,99,101,4,4,49,3,3,3,3,3,2,2,3,51,4,4,4,4,14,11,11,12,12,13,12,12,12,12,12,12,12,11,13,12,12,11,11,11,11,11,15,4,4,49,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,3,4,4,4,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,5,5,5,9,9,9,9,5,49,3,2,2,2,3,51,8,8,10,9,10,9,9,10,9,10,9,10,9,9,9,8,8,6,5,5,5,5,5,14,11,11,12,12,12,11,15,8,8,8,8,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,11,11,11,11,12,13,12,12,12,13,12,11,11,11,11,8,8,6,4,4,4,96,4,4,4,4,53,52,48,53,3,2,3,52,4,4,14,11,11,11,12,12,13,12,12,12,12,11,11,11,12,13,11,11,11,11,11,15,4,4,4,4,4,4,54,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,3,2,2,2,2,2,2,3,55,4,4,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,52,5,5,5,9,9,9,9,5,5,53,3,3,2,3,97,55,8,8,9,9,10,9,9,10,9,10,9,9,10,9,9,8,8,6,5,5,5,5,14,11,12,12,12,11,15,6,8,8,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,6,11,11,11,11,13,12,12,12,12,13,12,11,11,11,15,6,4,4,4,106,4,4,4,5,8,8,5,4,48,53,3,51,4,14,11,12,12,12,13,13,12,12,12,15,50,50,14,11,11,11,11,15,4,4,4,4,4,4,4,4,4,54,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,52,48,53,3,2,2,2,2,2,2,3,4,4,53,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,51,5,5,9,9,9,10,9,9,5,5,48,53,3,3,103,104,6,8,8,9,9,10,10,9,10,9,10,9,9,10,9,8,8,8,5,5,14,15,5,11,12,12,11,15,6,8,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,6,5,5,5,5,5,5,6,8,8,6,11,11,11,11,11,13,12,12,12,13,12,11,11,15,4,4,54,3,4,4,5,8,8,8,5,4,4,4,96,4,14,11,12,12,12,13,12,13,12,12,15,49,3,3,55,14,11,11,15,4,4,4,111,100,4,4,4,4,54,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,52,4,4,54,3,2,2,2,2,2,2,3,4,4,54,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,51,5,5,9,9,9,9,9,9,9,5,5,5,96,48,96,98,100,6,8,8,9,10,9,9,10,9,9,10,10,9,9,9,8,8,6,5,5,5,5,14,11,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,8,8,8,8,8,5,5,5,5,5,6,8,8,8,6,14,11,15,14,11,11,12,12,12,13,11,11,11,15,4,3,3,51,5,8,8,8,8,5,4,4,4,98,100,14,12,13,15,99,109,14,12,13,12,15,54,3,2,2,55,14,15,4,4,4,4,4,96,4,99,97,97,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,4,4,54,3,2,2,2,2,2,2,2,3,55,4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,55,5,5,5,9,9,9,9,9,9,9,5,5,98,103,2,97,3,55,6,8,8,8,9,10,9,9,10,9,9,9,6,10,8,8,6,5,5,14,15,14,11,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,8,8,8,8,8,6,8,8,8,8,5,5,5,5,6,8,8,8,8,14,11,15,6,6,11,11,11,12,13,11,11,11,11,11,4,53,3,55,8,8,8,8,8,8,5,4,4,4,96,14,15,99,97,101,14,12,13,12,15,49,3,2,2,2,2,14,15,4,4,4,111,97,105,103,101,4,4,53,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,52,4,4,53,3,2,2,2,2,2,2,2,2,3,4,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,55,5,5,5,9,9,10,9,9,9,5,5,5,98,3,97,2,3,100,6,8,8,8,6,8,8,8,8,9,10,9,6,8,8,6,5,5,5,14,11,11,15,14,11,15,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,8,8,8,8,8,8,6,6,6,6,5,5,5,5,5,8,8,8,8,8,6,14,11,15,8,6,11,11,11,11,11,11,11,11,11,15,54,3,3,51,8,8,8,8,8,8,14,15,4,98,103,97,101,14,12,12,12,12,13,15,49,3,2,2,2,2,55,4,4,4,4,4,4,4,96,4,4,4,49,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,3,4,4,4,54,3,2,2,2,2,2,2,2,2,3,54,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,55,5,5,9,9,9,9,9,9,9,5,5,5,48,5,98,104,98,100,6,8,8,8,6,8,99,109,99,109,8,8,6,6,5,5,5,5,5,5,11,15,5,14,11,15,5,5,5,5,5,5,5,5,5,8,8,8,8,8,8,8,8,8,8,8,8,6,6,5,5,5,5,5,6,8,8,108,108,8,8,8,8,6,8,8,6,14,11,11,15,14,11,11,11,54,3,3,52,8,8,8,8,8,14,11,11,12,13,15,96,14,12,12,12,12,12,12,13,15,54,3,2,2,2,2,3,51,4,4,4,4,4,111,101,4,4,4,49,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,52,4,4,4,53,3,2,2,2,2,2,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,3,3,3,3,52,53,4,5,5,9,9,9,9,9,9,9,5,5,5,5,5,98,55,98,100,6,8,6,8,99,105,97,101,8,8,8,6,5,5,5,5,14,15,14,11,15,14,11,15,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,6,8,8,8,8,8,8,5,5,5,5,5,5,5,8,8,8,96,96,8,8,8,8,8,6,8,14,11,15,6,8,6,11,11,15,53,3,3,55,50,8,8,8,14,11,11,13,13,99,97,104,14,12,12,15,19,12,13,15,49,3,2,2,2,2,2,3,51,4,4,4,4,4,4,4,4,4,4,54,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,4,4,4,54,54,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,4,4,4,53,3,55,4,4,5,5,9,9,9,9,9,10,9,9,9,5,5,5,5,98,97,105,97,100,6,8,212,6,8,99,100,8,8,8,5,5,5,14,11,14,11,15,5,14,15,5,5,5,5,5,5,5,5,5,5,5,5,8,8,8,8,8,6,8,8,8,8,6,5,5,5,5,5,5,6,8,8,6,98,104,8,8,99,109,8,6,8,6,14,11,15,8,8,6,11,11,49,3,2,3,3,51,8,14,11,12,13,12,12,96,11,98,100,12,15,5,14,13,12,15,54,3,2,2,2,2,2,3,51,4,4,4,4,16,4,4,4,4,49,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,3,52,4,4,4,53,52,3,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,51,5,4,4,4,4,4,4,4,5,5,9,9,10,9,9,9,9,9,9,9,5,5,5,5,5,5,8,98,97,103,105,97,103,101,98,97,109,8,6,5,14,15,14,15,5,5,14,15,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,6,8,8,8,6,5,5,5,5,5,5,5,8,8,8,108,6,96,8,99,101,8,8,6,8,8,6,14,11,6,8,8,6,11,49,3,2,2,3,55,14,11,12,13,12,13,25,110,12,15,98,97,109,14,13,12,15,54,3,2,2,2,2,2,2,3,55,50,50,4,4,4,4,4,4,4,49,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,4,4,5,4,4,54,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,51,5,5,5,4,4,4,4,5,5,9,9,9,9,9,9,9,9,9,9,9,5,5,5,5,5,5,6,8,6,96,6,8,96,6,99,100,8,8,8,6,5,14,11,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,6,6,5,5,5,5,5,5,5,5,5,5,8,8,99,101,8,96,6,96,8,8,6,6,8,8,8,6,14,15,8,8,8,14,15,53,3,2,2,3,55,14,12,12,12,13,12,13,12,13,12,12,13,13,12,15,54,3,2,2,2,2,2,3,2,2,3,3,3,55,4,4,4,54,55,50,54,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,4,5,5,5,4,53,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,51,5,5,5,5,5,5,5,5,9,9,9,9,9,9,9,9,9,9,9,8,5,5,5,5,5,5,5,8,8,98,100,8,98,103,101,96,99,109,8,8,6,11,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,6,5,5,5,5,5,5,5,5,5,5,5,5,8,8,98,100,6,102,97,101,8,108,6,8,8,8,8,8,8,8,8,8,8,8,6,49,3,2,2,2,3,55,14,13,12,12,13,12,13,12,13,13,12,15,54,3,3,2,2,2,2,2,2,3,3,2,2,2,2,3,51,4,49,3,3,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,52,5,5,5,5,6,8,53,3,2,3,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,50,54,55,5,5,5,5,9,9,9,10,9,6,9,9,9,9,8,8,6,5,5,5,5,5,5,5,6,8,6,96,8,6,96,8,98,101,99,97,109,8,14,12,11,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,8,8,8,98,97,104,6,8,8,96,8,8,8,8,8,8,8,8,8,8,8,8,8,54,3,2,2,2,2,2,2,55,50,14,12,13,12,15,50,14,15,54,3,2,2,2,2,2,2,2,2,2,3,3,2,2,2,3,55,50,54,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,51,5,5,5,5,5,8,8,53,3,52,54,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,52,5,5,5,5,9,9,10,9,9,6,8,9,8,8,8,6,5,5,9,9,5,5,5,5,5,8,8,98,97,100,98,97,97,103,101,8,8,8,14,12,11,15,5,5,5,5,8,8,5,5,5,5,5,5,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,98,100,8,99,101,8,8,8,8,8,6,6,8,8,8,8,8,49,3,2,2,2,2,2,2,2,2,3,55,50,50,54,3,3,3,3,3,2,2,2,2,2,2,1,1,2,2,2,3,3,2,2,2,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,52,5,5,5,5,5,6,8,8,8,106,8,53,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,52,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,55,5,5,5,5,5,9,9,9,9,8,6,8,8,8,6,5,5,9,9,9,6,5,5,5,5,8,8,6,99,101,8,8,6,96,8,8,8,8,11,12,13,11,5,5,5,5,8,8,8,8,5,5,5,6,8,8,6,5,5,5,5,5,5,5,5,5,5,6,8,6,5,5,5,5,5,5,6,8,8,8,8,212,8,96,6,8,8,8,8,8,8,6,5,50,6,8,6,49,3,2,2,2,2,2,2,2,2,2,3,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,51,5,5,5,5,6,8,8,8,99,101,8,8,8,53,3,3,2,2,2,2,2,2,2,2,2,2,3,51,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,55,8,6,5,5,5,5,5,5,5,6,8,8,6,5,5,5,9,9,9,9,5,5,5,5,8,8,8,98,100,8,8,8,98,109,8,8,14,11,12,12,11,5,5,5,5,8,8,8,8,5,5,6,8,8,8,6,5,5,5,5,5,5,5,5,6,8,8,8,8,8,6,5,5,5,5,5,5,6,8,8,98,97,104,8,8,8,8,8,8,8,8,49,2,51,8,50,54,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,5,5,5,6,5,8,8,99,97,104,8,8,8,8,5,48,53,3,2,2,2,2,2,2,2,2,3,52,5,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,55,8,8,6,5,5,5,5,5,5,5,5,5,5,5,5,6,9,9,9,5,5,5,6,8,8,8,6,102,97,100,8,8,8,8,14,11,12,12,12,11,15,5,5,5,5,8,8,5,5,5,6,8,8,6,5,5,5,5,5,5,5,6,8,8,8,8,8,8,8,8,6,5,5,5,5,5,5,6,8,8,8,96,6,108,8,8,8,8,8,8,6,53,55,54,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,51,5,5,5,5,6,8,111,104,8,98,100,8,8,8,6,5,5,53,3,2,2,2,2,2,2,3,52,5,49,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,52,8,8,8,8,6,5,5,5,5,5,9,9,5,5,5,5,5,5,5,5,6,8,8,8,8,8,8,96,8,98,100,8,8,14,11,12,13,12,12,13,11,5,5,5,5,5,8,5,5,5,6,8,8,6,5,5,5,5,5,5,6,8,8,8,8,8,8,8,8,8,8,6,5,5,5,5,5,5,6,8,8,102,97,101,8,6,6,8,8,8,8,49,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,5,5,5,5,8,8,8,110,8,8,102,109,8,9,9,5,5,49,3,2,2,2,2,2,2,3,51,5,5,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,50,8,8,8,8,8,6,5,5,9,10,9,5,5,5,5,5,5,5,6,8,8,8,8,8,8,99,101,8,6,98,100,14,11,13,12,12,12,12,12,12,11,5,5,5,5,5,5,5,6,8,8,8,8,6,5,5,5,5,5,8,8,8,8,8,6,6,8,8,8,8,8,5,5,5,5,5,5,5,6,99,101,8,8,6,5,5,5,6,8,50,54,2,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,51,5,5,5,5,8,8,8,8,8,110,8,8,9,9,5,5,5,53,3,3,2,2,2,3,52,5,5,5,49,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,55,8,8,8,8,8,6,5,9,9,9,9,5,5,5,5,5,5,6,8,8,8,8,8,8,96,8,8,8,6,98,100,11,12,12,12,23,12,13,12,11,15,5,5,5,5,5,5,8,8,8,8,8,6,5,5,5,5,5,6,8,8,8,8,8,8,6,8,8,8,8,6,5,5,5,5,5,5,50,106,8,6,5,5,5,5,14,15,54,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,5,5,5,5,5,6,8,8,8,8,8,9,9,9,6,5,5,5,48,53,3,2,3,52,5,5,5,5,49,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,54,51,8,8,8,5,5,9,9,10,9,9,5,5,5,5,5,6,8,8,8,8,8,110,8,8,6,6,14,96,12,12,13,15,4,14,12,12,13,11,15,5,5,5,5,5,6,8,8,6,6,5,5,5,5,5,5,5,6,8,8,8,8,8,8,6,8,8,8,8,5,5,5,5,50,54,3,101,5,5,5,5,5,14,11,49,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,51,5,5,5,5,5,9,9,9,9,9,9,9,9,9,6,5,5,6,8,53,3,52,5,5,5,5,5,5,53,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,55,8,8,8,5,5,9,10,9,10,9,9,9,9,9,5,5,5,5,6,8,8,8,8,6,5,14,11,98,100,12,15,54,2,55,14,13,12,12,11,15,5,5,5,6,5,6,8,8,6,5,5,5,35,33,33,33,36,5,8,8,8,8,6,5,5,6,8,6,5,5,5,49,3,3,3,51,5,5,5,5,14,11,15,54,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,51,5,5,5,5,5,9,9,9,9,9,9,9,9,9,9,9,9,8,8,8,106,8,5,5,5,5,5,5,49,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,53,51,8,6,5,5,5,9,10,10,10,9,9,9,9,9,5,5,5,5,5,5,5,5,5,5,11,12,11,2,2,2,2,1,2,51,14,12,13,11,15,5,5,6,8,8,6,8,8,8,6,5,35,37,50,5,5,34,36,5,5,19,5,5,5,5,5,5,5,5,5,50,54,3,2,3,55,5,5,5,14,11,11,49,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,54,55,5,5,5,6,9,9,9,9,9,9,9,9,9,9,9,8,8,99,105,100,8,5,5,5,5,5,54,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,8,8,8,5,5,5,5,9,9,9,10,9,9,9,9,9,9,9,9,5,5,14,11,15,14,11,11,12,15,98,2,1,1,1,2,51,12,12,12,11,15,5,5,6,8,8,8,6,8,8,8,35,37,54,3,55,20,33,38,19,58,59,60,19,5,5,5,50,5,5,54,3,3,2,2,2,3,51,5,14,11,11,15,54,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,3,3,51,5,5,5,5,6,9,9,9,9,9,9,9,9,9,9,8,96,8,110,8,8,5,5,5,54,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,52,6,8,6,6,6,5,5,5,9,9,9,9,9,10,9,9,9,9,9,9,5,5,5,14,11,14,13,12,12,15,53,2,1,2,52,14,12,13,12,11,15,5,5,5,6,8,8,8,8,8,8,32,49,3,2,3,3,55,34,36,61,62,63,5,5,50,54,3,55,54,3,2,2,2,2,2,3,55,50,14,11,11,49,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,2,2,3,55,50,5,5,21,5,35,33,36,8,9,9,9,9,9,9,111,101,8,8,8,8,5,5,5,110,48,53,3,2,2,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,50,50,6,8,8,6,5,5,5,5,9,9,9,9,9,9,9,9,9,9,5,5,5,5,14,11,12,13,12,12,15,53,2,52,14,13,12,12,11,11,15,5,5,5,6,8,8,8,8,8,8,32,5,71,71,2,2,3,55,34,33,37,5,5,54,3,3,2,3,3,2,2,2,2,2,2,2,3,3,55,50,50,54,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,2,3,3,55,50,34,33,37,108,32,99,109,9,9,9,9,9,9,9,9,9,9,8,6,5,5,5,5,54,3,2,2,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,55,50,6,6,5,5,5,5,5,5,9,9,9,9,9,9,9,5,5,5,5,14,11,13,12,12,12,12,13,12,12,12,12,12,13,11,11,15,5,5,5,5,5,6,6,6,8,8,8,32,49,3,2,2,2,2,3,55,50,50,50,54,3,2,2,2,2,2,2,2,1,1,1,2,2,2,2,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,55,6,8,102,107,101,8,8,9,9,9,9,9,9,9,9,9,8,8,8,5,5,5,53,3,2,2,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,55,50,5,5,5,5,5,5,5,9,9,9,9,5,14,11,5,14,11,11,12,12,12,12,13,12,12,12,12,13,12,13,11,11,15,5,5,5,5,5,5,5,5,5,6,6,8,32,8,53,3,2,2,2,2,3,3,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,3,55,54,101,34,36,8,8,9,9,9,9,9,10,9,9,9,9,9,8,8,5,5,49,3,2,2,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,2,2,3,3,55,5,5,5,5,5,5,5,5,5,14,11,15,14,11,11,12,12,12,12,13,11,11,11,12,12,12,12,13,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,6,32,8,8,53,3,3,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,3,3,55,6,32,8,9,9,9,9,9,9,9,9,9,9,9,9,9,8,8,5,54,3,2,2,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,3,51,5,5,5,5,5,5,5,5,5,14,11,11,12,12,13,12,13,11,11,11,11,11,11,13,12,13,12,11,5,5,5,5,5,5,5,5,6,8,6,5,5,5,35,37,6,6,6,6,48,53,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,2,2,3,51,32,8,9,9,9,9,9,9,9,9,9,9,9,9,9,9,8,54,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,3,55,8,8,5,5,5,5,5,5,14,11,12,12,12,13,12,11,11,11,15,14,11,11,11,11,12,12,11,15,5,5,5,5,5,5,6,6,8,8,8,8,6,5,32,164,5,5,5,5,5,49,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,2,3,55,34,36,9,9,9,9,9,9,9,9,111,100,9,9,8,8,54,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,52,8,8,8,8,5,5,5,14,11,13,12,12,12,11,11,11,11,15,5,5,5,14,11,11,11,12,11,5,5,5,5,5,6,8,8,8,8,8,8,8,8,6,34,36,5,5,5,54,55,54,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,2,3,51,32,8,9,9,9,9,9,9,8,8,96,8,8,99,97,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,3,3,52,8,8,8,8,8,8,8,14,11,12,12,12,11,11,11,11,15,5,5,5,5,5,5,14,11,11,13,11,5,5,5,5,6,8,8,8,8,99,100,8,8,8,8,6,32,5,5,54,3,3,3,2,2,2,2,2,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,55,34,36,9,9,9,9,9,9,8,99,105,97,103,101,8,53,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,2,2,3,52,53,3,3,3,3,2,2,1,1,1,1,1,1,2,2,3,52,48,8,8,8,8,8,8,8,14,11,12,13,11,11,11,15,5,5,5,5,5,5,5,5,5,5,14,11,11,15,5,5,5,5,6,6,8,111,97,101,98,97,100,8,8,8,32,6,5,53,3,2,2,2,2,2,2,2,3,52,48,53,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,2,3,55,34,36,9,9,9,9,9,111,101,8,8,96,8,8,8,53,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,2,2,3,55,14,15,53,52,54,3,2,1,1,1,1,1,1,2,2,3,55,54,55,8,8,8,8,8,14,11,11,11,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,11,5,5,5,5,6,8,6,6,8,8,8,8,6,96,8,8,8,32,8,6,49,3,2,2,2,2,2,2,3,52,14,15,54,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,3,1,1,2,2,3,2,2,2,3,51,32,8,9,9,9,9,9,8,8,99,101,8,8,8,54,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,2,2,3,11,11,4,4,53,3,2,2,1,1,1,1,1,1,2,2,3,3,3,55,5,8,8,14,11,11,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,11,15,5,5,6,8,8,111,100,6,6,99,97,97,105,97,100,8,32,8,50,54,3,2,2,2,2,2,2,3,51,11,49,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,55,53,3,3,2,2,2,2,2,3,3,55,32,8,9,9,9,9,9,9,9,110,8,8,8,8,53,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,2,2,3,55,11,15,4,54,3,2,2,2,2,1,1,1,1,2,2,2,2,2,3,51,5,14,11,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,14,15,5,5,6,8,8,8,8,96,99,97,101,8,8,8,6,98,103,107,97,3,3,2,2,2,1,2,2,3,52,14,15,54,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,51,48,53,3,2,3,2,3,52,48,110,32,8,8,9,9,9,9,9,9,9,9,8,8,8,54,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,2,2,3,14,11,99,52,53,3,3,3,2,2,1,1,2,2,2,2,2,3,52,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,8,8,8,8,8,98,101,8,8,8,8,8,8,6,96,32,6,53,3,2,2,1,1,1,2,3,51,27,49,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,55,27,49,3,2,2,3,3,55,5,35,37,8,8,9,9,9,9,9,9,9,9,9,8,8,53,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,54,3,51,11,53,52,53,3,2,2,2,2,2,2,2,3,52,5,5,5,5,5,5,5,5,5,5,8,8,8,8,8,8,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,8,8,8,8,8,8,99,97,97,101,32,8,49,3,2,2,2,1,1,2,3,55,50,54,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,51,54,3,2,2,3,3,52,5,32,5,8,9,9,9,9,9,9,9,9,9,8,8,8,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,52,11,11,15,5,49,3,2,2,2,2,2,2,2,3,55,5,5,5,5,5,5,5,50,8,8,8,8,8,8,8,8,8,8,8,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,8,111,97,100,99,101,8,8,35,37,8,6,53,3,2,2,1,1,2,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,54,3,2,2,3,2,3,51,5,32,8,8,9,9,9,9,9,9,8,108,8,8,8,99,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,14,11,11,5,5,53,3,3,2,2,2,2,2,2,3,51,5,5,5,5,50,54,3,107,97,100,8,8,8,8,8,8,8,8,8,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,8,8,98,101,8,8,8,32,8,8,8,6,53,3,2,2,1,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,3,2,3,51,5,34,36,9,9,9,9,9,9,9,111,104,8,8,99,101,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,11,11,15,99,97,52,53,52,48,53,2,2,2,3,55,50,50,50,54,3,3,52,8,8,102,97,97,100,8,99,97,109,8,8,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,8,8,8,8,8,34,36,8,8,8,54,3,2,2,1,1,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,52,4,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,55,5,8,32,9,9,9,9,9,9,8,8,98,100,99,101,50,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,11,99,101,14,11,15,54,55,54,3,2,3,2,3,3,3,3,3,3,52,8,8,8,96,8,8,98,97,104,8,8,8,8,8,5,5,5,108,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,8,8,6,5,32,6,8,8,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,14,15,4,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,2,3,55,8,34,36,9,9,9,9,9,108,8,8,98,104,54,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,14,15,5,14,15,53,3,2,2,3,3,2,3,3,3,52,48,5,5,8,8,98,100,8,8,8,98,100,8,8,8,8,8,5,5,96,5,5,5,5,5,5,5,5,5,5,6,6,8,8,8,8,6,5,5,34,36,5,6,49,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,14,11,6,4,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,55,9,32,9,9,9,9,111,104,8,99,3,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,51,8,8,14,11,15,53,3,3,3,3,3,52,53,52,5,5,5,5,5,8,8,96,8,8,8,8,102,97,100,8,8,8,108,99,101,5,5,5,5,5,5,5,5,5,6,8,6,6,8,8,8,8,5,5,5,34,36,5,6,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,14,11,15,8,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,52,9,32,9,9,9,9,9,98,103,101,98,3,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,51,20,8,8,8,11,54,3,3,52,53,52,5,5,5,5,5,5,5,5,8,8,98,100,8,8,8,96,8,110,8,8,99,101,96,5,5,5,5,5,5,5,5,6,8,8,8,8,8,8,8,8,8,6,5,5,5,34,36,5,5,53,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,53,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,14,15,8,6,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,53,52,8,9,32,9,9,9,9,9,9,98,97,103,2,2,3,8,48,53,3,2,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,52,54,51,5,8,54,3,3,3,52,5,5,5,5,5,5,5,5,5,5,5,8,8,8,110,8,8,8,110,8,8,8,8,98,97,104,5,5,108,5,5,5,5,6,8,8,8,8,8,8,8,8,8,8,8,5,5,5,5,32,5,5,49,3,3,2,2,2,1,1,1,1,1,1,2,2,3,53,3,3,2,3,55,53,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,8,6,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,55,8,8,8,32,9,108,9,9,9,9,8,8,53,3,2,3,8,8,5,53,3,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,5,54,3,3,52,14,11,15,5,5,5,5,5,5,5,5,5,8,8,8,8,8,8,8,8,8,8,8,8,8,8,99,101,5,5,96,5,5,5,6,8,8,8,8,8,8,8,8,8,8,8,6,5,5,5,5,34,36,5,54,52,54,3,2,2,2,2,1,1,2,2,2,2,3,51,48,53,3,3,52,5,48,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,51,8,8,32,99,101,9,9,9,9,9,8,8,53,3,3,55,8,6,111,3,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,52,54,3,3,52,8,8,14,11,11,15,5,5,5,5,5,5,5,8,8,8,8,9,9,9,8,8,8,8,8,8,8,98,97,100,99,101,5,5,5,8,8,8,8,8,8,8,8,8,8,8,6,5,5,5,5,5,5,32,5,48,49,3,2,2,2,2,2,2,2,2,2,2,2,3,55,14,15,53,3,55,5,5,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,3,51,8,8,34,106,33,36,9,9,9,9,8,8,8,3,2,3,8,8,49,3,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,52,5,8,8,8,8,11,11,15,14,11,15,5,5,8,8,8,8,9,9,9,9,9,9,8,8,8,8,8,8,8,102,101,5,5,5,5,6,8,8,8,8,8,8,8,6,6,5,5,5,5,5,5,5,5,32,5,5,49,3,2,2,2,2,2,2,2,2,2,2,2,2,3,51,11,49,3,3,14,15,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,3,52,5,5,8,99,104,8,34,36,9,9,8,8,8,8,3,2,3,55,8,54,3,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,51,5,5,5,8,14,11,11,11,11,11,5,5,5,8,8,8,9,9,9,9,9,9,9,9,8,8,8,8,99,97,101,5,5,5,5,5,5,6,8,8,8,8,8,6,5,5,5,5,5,5,5,5,5,5,34,36,5,5,53,3,2,2,2,3,3,3,3,2,2,2,2,3,14,15,49,3,3,11,11,15,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,51,5,5,8,98,2,55,8,32,8,8,8,8,8,54,2,2,2,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,109,5,5,5,5,5,14,11,11,11,11,15,5,5,8,8,9,9,9,9,9,9,9,9,9,8,8,8,99,101,8,8,5,5,5,5,5,5,5,5,6,8,6,5,5,5,5,5,5,6,8,6,5,5,5,5,32,5,5,49,3,2,2,3,52,48,48,53,3,2,2,3,52,14,15,54,3,3,55,14,11,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,51,5,4,4,54,2,3,55,34,36,8,8,54,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,51,5,5,5,5,5,5,14,11,11,11,11,15,8,8,9,9,9,9,9,9,9,9,9,9,8,8,99,105,100,8,8,6,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,6,5,5,5,34,36,5,5,53,3,2,3,51,6,14,11,53,3,2,3,14,15,54,3,2,2,3,55,15,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,51,4,4,54,3,2,2,3,8,20,8,54,3,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,5,50,5,5,5,5,5,5,14,11,11,11,11,11,15,9,9,9,9,9,9,9,9,9,9,8,99,101,6,96,6,8,8,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,8,8,8,5,5,5,5,32,5,5,6,53,3,3,55,8,8,14,15,53,3,3,55,54,3,2,3,3,3,3,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,4,54,3,2,2,2,3,8,8,8,3,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,54,3,55,50,5,5,5,5,5,14,11,15,8,8,9,9,9,9,9,10,9,9,9,9,8,8,96,8,8,212,6,8,8,6,5,5,5,5,5,5,5,5,5,6,6,6,6,8,8,8,8,8,6,5,5,5,5,32,5,5,8,6,53,3,52,8,8,14,15,49,3,2,3,3,2,3,52,11,53,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,2,2,3,52,4,8,54,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,2,3,3,55,5,5,5,5,5,8,8,8,8,9,9,9,9,9,9,9,9,9,9,8,8,96,8,54,2,55,6,6,8,5,5,5,5,5,5,5,5,6,8,8,8,6,6,8,8,8,6,5,5,5,5,5,34,33,36,8,8,49,3,51,8,14,11,11,49,3,2,2,2,3,52,14,11,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,4,4,4,3,3,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,55,5,5,5,5,5,8,8,9,9,9,9,9,9,9,9,9,9,9,8,99,101,8,53,3,52,8,108,8,5,5,5,5,5,5,5,6,8,8,8,8,8,8,8,8,6,5,5,5,5,5,5,6,6,32,6,8,6,96,8,8,14,11,11,15,53,3,2,2,3,14,11,53,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,2,2,2,3,4,4,54,3,52,8,8,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,51,5,5,5,5,8,8,9,9,9,9,9,9,9,9,9,9,8,8,98,100,8,6,48,8,99,101,8,6,5,5,5,5,5,6,8,8,8,8,8,8,8,8,6,5,5,5,5,5,5,6,8,8,34,36,99,97,104,6,8,14,11,11,11,49,3,2,3,52,14,15,49,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,53,3,2,2,3,3,3,3,52,4,8,8,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,55,5,5,5,5,8,8,8,9,9,9,9,9,9,9,9,8,8,8,8,98,97,100,8,99,101,8,8,8,5,5,5,5,6,8,8,8,8,8,8,8,6,5,5,5,5,5,5,5,6,8,8,8,6,34,106,36,98,100,8,8,14,11,11,15,53,3,3,55,11,50,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,4,3,2,2,2,2,3,3,4,4,8,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,51,5,5,8,9,8,8,8,8,9,9,9,14,15,8,8,8,8,8,8,8,102,97,101,8,8,8,6,5,5,6,5,6,6,8,8,8,6,5,5,5,5,5,5,5,5,5,6,8,8,8,99,97,97,104,34,36,96,6,8,6,14,11,11,49,3,2,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,4,4,53,3,2,2,2,3,52,4,8,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,51,5,5,9,9,9,9,8,8,8,8,8,8,14,11,15,8,8,8,8,99,101,8,8,8,8,6,5,5,5,5,8,8,6,8,8,6,5,5,5,5,5,5,5,5,5,5,8,8,8,99,101,8,6,96,6,34,106,33,33,33,36,14,11,49,3,2,3,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,4,4,4,3,2,2,2,3,4,4,8,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,108,8,9,9,9,9,9,9,8,8,8,8,8,14,11,15,8,8,8,106,8,8,8,6,5,5,5,5,5,5,6,8,8,6,5,5,5,5,5,5,5,5,5,5,5,5,8,8,8,110,8,8,99,101,99,100,102,97,100,6,32,6,14,15,53,3,52,14,11,15,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,4,54,3,2,2,2,3,4,4,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,51,9,9,9,9,9,9,9,9,9,9,9,9,14,11,15,8,8,96,8,6,5,5,5,5,5,5,5,5,5,6,6,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,8,96,6,96,98,101,6,96,8,32,8,14,15,35,19,14,11,15,5,49,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,3,2,2,2,2,3,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,8,9,9,9,9,9,9,9,9,9,14,15,9,14,11,15,8,98,100,6,5,14,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,99,101,8,98,100,8,8,96,8,32,14,15,35,37,14,15,14,15,5,49,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,54,55,8,9,9,9,9,9,9,9,9,9,9,9,9,9,54,3,55,9,9,14,11,11,15,5,5,5,14,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,110,8,8,99,101,8,99,101,6,34,38,33,37,14,11,15,5,14,15,49,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,3,51,8,9,9,9,9,9,9,9,14,15,9,9,9,53,3,52,6,9,9,14,11,11,11,15,5,5,14,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,8,8,8,8,8,96,8,8,110,8,6,5,32,164,14,11,15,5,49,55,108,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,54,55,8,9,9,14,15,9,9,9,9,9,8,49,3,100,54,109,9,9,9,14,11,11,11,11,11,11,11,11,15,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,111,101,8,8,8,6,5,5,32,14,11,15,14,15,5,53,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,3,55,8,9,9,14,15,9,9,9,9,8,8,98,3,3,55,9,9,9,9,14,11,11,11,11,11,11,11,11,11,15,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,8,8,6,5,5,5,32,14,15,14,15,5,5,111,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,55,9,9,14,11,15,9,9,8,8,8,54,3,3,52,9,9,10,9,9,9,14,11,11,12,13,12,11,11,11,11,11,15,5,14,15,5,5,5,5,5,5,6,8,8,8,6,5,5,5,5,5,34,36,14,11,15,5,5,54,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,48,48,53,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,8,9,9,9,9,9,8,8,8,8,53,3,3,55,9,9,10,10,10,9,9,14,11,11,12,13,12,12,11,11,11,11,11,11,11,15,5,5,5,5,6,8,6,6,8,5,5,5,5,5,5,5,34,33,33,36,5,49,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,14,12,15,54,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,55,8,9,9,9,9,8,8,8,8,8,53,3,3,55,9,10,10,10,10,9,9,14,11,11,12,12,13,12,13,12,11,11,11,11,11,11,11,15,6,8,8,8,6,6,5,5,5,5,5,5,5,5,5,5,32,5,111,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,52,14,12,15,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,2,2,2,3,3,3,3,3,3,52,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,52,11,15,9,9,9,8,8,8,8,8,54,3,52,48,9,9,10,10,10,10,9,9,9,14,11,11,12,12,12,13,12,12,13,12,11,11,15,6,8,8,8,8,8,6,6,5,5,5,5,5,5,5,5,35,37,4,54,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,14,12,15,6,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,2,2,2,3,52,53,52,48,48,48,99,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,14,11,8,9,9,8,8,8,8,54,3,3,54,55,9,9,10,10,10,10,10,10,10,9,14,11,11,13,12,12,13,12,12,11,11,6,8,8,8,8,8,8,8,8,8,6,5,5,5,5,5,35,33,37,4,4,53,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,52,14,12,15,8,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,2,2,2,3,3,51,5,14,11,15,5,110,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,11,15,8,9,9,8,8,8,53,3,2,3,3,55,9,9,10,10,10,10,10,9,9,5,14,11,11,11,12,12,11,11,15,6,8,8,8,111,100,8,8,8,8,8,8,5,5,5,5,35,37,4,4,4,4,54,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,14,12,15,8,6,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,2,2,3,52,48,51,14,11,11,11,15,49,49,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,14,11,15,8,9,9,8,8,54,3,2,2,3,52,9,9,10,10,10,9,9,9,5,5,5,14,11,11,11,11,11,6,8,8,8,99,100,6,96,8,8,111,97,100,8,6,5,5,35,37,4,4,4,4,54,3,3,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,14,12,15,8,5,54,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,2,2,2,3,51,5,14,11,12,12,12,11,15,5,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,11,11,15,9,9,9,54,3,2,2,2,3,55,50,9,9,10,9,9,5,5,5,5,5,5,14,11,11,15,6,8,8,6,111,101,98,97,105,100,8,8,6,96,6,8,35,33,37,4,4,108,99,97,3,52,53,3,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,55,14,15,20,54,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,2,2,3,52,48,14,11,12,13,12,13,12,11,15,49,3,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,14,11,11,8,9,9,3,2,2,3,2,2,3,52,9,9,9,9,5,5,5,5,5,5,5,14,11,11,6,8,6,99,100,99,100,6,8,6,102,97,103,97,105,100,6,32,108,4,4,54,3,3,55,48,4,111,3,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,6,5,71,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,2,2,3,51,5,11,11,12,12,18,12,12,11,11,54,3,52,53,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,11,11,15,9,9,3,2,2,3,2,2,3,55,54,109,9,9,5,5,5,5,5,5,14,11,11,11,8,111,100,96,98,101,98,97,103,97,101,8,96,8,6,98,103,107,3,55,99,3,3,3,3,103,55,49,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,51,6,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,2,2,3,51,5,14,11,12,13,12,13,12,11,15,53,3,55,54,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,53,14,11,11,8,9,53,3,2,2,3,2,2,3,52,9,9,5,5,5,5,5,5,14,11,11,12,11,8,8,98,101,8,8,8,8,96,8,8,8,96,8,8,6,96,32,53,3,52,99,52,110,53,3,3,97,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,50,5,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,2,2,3,55,50,51,14,11,12,12,12,11,15,5,49,3,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,11,11,11,15,9,9,3,2,2,3,2,2,3,55,5,5,5,5,5,5,5,5,14,11,12,12,11,15,8,8,8,111,97,100,99,101,8,8,99,101,8,99,97,101,32,4,53,55,53,100,50,54,3,52,4,3,2,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,55,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,2,2,3,3,51,5,14,11,11,11,15,5,5,49,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,11,11,11,8,9,53,3,2,2,3,2,2,3,55,5,5,5,5,5,5,14,11,12,12,12,11,11,6,8,8,8,8,98,101,8,8,111,101,8,8,110,8,8,32,4,4,98,3,3,3,3,3,51,54,3,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,3,52,54,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,2,2,2,3,55,5,5,14,11,11,11,11,15,48,98,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,11,11,11,15,9,54,3,2,2,3,2,2,3,52,5,5,5,5,5,5,14,11,12,12,12,12,11,15,6,8,8,8,8,8,8,8,8,8,8,8,6,5,6,32,4,4,4,96,110,53,3,3,97,3,2,2,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,52,48,110,4,110,53,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,2,2,2,3,55,50,51,5,14,11,12,11,15,5,98,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,14,11,11,11,54,3,2,2,3,2,2,2,3,55,54,55,5,5,5,5,14,11,11,12,12,12,11,11,15,5,6,8,8,8,8,8,8,8,8,5,5,5,5,34,36,4,111,104,4,4,96,48,111,3,2,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,52,14,12,12,15,4,54,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,2,2,3,3,100,14,11,12,12,12,11,15,49,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,55,14,11,15,3,2,2,2,2,2,2,2,2,3,3,52,5,5,5,5,5,14,11,12,12,12,11,11,11,5,5,5,6,8,8,8,6,5,5,5,5,5,5,5,32,4,4,98,100,108,102,97,97,3,2,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,110,14,12,15,4,4,54,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,11,12,12,13,12,12,11,99,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,52,11,11,54,3,2,2,2,2,3,3,3,2,2,3,55,5,5,5,5,5,14,11,12,12,12,12,11,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,34,36,4,4,53,2,101,4,49,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,14,12,15,5,4,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,2,2,3,51,14,11,12,12,12,11,15,98,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,3,3,3,53,11,11,15,3,3,2,2,2,3,52,5,53,3,2,3,52,5,5,5,5,14,11,12,12,22,12,12,12,11,11,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,34,36,4,4,96,4,4,54,3,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,14,12,15,5,111,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,2,2,3,109,5,14,11,12,11,15,5,49,3,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,52,11,53,3,3,55,14,15,54,3,3,3,2,2,3,51,5,49,3,3,52,5,5,5,5,14,11,12,12,11,11,11,12,12,11,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,34,36,49,3,55,54,3,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,55,14,12,15,19,54,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,100,5,14,11,15,5,51,99,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,52,14,15,55,3,3,3,3,3,3,52,14,15,3,3,52,11,49,55,3,3,51,5,5,5,5,14,11,12,12,11,11,11,12,12,12,11,11,5,5,5,5,5,5,5,6,6,5,5,5,5,5,5,5,32,5,53,3,3,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,55,14,15,54,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,108,50,54,55,50,99,3,2,2,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,3,55,54,3,3,101,53,3,2,3,14,11,15,54,3,3,14,11,15,3,3,52,5,5,5,5,14,11,12,12,12,11,11,11,11,12,12,11,11,15,5,5,5,5,5,8,8,8,6,5,5,5,5,5,5,32,5,49,3,2,2,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,54,55,53,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,3,3,3,3,3,2,2,2,1,1,1,1,1,1,1,2,2,2,2,3,52,54,3,2,3,3,3,52,164,11,3,2,3,55,54,3,3,3,52,11,15,54,3,52,14,15,5,5,5,14,11,12,12,11,11,11,11,11,12,12,11,11,15,5,5,5,5,5,8,8,8,8,5,5,5,5,5,5,34,36,5,53,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,2,2,2,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,51,48,11,53,3,2,3,11,15,54,3,2,3,3,52,11,15,53,100,54,3,3,3,55,11,11,15,5,5,14,11,12,11,11,11,11,11,12,12,12,11,11,15,5,5,5,5,8,8,8,6,5,5,5,5,5,5,5,5,32,5,49,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,2,2,2,2,2,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,14,11,15,53,3,3,3,3,3,3,3,3,14,11,11,11,15,3,3,2,2,3,52,11,15,5,5,5,14,11,11,11,11,11,11,12,12,12,11,11,11,5,5,5,5,5,8,8,8,5,5,5,5,5,5,5,5,5,34,33,36,53,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,14,11,15,3,2,3,3,52,14,11,96,11,14,11,15,54,3,2,2,2,3,55,11,11,15,5,14,11,11,11,11,11,11,11,12,12,11,11,11,15,5,5,5,5,8,8,8,8,5,5,5,5,5,5,5,5,5,8,8,34,33,36,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,3,3,2,3,52,14,11,11,15,3,55,108,54,3,3,2,2,2,2,2,3,55,11,11,11,11,11,11,11,11,11,11,12,12,12,11,11,15,5,5,5,5,5,8,8,8,8,5,5,5,5,5,5,5,8,8,8,8,99,100,34,36,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,14,11,11,15,3,3,3,3,3,2,2,2,2,2,2,2,3,52,14,11,11,11,11,11,11,11,11,11,12,12,11,11,15,5,5,5,5,5,6,8,8,6,8,8,5,5,5,5,5,8,8,111,100,111,101,98,100,32,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,55,54,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,55,54,14,11,11,11,15,5,5,14,11,11,12,11,15,5,5,5,5,5,5,8,8,8,8,8,8,8,5,5,5,5,8,8,8,96,8,8,8,102,107,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,55,50,54,55,5,5,5,5,14,11,12,11,15,5,5,5,5,5,5,8,8,8,8,6,8,6,5,5,5,5,8,111,97,105,97,103,97,101,32,48,53,3,52,53,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,2,3,3,3,52,108,5,8,8,8,14,11,11,15,5,5,5,5,5,5,8,8,8,8,6,5,5,5,5,5,5,8,8,8,8,8,98,100,8,34,33,36,48,5,49,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,103,52,8,8,8,8,14,11,15,8,5,5,5,5,5,5,5,8,8,6,8,5,5,5,5,5,5,6,8,8,8,111,97,101,8,6,5,34,33,36,53,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,8,8,8,8,14,15,8,8,8,5,5,5,5,5,5,5,8,8,8,8,5,5,5,5,5,5,6,8,8,8,8,8,6,5,5,5,5,34,36,53,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,8,8,8,8,14,15,8,8,8,5,5,5,5,5,5,8,8,8,8,8,5,5,5,5,5,5,5,6,8,8,8,5,5,5,5,5,5,32,49,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,53,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,5,8,8,8,8,8,8,8,8,8,5,5,5,5,5,5,8,8,6,5,5,5,5,5,5,5,5,5,8,8,8,5,5,5,5,5,5,20,49,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,52,14,15,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,50,5,5,8,8,8,8,8,8,8,5,5,5,5,5,5,8,6,5,5,5,5,5,5,5,5,5,5,8,8,8,6,5,5,5,5,5,5,49,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,14,11,15,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,51,5,5,8,8,8,8,8,8,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,8,6,5,5,5,5,5,54,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,14,12,15,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,5,5,5,5,8,8,8,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,111,103,100,8,6,5,5,108,54,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,14,13,15,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,51,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,111,97,101,96,8,8,6,111,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,14,12,12,15,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,51,14,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,8,8,8,8,99,97,103,105,97,100,8,49,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,14,13,12,15,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,52,14,11,11,15,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,6,111,97,97,101,111,101,8,8,96,8,54,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,14,12,12,12,15,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,48,5,5,14,15,14,15,5,5,5,5,5,5,5,5,5,5,8,8,8,6,5,5,5,5,8,8,8,111,97,97,100,99,2,107,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,14,11,12,12,13,15,3,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,54,55,5,5,14,11,12,11,15,54,55,5,5,5,8,8,8,8,99,109,8,6,5,5,5,6,8,111,97,97,103,105,101,96,8,53,3,3,2,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,1,1,1,1,1,1,1,2,2,2,3,14,12,11,11,12,12,15,3,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,52,5,5,5,11,11,15,54,52,53,100,8,8,8,99,97,103,101,8,8,8,5,5,5,5,6,8,8,111,101,99,97,101,6,5,48,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,1,1,1,2,2,1,1,1,1,1,2,2,2,2,3,14,12,12,12,12,12,15,3,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,5,5,5,14,13,15,3,109,108,53,55,8,99,101,8,96,8,8,8,8,6,5,5,5,5,6,8,111,97,101,8,8,8,5,5,49,3,2,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,3,3,2,2,2,1,1,1,1,1,2,2,2,2,3,14,12,13,12,12,15,54,3,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,55,5,14,11,15,54,101,54,3,3,3,97,104,8,8,98,97,97,109,8,8,5,5,5,5,5,6,8,8,8,6,6,8,8,6,49,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,3,3,3,2,2,1,1,1,2,2,2,2,3,52,14,12,12,12,12,15,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,52,11,11,12,15,102,97,3,52,53,52,4,98,100,8,8,8,8,8,8,8,5,5,5,5,5,5,5,5,5,5,6,6,8,8,6,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,52,53,3,3,2,2,1,2,2,2,2,3,52,14,12,12,12,11,11,15,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,14,11,12,12,15,96,54,3,55,108,4,8,8,98,97,103,109,8,8,8,6,5,5,5,5,5,5,5,5,5,5,5,6,8,8,8,111,3,3,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,55,14,15,53,3,2,2,2,2,2,2,3,14,12,12,13,11,11,12,15,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,11,13,12,15,54,3,3,2,3,52,14,15,8,8,8,110,8,8,8,6,5,5,5,5,8,8,6,5,5,5,5,6,8,8,8,8,6,53,52,48,53,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,14,12,15,53,3,2,2,2,2,3,52,14,12,12,12,12,12,13,15,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,14,12,12,15,49,52,3,2,52,96,14,11,5,5,8,8,8,8,6,5,5,5,5,6,8,4,4,4,8,6,5,5,8,8,8,8,8,8,6,5,50,54,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,52,14,12,13,15,3,2,2,2,2,3,51,14,11,12,13,12,12,15,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,14,12,15,54,55,54,3,2,55,96,14,11,15,5,5,5,5,5,5,5,5,5,6,8,4,4,108,4,4,8,8,6,6,8,8,8,8,8,6,54,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,52,14,13,12,12,15,53,3,2,2,2,3,55,14,11,11,12,12,12,15,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,54,3,3,3,3,3,2,2,2,3,14,12,11,15,5,14,15,5,5,5,5,5,8,4,108,4,96,4,4,4,8,8,6,6,8,8,8,6,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,55,14,12,12,12,12,15,53,3,2,2,2,3,14,12,12,12,12,12,15,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,2,2,2,2,2,55,53,3,52,14,12,11,11,11,15,5,14,11,15,5,5,6,4,98,97,104,4,108,4,8,8,8,8,8,54,55,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,52,14,12,12,13,12,13,15,53,3,2,3,52,14,13,12,12,12,12,15,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,3,2,101,14,12,13,12,11,11,11,11,11,15,5,5,5,5,8,4,4,102,97,101,4,8,6,6,8,8,53,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,51,14,12,12,12,12,12,12,15,53,3,3,14,12,12,12,12,12,13,15,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,2,2,2,3,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,3,14,12,12,12,12,11,11,11,15,5,5,5,5,5,5,6,4,4,96,4,4,8,6,5,5,8,6,6,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,14,12,13,12,12,12,13,12,15,3,3,14,12,11,12,12,12,12,12,15,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,52,53,3,2,2,2,2,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,12,12,13,12,15,14,15,4,5,5,5,5,5,5,5,5,6,99,101,4,8,6,5,5,5,6,6,50,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,52,53,52,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,14,12,12,12,12,12,12,15,53,3,55,14,11,12,12,12,12,11,15,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,52,48,4,4,53,3,3,2,2,2,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,14,12,12,15,4,4,4,4,5,5,5,5,5,5,5,5,5,96,8,8,6,5,5,5,5,5,6,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,53,52,4,4,4,4,53,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,14,12,13,12,12,13,12,15,3,52,14,12,12,11,12,12,12,15,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,8,14,15,8,4,4,4,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,52,13,12,12,25,108,4,4,4,5,5,5,5,5,5,5,50,54,3,55,6,5,5,5,5,5,5,50,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,55,4,4,4,4,4,54,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,14,12,12,12,12,12,15,54,52,14,12,13,11,11,12,12,12,12,15,3,2,2,2,2,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,8,14,12,12,15,8,4,4,4,53,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,51,14,12,12,15,3,55,4,5,5,5,5,5,5,5,54,3,3,2,3,51,5,5,5,5,5,5,53,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,52,4,4,16,4,111,52,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,14,12,12,12,13,15,110,14,13,12,12,15,14,12,13,12,12,15,53,3,2,2,2,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,51,8,8,14,12,12,15,8,4,4,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,52,14,12,13,15,54,3,3,14,15,5,5,5,5,5,49,3,2,2,2,3,55,5,5,5,5,5,5,5,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,55,108,4,4,4,4,54,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,14,12,12,15,5,14,12,12,12,11,11,11,11,12,12,12,12,15,53,3,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,51,5,8,8,14,15,8,5,4,4,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,14,12,12,15,54,3,2,3,11,11,15,5,5,5,5,49,3,3,2,2,3,52,49,55,5,5,5,5,5,49,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,4,4,4,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,14,13,11,11,15,5,5,5,14,11,13,15,14,12,11,11,12,12,15,3,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,55,50,50,50,54,55,5,5,4,54,55,3,2,2,2,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,13,12,15,54,3,2,2,3,14,11,11,15,5,5,5,54,52,53,3,2,3,55,54,3,55,5,5,5,5,54,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,54,55,54,55,53,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,14,12,13,12,12,15,5,14,12,13,12,13,15,14,11,12,12,12,15,3,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,3,3,3,55,50,4,53,3,3,2,2,2,2,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,3,3,3,2,2,2,3,55,11,11,5,5,5,5,53,51,54,3,2,2,3,3,2,3,51,5,5,5,48,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,14,12,12,13,12,12,11,13,12,12,11,15,14,12,12,12,12,15,54,3,2,2,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,3,3,55,3,3,3,3,2,2,2,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,2,2,3,11,11,15,6,5,49,55,54,3,2,1,1,2,2,2,3,51,8,5,5,5,49,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,52,14,12,13,12,12,12,11,11,11,12,12,11,13,15,14,12,12,15,54,3,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,3,3,3,52,4,3,2,2,2,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,2,2,2,3,14,11,15,8,6,5,53,3,2,2,1,1,1,1,2,3,55,8,8,5,5,49,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,14,12,12,12,12,11,11,11,11,11,13,12,12,12,11,12,12,15,3,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,3,52,4,4,4,4,4,4,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,2,2,2,2,2,3,55,14,11,15,8,5,49,3,2,1,1,1,1,1,2,2,3,55,8,8,5,49,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,14,13,12,12,11,11,11,11,11,11,11,12,12,12,12,13,15,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,4,4,4,4,14,12,15,4,54,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,2,2,3,11,11,11,8,5,49,3,2,1,1,1,1,1,1,2,2,52,8,27,8,54,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,12,12,13,12,11,11,15,25,14,11,11,12,12,11,12,11,15,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,4,4,4,14,12,12,15,54,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,14,11,15,8,6,49,3,2,2,1,1,1,1,1,2,2,55,6,8,108,53,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,3,52,14,12,12,12,12,12,11,11,11,11,11,12,12,12,11,12,12,15,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,4,8,14,12,15,54,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,14,11,8,8,49,3,2,2,1,1,1,1,2,2,3,52,8,8,53,55,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,55,53,52,14,12,12,13,12,12,12,12,12,12,12,12,12,15,14,11,12,12,12,15,53,3,2,2,2,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,4,4,8,14,12,15,3,2,2,2,2,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,4,14,15,8,6,53,3,2,2,1,1,1,2,3,52,8,8,50,54,3,2,2,2,2,2,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,51,14,12,13,12,15,14,12,12,12,12,11,11,12,11,11,15,14,12,12,13,12,15,3,2,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,4,4,8,8,14,15,53,3,2,2,2,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,4,4,8,8,8,6,53,3,2,1,1,1,2,3,55,50,54,3,3,3,3,2,2,2,3,3,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,52,14,12,12,15,54,3,3,55,12,12,12,15,14,12,15,14,15,4,14,12,12,12,15,3,2,2,2,2,2,2,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,4,4,4,8,8,5,5,48,53,2,2,2,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,4,6,8,8,8,111,3,2,1,1,1,2,2,3,3,3,2,3,52,53,3,3,2,3,53,52,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,52,14,12,12,15,49,3,2,2,3,14,12,12,15,14,15,14,15,4,4,4,14,12,12,15,53,3,2,2,2,2,2,2,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,99,109,4,8,8,8,20,5,49,71,2,2,2,3,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,4,4,8,8,8,111,3,2,1,1,1,2,2,2,2,2,2,3,6,8,6,53,3,3,55,4,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,14,12,12,13,15,54,3,2,2,3,55,14,12,12,15,14,12,12,15,4,14,11,12,13,12,15,53,3,2,2,2,2,2,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,101,4,4,14,13,15,8,5,5,53,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,11,15,8,8,54,3,2,2,1,1,1,2,2,2,2,2,3,55,8,8,6,3,52,4,4,55,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,55,13,12,15,54,3,2,2,2,2,3,55,14,12,15,14,12,12,12,15,4,14,12,12,13,13,15,53,3,2,2,2,2,2,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,4,4,14,12,12,12,15,5,5,4,4,53,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,14,11,15,8,53,3,2,2,1,1,1,1,2,2,2,3,3,3,55,8,8,110,4,4,54,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,97,97,97,3,2,2,2,2,2,2,3,97,97,97,100,14,12,12,12,15,4,14,12,12,13,12,15,53,3,3,2,2,2,2,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,55,4,4,14,15,54,3,55,5,4,4,4,4,4,3,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,14,11,15,8,53,3,2,2,2,1,1,2,2,3,52,53,3,55,6,8,6,6,54,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,52,14,12,12,15,53,3,2,2,2,2,3,52,14,12,15,98,103,109,14,12,11,15,14,11,12,12,13,11,11,15,53,3,2,2,2,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,54,3,3,3,2,3,3,3,3,3,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,14,11,15,111,3,3,3,2,1,2,2,3,52,6,54,3,3,109,8,8,111,3,2,2,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,55,14,12,12,15,49,3,2,2,2,3,52,14,12,13,12,15,110,14,13,12,11,15,14,11,12,12,13,12,11,11,15,3,2,2,2,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,2,2,2,3,3,52,53,3,3,52,53,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,14,11,15,53,52,3,2,3,3,3,52,6,8,3,3,52,8,8,6,54,3,2,2,2,2,2,2,2,2,2,1,1,1,2,2,2,2,2,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,2,2,3,3,52,53,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,55,14,12,12,15,53,3,3,3,52,14,12,12,12,13,12,13,13,12,11,15,14,11,12,12,13,12,13,11,15,54,3,2,2,2,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,2,2,2,2,2,2,3,52,14,12,15,6,8,4,4,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,55,11,15,54,3,3,52,54,3,55,8,6,3,3,55,54,55,8,54,3,2,2,2,2,2,3,3,2,2,2,2,2,2,2,3,3,3,3,3,2,2,2,2,2,2,2,2,2,2,2,2,3,3,3,52,8,8,8,53,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,55,14,12,12,12,15,53,52,14,12,12,13,13,12,13,12,12,11,15,14,11,12,12,13,12,12,15,54,3,3,2,2,2,2,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,2,2,2,2,3,52,5,25,13,12,15,9,6,4,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,3,3,3,53,109,48,53,52,8,54,3,2,3,3,52,6,53,3,2,2,2,2,3,55,53,3,3,2,2,2,2,3,52,48,48,48,53,3,2,2,2,2,2,2,2,2,2,3,3,52,48,48,5,5,8,8,8,53,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,3,55,14,12,12,12,12,12,13,13,12,12,12,12,13,12,11,15,14,11,12,13,12,15,54,3,3,2,2,2,2,2,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,2,2,3,52,14,13,12,12,12,15,9,8,4,4,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,51,14,11,15,8,6,3,2,2,2,3,55,54,3,2,2,2,2,2,3,52,8,48,53,3,3,3,3,52,5,5,5,5,49,3,2,2,2,2,2,2,2,2,3,52,48,5,5,5,5,5,6,8,8,8,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,14,12,12,13,13,12,13,13,12,13,11,12,13,12,11,11,13,12,13,15,54,3,2,2,2,2,2,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,14,12,12,13,15,9,8,6,5,4,4,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,55,14,11,11,15,54,3,2,2,3,3,3,3,2,2,2,3,3,2,3,55,8,8,5,48,53,52,48,5,5,5,5,50,54,3,2,2,2,2,2,2,2,3,52,5,5,5,5,5,5,5,5,6,8,8,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,14,12,12,13,12,12,12,11,15,32,14,11,13,11,12,12,13,12,15,53,3,2,2,2,2,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,55,12,15,9,8,9,5,5,4,4,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,55,14,11,15,53,3,2,3,52,52,54,3,3,3,3,52,3,2,2,3,55,8,8,5,5,5,5,5,5,50,54,3,3,2,2,2,3,3,3,3,3,52,5,5,5,5,5,5,5,5,5,5,5,8,3,3,3,3,3,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,52,14,12,13,12,12,12,12,15,35,38,36,14,12,13,13,13,12,12,11,15,3,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,6,8,8,8,6,5,4,4,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,14,11,15,3,2,3,14,15,53,52,53,52,8,8,3,2,2,3,52,8,8,8,8,5,5,5,54,3,3,2,2,2,2,3,52,48,53,52,48,5,5,5,5,5,5,5,5,5,5,5,5,54,3,52,8,8,53,3,3,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,14,12,13,13,12,12,12,15,33,38,17,38,33,14,13,12,12,13,11,11,15,3,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,54,3,55,6,4,4,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,14,11,53,3,3,55,14,15,4,4,5,8,54,3,2,2,3,55,54,8,8,8,8,8,54,3,2,2,3,3,3,3,3,51,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,53,52,8,8,8,8,6,53,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,52,14,12,12,12,13,12,12,13,15,34,38,37,14,13,12,12,13,12,11,15,54,3,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,3,2,3,55,54,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,15,54,3,2,3,55,14,11,15,5,111,3,2,2,2,2,3,52,54,55,8,8,54,3,2,3,3,52,48,53,52,48,5,5,5,5,5,5,5,5,5,6,108,8,6,5,5,5,5,5,6,8,8,8,8,8,6,53,3,2,2,2,3,3,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,14,12,143,11,12,12,13,13,12,13,94,32,95,13,12,12,12,12,13,15,54,3,2,2,2,2,2,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,3,2,2,3,52,14,11,15,111,3,3,2,2,2,2,3,3,3,3,55,53,3,3,52,48,5,5,5,5,5,5,5,5,5,5,5,5,6,8,8,96,8,8,6,5,5,5,5,5,5,6,8,8,8,8,54,3,2,2,3,52,8,8,53,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,4,11,143,143,143,12,13,12,12,12,15,33,38,33,14,12,12,12,13,12,15,53,3,2,2,2,2,2,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,48,53,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,2,2,3,55,54,14,11,15,52,53,3,2,2,2,2,2,2,2,3,3,2,3,8,6,5,5,5,5,5,5,5,5,5,5,5,5,8,8,8,98,100,8,8,8,5,5,5,5,5,5,5,6,8,8,53,3,2,2,3,8,8,8,8,8,53,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,52,53,3,2,3,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,4,4,11,11,143,12,13,12,13,12,12,11,15,32,14,11,12,12,13,12,12,12,15,53,3,3,2,2,2,2,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,52,9,10,9,48,53,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,3,55,54,14,15,54,3,3,3,2,2,3,2,2,2,2,2,3,55,8,8,5,5,5,5,5,5,5,5,5,5,6,8,108,8,8,106,8,8,6,5,5,5,5,5,5,5,5,5,8,6,3,2,2,3,55,5,6,8,8,8,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,5,48,48,53,52,54,2,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,3,4,4,4,4,11,12,12,12,13,12,12,12,12,12,11,12,12,12,13,12,12,12,12,12,12,15,53,3,3,3,2,2,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,51,10,10,10,10,111,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,55,54,3,3,2,2,2,2,3,3,2,2,2,2,3,52,8,8,8,8,5,5,5,5,5,5,5,5,8,8,98,103,97,105,100,108,50,50,5,5,5,5,5,5,5,50,54,55,53,3,2,2,3,55,54,55,8,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,55,53,52,48,14,12,11,15,49,3,2,2,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,3,4,4,4,4,54,55,14,12,13,12,12,12,12,13,11,13,12,13,12,12,12,12,12,12,12,12,15,53,52,53,3,2,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,55,108,10,18,10,10,53,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,2,2,2,2,2,3,3,3,3,2,2,2,3,8,8,8,8,8,8,5,5,5,5,5,5,5,8,8,8,106,8,8,98,3,3,3,55,5,5,5,5,50,54,3,3,3,3,1,2,2,2,3,3,3,3,3,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,5,14,12,143,13,12,15,53,3,3,52,3,2,2,2,1,1,1,1,1,1,1,1,2,2,3,55,4,4,54,3,3,55,14,12,13,12,12,13,12,11,12,13,12,12,12,23,12,12,12,12,12,11,11,15,54,3,2,2,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,52,10,10,10,9,54,3,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,52,53,53,3,2,2,2,3,55,8,8,8,8,8,8,5,5,5,5,5,5,6,8,99,101,8,21,49,3,2,2,3,55,50,50,54,3,3,2,2,2,2,2,1,1,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,52,14,11,143,143,143,12,11,15,48,48,54,2,2,2,2,1,1,1,1,1,1,1,1,2,2,2,3,3,3,3,2,3,52,14,12,12,13,13,12,15,14,12,13,12,12,15,5,14,12,12,12,12,12,11,15,54,3,2,2,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,3,55,54,55,50,54,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,55,11,11,53,3,2,2,2,3,55,6,8,8,14,11,15,5,5,5,5,5,5,8,110,8,8,6,111,3,2,2,2,3,3,3,3,2,2,2,2,2,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,52,14,11,12,13,143,12,13,12,11,13,15,48,53,2,2,2,2,1,1,1,1,1,1,1,2,2,2,2,2,2,2,3,52,14,12,12,12,12,11,15,108,164,14,12,13,15,5,14,12,12,12,12,12,12,15,54,3,2,2,2,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,3,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,52,53,109,11,11,53,3,2,2,2,3,3,55,14,11,11,11,15,5,5,5,5,5,6,8,6,5,5,5,53,3,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,54,52,14,12,13,12,12,12,13,12,143,13,15,49,3,2,2,2,1,1,1,1,1,1,1,1,2,2,2,2,2,3,52,14,12,12,13,12,12,15,99,101,14,11,13,12,15,14,12,12,12,12,12,12,15,54,3,2,2,2,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,53,55,11,11,5,11,11,53,3,3,2,2,2,3,3,3,55,14,11,11,15,5,5,5,5,5,5,5,5,5,5,53,3,3,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,52,5,14,13,58,59,60,12,12,143,143,143,11,15,53,3,2,2,1,1,1,1,1,1,1,1,2,2,2,2,3,3,14,11,13,12,12,12,12,15,96,14,11,12,12,15,14,12,12,12,15,14,15,54,3,3,2,2,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,55,53,109,5,50,5,11,11,11,53,3,2,2,2,2,2,3,55,14,15,5,5,5,14,11,11,15,5,5,5,5,5,48,53,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,3,51,14,13,12,61,57,63,14,13,12,143,12,11,15,54,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,3,3,14,11,11,12,13,12,15,99,101,14,12,13,11,15,5,14,12,15,54,55,54,3,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,50,54,3,55,50,5,5,5,53,3,2,2,2,2,2,3,55,5,5,5,5,54,55,14,11,15,5,5,5,5,5,49,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,53,55,14,12,13,12,15,14,12,12,13,12,12,15,54,2,2,2,2,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,14,11,12,15,50,99,105,100,14,12,12,11,11,15,5,5,54,3,2,2,2,2,2,2,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,2,3,3,55,5,5,54,3,2,2,2,2,2,2,3,55,50,50,54,3,3,3,55,14,15,5,5,5,5,54,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,55,14,12,12,143,13,12,15,14,11,15,14,15,5,53,2,2,2,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,55,54,55,54,3,3,103,3,55,14,12,12,12,12,15,5,53,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,55,49,3,2,2,2,2,2,2,2,2,3,3,3,3,2,2,2,3,3,3,55,50,5,49,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,3,51,14,12,13,12,11,15,54,55,50,5,5,54,55,3,2,2,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,3,3,3,3,52,53,3,2,3,55,14,12,13,12,12,12,15,48,53,3,2,2,2,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,3,54,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,55,54,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,55,5,14,12,11,15,49,2,2,3,55,54,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,55,54,3,2,3,55,14,12,12,12,13,12,15,54,55,3,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,3,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,55,54,55,50,54,55,2,2,2,2,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,3,3,2,2,2,3,55,14,12,12,12,15,54,3,3,3,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,2,2,2,2,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,3,55,54,3,55,54,3,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,1,2,2,2,3,3,2,3,3,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,1,1,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,2,2,2,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,2,2,2,1,2,2,2,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,],
];
return map5;
}

BIN
examples/tilemap/rawdata/under.map (Stored with Git LFS) Normal file

Binary file not shown.

BIN
examples/tilemap/rawdata/under.tiles (Stored with Git LFS) Normal file

Binary file not shown.

View file

@ -23,6 +23,4 @@
#
pushd header
cc header.c -o header -lm
popd
python ../../FoenixMgr/FoenixMgr/fnxmgr.py --run-pgz u5map.pgz

62
examples/tilemap/u5map.c Normal file
View file

@ -0,0 +1,62 @@
/*
* Copyright (c) 2024 Scott Duensing, scott@kangaroopunch.com
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include "f256.h"
#define MAP_BRITANIA 0x10000
#define MAP_UNDERWORLD 0x30000
#define TILES_IMAGE_TOP 0x50000
#define TILES_IMAGE_BOTTOM 0x60000
#define TILES_CLUT 0x70000
int main(void) {
byte x;
byte r;
byte g;
byte b;
byte *c;
f256Init();
// Set up CLUT0.
c = (byte *)TILES_CLUT;
for (x=0; x<16; x++) {
b = *c++;
g = *c++;
r = *c++;
c++;
graphicsDefineColor(0, x, r, g, b);
}
graphicsSetLayerTile(0, 0);
tileDefineTileSet(0, TILES_IMAGE_TOP, true);
tileDefineTileSet(1, TILES_IMAGE_BOTTOM, true);
tileDefineTileMap(0, MAP_BRITANIA, 16, 255, 255);
tileSetVisible(0, true);
//tileSetScroll(0, 0, 0, 0, 0);
return 0;
}

BIN
examples/tilemap/u5tiles.clut (Stored with Git LFS) Normal file

Binary file not shown.

BIN
examples/tilemap/u5tiles.indexed (Stored with Git LFS) Normal file

Binary file not shown.

BIN
examples/tilemap/under.tiles (Stored with Git LFS) Normal file

Binary file not shown.

View file

@ -28,19 +28,19 @@ void tileDefineTileMap(byte t, uint32_t address, byte tileSize, uint16_t mapSize
// Map size is 10 bits. Docs are wrong.
switch (t) {
case 0:
POKE(VKY_TM0_CTRL, tileSize << 4);
POKE(VKY_TM0_CTRL, (tileSize == 8 ? 1 : 0) << 4);
POKEA(VKY_TM0_ADDR_L, address);
POKEW(VKY_TM0_SIZE_X, mapSizeX);
POKEW(VKY_TM0_SIZE_Y, mapSizeY);
break;
case 1:
POKE(VKY_TM1_CTRL, tileSize << 4);
POKE(VKY_TM1_CTRL, (tileSize == 8 ? 1 : 0) << 4);
POKEA(VKY_TM1_ADDR_L, address);
POKEW(VKY_TM1_SIZE_X, mapSizeX);
POKEW(VKY_TM1_SIZE_Y, mapSizeY);
break;
case 2:
POKE(VKY_TM2_CTRL, tileSize << 4);
POKE(VKY_TM2_CTRL, (tileSize == 8 ? 1 : 0) << 4);
POKEA(VKY_TM2_ADDR_L, address);
POKEW(VKY_TM2_SIZE_X, mapSizeX);
POKEW(VKY_TM2_SIZE_Y, mapSizeY);

View file

@ -29,8 +29,6 @@
#include <ctype.h>
#include <math.h>
#include "stddclmr.h"
/*
* This program assumes it is being run on a little endian machine.

View file

@ -1,95 +0,0 @@
#ifndef STDDCLMR_H
#define STDDCLMR_H
/*
Action figures sold separately. Add toner. All models over 18 years of age.
All rights reserved. Allow four to six weeks for delivery. An equal
opportunity employer. Any resemblance to actual persons, living or dead, is
unintentional and purely coincidental. Apply only to affected area. Approved
for veterans. As seen on TV. At participating locations only. Avoid contact
with mucous membranes. Avoid contact with skin. Avoid extreme temperatures
and store in a cool dry place. Batteries not included. Be sure each item is
properly endorsed. Beware of dog. Booths for two or more. Breaking seal
constitutes acceptance of agreement. Call toll free number before digging.
Caveat emptor. Check here if tax deductible. Close cover before striking
Colors may fade. Contains a substantial amount of non-tobacco ingredients.
Contents may settle during shipment. Contestants have been briefed on some
questions before the show. Copyright 1995 Joker's Wild. Disclaimer does
not cover hurricane, lightning, tornado, tsunami, volcanic eruption,
earthquake, flood, and other Acts of God, misuse, neglect, unauthorized
repair, damage from improper installation, broken antenna or marred cabinet,
incorrect line voltage, missing or altered serial numbers, sonic boom
vibrations, electromagnetic radiation from nuclear blasts, customer
adjustments that are not covered in the joke list, and incidents owing to
airplane crash, ship sinking, motor vehicle accidents, leaky roof, broken
glass, falling rocks, mud slides, forest fire, flying projectiles, or
dropping the item. Do not bend, fold, mutilate, or spindle. Do not place
near flammable or magnetic source. Do not puncture, incinerate, or store
above 120 degrees Fahrenheit. Do not stamp. Use other side for additional
listings. Do not use while operating a motor vehicle or heavy equipment. Do
not write below this line. Documents are provided "as is" without any
warranties expressed or implied. Don't quote me on anything. Don't quote me
on that. Driver does not carry cash. Drop in any mailbox. Edited for
television. Employees and their families are not eligible. Falling rock.
First pull up, then pull down. Flames redirected to /dev/null. For a
limited time only. For external use only. For off-road use only. For office
use only. For recreational use only. Do not disturb. Freshest if eaten
before date on carton. Hand wash only, tumble dry on low heat. If a rash,
redness, irritation, or swelling develops, discontinue use. If condition
persists, consult your physician. If defects are discovered, do not attempt
to fix them yourself, but return to an authorized service center. If
ingested, do not induce vomiting, if symptoms persist, consult a doctor.
Keep away from open flames and avoid inhaling fumes. Keep away from
sunlight, pets, and small children. Keep cool; process promptly. Limit
one-per-family please. Limited time offer, call now to ensure prompt
delivery. List at least two alternate dates. List each check separately by
bank number. List was current at time of printing. Lost ticket pays maximum
rate. May be too intense for some viewers. Must be 18 to enter. No Canadian
coins. No alcohol, dogs or horses. No anchovies unless otherwise specified.
No animals were harmed in the production of these documents. No money down.
No other warranty expressed or implied. No passes accepted for this
engagement. No postage necessary if mailed in the United States. No
preservatives added. No purchase necessary. No salt, MSG, artificial color
or flavor added. No shoes, no shirt, no service, no kidding. No solicitors.
No substitutions allowed. No transfers issued until the bus comes to a
complete stop. No user-serviceable parts inside. Not affiliated with the
American Red Cross. Not liable for damages due to use or misuse. Not
recommended for children. Not responsible for direct, indirect, incidental
or consequential damages resulting from any defect, error or failure to
perform. Not the Beatles. Objects in mirror may be closer than they appear.
One size fits all. Many suitcases look alike. Other copyright laws for
specific entries apply wherever noted. Other restrictions may apply. Package
sold by weight, not volume. Parental advisory - explicit lyrics. Penalty for
private use. Place stamp here. Please remain seated until the ride has come
to a complete stop. Possible penalties for early withdrawal. Post office will
not deliver without postage. Postage will be paid by addressee. Prerecorded
for this time zone. Price does not include taxes. Processed at location
stamped in code at top of carton. Quantities are limited while supplies last.
Read at your own risk. Record additional transactions on back of previous
stub. Replace with same type. Reproduction strictly prohibited. Restaurant
package, not for resale. Return to sender, no forwarding order on file,
unable to forward. Safety goggles may be required during use. Sanitized for
your protection. Sealed for your protection, do not use if the safety seal is
broken. See label for sequence. Shading within a garment may occur. Sign here
without admitting guilt. Simulated picture. Slightly enlarged to show detail.
Slightly higher west of the Rockies. Slippery when wet. Smoking these may be
hazardous to your health. Some assembly required. Some equipment shown is
optional. Some of the trademarks mentioned in this product appear for
identification purposes only. Subject to FCC approval. Subject to change
without notice. Substantial penalty for early withdrawal. Text may contain
material some readers may find objectionable, parental guidance is advised.
Text used in these documents is made from 100% recycled electrons and magnetic
particles. These documents do not reflect the thoughts or opinions of either
myself, my company, my friends, or my rabbit. This is not an offer to sell
securities. This offer is void where prohibited, taxed, or otherwise
restricted. This product is meant for educational purposes only. Times
approximate. Unix is a registered trademark of AT&T. Use only as directed. Use
only in a well-ventilated are. User assumes full liabilities. Void where
prohibited. We have sent the forms which seem right for you. You must be
present to win. You need not be present to win. Your canceled check is your
receipt. Your mileage may vary. I didn't do it. You can't prove anything.
This supersedes all previous notices.
*/
#endif // STDDCLMR_H

167
imageconvert/imageconvert.c Normal file
View file

@ -0,0 +1,167 @@
/*
* Copyright (c) 2024 Scott Duensing, scott@kangaroopunch.com
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#define STB_IMAGE_IMPLEMENTATION
#include "stb_image.h"
typedef unsigned char byte;
typedef struct colorS {
byte r;
byte g;
byte b;
} colorT;
char *replaceExtension(char *org, char *new_ext) {
char *ext;
char *tmp = strdup(org);
size_t newSize;
char *newName;
ext = strrchr(tmp , '.');
if (ext) *ext = 0;
newSize = strlen(tmp) + strlen(new_ext) + 1;
newName = malloc(newSize);
sprintf(newName, "%s%s", tmp, new_ext);
free(tmp);
return newName;
}
int main(int argc, char *argv[]) {
int x;
int y;
int w;
int h;
int n;
int colors = 0;
byte found;
byte *data;
byte *p;
colorT c;
colorT palette[256];
char *filename;
FILE *out;
if (argc != 2) {
printf("Usage: %s [imagefile]\n", argv[0]);
return 1;
}
data = stbi_load(argv[1], &w, &h, &n, 3);
if (data == NULL) {
printf("Unable to load %s!\n", argv[1]);
return 2;
}
// Build palette.
printf("Building palette...\n");
p = data;
for (y=0; y<h; y++) {
for (x=0; x<w; x++) {
c.r = *p++;
c.g = *p++;
c.b = *p++;
found = 0;
for (n=0; n<colors; n++) {
if ((palette[n].r == c.r) && (palette[n].g == c.g) && (palette[n].b == c.b)) {
found = 1;
break;
}
}
if (found == 0) {
palette[colors].r = c.r;
palette[colors].g = c.g;
palette[colors].b = c.b;
colors++;
if (colors > 256) {
free(data);
printf("More than 256 colors in the image. Aborting.\n");
return 3;
}
}
}
}
// Write out F256 CLUT.
filename = replaceExtension(argv[1], ".clut");
printf("Writing %d color palette %s...\n", colors, filename);
out = fopen(filename, "wb");
if (out == NULL) {
printf("Unable to write %s. Aborting.\n", filename);
free(data);
free(filename);
return 4;
}
for (n=0; n<colors; n++) {
fputc(palette[n].b, out);
fputc(palette[n].g, out);
fputc(palette[n].r, out);
fputc(0xff, out);
}
fclose(out);
free(filename);
// Write out raw indexed image.
filename = replaceExtension(argv[1], ".indexed");
printf("Writing %dx%d indexed image %s...\n", w, h, filename);
out = fopen(filename, "wb");
if (out == NULL) {
printf("Unable to write %s. Aborting.\n", filename);
free(data);
free(filename);
return 5;
}
p = data;
for (y=0; y<h; y++) {
for (x=0; x<w; x++) {
c.r = *p++;
c.g = *p++;
c.b = *p++;
for (n=0; n<colors; n++) {
if ((palette[n].r == c.r) && (palette[n].g == c.g) && (palette[n].b == c.b)) {
fputc(n, out);
break;
}
}
}
}
fclose(out);
free(filename);
free(data);
printf("Finished!\n");
return 0;
}

7985
imageconvert/stb_image.h Normal file

File diff suppressed because it is too large Load diff