// ==UserScript== // @name 恋爱游戏网自动水贴 // @namespace http://tampermonkey.net/ // @version 2020.8.14.2 // @description 打开首页,自动访问游戏页面,自动填写评论内容,自动识别验证码,自动提交 // @author PY-DNG // @icon https://www.lianaiyx.com/skin/member/images/nopic.gif // @include https://www.lianaiyx.com/ // @grant GM_setValue // @grant GM_getValue // @downloadURL none // ==/UserScript== (function() { 'use strict'; // 基本参数——用户可修改 // 开发者模式开关(开——显示iframe,关——隐藏iframe) const developer = false; // 水贴的回复内容,按照格式添加/修改/删除 // 在进行评论时,"\n"将被替换为换行,"[T]"将被替换为水贴时的时间(添加[T]可有效避免连续提交同样的内容导致的增加评论失败),"[N]"将被替换为游戏名称或攻略标题 // 不要忘了每行最后的英文逗号(最后一行没有逗号) const COMMENTS = [ '看起来很有意思哦,[N]\n————[T]', '[N]好像很有趣的样子\n————[T]', '我只是单纯的路过... 路过[N]\n————[T]', '顶顶顶\n————[T]', '感谢大佬的《[N]》资源\n————[T]', '为了积分而来的回复...\n————[T]' ]; /* 说明 1. 注意!恋爱游戏网的验证码的格式现在(2020年)是4位纯数字,我可以保证99%的识别正确率(因为在测试中我就没看到过错误),但在将来格式有可能改变(比如加入字母,或者变成6位等等),到时候可能就无法识别了,所以本人不保证对此程序长期的支持!使用本程序即代表已了解并同意本条款。 2. 本程序仅供学习交流,禁止用于其他用途!使用本程序即代表已了解并同意本条款。 */ // 以下的不要随便乱动 // 回显区域 const headLine = document.getElementsByClassName('menber')[0]; const blank = document.createElement('a'); let waterDisplay = document.createElement('a'); blank.innerText = ' '; blank.href = 'javascript:void(0);'; waterDisplay.href = 'javascript:void(0);'; waterDisplay.addEventListener('click', maidWork); waterDisplay.style.color = 'rgb(100,100,255)'; headLine.appendChild(blank); headLine.appendChild(waterDisplay); // 判断今日是否已经水过了 let d = new Date(); let fulltime = d.getFullYear() + "/" + (d.getMonth() + 1) + "/" + d.getDate(); if(GM_getValue('lastTime', '') === fulltime) { waterDisplay.innerText = '今日已水过'; waterDisplay.style.color = 'green'; } else { maidWork(); } function maidWork() { waterDisplay.removeEventListener('click', maidWork); waterDisplay.innerText = '少女蓄力中...'; // 加载网站地图页 let sitemapPage = document.createElement('iframe'); sitemapPage.src = 'https://www.lianaiyx.com/sitemap.html'; if (!developer) { // 隐藏iframe不显示。不知道为什么不能用.style.display = 'none',只要用了就无法正常增加评论,所以干脆迂回,把宽高和边框厚度设置为0px就好 //sitemapPage.style.display = 'none'; //这一句不能用 sitemapPage.width = '0px'; sitemapPage.height = '0px'; sitemapPage.style.borderWidth = '0px'; } else { //sitemapPage.height = '500px'; //sitemapPage.width = '800px'; } sitemapPage.onload = function() { let count = 0; waterDisplay.innerText = '[i/5]少女正在搜寻目标...'.replace('i', String(count)); const subdoc = sitemapPage.contentWindow.document; let commentPage; const cpid = 'cp'; const cponload = function() { waterDisplay.innerText = '[i/5]少女已经锁定目标!'.replace('i', String(count)); commentPage.removeEventListener('load', cponload); // 防止提交后重加载时再次触发事件重复提交 const subdoc = commentPage.contentWindow.document; const title = subdoc.querySelector('.l .arcTitle .yh').innerText.replace('游戏名称:', ''); const input = subdoc.getElementById('saytext'); input.value = randcomment(title); const codeInput = subdoc.getElementById('key'); const codeImage = subdoc.getElementById('KeyImgpl'); const focusEvent = new Event('focus'); console.log('正在水第' + String(count) + '个:' + title); waterDisplay.innerText = '[i/5]少女水贴中...'.replace('i', String(count)); // -------------- 验证码识别填写 -------------- let codeImageOnload = function() { let code = rec_image(codeImage); if (code) { codeInput.value = code; console.log('验证码:' + code); codeImage.removeEventListener('load', codeImageOnload) // 提交 subdoc.getElementById('imageField').click(); // 等待10秒后再接着水(恋爱游戏网限制评论时间间隔最小为10秒) if (count < 5) { console.log('水完了,等待十秒再水下一个'); waterDisplay.innerText = '[i/5]少女休息中...'.replace('i', String(count)); setTimeout(nextPage, 10000); } else { waterDisplay.innerText = '[5/5]少女水贴大成功!'; waterDisplay.style.color = 'green'; waterDisplay.addEventListener('click', maidWork); GM_setValue('lastTime', fulltime); console.log('水完了,这下是真的水完了'); } } else { console.log('识别失败,换验证码重试中...'); codeInput.dispatchEvent(focusEvent); } } codeImage.addEventListener('load', codeImageOnload); codeInput.dispatchEvent(focusEvent); } let all = subdoc.querySelectorAll('td a'); let a, used = []; let ban = '栏目 >>游戏图册|栏目 >>游戏CG/截图|栏目 >>Cosplay|栏目 >>同人图'; nextPage(); function nextPage() { a = all[randint(0, all.length)] if (ban.indexOf(a.parentElement.parentElement.parentElement.parentElement.parentElement.children[0].lastChild.innerText) !== -1) { console.log('随机选择:选择不合法,重新选择中...'); nextPage(); return; } else if (used.indexOf(a) !== -1) { console.log([a, used]); console.log('随机选择:选择已用过,重新选择中...'); nextPage(); return; } else { count++; used.push(a); // 每次水贴都换一个iframe,确保重加载不会重复提交(因为测试的时候这个问题实在是太困扰了,干脆双重保险,在及时清除onload事件EventListener的同时,每次都换一个新的iframe用,我看你这个问题还出来不(。・ω・。)) if (subdoc.getElementById('cp')) { // 去除可能冲突的元素和上一次水贴时用的iframe subdoc.getElementById('cp').parentElement.removeChild(subdoc.getElementById('cp')) } if (commentPage) { commentPage.id = ''; commentPage.src = ''; } commentPage = subdoc.createElement('iframe'); commentPage.id = 'cp'; commentPage.src = a.href; commentPage.addEventListener('load', cponload); subdoc.body.appendChild(commentPage); if (!developer) { //commentPage.style.display = 'none'; } else { //commentPage.height = '500px'; //commentPage.width = '800px'; } } } } document.body.appendChild(sitemapPage); } // 生成随机整数函数 function randint(min, max) { return Math.round(Math.random() * (max - min)) + min; } // 随机返回一条评论 function randcomment(name) { let d = new Date(); let timetext = convertToChinaNum(d.getFullYear()) + "年" + convertToChinaNum(d.getMonth()) + "月" + convertToChinaNum(d.getDate()) + "日 " + convertToChinaNum(d.getHours()) + ":" + convertToChinaNum(d.getMinutes()) + ":" + convertToChinaNum(d.getSeconds()); let comment = COMMENTS[randint(0, COMMENTS.length - 1)]; comment = comment.replace(/N/g, name).replace(/T/g, timetext); return comment; } // 将数字(整数)转为汉字,从零到一亿亿,需要小数的可自行截取小数点后面的数字直接替换对应arr1的读法就行了 // 来自xiao_lone的代码,原文:https://blog.csdn.net/xiao_lone/article/details/86607206 function convertToChinaNum(num) { var arr1 = new Array('零', '一', '二', '三', '四', '五', '六', '七', '八', '九'); var arr2 = new Array('', '十', '百', '千', '万', '十', '百', '千', '亿', '十', '百', '千','万', '十', '百', '千','亿');//可继续追加更高位转换值 if(!num || isNaN(num)){ return "零"; } var english = num.toString().split("") var result = ""; for (var i = 0; i < english.length; i++) { var des_i = english.length - 1 - i;//倒序排列设值 result = arr2[i] + result; var arr1_index = english[des_i]; result = arr1[arr1_index] + result; } //将【零千、零百】换成【零】 【十零】换成【十】 result = result.replace(/零(千|百|十)/g, '零').replace(/十零/g, '十'); //合并中间多个零为一个零 result = result.replace(/零+/g, '零'); //将【零亿】换成【亿】【零万】换成【万】 result = result.replace(/零亿/g, '亿').replace(/零万/g, '万'); //将【亿万】换成【亿】 result = result.replace(/亿万/g, '亿'); //移除末尾的零 result = result.replace(/零+$/, '') //将【零一十】换成【零十】 //result = result.replace(/零一十/g, '零十');//貌似正规读法是零一十 //将【一十】换成【十】 result = result.replace(/^一十/g, '十'); return result; } /****************************验证码识别部分开始****************************/ // 验证码数据库,由我本人手动训练63张4位验证码数据、半自动识别训练60多张4位验证码数据,以及程序自我训练>100张4位验证码数据得到 let JSONDATA = "{\"0\":[[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,0,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,0,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,0,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[0,0,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,0,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,0,1,0,0,0]],[[0,0,0,0,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,0,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,0,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,1,1],[0,1,1,1,1,1,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,1,1,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,1,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,0,1,0,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,0,1,0,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,0,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,1],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,0,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,0,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,0,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,0,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,0,1,0,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,0,1,0,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,0,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,0,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,0,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,0,1,1,1,1,0,0],[0,0,0,0,1,1,1,1,1,0],[0,0,0,1,1,0,1,1,1,1],[0,0,1,1,0,0,0,0,1,1],[0,0,1,1,0,0,0,0,1,1],[0,0,0,1,1,0,0,1,1,1],[0,0,0,0,1,1,1,1,1,0],[0,0,0,0,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,0],[0,1,1,0,0,0,0,1,1,0],[0,0,1,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,0],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,0,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,0,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,0,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,0,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,0,1,1,1,0,0,0]],[[0,0,0,1,0,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,0,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,0,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,1,1],[0,0,1,1,1,0,0,1,1,1],[1,1,1,1,0,0,0,0,1,1],[1,1,1,1,0,0,0,0,1,1],[0,0,1,1,1,0,0,1,1,1],[0,0,0,1,1,1,1,1,1,0],[0,0,0,0,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,0,1,0,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,0,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,0,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,0,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,0,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,0,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[1,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,1,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,0,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,0,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,0,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,0,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,0],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,0,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,0,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,0,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,0,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,1,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[1,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,0],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[1,1,1,0,1,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[0,0,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,0,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,0,0,0],[0,1,1,0,1,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,0,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,0,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,0,0],[0,1,0,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,1,0,0,1,1,0],[0,0,0,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,0,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,1,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,0,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,0,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,1,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,0,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,0,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,0,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,0,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[0,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,1,0],[0,0,1,1,1,0,0,1,1,1],[0,1,1,1,0,0,0,1,1,1],[0,1,1,1,0,0,0,0,1,1],[0,0,1,1,1,0,0,1,1,1],[0,0,0,1,1,1,1,1,1,0],[0,0,0,0,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,0,0,0,1,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,0,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,1,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,0,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,0,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,0,1,0,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,0,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,0,0,1,1,1],[0,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,0,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,0,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,1,0,1,1,0],[1,0,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,0,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,1,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,0,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,0,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,0,1,1,0,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,0,1,1,0,0,0,1,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,1,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,1,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,0,1,1,1,0,0,0]],[[0,0,0,1,1,1,1,0,0,0],[0,0,1,0,1,1,1,1,0,0],[0,1,1,0,0,0,0,1,1,0],[1,0,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,0,1,1,0,1,0,0,0]]],\"1\":[[[0,1,1,1,0,0,0,0,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,0,0,0,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,1,1,0,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,0,1],[0,1,1,1,1,1,1,1,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,0,0,0,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,1,1,1,0,0,0,0,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[1,1,1,0,0,0,1,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,0,1,1,1],[0,0,0,0,0,0,0,0,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,1,0,0,0,0,1,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,0,1,1,1,0,1,1,1,1],[1,0,0,0,0,0,0,0,0,1]],[[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[1,1,1,1,0,0,0,0,0,1],[1,1,1,1,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,1,1,1,0,0,0,0,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,1,1,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,1,1,0,0,1],[0,1,1,1,0,1,1,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,0,1,1,1,1],[1,1,1,1,1,0,1,1,1,1],[1,1,1,1,1,0,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,0,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,0,1,0,0,0,0,1,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,0,1,0,1,1,1,1,1,1],[0,0,0,0,0,0,1,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,0],[0,0,1,1,0,1,0,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,1,0,0,0,0,1],[1,1,1,1,1,0,1,0,1,1],[1,1,1,1,1,0,1,0,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,1,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,1,1,0,1],[0,1,1,1,0,0,1,1,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,0,1,1],[0,0,0,0,0,1,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,1,1,1,0,0,0,0,0,0],[0,1,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,1,1,1,0,0,0,0,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,1,1,0,0,0,1]],[[0,0,0,0,1,0,0,0,0,1],[0,0,0,1,1,0,1,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,1,0,1,1,1,1,1,1],[0,0,0,0,0,0,1,0,0,1]],[[0,0,0,0,1,0,0,0,0,1],[0,0,0,1,1,0,0,0,0,1],[0,0,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,1,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,0,0,0,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,0,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,0,0,0,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,1,0,0,0,0,1],[0,1,1,0,1,0,0,0,0,1],[1,1,1,1,1,0,1,0,1,1],[1,1,1,1,1,0,1,0,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[1,1,1,1,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,0,0,0,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[1,1,1,0,0,0,0,0,0,1],[1,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,0,1,1,1,1],[1,1,1,1,1,0,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,1,1,0,0,1,0,0,0,0],[1,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,0,1,0,1,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,1,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,1]],[[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,0,1,1]],[[0,0,1,0,0,0,0,0,0,1],[1,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[1,1,1,0,1,1,1,1,1,1],[1,1,1,0,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,0,1,0,0,0,0,0,0,1],[0,0,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,0,1,0,0,0,0,0,0,1],[0,0,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,0,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,0,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,0]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,0,1,0,1,0,1,1],[1,1,1,0,1,0,1,0,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,0,1,1]],[[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,1,0,0,0,1],[0,1,1,1,0,1,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,0,1,1,1,0,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,1,1,0,1],[0,0,1,1,0,0,1,1,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,0,1,1,1,1],[1,1,1,1,1,0,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,1,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,1,0,0,0,1],[0,1,1,0,0,1,0,0,0,1],[1,1,1,0,1,1,1,1,1,1],[1,1,1,0,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,1,0,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,0,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,1,1,0,0,1],[0,1,1,1,0,1,1,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,0,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,0,1,1]],[[0,1,1,1,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,0,0,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,1,1,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,0,1,1,1,1,1,1],[1,1,1,0,1,1,1,1,1,1],[0,0,0,0,0,1,0,0,0,1]],[[0,1,1,1,0,0,0,0,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,1,1,1,0,0,0,0,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[1,1,1,0,0,0,0,0,0,1],[1,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,0,1,1,1,1],[1,1,1,1,1,0,1,1,1,1],[1,1,1,1,1,0,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,1,1],[0,0,1,1,0,0,0,0,1,1],[1,1,1,1,0,0,0,0,1,1],[1,1,1,1,0,0,0,0,1,1],[1,1,1,1,0,0,0,0,1,1],[1,1,1,1,0,0,0,0,1,1],[1,1,1,1,0,0,0,0,1,1],[1,1,1,1,0,0,0,0,1,1]],[[0,1,1,0,0,1,1,0,0,1],[0,1,1,0,0,1,1,0,0,1],[0,1,1,1,1,1,1,0,1,1],[1,1,1,1,1,1,1,0,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,1],[0,0,0,1,1,0,1,1,1,0]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,0,1,1],[0,0,0,0,0,0,0,0,1,1]],[[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,0,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,0,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,1,0,1]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,1,1,1,1,1,1],[1,1,1,0,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,0,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[1,1,1,1,1,0,1,1,1,1],[1,1,1,1,1,0,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,0,1,1,1,1]],[[0,1,1,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,1,1,0,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[1,1,1,1,0,0,0,0,0,1],[1,1,1,1,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,1,1,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,0,1,1,1,1,1,1,1]],[[0,1,0,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,0,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,1,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,0,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,0,1,1,1,0,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,1,0,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,0,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,1,1,0,1,1,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,0,0,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,1,1,1,1,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,0,1,1,1],[1,1,1,1,1,1,0,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,0,1,1],[0,0,0,0,0,0,0,0,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,0,0,0,0,0,0,0,1]],[[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,0,1,0,1,1,1,0]],[[0,0,1,0,0,0,0,0,0,1],[1,0,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,0,1,1],[0,0,0,0,0,0,0,0,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[1,1,1,0,0,0,0,0,0,1],[1,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,0,1,1,1,1,1],[1,1,1,1,0,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,0,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,0,1,1,1,1,1,1],[1,1,1,0,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,0,1,0,1,1,1,1],[1,1,1,0,1,0,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,1,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]]],\"2\":[[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,1,1,1,1],[1,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,1,0,1],[1,1,0,0,1,1,1,0,0,1],[1,1,1,1,1,1,0,0,1,1],[0,1,1,1,1,0,0,0,1,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,0],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,1,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,1,1],[0,1,0,0,1,1,1,1,0,1],[0,1,1,1,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,1,0,1],[1,1,0,0,1,1,1,0,0,1],[1,1,1,1,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,1,1,0,0,0,0,0,1,0],[1,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,1,0,1],[1,1,0,0,1,1,1,0,0,1],[1,1,1,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,0,1,1,0,0,0,0,0,0]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,1,0,0,0,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[1,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,1,1,1,1,0,1],[0,1,1,0,1,1,0,0,0,0],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,0,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,0]],[[0,1,1,1,0,0,0,0,1,1],[1,1,1,1,0,0,0,1,1,1],[1,1,1,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,1,1],[0,1,0,0,1,1,1,1,0,1],[0,1,1,1,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,1,1],[0,0,1,1,1,0,0,0,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,0,0,1],[1,0,0,0,0,1,1,0,0,1],[1,0,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,0,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[1,1,1,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,1,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,1,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,1,0,1,1,1,1,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,0,0,1,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,0],[0,0,1,1,1,0,0,0,0,0]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[1,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,0,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,1,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,1,1,1,0,0,0,0,1,0],[1,1,1,1,0,0,0,1,1,1],[1,1,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,1,0,1],[1,1,0,0,1,1,1,0,0,1],[1,1,1,1,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,0,0,1,0,0,0,0,1],[0,0,0,0,1,0,0,0,1,1],[0,0,1,1,0,0,0,1,1,1],[0,0,1,0,0,0,0,1,1,1],[0,0,1,0,0,0,1,1,0,1],[0,0,1,1,0,1,1,0,0,1],[0,0,1,1,1,1,1,0,1,1],[0,0,0,0,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,0,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,1],[1,0,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,0,0,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,0,0,0,0,0,0,1]],[[0,1,1,0,0,0,0,0,1,0],[1,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,1,0,0,1],[1,1,1,1,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,1,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,1,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[1,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,0,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,1,1,0,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,0,1,1,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,0],[0,0,1,1,0,0,0,0,0,0]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[1,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,1,1,1],[1,0,0,0,0,1,1,1,1,1],[1,0,0,0,0,1,1,1,0,1],[1,1,0,0,1,1,1,0,0,1],[1,1,1,1,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[1,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,1,0,0,0,1]],[[0,0,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,1,1],[1,1,1,1,1,1,1,1,0,1],[1,1,1,1,1,1,1,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,0,1,1,1,0,0,0,1,1]],[[0,1,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[1,1,1,0,1,1,1,0,0,0],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,1,0,1],[0,1,1,1,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,0],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,0,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,0,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,0,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,0,0,0,0],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,0,1,1,0,0,0,0,1],[0,0,1,1,1,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,1,1,1,1],[0,1,1,0,0,1,1,1,0,1],[0,1,1,1,0,1,0,0,0,1],[0,0,1,1,1,1,0,0,0,1],[0,0,0,1,1,0,0,0,0,1]],[[1,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,1,0,1],[1,1,0,0,1,1,1,0,0,1],[1,1,1,0,1,1,0,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,1,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,0,0,0,1,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,0,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,0,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,0],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,0],[0,0,1,1,0,0,0,0,0,0]],[[0,0,1,0,0,0,0,0,0,1],[1,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,0,1,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,1,0,0,1,1],[1,1,0,0,0,1,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,1,1,1,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,0,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,1,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,1,1],[0,1,1,0,1,1,1,0,0,0],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,1,0,0,0,1]],[[0,1,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,1,1],[0,1,1,0,1,1,1,1,0,1],[0,1,1,1,1,1,1,1,0,1],[0,1,1,1,1,1,0,0,1,1],[0,0,1,1,1,0,0,0,1,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,0,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,1,0,1],[1,1,0,0,1,1,1,0,0,1],[1,1,1,1,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,1,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,1,1,1,1],[0,1,1,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,1,1],[0,1,1,0,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,1,1],[1,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,1,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[1,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,1,1],[0,0,1,1,1,0,0,0,0,0]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,0,1,1,0],[1,0,0,0,0,1,1,1,0,1],[1,0,0,0,0,0,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,1,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,1,1],[0,1,0,0,0,1,1,1,1,1],[0,1,1,0,1,1,1,1,0,1],[0,1,1,1,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1]],[[0,0,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,0],[0,0,1,1,1,0,0,0,0,0]],[[0,1,1,0,0,0,0,0,1,0],[1,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,1,0,1],[1,0,0,0,1,1,1,0,0,1],[1,1,1,1,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,0,0,0,1,1,0,0,0,1],[1,1,1,1,1,0,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,1,0,0,0,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,0],[0,0,1,1,1,0,0,0,0,0]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,0],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,1,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,1,1],[0,1,1,0,1,1,1,1,0,1],[0,1,1,1,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[1,1,1,0,1,1,1,1,0,1],[1,1,1,1,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,0],[1,1,0,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,1,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,0,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,1,1,0,0,0,0,0,0,1],[1,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,1,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,1,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,0,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,1,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,1,1,0,0,0,0,0,1,0],[1,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,1,0,1],[1,1,0,0,1,1,1,0,0,1],[1,1,1,1,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,0,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[1,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,0,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,1,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,1,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,1,0],[0,1,1,0,1,1,1,0,0,0],[0,1,1,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0]],[[0,1,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,1,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,1,0,1,1,1,1,0,1],[0,1,1,1,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,0,1,1,0],[1,0,0,0,0,1,1,1,0,0],[1,0,0,0,0,0,1,0,0,0],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,0,0,0,1,1,1,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,0]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,0,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,1,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,1,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,1,0,1,1,1,0,0,0],[0,1,1,1,1,1,0,0,0,0],[0,0,1,1,1,0,0,0,0,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,1,0,1],[1,1,0,0,1,1,1,0,0,1],[1,1,1,1,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,1,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,1,0,0],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,1,0,1],[1,1,0,0,1,1,1,0,0,1],[1,1,1,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,0,0],[0,1,0,0,0,1,1,1,0,1],[1,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,1],[1,1,1,0,1,1,0,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,1,1,1,0,0,0,0,1,1],[1,1,1,1,0,0,0,1,1,1],[1,1,1,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,1,1],[0,1,1,0,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,1,1,1,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,1,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,1,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,1,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,1,0,1],[1,1,0,0,1,1,1,0,0,1],[1,1,1,1,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,1,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,1,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,0,1,1,0,0,0,0,1]],[[0,0,1,1,1,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,1,1,1,1,1],[1,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,1,0,1],[1,1,0,0,1,1,1,0,0,1],[1,1,0,1,1,1,1,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,1,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,1,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[1,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,1,0,0,0,1,1],[0,1,1,1,1,0,1,1,1,1],[1,1,1,1,0,0,1,1,1,1],[1,1,1,0,0,1,1,1,1,1],[0,1,1,1,0,1,1,1,0,1],[0,1,1,1,1,1,1,0,0,1],[0,0,1,1,1,1,0,0,0,1],[0,0,0,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,0,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[1,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[1,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,0,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,0],[0,1,1,0,1,1,1,0,0,1],[0,0,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,0,0,0,1,0,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,1,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,1,1],[0,0,1,1,0,0,0,0,0,0]],[[0,0,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,1,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,0],[1,1,0,0,1,1,1,0,0,1],[0,0,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,0,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,1,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,1,1],[0,1,1,0,1,1,1,1,0,1],[0,1,1,1,1,1,1,0,0,1],[0,0,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,0,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,0,1,1,0,0,0,0,0,0]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[1,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,0],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,0,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,0],[0,0,1,1,0,0,0,0,0,0]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,0,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,1,1,0,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[1,1,1,0,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,1,1,0,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,1,1,1,0,1],[1,1,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,1,1,0,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[1,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,0,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,0,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,1,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,1,1],[0,1,1,0,1,1,1,1,0,1],[0,1,1,1,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,1,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,1,1,1],[0,1,1,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,1,1],[0,1,1,0,1,1,1,1,0,1],[0,1,1,1,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,1,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,0],[0,1,1,0,1,1,1,0,0,0],[0,1,1,1,1,1,0,0,0,0],[0,0,1,1,1,0,0,0,0,0]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,0,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,1,1,1],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,1,1,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1],[0,0,1,1,0,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]],[[0,0,1,1,0,0,0,0,0,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,0,0,0,1],[0,0,1,1,1,0,0,0,0,1]]],\"3\":[[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,0,0,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,1,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,0],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,1,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,0,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,0],[1,1,0,1,1,1,0,0,1,0],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,1,0,0,0],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,1,1,1,1,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,0],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,1,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,0],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,1,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,1,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,0],[1,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,0,1,1,0,0,0,1,1],[0,1,1,1,0,0,0,0,1,1],[0,0,1,0,0,0,0,0,0,1],[0,0,1,0,0,1,1,0,0,1],[0,0,1,0,0,1,1,0,0,1],[0,0,1,1,1,1,1,0,1,1],[0,0,0,1,1,1,0,1,1,1],[0,0,0,0,1,0,0,1,1,0]],[[0,0,0,1,0,0,0,0,1,1],[0,0,1,1,0,0,0,1,1,1],[0,0,1,0,0,0,0,0,0,1],[0,0,1,0,0,1,1,0,0,1],[1,1,1,0,0,1,1,0,0,1],[0,0,1,1,1,1,1,0,1,1],[0,0,0,1,1,1,1,1,1,1],[0,0,0,0,1,0,0,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,0,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,0,1,1,0,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,0],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,1,1],[1,1,0,1,1,1,0,0,1,1],[0,0,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,0,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,0],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,0,1,1,1,1],[0,0,1,1,0,1,1,1,1,1]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,1,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,1,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,1,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,0],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,0,0]],[[1,1,1,1,0,0,0,1,1,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,1,0,0,0,1],[0,1,1,0,0,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,1,1,0,1,1,1,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0],[0,0,0,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,0,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[0,0,0,0,0,0,0,0,0,1],[0,0,0,0,1,0,0,0,0,1],[0,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,0,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,1,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,0],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,0,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,0,0],[1,1,0,0,0,0,0,0,1,1],[0,0,0,0,0,0,0,0,0,1],[0,0,0,0,1,0,0,0,0,1],[0,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,0,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,0,0,0,0,1],[0,1,0,1,1,1,0,0,0,1],[0,0,0,1,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,1,0,0,1,1],[0,1,1,0,0,1,0,0,0,1],[0,1,1,0,0,1,0,0,0,1],[0,1,1,1,0,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,1],[0,0,0,1,1,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,0],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,0,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,0],[0,1,0,0,1,1,1,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,0],[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,0,0,0,1,0],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,0,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,0,0,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,1,1,0,0,0,1],[1,1,0,0,1,1,0,0,0,1],[1,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,0,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,1,1,1,0,0,1],[1,1,0,0,1,1,1,0,0,1],[1,1,0,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,1,1,0,1,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[0,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,1,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,0,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,0,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,1,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,0],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,0,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,0],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,0,0,1,0,0,0,1],[0,1,1,0,0,1,0,0,0,1],[0,1,1,1,0,1,1,0,1,1],[0,0,1,1,1,1,1,1,1,1],[0,0,0,1,1,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,0,0,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,1,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,0],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,1,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,0,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,1,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,1,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,0],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,0,1,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[0,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,0,1,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[0,1,0,0,0,0,0,0,1,1],[0,0,0,0,0,0,0,0,0,1],[0,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,0,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,1,0,0,1],[1,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,1,1,1,1,1]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[0,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[0,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,0,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,1,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,0,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,0,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[0,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,0,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,0,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,0,0,1,1,0,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,0,0,1,1],[0,1,1,1,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,1,0,0,0,1],[0,1,1,0,0,1,0,0,0,1],[0,0,1,1,1,1,1,0,1,1],[0,0,1,1,1,1,1,1,1,1],[0,0,0,1,1,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,0,0],[0,1,1,0,0,0,0,0,1,1],[0,0,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,1,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,1,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[0,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,0],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[0,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,1,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,0,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,0,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,1,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,0],[1,1,0,1,1,1,0,1,1,1],[0,1,1,1,0,0,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,1,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,1,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,0],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,0,0,0,0,0,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,0,1,1,1,0,1,1,1,1],[0,0,1,1,0,0,1,1,1,1]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,1,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,1,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,1,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,1,0,0,0,0,1,1],[1,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,0,0,0,0,0,1],[0,0,0,0,0,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,0,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,0,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,0,0,1,0],[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,0,0,0]],[[0,1,0,0,0,0,0,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,1,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,1,1,1,0,0,1,0],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,0,0,0]]],\"4\":[[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,0,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,1,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[1,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,0,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,1,1,0,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,0,1,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,0,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,0,1,1,1,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,1,0,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,0,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,1,0,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,0,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,1,0,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,0,0,0,0,1,1,0,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,0,0,0,1,0,0,0],[0,1,1,1,0,0,1,0,1,0],[1,1,1,1,1,0,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,1,0,1,0,0,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[1,1,1,1,1,0,1,0,0,0],[1,1,1,1,1,0,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,1,1,0,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,0],[0,0,0,0,0,1,1,0,0,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,1,0,0,1,1,0,0],[1,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,1,1,1,0,1,1,0,0],[0,0,1,1,0,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,0,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,0,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,0,1,1,1,0,1,1,1,1],[0,0,0,1,0,0,1,0,0,0]],[[0,0,0,0,1,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,0,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,0,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,1,0,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,0,0]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,1,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,1,0,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,0,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,1,1,0,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,1,0,0,1,0,0,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,1,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,1,0,0,1,1,0,0],[1,1,1,0,1,0,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,0,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,0,0,0,1,0,0,0],[1,1,1,1,0,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,0,1,0]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,1,0,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,1,1,1,1,0,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,1,1,0,0,0,1,0,0,0],[1,1,1,1,1,1,1,0,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,1,0,1,0,0,0]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,1,0,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,0,1,1,1,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,1,1,0,0,0],[0,1,1,1,0,1,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,0,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,1,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,1,0,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[1,1,1,0,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,1,0,1,0,0,0]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,1,1,0,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,0,1,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,0,1,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,1,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,0]],[[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,0,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,1,1,0,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,1,0,1,0,0,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,1,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,0,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[1,1,1,0,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,0,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,1,0,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,1,1,1,1,0,0]],[[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,1,1],[0,1,1,1,1,0,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,0,0,0,1,0,0,0],[1,1,1,0,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,1,1,1,0,0,0],[0,1,1,1,0,1,1,0,1,0],[1,1,1,1,1,1,1,0,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,0,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,1,0,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,0,0,0]],[[0,0,0,0,1,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,0,0,0],[0,1,1,1,0,1,1,0,1,0],[1,1,1,1,0,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,1,1,0,0,0],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,1,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,0,0,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,1,1,0,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[0,1,0,1,1,1,1,1,1,1],[0,0,0,0,1,0,1,0,0,0]],[[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,0,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,1,1,0,0,0,0,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,0,1,1,1,1,1,1,1],[0,0,0,0,0,1,1,0,0,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,0,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,0,1,1,1,0,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,1,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,0,1,1,1,0],[1,1,1,1,1,0,1,1,1,0],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,1,1,0,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,0,0]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,0,1,1,0,1,1,0,0],[0,1,1,1,0,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,0,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,0,0,0,0,0,0],[0,1,1,0,0,0,1,0,0,0],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,0,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,0,1,0,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,1,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,1,0,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,0,0]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,0,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,0,1,1,1,1,1,1,1,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,0,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,1,1,0,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,0,0,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,0,1,0,0,0],[0,0,0,1,1,0,1,1,0,0],[0,0,1,1,0,0,1,0,0,0],[0,1,1,0,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,0,0,0,0,0,1,0,0,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,0,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[1,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,0,1,1,1,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,0,0,0,1,0,1,0],[1,1,1,1,1,0,1,0,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,0,1,1,1,0,1,0,0,1],[0,0,1,1,1,0,1,0,0,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,1,1,0,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,1,0,1,0,0,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,0,1,0,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,1,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,1,1,0,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,1,0,1,0,0,0]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,0,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,0,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,1,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,0,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,0,0,0,0],[0,0,0,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,1,1,0,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,0,1],[1,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,0,0,0]],[[0,0,0,0,1,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,0,1,1,1,1,1,0]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,0,1,1,1,1,1,1,1,1]],[[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[0,0,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,0,1,1,1,1,1,1,1,1]],[[0,0,0,0,0,1,1,0,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,0,1,1,1,1,1,0,0,0],[0,1,1,1,0,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,0,1,1]],[[0,0,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,1,0,0],[0,0,0,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]]],\"5\":[[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,1,0,1,0,0],[1,0,1,1,1,1,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,0],[1,0,0,1,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,0,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,1,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,0],[0,1,0,1,1,1,0,0,1,1],[0,1,1,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[1,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[1,0,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,0],[1,0,0,1,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[1,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,0,0]],[[1,0,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,0,0,0,0,0,0],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,0,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,1,0],[1,1,1,1,1,0,0,1,1,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,1,1,1,1,1,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,1],[0,1,1,1,1,1,0,0,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,0],[0,1,0,1,1,0,0,0,0,1],[0,1,1,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,0,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,0,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,0,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,0],[1,0,0,0,1,1,1,1,1,0],[1,0,0,0,0,0,1,1,0,0]],[[1,1,1,1,1,0,1,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,0,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[1,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,0,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,1,1],[0,1,0,1,1,1,0,0,1,1],[1,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,0],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,0,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[1,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,1,0,1,0,0,1,1,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,1],[1,0,0,0,1,1,1,1,1,0]],[[1,1,1,1,1,0,1,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,1,1,0,0,0,1,1],[1,0,0,1,1,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,0,0,0],[1,0,1,1,1,0,0,0,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[1,0,0,0,0,1,1,1,1,0]],[[0,0,1,1,1,1,1,1,1,1],[0,0,1,0,1,1,1,1,1,1],[0,0,1,0,0,1,1,0,1,1],[0,0,1,0,1,1,0,0,1,1],[0,0,1,0,1,1,0,0,0,1],[0,0,1,0,1,1,1,0,1,1],[0,0,1,0,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[1,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[1,1,0,1,1,1,1,1,1,1],[1,1,0,0,1,1,1,1,1,1]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,0],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[1,0,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,0,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,0,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,0,1,1,1,0,1,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,1,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[1,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,0],[1,0,0,1,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,1,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,0],[1,0,0,1,0,0,0,0,0,0],[1,0,0,1,1,0,0,0,1,0],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,1,1,1,0,0,0]],[[1,1,1,1,1,0,0,1,1,0],[1,1,1,1,1,0,0,1,1,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,1,1,1,1,1,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[1,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[1,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,0,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,1,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,0,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[1,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[1,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,1,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,0,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,1,0,0,0,1,1,1,1,0]],[[1,1,1,0,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[1,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,1,1],[1,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,1,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[1,1,0,0,1,1,1,1,1,1],[0,1,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[1,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,0,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,0],[1,0,0,1,1,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,0,0,0,1,1,0],[1,0,0,0,0,0,0,0,1,1],[0,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,1,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,0],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,0],[1,0,0,1,0,0,0,0,1,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[1,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,1,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,1,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,0,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,0,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,1,0,0,1,1,1,1,1,0],[1,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,0,1,0,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,1,1,1,1,1,1,0],[0,0,0,0,0,1,1,0,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[1,0,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,1],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,1,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,1,1,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,0,0,0,1,0,0],[1,1,1,1,1,1,0,1,1,0],[1,0,0,0,0,0,0,1,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[1,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,0],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,1]],[[1,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,0],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,1,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,1,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,0,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,1,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,0,1,0,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,0],[1,0,0,1,1,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,1,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,0,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,1,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[1,1,0,0,1,1,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[1,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,0,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,1,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[1,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,1,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[1,1,1,1,1,0,0,0,0,0],[1,1,1,1,1,0,0,0,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,0],[1,0,0,1,0,0,0,0,0,0],[1,0,0,1,1,0,0,0,1,0],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,1,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,1,0,0,1,1,1,1,1,0]],[[0,1,1,1,1,1,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[1,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,1,1],[0,1,0,1,1,0,0,0,0,0],[0,1,0,1,1,1,1,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,1,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[0,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,0,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,0,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,0,0,1,1,0,0,0,0,1],[0,0,0,1,1,1,0,0,0,1],[0,0,0,1,1,1,0,0,1,1],[0,0,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,1,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[0,0,0,0,1,0,0,0,1,1],[0,0,0,1,0,0,0,0,0,1],[0,0,0,1,0,0,0,0,0,1],[0,0,0,1,1,0,0,0,1,1],[0,0,0,0,0,1,0,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[0,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,1,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[0,0,0,0,1,0,0,0,1,1],[1,0,0,1,1,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,0,0,1,1,1],[0,1,0,0,0,0,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,0,0,1,1,1,0,0,0,1],[0,0,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[0,1,0,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,1,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,0,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,0,1],[1,0,0,1,1,0,0,1,1,1],[0,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,0,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,0,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[0,1,1,1,1,0,0,1,1,0],[0,0,0,0,1,0,0,0,1,1],[0,0,0,1,1,0,0,0,0,1],[0,0,0,1,0,0,0,0,0,1],[0,0,0,1,0,1,0,0,1,1],[0,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[0,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,0,1,1,1,0,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,1,1,1,0,1,1,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,1,1,1,1,0,0,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,0,0,1,1,1,1,1,1]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[0,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[0,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,0,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,0,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,0,1,1,1,0,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,1,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,1,1],[0,1,0,1,1,1,1,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,1,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,1,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,0],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,1,1,1],[1,0,0,0,1,1,1,1,1,0],[1,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,0,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,0],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,1,0,1,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,0,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,1,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[1,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,1,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,1,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,1,0,1,1],[0,1,0,1,1,0,0,0,0,0],[0,1,0,1,1,0,0,0,0,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,1,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,0,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[1,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,0,0,0],[1,1,1,1,1,0,1,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,0,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[1,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,1,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,0,0,0]],[[0,1,1,1,1,1,0,0,0,0],[0,1,1,1,1,1,0,0,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[1,1,0,0,1,1,1,1,1,1],[0,1,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,1,1,1,0,1,1,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,1,1,1,1,1,1,1],[0,1,0,0,1,1,1,1,1,0]],[[0,1,1,1,1,1,0,0,0,0],[0,1,1,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,0,1,1],[0,1,0,1,1,0,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,0,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,0,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[1,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,0,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,0,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,0],[1,1,1,1,1,1,0,1,1,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[1,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,1,1,0,0,0,0,0],[0,1,0,1,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,1,1,1,1,1,0]],[[1,1,1,1,1,0,0,1,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[1,1,1,1,1,0,0,0,0,0],[1,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,1,0],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,0,0,0,0,0,1],[1,0,0,1,1,0,0,0,1,1],[1,0,0,0,1,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,0,0,1,1],[0,1,0,0,0,0,0,0,0,1],[1,1,0,0,0,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,0,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,1,1,0]]],\"6\":[[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[1,1,1,0,1,1,0,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,0,1,1,1,1,1]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,0,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,0],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,0,1,1,0,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,0,1,1,1,1,1]],[[0,1,1,1,1,1,1,0,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,1,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,1,0,0,1,1],[1,1,1,0,1,1,1,1,1,1],[0,1,1,0,0,1,1,1,1,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,0,1,0,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,1,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,0,1,1,1,1,1]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,1,0,1,1,1,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,0,1,1,1,1,1,0],[1,1,1,0,0,1,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,0,0,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,1,1,0,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,0,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,1,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,0,1,0,0,0],[1,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,1,1],[1,1,0,0,1,1,0,0,1,1],[0,0,0,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,0,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,1,0,1,1,1,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,0,1,1,1,1,1,1],[0,1,1,0,0,1,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,1,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,1,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,1,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[1,1,1,0,1,1,1,1,1,0],[0,1,1,0,0,1,1,1,1,0]],[[0,0,1,0,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,0],[1,0,0,0,1,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,0],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,1,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,0,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,1,1,0,1,1,1],[1,0,0,0,1,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[1,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,0,0,0,1,1,0,0,0,1],[1,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,1,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[1,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,0,0,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,0,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,0,0,0],[0,1,1,1,1,1,1,1,1,0],[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[0,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[1,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,0,0,1,1,0,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,0],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,1,1,1,1,1,1,1,0,0],[1,1,1,1,1,1,1,1,1,0],[1,0,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,0,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,0],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,1,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,1,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,0,1,1,1,1,1,1],[0,1,1,0,0,1,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,0,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,0],[1,1,0,0,1,1,0,0,1,1],[0,0,0,0,0,1,1,0,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[1,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,0],[1,1,0,0,1,1,0,0,1,1],[0,0,0,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,1,0,1,1,1,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[1,1,1,0,1,1,1,1,1,1],[0,1,1,0,0,1,1,1,1,0]],[[0,1,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,1,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,0],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,1,1,1,0,0,0,0],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,1,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,0,1,1,1,1,1,1],[0,1,1,0,0,1,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,0,1,1,1,0,1,0,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,1,1,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,0,1,1,1,1,1]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,0],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,0],[1,1,0,0,1,1,0,0,1,1],[1,1,1,0,0,1,1,0,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,0,0,0,0,1,0,0,1,0],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,1,1,1,0,0]],[[0,0,1,0,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,1,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,0,0,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,1,0,1,1,1,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,0,1,1,1,1,1,0],[0,1,1,0,0,1,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,0,1,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,1,1,0,0,0,0,1],[0,1,0,0,1,1,0,1,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,0,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,0,1,1,0],[1,1,0,0,0,1,0,0,1,1],[0,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,1,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,0,1,1,1,1,1,1],[0,1,1,0,0,1,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,1,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,0,0,0,0,0,1],[0,1,0,0,0,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,0,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[0,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,0,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,0,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,0,1,1,1,0,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,1,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,0],[0,1,1,0,0,1,1,0,1,1],[0,0,0,0,0,0,0,0,0,1],[0,1,0,1,1,1,0,0,0,1],[0,1,1,0,0,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,0,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,1,1,1,1,1,1,1,0,0],[1,1,1,1,0,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,0,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,0,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,0,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[0,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,1,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,0,1,1,1,0,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,1,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,0,0,0,1,1,0,0,0,1],[0,0,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,1,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,0,0,0,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,1,0],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,0,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,0,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,0,1,1,1],[1,1,0,0,1,1,0,1,1,1],[1,1,0,1,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,1],[0,1,1,0,0,1,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,0,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,0,0,1,1,1,1,1],[0,1,1,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,0,1,0,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,1,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[0,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,1,0,1,1],[1,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,1,0],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,0,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,1,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,1,1,1,1,1,0,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,0,1,1,1,1,1,1],[0,1,1,0,0,1,1,1,1,0]],[[0,0,1,1,1,1,1,0,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,0],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,1,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,0],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,0,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,0,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,1,1,0,0,0,0,1],[1,0,0,0,1,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,0,1,1,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,1,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,0,0,0,0,1,1,0,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,1,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,1,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,0,1,1,1,1,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,1,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[1,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,0,1,1,1,1,0,0],[1,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,0],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,1,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[1,1,1,0,0,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,1,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,0,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]]],\"7\":[[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,0,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,1,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,0,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,1,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,0,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,1,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[1,1,1,1,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,1,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,1,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,0,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,0,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,0,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,0,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,0,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,0,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,1,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,1,1,1,1,1],[0,1,0,0,0,1,1,1,1,0],[0,1,0,0,1,1,1,1,0,0],[0,1,0,1,1,1,1,0,0,0],[0,1,1,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,1,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,0,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,1,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,1,0,0,0,0,0,1,1],[0,0,1,0,0,0,0,1,1,1],[0,0,1,0,0,0,0,1,1,0],[0,0,1,0,0,0,1,1,1,0],[0,0,1,0,0,1,1,0,0,0],[0,0,1,0,1,1,1,0,0,0],[0,0,1,1,1,1,0,0,0,0],[0,0,1,1,1,1,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,1,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,0],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,0,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,1,0,1,1,1,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[1,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[1,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[1,1,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,0,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,0,0,0,0,0,1,0,1,1],[1,1,0,0,0,0,0,1,1,1],[1,1,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,1,0,0],[1,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,1,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,0,0,0,0,0,0,0,1,1],[0,0,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,1,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,0,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,0,0,0],[0,0,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,0,1,1,1],[0,1,1,0,0,0,1,1,1,0],[0,1,1,0,0,1,1,1,0,0],[0,1,1,0,0,1,1,0,0,0],[0,1,1,0,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,1,0,0,0,0,0]],[[0,1,1,0,0,0,0,1,1,1],[0,1,1,0,0,0,0,0,1,1],[0,1,1,0,0,0,1,1,1,0],[0,1,1,1,0,1,1,1,0,0],[0,1,1,0,0,1,1,0,0,0],[1,1,1,0,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,1,0,0,0,0,0]],[[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,1,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,0,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,1,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,0],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,0,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[1,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,0,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,0,0,0,0,0],[1,0,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,1,1,1,1,0,0,0,0],[1,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[1,1,0,0,0,0,0,0,1,0],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,0,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,1,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,0,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,1,1,1,1,0,0],[0,1,0,0,0,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,1,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,1,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,1,1,1,1,0],[0,1,0,1,1,1,1,1,0,0],[0,1,0,1,1,1,1,0,0,0],[0,1,1,1,1,1,0,0,0,0],[1,1,1,1,1,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,1,1,1,1,0,0],[0,1,0,0,1,1,1,1,0,0],[0,1,0,1,1,1,1,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,1,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,1,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,0,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,0,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,1,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,1,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,0,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,1,0,0,0,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[1,1,0,0,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,1,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,1,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,0,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[0,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,1,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[0,0,0,0,0,0,0,0,1,1],[0,0,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,1,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[1,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[1,1,0,0,0,0,0,0,1,1],[0,0,0,0,0,0,1,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[0,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[0,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[0,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,1,0,0,0,0,0,0,0,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,1,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,0,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,1,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,0,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,1,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,1,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,1,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[1,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,1,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,1,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,0,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,1,0,0,0,0,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,0,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,0,1,1,0],[0,1,0,0,0,1,1,1,0,0],[1,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,1,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,1,1,1,1,0],[0,1,0,0,1,1,1,1,1,0],[0,1,1,1,1,1,1,0,0,0],[0,1,1,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,1,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,0,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,1,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,0],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,0,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,0,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,1,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,1,1,1,1],[1,0,0,0,0,1,1,1,0,0],[1,0,0,0,1,1,1,0,0,0],[1,0,0,1,1,1,0,0,0,0],[1,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,1,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,1,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,1,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,1],[0,1,0,0,0,0,1,1,0,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,0,1,1,1,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,1,0,0,0,0,0]],[[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,1,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,0,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,0,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,1,1,1,1,1,0],[0,1,0,0,1,1,1,1,0,0],[0,1,0,1,1,1,1,0,0,0],[0,1,1,1,1,1,0,0,0,0],[1,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,1,1,1,1,1,0],[0,1,0,0,1,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,0,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,0,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0]],[[0,1,0,0,0,0,0,0,1,1],[0,1,0,0,0,0,0,1,1,1],[0,1,0,0,0,0,1,1,1,0],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,1,1,1,0,0,0],[0,1,0,1,1,1,0,0,0,0],[0,1,1,1,0,0,0,0,0,0],[0,1,1,1,0,0,0,0,0,0]],[[1,0,0,0,0,0,0,0,1,1],[1,0,0,0,0,0,0,1,1,1],[1,0,0,0,0,0,1,1,0,0],[1,0,0,0,1,1,1,0,0,0],[1,0,0,0,1,1,0,0,0,0],[1,0,0,1,1,0,0,0,0,0],[1,1,1,1,0,0,0,0,0,0],[1,1,1,0,0,0,0,0,0,0]]],\"8\":[[[0,1,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,1,1,1,1,1,1,1,1],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,0,1,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,0,0,0,1,0],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,0,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,0,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[1,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,0,1,1,0,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,0,0,0,1,0],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,0,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,0,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,0,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,0,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,1,1,1,0,0,0,0],[0,1,0,0,1,1,0,0,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,0,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,0,0,1,1,0],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,1,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,1,1,1,1,0,0,1,1],[0,1,1,0,0,0,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,0,0,0,1,0],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,0,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,0,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,1,1,1,0,0,0,1],[0,1,0,0,1,1,1,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,0,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,0],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,0,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,1,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,0,0,1,1,0,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,0,1,1,0,0,1,0,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,0,0,1,1,1,0,0,1,0],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,0,1,0,0,1,1,1,1,0],[0,1,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,0],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,0,0,0],[1,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[0,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,0,1,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,0,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,0,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,0,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,0,0,0],[1,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,0,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,0,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,1,0,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,0,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,0],[0,1,0,0,1,1,0,0,0,1],[0,1,0,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,0,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,1,0],[0,0,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,0,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,0,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,0,1,0,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,1,0],[1,1,1,0,0,1,1,0,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,0,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,1,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,0,0],[0,1,1,1,0,0,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,1,0,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,0,1,1,0,1,1,0,1,0],[0,0,1,0,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,0,1,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,0],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,0,0,0]],[[0,0,0,1,1,0,1,1,1,0],[0,0,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,0,0,0,0],[0,1,1,0,0,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,0,1,1,1,1,1,1,1,1],[0,0,0,1,1,0,1,1,1,0]],[[0,0,0,1,1,0,1,1,1,0],[0,0,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,0,0,1,0,0,0,1],[0,1,1,0,0,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,0,1,1,1,0,1,1,1,1],[0,0,0,1,1,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,0],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,0,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,0,0,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,1,1,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,0,1,1,0,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,1,0],[0,1,1,1,0,0,1,0,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,0,0,1,1,1,0,0,1,0],[1,0,0,1,1,0,0,0,0,1],[1,0,0,0,1,1,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,0,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,0,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,0,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,0,1,1,0,1,1,0,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,0,0,1,1,1,1,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,0,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,1],[0,1,1,1,1,0,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,0,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,1,0],[0,1,1,1,0,1,1,0,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,0,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,0,0,0,1,0],[0,1,1,1,0,1,1,1,1,0],[0,1,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,1,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,1,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,0,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,1,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,0,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,0,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,1,0,1,1],[0,0,1,1,0,0,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,0,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,0,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,0,0,0,0],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,0,1],[0,1,0,0,1,1,1,0,0,1],[1,1,0,0,0,0,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,0,1,1,0]],[[0,0,0,1,0,0,0,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[1,1,1,1,1,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,0,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,0,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,1],[0,1,1,1,0,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,0,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,0,1,1,0,1,1,1,1,0],[0,0,1,0,0,1,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,1,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,1,1,0,0,0],[1,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,1,1,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,1],[1,0,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[1,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,1,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,0,1,1,0,0,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,0,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,0],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,0,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,0,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,1,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[1,1,1,1,0,1,1,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,0,0,0],[1,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,0,1,0,1,0],[0,0,1,1,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,0,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,0],[1,0,0,0,1,1,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,0,0,1,1,1,1],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,0,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,0,1,0,0,0,1,0],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,0],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,0,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,0,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,0,0,0,1,0],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,0,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,0],[1,1,0,1,1,1,0,0,1,1],[0,1,1,0,0,1,1,0,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,0,1,1,0],[0,0,1,0,0,1,1,1,0,0]],[[0,0,0,0,0,0,1,1,0,0],[0,1,0,1,0,1,1,1,0,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,0,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,0,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,1,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,0,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,0,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,0,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,0,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,0,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,1,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,1,1,1,1,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,0,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,0,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,0,1,0,1,1,1,1,0],[0,0,0,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,0,0,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,1,1,0,0,0,0,1],[1,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,1,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,0,0,0,0,1,1,0,0],[0,1,0,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[0,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,1,1,0,0,0,1,1,0,0],[0,1,1,1,1,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,0,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,1,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,1,0,0,1,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,0,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,1,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,1,0,0,1,1,0,0],[0,0,1,0,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[1,1,1,1,0,1,1,1,1,0],[0,1,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,0],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,0,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,0,0,0,1,0,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,1,0,0,0,0],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,0,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[1,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,0,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,0],[1,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[1,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,0,0,0,1,0],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,0,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,1,1,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,1,1,1],[0,1,0,1,1,1,0,0,0,1],[0,1,0,0,1,1,1,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,0,1,1,1,1,1],[0,0,0,0,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,1],[0,1,1,1,1,0,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,1,1,0,0,0,1,0,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,0,1,1,0,1,1,0,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,0,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,0],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,0,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,0,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,0,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,0,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,0,0,1,1,0,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,0,0,0,0,1,1,0,0],[0,1,0,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[0,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,0,1,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,1,0,0,1,1,1,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,1,1,0,0,0,1],[0,1,0,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,0,0,1,1,1,0]],[[0,0,1,0,0,0,1,1,0,0],[0,0,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,1,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,0,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,1,0,0]],[[0,0,1,0,0,0,1,1,0,0],[0,1,1,1,0,1,1,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,1,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,1,0,1,1,1,1,0],[0,0,1,0,0,0,1,0,0,0]]],\"9\":[[[0,0,1,1,1,1,0,0,0,0],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[0,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,1,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,1,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[1,1,1,1,1,0,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,0,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,0,0,1,1,0,0,1,1],[0,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,1,1,1,1,0,0,1,1,0],[1,1,1,1,1,1,0,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,1,1,0,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,0,1,0,0,0,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,1,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,0,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,1,1,1,0,0,1],[1,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,1,0,0,1,0],[1,0,0,0,0,1,0,0,0,0],[1,0,0,0,0,1,0,0,0,0],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,0,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,1,1,1,1,0,0,1,1,0],[1,1,1,1,1,1,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,1,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,0,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,1,1,1,0,0,0,0,0,0],[1,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,0,0,0,1,0],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,1,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,0,1,1,0,0,0,0,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,0,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,0,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,1,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,1,1,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,0,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,0,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[1,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,1,1],[1,1,0,0,1,0,0,0,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,1,1,1,1,0,0,1,1,0],[1,1,1,1,1,1,0,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,1,1,0,1,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,1,0,0,0],[1,1,0,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,0,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,0,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,0,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,0,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,0,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[1,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,0,0,0]],[[0,0,1,1,0,0,0,0,0,0],[1,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,1,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,0,1,0,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,0,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,0,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,1,1,1,1,1,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,0,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,0],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,0,0,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,0,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,1,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,0],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,0,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,0],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,1,1,0],[0,1,1,1,1,0,1,1,1,0],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,1,1,1,1,1,1,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,0,0,0,0,0,0],[1,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,0,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,0,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,1,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[0,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[0,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,0,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,0,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,1,0,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,0,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,0,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,0],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,0,1,1,1,1,0,0,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,1,1],[1,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,0],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,1,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,0,0,0,0,0,0],[1,0,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[1,1,1,1,1,1,1,1,1,0],[0,0,1,0,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,1,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,0,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,0],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,0],[1,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[1,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,1,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,0],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,1]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,0,0,1,1,0,0,1,1],[0,0,0,0,0,1,1,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,1,0,1,0,0,0,0,0,0],[1,1,1,1,1,0,0,1,1,0],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,1,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,1,1,1,1,0,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[1,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,0],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,0,1,0,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,0,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[1,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,1,1,1,1,0,0,1,1,0],[1,1,1,1,1,0,0,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,1,1,1,1,0,1,1],[0,0,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,0,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,1,1,1,1,0,0,1,1,0],[1,1,1,1,1,1,0,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,0,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,0,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[1,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,0,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[1,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,1,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[1,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,0,0,0,0,1],[0,1,0,0,0,1,1,1,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,1,0,0,1,1,1],[1,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,0,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[1,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,0,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,0],[0,1,0,0,0,1,1,0,1,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,1,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,0,1,1,1,1,1,0,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,0,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,0],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,0,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,1,1,1,0,0,0,0,0,0],[0,1,0,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,1,1,1,1,0,0,1,1,0],[1,1,1,1,1,1,0,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,1,1,1,0,1,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,1,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,1,0]],[[0,1,1,1,1,0,0,1,1,0],[1,1,1,1,1,1,0,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,0,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[1,1,1,1,1,0,0,0,0,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[1,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,0,1,0,0]],[[0,0,1,1,0,0,0,0,1,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[1,1,1,1,1,1,1,1,1,0],[0,0,1,1,0,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,1,1,1,0,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,0,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[0,1,0,0,0,1,0,0,0,1],[0,0,0,0,0,1,0,0,0,1],[0,1,0,0,1,0,0,0,1,1],[1,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,0,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,1,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,0,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,1,1,1,1,0,0,1,1,0],[1,1,1,1,1,1,0,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,1,1,1,0,1,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,0,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,0,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,1,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[0,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,0,1,1,1,0,0]],[[0,1,1,1,1,1,0,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,0,0,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,1,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,1,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,1,1,1,0,0,1],[1,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,1,1,1],[0,0,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,0,1,1,1,1,1,1,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,0,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,0,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,1,1,1,1,0,0,1,1,0],[1,1,1,1,1,0,0,1,1,1],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[0,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,1,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,0,0,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,0,1,0,1,0,0]],[[0,1,1,1,1,0,0,1,1,0],[1,1,1,1,1,1,0,1,1,1],[1,1,0,0,1,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,1,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[1,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,0,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,0],[1,1,0,0,1,0,0,0,1,1],[0,0,1,0,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,1,0,1,1],[1,1,1,1,1,0,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,0,1,1,1,0,0,0,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,0,0,0,0,1],[1,0,0,0,0,0,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,0,0,0]],[[0,0,1,1,0,0,0,0,1,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,1,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,0,0,0]],[[0,0,1,1,1,1,0,0,0,0],[0,0,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,1,0,0],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,0],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,0,0,1,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,0,1,1,1,0,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,0,0,0,0,0],[1,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,1,1,0,0,1],[0,1,1,1,1,1,1,1,1,0],[0,0,0,1,1,1,1,1,0,0]],[[0,1,1,1,1,0,0,1,1,0],[1,1,1,1,1,1,0,1,1,1],[1,1,0,0,1,1,0,1,1,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,1,1,1,1,1,1,1],[1,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,1,1,1,1,0,0,1,1,0],[1,1,1,1,1,1,0,1,1,1],[1,1,0,0,0,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,1,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,1,1,1,1,0,0,1,1,0],[0,1,1,1,1,1,0,1,1,1],[1,1,0,1,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,1,0,0,1,1],[1,1,1,1,1,1,1,1,1,1],[0,1,1,1,1,1,1,1,0,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,0,1,1,1,1,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,0,0,0,0,0,0],[0,1,1,1,1,0,0,1,1,0],[1,1,0,0,1,1,0,0,1,1],[1,0,0,0,0,1,0,0,0,1],[1,0,0,0,0,1,0,0,0,1],[1,1,0,0,1,0,0,0,1,1],[0,1,1,0,1,1,1,0,1,0],[0,0,1,1,1,1,1,1,0,0]],[[0,0,1,1,1,1,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]],[[0,0,1,1,1,0,0,0,0,0],[0,1,1,1,1,1,0,1,1,1],[0,1,1,0,1,1,1,0,1,1],[0,1,0,0,0,1,1,0,0,1],[0,1,0,0,0,1,1,0,0,1],[0,1,1,0,1,1,0,0,1,1],[0,1,1,1,1,1,1,1,1,1],[0,0,1,1,1,1,1,1,1,0]]],\"a\":[],\"b\":[],\"c\":[],\"d\":[],\"e\":[],\"f\":[],\"g\":[],\"h\":[],\"i\":[],\"j\":[],\"k\":[],\"l\":[],\"m\":[],\"n\":[],\"o\":[],\"p\":[],\"q\":[],\"r\":[],\"s\":[],\"t\":[],\"u\":[],\"v\":[],\"w\":[],\"x\":[],\"y\":[],\"z\":[],\"demo_used_count\":376}"; let database = JSON.parse(JSONDATA); // =======================图像处理部分开始======================= // 图像处理总流程函数 function recongnize(image) { // 定义标准数据 const STANDARD_WORDS_COUNT = 4; // 标准字数 const STANDARD_WORD_WIDTH = 8; // 标准字宽度 const STANDARD_WORD_HEIGHT = 10; // 标准字高度 // 创建canvas,绘制图片 const canvas = document.createElement('canvas'); const width = canvas.width = image.width; const height = canvas.height = image.height; const ctx = canvas.getContext('2d'); ctx.drawImage(image, 0, 0, image.width, image.height, 0, 0, image.width, image.height); // 二值化 const imageData = toHex(image, ctx); // 腐蚀、膨胀 corrode(imageData); expand(imageData); // 切割 let words = split(imageData, ctx, STANDARD_WORDS_COUNT); // 如果切割失败就返回false; 由调用者处理(比如更换验证码再来一次) if (words.length !== STANDARD_WORDS_COUNT) { return false; } // 缩放 for (let i = 0; i < words.length; i++) { words[i] = zoomToFit(words[i], STANDARD_WORD_WIDTH, STANDARD_WORD_HEIGHT); } return words; } function toHex(image, ctx) { const imageData = []; let average, plus = 0; // 首先获取图片灰度信息储存到array,同时计算平均灰度值 // 格式:二维数组,前两维度是坐标,最后一维是(R+G+B)*A/255 let line = []; for (let x = 0; x < image.width; x++) { line = []; for (let y = 0; y < image.height; y++) { const pixel = ctx.getImageData(x, y, 1, 1).data; line[y] = (pixel[0] + pixel[1] + pixel[2]) / 3 * (pixel[3] / 255); plus += line[y]; } imageData[x] = line; } average = plus / (image.width*image.height); // 二值化 for (let x = 0; x < image.width; x++) { for (let y = 0; y < image.height; y++) { if (imageData[x][y] < average) { imageData[x][y] = 0; } else { imageData[x][y] = 1; } } } return imageData; } // 腐蚀:去除背景噪点 function corrode(imageData) { for (let x = 0; x < imageData.length; x++) { for (let y = 0; y < imageData[x].length; y++) { const isNoise = ( imageData[x][y] === 1 && (x === 0 || imageData[x-1][y] === 0) && (y === 0 || imageData[x][y-1] === 0) && (x === imageData.length - 1 || imageData[x+1][y] === 0) && (y === imageData[x].length - 1 || imageData[x][y+1] === 0) ) if (isNoise) { imageData[x][y] = 0; } } } } // 膨胀:去除字中噪点 function expand(imageData) { for (let x = 0; x < imageData.length; x++) { for (let y = 0; y < imageData[x].length; y++) { const isNoise = ( imageData[x][y] === 0 && (x === 0 || imageData[x-1][y] === 1) && (y === 0 || imageData[x][y-1] === 1) && (x === imageData.length - 1 || imageData[x+1][y] === 1) && (y === imageData[x].length - 1 || imageData[x][y+1] === 1) ) if (isNoise) { imageData[x][y] = 1; } } } } // 切割:去除空行空列,获取单字 // 参数num:应该识别出来的正确字数 // 返回数据:三维数组,第一维引用每个字,后两维度储存字 function split(imageData, ctx, num) { // 先横切,去除上下空行(注意横切要用的是y不是x) let count = 0; for (let y = 0; y < imageData[0].length; y++) { count = 0; for (let x = 0; x < imageData.length; x++) { count += imageData[x][y]; } if (count === 0) { for (let x = 0; x < imageData.length; x++) { imageData[x].splice(y, 1); } y--; } } // 纵切,获取单字 let inWord, words, word, accuracy; let wrongAccuracy = []; accuracy = 1; // 容许的误差有几格 while (true) { inWord = false; words = []; word = []; for (let x = 0; x < imageData.length; x++) { count = 0; for (let y = 0; y < imageData[x].length; y++) { count += imageData[x][y]; } if (count <= accuracy) { //imageData.splice(x, 1); //x--; if (inWord) { words.push(word); inWord = false; word = []; } } else { inWord = true; word.push(imageData[x]); } } if (words.length > num) { // 分割过度,减少容许的误差再试一次 wrongAccuracy.push(accuracy); accuracy--; // 如果减少也不行的话就直接返回吧 if (wrongAccuracy.indexOf(accuracy) !== -1) { break; } } else if (words.length < num) { // 分割不足,增加容许的误差再试一次 wrongAccuracy.push(accuracy); accuracy++; // 如果增加也不行的话就直接返回吧 if (wrongAccuracy.indexOf(accuracy) !== -1) { break; } } else { // 分割正确,跳出循环,返回结果 break; } } return words; } // 缩放 function zoomToFit(word, width, height) { // 创建两个canvas用于缩放、处理数据 const canvas1 = document.createElement('canvas'); const ctx1 = canvas1.getContext('2d'); canvas1.width = word.length; canvas1.height = word[0].length; const canvas2 = document.createElement('canvas'); const ctx2 = canvas2.getContext('2d'); canvas2.width = width; canvas2.height = height; // 先原比例画到canvas1上 display(word, ctx1);const wordData = ctx1.getImageData(0, 0, word.length, word[0].length); // 再按照给定的比例画到canvas2上 ctx2.drawImage(canvas1, 0, 0, width, height); // 获取并将canvas2的imageData转化为数组存储 let imageData = [], line = []; for (let x = 0; x < width; x++) { line = []; for (let y = 0; y < height; y++) { const color = ctx2.getImageData(x, y, 1, 1).data[0]; line[y] = (color === 0 ? 0 : 1); } imageData[x] = line; } return imageData; } // 把数组数据画到canvas上 function display(imageData, ctx) { ctx.canvas.width = imageData.length; ctx.canvas.height = imageData[0].length; for (let x = 0; x < imageData.length; x++) { for (let y = 0; y < imageData[x].length; y++) { const pixel = ctx.getImageData(x, y, 1, 1); const pixelData = pixel.data; pixelData[0] = pixelData[1] = pixelData[2] = (imageData[x][y] === 0 ? 0 : 255); pixelData[3] = 255; ctx.putImageData(pixel, x, y); } } } // =======================图像处理部分结束======================= // =======================数据匹配部分开始======================= // 根据数据库识别验证码 function rec_image(image) { const words = recongnize(image); // 图像处理成功,识别并返回;图像处理失败,返回false if (words) { return rec_code(words); } else { return false; } } // 根据数据库识别验证码数组 function rec_code(words) { let code = ''; for (let i = 0; i < words.length; i++) { code += rec_word(words[i]); } return code; } // 根据数据库识别验证码单字 function rec_word(word) { const chars = '0123456789abcdefghijklmnopqrstuvwxyz'.split(''); // 逐一比对 let max = {same: 0, char: ''} let same = 0; for (let i = 0; i < chars.length; i++) { for (let j = 0; j < database[chars[i]].length; j++) { same = compare(word, database[chars[i]][j]); max = (same > max.same ? {same: same, char: chars[i]} : max); } } return max.char; } // 比对两个word,获取相关度 function compare(word1, word2) { let same = 0; for (let x = 0; x < word1.length; x++) { for (let y = 0; y < word1[x].length; y++) { same += (word1[x][y] === word2[x][y] ? 1 : 0); } } return same; } })();