3kCTF-2020 Writeup

この大会は2020/7/25 2:00(JST)~2020/7/25 22:00(JST)に開催されました。
今回もチームで参戦。結果は2203点で491チーム中24位でした。
自分で解けた問題をWriteupとして書いておきます。

sanity check (Misc)

PDFの最後のページにフラグが書いてあった。

3k{s4n1ty_ch3ck_fl4g_0000}

You shall not get my cookies (Crypto)

$ nc youshallnotgetmycookies.3k.ctf.to 13337
p~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~k
|                                        |
|   ~ Welcome to the `Crypto Bakery` ~   |
|                                        |
c~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~s7

~ This is where we bake our finest cookies.
~ Here, taste one yourself:
~	 90C560B2A01529EF986E54B016E1FEAAD79A54BE52B373311E3B4F8251BE269EC199AE6B370BFCE50A54EEC25ABB0F22
~ Isn't it tasty?

~ Ok, here is the deal. I got what you want.
~ If you bring me some 'Maple Oatmeal Biscuits', I will tell my secret.

~ Oh, I will give you one more hint. My favourite cookies are 'hazelnut cookies', I always do them first!


~ So... whats your cookie: 
90C560B2A01529EF986E54B016E1FEAAD79A54BE52B373311E3B4F8251BE269EC199AE6B370BFCE50A54EEC25ABB0F22
~ Nop. :(

提示されたhexデータは長さ96で48バイト。AES暗号のようなブロック暗号で、これが'hazelnut cookies'のIVを含む暗号化データと推測できる。試しに末尾だけ変更したデータを指定してみる。

$ nc youshallnotgetmycookies.3k.ctf.to 13337
p~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~k
|                                        |
|   ~ Welcome to the `Crypto Bakery` ~   |
|                                        |
c~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~s7

~ This is where we bake our finest cookies.
~ Here, taste one yourself:
~	 90C560B2A01529EF986E54B016E1FEAAD79A54BE52B373311E3B4F8251BE269EC199AE6B370BFCE50A54EEC25ABB0F22
~ Isn't it tasty?

~ Ok, here is the deal. I got what you want.
~ If you bring me some 'Maple Oatmeal Biscuits', I will tell my secret.

~ Oh, I will give you one more hint. My favourite cookies are 'hazelnut cookies', I always do them first!


~ So... whats your cookie: 
90C560B2A01529EF986E54B016E1FEAAD79A54BE52B373311E3B4F8251BE269EC199AE6B370BFCE50A54EEC25ABB0F21
~ That cookie looks burned!

今度は先頭だけ変更したデータを指定してみる。

$ nc youshallnotgetmycookies.3k.ctf.to 13337
p~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~k
|                                        |
|   ~ Welcome to the `Crypto Bakery` ~   |
|                                        |
c~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~s7

~ This is where we bake our finest cookies.
~ Here, taste one yourself:
~	 90C560B2A01529EF986E54B016E1FEAAD79A54BE52B373311E3B4F8251BE269EC199AE6B370BFCE50A54EEC25ABB0F22
~ Isn't it tasty?

~ Ok, here is the deal. I got what you want.
~ If you bring me some 'Maple Oatmeal Biscuits', I will tell my secret.

~ Oh, I will give you one more hint. My favourite cookies are 'hazelnut cookies', I always do them first!


~ So... whats your cookie: 
70C560B2A01529EF986E54B016E1FEAAD79A54BE52B373311E3B4F8251BE269EC199AE6B370BFCE50A54EEC25ABB0F22
~ Nop. :(

'Maple Oatmeal Biscuits'の暗号化を指定する必要がある。

0123456789abcdef
Maple Oatmeal Bi
scuitsPPPPPPPPPP

p0 ^ iv  --AES--> c0
p1 ^ c0  --AES--> c1

paddingが正しいと、"~ Nop. :("と返されるのかもしれない。CBC Padding Oracle Attackで'Maple Oatmeal Biscuits'の暗号化データを作る。

import socket
from Crypto.Util.strxor import strxor

def recvuntil(s, tail):
    data = ''
    while True:
        if tail in data:
            return data
        data += s.recv(1)

def pad(s):
    p = 16 - len(s) % 16
    return s + chr(p) * p

def is_valid(enc):
    s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    s.connect(('youshallnotgetmycookies.3k.ctf.to', 13337))

    data = recvuntil(s, 'cookie: \n').rstrip()
    print data
    print enc
    s.sendall(enc + '\n')

    data = recvuntil(s, '\n').rstrip()
    print data
    if 'burned!' in data:
        return False
    else:
        return True

pt = pad('Maple Oatmeal Biscuits')
pt_blocks = [pt[i:i+16] for i in range(0, len(pt), 16)]

enc_blocks = ['\x00' * 16] * 3

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(('youshallnotgetmycookies.3k.ctf.to', 13337))

data = recvuntil(s, 'cookie: \n').rstrip()
print data
ct = data.split('\n')[8][1:].strip()
enc_blocks[2] = ct[64:].decode('hex')

for i in range(len(enc_blocks)-1, 0, -1):
    xor_block = ''
    for j in range(16):
        for code in range(256):
            print '%d - %d - %d: %s' % (i, j, code, xor_block.encode('hex'))
            try_pre_block = '\x00' * (16 - j - 1) + chr(code) + strxor(xor_block, chr(j+1)*j)
            try_cipher = (try_pre_block + enc_blocks[i]).encode('hex').upper()
            if is_valid(try_cipher):
                xor_code = (j+1) ^ code
                xor_block = chr(xor_code) + xor_block
                break
    enc_blocks[i - 1] = strxor(xor_block, pt_blocks[i - 1])

enc = (''.join(enc_blocks)).encode('hex').upper()

s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(('youshallnotgetmycookies.3k.ctf.to', 13337))

data = recvuntil(s, 'cookie: \n').rstrip()
print data
print enc
s.sendall(enc + '\n')
data = recvuntil(s, '\n').rstrip()
print data
data = recvuntil(s, '\n').rstrip()
print data

実行結果は以下の通り。

        :
p~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~k
|                                        |
|   ~ Welcome to the `Crypto Bakery` ~   |
|                                        |
c~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~s7

~ This is where we bake our finest cookies.
~ Here, taste one yourself:
~        90C560B2A01529EF986E54B016E1FEAAD79A54BE52B373311E3B4F8251BE269EC199AE6B370BFCE50A54EEC25ABB0F22
~ Isn't it tasty?

~ Ok, here is the deal. I got what you want.
~ If you bring me some 'Maple Oatmeal Biscuits', I will tell my secret.

~ Oh, I will give you one more hint. My favourite cookies are 'hazelnut cookies', I always do them first!


~ So... whats your cookie:
12EA20C966B1BB1C0E0DB9B647B3ACD4C7964EBC4FA573311E3B4F8251BE269EC199AE6B370BFCE50A54EEC25ABB0F22
~ YES, that is exactly what i wanted!
~ Take it! 3k{Y3t_An0th3r_Padd1ng_Oracle}
3k{Y3t_An0th3r_Padd1ng_Oracle}

once upon a time (Crypto)

XOR暗号だが、AES暗号のモードのように暗号化される。ecbモードの場合は、もう一度暗号化すれば復号される。

$ ./scss flag_encrypted flag encrypt ecb
$ xxd -g 1 flag
00000000: 91 19 69 64 12 c8 b5 25 9a c1 14 6e 5b be 99 ad  ..id...%...n[...
00000010: 67 17 2d fe 73 be 77 7f 3a c5 03 f0 c1 f9 2a 93  g.-.s.w.:.....*.
00000020: e0 16 54 79 b3 4b d4 ae 9a 6c d8 60 d9 21 e9 5c  ..Ty.K...l.`.!.\
00000030: b6 79 c3 ce bd c4 c1 1b e4 36 54 54 04 05 d0 25  .y.......6TT...%
00000040: 01 1c ce 24 e6 39 1a 98 58 49 56 e6 59 5b 48 6f  ...$.9..XIV.Y[Ho
00000050: ab d0 42 61 8b 44 1d d1 7e 8e 69 1d 13 2f 55 69  ..Ba.D..~.i../Ui
00000060: c1 14 8d a1 b7 28 d7 7a fb fc 0b 5f 05 21 41 39  .....(.z..._.!A9
00000070: 5a                                               Z

一応試したが、やはり復号できない。
cbcモードの場合は、末尾だけ変えても、暗号化は変わらず、先頭から順にXOR鍵を割り出していけば復号できる。

$ cat solve_cbc.py
import os

cmd = './scss flag try_flag_enc encrypt cbc'

with open('flag_encrypted', 'rb') as f:
    flag_enc = f.read()

flag = ''
for i in range(len(flag_enc)):
    try_flag = flag + '0'
    with open('flag', 'wb') as f:
        f.write(try_flag)
    os.system(cmd)
    with open('try_flag_enc', 'rb') as f:
        try_flag_enc = f.read()
    code = ord(try_flag_enc[i]) ^ ord(flag_enc[i]) ^ ord('0')
    flag += chr(code)

with open('flag', 'wb') as f:
    f.write(flag)
$ python solve_cbc.py
$ xxd -g 1 flag
00000000: 33 58 10 16 14 26 37 09 0f 0a 17 2c 3e 13 17 3a  3X...&7....,>..:
00000010: 2d 17 02 0e 1a 07 11 17 17 01 3b 3e 12 2c 33 09  -.........;>.,3.
00000020: 11 1c 09 0d 33 28 12 04 11 1f 01 1d 2c 2b 1c 09  ....3(......,+..
00000030: 15 2b 32 08 04 0f 1d 2c 28 12 3a 38 02 11 2b 36  .+2....,(.:8..+6
00000040: 07 1a 1b 30 3e 3e 39 0f 0e 0f 1c 2b 36 36 3e 02  ...0>>9....+66>.
00000050: 00 0a 0d 01 0b 1a 15 0d 00 15 26 34 02 05 00 33  ..........&4...3
00000060: 26 16 1a 2a 36 36 38 08 30 2b 1b 30 35 0b 08 05  &..*668.0+.05...
00000070: 11                                               .

cbcモードもはずれ。
ofbモードの場合は、ecbモードと同様にもう一度暗号化すれば復号される。

$ ./scss flag_encrypted flag encrypt ofb
$ cat flag
3k{my_hands_are_registered_as_lethal_weapons_that_means_we_get_into_a_fight_i_accidentally_kill_you_i_go_to_jail}
3k{my_hands_are_registered_as_lethal_weapons_that_means_we_get_into_a_fight_i_accidentally_kill_you_i_go_to_jail}

pyzzle1 (Reversing, Misc, Crypto)

Pythonコードにすると、以下のようになる。

import binascii

plaintext = "REDACTED"

def exor(a, b):
    temp = ""
    for i in range(n):
        if (a[i] == b[i]):
            temp += "0"
        else:
            temp += "1"
    return temp


def BinaryToDecimal(binary):
    string = int(binary, 2)
    return string

# encryption
PT_Ascii = [ord(x) for x in plaintext]

PT_Bin = [format(y, '08b') for y in PT_Ascii]
PT_Bin = "".join(PT_Bin)

n = 26936
K1 = '01000000111011011100010101001111101001010011110100001111011111001101101110001001001000011010001100010100110111000010011101100110111110110000110010001110101010001001000110101011011011010011000111110111000111011001010001100100001000111001100010100100111111101111010101011101001010000000010101111100100100110100110110001101010011111100110110100000110000011010000111101100000100100011010100101001100100000000011010000110100001111000001110011111001000010011001001000111110001110101000001010111001011011111111001001011101101101011110001111010001010110001001011011110001001111101101000011010001111111100001000011100101100101010100001000010011101000100010000001101011111010100100000001110110110101111111011110010111000011101101000010111101011100000011011100101110101011110100100111101010000011000110100101010001101010010001101000101001000000111110101011010100110100001001010001101111011011010001001111100110010110100010100111011111110111010110011100001101101110111001000010001001110010101010101110011000000010110010010110101000100011111110011101101110110011111011110110110100100110101010101101101010111111000110110111101000010100001010101001100101110011001110011100111101011101110111000100101110001011010100000000100100011010100111100001101101011101111111010000110110000001100101010110000101001000011111111000111111110011100011101110010000001111001010011000111111010010001101100101011101100110011101010001101011000001001001011001010101110100100110100101010101000000101001010110111111110010100000100010111111011110011100111000110001010000001001101001110100100110110010011010101001001001100100100101000111001100100000010100100110101001011111101101000011110100101001101010010111011100000100111111011111111101111000010101000100111110010011100100000101110011111011100000111101000101110000001000111001111001010000001111101010111010010010010110101100001101010011101011010011111000000111000101010001011100100111111000000011000101000001010011110000100001110000111110001001111001101101001100110011010110111001111100000010101110000000010111111111100110101010100101001011001100110111111001111101111110010110001100110101001100110111001011101110001010001000110001011101001101101000111001011001010101010110110001010110100101110110110100011110100011010000000100110100110100010110001100101000000111011001101110110001001010111100000011111100110000010111011001111101110101000100010000001001010100101110001101010010110011010001010001011111101000010000011011111110111101100110010111010001110001010110111100111110011000111001010101100001011110010111100101010101110101100111110110100011011110110000001010101011101010110111111100110100111110100101110001110001000001000110100010010110000001011101011010010110010110100110001111011101101001110010001110000111011011001101101110101110000001100011110010100000111110010010101001010010010110101101101111100110011011111011011100101000011000111001100000111100000001010101011100110100100111111000111111010100010100000000110010011110000100010000011000011011101011100001111001111101111101100011000111100100101100010100111101000011101010101110001001111111010111111001100111101110100111110101100010110001110110011101011001001110100110110010101101100101110100011100011010111100010011111000111000110001010010101001101111101101111101101010111010101001110011111101111010110101100011000001101001100000001011100011011001010100000000001010100000111101010000111101010101000000001111101010000011000001110100110111111100010101001010010110100011011101101111101000010110011000110011110011101011001001111010000001100111001100110100000010110011000100011110010110011001011000111100010011001010001010100001111111101101101011100010010110101100000110100111101011011101110101010011100111001101011110100101101100111110000010011111101011001110010111101110001101111101100011110101111011001101001010000000100000010001011110100000101010001110111010110010010111011100010110100110111111001000010101110011100100001010011100011101100110001010011010100110110100001101010110101110101101100111101011111100011111001010010101010000100111001000000010010110011110011111001011011111111011001101111100000011100010000101000111010100111111101011010111011010011101011110010100001101000011011010010010000011000100110011101010010010001111011111000011100101111101010001100100100001110001001100001011000101001111100001100100010100000111011011011000110100010001000101101010010001000100010000000001010100110000011100100101110110111111101010001101100100101001100100001000110100111001110110111101011100000010001100001001110111011000100000001000101111000011101100110101101101101000110111001010100100100110000011110000101001011010110000101000100100100000111000101100010010111000111111100100011000011001000100000111111010101101111101000010101101000010001001011101111010101110110110101001111110100110111000111101101011100110011001011101111110000000100011111100010000101111110000101111001000110010101000000010110011101011001001110011001100100100101010010011101001000010011101101111100000011100111011010010101101101111111101110001110101000010000000010010110100100110100011110001110010000100010101100111110000101001011001001111000010000011000111011010100111101111010101000000110100100111101110000010011101100101010000111110101011100110101000011001101110101001000111100001011000010011000101011111101101001100010110111101110001100110111010010110111100001101001100010001010111110101001011010001100100110011100111000110110111010010010000111110101101110100101001101111010100100001010000110010111100110000011100001111110011001101011100011111110001010101010100111010111011111010111011001011101010000010110011011101101111111111111110110110100010001110000011010100011010100101001011110100010111110010010111010000100110110101011110001011110100100001110111011011000000010110101111100101011000011111010010001011010100010001010000001000100110001000101100010000000010010100111011101000001101000111000010100111101110101010110011011100000010001000011110010101000110010010011001100110001101111001010101011010001000001011111101111101011101110100000010010111100100111111001000110010000111111100101101000100000110101101000000100110011101010010001110111111011011001101100101011000010010001100101111111010000001010011101111000011100101101111100101001101000010010010010000100110011011100001100011100110111010100000000001010110000101110010100001010000110101000001101001000101100110111100000101110001100011101110000110101100000011010010101111111011010111100000001001111100000101101110100101111111000001000100111100111011010010100101111101101100111101111110001110000010000111101001001010010110101100101101001110111100011101001110110010101011001011011100011000111101101110001111011111100010100010001100000001111111000001010010100101111110100101111010001100100001010001111101001001111001010111101110100011011101010101100000000001011011110000111001011011100111011100110101101110101011000101001111010101000011010001011010001000000010100000110001011101011001111111001100011111110110111000000100010000001111010101000010011010011100111010011011011001011001010010101100001001111110000011000101100100110001101001100110110011011001100001111110011111010100010011111111101100101111010001011010101100000001000001001001011000100100101000011110010100101001111111010100111001110011000000111101101000111001010111000100011111010011000100110011011001000000110001001011000111011010111111111111100000100100111001011011001100110110010100000001111001001100100110110101000011011011010000110011011101011011010011001010110110000010000000101011010100100010100110000010011111100110000001110100001101000000000011100011010110011000100100101110100010101010101111011101001101010010011011111001111001100000110010011011110011111001001011011101101001010111000111000101001101100010110101011111101110011011110011001000000011101100100110000100010100110110000110000000010001001001110110001111100010000010010010111011110010010010110011111001110101100001000001000010101110001011011000001100010010100111000000101001100111101010011000001100100011110010000011001000110110011001011101000000111010111011110110111111000000100110111010010111111110100111100101110011111011101001111100111100010001101011001001001111000101111000011101011100000111110110010010010111011011011100101100010110000110000110100011110000010011001110000001100001100000101001101001010010011110111001110001000001000110110010101101110001000100010000001101111100110000000100011000000111010100110101011001101111001011000111011110001100001111000101100000000000000010011011101001001100001011100100111010011110011110111010010111000111001010111100011000100001011111110101110011000000110101100101011101001001010100011001111100000001110100011001010001000110001111101011100001110101101000101000011001000011101110100000000011001100001111010111010000100011010011100101101110000100101111101111101000000111111100001011001101101111011100001110000000001101001101111000000001010011100110001011000001000000010111011111110010010000100110000100000101010010110111010010011111000000000000100011011010110111101000001010111110101101110111000111000001001000010011110011110010110011110000110001110011001110000101111001010111111111100001011111001101110100111101001001010110010001110110011100110000110000010110010111010111010000010101111110110111010000010111101010101011010010111100101101111010010110111010111110011111111000111101101000101011011011110111110000101000111001011001100010111010001100101010110010110010100101010010110000000100010100111110110111100011010101000011101000111101111100011110101000000010010111010100101101010111101001101110100100011111001111101110101100000010011101001001110100011100010111100110100010111100001010010001100100011110000101000000010100111111010100011010011111011111001000101010000101001011100011100000100110110100100001001101111010000101100000011010111010000100000001111101000001010001101010001101001001010011001001100011011000001110010111011010101100101100000111111001110000001000100111110111100001011011110100100100100001100011110011000100010010101011011011000111001101001111101101001010000111000010010111110011101001011001010010000000011101000001110111111101010110111001010101110100000011000010011101011010100001010001100001100111111001101010100100001110100110110110010010110011101101110000100100101000111000010000000010010100101110111001001101001001100110000001010001100011001011111110110010001100001101010001001000010111111010001110111110001011101000110011110000101001001110100000001111100000110011010011100010001111110100011000100110110111011011100111100100010011101111110111011000111100001001100010010001000111110110001101001010110101010010101000011010111100111011000011011000001111001110101001100111100101111100110100001101011110010001101001011100100001111110111001011111100000010001001101111011100011001111101011110100000011111111111011001111001110110110000100001011010111100001010011011101011000000111011100100001101110011110010101110011001010100000001010000010011000111010011110011001101001010010111100101010110010010111110001111010111101100110111010100110001001101011100001011100111011101010100011000110111001101011101101111110001110100001101011100011110101010111011110001001101111010000001010110010111010011000111000011010011101011000111011110101110110011101010001010001111100101110001000101011110100010110100011111000010101000100011001010001001001000001101010100010001010011101111111101111000001101001011010000000101101010000100110111011010101111111100000100101010100000001111100000101010000001110010000001011110111000101011001010110010011100011101101110101001001000100110000100011010001100101001001111010010111100111101110100011100110101111110001001100000000000100010000110100010000001001010100101000010100110010001011011010010101011100011010111111011101110010111101001000110010100011001001101111001100111100000111011010000011100011110011011111101001111010011011100110010110001101110001001110110101010000100011011110010111110001111100101001111000101101000101010010011100100000010110010011011010001100101111111001100100100101000111111110101100000000000010100101000101111010100100011000101001110110010100111111011101101001111000011000001010110011111010110001001100101111100011111110110011010011100001000011100011000001111100010111110111110110001100011011000100000010111001001111100010011000001101110110011000001001010101011010011100011001011010110000100010001110101000010111010010110011000011101011110100100000110100111110100110011101000010000011010100110011000011101000001101000000110000001000100011001011111001111011110111100110001001001111001010011110100111100011100010101100111000011100101001000111011001001110001101001010010101001000110110110111110100101101001000110001000101010111010000110100110001100100100001000001000000001100110011011011011010010110101101110110111111111000000110100101111001100001100000010001111100000000111001000010111011000000111111111111000101000111100011111100011100110111001001101110010001111101100100011110011100001111001100011110111111111001010010111100101100000110100010000100001110110001000000100000110110011101101000111110010011001101010111110000011011110001000010000110001000011110010001011011111011011101100100111000100001011011001010011001010000100011100101111110111001011101110000001111010010000100111101001010111101110100100010100001111000010001011100000101110101111100110000100111000100100111111010011101001011000000001100110101000111000000111000001101100000011100110110110111111001000100010010001100010111010010101110001110110001111101010111101101011000001110101001001010101000011001101000010011111011011110110100010011101001010100000101010010110110101110100100110111000011111000111111000111101011001000010000011100111011100010000110001110010001100000111111110101100101001101000101001101001110111110000001000101001110111010101011100110110110110010010110111101001110010011110011001000001011001011111010011000001001011001011100110100010111101001011101110000100001011110110110101110111111100110010000110111110011111000011101111100010100111001001111001101101100111111101000100101110100100010110001100011111001001001100111001100101010101111000001001010011010111111000100000111011001101010011111100101110100111011111010100000101000001001001101111111101001100001010101010000001110010001111011000011000011010000111110010000000000000001101101110101001010010100000110111101001111011111110110001001001100010100101011100111000111100010111010110101110000000000000101001001101101001100011010010111100011010100001000001110110110011010011001001100000101011101100000000101001101110100001100101010000100010101101011111110011100101100101001111110111010111110010011111001010000001010101011111111101011100110110101001011000100010101011110011100101101011111011111101110001100111110000001011011110110110001011010001110110000011110011110110110011001010011100100010100100010011101110110001000010011011010000110100000111010111011000001010111111001100011011010000011000111010010010001010111110100110110011010111000011110110000110101110001010111000111001011011101001010110000010011100011101000000100010000000001111111001000110101110101110010101001000100011000001100011011010001010110101000101100001100010111000111001000110101000010001011000100011101100001100100110000111000101111000011000100101100111000111100101100101000000101001110001000100110101100011000110010000101111010010011011100000010011101001010101100010101011111000001101101011000100110111100110110110010111101010010001100010110101010110101000011101011011111001110010110010111100110101010010001111000101101110110000010101101110111111000100001111011100111110100100011110110000101000111100011010111000100000010100100000110000111010010000011100100100100011000111110100011100010110100000101101110001010111000010100010000001001011011011001111011100011000110100111110100001011101010100101000001101110101000101101111000011000101110111001010111001010000101101010111001101001100011101001010101011101000001011101100100111111001111001001110011001011100001111000011011000111110111101000010110100010001100011000011110101000011010101110110110110101101010101001000010110101100101101100111000100110100111011011010001011101011111011010011101100011111100110001110000010111101001110100010100110010001000010101111011100001110101110111010101001100111100000101001000110011111101111011001110001000100111101111011010111110001011010111100110010111010111100110110010000101101110010001100001110001111110100001110101000011101100110101011000010000100111111111010111110011010100110101101000101011010111001011111101001001111000111100001010110011110001001001111101000000110111111111100100111101101011100101000100011011100011001000111010101101001000111111101111111001010111101111000101110101011010010101011101100011001011010000101100110000101101010101010110001000100011111110001111010011011011110110010100101000100101010010000101011000010001101010010011010101110101000101011101001001001101011111101100010111000001011111101100001110111101101110100010100111101100110100000010011101110111100101111110011111011000100101010001001000100011100001110110111110000011111110100101100111011001110000010010100011110111100001101110001001101000110011101010111111011001001001000101101101111110101001100100110011100011000101000101100001110101001110001010100011110000001110101001111111010111000011101010101110110010000100110010010111101110101011101101110001110111110000110101110110101001010111110100111100011011100011111100110100010000111001011001110110011100001110011110101101010101101010001111111000011110110011101000110111101101010101010101101010110000110100101001010011110000110010010011001011010111100101011001110101011010001110010111001010100010100001001010111011001011001101101001000110101111001000011111011101001011001100000000010010100000101100011101100011110000101000100011101001001110110101100100111100101011001101100001010101100111010001100001101010010010001100010101110111110100100100010001100001011111001100000110100110100000011001100011011010111101110001000100100101110010110001100111001111100111001111101100000010111001010110101001101111001110101011011001101111000010011001100101010100010000011000110111100011110000110001010101000011111001100010100101001010010110100011000001000010000111011010101011011110111010011111011101101010100111010010101100010010101111010100001011101110110100001001100010011101001001000100110000100011110000100101011100101101111110101000001011110010101011011000011010011010111111010100000100101011000011011011101111111101000010111001010101010111000101100110110000100000101000010011010000111101010100001001111100000111000010110101001010000001101110100100101011100111000000110110000111100111100010000100000110110101001110010011000000001001011110100110011011110000101001000000000100100011100111100001101010010001110101111111100101010000101111111101101101001001111011101011110000000111001111100010001001000010100000001010000011110010011100101011110111111011110111100111110010100001101110011011011001001001100010001011101100001101001001101101010011100010101000011101011110010000101111110111110101000110110000010110100010001010001010100110000111100100100001010010111101010101110010110111011011000000001011011011001101101010100001101000010001100100110101010010100101010110101101100110101010111110101011010100011001100111111100000111010001110000000001111110011110001011010010100000010010100111010110011010001111110010000000001011001110010110110111011110011110001111101001011000000111011001111110001001100100011010110100000000100011110001000000001101001100110100100110101001111111101000111011001111111110101001011101011101111001010110000001011000101010101001001111100001110100110001101110100000100000000101110100000101011110110101111100111100100011101011001011110001111101110001001100101010010011111010100110011111000100010011011011000011100110011000001111000010100010001101010101100110000101100101010101110011010110010010100011001100100100010101001101001111110101011000001000111000111001100011100110101111010010001101110111100100101010111110111000000110101001101000111100000100011010101111100110010001010101001110000010110000101100001101001100000111100011100111010010000111100110110000001111101001111100001011111100110001000111001110001111110111000011101100100000001011101110100111001010100110111101111011111010100110101001000110100011110011101100111011001101000011111110101010001010101000101001100111000100000010011110111111100101010000010000100000111011001100110010100010001010000001000111010100001111010011001011111001101101111110111101110011101110100100011010110010100101110110010010011001000111111010010111110110001100011110110111011001100101101100111010111100010001110001011001111101111001011001100101010010011010111010010111001001000000111001101000000001101111100100100000111100111111111101011001001000001011001111000010111110110101001100001100001000101011111011000010100111011111110010101111111011101011111111000010100101110000101100000111010001011010100110111101001001000000101111000010010111111011010001000010111100010001001001011100000011100001011101101010001001110001101001100110010111101111000101111101111011111011111001010000110111001010010101011111001110000111100010010011110001111111101010100011101011110010010010001101001011100110001101111100010000000101000111000011100001011101101010101010111010100010111011001100101100101000011100110101110100001000001110011010000100001011001000100010000110000000110011001010011111011111100011111011000111011110100000001001100001110101011011100001111110011110111100111000011100000100101000001110011100110011110100110101000011000000101101101110000011010110101100110000101100101111111000001111011010100100101110101000001000011001100100101011100101010011001011001001011110000011100011010101011111111000101011110001110100011000001000010101100111111011011100101110011100100010110011101010010100110100010110011100100000010011111011000100100010000001101101100111011000011001010110111011110001000111100101101110111100011111010101011010000001110010111100000001100110001010101110100100111011001011010010100000000001011001110100000101111001110010101110101101001011101101101111011011101101110110111010100110111110001100101110010111110101010011100001100001101000010110110001100010010101000111100000110010001111100100001110100100011111110001001011111100111101000011101010011111000011000100111110010000001000000110010011001111001101100101100000011010010011111110011001001110101111011111001000000010110100100100101100100100000010100011100001100111111101001001010110001000001011110100111010000110101010001001000000111110000101110110011010010001111110100010100101111101010001101100111111000010111111110110011100111000111000011110100001111011111010000011010111111110010111001001011010101111001110001111010000100011111011111111110110101001011011110111101001101100101011101011011100000110011101001001011000001111110101000011100111001010111111110000010101010000001001001111100010110101111001101111010101110000000001011011000011110011111100110111100110111100111000111110100001001001110001100101111101111110011000000101100011110011101011101011000100110110000111001101010010010010111111101101111010101011111101100100100101100000000100010011011101011011000011011110001010100010111110001101011000101110010011001000111110111101010101000011011111001001110001000010010011110010010001110010000100000111010110101110011101000010111110110100011000010010010111011101101010101111100110100010111110111110111110011100101101001000100000000000111101100011101010010111010101111001011101011011110100000010010111000001110001100100001010010110100000000100100100010001100001101010001001101011100110101111101001010110111001100000011111010110001001000111100101110000111001100101111010011010100000100000011111100010100011110011010110000111110001001010100010110101010001001010100111101101110000101010110110011010001011000010111111110001101110111010100001010000111100011001101010101011011000000000101101110001010011010000101110010101011101010010000101000101111010101111110110100011101111111011011110011100011100100011011000111101101111101101000100010000100111100010000010101011111111101010100010010111001010100011101111001000011011110101001100101001001000011001010111100111111000100001101000111110101001000010110001000101010110001000110011111110111010010000111001000000111001001000010001011001001111000110011110000001001110111010010100011111011100111101101010011000100111011110001011001100001000000100011011000001001100011110110010000011010010010011110000000010011111100010010001000101000101011111010001010011010110010001110010101111010001011010100001000111110000110000101001101110010010110111001010001010000010110000011000111000100110110000010100001110101100001011011110100101111011011001000111010111010101100000101100001111110010100010010010110110111010000100110011110110000111110001000101110100110010011011111001101001011111100000110101000011000011110010111000110110000100111011110000000011111101011010000110101010011011111101001000101010010101101010111110110010111110101000100001110001111010000101111101110110101101100011001010010100100100001100001100001000000110111111011000011011100011011101001001111110110000000010101101011010011001111000000010110101011110010011000001101110010100111111101000111101110111100110000011110011001001100111011001110100001010101101101111110110100111010011001010010011011011110111011101001101101101110000110110111101100000011111010001100010111001110101100000000010000100111010001110010001100101101110101101010010110110010100110110011110101000110110000000101001100111010010001101000001100100101001110000000110110110111000001100010011111110111110101111101110011100110000111100001001000101010010011011100010110111010101110101111110101101000100111001001000011111101000000111001000111111110110111111101011000001000000001100001101000101000101011001101101000100110101000110111010101011111101000001111001111001101010000011111011101111000010111011100110111011010101100001110100100010101010110110000100100001010101110100101000101011001010101100101111111111001010100110110100000011010001000011111001001110000110000110011011000110101010000010000101110100001010111011000101001100010010001000001101010000100001011010011100011101011101100001111001010000110011111010111000001100000100111100010110001001101001101010101111101000000111110011100100010100011111100110110001011000111110101011010100100101001111010110101010101100010111001000000011100111001011001011001001111010111011010100000000111011010101010001110011000011111001101100101000011110000110010010110010011100100111010101000101100010011111111100001110010001110010001101101110110101111001111111110111110001011100010000100001101010011110100000100010110010010001010000001101000101010110010100111010000110011010111000110100010000100011100001010101010001000101101001101101011011111111101010000101011110110000100101101110000111111111101010000000011100010111110011111110010101011110010101110101001101111101100000101101111100101101100000000111011110001000010010000100100101000100010000010000100000011100110101101110010011110110101000010100110000110001000110011011111101001101011001101000000110011100001101100101110111100111111100011001111001011011110110000010000110010100110100001111010011101001100111011001100110110100111010100100010101100011001'
K2 = '00010110110110011100010001000100100000101100000001011011010101011110101010001111101110100101110110011100100100110001010001000111001001110111101100110100110111101011010101101111111111101111100010111110100000010111011000000010101011111000100011010001000001010011111000011000000101101101000100001011100110000001100111111101110111111110100101011101110101011110011010001100111001010011100110100101000010110011111111101101011011100100101110001000100000000001111001001100101111000000010110011011110100111100101000111110011101001000110101110101001011001010101100010001011001000001001011001110110011100010010000111001100001110111010111001011100010100110110110110010011010110000001001100010011000101001101010001011111001111010110100001111010111100101100100111010100110100011111000100000101000100011001110001000011100001110001010111101111010110011111011101101110101011010010101010011101000101011100011010010111011000000010010101111000100101001110000111101100010101101100101001011100000000010010101010001010100010001111000101101111101110000011100000110011001101111010010010001011001000001101000011001001101101010010110011011001011001111000010111101010010010001111011111000101010001010100010011001100110101001000100011111010110010101010111101111000011011100000110110110011010101001101000000011000101010011101010111010100000111110110111011110010100110110011100110010011100001100100011000010001111110011000010010011101001011010101111111101111111101001100000001001110010110111110111110101001110010100010000010001111100001111001100011100000111110010101010011011111110110110001011110011111100011111011001111110000010110101011111011101000100011010010111001110100110010000011111000001001001110111111011111011110101111110100110100111010100000010010000001010010110011100100110100010000100101111110100001110010101000101110111100110000110001110101011011000010011100110111011101111001001000101111100111101000001010010101000001000010110010001101111111101111100001110100100000001111001000010111000001100010001101101000010000000110110111000101011011111100111001001010001101011111011111101010110000111110111001001000100110110000101111111110111001000101010110111110010100110000000111001010011101001010010111101111010001111010010001111000010111001001100010101001010100010001101010011111010100101101011110111111111011001001010001110111100001001101101101001010010101101110000001110011010001111110101110100011010001110101001101110001100110010100000010100111101010110000011100111101101100110011010110011011111000100001100100001000111011101111111010001110111111100011100000000100001111000001000010000101000100010001011001110100101011100110100101110011010101101000001101101111011110101101000101011010110010110001001101011100111111100011010010111111000100100001000111101111110011000111010000010001000000101000101100100010111011001111110010111010010111100011110000010011100000010000001111001111010011110010001110101110111100110101101001110001110101100111010000110110110101001010100101000001010000100101100011011101001011011111110101001100110010010101100000001101010100100000010111100111100011000110101010010000011101111001100101100110111011011111000001111010101001001011110101110100010010110101011000011010101001010110000000111111001001011111011111100101111010001100101000001101111111110000110001010111010101110010010100001011100011110111110111100001010000011010110000111110000010000110101111100110110000111010101101000100100101001000001100001001101000100011011111100001011001011101011011000000000111000111011011101010101011010111010110110110110001011011101001011110100001010010010100000000000000000100111000010010110111111110000100011010000010111000101001011001011110100111101001000101110110011010000000110000000010101011110000001001111111000101011010101010010111001101011001100011011011111010101001010000101111011110011101001100011101001101010111110000001001110010110011000000100100111110101001010110001100111100111100100101010001110110101011101100111000011000110000001000110110101010011100011010100000101010000010111000000011110000111100011111010101101011011100010101001010000000001010001001100000110100000100000100101101101101010011110101100110110000001001100101110001010001100110111011000111011100101000101110000111001111010111010101101001111100011100001010001011011111100011000010010111010101101101000101111111100000000011011000100101111011010000010001011010011000101010001010000101111110100011001011101100111110010011000101101111110010100101101001001100011001010001100100111011000111000011101110101000101010100100011100101011110111111000110111111101110000110111100010001011111010001110101001001111010011101100111101111111001000101100010001100101110101101100101101010011100101011010101010100011000011101101101000011100001110100100001000101101110101101011101100101101101001011000111110000101000100011100011110011011101000111011101101010101111111100101110100010100111100101101111000100011101110110010001101100001000000110011010100110011011000011110111111110000000000001001110110100101110111000010110101000011001111011101100011111101101101011101010110000101011111010010101011001110011011011110111001000110111000000000011011001011101010000110011110100100110100000011101010110011000101110100011101110010011101111011111011000010111000110110110101100110100110000100010110000110010111001100010101101001111001101101111011111000101001101001001000111010000111100011001011101111001001110100011101101110011110000100100100010011000111001100011110111100001101100100011111000111011010110011011101111000001111110100001001000110001010000100010000101010000011110010101111001100001001111000011010101001100000000011101010110111000000101000101001010000001011101000101100110100101001110010000000111111010011101100001001100000000101100100011101001111010101011111100100110010011010001100010110001010111010000000111111110000010110110011000111110100010010111110001101110100111010110111110000100101001100001010110101100011111000111111010100101101011000001111111000001101111011011110001011110011000101101101101110011000110011010000011011111010110100010011001110100101100101101111101110111101110100011111101110110011101010100101000011101010110010000000101110001001110101110111001010001000101100011010100011001111010010011100010001010100100001110001101011100000101100111011000100010111111000111101111100110001010010101000110010010011010101110110011111000111101100101000101010000101010000100111011000001000001001001010101101110101000110001101001110011001111000100010001010101111000101010110111111111010100010000111111001110011101001011010000000010001011101101100001001101000111001110101011100001101100001100010101110101111011100001001100111010100111101010001111010111100011101111001010111110001100100001001101001101110010011011111110100010010111110010110111001100110101000111100001100010010100111000101000010101001100011100011000000100101001100010000111101111110100110111011001111010000001010001001010001001101111100110001001110100011110001100011110110100110001001111101100001011000111100111110010000001010001010110100011010111110001000000101101111111110101110110100101000000010100110111001111011001000011011010000110011100000000011110111001001001100001010100000111000111100011001001001010110011101010001101011111101000101001110110101101000111011101100110010111111010010110011001000001011110101110101011101010000000010100111011110011010100001000101101100011010010110000010001100001010010111111101000100010100010010101011000000111011100100101000001010111000011100111010001100000000111110101101010101100111000010111000000011111011111000110100110101100100101111011001101111111000111011100100111000101101111011000001110011101101010101111110001000001111001010011100010001000011011001100101111010011110111001010101001000001000011110111011111000100101111011111011111111101011110000000011111100111011100010011010000111101001101110000101110111100010011001011100011111110100110000110100100110110111111000001111001110000000001011000110110011110011100111101100010011100000110001000000111011010011010010001000111111000100011010111111010111100110111011000111101101100110001010101010101010111111011010010001101010110011101111010110100100110000011111001111101110001010000100100000010110010001000001100110010111110110001000011000000010000010101010110000110010100111111100010111011111100101001000000010001110010010000011000111100100101100001101110111011010110110110111111111110110000111101101110111110011111111101111001001101101000111100101100011101101010001011110111101001001100011101100111000110010000011011110001111000000111000111000001111111110100111101101100101111110001001011001101110010001011100000100100100001101100001001011110111000001010111111111001011110000011000000000111011011101011100001101000111100111100101111000110000001111000001011011011001000010000010001011000111001110100011000110100010001010011111001000111001110001110110110111110001100011100000001000101010101011111110001100111111001011110111110100001000010010001000100111000101010010101011101110100100101011001000000111101011010110100001000001000101011001000001101110000111011000101010101100001111010010001010111011111111000010000001101111100010011100001111100000001100100100010010001001110001000001000100110011100100101000110001001100101110011001111100111011011000000001010100000100011001011001010110010001101100011100100100100101000000110010010111011000011111001110001101010101101011110100010011111000011001111001111001010000010010100101001100101111110111111001011011000011111011100011000110000010111000010100001100111111101100101110000100110110010100011000011111011111010000111001000001110100110000111001110011011010011101001011111111100101001011010001010100100101011101100101011010000111011010110110001000011001011011010011000010110100010011011100000010011001010100001011101110111011111101001100000011111101101101101010101001111001101000111110001010100001101001110001111101101000001010011001110111010010010110001110011000000010110000101011100010101101000001111101101100001001000101000011110010000001010011110001100001101010000111011111011000110100101111010100100110011011010001100010011010000110111011011111101110000110101011111011011110001110101101101101000010100110000010111110100111001101001001101000011001001110000111100001111101101000100010000011101010101110110110100000011001111011011001111100111110001110111101001111010110000101110000001101000100001010000100010111100111011100110001010100110010101010010110110000010010010001010110011000000000101000111111000010110110110000111000110110001001101111010011100100101100111010101010111011011001010100000011101010101000010000011100111000011000111010000110000101000111111001100100001001010101110001110001101010001110101101101111111100100000010110101111100111101010001001100011101100010110111010110110100101000100001000011000101101100000010011100001111010101000011011010111111010010010000111111010101111011110100110001101110001000000000010111101111010101101001011101011111001000100011001000110001001110110001101100000101000101111100010000000011100010110011110111000100101011111111110111010110101101111100000000000101000010111111011010110110100100111101110000000111111110101101010000010111011001000000011100010010101010110000010110101110010001110111001000010101011110100000011010111010000110001000001000000011110001010110001101100101010000100101110110111001001001100000010110111111010001010100011110010001100110101110001110111110001001011011110110000110001011000110000010110011110010010111001010100111100110000111000011001010110011010001010101100001011000101100000110001110011110111111001010110001111100000111011111101101101000110111101001101101010011100000101011000000100011101010000010010101010001110110100001110111010101101001011110110110000000000101011101110001101111101110011100101001010000010111000010001010101011111101100111110111100110111010100100111100111001000101101110110100100110000000000110011001010010001010110100010011101111000011110111111101110100101010000000111100011111011110001001111110000000100110010101011111011111110000101101111011101111000000010110010011001010000011011111100010101101010000110010110110010000000110000111111011101000100001000110110000011101010000110001111101100111010110110100110110000011010111000011011011100100011111011100100101110101010011010100010011000011000111010101101010100000111001000111011111101101000001010000100100101101000000010100110010010100001001110000111101110110010101110011101111010110011011111100001011100000100111100000100000010101101110000100100100001001001001110111110001111000101110111001010010011011000100100111001010000001101010010011011010101110011001011100111011011001101110110111011100010110001101000000000011001111011101010010101010011011010010000100010001001010011001001010100101001100110000010010100001101010100101101111011011101111011010011011110001000111000100011111001110110010110100101110110001011011000001001000110111111110001000100100111001001101100100101011101001011010111011001001101100101111010100000011111111101000011001111011001101000110100111110010100011000110010011011010111101000101010110000111000011000001001100011011000011101000100111001100110101011001110101010001111111011010111001000010010110011010101110100010111001110100000011101011001111111001100101011011111100100010010111011010101011000111000010000000111000111110010111111101010001111100010111001010011010010111011000100101100010010000100010001111101101001110110001001101001001001000010101001110000100111111101010000101011001111110101100100100011010111101000010110111100000010110110000101001101100001101110011000011101010101011111101011001000000100111000000010011110110110000000110111000100100100010101101100110010111010101100111010010011100100011101011011000110001000100100000100111110100111001101110000100001111010111010110011001101111100110110001100110100000010111000011000111010100100100010110111111001000101011111111100010100101001010101011001001010110110110111010110111011111111110000001101001000011110101001110000110001110011001100011010011000011010100101101010010011001000000011001101010000011100010010010110011010101101011100010111110011110000110000001000001000101100111010011000101111010100001011010111000010110010110111100100011001111011000000111001011010010111001101011000100111111110100000001110101000100000101110011111101000000111011010001010111011101011110011000011011111111101010111010000111010001101000100010010011001111111000000100001011111111100111011101110001000011110110011100001011110011000001111000110101101001011011011101100000110101010000011001111100100110001111011001100111110111110100101001001001111011110110100001100010100011010101111100110110101001001111011000000111011001010010010011100001000100001011111101010000100011101100011000000100100100011101011111000000011011001000010010001100101011101110111010000110010001110101011001100110010101111000110000001010101110110000000100110111101110000001001110000000011010010111111110001001100111110011111001010100011111010011010011110111101100001010101000001001001110111011001000001110111100111010000001011001001010010010001111000010111011000111111001011011111111010001011011000010010010001111010101010010111000001001100010100001101111111001011101110001100101011110000110101111011000010000011010110101111011011000011000011001011000000010000110101010111111100100000111001001101000111000111101110111100100100011010011100101111111001001111100111100001100010000010011001100001011000101111111110110011010011110111101110110100100110000100011111010010010111101110111000100110000101011101100110100000001001101011010001100010111100100011001011011101100101000011010110011101001001110010100101101000111011110000011111100011000010101110100010110110101001001011100110001101000000001000110000000111110100101011011011001110110011101100011111011101110110110010110001110001101110101111111100111101001111111100111011001011001000001011000101111000011100011011010101010010111000110101111001100011001010110001011000110100000100001100101000101101001001010111100100111111110110111110110001100110100011100101011100011010111010111000111100100110110010010000111111100000101111110100010001011011111100011001000000101110000011100110011011010101011011011100010000100100110000100110000001010000100101100101000100100000111011001101001100111110111011101100101010000111100011100110001111110110111011101000110110000010100001000011001010110100110010010011000101011110110000101011010110010100010100111111000011110010000100100101111101101001111111100111110100110110110111100111110101101001111010110010011101110101011010000111111010011000010010001101100100001011110001001000011110010011100000011010010001101010110001011010100100101011000101101001101011011100111010011111111010101111010100111011110101010000101011100111100000101101101110110011101100100101001111001101001000010010010011010000011100100111001101111010100101000100001101101010101110011001001111000111100001001001100011011001111101100100110011111101111101011000001101100001001000011000010001011011000001111101110111010111010100011100110010001101110001011011010010111101001101111010011111110010100100001111010000110010100111011000011010001011010101010000110000110111001110101001101111011011100100111101110001001010010111010111100011010010000110010110110100001010001001100011100100101001110111011010000011111110010001101101101110101000000100000110000010101010110111100000011100010111010101011100011110010011011011001110100110111100110000011101100111111010111111001100100000001101011000001010000001111000010011111101010011101100000000001111100111111001011110001111011001100101001100101100001000001101010110100100110000100010011001110011100110110110011111110000010001010110110111100111111010110111011000000000100110011111001001100010000000000000010010010010001000000100100101000001011000110111000000101011110011000110011000101011100000100111011001110101100110101111011010001001001000101110010111000000100100100111000110111100000100010000000101100111110010011110001100100001101011100100011101000101010011011111101010111001000110111110011110000000111011001001001110111010001110101110100001010101011110010001001010110000101011101111100010100110010000010000101101100101101000000001100100011010110010100000010111011100000110000011100010100000110001011111011001111000111100010011010011101111010001100000000000000011001001111010011010101101000001111100000011110000000010100001011010010000000010011110001001111010010001011010100001111011010010110111110101011110011000100000111000100100111000110110010100100010010011001001001011111011010010111101001010000111000010011011101110001110110000111000011110110101010100011110000100010110111100001000000110001001100100110101101001000110101001000101011111010000011101100000000000111100101111001110011000010100001100010111100000100111110010001011011111011000010001011000010010100110011110000110101110011110100110110001101111100001010101010110110111011110011110100011011110100111101111101101000010111100010011011100111110000101011000100000010010010000000100110111001011001001110111101010001011111001011100000011000111001111101010001001011111000111101111111010000000001000110110111101000101110110010011111011110101011011100100011011101010011100000101011001010110011011111001000100100100110001101001000111101010110111001101111111010101010001001000110110000101001110110110010110001110000010000000100001110101100100101011010000100100001000111101000010100000101010111000101100010010000000100111001001111111001110010101000010100011110011011110110111100011010110101010110010100111100101110010110110110001001010101110010110010101001111100001101010010111011010001101000000011011111001111110001011110110100110011011101001011001111000110111110001010110000101111101101010000100110000101000000111101000000011000001111001010111100000111110101100101110011110101010110100001101100111001001110100011101110101001010100001000011000101010100001010001111100110101000001000010101100101101010000100100000111101101001011011010000001001010000111010111010110011101001101100110110011011101100010011101000010011000111001110111110110001011000011111110001001010110111100001000010111001100101100011110100100111111101111101010001010010011111001011111101100000111001010011101000000011100001110101111110111011111111100001010110011111000111111101101011010101011011010100011001011000101011000100100010000110000100101100010000101010110100100110010111110011100001101100111011110111100000000100000010100001110011011011011110110010011010011110001111101110010011101100100110001111100010001111111000011010011011101111010010100001001111000011000000110100110100010101101010101010010001110100101110101011111000011100000011111110111001100101000000110011111110110011011001101011110000100011101111010100010000001011111001011010001110000011101000100100111101011000111110110111001111100100000101011001010001110011001100010111000011011011111110001001011001000001000111010111100011100111001001100101001110100000111111101100111011010110110010011001010110001110010010111110101111000101110101010101101010100010010000011100100110101100111000011001110010110010011011101010110100000001011101101101101010110001101010110100010011110101001110101110010001001010101111110001101110100100011010100111001001000100000010000110100101000100110101110110101110100101101000010010011100100101100000101111110111101001101011101110100010010001001101001100111100100100010111101111010001101001000111001011110001010110100110011100101100111101011000011101010110000011011010111001011011111100001110000000001011011101101010111000101011000011011001011000110011000000010001100111001101100000010100011010001010000000010000010000100100010001101001011000011010111111100011101011000000010011111011111010110000100110001101101100111011011101100011101101101100100001100011011000000110111101011011101011001110110010000001111101101000100101111000011001001111110111011001010110001111000100101010110111001100110001111011011001100101111111001100100110001010011000110110111010111111111101100111110111000010100110001001011110110011001100111111110000110000110011000001011111000111011000100001010110000111001001010100110010111100011111110011110010100001111111010011110011000111000010001000000010010111000100111001101110001111110111010111010101111100111111011110001011101010000111001000011001100101111000010011010011100110000000111001100111101001110101100110100111111011111101111110110100001111101110110001111101111100001000010100001100111011011001110100101100111100100110101110010110111000111000010100011011110011001110110011001111001011110111010011110101011010001110101100100000010001111011001111000100110111011110100110001110101000101000111110101111001110110010101011111111000011101111010001010001101011101011011101101111001011010010001001011011010001010011010000001100111000101111100000100100001001011000101010110101000111100100101001111101110011010110101011001110110000011100101000001001100111100100100001001011011010010110001110110011010001000000110101000110111000011100011101001100011010000000011010001010100011100010000101100001011000111100110011111111101110001001100001000100110101011100100100100111010111100011110101100010001101010000001101011001100101101110011011100011111010100010100011001011110010110101110001000111110100111000110111010001111011001000000010110110000001101001110000111011010111100111100101011101001010100000010011100110111111010110011011111001001000101000110100100001000011011011010111000001111010101011000100100101000100001110010111101101110101000010010000011110011101001111010011001001010011110111100001000011111000100001110110101111110110110111111111001011111011101000000011101111111011001001101100000100101111110101010000000000000111001101111111110000001111101101111101000101101100010000000110001111111001000110111011001011010000000101000010001101001000001101110100000000011010101101100001111011111110011001010100011101010010000110101011110111100111100111011111110111100000101101001011011110100010010111011110100101010100001000110011110001111000111101010111000011000110110011010011011000110001110111101001100001001111001001101001000101010001101010101000001110010010110100110010100110110001000010110010001111010001110001111111010110101111001111010000101110001110010001010001100001010100011000101001111110011010000100111011011010110100110001010110011101101111011101001001011110000111011011011010111101110000110111100110101000010100000110100101000010011011010000001101010101011100100110010011010111100011111011111110101001110101101011011010101000011011100111101111110101000000110010001111101011111101110011101111011001100001001011100110011011100110111111011011110000111111010001110111101000000100010011111100101101101010100001111111011100100101000110011100001101110110110110111101111001010000010000000101001010001001111010100111001011010001101011111101011101110010011010111011000010101010011111000011000110011101010110010000011111100000000100001111111000000101010100011100011011111100001011011010100111011010100101010101011100100011000100001000001110011000110000001110110100001110010001110110010111111010010010111110010100100000011100100001011001110100010010011001111110110110111011101001111111100100100011010000001100101111001000100001100111110100101110101011110000101101010111101100011011111111111000100000011110110011100010101001001010110011111011011011010011101000100011100000100110100001111111111000101111111111001110110011001100011001101111011111000101100001101100010110011111100001010011011101111100111001011011110101010100000001000010000001000111110111000011000101001110101011001110011011011110001010110101010111000010100101000100011010010101110010001000010001100110000001001100000000110010001111000100110110111101111101111000110111111010000100111100000011101011111110111000000011011110000101010110010111111000100100111010100001010001111000000101100100110101010011010101110001010101111010100111000101110100111010100001011100011011100011101011100100111010001001100100101000110010001101111000011111100011110010010000011000110111101111100100100001100111101001111010001011100001100101011011110010110000011110101010000111110010100101100000011111011010101101100010000001101111010010101011011000100000010010010010101100011100101100110111111111101001100110111010110011011001111110111100100111111010111011111010110101011010111101011011000100111101000100100011000000111110111110011101000101000111110001001100001100011100011000100111101100111001000101100100011010001101100110100011010010111100100101101001111000110011010000100101101101101011110001100100100110001101101011110111011101110011110011001111011110001101011100010011011010100111100000011001011100110001110100101010100001101000001010001111101011101011000001110111101100110110011000100011011100110010011001011100001010111111110011010010111000010001010100100011000011001101100001100001111010001101110001000111110111101010100101001100111010010001011010110101000011100111101111101100110010001111010111110001010001111001011101011101010101011101000010000100011100101010010011001111110010101000010010100001011110010100000001110110110001001011000001101000110010010110001010001110010111010001100101111000110010100110110111001110110111000010010101110010001011000111110000110101110110000110001111010010001000111110010000111110101101110010111111001100110110111'

L1 = PT_Bin[0:n]
R1 = PT_Bin[n::]

f1 = exor(R1, K1)
R2 = exor(f1, L1)
L2 = R1

f2 = exor(R2, K2)
R3 = exor(f2, L2)
L3 = R2

R3 = '01100101000001110011001000111000000100111100100101100111000110100000001000110100101010001100011110111011011110110000000000010100111011100100011110001111010001010001000111110000101001101111100101111011101011001101011001010000101110100010100101000011100110001111110101110000000011001011011101000101001110110110000101000011101001010001000011001000001001000111010101010000110000110011101010111010111111010000111001011001110111111010110000100001100100000001101100111111010010010110010111111001110010000000001001000000111101010000001100111000001101001000111111110110011101011010111011100010100101001101010000010101000001101110110010111011100110110001101010001111001001100010101101011001100010110101000001001100001100100100010000101101110001000110101111100110011110111011000100101001100001101000110010010010011100011111001011001110101011010111010111010011011110011101001111101000011110100010110011001011000100000111010110100100100010000000010010111001000010111001101001101100110111010100011000010111011000100100101010101010110101001100100011011000100010010110000100010000100101010111100101000101010111110100101100010000010000101101001110010111110001111011000100101000001100100111001111011010011010010000110100101101101100100010110010000111100101010000101000000101110011000110011110000000100001110011110101001011010000110001110111001101011000111001001011000011111110101110010111011100101110010110110000101001111100000000111000000111011100011011001100010101000011110001100001111011111101010110001100110000011110101111110011100011000000000101100011100010000010010011000001000101111000110000101001100001100010010010010101001011111101010111101110010010110101100110000011110110111111010100001100110000010010000010100101101110111110100011000000011110110101010000101010010110100001010010100101111101010100011100100111111101011100011010101101011111111110001111110110000010011011110110001100100001000110100101001011111000000011011010000101010011100000010011110010010101111011101001001001011100000110011001010101010101101110111011100101010010010111111111001001110011101110101000111001111011010101111000110100110001100001011010011010100011010110100101101100011010100100110111000000010101010100100100000100110101101010010010110000101001110100011100000110110010100111110111001111110100100110011111111010011111001111101010011000100100000111101000100101010000010010000101111000111101110011000010101010000101110010110111010010001011010001010101110010111011111000101000011111101111011000001010100000010011110011010101001001000001101100110000011011100011111110001111011111111111011111010101100001000111011010101011001110001000011111011001111000010010000101100011001011010011010101110011110101110100110111101100000110110101111011011010100101100001111111000111010011011110000110011101010111110000001111010101010110100001100000100001110011110110100001111110000111010100001100111101111110101001111101001100011000110000010001100010011001100011010100000101110000001001101001111001000001110111111101110100000110100110011101000110110010011111000101100101001001111000010010111010000101100111000011011110101111100000110100010001010111110100111010011111111110110011100110001011110110011011001000100011100010101111011110011011110010110101111101001010100010011111000110111111110100011011000100110110010101001011110010101010010000110011110010100011000101111011111010000101101000100110010011001000011000011101011000010110111000000000000011110100111010010100111110101101110011100001001010100011000110111111110000010000000000110011111001010101111110000001110111011000101010100010111101100001110111111000101101100011000111011110101000011111101001001010000001001010101110100001000101010110110101101110110110001001110101001101100110001111101000111011110100111011000111111110011010011110110100000000000111110110011101110011101110101110110101010000010010111000011100001000001100111001101011110111001101111110000100010100000101001011010011101111011010110010011010100001011110110001100011101011101011000101110000001000000011000111111101111111100000100100001011011101000101100010011110011010010111001101011101011001001100001111110001110101001000101010000001011001110110111100000101001011100001001100001111011100111001111110010110010111100100111000011010000000110011101101111011100100010100000101011010111010111000000010000111000010101110111000110011000101010000010011100011001100011011011010111110011101110010001100011110110001010000101100011100011110110100001110000001110110000001111000100001011111011111001110100000010111010100001011101001101111110110001101101010111011100111010010011111010110001001100010111101010100000000111111101001001001001101100101001011011000000011010001100001010000000100110101011100001011101110011011100000111000101101101010010100010110001110011011010010111001001001110000010011011101000010111100001100100100100100011110100110000010010010101000010000010000010000011010011101101111101100001111111001110111010011111000000111111101010011101100100101011101110001111110011011000111100001001000011111000111111001110111000111011100110000001101001100000101111000110110111111101111111101100001010011001011110100110000000001010101001000101101000010111010101010011010101011011011110001101100001000100001010110100000101101100111000111010000100101101001110110100011111100101011001000001000000011001010101111010000111100100101110110101011100010000000111010010100101100010001001110000110111101111010001010011000110100101011000001011110011010011100011010110100111010001110001100001110100100010000001100001011101011100001100000101011100111000111000101111001101010001000001010000000010011100010100001000001101001111101111101110111110110100011110010110010001111001000100000001101011001111001010101110100100111000010111110010100100110100000111110111101000111011101110110100010000111110100000110010110010000110001111110101010110111110011011011010000001001001000011011010101110000001100010000100101111110110000101010111000101110101001100101111110011110010000100110011101011100000011110000011111100000011010111101111110110111110100010010001101001001011010100101010001000010110011001111101011011110101010101011110001000000010011100111111111011101010110100000011011111000001001111111111101000100110001000011011100110111101100101011011100011010110011011000000111100010010000111100001000101010110010101001101011001010100011100100101000100101000111000101110001111100110101000100100000110101000000100100011100110011100111100111100110111110110011101001111111101001100111011110001100010100000000000111111000101001000000100000001100110111001011100101001111010100100000110111101101001000101000100011001111001111011000110100110100011001010011001011001101100000101000110111111000011110110000010101010100011000111100100010010010100111000001110100111011101001001001000001101111001110111101011110000111011001110100001110101100101111000111010101100010001110110000100011110110000100011101000110010010010000011111111110111100110011000110001101100100011111111111110100011111100101110101010011001001011010110010111101000011001000001010010010101011001110001111001010011110101100000001110110110000100011100000011010101010101111001001110001100101111000110100100010101111010010110000001101010000111001001111100101011111001110111110110101010100101100100111110010100011010111100011011111111010110001100000111111111111011111101110110001111001000000000010110110011010101010000000111011111001000011101001010110110001111101101111110000010010111100001110010111100010001000111111000111001010011001110101110110011010100110000011001100111100011100001111011010000001000100100000000000100000010001011011101111000011011011111110010110100101001111110000101110111101110110101100101000001000000100110010101011001011001110110010011101111010100110101111000101011100000010011110001101100111010010101001110111100100100110000111101100001110000011001000101100001011101011101111111100111010110000100100111110011010100001011110111100011011011100011001100001101100101110011010010111101010000010000101011000101000111010111111001111110010110101010001111101110111110000111100101110011000000101100111101110100110000100010101111100111011001110011111110111100010100001000111101000101011101001101010001100011010111100000000001100101111000110101100101001000001000001010100111110001001110001001110000111000011100101110111010000111011001111011110111110101011101101101100100011101011110110101101110011101100001011011101010011001100001111101111101010010110010001000111101010001000100010111111001001111111011001000100000011001010101010011000010011110111110100000101100000011111001000001011000000010110000000000000010001000000101010111010000110100110000011001110111011111001110000111011011001001000100101001000001011100110000000011000110011000111110110000000001101100010100110010100111110100111000111110110011000000111110001111000100000010101000010010010011010110000000101101111110000101110111100011001011001100110100101100110101101100101101000101001110001000000001000111000000110001100001111111110101110110010010000001100001101000001110101111010110001101110101111111010001111101111010111001100101001010100000101101101111010101010111101100000010101001101000001101011010000001111100010010101001110111001100100011010001111110011011111100101000101110110101001000001111010000011111010101100010010010011101001011001000000110000010111001011111000111110110100011110110000011001100000100000010110010110011100111111010100101101111011100111001100111110000111011000110011011010111011011001111000010001001000111111001001101101000100111011101000110001010000100000000101011101110110111101101001100010111111101010101011111110110010101110000110101110000001111100000000101000100010010101000011011000110100001100111101111000000100101010101101100010011111000100111110001111001111111100011011111010110010000001110101001010011000001110110000100110001000010101000001001111011101010111001000000101101001101010011110001111011001110100011000110000110111101000001000101011101111100100011100100000010101011001101000100011001000011011000110110100011001011001011110100101101111000110001111010101000001110101001011111010000000000111111111100000001110111110100101010010001011100111111001111000110011010010010001001011111001100100001100010100100100110010000110001110101111101011110010011010111100000000111010000101011001001010110101111101010000001011010101000011100100000100010011011101111000000001000100000110100001101010010110110010101100111111111100101111010011110011011111010010101001110100101110101001100111001010101000010110110111110100001100111010000101111011100100000011000001110111011101100100001010001110011010111001010000011011101000101000111100011001110101010010100011000001110100101110011101110000010101000110100101110001111101000101101001110001100110101010000111100101110001000001111001101110110101100001101010110011111100111111100010011111000010010000000010110011010011010011000111000010011011101111000101010100010001001000110100111001000110001011100000111010101110011110111100010101011111000011100110111011110001001110100100101000111110001100000010001010000110000101011011101110011101001001001001110110100110001000011000110110000110100001111111001101100000011011001101010100011111111111101011110010100101100001100000010001011110000011000010011000011100001010000011011001111111100111000000011111011101111100111011101101010110000000100001101110111110110110011001111110110010111000011110110011111001101010011010101100011010101111001100011000000011010101111101011001100101110101100001110000110100010001001111011110000111100001010010101110011111010011010110110001011011101011011100110010001001100100110001100111011100100100110000101001110010011001000110110000111011010100011000010111110001000011111011001010101011011000011011000111011110111110010001000110110011101010011001100110011111010101011000110011011010011110100010001000101110010001100100010010101010101001111010000111111011101000111000101110001111100111100001111100111110110010100101110110011001000110000001011011110000010001111101110111110111010011110000111110011111110011110101000101011111001101101010010001111011001101000001001110001000110100110001011101111000011000111100100010100011001000010101100011001101001011000000011100100110001000000111101010011000000000100101010110011001000101000011000100001000111001100111110101100101001101000010110110011001110101001110000000100001101000001100110101001011100101110111010110111101111000011011100010100101010010101111111100101110000011110001111111110100101011101111011111101100001011000001011110100010010100110000110110101111000001111100010101110011111110100010110100110001101110110000101100001100100011011011101100000010111100000111001110110001011001111100100110101110110010100100110011111011000000111001110110100000011110011110111001110110001011110000110010100000110011010010011111010010111000101000101110001101100001111011010110101010110000000010000111010111000101100100001110010110001000011101010101010101010110011011011001010011101101101101010011000110010100011111011000100100000101010011010001001110100011011010111111110110110101101111110010111101011011101010011101001100000101111111101110001000011001001011100010101100110010000001010111011110010010111011000000111111110110011011110000110101100001000011101010001010000001010000000000110001001010101110100100111011001111111100101110110010100000111001111110101110000000100011000110010011011011110011011100001001010101110110111111101011001000111111001111110111010100001000100111110101000111110101101101100000010001101000111001000111000100000100000001110100001101101010110011111001110011000111000011010001011110000000001011101100000110111110100110010000001110001110101100100110001111101001100000110111111001111111011101001110011011101111101001010100100011100010011110101010100011101110100001001010100010000000001001011010110010011001000000110001100101001100010110010001100001110000000100101000100010100000011100111010011000111101101001010111010110110111101111111010011010110000110010111100100101100000001111101101100000100101001010111001100100110000011100100001000101001000000110000110010001100110110101110111010000110101110001011010000011100111010111001101101111000101110101110100110111100111000011000111001010000110010100100011000110000101011101110010100101000110011101010000101100010000111100001101111000010100001001111000111111111100011100001110000010010100000011010100101001000111111100111001010111011111101001011101000100011101101011000000001100110011101100000011111000011001000111010011111011001111001000011000111000100001001110000011100010110100111011101011100101011100100100000100010000001000010100011000110001010010011011101111001101000001101001101000001000100001111100010001111010011110010011001010110100000111001010011011111001100111111011001001001101011101101110010001101110000101000001101110011100000101110111111101111000011111011010100001101000000000110001100101010101011010110011101001101000000001101011110011001010100111101111101101000110100000010011100011101111100110010111001000110000110101100101001101111111010011110000011011110001101101110001111010101101110011001101011101100111010011010010011111111111000011101000000001111111000011110001011011000011010111101000111000000000100001110111011001100101010101000000001111110011011001001101010001110100101011011010011010100110000111001111000111111101100001101010111010011011110011000101011010001111011111110110111001011110101100111010110000100000000101010000111100111100011111110000111110011011110110010001100111111100000001001011001001111010101111000010100011011110001111010001100100110011010111100110011111001111010000110001001101110001000010100100101011111001100011111111101110100110100000000010011010111101101100011110110010100010100111000101100101000100111001101011110001010101101101000110111011000001111100011101011100100010011011011011010000001001001000101001010001100101011010100110011111111101001001010100010111011000101001010000111101111110100111010010010101001011101010111101111000000110101011001101001100001001111000001001101001001100101000100101011001100001111001100010010111110100001011011001100101010000001001111000100111111011010010111101010111110100100001010111111001111110111000110100010111001001011110011101011001011101000111001011000100000100011011111110011100001110001000100101101111110000100100110111111111000011111101010100101001000001100100000101010001101101111010001001010111110100011010001101100001100000110110000101000011010001001100011111000111110000000000101011100000001001011111011000011001001100001100110100101000000100011111100100010001011011110111111011010100110101110011100100111101101100111110011101000110000001011011000000111101011001110100010111100001111101001011001000011101010110110101110101010000010101111000000010100101011111100011100111100001100101010100001001000101110111110101110010110001010110001100110011101111010011000011011010101011000011011011010100001001010011110010111101010010000111010011101011111011000010101001100101110011101110110100101101001100110101010001100011010001110110001100110010010010111000100011101011101111110010101100111000001101101011010110011100010001111110010110111010000110000011110000010000111010110001011000111011001101001111011010101111101100110001110000101110110100111011100100101011001110110111110111000010100110000100101111101011010111110110100111010011000000100011011111100000000001011111110000110100011010001011100001001101011010101000110001010101000010001011011000000100011011110011010100000011110110000001010011010011100101111000111100100110001100010110110101101110100001001001000000011110110011110100111100011110110001101011110000110000111011010100000101110100011010001101110011011100101010101100010110111011111101011001111011010110110100011010110110100010001001000110001011110101011001110000111000101011011001101101010111010010110101101110010011110111001100011100111011100101010111110111010000100101110110010011011011011010100110011000110100101010000110010011110001001110010110000001101111111111001010011110111001011110111000111101001010100011011100110000110000001010100100100011101111110100011111110010000100011101101010011101101110011010100000000111000011110101111110111111011100111001001010110011010010000011111100111000001101111100111101111011001100010011011111111011001111001100100011100101100000111100100010101101001011110100001101000100001010101011010010100011101000000100100011110101111000100001001011100011010011101111000001001111010010111101100111111100011010001000000011000010111001101111100111110110101011101001010011010110111111100110011110000001011010100010000010110010100010010110101011100100010001001101000011000100111100111110111100010101001101001101010000101001110010011010000101011011100111101011101100110010111111010111110001101101111001100101111100001101101111100001001011000111101011001110110000001110100111000111000001101001011100000111010010111000100111000100101101010010010001111001101111000010011010110010100011011011110100001010101010000110010111000011100101011000010111110110010111011101110110011011000010111101100110100010000111000000111110001000100001101000110100001111101110111110110011110101010000111010101101000000010000011011001100001110111000010101001100001100110101000001111100111011110100000111001000110010000000100110011000000111111011100101011110010101111010111110001110110000000110100011000100001011010010011010011101101111011011011010001001000100101101011101011101011001110101010001001111110001110001001010011001011100000000010101101100110110110001010100110001101011000110010000110001000111011100101000000101101100111011010101111001000010101101000000001010110011001010101110010000100001110010111010001110101110100101011101110101110100001100001001111000001010010000101101111110011101011101101001010000010011011111110101011001100010100010111101110001101110110100010101110111001100001111101011111001010101001101001100011111111100101101011011101010111111001000001010010110011111100000011111010101111101011010000001101001110100111111000010001111010110100110000001101000111100010011001010010101000010111010110010100000010010101010101001000001000111101001111111101110001011001001011100011110001100011110110111010100111110010100011111011001001010100001010011010111011001110111101110010110100110001100101000001110000111111000001101011010110010111101110101110101000100100101111110110101000000001011000010110011000001101000011110111000011101001100001001100010100011000101010001111100000011001111000000101101110101011111100100110001011111111101001101000100011110000011111010010001110010010001100101101110100110100010101110110011011101101111001110010011111101011111111101000110101001011000000001110111111011111100111110011011010110000001100000000011110000100111100101011010111011010000111111111101110000001100100111100000001000110100000110011000001111110000110100111001100010110000000111010011010111111100110101010001110100101101110000001101101011001010000010101111110111100000111101000101001001001110000111000110111101000110000001100110001110000011001110011000000010110101111101011110100000001100011000010011011110100111101011101000110001111100011010001111100000010111111111000110111111001111110110001011010000001110101010110111111010101011001001110000011000100101011010011101111110111001011111011001101111010100111010110101100001100100111001011100001000011101100010101011110100001011100110011101011100010111110111001100011010100010011111101100000001010011011000100000101001011101000111010110101010001001000111101101001100111110111111000010100100101001001110011110001011101101000101101000010110101101001010101111100000000111110110100101100110101100011110011000000010011011110001000101101101010111111101101010110000110000001110100000010110011011110100110010000101011111100010011110100110101111010101101001000010101010111110110100011101000100010001100110100011100011011111000100011111111111010100101101000001100101011000101011010000000011010110001010001001110100101100100111110100111000100110000111011101111010010000010000100110001010001111000111101101000110001111011100111111111111110011100000010101100110111111101011111100000111001101010001110111110110001011111010011101100100011110000111001010100001000111111010100101111111101011110110011100001011101000100100000110101100010111010101010111111110000101000101001001111001001110110000000010111100111010000110000100110010011110100110111001000000000010101001101110111100010100001111100000010001100001011110000111001111100010010001100001101111001000000110101100111011100000010011101010101011111010100110011110110110011111110110100000100001111111011011000011011110001100011011101000110100000001110111010010001011110110100110101011110110111010111101100101010001110100110000101111011000000010010100000110100110110011001110101100110100111000000101111100110011010101001000000000111000110100001101001100001011100010100000010100010011001100011101110111111111111101011110111100011111101101101111101001011011000001111000011010110000011000110001000011001001001111110100000101011111111011010101010010001011011011011101011100100101001110000010100001110110110000010010100110001111010101000000001110100000100110010100000111101101011010010011101001110001101100111111110010001001110100110110101111000011111111010111111000001110001101100111001000010101010101100111111011011110101101101110001111101011100111100010010101001111101010010111111101110011000101000100000101111110100101001110100101110110000001111111100111010110000111010011001001100010011100100010101100101101010000011001100011101101110011011000101001101010011001001010100100100000110001101011101101100101000010011101111000111111000110101000101111100011001010101010111011110110101011100111110001100010011001101111110010110010010101000100000001001110001111100101110110100110111000100101110001110010101000110111000000110010011000101001101010100010110001011010000100011000101110011010111001111011101000010000000011100101101101101101101101010110011011101101000100010100001100101000111010101010101011101111110010100000001000100101110011111001111110010101100111000010110111110000010011000100011010100101100000101011111010001111110010101000110010001110111101001111111110010001100000011101100011111000101110000000001110011110110101000000010101000101101001110111001001010010101110000101000010010000000100101001001111100100111010110111010001101111010001010010101100001011010100101100001000011111110000001100011000111110101111111111000110100010001101101000110101111100110000010010100100000101111001001111101100000001011111101100111101110110110000011001000111111011000111010101110000011011010010011000111010101001101011010010011011001000110000011100110001011001010100100110010011110101001000001001101110011110001000010110011010100000010110111100001011001100011111111101100010001000011011000000001001011011111101101000110000111001100100110110110110111011110101110010100010000010110100011000101011101111011010001010011001001000001111010011001101111100110111000011010100111101110010101101111001011000100110011101000010100100000110100010111110001110101111011101100100110111011010111010010100010001011000100011100001101000000101111001011000100110010101111110000001010010100100000010011001011111111111100101011101000110100111000101011011001010101010010101010010110000000011100100110110011101000001010101011101000110000111101111000011101110101110101010100111101101001011011010110111011000101100011001110010110100110111101100011100101000101011110001011001101100001010011001100100110011101100000110001101101110011001000001101110011110101010111100000110000101110010010101101001011011000100011000011101011000100010000000111101110101001010000000101001000111100000111101110011011100010000111110111010110100100001110011100001001100001001011000110111110101101011000101011110000100111011110100111100010000111110100010001011000100111110101010100001001001000011010101000010110111110010100101011000001110000011001111110011100000000011000011101000110111011010010011111000011110011001100000100101000101011101010100011010111101101010010101100011101001101001110111001000010100101010010001111111101000111110101011000111111110011000001001000001111001101010101110001111110001100110001110001011011101011000111010100110010100100010001110101110011100110001010100110000000000101100111000101101001011010010001110110101011000101010111000100101110111001010001101011011101111101110101000001110000100101110011010100010011111101100000100110011010110111001111001001000001101111110001001111001010100001101011001011111100010010100110110001100011100110011110111111110010111100111111010010110100000111110000110100011011001110110011100100110101000011100111100111000011111011100001000001111101111001000010001011011111111011000111111101111111001100100111000101000011010110011110100001011011011101110001100111101000000000111101101100100011100011001110010000000001000001010110100001010011001001110010110010110011010010110101111001100000101010011011000100100101101010000000011000111000111110111100100011000011110010100001100111110011010000111001100110011001000100111000000101111100100001001010110101101000100101110001111001101001011100101001101001100110101000110010110110100000110110010111101000010011010110101000010100101010000100011011100110011011000111001000101001000001111111000001111101000001010011101'
L3 = '01000110111011101001011101001000101001010011110100001000011111011101100010001000001000001010100100010001110110100010010001100000111111010000111110001011101010001001000110101101011010000011001011110100000111101001000001100001001000001001000111110011101010011111011101011100001011100101010001111110100100000100101010001101010011011100101110100101110000101010011111101111000101110011000000101010110001000000000110000111100001001101011111001000001001000011000101000111110000010101001001010010001010001111101001001101101110011011110001111101001010110001000011010100001001111000111100011001011010001100000000011111101101001010100100010001001001010100001100001001011110010001101100001011110110101111100011110100111011001101101100010010101010010000011011101111110101011011110000111001000101101000111100101001001101000010001101000110011101100010101000001010100110000100001010001111111010101010010000101010110011110100001000111011101010001010100010110111101101010111000000010110011011100101011001110100000000110110011110110110000100001111111111101101110110101010010111100000110001010101011101101000010111011101110010111011010111010001000000011001101111111001110111100000101010011110111101110000110001101010111100000111110110010100100101011011101010011111100010000011100101011100100010110011111100110011001111000101111101001100010000100001000000001100011011000010101110010001111100101100101101100110111110001110011001101001001011001001101110100001100100101100111101110101000010111110101011010001001100010101101111100011101111001101001011110100000101001010110000010110000110000100001000101100111100101011101100010100010110100101110100011110110001101100011111000101001000000100111011110000110110101010101010111111010011111101100111100010011000100100101111111111000000000111101000111110011001000011001101101010000000101000010111100111001010110010100001001010001101011110011110100000111100101100001011000100110111000000001101011000111010011010010001011110000110100110001110101000111101100011011011000111000011100111010100000000000010111000111100000101010000101011011000000110100111001100101110000010110100110100101000100110100001011110110000010100011010001000101001001101000011001000001010111010111110001001110100101110111110100110110100101010001100100011100111110111111001100010000001011011010001110100001001100111101000011000100110000111110011001001101111001000110010000110001010010101110000111000010111101010010010001110111101100010001111011110110110011100111110110001001110001010101011100101110011110111000010101001011111100111101000101011101111001100101110110011011011100110001001010110011101010110100111101100100111010100100010001100001001011101111100010101110001101011110111010000110010000100101101111100101101111110001001110101101111101001111101110010110001011100001111000111000110110010001101001011010010000101000101111000110011111111010111100011000001110111100100000100100001101010100111100110110000011111000011111100100011010000000111000001110000010010011011000111011100101100100111001101101111011100000100111110100101100111101011101100011100110101101101001100111010111111100000111010110100011110100000011100001110000011100111001010110100010110000000111101111011110011100111010001100011011111011011001100001010110101000001111010101111001101011111010111001110111111100011010000101100111000101100011110000001001100000111001000100000110001011100000101101010110111100010101111000001111000011000011101001111010110100111100100101001110010111000011001101100111000001010110101000111101110010101011010001110110000000100110011100110100000001010011010100011000010111011001001000110010010010001010010010101101111111000111100001001000010110101100001110101011101010011101101101010111100100101101011110100111101101111110011010011011101001101110100111100010001100011101010011110011111011000111011010001010100011010001001110100110101001001110110000010110010111111100100110101110111100101000001101110101100110101010101100011011100101101010000010100110011101001101000110100010101110000111110011110000011110101010001101011110100100101000000000110010011100111111110011011011111000001101101100000101100011000101100101110000111111001011101111011110011100111110110100001001000010111010100010001101000101110011110010010110001100011111111001000011111111010001011100101011110011000110010011001101001100100001010100010010000101111011000000110010010100100101001010010111000111010000001001011000110001011100110101110000111100101010011101101110000001001110100000110110111010110110011101010010000011101100010001100011011011100000010000100111000011101100101101101011101010010111010010100010100111000011011010001111011000110000011000101010100001011000011100010110010001111111000100010100011011000100111111111010101100011101010010100001000011101000000101111100101110111100111001111010100101111000000101101101100101011001011101111000000000000011100100010110101110010000100111000100110011000010011010111011101000101001011011000100001101001010110011100101000001011101110111110100011100111011001010101101101101011101101001110001000010100000100010111000100111100011101001111110000100111111101101011010101001011001000111001110000010000111000010100101101100010101111000110000100110101110011010011111100111010000001110100011100111001000101001101000101001001101110001011010010001101111000111100101001111110110001101111111100101011010000110111010001110001100011001010011110111001011000001100010110001100111010110110101111011010000110110100011110101101001110111011000100001110000000010110010011001111100101111111101001110011100100111100101010100010100100010110111111011111011011001001100000000110011101101100101111110011110011110100000001101000010000100011110100100101011000100010101110001010110011010000000110111011110110011111110100011111101000011001000010101101111011101011110011111010010001011010010010100010000100000100000001001101100010000001110010101111011111000001011000110000010110111101110000011110011010100001000100001111110110101001000010001111001011110001001111000010101000010000100001011111101000101011011110101000010001111101100111110001000000000100011111100001101111100000010101100100000110110011101010011101110110111010101001101101111001000011100001111001111000010001101010010101111011011100001101101001111011101000000010001110000110110011101100011100011100110110010100000000001101110000001110011000001010000110001000010001001010101100000111111000101111011000001000100100110101100000001010001101111101011010001100000001001001100001011101100100101101111000111000100111101100011011110100101111101110100110001111111101110000000100011101011101010100110101000101100101110001100011011100111110010111011000111011110011000000101101100001110111111000010101100001101100001011111000111010010101111101110111101111001001100101001010111111110001001110001010001101100000011100101010101001001000001100011111110111111011011010111011000110100001110111011001111100110010100100011011111011011001000011010110110110001011100000001101001001111111111100110111110000100010000111111000111101011111010111100110100011001111001111011110100101110001001001110001101000100000101100001101011100111010010000001110101111111111111010100011101111100101100111111010101011011001100110001000101001011110010101110000010011110110100011001110111010111011001000011000110111100001000011001010001000101111111100011000010110010011000010000110111001110100111001010110101010110000000000100110101011000101100101110011000000011110011011100101010110110000011111011011110110000011101000011010011001000110110011010000100101010110100100000000010000100011111010110000011110101101101110000001111100010110110100000100010101111000010110010100001011110001101111000111101111011111001011000111000011001111001100001000011011110101001110111000001000101101101010010110011011100001111001011110101001101100011010100101010000110010100100110000000000001010001011001110110100110100010001010011000010010010010110010111101111001110101011001001001000011101110010011010010001111110010100111001010101000100111110010001110001101100010111000100111001000010110100001011001000001011010001011111110010110000000110110110110010101111110011111101001110010011010110001110100111101110001010011001111001111001111101000000111011111000111000110010100010100011011101100101010010011000110111110100011011001010011000110001111100011100000011001101101010011111110101001111101101000000110111010100011110000000100001000011011111111010001010100001100000100110100100101011111101100001011110111011010001111101111000111000100000010100010111001000011001100001011011100111110011111111110010010011011000101101010101100011100100000111110100101111111000011010101101101010011001000010100000001111000000011011110001001010011000100100101110011101001110110001000100000010111000010001110110000000101001110101111100111011000100011110011110101101000000001001111111111111010101110111100000011000011101110011100010110000100001110001101100000000001010000000110001001100101000000110111100111110010010011100110010100000011010011110111100000111011000110000000011011011110110110001001011010110010101110010111001111001111001001010011101011111110110010110000001001110111001111100101001001010101010111001011110111001101110100011101111001010010010000010110101100111010110011010111001111010011010001110101001110100011010010110111010010101101010001111100110101111010111111111010110110010101010001011101001000100101011011010111001000100010111000011001111010110010001111101010101010100110100100010010101000010000010101111111110101000111010111000011010000111001111101111110011000001000111110010100110101011011101011101110011100010001001110001111111100001000011100101001100100011010010111101100110010110110001001010001110100011000000100100000100100110011010001111010001111011001001011101010110111101111100001100000010110111100100010101101100010000101001001011010100010001000000001111101010001010111101000101100011001010111001100100011000000001000010101011010110100101110000100011001101000000100100111011101101011110001110100100100101001101111110010000100001010100001011001000111010101001101101100001010011111001000010010110011100001010111010011100000101101000111110111110111000110110011010110110100010011000100011110011010010011110101100010000111001001100010100111101110000110110000010001110011000101110110100111001000100000010000101011010101000110110101001000001001111110000111010011100011010011110000110011101100010101010111001010110111001010000010010111101011001000111101110010001001101100000110001101100000000011011001100011101111000100010000100111010111101011100001100101110011110111111101011001011100100001101100010000000111101110001001001010011111000010100000011001111100000011000011110001001111011110100111100111000101001100110000001100111110111001100001011110100001011110111101011110000000000001001111010010100011101111100111110101100011100111110111001101001110101110001110001000110111100011110111011100011000111111000100100010101110001110010011110010001010011010101110000011111000000010011010011000001001000010110110101011010011000111111001111011011101010110110000100111101001110011101111011100110001111010101001000100110011000011101101111101101110110001101101100001110101110111001000001000101111000000001100110011111010111000111110011011011101101000111101110100010110000101010001111000111100100110000100101000010100010100000111111001110101111100010001010010001001010001101100100000001010111101111101101010100001111001011100000001101101011010000010111001010101001111100110100100110100110001110110000100110000000110010110001010010111011101010001010101010011000001001011110111001001111100111010100001011011111101000001111001010110110111101000100010000110000111110111001100000000011100010110110101110000101001011110101011110100001010001111011011110101001100011000010110011101010010110001001011010010100001101101101110101100000100000111011001000011110011110101011101101000100010010111100111110110011101110111001111110101011010000111011100010111000001110110101000011000011101001111010011111100001000011000010011010000011100101001111010000100111101001011111111101100011000000110100001001111101010101000011011001001100110010010111110011101001001111100011010001010110011111100110010001100000111100101111011010011101011100001101010100011101001110100111101010111110110000010011010000100011010101111001101100010011000011001110111011000010001010001011000011100001001001110110001100010010110101110010110110010110001100111101011010100010000111010111110101100001101000100000000110101011011001111101001001101011000100110001101000011010011110101111010110111111110001101001111100000001110101111100000100010000100111110011111101000010111011111001111001101010010010011001001010111101111111000101100000010101001001101010100110000011100111001001101000001100001001100001001110011000011010110010011101101101110111101111001100110111101111101100100000000011001111100000011011001010010111101000001111111110101100001000101100011001100010010110111000011111110001001111110000100100110010000001110001100000110101001111100110010000100100100000111100010011100001010110001101010110000111100011110101000110110010101001110010110100000011101110010100010111110001100011111110000011001011111011101000100001000101001011000101010000001010000001010100100011110110101011111010000011111010100000001011101011010110111110101000010111001111000010100111100110101111111111101110000111111001000100110111010110111101001101010101100111101001011000010111000110101110100011101010110010111101101000101110011010100000011010011001111010110110111111100110111111101011100001111000011011010101010011010001000000011111101011111110101001011101111010001100101101010110110000111100101010111001101111110011111110111101111001001110000001100101011001011000111100110011111100001111111101101100001001000000101011101001000111011000001011101000010111111001011111110110010110011110110100101001000010010110011100010101001100001011010010000000101011011011100001100000001101000111101101000110111011111010110110110101001100111110000111111110101111001111101101100010000111101100101011101101110111100001000110101110010100001110000101001011101001010100111111100100010101100100000010010011100111111000101011111011111101011011111111101110100010010111010001000100100001001001101100111100111100100010101100000001110010000111011011011001111010100010100000000000000000010101101010101000100010101100110111111101011011001010110111001001100010101101011111111010011100011111010001101110110000001100100011001111001001111011010101111100111010101101000111110110010011000110011000110101111011101000000110101000101110111101101110010000010010111001010100110011010101100101000100110111100111100010011100001010110001010001011101111100011001111110101000011001010010100011110000100100001011010011111011110011100010111100001111011111000110011111010110110110100011111111110100110001111010010000100101100100100011101111100011000011001011001000110111000111100111110000000000111110101100110111010010011000001010011010001000111110010110111111010001000011100011001010101010001011001000101101011111111101100110010010011010011111110000101110000110001101001001001010100101101110100101000100100010000001000011000110001001110100100101101001100000111000001001001110101010010001011101101011101101001101110011001011000001111001101000010001100000000101010101101101000011101011010001001100110000100011100110011100101110010010101011101100010010101001110101110111111001111000011101110111000110110111010110111110010101101010100001101110110011010110101101010001011111111000000010100110111011110101110010000011000101101100000000011001101010111111110100001110001110111111110100000110110001101000001100010110111010100001110100101000110011111010000000010000100111100011110111111100011010010110100101100101110001010110100010110010000110001011101011001110001110011011100100100110101011011101110100100100001111110101100101100011000011000100010111000110111010010001001101011011001110001100101101010010101100111100111011111100100000111000101001011111001010011101001111011011010011111110001101101010110111010001010011001111110111000010000101110010110101101100000101000000010000101100001101101011000000110101001011011011011001101010101011000010111001011111100110010010000000111101111110101010100100010001110010100011011111001111111110110010101010100111000000100001000110011111011111010001111010000101001101110011010100110001111010101001100000111010101100100011000011101100110010010000001011001110000100000110101011011111000110100111000001000100001111110010111100011010010110100001000110011010001001010011101001001111100111110000000100011111001001010011101010000110001111100100100101101100111100101101110001011101001001011111010001101000110111110001111100001010011101110000101110101011110010100111101101011001101010000100110100000100111010110010110000000100101111100101111000011010111110111110100110000100001010001100101000000011101101010111001000101111111000110111101001001000001011110101100001111000101011111000110011110110101101101100010101111101000110101100010001101110011100100111110011111011010100100110001010000101111100000010110100110000111111101100101010111010111110000011000110011111101100011100100100001101000110000001010101111011111001000000101111101111000101000100100001011100001000100000101111001110001001111001010100011110100001100001001010111011001000010101010110110110110000100011000000111100110101000101101001001110111011001110101011110100111010101010100000100010111100010111100101100010100111000011001101110011000001101011110000101010001101011101111101000011010110010000010100111101011010110010101010010110100110101001001000011111100110010111001011011010101100110011001010101010100001111110111010010100110100000001010011011001111001100001001101110101001001000010101001101000001001111000000100010100110101100111101110011111100101001000011110001011000110110000100111110001111001111000001101101101101010010000000110010010110001101110101100111110000100100011011110001011001001111100110110110100110011000100011001010110011110000000100111101100110110000100111011111100001001110101100110010111011010101101001101101101000101001011001010111001000011011101111001100011000011011110111111011110110110000110101010011101111100011000101010010000010100010100001011010001001011011101011000110111000011110111101110010100011010011001100000010101011010100000001111110110110001011001000000101000001000111010000001011111110100101011100110101111010101001101011101010101101011001011011001010111111010101100100101011000101011010001111000101000110111000111111000111000111100101010000110000101110010010010000101101010010001001011100110111000110011100101010100001100000100110001011011111000000110111100111100111100100000101100110100101001010010011001010010001010110100101011011101000101111000011100100110011110001100001001010100001110111111110100101001000101011111100101101010001111001101000110000100101101001100000001001111010101010001000001001101010010100101000110111100011110001100110110010110001101010011011011001010001101110001010001100010101000111101100010010110010101010011110011110110000101011110110010101110110110010111110001000100010001010100110100111010100100101010011011101000101110110110111111011010000000001011011001101111010100111101001010001110100110111010001100101110110100001100111001010001110101101010100010011110111111110000101111011101000001001111101111110100011011100100000010010111111011110011011101111101010000100001010001110010110110111011111111111010111101111011001100111100001111010001101001110001010110110000011000011100001000110001110001100111110000010101010111111010000100011001100111110111001011011011100111001000110000011011001101011111001000011100000110100101001101010100000001010010101110110000110011110110101111010111101000011110011001101110001111101000001001010101001110011111000000010011101100100101011010101000000000110000000001011000011000010011101010001100110101111110101010111110000110110000010100101001101100100000101000001001111110101100000001100111011011001110011100000101110010010111101110111100111101010101100011110000100101001010000110110000110010000110111101110010010010101010110000100110001101100011101000110000111000011111111010000000110000110101000000001101000111101011011111100110010000111000110001011110110100011111100100100001011100100110111001000100100010111100011110010100101001001101110101101110011001100100011001101000010011110110010001110101001101001000111000110000011111110000111100011010001110000010000111111001110111000110010001000000010100111000100001001010010001011101001101011111110111101000011100100001101111010010010101011110100110010100001000101111011110111011110001010011111010111001001100001101000110000100100011001110010011001100101111111011010100101000010010110111010010111111001001000111000101000011001101011100101100000100100111111111110011001110010101101001101000010000110111111001110000110010000100011111000000010111111011001110011101111101011111111111111100010111101111000101101100111001001010110100111111100010001000000101110100011000111111111010000100010001100010011100001110110101011100001011101001010111001110101101000000110000111101011000101111101110011101111111000010000100111001100010100011111011110001001100000110011101001111011101011000011011011110100010010000111011011100100001111010110001000001101000100100011001001010011101010001010100010110110111010101100110100101010011101110101100100000100001111111010010100001101001001000010110110000100110111000000001111010111100000011011010111011000100011001001110001111001011001101011101110010100111111111000111100001010101001101110000100111101110101110101001011000000101100001110001011010000101100111010111100100101111011001111100010100010101101101000011000010101100111101011111101010111001010101001000110000101100010010101101111110000000010110001001100010100001010010101011111111101011100100100001100101000110000101010010100110010010110011100111000010101111000100100110010000001101110000111000000001111010111111011101001001011100100001110000100011001010100111010011001110110111110101011101100100000101110000100111001101001010010100000110001011001011101000101110011010110101101001101001011101101101100111011001101110110111000100110000110001000101011010111010111111001100001001011010000010010110000000010111101000111100011111000100111100010100101101110101111111101001010111100111101000111101111111111110001101000111101110000011000001100010000101111010101101011100011111010010011111100110000001110111111010001001010100010001100101010101101100100011010100111100010000111111111101101010110101000111011111100111001100110010010001001101001111110101101111000011001010001000110101010100100111101001001101110111110100010100111111100011111111000010000010010100010011011101010000101010100111110111101101011110000001111001110001111010000100011001011111011110111001001011011110001101000001100100011100111011110100110001101001111011011001111100101001111100100000000101111110000010110110000101001000011100011110101100001100011010111111010011001010011000000010011110100111011100111111100100000111010100000001001101001100111111110111111011010100011100001110011010011100001000111010110100111001011010011010010001111100011111011101011100101101000100100100000110100010111011100111011110011011100100011100010011110000011011000001110110001101110111100111101101101001001011100101001110001000100010110110010110001110110000101100111000110100100011111100010001110111100011001110010100111010011101010100101110110101000111101011110011110010010101110101000100010100100111100000011011010011111010110011001000101011101110101000010000111001101110001000100010010010000100011100100100110110101100011001010110001101111100101001111000001010000111010100001001111010010001000100111010101111100010000100101110010010110100010100000100111101100100010010011100110000101011000001010011010111011010011101010010111101001110001001010100110001110001001100010100111110011101100011010010001011110111101011001110010100111011000101010111101111001010000110000100110011101110100110010100101001011111000001111001110100001101110011011010110011010011101000011000000111011101110001101100100010100100110000010010010101101111100001010110010010001001001100011111111000100011011111111011100101011001010010011111111100111111011100001001000110000101000100010101001000101010111001000110011111000111011010000100001000100111000001000111001011011001101000110101110001111001111111010001100010011011101111101011010011000001110011110000011000100100010100100011011001101001110011110001010000101010011110011111000000100011110000010010001000001000110111111111001010101010101010001101010101001010011011010010001000101110011110000000011001000010000110111110010000000000001010000001000111110100101110000011110101010101111101011101110101101111000111001011111010001010000000000111100000011110010000010001010111010111001100100110001010010000101010001111101110010110001111011110001101111011100100000101101000101000000010010000000110110101101111011000000001101111110111010111110100100011010111101010000101110010110101010100100010110111111101000010001111001111001100101100101110000101111100011011010010100100111001100110100001100000111011111001000010111100110111101111001110100011001100010001101010100011001011000111010111011011110011001010001100100010111011111010000110011110101000110010011110101001000100111001001111110001000001101110111110110100111110011111010010001011010010111101101001011101100010000101110110001100011011111111011000000010011010101100000000010000100111010111110010101100100001110111101010110110110010100010110001010101001110110011000101101100110010011010101001001100111101000100000000000110101111000010100010101111111011110111111100010011100111010101100001011000111011000110011100010110100010101010101110000101100100100100001011110011110001000011111001000111111010111101111100111000000100000111100001011000100100101111001100001000000011111010110111000101000111101100001110111111010001010000001011111101101100010000011111100111000010101110001110010100010001010100110010000100010110101000100101100101010001010110100100011111111100000110110101100000000110001000011110111001101100110010110011101000110001010110010000101011101101010011011001011001111010010110000000111010001000001000010011010011100111101011001110101010001110011000010111000100101000100010100011000001000001001010010111001101001100111000011100100010101111111110110111111011001011110011011010000001100001111001110100100101110010111111000000111100110101011011011001101111011011011101100001100111010011111001001111011000000011001000100100110011011000110001010111100011100000111100101000101100011011111100100000010010001110010111101100100011100111001110111111011110011011100101000101111101010010100110000101000110001110001010000000011000101110110000100111100000110111010101000110100010010000011111001000001010010100101011001101001011010011111011010000011011111010000111101100010000101010101100000101010011100010111110011111110010110011110000101110011001101011101110000100011111111101101111000001001011110101000001010010010100100000100001000000100100001111100001101100010010000110110010000010100011001110001101110010101111111001101100001100110000110010110011101101001110100100111110110110111111011011011001110000100101111010100011110101011010011001001011111010001001100010100010010101110010101101001011'
cipher = L3 + R3

# decryption (redacted)
plaintext = L6 + R6
plaintext = int(plaintext, 2)
plaintext = binascii.unhexlify('%x' % plaintext)
print(plaintext)

このコードからL3やR3とL1, R1の関係を導く。

f1 = R1 ^ K1
R2 = f1 ^ L1 = R1 ^ K1 ^ L1
L2 = R1
f2 = R2 ^ K2 = R1 ^ K1 ^ L1 ^ K2
R3 = f2 ^ L2 = R1 ^ K1 ^ L1 ^ K2 ^ R1 = K1 ^ L1 ^ K2
L3 = R2 = R1 ^ K1 ^ L1

→ L1 = R3 ^ K1 ^ K2
  R1 = L3 ^ K1 ^ L1

これでL1とR1を復号でき、さらにhexデコードする。

import binascii

n = 26936
K1 = '01000000111011011100010101001111101001010011110100001111011111001101101110001001001000011010001100010100110111000010011101100110111110110000110010001110101010001001000110101011011011010011000111110111000111011001010001100100001000111001100010100100111111101111010101011101001010000000010101111100100100110100110110001101010011111100110110100000110000011010000111101100000100100011010100101001100100000000011010000110100001111000001110011111001000010011001001000111110001110101000001010111001011011111111001001011101101101011110001111010001010110001001011011110001001111101101000011010001111111100001000011100101100101010100001000010011101000100010000001101011111010100100000001110110110101111111011110010111000011101101000010111101011100000011011100101110101011110100100111101010000011000110100101010001101010010001101000101001000000111110101011010100110100001001010001101111011011010001001111100110010110100010100111011111110111010110011100001101101110111001000010001001110010101010101110011000000010110010010110101000100011111110011101101110110011111011110110110100100110101010101101101010111111000110110111101000010100001010101001100101110011001110011100111101011101110111000100101110001011010100000000100100011010100111100001101101011101111111010000110110000001100101010110000101001000011111111000111111110011100011101110010000001111001010011000111111010010001101100101011101100110011101010001101011000001001001011001010101110100100110100101010101000000101001010110111111110010100000100010111111011110011100111000110001010000001001101001110100100110110010011010101001001001100100100101000111001100100000010100100110101001011111101101000011110100101001101010010111011100000100111111011111111101111000010101000100111110010011100100000101110011111011100000111101000101110000001000111001111001010000001111101010111010010010010110101100001101010011101011010011111000000111000101010001011100100111111000000011000101000001010011110000100001110000111110001001111001101101001100110011010110111001111100000010101110000000010111111111100110101010100101001011001100110111111001111101111110010110001100110101001100110111001011101110001010001000110001011101001101101000111001011001010101010110110001010110100101110110110100011110100011010000000100110100110100010110001100101000000111011001101110110001001010111100000011111100110000010111011001111101110101000100010000001001010100101110001101010010110011010001010001011111101000010000011011111110111101100110010111010001110001010110111100111110011000111001010101100001011110010111100101010101110101100111110110100011011110110000001010101011101010110111111100110100111110100101110001110001000001000110100010010110000001011101011010010110010110100110001111011101101001110010001110000111011011001101101110101110000001100011110010100000111110010010101001010010010110101101101111100110011011111011011100101000011000111001100000111100000001010101011100110100100111111000111111010100010100000000110010011110000100010000011000011011101011100001111001111101111101100011000111100100101100010100111101000011101010101110001001111111010111111001100111101110100111110101100010110001110110011101011001001110100110110010101101100101110100011100011010111100010011111000111000110001010010101001101111101101111101101010111010101001110011111101111010110101100011000001101001100000001011100011011001010100000000001010100000111101010000111101010101000000001111101010000011000001110100110111111100010101001010010110100011011101101111101000010110011000110011110011101011001001111010000001100111001100110100000010110011000100011110010110011001011000111100010011001010001010100001111111101101101011100010010110101100000110100111101011011101110101010011100111001101011110100101101100111110000010011111101011001110010111101110001101111101100011110101111011001101001010000000100000010001011110100000101010001110111010110010010111011100010110100110111111001000010101110011100100001010011100011101100110001010011010100110110100001101010110101110101101100111101011111100011111001010010101010000100111001000000010010110011110011111001011011111111011001101111100000011100010000101000111010100111111101011010111011010011101011110010100001101000011011010010010000011000100110011101010010010001111011111000011100101111101010001100100100001110001001100001011000101001111100001100100010100000111011011011000110100010001000101101010010001000100010000000001010100110000011100100101110110111111101010001101100100101001100100001000110100111001110110111101011100000010001100001001110111011000100000001000101111000011101100110101101101101000110111001010100100100110000011110000101001011010110000101000100100100000111000101100010010111000111111100100011000011001000100000111111010101101111101000010101101000010001001011101111010101110110110101001111110100110111000111101101011100110011001011101111110000000100011111100010000101111110000101111001000110010101000000010110011101011001001110011001100100100101010010011101001000010011101101111100000011100111011010010101101101111111101110001110101000010000000010010110100100110100011110001110010000100010101100111110000101001011001001111000010000011000111011010100111101111010101000000110100100111101110000010011101100101010000111110101011100110101000011001101110101001000111100001011000010011000101011111101101001100010110111101110001100110111010010110111100001101001100010001010111110101001011010001100100110011100111000110110111010010010000111110101101110100101001101111010100100001010000110010111100110000011100001111110011001101011100011111110001010101010100111010111011111010111011001011101010000010110011011101101111111111111110110110100010001110000011010100011010100101001011110100010111110010010111010000100110110101011110001011110100100001110111011011000000010110101111100101011000011111010010001011010100010001010000001000100110001000101100010000000010010100111011101000001101000111000010100111101110101010110011011100000010001000011110010101000110010010011001100110001101111001010101011010001000001011111101111101011101110100000010010111100100111111001000110010000111111100101101000100000110101101000000100110011101010010001110111111011011001101100101011000010010001100101111111010000001010011101111000011100101101111100101001101000010010010010000100110011011100001100011100110111010100000000001010110000101110010100001010000110101000001101001000101100110111100000101110001100011101110000110101100000011010010101111111011010111100000001001111100000101101110100101111111000001000100111100111011010010100101111101101100111101111110001110000010000111101001001010010110101100101101001110111100011101001110110010101011001011011100011000111101101110001111011111100010100010001100000001111111000001010010100101111110100101111010001100100001010001111101001001111001010111101110100011011101010101100000000001011011110000111001011011100111011100110101101110101011000101001111010101000011010001011010001000000010100000110001011101011001111111001100011111110110111000000100010000001111010101000010011010011100111010011011011001011001010010101100001001111110000011000101100100110001101001100110110011011001100001111110011111010100010011111111101100101111010001011010101100000001000001001001011000100100101000011110010100101001111111010100111001110011000000111101101000111001010111000100011111010011000100110011011001000000110001001011000111011010111111111111100000100100111001011011001100110110010100000001111001001100100110110101000011011011010000110011011101011011010011001010110110000010000000101011010100100010100110000010011111100110000001110100001101000000000011100011010110011000100100101110100010101010101111011101001101010010011011111001111001100000110010011011110011111001001011011101101001010111000111000101001101100010110101011111101110011011110011001000000011101100100110000100010100110110000110000000010001001001110110001111100010000010010010111011110010010010110011111001110101100001000001000010101110001011011000001100010010100111000000101001100111101010011000001100100011110010000011001000110110011001011101000000111010111011110110111111000000100110111010010111111110100111100101110011111011101001111100111100010001101011001001001111000101111000011101011100000111110110010010010111011011011100101100010110000110000110100011110000010011001110000001100001100000101001101001010010011110111001110001000001000110110010101101110001000100010000001101111100110000000100011000000111010100110101011001101111001011000111011110001100001111000101100000000000000010011011101001001100001011100100111010011110011110111010010111000111001010111100011000100001011111110101110011000000110101100101011101001001010100011001111100000001110100011001010001000110001111101011100001110101101000101000011001000011101110100000000011001100001111010111010000100011010011100101101110000100101111101111101000000111111100001011001101101111011100001110000000001101001101111000000001010011100110001011000001000000010111011111110010010000100110000100000101010010110111010010011111000000000000100011011010110111101000001010111110101101110111000111000001001000010011110011110010110011110000110001110011001110000101111001010111111111100001011111001101110100111101001001010110010001110110011100110000110000010110010111010111010000010101111110110111010000010111101010101011010010111100101101111010010110111010111110011111111000111101101000101011011011110111110000101000111001011001100010111010001100101010110010110010100101010010110000000100010100111110110111100011010101000011101000111101111100011110101000000010010111010100101101010111101001101110100100011111001111101110101100000010011101001001110100011100010111100110100010111100001010010001100100011110000101000000010100111111010100011010011111011111001000101010000101001011100011100000100110110100100001001101111010000101100000011010111010000100000001111101000001010001101010001101001001010011001001100011011000001110010111011010101100101100000111111001110000001000100111110111100001011011110100100100100001100011110011000100010010101011011011000111001101001111101101001010000111000010010111110011101001011001010010000000011101000001110111111101010110111001010101110100000011000010011101011010100001010001100001100111111001101010100100001110100110110110010010110011101101110000100100101000111000010000000010010100101110111001001101001001100110000001010001100011001011111110110010001100001101010001001000010111111010001110111110001011101000110011110000101001001110100000001111100000110011010011100010001111110100011000100110110111011011100111100100010011101111110111011000111100001001100010010001000111110110001101001010110101010010101000011010111100111011000011011000001111001110101001100111100101111100110100001101011110010001101001011100100001111110111001011111100000010001001101111011100011001111101011110100000011111111111011001111001110110110000100001011010111100001010011011101011000000111011100100001101110011110010101110011001010100000001010000010011000111010011110011001101001010010111100101010110010010111110001111010111101100110111010100110001001101011100001011100111011101010100011000110111001101011101101111110001110100001101011100011110101010111011110001001101111010000001010110010111010011000111000011010011101011000111011110101110110011101010001010001111100101110001000101011110100010110100011111000010101000100011001010001001001000001101010100010001010011101111111101111000001101001011010000000101101010000100110111011010101111111100000100101010100000001111100000101010000001110010000001011110111000101011001010110010011100011101101110101001001000100110000100011010001100101001001111010010111100111101110100011100110101111110001001100000000000100010000110100010000001001010100101000010100110010001011011010010101011100011010111111011101110010111101001000110010100011001001101111001100111100000111011010000011100011110011011111101001111010011011100110010110001101110001001110110101010000100011011110010111110001111100101001111000101101000101010010011100100000010110010011011010001100101111111001100100100101000111111110101100000000000010100101000101111010100100011000101001110110010100111111011101101001111000011000001010110011111010110001001100101111100011111110110011010011100001000011100011000001111100010111110111110110001100011011000100000010111001001111100010011000001101110110011000001001010101011010011100011001011010110000100010001110101000010111010010110011000011101011110100100000110100111110100110011101000010000011010100110011000011101000001101000000110000001000100011001011111001111011110111100110001001001111001010011110100111100011100010101100111000011100101001000111011001001110001101001010010101001000110110110111110100101101001000110001000101010111010000110100110001100100100001000001000000001100110011011011011010010110101101110110111111111000000110100101111001100001100000010001111100000000111001000010111011000000111111111111000101000111100011111100011100110111001001101110010001111101100100011110011100001111001100011110111111111001010010111100101100000110100010000100001110110001000000100000110110011101101000111110010011001101010111110000011011110001000010000110001000011110010001011011111011011101100100111000100001011011001010011001010000100011100101111110111001011101110000001111010010000100111101001010111101110100100010100001111000010001011100000101110101111100110000100111000100100111111010011101001011000000001100110101000111000000111000001101100000011100110110110111111001000100010010001100010111010010101110001110110001111101010111101101011000001110101001001010101000011001101000010011111011011110110100010011101001010100000101010010110110101110100100110111000011111000111111000111101011001000010000011100111011100010000110001110010001100000111111110101100101001101000101001101001110111110000001000101001110111010101011100110110110110010010110111101001110010011110011001000001011001011111010011000001001011001011100110100010111101001011101110000100001011110110110101110111111100110010000110111110011111000011101111100010100111001001111001101101100111111101000100101110100100010110001100011111001001001100111001100101010101111000001001010011010111111000100000111011001101010011111100101110100111011111010100000101000001001001101111111101001100001010101010000001110010001111011000011000011010000111110010000000000000001101101110101001010010100000110111101001111011111110110001001001100010100101011100111000111100010111010110101110000000000000101001001101101001100011010010111100011010100001000001110110110011010011001001100000101011101100000000101001101110100001100101010000100010101101011111110011100101100101001111110111010111110010011111001010000001010101011111111101011100110110101001011000100010101011110011100101101011111011111101110001100111110000001011011110110110001011010001110110000011110011110110110011001010011100100010100100010011101110110001000010011011010000110100000111010111011000001010111111001100011011010000011000111010010010001010111110100110110011010111000011110110000110101110001010111000111001011011101001010110000010011100011101000000100010000000001111111001000110101110101110010101001000100011000001100011011010001010110101000101100001100010111000111001000110101000010001011000100011101100001100100110000111000101111000011000100101100111000111100101100101000000101001110001000100110101100011000110010000101111010010011011100000010011101001010101100010101011111000001101101011000100110111100110110110010111101010010001100010110101010110101000011101011011111001110010110010111100110101010010001111000101101110110000010101101110111111000100001111011100111110100100011110110000101000111100011010111000100000010100100000110000111010010000011100100100100011000111110100011100010110100000101101110001010111000010100010000001001011011011001111011100011000110100111110100001011101010100101000001101110101000101101111000011000101110111001010111001010000101101010111001101001100011101001010101011101000001011101100100111111001111001001110011001011100001111000011011000111110111101000010110100010001100011000011110101000011010101110110110110101101010101001000010110101100101101100111000100110100111011011010001011101011111011010011101100011111100110001110000010111101001110100010100110010001000010101111011100001110101110111010101001100111100000101001000110011111101111011001110001000100111101111011010111110001011010111100110010111010111100110110010000101101110010001100001110001111110100001110101000011101100110101011000010000100111111111010111110011010100110101101000101011010111001011111101001001111000111100001010110011110001001001111101000000110111111111100100111101101011100101000100011011100011001000111010101101001000111111101111111001010111101111000101110101011010010101011101100011001011010000101100110000101101010101010110001000100011111110001111010011011011110110010100101000100101010010000101011000010001101010010011010101110101000101011101001001001101011111101100010111000001011111101100001110111101101110100010100111101100110100000010011101110111100101111110011111011000100101010001001000100011100001110110111110000011111110100101100111011001110000010010100011110111100001101110001001101000110011101010111111011001001001000101101101111110101001100100110011100011000101000101100001110101001110001010100011110000001110101001111111010111000011101010101110110010000100110010010111101110101011101101110001110111110000110101110110101001010111110100111100011011100011111100110100010000111001011001110110011100001110011110101101010101101010001111111000011110110011101000110111101101010101010101101010110000110100101001010011110000110010010011001011010111100101011001110101011010001110010111001010100010100001001010111011001011001101101001000110101111001000011111011101001011001100000000010010100000101100011101100011110000101000100011101001001110110101100100111100101011001101100001010101100111010001100001101010010010001100010101110111110100100100010001100001011111001100000110100110100000011001100011011010111101110001000100100101110010110001100111001111100111001111101100000010111001010110101001101111001110101011011001101111000010011001100101010100010000011000110111100011110000110001010101000011111001100010100101001010010110100011000001000010000111011010101011011110111010011111011101101010100111010010101100010010101111010100001011101110110100001001100010011101001001000100110000100011110000100101011100101101111110101000001011110010101011011000011010011010111111010100000100101011000011011011101111111101000010111001010101010111000101100110110000100000101000010011010000111101010100001001111100000111000010110101001010000001101110100100101011100111000000110110000111100111100010000100000110110101001110010011000000001001011110100110011011110000101001000000000100100011100111100001101010010001110101111111100101010000101111111101101101001001111011101011110000000111001111100010001001000010100000001010000011110010011100101011110111111011110111100111110010100001101110011011011001001001100010001011101100001101001001101101010011100010101000011101011110010000101111110111110101000110110000010110100010001010001010100110000111100100100001010010111101010101110010110111011011000000001011011011001101101010100001101000010001100100110101010010100101010110101101100110101010111110101011010100011001100111111100000111010001110000000001111110011110001011010010100000010010100111010110011010001111110010000000001011001110010110110111011110011110001111101001011000000111011001111110001001100100011010110100000000100011110001000000001101001100110100100110101001111111101000111011001111111110101001011101011101111001010110000001011000101010101001001111100001110100110001101110100000100000000101110100000101011110110101111100111100100011101011001011110001111101110001001100101010010011111010100110011111000100010011011011000011100110011000001111000010100010001101010101100110000101100101010101110011010110010010100011001100100100010101001101001111110101011000001000111000111001100011100110101111010010001101110111100100101010111110111000000110101001101000111100000100011010101111100110010001010101001110000010110000101100001101001100000111100011100111010010000111100110110000001111101001111100001011111100110001000111001110001111110111000011101100100000001011101110100111001010100110111101111011111010100110101001000110100011110011101100111011001101000011111110101010001010101000101001100111000100000010011110111111100101010000010000100000111011001100110010100010001010000001000111010100001111010011001011111001101101111110111101110011101110100100011010110010100101110110010010011001000111111010010111110110001100011110110111011001100101101100111010111100010001110001011001111101111001011001100101010010011010111010010111001001000000111001101000000001101111100100100000111100111111111101011001001000001011001111000010111110110101001100001100001000101011111011000010100111011111110010101111111011101011111111000010100101110000101100000111010001011010100110111101001001000000101111000010010111111011010001000010111100010001001001011100000011100001011101101010001001110001101001100110010111101111000101111101111011111011111001010000110111001010010101011111001110000111100010010011110001111111101010100011101011110010010010001101001011100110001101111100010000000101000111000011100001011101101010101010111010100010111011001100101100101000011100110101110100001000001110011010000100001011001000100010000110000000110011001010011111011111100011111011000111011110100000001001100001110101011011100001111110011110111100111000011100000100101000001110011100110011110100110101000011000000101101101110000011010110101100110000101100101111111000001111011010100100101110101000001000011001100100101011100101010011001011001001011110000011100011010101011111111000101011110001110100011000001000010101100111111011011100101110011100100010110011101010010100110100010110011100100000010011111011000100100010000001101101100111011000011001010110111011110001000111100101101110111100011111010101011010000001110010111100000001100110001010101110100100111011001011010010100000000001011001110100000101111001110010101110101101001011101101101111011011101101110110111010100110111110001100101110010111110101010011100001100001101000010110110001100010010101000111100000110010001111100100001110100100011111110001001011111100111101000011101010011111000011000100111110010000001000000110010011001111001101100101100000011010010011111110011001001110101111011111001000000010110100100100101100100100000010100011100001100111111101001001010110001000001011110100111010000110101010001001000000111110000101110110011010010001111110100010100101111101010001101100111111000010111111110110011100111000111000011110100001111011111010000011010111111110010111001001011010101111001110001111010000100011111011111111110110101001011011110111101001101100101011101011011100000110011101001001011000001111110101000011100111001010111111110000010101010000001001001111100010110101111001101111010101110000000001011011000011110011111100110111100110111100111000111110100001001001110001100101111101111110011000000101100011110011101011101011000100110110000111001101010010010010111111101101111010101011111101100100100101100000000100010011011101011011000011011110001010100010111110001101011000101110010011001000111110111101010101000011011111001001110001000010010011110010010001110010000100000111010110101110011101000010111110110100011000010010010111011101101010101111100110100010111110111110111110011100101101001000100000000000111101100011101010010111010101111001011101011011110100000010010111000001110001100100001010010110100000000100100100010001100001101010001001101011100110101111101001010110111001100000011111010110001001000111100101110000111001100101111010011010100000100000011111100010100011110011010110000111110001001010100010110101010001001010100111101101110000101010110110011010001011000010111111110001101110111010100001010000111100011001101010101011011000000000101101110001010011010000101110010101011101010010000101000101111010101111110110100011101111111011011110011100011100100011011000111101101111101101000100010000100111100010000010101011111111101010100010010111001010100011101111001000011011110101001100101001001000011001010111100111111000100001101000111110101001000010110001000101010110001000110011111110111010010000111001000000111001001000010001011001001111000110011110000001001110111010010100011111011100111101101010011000100111011110001011001100001000000100011011000001001100011110110010000011010010010011110000000010011111100010010001000101000101011111010001010011010110010001110010101111010001011010100001000111110000110000101001101110010010110111001010001010000010110000011000111000100110110000010100001110101100001011011110100101111011011001000111010111010101100000101100001111110010100010010010110110111010000100110011110110000111110001000101110100110010011011111001101001011111100000110101000011000011110010111000110110000100111011110000000011111101011010000110101010011011111101001000101010010101101010111110110010111110101000100001110001111010000101111101110110101101100011001010010100100100001100001100001000000110111111011000011011100011011101001001111110110000000010101101011010011001111000000010110101011110010011000001101110010100111111101000111101110111100110000011110011001001100111011001110100001010101101101111110110100111010011001010010011011011110111011101001101101101110000110110111101100000011111010001100010111001110101100000000010000100111010001110010001100101101110101101010010110110010100110110011110101000110110000000101001100111010010001101000001100100101001110000000110110110111000001100010011111110111110101111101110011100110000111100001001000101010010011011100010110111010101110101111110101101000100111001001000011111101000000111001000111111110110111111101011000001000000001100001101000101000101011001101101000100110101000110111010101011111101000001111001111001101010000011111011101111000010111011100110111011010101100001110100100010101010110110000100100001010101110100101000101011001010101100101111111111001010100110110100000011010001000011111001001110000110000110011011000110101010000010000101110100001010111011000101001100010010001000001101010000100001011010011100011101011101100001111001010000110011111010111000001100000100111100010110001001101001101010101111101000000111110011100100010100011111100110110001011000111110101011010100100101001111010110101010101100010111001000000011100111001011001011001001111010111011010100000000111011010101010001110011000011111001101100101000011110000110010010110010011100100111010101000101100010011111111100001110010001110010001101101110110101111001111111110111110001011100010000100001101010011110100000100010110010010001010000001101000101010110010100111010000110011010111000110100010000100011100001010101010001000101101001101101011011111111101010000101011110110000100101101110000111111111101010000000011100010111110011111110010101011110010101110101001101111101100000101101111100101101100000000111011110001000010010000100100101000100010000010000100000011100110101101110010011110110101000010100110000110001000110011011111101001101011001101000000110011100001101100101110111100111111100011001111001011011110110000010000110010100110100001111010011101001100111011001100110110100111010100100010101100011001'
K2 = '00010110110110011100010001000100100000101100000001011011010101011110101010001111101110100101110110011100100100110001010001000111001001110111101100110100110111101011010101101111111111101111100010111110100000010111011000000010101011111000100011010001000001010011111000011000000101101101000100001011100110000001100111111101110111111110100101011101110101011110011010001100111001010011100110100101000010110011111111101101011011100100101110001000100000000001111001001100101111000000010110011011110100111100101000111110011101001000110101110101001011001010101100010001011001000001001011001110110011100010010000111001100001110111010111001011100010100110110110110010011010110000001001100010011000101001101010001011111001111010110100001111010111100101100100111010100110100011111000100000101000100011001110001000011100001110001010111101111010110011111011101101110101011010010101010011101000101011100011010010111011000000010010101111000100101001110000111101100010101101100101001011100000000010010101010001010100010001111000101101111101110000011100000110011001101111010010010001011001000001101000011001001101101010010110011011001011001111000010111101010010010001111011111000101010001010100010011001100110101001000100011111010110010101010111101111000011011100000110110110011010101001101000000011000101010011101010111010100000111110110111011110010100110110011100110010011100001100100011000010001111110011000010010011101001011010101111111101111111101001100000001001110010110111110111110101001110010100010000010001111100001111001100011100000111110010101010011011111110110110001011110011111100011111011001111110000010110101011111011101000100011010010111001110100110010000011111000001001001110111111011111011110101111110100110100111010100000010010000001010010110011100100110100010000100101111110100001110010101000101110111100110000110001110101011011000010011100110111011101111001001000101111100111101000001010010101000001000010110010001101111111101111100001110100100000001111001000010111000001100010001101101000010000000110110111000101011011111100111001001010001101011111011111101010110000111110111001001000100110110000101111111110111001000101010110111110010100110000000111001010011101001010010111101111010001111010010001111000010111001001100010101001010100010001101010011111010100101101011110111111111011001001010001110111100001001101101101001010010101101110000001110011010001111110101110100011010001110101001101110001100110010100000010100111101010110000011100111101101100110011010110011011111000100001100100001000111011101111111010001110111111100011100000000100001111000001000010000101000100010001011001110100101011100110100101110011010101101000001101101111011110101101000101011010110010110001001101011100111111100011010010111111000100100001000111101111110011000111010000010001000000101000101100100010111011001111110010111010010111100011110000010011100000010000001111001111010011110010001110101110111100110101101001110001110101100111010000110110110101001010100101000001010000100101100011011101001011011111110101001100110010010101100000001101010100100000010111100111100011000110101010010000011101111001100101100110111011011111000001111010101001001011110101110100010010110101011000011010101001010110000000111111001001011111011111100101111010001100101000001101111111110000110001010111010101110010010100001011100011110111110111100001010000011010110000111110000010000110101111100110110000111010101101000100100101001000001100001001101000100011011111100001011001011101011011000000000111000111011011101010101011010111010110110110110001011011101001011110100001010010010100000000000000000100111000010010110111111110000100011010000010111000101001011001011110100111101001000101110110011010000000110000000010101011110000001001111111000101011010101010010111001101011001100011011011111010101001010000101111011110011101001100011101001101010111110000001001110010110011000000100100111110101001010110001100111100111100100101010001110110101011101100111000011000110000001000110110101010011100011010100000101010000010111000000011110000111100011111010101101011011100010101001010000000001010001001100000110100000100000100101101101101010011110101100110110000001001100101110001010001100110111011000111011100101000101110000111001111010111010101101001111100011100001010001011011111100011000010010111010101101101000101111111100000000011011000100101111011010000010001011010011000101010001010000101111110100011001011101100111110010011000101101111110010100101101001001100011001010001100100111011000111000011101110101000101010100100011100101011110111111000110111111101110000110111100010001011111010001110101001001111010011101100111101111111001000101100010001100101110101101100101101010011100101011010101010100011000011101101101000011100001110100100001000101101110101101011101100101101101001011000111110000101000100011100011110011011101000111011101101010101111111100101110100010100111100101101111000100011101110110010001101100001000000110011010100110011011000011110111111110000000000001001110110100101110111000010110101000011001111011101100011111101101101011101010110000101011111010010101011001110011011011110111001000110111000000000011011001011101010000110011110100100110100000011101010110011000101110100011101110010011101111011111011000010111000110110110101100110100110000100010110000110010111001100010101101001111001101101111011111000101001101001001000111010000111100011001011101111001001110100011101101110011110000100100100010011000111001100011110111100001101100100011111000111011010110011011101111000001111110100001001000110001010000100010000101010000011110010101111001100001001111000011010101001100000000011101010110111000000101000101001010000001011101000101100110100101001110010000000111111010011101100001001100000000101100100011101001111010101011111100100110010011010001100010110001010111010000000111111110000010110110011000111110100010010111110001101110100111010110111110000100101001100001010110101100011111000111111010100101101011000001111111000001101111011011110001011110011000101101101101110011000110011010000011011111010110100010011001110100101100101101111101110111101110100011111101110110011101010100101000011101010110010000000101110001001110101110111001010001000101100011010100011001111010010011100010001010100100001110001101011100000101100111011000100010111111000111101111100110001010010101000110010010011010101110110011111000111101100101000101010000101010000100111011000001000001001001010101101110101000110001101001110011001111000100010001010101111000101010110111111111010100010000111111001110011101001011010000000010001011101101100001001101000111001110101011100001101100001100010101110101111011100001001100111010100111101010001111010111100011101111001010111110001100100001001101001101110010011011111110100010010111110010110111001100110101000111100001100010010100111000101000010101001100011100011000000100101001100010000111101111110100110111011001111010000001010001001010001001101111100110001001110100011110001100011110110100110001001111101100001011000111100111110010000001010001010110100011010111110001000000101101111111110101110110100101000000010100110111001111011001000011011010000110011100000000011110111001001001100001010100000111000111100011001001001010110011101010001101011111101000101001110110101101000111011101100110010111111010010110011001000001011110101110101011101010000000010100111011110011010100001000101101100011010010110000010001100001010010111111101000100010100010010101011000000111011100100101000001010111000011100111010001100000000111110101101010101100111000010111000000011111011111000110100110101100100101111011001101111111000111011100100111000101101111011000001110011101101010101111110001000001111001010011100010001000011011001100101111010011110111001010101001000001000011110111011111000100101111011111011111111101011110000000011111100111011100010011010000111101001101110000101110111100010011001011100011111110100110000110100100110110111111000001111001110000000001011000110110011110011100111101100010011100000110001000000111011010011010010001000111111000100011010111111010111100110111011000111101101100110001010101010101010111111011010010001101010110011101111010110100100110000011111001111101110001010000100100000010110010001000001100110010111110110001000011000000010000010101010110000110010100111111100010111011111100101001000000010001110010010000011000111100100101100001101110111011010110110110111111111110110000111101101110111110011111111101111001001101101000111100101100011101101010001011110111101001001100011101100111000110010000011011110001111000000111000111000001111111110100111101101100101111110001001011001101110010001011100000100100100001101100001001011110111000001010111111111001011110000011000000000111011011101011100001101000111100111100101111000110000001111000001011011011001000010000010001011000111001110100011000110100010001010011111001000111001110001110110110111110001100011100000001000101010101011111110001100111111001011110111110100001000010010001000100111000101010010101011101110100100101011001000000111101011010110100001000001000101011001000001101110000111011000101010101100001111010010001010111011111111000010000001101111100010011100001111100000001100100100010010001001110001000001000100110011100100101000110001001100101110011001111100111011011000000001010100000100011001011001010110010001101100011100100100100101000000110010010111011000011111001110001101010101101011110100010011111000011001111001111001010000010010100101001100101111110111111001011011000011111011100011000110000010111000010100001100111111101100101110000100110110010100011000011111011111010000111001000001110100110000111001110011011010011101001011111111100101001011010001010100100101011101100101011010000111011010110110001000011001011011010011000010110100010011011100000010011001010100001011101110111011111101001100000011111101101101101010101001111001101000111110001010100001101001110001111101101000001010011001110111010010010110001110011000000010110000101011100010101101000001111101101100001001000101000011110010000001010011110001100001101010000111011111011000110100101111010100100110011011010001100010011010000110111011011111101110000110101011111011011110001110101101101101000010100110000010111110100111001101001001101000011001001110000111100001111101101000100010000011101010101110110110100000011001111011011001111100111110001110111101001111010110000101110000001101000100001010000100010111100111011100110001010100110010101010010110110000010010010001010110011000000000101000111111000010110110110000111000110110001001101111010011100100101100111010101010111011011001010100000011101010101000010000011100111000011000111010000110000101000111111001100100001001010101110001110001101010001110101101101111111100100000010110101111100111101010001001100011101100010110111010110110100101000100001000011000101101100000010011100001111010101000011011010111111010010010000111111010101111011110100110001101110001000000000010111101111010101101001011101011111001000100011001000110001001110110001101100000101000101111100010000000011100010110011110111000100101011111111110111010110101101111100000000000101000010111111011010110110100100111101110000000111111110101101010000010111011001000000011100010010101010110000010110101110010001110111001000010101011110100000011010111010000110001000001000000011110001010110001101100101010000100101110110111001001001100000010110111111010001010100011110010001100110101110001110111110001001011011110110000110001011000110000010110011110010010111001010100111100110000111000011001010110011010001010101100001011000101100000110001110011110111111001010110001111100000111011111101101101000110111101001101101010011100000101011000000100011101010000010010101010001110110100001110111010101101001011110110110000000000101011101110001101111101110011100101001010000010111000010001010101011111101100111110111100110111010100100111100111001000101101110110100100110000000000110011001010010001010110100010011101111000011110111111101110100101010000000111100011111011110001001111110000000100110010101011111011111110000101101111011101111000000010110010011001010000011011111100010101101010000110010110110010000000110000111111011101000100001000110110000011101010000110001111101100111010110110100110110000011010111000011011011100100011111011100100101110101010011010100010011000011000111010101101010100000111001000111011111101101000001010000100100101101000000010100110010010100001001110000111101110110010101110011101111010110011011111100001011100000100111100000100000010101101110000100100100001001001001110111110001111000101110111001010010011011000100100111001010000001101010010011011010101110011001011100111011011001101110110111011100010110001101000000000011001111011101010010101010011011010010000100010001001010011001001010100101001100110000010010100001101010100101101111011011101111011010011011110001000111000100011111001110110010110100101110110001011011000001001000110111111110001000100100111001001101100100101011101001011010111011001001101100101111010100000011111111101000011001111011001101000110100111110010100011000110010011011010111101000101010110000111000011000001001100011011000011101000100111001100110101011001110101010001111111011010111001000010010110011010101110100010111001110100000011101011001111111001100101011011111100100010010111011010101011000111000010000000111000111110010111111101010001111100010111001010011010010111011000100101100010010000100010001111101101001110110001001101001001001000010101001110000100111111101010000101011001111110101100100100011010111101000010110111100000010110110000101001101100001101110011000011101010101011111101011001000000100111000000010011110110110000000110111000100100100010101101100110010111010101100111010010011100100011101011011000110001000100100000100111110100111001101110000100001111010111010110011001101111100110110001100110100000010111000011000111010100100100010110111111001000101011111111100010100101001010101011001001010110110110111010110111011111111110000001101001000011110101001110000110001110011001100011010011000011010100101101010010011001000000011001101010000011100010010010110011010101101011100010111110011110000110000001000001000101100111010011000101111010100001011010111000010110010110111100100011001111011000000111001011010010111001101011000100111111110100000001110101000100000101110011111101000000111011010001010111011101011110011000011011111111101010111010000111010001101000100010010011001111111000000100001011111111100111011101110001000011110110011100001011110011000001111000110101101001011011011101100000110101010000011001111100100110001111011001100111110111110100101001001001111011110110100001100010100011010101111100110110101001001111011000000111011001010010010011100001000100001011111101010000100011101100011000000100100100011101011111000000011011001000010010001100101011101110111010000110010001110101011001100110010101111000110000001010101110110000000100110111101110000001001110000000011010010111111110001001100111110011111001010100011111010011010011110111101100001010101000001001001110111011001000001110111100111010000001011001001010010010001111000010111011000111111001011011111111010001011011000010010010001111010101010010111000001001100010100001101111111001011101110001100101011110000110101111011000010000011010110101111011011000011000011001011000000010000110101010111111100100000111001001101000111000111101110111100100100011010011100101111111001001111100111100001100010000010011001100001011000101111111110110011010011110111101110110100100110000100011111010010010111101110111000100110000101011101100110100000001001101011010001100010111100100011001011011101100101000011010110011101001001110010100101101000111011110000011111100011000010101110100010110110101001001011100110001101000000001000110000000111110100101011011011001110110011101100011111011101110110110010110001110001101110101111111100111101001111111100111011001011001000001011000101111000011100011011010101010010111000110101111001100011001010110001011000110100000100001100101000101101001001010111100100111111110110111110110001100110100011100101011100011010111010111000111100100110110010010000111111100000101111110100010001011011111100011001000000101110000011100110011011010101011011011100010000100100110000100110000001010000100101100101000100100000111011001101001100111110111011101100101010000111100011100110001111110110111011101000110110000010100001000011001010110100110010010011000101011110110000101011010110010100010100111111000011110010000100100101111101101001111111100111110100110110110111100111110101101001111010110010011101110101011010000111111010011000010010001101100100001011110001001000011110010011100000011010010001101010110001011010100100101011000101101001101011011100111010011111111010101111010100111011110101010000101011100111100000101101101110110011101100100101001111001101001000010010010011010000011100100111001101111010100101000100001101101010101110011001001111000111100001001001100011011001111101100100110011111101111101011000001101100001001000011000010001011011000001111101110111010111010100011100110010001101110001011011010010111101001101111010011111110010100100001111010000110010100111011000011010001011010101010000110000110111001110101001101111011011100100111101110001001010010111010111100011010010000110010110110100001010001001100011100100101001110111011010000011111110010001101101101110101000000100000110000010101010110111100000011100010111010101011100011110010011011011001110100110111100110000011101100111111010111111001100100000001101011000001010000001111000010011111101010011101100000000001111100111111001011110001111011001100101001100101100001000001101010110100100110000100010011001110011100110110110011111110000010001010110110111100111111010110111011000000000100110011111001001100010000000000000010010010010001000000100100101000001011000110111000000101011110011000110011000101011100000100111011001110101100110101111011010001001001000101110010111000000100100100111000110111100000100010000000101100111110010011110001100100001101011100100011101000101010011011111101010111001000110111110011110000000111011001001001110111010001110101110100001010101011110010001001010110000101011101111100010100110010000010000101101100101101000000001100100011010110010100000010111011100000110000011100010100000110001011111011001111000111100010011010011101111010001100000000000000011001001111010011010101101000001111100000011110000000010100001011010010000000010011110001001111010010001011010100001111011010010110111110101011110011000100000111000100100111000110110010100100010010011001001001011111011010010111101001010000111000010011011101110001110110000111000011110110101010100011110000100010110111100001000000110001001100100110101101001000110101001000101011111010000011101100000000000111100101111001110011000010100001100010111100000100111110010001011011111011000010001011000010010100110011110000110101110011110100110110001101111100001010101010110110111011110011110100011011110100111101111101101000010111100010011011100111110000101011000100000010010010000000100110111001011001001110111101010001011111001011100000011000111001111101010001001011111000111101111111010000000001000110110111101000101110110010011111011110101011011100100011011101010011100000101011001010110011011111001000100100100110001101001000111101010110111001101111111010101010001001000110110000101001110110110010110001110000010000000100001110101100100101011010000100100001000111101000010100000101010111000101100010010000000100111001001111111001110010101000010100011110011011110110111100011010110101010110010100111100101110010110110110001001010101110010110010101001111100001101010010111011010001101000000011011111001111110001011110110100110011011101001011001111000110111110001010110000101111101101010000100110000101000000111101000000011000001111001010111100000111110101100101110011110101010110100001101100111001001110100011101110101001010100001000011000101010100001010001111100110101000001000010101100101101010000100100000111101101001011011010000001001010000111010111010110011101001101100110110011011101100010011101000010011000111001110111110110001011000011111110001001010110111100001000010111001100101100011110100100111111101111101010001010010011111001011111101100000111001010011101000000011100001110101111110111011111111100001010110011111000111111101101011010101011011010100011001011000101011000100100010000110000100101100010000101010110100100110010111110011100001101100111011110111100000000100000010100001110011011011011110110010011010011110001111101110010011101100100110001111100010001111111000011010011011101111010010100001001111000011000000110100110100010101101010101010010001110100101110101011111000011100000011111110111001100101000000110011111110110011011001101011110000100011101111010100010000001011111001011010001110000011101000100100111101011000111110110111001111100100000101011001010001110011001100010111000011011011111110001001011001000001000111010111100011100111001001100101001110100000111111101100111011010110110010011001010110001110010010111110101111000101110101010101101010100010010000011100100110101100111000011001110010110010011011101010110100000001011101101101101010110001101010110100010011110101001110101110010001001010101111110001101110100100011010100111001001000100000010000110100101000100110101110110101110100101101000010010011100100101100000101111110111101001101011101110100010010001001101001100111100100100010111101111010001101001000111001011110001010110100110011100101100111101011000011101010110000011011010111001011011111100001110000000001011011101101010111000101011000011011001011000110011000000010001100111001101100000010100011010001010000000010000010000100100010001101001011000011010111111100011101011000000010011111011111010110000100110001101101100111011011101100011101101101100100001100011011000000110111101011011101011001110110010000001111101101000100101111000011001001111110111011001010110001111000100101010110111001100110001111011011001100101111111001100100110001010011000110110111010111111111101100111110111000010100110001001011110110011001100111111110000110000110011000001011111000111011000100001010110000111001001010100110010111100011111110011110010100001111111010011110011000111000010001000000010010111000100111001101110001111110111010111010101111100111111011110001011101010000111001000011001100101111000010011010011100110000000111001100111101001110101100110100111111011111101111110110100001111101110110001111101111100001000010100001100111011011001110100101100111100100110101110010110111000111000010100011011110011001110110011001111001011110111010011110101011010001110101100100000010001111011001111000100110111011110100110001110101000101000111110101111001110110010101011111111000011101111010001010001101011101011011101101111001011010010001001011011010001010011010000001100111000101111100000100100001001011000101010110101000111100100101001111101110011010110101011001110110000011100101000001001100111100100100001001011011010010110001110110011010001000000110101000110111000011100011101001100011010000000011010001010100011100010000101100001011000111100110011111111101110001001100001000100110101011100100100100111010111100011110101100010001101010000001101011001100101101110011011100011111010100010100011001011110010110101110001000111110100111000110111010001111011001000000010110110000001101001110000111011010111100111100101011101001010100000010011100110111111010110011011111001001000101000110100100001000011011011010111000001111010101011000100100101000100001110010111101101110101000010010000011110011101001111010011001001010011110111100001000011111000100001110110101111110110110111111111001011111011101000000011101111111011001001101100000100101111110101010000000000000111001101111111110000001111101101111101000101101100010000000110001111111001000110111011001011010000000101000010001101001000001101110100000000011010101101100001111011111110011001010100011101010010000110101011110111100111100111011111110111100000101101001011011110100010010111011110100101010100001000110011110001111000111101010111000011000110110011010011011000110001110111101001100001001111001001101001000101010001101010101000001110010010110100110010100110110001000010110010001111010001110001111111010110101111001111010000101110001110010001010001100001010100011000101001111110011010000100111011011010110100110001010110011101101111011101001001011110000111011011011010111101110000110111100110101000010100000110100101000010011011010000001101010101011100100110010011010111100011111011111110101001110101101011011010101000011011100111101111110101000000110010001111101011111101110011101111011001100001001011100110011011100110111111011011110000111111010001110111101000000100010011111100101101101010100001111111011100100101000110011100001101110110110110111101111001010000010000000101001010001001111010100111001011010001101011111101011101110010011010111011000010101010011111000011000110011101010110010000011111100000000100001111111000000101010100011100011011111100001011011010100111011010100101010101011100100011000100001000001110011000110000001110110100001110010001110110010111111010010010111110010100100000011100100001011001110100010010011001111110110110111011101001111111100100100011010000001100101111001000100001100111110100101110101011110000101101010111101100011011111111111000100000011110110011100010101001001010110011111011011011010011101000100011100000100110100001111111111000101111111111001110110011001100011001101111011111000101100001101100010110011111100001010011011101111100111001011011110101010100000001000010000001000111110111000011000101001110101011001110011011011110001010110101010111000010100101000100011010010101110010001000010001100110000001001100000000110010001111000100110110111101111101111000110111111010000100111100000011101011111110111000000011011110000101010110010111111000100100111010100001010001111000000101100100110101010011010101110001010101111010100111000101110100111010100001011100011011100011101011100100111010001001100100101000110010001101111000011111100011110010010000011000110111101111100100100001100111101001111010001011100001100101011011110010110000011110101010000111110010100101100000011111011010101101100010000001101111010010101011011000100000010010010010101100011100101100110111111111101001100110111010110011011001111110111100100111111010111011111010110101011010111101011011000100111101000100100011000000111110111110011101000101000111110001001100001100011100011000100111101100111001000101100100011010001101100110100011010010111100100101101001111000110011010000100101101101101011110001100100100110001101101011110111011101110011110011001111011110001101011100010011011010100111100000011001011100110001110100101010100001101000001010001111101011101011000001110111101100110110011000100011011100110010011001011100001010111111110011010010111000010001010100100011000011001101100001100001111010001101110001000111110111101010100101001100111010010001011010110101000011100111101111101100110010001111010111110001010001111001011101011101010101011101000010000100011100101010010011001111110010101000010010100001011110010100000001110110110001001011000001101000110010010110001010001110010111010001100101111000110010100110110111001110110111000010010101110010001011000111110000110101110110000110001111010010001000111110010000111110101101110010111111001100110110111'
R3 = '01100101000001110011001000111000000100111100100101100111000110100000001000110100101010001100011110111011011110110000000000010100111011100100011110001111010001010001000111110000101001101111100101111011101011001101011001010000101110100010100101000011100110001111110101110000000011001011011101000101001110110110000101000011101001010001000011001000001001000111010101010000110000110011101010111010111111010000111001011001110111111010110000100001100100000001101100111111010010010110010111111001110010000000001001000000111101010000001100111000001101001000111111110110011101011010111011100010100101001101010000010101000001101110110010111011100110110001101010001111001001100010101101011001100010110101000001001100001100100100010000101101110001000110101111100110011110111011000100101001100001101000110010010010011100011111001011001110101011010111010111010011011110011101001111101000011110100010110011001011000100000111010110100100100010000000010010111001000010111001101001101100110111010100011000010111011000100100101010101010110101001100100011011000100010010110000100010000100101010111100101000101010111110100101100010000010000101101001110010111110001111011000100101000001100100111001111011010011010010000110100101101101100100010110010000111100101010000101000000101110011000110011110000000100001110011110101001011010000110001110111001101011000111001001011000011111110101110010111011100101110010110110000101001111100000000111000000111011100011011001100010101000011110001100001111011111101010110001100110000011110101111110011100011000000000101100011100010000010010011000001000101111000110000101001100001100010010010010101001011111101010111101110010010110101100110000011110110111111010100001100110000010010000010100101101110111110100011000000011110110101010000101010010110100001010010100101111101010100011100100111111101011100011010101101011111111110001111110110000010011011110110001100100001000110100101001011111000000011011010000101010011100000010011110010010101111011101001001001011100000110011001010101010101101110111011100101010010010111111111001001110011101110101000111001111011010101111000110100110001100001011010011010100011010110100101101100011010100100110111000000010101010100100100000100110101101010010010110000101001110100011100000110110010100111110111001111110100100110011111111010011111001111101010011000100100000111101000100101010000010010000101111000111101110011000010101010000101110010110111010010001011010001010101110010111011111000101000011111101111011000001010100000010011110011010101001001000001101100110000011011100011111110001111011111111111011111010101100001000111011010101011001110001000011111011001111000010010000101100011001011010011010101110011110101110100110111101100000110110101111011011010100101100001111111000111010011011110000110011101010111110000001111010101010110100001100000100001110011110110100001111110000111010100001100111101111110101001111101001100011000110000010001100010011001100011010100000101110000001001101001111001000001110111111101110100000110100110011101000110110010011111000101100101001001111000010010111010000101100111000011011110101111100000110100010001010111110100111010011111111110110011100110001011110110011011001000100011100010101111011110011011110010110101111101001010100010011111000110111111110100011011000100110110010101001011110010101010010000110011110010100011000101111011111010000101101000100110010011001000011000011101011000010110111000000000000011110100111010010100111110101101110011100001001010100011000110111111110000010000000000110011111001010101111110000001110111011000101010100010111101100001110111111000101101100011000111011110101000011111101001001010000001001010101110100001000101010110110101101110110110001001110101001101100110001111101000111011110100111011000111111110011010011110110100000000000111110110011101110011101110101110110101010000010010111000011100001000001100111001101011110111001101111110000100010100000101001011010011101111011010110010011010100001011110110001100011101011101011000101110000001000000011000111111101111111100000100100001011011101000101100010011110011010010111001101011101011001001100001111110001110101001000101010000001011001110110111100000101001011100001001100001111011100111001111110010110010111100100111000011010000000110011101101111011100100010100000101011010111010111000000010000111000010101110111000110011000101010000010011100011001100011011011010111110011101110010001100011110110001010000101100011100011110110100001110000001110110000001111000100001011111011111001110100000010111010100001011101001101111110110001101101010111011100111010010011111010110001001100010111101010100000000111111101001001001001101100101001011011000000011010001100001010000000100110101011100001011101110011011100000111000101101101010010100010110001110011011010010111001001001110000010011011101000010111100001100100100100100011110100110000010010010101000010000010000010000011010011101101111101100001111111001110111010011111000000111111101010011101100100101011101110001111110011011000111100001001000011111000111111001110111000111011100110000001101001100000101111000110110111111101111111101100001010011001011110100110000000001010101001000101101000010111010101010011010101011011011110001101100001000100001010110100000101101100111000111010000100101101001110110100011111100101011001000001000000011001010101111010000111100100101110110101011100010000000111010010100101100010001001110000110111101111010001010011000110100101011000001011110011010011100011010110100111010001110001100001110100100010000001100001011101011100001100000101011100111000111000101111001101010001000001010000000010011100010100001000001101001111101111101110111110110100011110010110010001111001000100000001101011001111001010101110100100111000010111110010100100110100000111110111101000111011101110110100010000111110100000110010110010000110001111110101010110111110011011011010000001001001000011011010101110000001100010000100101111110110000101010111000101110101001100101111110011110010000100110011101011100000011110000011111100000011010111101111110110111110100010010001101001001011010100101010001000010110011001111101011011110101010101011110001000000010011100111111111011101010110100000011011111000001001111111111101000100110001000011011100110111101100101011011100011010110011011000000111100010010000111100001000101010110010101001101011001010100011100100101000100101000111000101110001111100110101000100100000110101000000100100011100110011100111100111100110111110110011101001111111101001100111011110001100010100000000000111111000101001000000100000001100110111001011100101001111010100100000110111101101001000101000100011001111001111011000110100110100011001010011001011001101100000101000110111111000011110110000010101010100011000111100100010010010100111000001110100111011101001001001000001101111001110111101011110000111011001110100001110101100101111000111010101100010001110110000100011110110000100011101000110010010010000011111111110111100110011000110001101100100011111111111110100011111100101110101010011001001011010110010111101000011001000001010010010101011001110001111001010011110101100000001110110110000100011100000011010101010101111001001110001100101111000110100100010101111010010110000001101010000111001001111100101011111001110111110110101010100101100100111110010100011010111100011011111111010110001100000111111111111011111101110110001111001000000000010110110011010101010000000111011111001000011101001010110110001111101101111110000010010111100001110010111100010001000111111000111001010011001110101110110011010100110000011001100111100011100001111011010000001000100100000000000100000010001011011101111000011011011111110010110100101001111110000101110111101110110101100101000001000000100110010101011001011001110110010011101111010100110101111000101011100000010011110001101100111010010101001110111100100100110000111101100001110000011001000101100001011101011101111111100111010110000100100111110011010100001011110111100011011011100011001100001101100101110011010010111101010000010000101011000101000111010111111001111110010110101010001111101110111110000111100101110011000000101100111101110100110000100010101111100111011001110011111110111100010100001000111101000101011101001101010001100011010111100000000001100101111000110101100101001000001000001010100111110001001110001001110000111000011100101110111010000111011001111011110111110101011101101101100100011101011110110101101110011101100001011011101010011001100001111101111101010010110010001000111101010001000100010111111001001111111011001000100000011001010101010011000010011110111110100000101100000011111001000001011000000010110000000000000010001000000101010111010000110100110000011001110111011111001110000111011011001001000100101001000001011100110000000011000110011000111110110000000001101100010100110010100111110100111000111110110011000000111110001111000100000010101000010010010011010110000000101101111110000101110111100011001011001100110100101100110101101100101101000101001110001000000001000111000000110001100001111111110101110110010010000001100001101000001110101111010110001101110101111111010001111101111010111001100101001010100000101101101111010101010111101100000010101001101000001101011010000001111100010010101001110111001100100011010001111110011011111100101000101110110101001000001111010000011111010101100010010010011101001011001000000110000010111001011111000111110110100011110110000011001100000100000010110010110011100111111010100101101111011100111001100111110000111011000110011011010111011011001111000010001001000111111001001101101000100111011101000110001010000100000000101011101110110111101101001100010111111101010101011111110110010101110000110101110000001111100000000101000100010010101000011011000110100001100111101111000000100101010101101100010011111000100111110001111001111111100011011111010110010000001110101001010011000001110110000100110001000010101000001001111011101010111001000000101101001101010011110001111011001110100011000110000110111101000001000101011101111100100011100100000010101011001101000100011001000011011000110110100011001011001011110100101101111000110001111010101000001110101001011111010000000000111111111100000001110111110100101010010001011100111111001111000110011010010010001001011111001100100001100010100100100110010000110001110101111101011110010011010111100000000111010000101011001001010110101111101010000001011010101000011100100000100010011011101111000000001000100000110100001101010010110110010101100111111111100101111010011110011011111010010101001110100101110101001100111001010101000010110110111110100001100111010000101111011100100000011000001110111011101100100001010001110011010111001010000011011101000101000111100011001110101010010100011000001110100101110011101110000010101000110100101110001111101000101101001110001100110101010000111100101110001000001111001101110110101100001101010110011111100111111100010011111000010010000000010110011010011010011000111000010011011101111000101010100010001001000110100111001000110001011100000111010101110011110111100010101011111000011100110111011110001001110100100101000111110001100000010001010000110000101011011101110011101001001001001110110100110001000011000110110000110100001111111001101100000011011001101010100011111111111101011110010100101100001100000010001011110000011000010011000011100001010000011011001111111100111000000011111011101111100111011101101010110000000100001101110111110110110011001111110110010111000011110110011111001101010011010101100011010101111001100011000000011010101111101011001100101110101100001110000110100010001001111011110000111100001010010101110011111010011010110110001011011101011011100110010001001100100110001100111011100100100110000101001110010011001000110110000111011010100011000010111110001000011111011001010101011011000011011000111011110111110010001000110110011101010011001100110011111010101011000110011011010011110100010001000101110010001100100010010101010101001111010000111111011101000111000101110001111100111100001111100111110110010100101110110011001000110000001011011110000010001111101110111110111010011110000111110011111110011110101000101011111001101101010010001111011001101000001001110001000110100110001011101111000011000111100100010100011001000010101100011001101001011000000011100100110001000000111101010011000000000100101010110011001000101000011000100001000111001100111110101100101001101000010110110011001110101001110000000100001101000001100110101001011100101110111010110111101111000011011100010100101010010101111111100101110000011110001111111110100101011101111011111101100001011000001011110100010010100110000110110101111000001111100010101110011111110100010110100110001101110110000101100001100100011011011101100000010111100000111001110110001011001111100100110101110110010100100110011111011000000111001110110100000011110011110111001110110001011110000110010100000110011010010011111010010111000101000101110001101100001111011010110101010110000000010000111010111000101100100001110010110001000011101010101010101010110011011011001010011101101101101010011000110010100011111011000100100000101010011010001001110100011011010111111110110110101101111110010111101011011101010011101001100000101111111101110001000011001001011100010101100110010000001010111011110010010111011000000111111110110011011110000110101100001000011101010001010000001010000000000110001001010101110100100111011001111111100101110110010100000111001111110101110000000100011000110010011011011110011011100001001010101110110111111101011001000111111001111110111010100001000100111110101000111110101101101100000010001101000111001000111000100000100000001110100001101101010110011111001110011000111000011010001011110000000001011101100000110111110100110010000001110001110101100100110001111101001100000110111111001111111011101001110011011101111101001010100100011100010011110101010100011101110100001001010100010000000001001011010110010011001000000110001100101001100010110010001100001110000000100101000100010100000011100111010011000111101101001010111010110110111101111111010011010110000110010111100100101100000001111101101100000100101001010111001100100110000011100100001000101001000000110000110010001100110110101110111010000110101110001011010000011100111010111001101101111000101110101110100110111100111000011000111001010000110010100100011000110000101011101110010100101000110011101010000101100010000111100001101111000010100001001111000111111111100011100001110000010010100000011010100101001000111111100111001010111011111101001011101000100011101101011000000001100110011101100000011111000011001000111010011111011001111001000011000111000100001001110000011100010110100111011101011100101011100100100000100010000001000010100011000110001010010011011101111001101000001101001101000001000100001111100010001111010011110010011001010110100000111001010011011111001100111111011001001001101011101101110010001101110000101000001101110011100000101110111111101111000011111011010100001101000000000110001100101010101011010110011101001101000000001101011110011001010100111101111101101000110100000010011100011101111100110010111001000110000110101100101001101111111010011110000011011110001101101110001111010101101110011001101011101100111010011010010011111111111000011101000000001111111000011110001011011000011010111101000111000000000100001110111011001100101010101000000001111110011011001001101010001110100101011011010011010100110000111001111000111111101100001101010111010011011110011000101011010001111011111110110111001011110101100111010110000100000000101010000111100111100011111110000111110011011110110010001100111111100000001001011001001111010101111000010100011011110001111010001100100110011010111100110011111001111010000110001001101110001000010100100101011111001100011111111101110100110100000000010011010111101101100011110110010100010100111000101100101000100111001101011110001010101101101000110111011000001111100011101011100100010011011011011010000001001001000101001010001100101011010100110011111111101001001010100010111011000101001010000111101111110100111010010010101001011101010111101111000000110101011001101001100001001111000001001101001001100101000100101011001100001111001100010010111110100001011011001100101010000001001111000100111111011010010111101010111110100100001010111111001111110111000110100010111001001011110011101011001011101000111001011000100000100011011111110011100001110001000100101101111110000100100110111111111000011111101010100101001000001100100000101010001101101111010001001010111110100011010001101100001100000110110000101000011010001001100011111000111110000000000101011100000001001011111011000011001001100001100110100101000000100011111100100010001011011110111111011010100110101110011100100111101101100111110011101000110000001011011000000111101011001110100010111100001111101001011001000011101010110110101110101010000010101111000000010100101011111100011100111100001100101010100001001000101110111110101110010110001010110001100110011101111010011000011011010101011000011011011010100001001010011110010111101010010000111010011101011111011000010101001100101110011101110110100101101001100110101010001100011010001110110001100110010010010111000100011101011101111110010101100111000001101101011010110011100010001111110010110111010000110000011110000010000111010110001011000111011001101001111011010101111101100110001110000101110110100111011100100101011001110110111110111000010100110000100101111101011010111110110100111010011000000100011011111100000000001011111110000110100011010001011100001001101011010101000110001010101000010001011011000000100011011110011010100000011110110000001010011010011100101111000111100100110001100010110110101101110100001001001000000011110110011110100111100011110110001101011110000110000111011010100000101110100011010001101110011011100101010101100010110111011111101011001111011010110110100011010110110100010001001000110001011110101011001110000111000101011011001101101010111010010110101101110010011110111001100011100111011100101010111110111010000100101110110010011011011011010100110011000110100101010000110010011110001001110010110000001101111111111001010011110111001011110111000111101001010100011011100110000110000001010100100100011101111110100011111110010000100011101101010011101101110011010100000000111000011110101111110111111011100111001001010110011010010000011111100111000001101111100111101111011001100010011011111111011001111001100100011100101100000111100100010101101001011110100001101000100001010101011010010100011101000000100100011110101111000100001001011100011010011101111000001001111010010111101100111111100011010001000000011000010111001101111100111110110101011101001010011010110111111100110011110000001011010100010000010110010100010010110101011100100010001001101000011000100111100111110111100010101001101001101010000101001110010011010000101011011100111101011101100110010111111010111110001101101111001100101111100001101101111100001001011000111101011001110110000001110100111000111000001101001011100000111010010111000100111000100101101010010010001111001101111000010011010110010100011011011110100001010101010000110010111000011100101011000010111110110010111011101110110011011000010111101100110100010000111000000111110001000100001101000110100001111101110111110110011110101010000111010101101000000010000011011001100001110111000010101001100001100110101000001111100111011110100000111001000110010000000100110011000000111111011100101011110010101111010111110001110110000000110100011000100001011010010011010011101101111011011011010001001000100101101011101011101011001110101010001001111110001110001001010011001011100000000010101101100110110110001010100110001101011000110010000110001000111011100101000000101101100111011010101111001000010101101000000001010110011001010101110010000100001110010111010001110101110100101011101110101110100001100001001111000001010010000101101111110011101011101101001010000010011011111110101011001100010100010111101110001101110110100010101110111001100001111101011111001010101001101001100011111111100101101011011101010111111001000001010010110011111100000011111010101111101011010000001101001110100111111000010001111010110100110000001101000111100010011001010010101000010111010110010100000010010101010101001000001000111101001111111101110001011001001011100011110001100011110110111010100111110010100011111011001001010100001010011010111011001110111101110010110100110001100101000001110000111111000001101011010110010111101110101110101000100100101111110110101000000001011000010110011000001101000011110111000011101001100001001100010100011000101010001111100000011001111000000101101110101011111100100110001011111111101001101000100011110000011111010010001110010010001100101101110100110100010101110110011011101101111001110010011111101011111111101000110101001011000000001110111111011111100111110011011010110000001100000000011110000100111100101011010111011010000111111111101110000001100100111100000001000110100000110011000001111110000110100111001100010110000000111010011010111111100110101010001110100101101110000001101101011001010000010101111110111100000111101000101001001001110000111000110111101000110000001100110001110000011001110011000000010110101111101011110100000001100011000010011011110100111101011101000110001111100011010001111100000010111111111000110111111001111110110001011010000001110101010110111111010101011001001110000011000100101011010011101111110111001011111011001101111010100111010110101100001100100111001011100001000011101100010101011110100001011100110011101011100010111110111001100011010100010011111101100000001010011011000100000101001011101000111010110101010001001000111101101001100111110111111000010100100101001001110011110001011101101000101101000010110101101001010101111100000000111110110100101100110101100011110011000000010011011110001000101101101010111111101101010110000110000001110100000010110011011110100110010000101011111100010011110100110101111010101101001000010101010111110110100011101000100010001100110100011100011011111000100011111111111010100101101000001100101011000101011010000000011010110001010001001110100101100100111110100111000100110000111011101111010010000010000100110001010001111000111101101000110001111011100111111111111110011100000010101100110111111101011111100000111001101010001110111110110001011111010011101100100011110000111001010100001000111111010100101111111101011110110011100001011101000100100000110101100010111010101010111111110000101000101001001111001001110110000000010111100111010000110000100110010011110100110111001000000000010101001101110111100010100001111100000010001100001011110000111001111100010010001100001101111001000000110101100111011100000010011101010101011111010100110011110110110011111110110100000100001111111011011000011011110001100011011101000110100000001110111010010001011110110100110101011110110111010111101100101010001110100110000101111011000000010010100000110100110110011001110101100110100111000000101111100110011010101001000000000111000110100001101001100001011100010100000010100010011001100011101110111111111111101011110111100011111101101101111101001011011000001111000011010110000011000110001000011001001001111110100000101011111111011010101010010001011011011011101011100100101001110000010100001110110110000010010100110001111010101000000001110100000100110010100000111101101011010010011101001110001101100111111110010001001110100110110101111000011111111010111111000001110001101100111001000010101010101100111111011011110101101101110001111101011100111100010010101001111101010010111111101110011000101000100000101111110100101001110100101110110000001111111100111010110000111010011001001100010011100100010101100101101010000011001100011101101110011011000101001101010011001001010100100100000110001101011101101100101000010011101111000111111000110101000101111100011001010101010111011110110101011100111110001100010011001101111110010110010010101000100000001001110001111100101110110100110111000100101110001110010101000110111000000110010011000101001101010100010110001011010000100011000101110011010111001111011101000010000000011100101101101101101101101010110011011101101000100010100001100101000111010101010101011101111110010100000001000100101110011111001111110010101100111000010110111110000010011000100011010100101100000101011111010001111110010101000110010001110111101001111111110010001100000011101100011111000101110000000001110011110110101000000010101000101101001110111001001010010101110000101000010010000000100101001001111100100111010110111010001101111010001010010101100001011010100101100001000011111110000001100011000111110101111111111000110100010001101101000110101111100110000010010100100000101111001001111101100000001011111101100111101110110110000011001000111111011000111010101110000011011010010011000111010101001101011010010011011001000110000011100110001011001010100100110010011110101001000001001101110011110001000010110011010100000010110111100001011001100011111111101100010001000011011000000001001011011111101101000110000111001100100110110110110111011110101110010100010000010110100011000101011101111011010001010011001001000001111010011001101111100110111000011010100111101110010101101111001011000100110011101000010100100000110100010111110001110101111011101100100110111011010111010010100010001011000100011100001101000000101111001011000100110010101111110000001010010100100000010011001011111111111100101011101000110100111000101011011001010101010010101010010110000000011100100110110011101000001010101011101000110000111101111000011101110101110101010100111101101001011011010110111011000101100011001110010110100110111101100011100101000101011110001011001101100001010011001100100110011101100000110001101101110011001000001101110011110101010111100000110000101110010010101101001011011000100011000011101011000100010000000111101110101001010000000101001000111100000111101110011011100010000111110111010110100100001110011100001001100001001011000110111110101101011000101011110000100111011110100111100010000111110100010001011000100111110101010100001001001000011010101000010110111110010100101011000001110000011001111110011100000000011000011101000110111011010010011111000011110011001100000100101000101011101010100011010111101101010010101100011101001101001110111001000010100101010010001111111101000111110101011000111111110011000001001000001111001101010101110001111110001100110001110001011011101011000111010100110010100100010001110101110011100110001010100110000000000101100111000101101001011010010001110110101011000101010111000100101110111001010001101011011101111101110101000001110000100101110011010100010011111101100000100110011010110111001111001001000001101111110001001111001010100001101011001011111100010010100110110001100011100110011110111111110010111100111111010010110100000111110000110100011011001110110011100100110101000011100111100111000011111011100001000001111101111001000010001011011111111011000111111101111111001100100111000101000011010110011110100001011011011101110001100111101000000000111101101100100011100011001110010000000001000001010110100001010011001001110010110010110011010010110101111001100000101010011011000100100101101010000000011000111000111110111100100011000011110010100001100111110011010000111001100110011001000100111000000101111100100001001010110101101000100101110001111001101001011100101001101001100110101000110010110110100000110110010111101000010011010110101000010100101010000100011011100110011011000111001000101001000001111111000001111101000001010011101'
L3 = '01000110111011101001011101001000101001010011110100001000011111011101100010001000001000001010100100010001110110100010010001100000111111010000111110001011101010001001000110101101011010000011001011110100000111101001000001100001001000001001000111110011101010011111011101011100001011100101010001111110100100000100101010001101010011011100101110100101110000101010011111101111000101110011000000101010110001000000000110000111100001001101011111001000001001000011000101000111110000010101001001010010001010001111101001001101101110011011110001111101001010110001000011010100001001111000111100011001011010001100000000011111101101001010100100010001001001010100001100001001011110010001101100001011110110101111100011110100111011001101101100010010101010010000011011101111110101011011110000111001000101101000111100101001001101000010001101000110011101100010101000001010100110000100001010001111111010101010010000101010110011110100001000111011101010001010100010110111101101010111000000010110011011100101011001110100000000110110011110110110000100001111111111101101110110101010010111100000110001010101011101101000010111011101110010111011010111010001000000011001101111111001110111100000101010011110111101110000110001101010111100000111110110010100100101011011101010011111100010000011100101011100100010110011111100110011001111000101111101001100010000100001000000001100011011000010101110010001111100101100101101100110111110001110011001101001001011001001101110100001100100101100111101110101000010111110101011010001001100010101101111100011101111001101001011110100000101001010110000010110000110000100001000101100111100101011101100010100010110100101110100011110110001101100011111000101001000000100111011110000110110101010101010111111010011111101100111100010011000100100101111111111000000000111101000111110011001000011001101101010000000101000010111100111001010110010100001001010001101011110011110100000111100101100001011000100110111000000001101011000111010011010010001011110000110100110001110101000111101100011011011000111000011100111010100000000000010111000111100000101010000101011011000000110100111001100101110000010110100110100101000100110100001011110110000010100011010001000101001001101000011001000001010111010111110001001110100101110111110100110110100101010001100100011100111110111111001100010000001011011010001110100001001100111101000011000100110000111110011001001101111001000110010000110001010010101110000111000010111101010010010001110111101100010001111011110110110011100111110110001001110001010101011100101110011110111000010101001011111100111101000101011101111001100101110110011011011100110001001010110011101010110100111101100100111010100100010001100001001011101111100010101110001101011110111010000110010000100101101111100101101111110001001110101101111101001111101110010110001011100001111000111000110110010001101001011010010000101000101111000110011111111010111100011000001110111100100000100100001101010100111100110110000011111000011111100100011010000000111000001110000010010011011000111011100101100100111001101101111011100000100111110100101100111101011101100011100110101101101001100111010111111100000111010110100011110100000011100001110000011100111001010110100010110000000111101111011110011100111010001100011011111011011001100001010110101000001111010101111001101011111010111001110111111100011010000101100111000101100011110000001001100000111001000100000110001011100000101101010110111100010101111000001111000011000011101001111010110100111100100101001110010111000011001101100111000001010110101000111101110010101011010001110110000000100110011100110100000001010011010100011000010111011001001000110010010010001010010010101101111111000111100001001000010110101100001110101011101010011101101101010111100100101101011110100111101101111110011010011011101001101110100111100010001100011101010011110011111011000111011010001010100011010001001110100110101001001110110000010110010111111100100110101110111100101000001101110101100110101010101100011011100101101010000010100110011101001101000110100010101110000111110011110000011110101010001101011110100100101000000000110010011100111111110011011011111000001101101100000101100011000101100101110000111111001011101111011110011100111110110100001001000010111010100010001101000101110011110010010110001100011111111001000011111111010001011100101011110011000110010011001101001100100001010100010010000101111011000000110010010100100101001010010111000111010000001001011000110001011100110101110000111100101010011101101110000001001110100000110110111010110110011101010010000011101100010001100011011011100000010000100111000011101100101101101011101010010111010010100010100111000011011010001111011000110000011000101010100001011000011100010110010001111111000100010100011011000100111111111010101100011101010010100001000011101000000101111100101110111100111001111010100101111000000101101101100101011001011101111000000000000011100100010110101110010000100111000100110011000010011010111011101000101001011011000100001101001010110011100101000001011101110111110100011100111011001010101101101101011101101001110001000010100000100010111000100111100011101001111110000100111111101101011010101001011001000111001110000010000111000010100101101100010101111000110000100110101110011010011111100111010000001110100011100111001000101001101000101001001101110001011010010001101111000111100101001111110110001101111111100101011010000110111010001110001100011001010011110111001011000001100010110001100111010110110101111011010000110110100011110101101001110111011000100001110000000010110010011001111100101111111101001110011100100111100101010100010100100010110111111011111011011001001100000000110011101101100101111110011110011110100000001101000010000100011110100100101011000100010101110001010110011010000000110111011110110011111110100011111101000011001000010101101111011101011110011111010010001011010010010100010000100000100000001001101100010000001110010101111011111000001011000110000010110111101110000011110011010100001000100001111110110101001000010001111001011110001001111000010101000010000100001011111101000101011011110101000010001111101100111110001000000000100011111100001101111100000010101100100000110110011101010011101110110111010101001101101111001000011100001111001111000010001101010010101111011011100001101101001111011101000000010001110000110110011101100011100011100110110010100000000001101110000001110011000001010000110001000010001001010101100000111111000101111011000001000100100110101100000001010001101111101011010001100000001001001100001011101100100101101111000111000100111101100011011110100101111101110100110001111111101110000000100011101011101010100110101000101100101110001100011011100111110010111011000111011110011000000101101100001110111111000010101100001101100001011111000111010010101111101110111101111001001100101001010111111110001001110001010001101100000011100101010101001001000001100011111110111111011011010111011000110100001110111011001111100110010100100011011111011011001000011010110110110001011100000001101001001111111111100110111110000100010000111111000111101011111010111100110100011001111001111011110100101110001001001110001101000100000101100001101011100111010010000001110101111111111111010100011101111100101100111111010101011011001100110001000101001011110010101110000010011110110100011001110111010111011001000011000110111100001000011001010001000101111111100011000010110010011000010000110111001110100111001010110101010110000000000100110101011000101100101110011000000011110011011100101010110110000011111011011110110000011101000011010011001000110110011010000100101010110100100000000010000100011111010110000011110101101101110000001111100010110110100000100010101111000010110010100001011110001101111000111101111011111001011000111000011001111001100001000011011110101001110111000001000101101101010010110011011100001111001011110101001101100011010100101010000110010100100110000000000001010001011001110110100110100010001010011000010010010010110010111101111001110101011001001001000011101110010011010010001111110010100111001010101000100111110010001110001101100010111000100111001000010110100001011001000001011010001011111110010110000000110110110110010101111110011111101001110010011010110001110100111101110001010011001111001111001111101000000111011111000111000110010100010100011011101100101010010011000110111110100011011001010011000110001111100011100000011001101101010011111110101001111101101000000110111010100011110000000100001000011011111111010001010100001100000100110100100101011111101100001011110111011010001111101111000111000100000010100010111001000011001100001011011100111110011111111110010010011011000101101010101100011100100000111110100101111111000011010101101101010011001000010100000001111000000011011110001001010011000100100101110011101001110110001000100000010111000010001110110000000101001110101111100111011000100011110011110101101000000001001111111111111010101110111100000011000011101110011100010110000100001110001101100000000001010000000110001001100101000000110111100111110010010011100110010100000011010011110111100000111011000110000000011011011110110110001001011010110010101110010111001111001111001001010011101011111110110010110000001001110111001111100101001001010101010111001011110111001101110100011101111001010010010000010110101100111010110011010111001111010011010001110101001110100011010010110111010010101101010001111100110101111010111111111010110110010101010001011101001000100101011011010111001000100010111000011001111010110010001111101010101010100110100100010010101000010000010101111111110101000111010111000011010000111001111101111110011000001000111110010100110101011011101011101110011100010001001110001111111100001000011100101001100100011010010111101100110010110110001001010001110100011000000100100000100100110011010001111010001111011001001011101010110111101111100001100000010110111100100010101101100010000101001001011010100010001000000001111101010001010111101000101100011001010111001100100011000000001000010101011010110100101110000100011001101000000100100111011101101011110001110100100100101001101111110010000100001010100001011001000111010101001101101100001010011111001000010010110011100001010111010011100000101101000111110111110111000110110011010110110100010011000100011110011010010011110101100010000111001001100010100111101110000110110000010001110011000101110110100111001000100000010000101011010101000110110101001000001001111110000111010011100011010011110000110011101100010101010111001010110111001010000010010111101011001000111101110010001001101100000110001101100000000011011001100011101111000100010000100111010111101011100001100101110011110111111101011001011100100001101100010000000111101110001001001010011111000010100000011001111100000011000011110001001111011110100111100111000101001100110000001100111110111001100001011110100001011110111101011110000000000001001111010010100011101111100111110101100011100111110111001101001110101110001110001000110111100011110111011100011000111111000100100010101110001110010011110010001010011010101110000011111000000010011010011000001001000010110110101011010011000111111001111011011101010110110000100111101001110011101111011100110001111010101001000100110011000011101101111101101110110001101101100001110101110111001000001000101111000000001100110011111010111000111110011011011101101000111101110100010110000101010001111000111100100110000100101000010100010100000111111001110101111100010001010010001001010001101100100000001010111101111101101010100001111001011100000001101101011010000010111001010101001111100110100100110100110001110110000100110000000110010110001010010111011101010001010101010011000001001011110111001001111100111010100001011011111101000001111001010110110111101000100010000110000111110111001100000000011100010110110101110000101001011110101011110100001010001111011011110101001100011000010110011101010010110001001011010010100001101101101110101100000100000111011001000011110011110101011101101000100010010111100111110110011101110111001111110101011010000111011100010111000001110110101000011000011101001111010011111100001000011000010011010000011100101001111010000100111101001011111111101100011000000110100001001111101010101000011011001001100110010010111110011101001001111100011010001010110011111100110010001100000111100101111011010011101011100001101010100011101001110100111101010111110110000010011010000100011010101111001101100010011000011001110111011000010001010001011000011100001001001110110001100010010110101110010110110010110001100111101011010100010000111010111110101100001101000100000000110101011011001111101001001101011000100110001101000011010011110101111010110111111110001101001111100000001110101111100000100010000100111110011111101000010111011111001111001101010010010011001001010111101111111000101100000010101001001101010100110000011100111001001101000001100001001100001001110011000011010110010011101101101110111101111001100110111101111101100100000000011001111100000011011001010010111101000001111111110101100001000101100011001100010010110111000011111110001001111110000100100110010000001110001100000110101001111100110010000100100100000111100010011100001010110001101010110000111100011110101000110110010101001110010110100000011101110010100010111110001100011111110000011001011111011101000100001000101001011000101010000001010000001010100100011110110101011111010000011111010100000001011101011010110111110101000010111001111000010100111100110101111111111101110000111111001000100110111010110111101001101010101100111101001011000010111000110101110100011101010110010111101101000101110011010100000011010011001111010110110111111100110111111101011100001111000011011010101010011010001000000011111101011111110101001011101111010001100101101010110110000111100101010111001101111110011111110111101111001001110000001100101011001011000111100110011111100001111111101101100001001000000101011101001000111011000001011101000010111111001011111110110010110011110110100101001000010010110011100010101001100001011010010000000101011011011100001100000001101000111101101000110111011111010110110110101001100111110000111111110101111001111101101100010000111101100101011101101110111100001000110101110010100001110000101001011101001010100111111100100010101100100000010010011100111111000101011111011111101011011111111101110100010010111010001000100100001001001101100111100111100100010101100000001110010000111011011011001111010100010100000000000000000010101101010101000100010101100110111111101011011001010110111001001100010101101011111111010011100011111010001101110110000001100100011001111001001111011010101111100111010101101000111110110010011000110011000110101111011101000000110101000101110111101101110010000010010111001010100110011010101100101000100110111100111100010011100001010110001010001011101111100011001111110101000011001010010100011110000100100001011010011111011110011100010111100001111011111000110011111010110110110100011111111110100110001111010010000100101100100100011101111100011000011001011001000110111000111100111110000000000111110101100110111010010011000001010011010001000111110010110111111010001000011100011001010101010001011001000101101011111111101100110010010011010011111110000101110000110001101001001001010100101101110100101000100100010000001000011000110001001110100100101101001100000111000001001001110101010010001011101101011101101001101110011001011000001111001101000010001100000000101010101101101000011101011010001001100110000100011100110011100101110010010101011101100010010101001110101110111111001111000011101110111000110110111010110111110010101101010100001101110110011010110101101010001011111111000000010100110111011110101110010000011000101101100000000011001101010111111110100001110001110111111110100000110110001101000001100010110111010100001110100101000110011111010000000010000100111100011110111111100011010010110100101100101110001010110100010110010000110001011101011001110001110011011100100100110101011011101110100100100001111110101100101100011000011000100010111000110111010010001001101011011001110001100101101010010101100111100111011111100100000111000101001011111001010011101001111011011010011111110001101101010110111010001010011001111110111000010000101110010110101101100000101000000010000101100001101101011000000110101001011011011011001101010101011000010111001011111100110010010000000111101111110101010100100010001110010100011011111001111111110110010101010100111000000100001000110011111011111010001111010000101001101110011010100110001111010101001100000111010101100100011000011101100110010010000001011001110000100000110101011011111000110100111000001000100001111110010111100011010010110100001000110011010001001010011101001001111100111110000000100011111001001010011101010000110001111100100100101101100111100101101110001011101001001011111010001101000110111110001111100001010011101110000101110101011110010100111101101011001101010000100110100000100111010110010110000000100101111100101111000011010111110111110100110000100001010001100101000000011101101010111001000101111111000110111101001001000001011110101100001111000101011111000110011110110101101101100010101111101000110101100010001101110011100100111110011111011010100100110001010000101111100000010110100110000111111101100101010111010111110000011000110011111101100011100100100001101000110000001010101111011111001000000101111101111000101000100100001011100001000100000101111001110001001111001010100011110100001100001001010111011001000010101010110110110110000100011000000111100110101000101101001001110111011001110101011110100111010101010100000100010111100010111100101100010100111000011001101110011000001101011110000101010001101011101111101000011010110010000010100111101011010110010101010010110100110101001001000011111100110010111001011011010101100110011001010101010100001111110111010010100110100000001010011011001111001100001001101110101001001000010101001101000001001111000000100010100110101100111101110011111100101001000011110001011000110110000100111110001111001111000001101101101101010010000000110010010110001101110101100111110000100100011011110001011001001111100110110110100110011000100011001010110011110000000100111101100110110000100111011111100001001110101100110010111011010101101001101101101000101001011001010111001000011011101111001100011000011011110111111011110110110000110101010011101111100011000101010010000010100010100001011010001001011011101011000110111000011110111101110010100011010011001100000010101011010100000001111110110110001011001000000101000001000111010000001011111110100101011100110101111010101001101011101010101101011001011011001010111111010101100100101011000101011010001111000101000110111000111111000111000111100101010000110000101110010010010000101101010010001001011100110111000110011100101010100001100000100110001011011111000000110111100111100111100100000101100110100101001010010011001010010001010110100101011011101000101111000011100100110011110001100001001010100001110111111110100101001000101011111100101101010001111001101000110000100101101001100000001001111010101010001000001001101010010100101000110111100011110001100110110010110001101010011011011001010001101110001010001100010101000111101100010010110010101010011110011110110000101011110110010101110110110010111110001000100010001010100110100111010100100101010011011101000101110110110111111011010000000001011011001101111010100111101001010001110100110111010001100101110110100001100111001010001110101101010100010011110111111110000101111011101000001001111101111110100011011100100000010010111111011110011011101111101010000100001010001110010110110111011111111111010111101111011001100111100001111010001101001110001010110110000011000011100001000110001110001100111110000010101010111111010000100011001100111110111001011011011100111001000110000011011001101011111001000011100000110100101001101010100000001010010101110110000110011110110101111010111101000011110011001101110001111101000001001010101001110011111000000010011101100100101011010101000000000110000000001011000011000010011101010001100110101111110101010111110000110110000010100101001101100100000101000001001111110101100000001100111011011001110011100000101110010010111101110111100111101010101100011110000100101001010000110110000110010000110111101110010010010101010110000100110001101100011101000110000111000011111111010000000110000110101000000001101000111101011011111100110010000111000110001011110110100011111100100100001011100100110111001000100100010111100011110010100101001001101110101101110011001100100011001101000010011110110010001110101001101001000111000110000011111110000111100011010001110000010000111111001110111000110010001000000010100111000100001001010010001011101001101011111110111101000011100100001101111010010010101011110100110010100001000101111011110111011110001010011111010111001001100001101000110000100100011001110010011001100101111111011010100101000010010110111010010111111001001000111000101000011001101011100101100000100100111111111110011001110010101101001101000010000110111111001110000110010000100011111000000010111111011001110011101111101011111111111111100010111101111000101101100111001001010110100111111100010001000000101110100011000111111111010000100010001100010011100001110110101011100001011101001010111001110101101000000110000111101011000101111101110011101111111000010000100111001100010100011111011110001001100000110011101001111011101011000011011011110100010010000111011011100100001111010110001000001101000100100011001001010011101010001010100010110110111010101100110100101010011101110101100100000100001111111010010100001101001001000010110110000100110111000000001111010111100000011011010111011000100011001001110001111001011001101011101110010100111111111000111100001010101001101110000100111101110101110101001011000000101100001110001011010000101100111010111100100101111011001111100010100010101101101000011000010101100111101011111101010111001010101001000110000101100010010101101111110000000010110001001100010100001010010101011111111101011100100100001100101000110000101010010100110010010110011100111000010101111000100100110010000001101110000111000000001111010111111011101001001011100100001110000100011001010100111010011001110110111110101011101100100000101110000100111001101001010010100000110001011001011101000101110011010110101101001101001011101101101100111011001101110110111000100110000110001000101011010111010111111001100001001011010000010010110000000010111101000111100011111000100111100010100101101110101111111101001010111100111101000111101111111111110001101000111101110000011000001100010000101111010101101011100011111010010011111100110000001110111111010001001010100010001100101010101101100100011010100111100010000111111111101101010110101000111011111100111001100110010010001001101001111110101101111000011001010001000110101010100100111101001001101110111110100010100111111100011111111000010000010010100010011011101010000101010100111110111101101011110000001111001110001111010000100011001011111011110111001001011011110001101000001100100011100111011110100110001101001111011011001111100101001111100100000000101111110000010110110000101001000011100011110101100001100011010111111010011001010011000000010011110100111011100111111100100000111010100000001001101001100111111110111111011010100011100001110011010011100001000111010110100111001011010011010010001111100011111011101011100101101000100100100000110100010111011100111011110011011100100011100010011110000011011000001110110001101110111100111101101101001001011100101001110001000100010110110010110001110110000101100111000110100100011111100010001110111100011001110010100111010011101010100101110110101000111101011110011110010010101110101000100010100100111100000011011010011111010110011001000101011101110101000010000111001101110001000100010010010000100011100100100110110101100011001010110001101111100101001111000001010000111010100001001111010010001000100111010101111100010000100101110010010110100010100000100111101100100010010011100110000101011000001010011010111011010011101010010111101001110001001010100110001110001001100010100111110011101100011010010001011110111101011001110010100111011000101010111101111001010000110000100110011101110100110010100101001011111000001111001110100001101110011011010110011010011101000011000000111011101110001101100100010100100110000010010010101101111100001010110010010001001001100011111111000100011011111111011100101011001010010011111111100111111011100001001000110000101000100010101001000101010111001000110011111000111011010000100001000100111000001000111001011011001101000110101110001111001111111010001100010011011101111101011010011000001110011110000011000100100010100100011011001101001110011110001010000101010011110011111000000100011110000010010001000001000110111111111001010101010101010001101010101001010011011010010001000101110011110000000011001000010000110111110010000000000001010000001000111110100101110000011110101010101111101011101110101101111000111001011111010001010000000000111100000011110010000010001010111010111001100100110001010010000101010001111101110010110001111011110001101111011100100000101101000101000000010010000000110110101101111011000000001101111110111010111110100100011010111101010000101110010110101010100100010110111111101000010001111001111001100101100101110000101111100011011010010100100111001100110100001100000111011111001000010111100110111101111001110100011001100010001101010100011001011000111010111011011110011001010001100100010111011111010000110011110101000110010011110101001000100111001001111110001000001101110111110110100111110011111010010001011010010111101101001011101100010000101110110001100011011111111011000000010011010101100000000010000100111010111110010101100100001110111101010110110110010100010110001010101001110110011000101101100110010011010101001001100111101000100000000000110101111000010100010101111111011110111111100010011100111010101100001011000111011000110011100010110100010101010101110000101100100100100001011110011110001000011111001000111111010111101111100111000000100000111100001011000100100101111001100001000000011111010110111000101000111101100001110111111010001010000001011111101101100010000011111100111000010101110001110010100010001010100110010000100010110101000100101100101010001010110100100011111111100000110110101100000000110001000011110111001101100110010110011101000110001010110010000101011101101010011011001011001111010010110000000111010001000001000010011010011100111101011001110101010001110011000010111000100101000100010100011000001000001001010010111001101001100111000011100100010101111111110110111111011001011110011011010000001100001111001110100100101110010111111000000111100110101011011011001101111011011011101100001100111010011111001001111011000000011001000100100110011011000110001010111100011100000111100101000101100011011111100100000010010001110010111101100100011100111001110111111011110011011100101000101111101010010100110000101000110001110001010000000011000101110110000100111100000110111010101000110100010010000011111001000001010010100101011001101001011010011111011010000011011111010000111101100010000101010101100000101010011100010111110011111110010110011110000101110011001101011101110000100011111111101101111000001001011110101000001010010010100100000100001000000100100001111100001101100010010000110110010000010100011001110001101110010101111111001101100001100110000110010110011101101001110100100111110110110111111011011011001110000100101111010100011110101011010011001001011111010001001100010100010010101110010101101001011'

L1 = int(R3, 2) ^ int(K1, 2) ^ int(K2, 2)
R1 = int(L3, 2) ^ int(K1, 2) ^ L1

L4 = binascii.unhexlify('%x' % L1)
R4 = binascii.unhexlify('%x' % R1)

plaintext = binascii.unhexlify(L4 + R4)
print plaintext

実行結果は以下の通り。

33D32945 STP File, STP Format Version 1.0
SECTION Comment
Name "3k{almost_done_shizzle_up_my_nizzle}"
END

SECTION Graph
Nodes 144
Edges 116
E 1 2 1
E 2 3 1
E 3 5 1
E 4 5 1
E 6 8 1
E 7 8 1
E 8 9 1
E 8 10 1
E 11 12 1
E 13 14 1
E 13 15 1
E 15 16 1
E 14 16 1
E 15 17 1
E 18 20 1
E 19 20 1
E 20 21 1
E 22 23 1
E 23 24 1
E 24 25 1
E 25 26 1
E 27 28 1
E 28 29 1
E 29 30 1
E 30 31 1
E 32 33 1
E 33 34 1
E 34 35 1
E 36 37 1
E 36 38 1
E 38 39 1
E 38 40 1
E 40 41 1
E 42 43 1
E 44 45 1
E 44 46 1
E 46 47 1
E 46 48 1
E 49 50 1
E 49 51 1
E 50 52 1
E 51 53 1
E 53 54 1
E 52 54 1
E 55 56 1
E 57 58 1
E 57 59 1
E 59 60 1
E 61 62 1
E 60 62 1
E 63 65 1
E 64 66 1
E 65 66 1
E 65 67 1
E 66 68 1
E 69 70 1
E 70 71 1
E 70 72 1
E 72 74 1
E 73 74 1
E 74 75 1
E 76 77 1
E 77 78 1
E 78 79 1
E 79 80 1
E 81 82 1
E 82 83 1
E 83 84 1
E 84 85 1
E 86 87 1
E 87 88 1
E 88 89 1
E 90 91 1
E 90 92 1
E 92 93 1
E 92 94 1
E 94 95 1
E 96 97 1
E 98 101 1
E 99 101 1
E 98 100 1
E 99 102 1
E 100 103 1
E 102 104 1
E 105 107 1
E 106 107 1
E 107 108 1
E 109 110 1
E 111 113 1
E 111 114 1
E 112 115 1
E 113 116 1
E 114 117 1
E 115 117 1
E 118 119 1
E 119 120 1
E 119 121 1
E 121 123 1
E 122 123 1
E 123 124 1
E 125 126 1
E 126 127 1
E 127 128 1
E 128 129 1
E 130 131 1
E 131 132 1
E 132 133 1
E 133 134 1
E 135 136 1
E 136 137 1
E 137 138 1
E 139 140 1
E 139 141 1
E 141 142 1
E 141 143 1
E 143 144 1
END

SECTION Coordinates
DD 1 5 5
DD 2 55 5
DD 3 5 55
DD 4 5 105
DD 5 55 105
DD 6 65 5
DD 7 115 5
DD 8 65 55
DD 9 65 105
DD 10 115 105
DD 11 125 55
DD 12 175 55
DD 13 185 5
DD 14 235 5
DD 15 185 55
DD 16 235 55
DD 17 185 105
DD 18 245 5
DD 19 295 5
DD 20 270 55
DD 21 270 105
DD 22 355 5
DD 23 405 5
DD 24 380 55
DD 25 355 105
DD 26 405 105
DD 27 415 5
DD 28 465 5
DD 29 440 55
DD 30 415 105
DD 31 455 105
DD 32 475 5
DD 33 475 55
DD 34 475 105
DD 35 525 105
DD 36 535 5
DD 37 585 5
DD 38 535 55
DD 39 585 55
DD 40 535 105
DD 41 585 105
DD 42 595 105
DD 43 645 105
DD 44 655 5
DD 45 705 5
DD 46 655 55
DD 47 705 55
DD 48 655 105
DD 49 715 5
DD 50 765 5
DD 51 715 55
DD 52 765 55
DD 53 715 105
DD 54 765 105
DD 55 775 105
DD 56 825 105
DD 57 835 5
DD 58 885 5
DD 59 835 55
DD 60 885 55
DD 61 835 105
DD 62 885 105
DD 63 895 5
DD 64 945 5
DD 65 895 55
DD 66 945 55
DD 67 895 105
DD 68 945 105
DD 69 955 5
DD 70 980 5
DD 71 1005 5
DD 72 980 55
DD 73 955 105
DD 74 980 105
DD 75 1005 105
DD 76 1015 5
DD 77 1065 5
DD 78 1040 55
DD 79 1015 105
DD 80 1065 105
DD 81 1075 5
DD 82 1125 5
DD 83 1100 55
DD 84 1075 105
DD 85 1125 105
DD 86 1135 5
DD 87 1135 55
DD 88 1135 105
DD 89 1185 105
DD 90 1195 5
DD 91 1245 5
DD 92 1195 55
DD 93 1245 55
DD 94 1195 105
DD 95 1245 105
DD 96 1255 105
DD 97 1305 105
DD 98 1315 5
DD 99 1365 5
DD 100 1315 55
DD 101 1340 55
DD 102 1365 55
DD 103 1315 55
DD 104 1365 105
DD 105 1375 5
DD 106 1425 5
DD 107 1400 55
DD 108 1400 105
DD 109 1435 105
DD 110 1485 105
DD 111 1495 5
DD 112 1545 5
DD 113 1495 5
DD 114 1520 55
DD 115 1545 55
DD 116 1495 105
DD 117 1545 105
DD 118 1555 105
DD 119 1580 5
DD 120 1605 5
DD 121 1580 55
DD 122 1555 105
DD 123 1580 105
DD 124 1605 105
DD 125 1615 5
DD 126 1665 5
DD 127 1640 5
DD 128 1615 105
DD 129 1665 105
DD 130 1675 5
DD 131 1725 5
DD 132 1700 55
DD 133 1675 105
DD 134 1725 105
DD 135 1735 5
DD 136 1735 55
DD 137 1735 105
DD 138 1785 105
DD 139 1795 5
DD 140 1845 5
DD 141 1795 55
DD 142 1845 55
DD 143 1795 105
DD 144 1845 105
END

EOF
3k{almost_done_shizzle_up_my_nizzle}