Files
horse/horse/global/character.kk

549 lines
591 KiB
Plaintext

module horse/global/character
// Automatically generated with horsegen; DO NOT EDIT
import std/core/vector
import std/core-extras
// Character identity.
pub type character
Special-Week
Silence-Suzuka
Tokai-Teio
Maruzensky
Fuji-Kiseki
Oguri-Cap
Gold-Ship
Vodka
Daiwa-Scarlet
Taiki-Shuttle
Grass-Wonder
Hishi-Amazon
Mejiro-McQueen
El-Condor-Pasa
TM-Opera-O
Narita-Brian
Symboli-Rudolf
Air-Groove
Agnes-Digital
Seiun-Sky
Fine-Motion
Biwa-Hayahide
Mayano-Top-Gun
Manhattan-Cafe
Mihono-Bourbon
Mejiro-Ryan
Hishi-Akebono
Rice-Shower
Agnes-Tachyon
Admire-Vega
Inari-One
Winning-Ticket
Eishin-Flash
Curren-Chan
Kawakami-Princess
Gold-City
Sakura-Bakushin-O
Sweep-Tosho
Super-Creek
Smart-Falcon
Tosen-Jordan
Narita-Taishin
Nishino-Flower
Haru-Urara
Matikanefukukitaru
Meisho-Doto
Mejiro-Dober
Nice-Nature
King-Halo
// The list of all characters in order by ID, for easy iterating.
pub val character/all = [
Special-Week,
Silence-Suzuka,
Tokai-Teio,
Maruzensky,
Fuji-Kiseki,
Oguri-Cap,
Gold-Ship,
Vodka,
Daiwa-Scarlet,
Taiki-Shuttle,
Grass-Wonder,
Hishi-Amazon,
Mejiro-McQueen,
El-Condor-Pasa,
TM-Opera-O,
Narita-Brian,
Symboli-Rudolf,
Air-Groove,
Agnes-Digital,
Seiun-Sky,
Fine-Motion,
Biwa-Hayahide,
Mayano-Top-Gun,
Manhattan-Cafe,
Mihono-Bourbon,
Mejiro-Ryan,
Hishi-Akebono,
Rice-Shower,
Agnes-Tachyon,
Admire-Vega,
Inari-One,
Winning-Ticket,
Eishin-Flash,
Curren-Chan,
Kawakami-Princess,
Gold-City,
Sakura-Bakushin-O,
Sweep-Tosho,
Super-Creek,
Smart-Falcon,
Tosen-Jordan,
Narita-Taishin,
Nishino-Flower,
Haru-Urara,
Matikanefukukitaru,
Meisho-Doto,
Mejiro-Dober,
Nice-Nature,
King-Halo,
]
// Get the character for a character ID.
// Generally, these are four digit numbers in the range 1000-1999.
pub fun character/from-id(id: int): maybe<character>
match id
1001 -> Just(Special-Week)
1002 -> Just(Silence-Suzuka)
1003 -> Just(Tokai-Teio)
1004 -> Just(Maruzensky)
1005 -> Just(Fuji-Kiseki)
1006 -> Just(Oguri-Cap)
1007 -> Just(Gold-Ship)
1008 -> Just(Vodka)
1009 -> Just(Daiwa-Scarlet)
1010 -> Just(Taiki-Shuttle)
1011 -> Just(Grass-Wonder)
1012 -> Just(Hishi-Amazon)
1013 -> Just(Mejiro-McQueen)
1014 -> Just(El-Condor-Pasa)
1015 -> Just(TM-Opera-O)
1016 -> Just(Narita-Brian)
1017 -> Just(Symboli-Rudolf)
1018 -> Just(Air-Groove)
1019 -> Just(Agnes-Digital)
1020 -> Just(Seiun-Sky)
1022 -> Just(Fine-Motion)
1023 -> Just(Biwa-Hayahide)
1024 -> Just(Mayano-Top-Gun)
1025 -> Just(Manhattan-Cafe)
1026 -> Just(Mihono-Bourbon)
1027 -> Just(Mejiro-Ryan)
1028 -> Just(Hishi-Akebono)
1030 -> Just(Rice-Shower)
1032 -> Just(Agnes-Tachyon)
1033 -> Just(Admire-Vega)
1034 -> Just(Inari-One)
1035 -> Just(Winning-Ticket)
1037 -> Just(Eishin-Flash)
1038 -> Just(Curren-Chan)
1039 -> Just(Kawakami-Princess)
1040 -> Just(Gold-City)
1041 -> Just(Sakura-Bakushin-O)
1044 -> Just(Sweep-Tosho)
1045 -> Just(Super-Creek)
1046 -> Just(Smart-Falcon)
1048 -> Just(Tosen-Jordan)
1050 -> Just(Narita-Taishin)
1051 -> Just(Nishino-Flower)
1052 -> Just(Haru-Urara)
1056 -> Just(Matikanefukukitaru)
1058 -> Just(Meisho-Doto)
1059 -> Just(Mejiro-Dober)
1060 -> Just(Nice-Nature)
1061 -> Just(King-Halo)
_ -> Nothing
// Get the ID for a character.
pub fun character/character-id(c: character): int
match c
Special-Week -> 1001
Silence-Suzuka -> 1002
Tokai-Teio -> 1003
Maruzensky -> 1004
Fuji-Kiseki -> 1005
Oguri-Cap -> 1006
Gold-Ship -> 1007
Vodka -> 1008
Daiwa-Scarlet -> 1009
Taiki-Shuttle -> 1010
Grass-Wonder -> 1011
Hishi-Amazon -> 1012
Mejiro-McQueen -> 1013
El-Condor-Pasa -> 1014
TM-Opera-O -> 1015
Narita-Brian -> 1016
Symboli-Rudolf -> 1017
Air-Groove -> 1018
Agnes-Digital -> 1019
Seiun-Sky -> 1020
Fine-Motion -> 1022
Biwa-Hayahide -> 1023
Mayano-Top-Gun -> 1024
Manhattan-Cafe -> 1025
Mihono-Bourbon -> 1026
Mejiro-Ryan -> 1027
Hishi-Akebono -> 1028
Rice-Shower -> 1030
Agnes-Tachyon -> 1032
Admire-Vega -> 1033
Inari-One -> 1034
Winning-Ticket -> 1035
Eishin-Flash -> 1037
Curren-Chan -> 1038
Kawakami-Princess -> 1039
Gold-City -> 1040
Sakura-Bakushin-O -> 1041
Sweep-Tosho -> 1044
Super-Creek -> 1045
Smart-Falcon -> 1046
Tosen-Jordan -> 1048
Narita-Taishin -> 1050
Nishino-Flower -> 1051
Haru-Urara -> 1052
Matikanefukukitaru -> 1056
Meisho-Doto -> 1058
Mejiro-Dober -> 1059
Nice-Nature -> 1060
King-Halo -> 1061
// Get the name of a character.
pub fun character/show(c: character): string
match c
Special-Week -> "Special Week"
Silence-Suzuka -> "Silence Suzuka"
Tokai-Teio -> "Tokai Teio"
Maruzensky -> "Maruzensky"
Fuji-Kiseki -> "Fuji Kiseki"
Oguri-Cap -> "Oguri Cap"
Gold-Ship -> "Gold Ship"
Vodka -> "Vodka"
Daiwa-Scarlet -> "Daiwa Scarlet"
Taiki-Shuttle -> "Taiki Shuttle"
Grass-Wonder -> "Grass Wonder"
Hishi-Amazon -> "Hishi Amazon"
Mejiro-McQueen -> "Mejiro McQueen"
El-Condor-Pasa -> "El Condor Pasa"
TM-Opera-O -> "T.M. Opera O"
Narita-Brian -> "Narita Brian"
Symboli-Rudolf -> "Symboli Rudolf"
Air-Groove -> "Air Groove"
Agnes-Digital -> "Agnes Digital"
Seiun-Sky -> "Seiun Sky"
Fine-Motion -> "Fine Motion"
Biwa-Hayahide -> "Biwa Hayahide"
Mayano-Top-Gun -> "Mayano Top Gun"
Manhattan-Cafe -> "Manhattan Cafe"
Mihono-Bourbon -> "Mihono Bourbon"
Mejiro-Ryan -> "Mejiro Ryan"
Hishi-Akebono -> "Hishi Akebono"
Rice-Shower -> "Rice Shower"
Agnes-Tachyon -> "Agnes Tachyon"
Admire-Vega -> "Admire Vega"
Inari-One -> "Inari One"
Winning-Ticket -> "Winning Ticket"
Eishin-Flash -> "Eishin Flash"
Curren-Chan -> "Curren Chan"
Kawakami-Princess -> "Kawakami Princess"
Gold-City -> "Gold City"
Sakura-Bakushin-O -> "Sakura Bakushin O"
Sweep-Tosho -> "Sweep Tosho"
Super-Creek -> "Super Creek"
Smart-Falcon -> "Smart Falcon"
Tosen-Jordan -> "Tosen Jordan"
Narita-Taishin -> "Narita Taishin"
Nishino-Flower -> "Nishino Flower"
Haru-Urara -> "Haru Urara"
Matikanefukukitaru -> "Matikanefukukitaru"
Meisho-Doto -> "Meisho Doto"
Mejiro-Dober -> "Mejiro Dober"
Nice-Nature -> "Nice Nature"
King-Halo -> "King Halo"
// Compare two characters.
pub fip fun character/order2(a: character, b: character): order2<character>
match (a, b)
(Special-Week, Special-Week) -> Eq2(Special-Week)
(Special-Week, b') -> Lt2(Special-Week, b')
(a', Special-Week) -> Gt2(Special-Week, a')
(Silence-Suzuka, Silence-Suzuka) -> Eq2(Silence-Suzuka)
(Silence-Suzuka, b') -> Lt2(Silence-Suzuka, b')
(a', Silence-Suzuka) -> Gt2(Silence-Suzuka, a')
(Tokai-Teio, Tokai-Teio) -> Eq2(Tokai-Teio)
(Tokai-Teio, b') -> Lt2(Tokai-Teio, b')
(a', Tokai-Teio) -> Gt2(Tokai-Teio, a')
(Maruzensky, Maruzensky) -> Eq2(Maruzensky)
(Maruzensky, b') -> Lt2(Maruzensky, b')
(a', Maruzensky) -> Gt2(Maruzensky, a')
(Fuji-Kiseki, Fuji-Kiseki) -> Eq2(Fuji-Kiseki)
(Fuji-Kiseki, b') -> Lt2(Fuji-Kiseki, b')
(a', Fuji-Kiseki) -> Gt2(Fuji-Kiseki, a')
(Oguri-Cap, Oguri-Cap) -> Eq2(Oguri-Cap)
(Oguri-Cap, b') -> Lt2(Oguri-Cap, b')
(a', Oguri-Cap) -> Gt2(Oguri-Cap, a')
(Gold-Ship, Gold-Ship) -> Eq2(Gold-Ship)
(Gold-Ship, b') -> Lt2(Gold-Ship, b')
(a', Gold-Ship) -> Gt2(Gold-Ship, a')
(Vodka, Vodka) -> Eq2(Vodka)
(Vodka, b') -> Lt2(Vodka, b')
(a', Vodka) -> Gt2(Vodka, a')
(Daiwa-Scarlet, Daiwa-Scarlet) -> Eq2(Daiwa-Scarlet)
(Daiwa-Scarlet, b') -> Lt2(Daiwa-Scarlet, b')
(a', Daiwa-Scarlet) -> Gt2(Daiwa-Scarlet, a')
(Taiki-Shuttle, Taiki-Shuttle) -> Eq2(Taiki-Shuttle)
(Taiki-Shuttle, b') -> Lt2(Taiki-Shuttle, b')
(a', Taiki-Shuttle) -> Gt2(Taiki-Shuttle, a')
(Grass-Wonder, Grass-Wonder) -> Eq2(Grass-Wonder)
(Grass-Wonder, b') -> Lt2(Grass-Wonder, b')
(a', Grass-Wonder) -> Gt2(Grass-Wonder, a')
(Hishi-Amazon, Hishi-Amazon) -> Eq2(Hishi-Amazon)
(Hishi-Amazon, b') -> Lt2(Hishi-Amazon, b')
(a', Hishi-Amazon) -> Gt2(Hishi-Amazon, a')
(Mejiro-McQueen, Mejiro-McQueen) -> Eq2(Mejiro-McQueen)
(Mejiro-McQueen, b') -> Lt2(Mejiro-McQueen, b')
(a', Mejiro-McQueen) -> Gt2(Mejiro-McQueen, a')
(El-Condor-Pasa, El-Condor-Pasa) -> Eq2(El-Condor-Pasa)
(El-Condor-Pasa, b') -> Lt2(El-Condor-Pasa, b')
(a', El-Condor-Pasa) -> Gt2(El-Condor-Pasa, a')
(TM-Opera-O, TM-Opera-O) -> Eq2(TM-Opera-O)
(TM-Opera-O, b') -> Lt2(TM-Opera-O, b')
(a', TM-Opera-O) -> Gt2(TM-Opera-O, a')
(Narita-Brian, Narita-Brian) -> Eq2(Narita-Brian)
(Narita-Brian, b') -> Lt2(Narita-Brian, b')
(a', Narita-Brian) -> Gt2(Narita-Brian, a')
(Symboli-Rudolf, Symboli-Rudolf) -> Eq2(Symboli-Rudolf)
(Symboli-Rudolf, b') -> Lt2(Symboli-Rudolf, b')
(a', Symboli-Rudolf) -> Gt2(Symboli-Rudolf, a')
(Air-Groove, Air-Groove) -> Eq2(Air-Groove)
(Air-Groove, b') -> Lt2(Air-Groove, b')
(a', Air-Groove) -> Gt2(Air-Groove, a')
(Agnes-Digital, Agnes-Digital) -> Eq2(Agnes-Digital)
(Agnes-Digital, b') -> Lt2(Agnes-Digital, b')
(a', Agnes-Digital) -> Gt2(Agnes-Digital, a')
(Seiun-Sky, Seiun-Sky) -> Eq2(Seiun-Sky)
(Seiun-Sky, b') -> Lt2(Seiun-Sky, b')
(a', Seiun-Sky) -> Gt2(Seiun-Sky, a')
(Fine-Motion, Fine-Motion) -> Eq2(Fine-Motion)
(Fine-Motion, b') -> Lt2(Fine-Motion, b')
(a', Fine-Motion) -> Gt2(Fine-Motion, a')
(Biwa-Hayahide, Biwa-Hayahide) -> Eq2(Biwa-Hayahide)
(Biwa-Hayahide, b') -> Lt2(Biwa-Hayahide, b')
(a', Biwa-Hayahide) -> Gt2(Biwa-Hayahide, a')
(Mayano-Top-Gun, Mayano-Top-Gun) -> Eq2(Mayano-Top-Gun)
(Mayano-Top-Gun, b') -> Lt2(Mayano-Top-Gun, b')
(a', Mayano-Top-Gun) -> Gt2(Mayano-Top-Gun, a')
(Manhattan-Cafe, Manhattan-Cafe) -> Eq2(Manhattan-Cafe)
(Manhattan-Cafe, b') -> Lt2(Manhattan-Cafe, b')
(a', Manhattan-Cafe) -> Gt2(Manhattan-Cafe, a')
(Mihono-Bourbon, Mihono-Bourbon) -> Eq2(Mihono-Bourbon)
(Mihono-Bourbon, b') -> Lt2(Mihono-Bourbon, b')
(a', Mihono-Bourbon) -> Gt2(Mihono-Bourbon, a')
(Mejiro-Ryan, Mejiro-Ryan) -> Eq2(Mejiro-Ryan)
(Mejiro-Ryan, b') -> Lt2(Mejiro-Ryan, b')
(a', Mejiro-Ryan) -> Gt2(Mejiro-Ryan, a')
(Hishi-Akebono, Hishi-Akebono) -> Eq2(Hishi-Akebono)
(Hishi-Akebono, b') -> Lt2(Hishi-Akebono, b')
(a', Hishi-Akebono) -> Gt2(Hishi-Akebono, a')
(Rice-Shower, Rice-Shower) -> Eq2(Rice-Shower)
(Rice-Shower, b') -> Lt2(Rice-Shower, b')
(a', Rice-Shower) -> Gt2(Rice-Shower, a')
(Agnes-Tachyon, Agnes-Tachyon) -> Eq2(Agnes-Tachyon)
(Agnes-Tachyon, b') -> Lt2(Agnes-Tachyon, b')
(a', Agnes-Tachyon) -> Gt2(Agnes-Tachyon, a')
(Admire-Vega, Admire-Vega) -> Eq2(Admire-Vega)
(Admire-Vega, b') -> Lt2(Admire-Vega, b')
(a', Admire-Vega) -> Gt2(Admire-Vega, a')
(Inari-One, Inari-One) -> Eq2(Inari-One)
(Inari-One, b') -> Lt2(Inari-One, b')
(a', Inari-One) -> Gt2(Inari-One, a')
(Winning-Ticket, Winning-Ticket) -> Eq2(Winning-Ticket)
(Winning-Ticket, b') -> Lt2(Winning-Ticket, b')
(a', Winning-Ticket) -> Gt2(Winning-Ticket, a')
(Eishin-Flash, Eishin-Flash) -> Eq2(Eishin-Flash)
(Eishin-Flash, b') -> Lt2(Eishin-Flash, b')
(a', Eishin-Flash) -> Gt2(Eishin-Flash, a')
(Curren-Chan, Curren-Chan) -> Eq2(Curren-Chan)
(Curren-Chan, b') -> Lt2(Curren-Chan, b')
(a', Curren-Chan) -> Gt2(Curren-Chan, a')
(Kawakami-Princess, Kawakami-Princess) -> Eq2(Kawakami-Princess)
(Kawakami-Princess, b') -> Lt2(Kawakami-Princess, b')
(a', Kawakami-Princess) -> Gt2(Kawakami-Princess, a')
(Gold-City, Gold-City) -> Eq2(Gold-City)
(Gold-City, b') -> Lt2(Gold-City, b')
(a', Gold-City) -> Gt2(Gold-City, a')
(Sakura-Bakushin-O, Sakura-Bakushin-O) -> Eq2(Sakura-Bakushin-O)
(Sakura-Bakushin-O, b') -> Lt2(Sakura-Bakushin-O, b')
(a', Sakura-Bakushin-O) -> Gt2(Sakura-Bakushin-O, a')
(Sweep-Tosho, Sweep-Tosho) -> Eq2(Sweep-Tosho)
(Sweep-Tosho, b') -> Lt2(Sweep-Tosho, b')
(a', Sweep-Tosho) -> Gt2(Sweep-Tosho, a')
(Super-Creek, Super-Creek) -> Eq2(Super-Creek)
(Super-Creek, b') -> Lt2(Super-Creek, b')
(a', Super-Creek) -> Gt2(Super-Creek, a')
(Smart-Falcon, Smart-Falcon) -> Eq2(Smart-Falcon)
(Smart-Falcon, b') -> Lt2(Smart-Falcon, b')
(a', Smart-Falcon) -> Gt2(Smart-Falcon, a')
(Tosen-Jordan, Tosen-Jordan) -> Eq2(Tosen-Jordan)
(Tosen-Jordan, b') -> Lt2(Tosen-Jordan, b')
(a', Tosen-Jordan) -> Gt2(Tosen-Jordan, a')
(Narita-Taishin, Narita-Taishin) -> Eq2(Narita-Taishin)
(Narita-Taishin, b') -> Lt2(Narita-Taishin, b')
(a', Narita-Taishin) -> Gt2(Narita-Taishin, a')
(Nishino-Flower, Nishino-Flower) -> Eq2(Nishino-Flower)
(Nishino-Flower, b') -> Lt2(Nishino-Flower, b')
(a', Nishino-Flower) -> Gt2(Nishino-Flower, a')
(Haru-Urara, Haru-Urara) -> Eq2(Haru-Urara)
(Haru-Urara, b') -> Lt2(Haru-Urara, b')
(a', Haru-Urara) -> Gt2(Haru-Urara, a')
(Matikanefukukitaru, Matikanefukukitaru) -> Eq2(Matikanefukukitaru)
(Matikanefukukitaru, b') -> Lt2(Matikanefukukitaru, b')
(a', Matikanefukukitaru) -> Gt2(Matikanefukukitaru, a')
(Meisho-Doto, Meisho-Doto) -> Eq2(Meisho-Doto)
(Meisho-Doto, b') -> Lt2(Meisho-Doto, b')
(a', Meisho-Doto) -> Gt2(Meisho-Doto, a')
(Mejiro-Dober, Mejiro-Dober) -> Eq2(Mejiro-Dober)
(Mejiro-Dober, b') -> Lt2(Mejiro-Dober, b')
(a', Mejiro-Dober) -> Gt2(Mejiro-Dober, a')
(Nice-Nature, Nice-Nature) -> Eq2(Nice-Nature)
(Nice-Nature, b') -> Lt2(Nice-Nature, b')
(a', Nice-Nature) -> Gt2(Nice-Nature, a')
(King-Halo, King-Halo) -> Eq2(King-Halo)
// Character equality.
pub fun character/(==)(a: character, b: character): bool
match (a, b)
(Special-Week, Special-Week) -> True
(Silence-Suzuka, Silence-Suzuka) -> True
(Tokai-Teio, Tokai-Teio) -> True
(Maruzensky, Maruzensky) -> True
(Fuji-Kiseki, Fuji-Kiseki) -> True
(Oguri-Cap, Oguri-Cap) -> True
(Gold-Ship, Gold-Ship) -> True
(Vodka, Vodka) -> True
(Daiwa-Scarlet, Daiwa-Scarlet) -> True
(Taiki-Shuttle, Taiki-Shuttle) -> True
(Grass-Wonder, Grass-Wonder) -> True
(Hishi-Amazon, Hishi-Amazon) -> True
(Mejiro-McQueen, Mejiro-McQueen) -> True
(El-Condor-Pasa, El-Condor-Pasa) -> True
(TM-Opera-O, TM-Opera-O) -> True
(Narita-Brian, Narita-Brian) -> True
(Symboli-Rudolf, Symboli-Rudolf) -> True
(Air-Groove, Air-Groove) -> True
(Agnes-Digital, Agnes-Digital) -> True
(Seiun-Sky, Seiun-Sky) -> True
(Fine-Motion, Fine-Motion) -> True
(Biwa-Hayahide, Biwa-Hayahide) -> True
(Mayano-Top-Gun, Mayano-Top-Gun) -> True
(Manhattan-Cafe, Manhattan-Cafe) -> True
(Mihono-Bourbon, Mihono-Bourbon) -> True
(Mejiro-Ryan, Mejiro-Ryan) -> True
(Hishi-Akebono, Hishi-Akebono) -> True
(Rice-Shower, Rice-Shower) -> True
(Agnes-Tachyon, Agnes-Tachyon) -> True
(Admire-Vega, Admire-Vega) -> True
(Inari-One, Inari-One) -> True
(Winning-Ticket, Winning-Ticket) -> True
(Eishin-Flash, Eishin-Flash) -> True
(Curren-Chan, Curren-Chan) -> True
(Kawakami-Princess, Kawakami-Princess) -> True
(Gold-City, Gold-City) -> True
(Sakura-Bakushin-O, Sakura-Bakushin-O) -> True
(Sweep-Tosho, Sweep-Tosho) -> True
(Super-Creek, Super-Creek) -> True
(Smart-Falcon, Smart-Falcon) -> True
(Tosen-Jordan, Tosen-Jordan) -> True
(Narita-Taishin, Narita-Taishin) -> True
(Nishino-Flower, Nishino-Flower) -> True
(Haru-Urara, Haru-Urara) -> True
(Matikanefukukitaru, Matikanefukukitaru) -> True
(Meisho-Doto, Meisho-Doto) -> True
(Mejiro-Dober, Mejiro-Dober) -> True
(Nice-Nature, Nice-Nature) -> True
(King-Halo, King-Halo) -> True
_ -> False
fip fun character/index(^c: character): int
match c
Special-Week -> 0
Silence-Suzuka -> 1
Tokai-Teio -> 2
Maruzensky -> 3
Fuji-Kiseki -> 4
Oguri-Cap -> 5
Gold-Ship -> 6
Vodka -> 7
Daiwa-Scarlet -> 8
Taiki-Shuttle -> 9
Grass-Wonder -> 10
Hishi-Amazon -> 11
Mejiro-McQueen -> 12
El-Condor-Pasa -> 13
TM-Opera-O -> 14
Narita-Brian -> 15
Symboli-Rudolf -> 16
Air-Groove -> 17
Agnes-Digital -> 18
Seiun-Sky -> 19
Fine-Motion -> 20
Biwa-Hayahide -> 21
Mayano-Top-Gun -> 22
Manhattan-Cafe -> 23
Mihono-Bourbon -> 24
Mejiro-Ryan -> 25
Hishi-Akebono -> 26
Rice-Shower -> 27
Agnes-Tachyon -> 28
Admire-Vega -> 29
Inari-One -> 30
Winning-Ticket -> 31
Eishin-Flash -> 32
Curren-Chan -> 33
Kawakami-Princess -> 34
Gold-City -> 35
Sakura-Bakushin-O -> 36
Sweep-Tosho -> 37
Super-Creek -> 38
Smart-Falcon -> 39
Tosen-Jordan -> 40
Narita-Taishin -> 41
Nishino-Flower -> 42
Haru-Urara -> 43
Matikanefukukitaru -> 44
Meisho-Doto -> 45
Mejiro-Dober -> 46
Nice-Nature -> 47
King-Halo -> 48
// Create the table of all pair affinities.
// The affinity is the value at a.index*count + b.index.
extern global/create-pair-table(): vector<int>
c inline "kk_intx_t arr[] = {0,23,20,11,11,25,26,26,17,9,31,14,27,25,31,33,26,18,19,30,17,25,26,24,18,24,12,23,25,0,0,27,26,10,25,11,9,0,29,10,18,17,0,7,28,20,22,35,24,23,0,18,17,11,18,19,16,17,14,18,15,20,17,19,18,16,18,18,22,19,18,26,11,26,18,10,17,20,0,0,18,17,10,16,13,13,0,20,17,19,17,0,3,27,19,18,19,11,20,18,0,9,19,18,20,24,30,17,17,14,31,24,27,21,28,26,26,17,23,25,20,10,20,17,17,25,21,0,0,19,18,18,17,18,17,0,24,12,25,19,0,3,17,24,14,21,13,11,17,9,0,17,18,9,15,17,24,17,7,8,17,8,11,11,9,17,16,7,9,15,9,30,8,16,10,10,0,0,10,9,14,14,15,16,0,11,16,9,9,0,7,10,8,14,8,16,11,11,19,17,0,17,12,17,23,22,16,11,19,22,18,13,16,19,24,9,17,19,11,9,19,12,18,15,12,0,0,12,12,17,16,26,16,0,18,13,17,12,0,2,11,18,15,12,11,25,18,18,18,17,0,20,31,24,18,30,15,18,23,20,25,19,16,26,15,17,18,20,17,24,25,10,16,24,0,0,26,26,10,30,18,9,0,26,17,17,17,0,3,25,18,29,26,17,26,19,20,9,12,20,0,16,18,9,17,24,31,17,29,29,28,19,18,24,16,31,30,19,18,19,11,25,18,0,0,22,21,9,17,10,9,0,28,13,18,27,0,11,19,18,14,26,11,26,16,24,15,17,31,16,0,34,16,29,16,21,23,18,24,17,20,27,15,17,16,16,14,25,22,9,15,25,0,0,24,25,12,31,17,8,0,17,18,17,16,0,3,23,16,30,24,18,17,17,30,17,23,24,18,34,0,22,23,16,28,30,24,18,24,27,34,14,26,24,17,8,23,14,17,22,17,0,0,17,17,19,26,23,15,0,25,17,24,16,0,4,17,23,24,16,11,9,14,17,24,22,18,9,16,22,0,19,10,16,27,17,8,20,16,24,10,17,16,9,13,24,11,23,21,11,0,0,9,9,23,14,25,29,0,16,8,17,8,0,7,15,16,22,9,17,31,18,17,17,16,30,17,29,23,19,0,16,16,35,19,24,19,16,22,24,14,16,18,18,23,25,10,18,23,0,0,22,22,7,30,15,10,0,15,15,15,15,0,3,23,18,30,24,23,14,15,14,7,11,15,24,16,16,10,16,0,14,17,15,17,17,17,14,16,16,17,15,10,14,18,7,17,14,0,0,17,17,8,15,7,9,0,14,9,14,23,0,8,14,14,19,14,7,27,20,31,8,19,18,31,21,28,16,16,14,0,22,33,26,31,25,26,24,25,35,28,18,18,22,17,33,19,0,0,19,17,18,17,18,18,0,34,12,25,18,0,4,19,25,16,27,14,25,17,24,17,22,23,17,23,30,27,35,17,22,0,26,15,27,23,29,24,22,23,16,11,22,17,17,26,16,0,0,16,16,14,23,22,17,0,23,16,22,15,0,2,16,24,23,17,15,31,19,27,8,18,20,29,18,24,17,19,15,33,26,0,27,35,24,25,26,23,36,29,19,18,16,19,32,19,0,0,18,19,16,18,17,16,0,33,10,25,19,0,5,17,28,14,26,12,33,18,21,11,13,25,29,24,18,8,24,17,26,15,27,0,29,20,18,24,17,27,26,24,20,25,10,23,25,0,0,27,27,10,23,11,8,0,27,12,17,20,0,2,27,18,22,32,17,26,16,28,11,16,19,28,17,24,20,19,17,31,27,35,29,0,25,22,26,21,33,26,22,17,17,15,36,18,0,0,18,17,14,15,15,17,0,33,9,23,17,0,1,16,22,16,22,10,18,18,26,9,19,16,19,20,27,16,16,17,25,23,24,20,25,0,24,15,26,25,16,7,17,17,16,22,18,0,0,19,19,17,18,17,17,0,25,13,24,18,0,3,17,23,16,17,12,19,18,26,17,24,26,18,27,34,24,22,14,26,29,25,18,22,24,0,15,24,24,17,8,24,15,17,22,19,0,0,17,18,18,23,24,15,0,27,25,25,17,0,9,18,24,21,17,10,30,22,17,16,9,15,24,15,14,10,24,16,24,24,26,24,26,15,15,0,14,23,30,18,24,19,10,25,17,0,0,15,15,8,16,10,11,0,24,16,15,16,0,2,16,18,17,26,15,17,19,23,7,17,17,16,17,26,17,14,16,25,22,23,17,21,26,24,14,0,23,16,10,18,14,18,24,19,1,1,16,17,18,19,18,16,1,23,9,26,16,1,3,18,24,20,16,11,25,18,25,9,19,18,31,16,24,16,16,17,35,23,36,27,33,25,24,23,23,0,28,18,17,18,17,32,17,0,0,26,20,16,16,17,16,0,34,13,24,25,0,2,18,25,14,24,10,26,26,20,15,11,20,30,16,17,9,18,15,28,16,29,26,26,16,17,30,16,28,0,19,24,17,11,25,17,0,0,20,18,9,16,10,9,0,27,17,17,17,0,3,19,18,14,25,10,24,11,10,9,9,17,19,14,8,13,18,10,18,11,19,24,22,7,8,18,10,18,19,0,10,18,8,23,19,0,0,16,16,8,14,11,12,0,18,1,10,8,0,0,19,9,19,23,15,18,26,20,30,19,24,18,25,23,24,23,14,18,22,18,20,17,17,24,24,18,17,24,10,0,16,17,18,21,0,0,18,18,16,23,20,19,0,17,25,19,18,0,9,19,17,23,18,18,24,18,17,8,12,25,19,22,14,11,25,18,22,17,16,25,17,17,15,19,14,18,17,18,16,0,8,19,24,0,0,25,24,7,21,9,14,0,16,11,15,18,0,1,23,16,25,25,16,12,10,17,16,18,10,11,9,17,23,10,7,17,17,19,10,15,16,17,10,18,17,11,8,17,8,0,15,10,1,1,10,10,25,12,17,23,1,18,4,18,10,1,11,10,20,8,12,19,23,17,25,10,15,16,25,15,22,21,18,17,33,26,32,23,36,22,22,25,24,32,25,23,18,19,15,0,18,0,0,16,16,15,14,18,21,0,32,8,24,15,0,2,19,23,19,24,9,25,20,21,10,12,24,18,25,17,11,23,14,19,16,19,25,18,18,19,17,19,17,17,19,21,24,10,18,0,0,0,24,24,10,23,14,11,0,18,11,19,18,0,3,27,18,24,26,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,27,18,19,10,12,26,22,24,17,9,22,17,19,16,18,27,18,19,17,15,16,26,20,16,18,25,10,16,24,0,0,0,28,9,23,10,10,0,19,13,19,25,0,3,25,17,21,25,17,26,17,18,9,12,26,21,25,17,9,22,17,17,16,19,27,17,19,18,15,17,20,18,16,18,24,10,16,24,0,0,28,0,10,23,10,8,0,19,14,18,19,0,2,24,17,21,24,17,10,10,18,14,17,10,9,12,19,23,7,8,18,14,16,10,14,17,18,8,18,16,9,8,16,7,25,15,10,1,1,9,10,0,11,16,23,1,16,2,17,10,1,10,9,17,9,9,17,25,16,17,14,16,30,17,31,26,14,30,15,17,23,18,23,15,18,23,16,19,16,16,14,23,21,12,14,23,1,1,23,23,11,0,16,7,1,16,17,17,17,1,5,23,19,32,25,18,11,13,18,15,26,18,10,17,23,25,15,7,18,22,17,11,15,17,24,10,18,17,10,11,20,9,17,18,14,0,0,10,10,16,16,0,19,0,17,11,19,11,0,2,12,17,16,11,11,9,13,17,16,16,9,9,8,15,29,10,9,18,17,16,8,17,17,15,11,16,16,9,12,19,14,23,21,11,0,0,10,8,23,7,19,0,0,17,2,18,8,0,10,13,16,12,12,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,29,20,24,11,18,26,28,17,25,16,15,14,34,23,33,27,33,25,27,24,23,34,27,18,17,16,18,32,18,0,0,19,19,16,16,17,17,0,0,11,26,20,0,3,21,24,14,25,10,10,17,12,16,13,17,13,18,17,8,15,9,12,16,10,12,9,13,25,16,9,13,17,1,25,11,4,8,11,0,0,13,14,2,17,11,2,0,11,0,11,12,0,10,10,10,14,11,5,18,19,25,9,17,17,18,17,24,17,15,14,25,22,25,17,23,24,25,15,26,24,17,10,19,15,18,24,19,1,1,19,18,17,17,19,18,1,26,11,0,17,1,2,19,25,17,17,10,17,17,19,9,12,17,27,16,16,8,15,23,18,15,19,20,17,18,17,16,16,25,17,8,18,18,10,15,18,0,0,25,19,10,17,11,8,0,20,12,17,0,0,10,17,18,15,18,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,7,3,3,7,2,3,11,3,4,7,3,8,4,2,5,2,1,3,9,2,3,2,3,0,9,1,11,2,3,0,0,3,2,10,5,2,10,0,3,10,2,10,0,0,3,5,1,5,13,28,27,17,10,11,25,19,23,17,15,23,14,19,16,17,27,16,17,18,16,18,18,19,19,19,23,10,19,27,0,0,25,24,9,23,12,13,0,21,10,19,17,0,3,0,17,24,25,18,20,19,24,8,18,18,18,16,23,16,18,14,25,24,28,18,22,23,24,18,24,25,18,9,17,16,20,23,18,1,1,17,17,17,19,17,16,1,24,10,25,18,1,5,17,0,15,19,12,22,18,14,14,15,29,14,30,24,22,30,19,16,23,14,22,16,16,21,17,20,14,14,19,23,25,8,19,24,1,1,21,21,9,32,16,12,1,14,14,17,15,1,1,24,15,0,21,14,35,19,21,8,12,26,26,24,16,9,24,14,27,17,26,32,22,17,17,26,16,24,25,23,18,25,12,24,26,0,0,25,24,9,25,11,12,0,25,11,17,18,0,5,25,19,21,0,20,24,11,13,16,11,17,11,18,11,17,23,7,14,15,12,17,10,12,10,15,11,10,10,15,18,16,19,9,19,0,0,17,17,17,18,11,16,0,10,5,10,11,0,13,18,12,14,20,0,};\nkk_vector_from_cintarray(arr, (kk_ssize_t)49 * (kk_ssize_t)49, kk_context())"
js inline "[0,23,20,11,11,25,26,26,17,9,31,14,27,25,31,33,26,18,19,30,17,25,26,24,18,24,12,23,25,0,0,27,26,10,25,11,9,0,29,10,18,17,0,7,28,20,22,35,24,23,0,18,17,11,18,19,16,17,14,18,15,20,17,19,18,16,18,18,22,19,18,26,11,26,18,10,17,20,0,0,18,17,10,16,13,13,0,20,17,19,17,0,3,27,19,18,19,11,20,18,0,9,19,18,20,24,30,17,17,14,31,24,27,21,28,26,26,17,23,25,20,10,20,17,17,25,21,0,0,19,18,18,17,18,17,0,24,12,25,19,0,3,17,24,14,21,13,11,17,9,0,17,18,9,15,17,24,17,7,8,17,8,11,11,9,17,16,7,9,15,9,30,8,16,10,10,0,0,10,9,14,14,15,16,0,11,16,9,9,0,7,10,8,14,8,16,11,11,19,17,0,17,12,17,23,22,16,11,19,22,18,13,16,19,24,9,17,19,11,9,19,12,18,15,12,0,0,12,12,17,16,26,16,0,18,13,17,12,0,2,11,18,15,12,11,25,18,18,18,17,0,20,31,24,18,30,15,18,23,20,25,19,16,26,15,17,18,20,17,24,25,10,16,24,0,0,26,26,10,30,18,9,0,26,17,17,17,0,3,25,18,29,26,17,26,19,20,9,12,20,0,16,18,9,17,24,31,17,29,29,28,19,18,24,16,31,30,19,18,19,11,25,18,0,0,22,21,9,17,10,9,0,28,13,18,27,0,11,19,18,14,26,11,26,16,24,15,17,31,16,0,34,16,29,16,21,23,18,24,17,20,27,15,17,16,16,14,25,22,9,15,25,0,0,24,25,12,31,17,8,0,17,18,17,16,0,3,23,16,30,24,18,17,17,30,17,23,24,18,34,0,22,23,16,28,30,24,18,24,27,34,14,26,24,17,8,23,14,17,22,17,0,0,17,17,19,26,23,15,0,25,17,24,16,0,4,17,23,24,16,11,9,14,17,24,22,18,9,16,22,0,19,10,16,27,17,8,20,16,24,10,17,16,9,13,24,11,23,21,11,0,0,9,9,23,14,25,29,0,16,8,17,8,0,7,15,16,22,9,17,31,18,17,17,16,30,17,29,23,19,0,16,16,35,19,24,19,16,22,24,14,16,18,18,23,25,10,18,23,0,0,22,22,7,30,15,10,0,15,15,15,15,0,3,23,18,30,24,23,14,15,14,7,11,15,24,16,16,10,16,0,14,17,15,17,17,17,14,16,16,17,15,10,14,18,7,17,14,0,0,17,17,8,15,7,9,0,14,9,14,23,0,8,14,14,19,14,7,27,20,31,8,19,18,31,21,28,16,16,14,0,22,33,26,31,25,26,24,25,35,28,18,18,22,17,33,19,0,0,19,17,18,17,18,18,0,34,12,25,18,0,4,19,25,16,27,14,25,17,24,17,22,23,17,23,30,27,35,17,22,0,26,15,27,23,29,24,22,23,16,11,22,17,17,26,16,0,0,16,16,14,23,22,17,0,23,16,22,15,0,2,16,24,23,17,15,31,19,27,8,18,20,29,18,24,17,19,15,33,26,0,27,35,24,25,26,23,36,29,19,18,16,19,32,19,0,0,18,19,16,18,17,16,0,33,10,25,19,0,5,17,28,14,26,12,33,18,21,11,13,25,29,24,18,8,24,17,26,15,27,0,29,20,18,24,17,27,26,24,20,25,10,23,25,0,0,27,27,10,23,11,8,0,27,12,17,20,0,2,27,18,22,32,17,26,16,28,11,16,19,28,17,24,20,19,17,31,27,35,29,0,25,22,26,21,33,26,22,17,17,15,36,18,0,0,18,17,14,15,15,17,0,33,9,23,17,0,1,16,22,16,22,10,18,18,26,9,19,16,19,20,27,16,16,17,25,23,24,20,25,0,24,15,26,25,16,7,17,17,16,22,18,0,0,19,19,17,18,17,17,0,25,13,24,18,0,3,17,23,16,17,12,19,18,26,17,24,26,18,27,34,24,22,14,26,29,25,18,22,24,0,15,24,24,17,8,24,15,17,22,19,0,0,17,18,18,23,24,15,0,27,25,25,17,0,9,18,24,21,17,10,30,22,17,16,9,15,24,15,14,10,24,16,24,24,26,24,26,15,15,0,14,23,30,18,24,19,10,25,17,0,0,15,15,8,16,10,11,0,24,16,15,16,0,2,16,18,17,26,15,17,19,23,7,17,17,16,17,26,17,14,16,25,22,23,17,21,26,24,14,0,23,16,10,18,14,18,24,19,1,1,16,17,18,19,18,16,1,23,9,26,16,1,3,18,24,20,16,11,25,18,25,9,19,18,31,16,24,16,16,17,35,23,36,27,33,25,24,23,23,0,28,18,17,18,17,32,17,0,0,26,20,16,16,17,16,0,34,13,24,25,0,2,18,25,14,24,10,26,26,20,15,11,20,30,16,17,9,18,15,28,16,29,26,26,16,17,30,16,28,0,19,24,17,11,25,17,0,0,20,18,9,16,10,9,0,27,17,17,17,0,3,19,18,14,25,10,24,11,10,9,9,17,19,14,8,13,18,10,18,11,19,24,22,7,8,18,10,18,19,0,10,18,8,23,19,0,0,16,16,8,14,11,12,0,18,1,10,8,0,0,19,9,19,23,15,18,26,20,30,19,24,18,25,23,24,23,14,18,22,18,20,17,17,24,24,18,17,24,10,0,16,17,18,21,0,0,18,18,16,23,20,19,0,17,25,19,18,0,9,19,17,23,18,18,24,18,17,8,12,25,19,22,14,11,25,18,22,17,16,25,17,17,15,19,14,18,17,18,16,0,8,19,24,0,0,25,24,7,21,9,14,0,16,11,15,18,0,1,23,16,25,25,16,12,10,17,16,18,10,11,9,17,23,10,7,17,17,19,10,15,16,17,10,18,17,11,8,17,8,0,15,10,1,1,10,10,25,12,17,23,1,18,4,18,10,1,11,10,20,8,12,19,23,17,25,10,15,16,25,15,22,21,18,17,33,26,32,23,36,22,22,25,24,32,25,23,18,19,15,0,18,0,0,16,16,15,14,18,21,0,32,8,24,15,0,2,19,23,19,24,9,25,20,21,10,12,24,18,25,17,11,23,14,19,16,19,25,18,18,19,17,19,17,17,19,21,24,10,18,0,0,0,24,24,10,23,14,11,0,18,11,19,18,0,3,27,18,24,26,19,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,27,18,19,10,12,26,22,24,17,9,22,17,19,16,18,27,18,19,17,15,16,26,20,16,18,25,10,16,24,0,0,0,28,9,23,10,10,0,19,13,19,25,0,3,25,17,21,25,17,26,17,18,9,12,26,21,25,17,9,22,17,17,16,19,27,17,19,18,15,17,20,18,16,18,24,10,16,24,0,0,28,0,10,23,10,8,0,19,14,18,19,0,2,24,17,21,24,17,10,10,18,14,17,10,9,12,19,23,7,8,18,14,16,10,14,17,18,8,18,16,9,8,16,7,25,15,10,1,1,9,10,0,11,16,23,1,16,2,17,10,1,10,9,17,9,9,17,25,16,17,14,16,30,17,31,26,14,30,15,17,23,18,23,15,18,23,16,19,16,16,14,23,21,12,14,23,1,1,23,23,11,0,16,7,1,16,17,17,17,1,5,23,19,32,25,18,11,13,18,15,26,18,10,17,23,25,15,7,18,22,17,11,15,17,24,10,18,17,10,11,20,9,17,18,14,0,0,10,10,16,16,0,19,0,17,11,19,11,0,2,12,17,16,11,11,9,13,17,16,16,9,9,8,15,29,10,9,18,17,16,8,17,17,15,11,16,16,9,12,19,14,23,21,11,0,0,10,8,23,7,19,0,0,17,2,18,8,0,10,13,16,12,12,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,29,20,24,11,18,26,28,17,25,16,15,14,34,23,33,27,33,25,27,24,23,34,27,18,17,16,18,32,18,0,0,19,19,16,16,17,17,0,0,11,26,20,0,3,21,24,14,25,10,10,17,12,16,13,17,13,18,17,8,15,9,12,16,10,12,9,13,25,16,9,13,17,1,25,11,4,8,11,0,0,13,14,2,17,11,2,0,11,0,11,12,0,10,10,10,14,11,5,18,19,25,9,17,17,18,17,24,17,15,14,25,22,25,17,23,24,25,15,26,24,17,10,19,15,18,24,19,1,1,19,18,17,17,19,18,1,26,11,0,17,1,2,19,25,17,17,10,17,17,19,9,12,17,27,16,16,8,15,23,18,15,19,20,17,18,17,16,16,25,17,8,18,18,10,15,18,0,0,25,19,10,17,11,8,0,20,12,17,0,0,10,17,18,15,18,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,7,3,3,7,2,3,11,3,4,7,3,8,4,2,5,2,1,3,9,2,3,2,3,0,9,1,11,2,3,0,0,3,2,10,5,2,10,0,3,10,2,10,0,0,3,5,1,5,13,28,27,17,10,11,25,19,23,17,15,23,14,19,16,17,27,16,17,18,16,18,18,19,19,19,23,10,19,27,0,0,25,24,9,23,12,13,0,21,10,19,17,0,3,0,17,24,25,18,20,19,24,8,18,18,18,16,23,16,18,14,25,24,28,18,22,23,24,18,24,25,18,9,17,16,20,23,18,1,1,17,17,17,19,17,16,1,24,10,25,18,1,5,17,0,15,19,12,22,18,14,14,15,29,14,30,24,22,30,19,16,23,14,22,16,16,21,17,20,14,14,19,23,25,8,19,24,1,1,21,21,9,32,16,12,1,14,14,17,15,1,1,24,15,0,21,14,35,19,21,8,12,26,26,24,16,9,24,14,27,17,26,32,22,17,17,26,16,24,25,23,18,25,12,24,26,0,0,25,24,9,25,11,12,0,25,11,17,18,0,5,25,19,21,0,20,24,11,13,16,11,17,11,18,11,17,23,7,14,15,12,17,10,12,10,15,11,10,10,15,18,16,19,9,19,0,0,17,17,17,18,11,16,0,10,5,10,11,0,13,18,12,14,20,0,]"
val global/pair-table = global/create-pair-table()
// Base affinity between a pair using the global ruleset.
pub fun global/pair-affinity(a: character, b: character): int
global/pair-table.at(a.index * 49 + b.index).default(0)
// Create the table of all trio affinities.
// The affinity is the value at a.index*count*count + b.index*count + c.index.
extern global/create-trio-table(): vector<int>
c inline "kk_intx_t arr[] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,9,11,18,18,16,17,9,16,14,18,16,17,18,15,17,18,15,16,17,18,9,17,16,10,15,18,0,0,18,17,9,16,10,9,0,19,10,17,17,0,3,20,17,14,18,11,0,17,0,8,10,17,17,18,16,8,15,14,17,16,18,18,17,16,17,15,16,17,17,8,18,15,10,15,17,0,0,18,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,0,9,8,0,8,8,8,7,8,8,8,7,8,8,8,9,8,7,9,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,9,1,8,8,0,0,9,8,7,8,8,0,11,10,8,0,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,9,10,8,10,8,11,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,0,18,17,8,10,0,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,18,10,17,17,0,3,25,17,21,25,17,0,18,17,8,10,18,0,16,16,8,15,14,26,15,25,24,23,16,17,22,16,25,26,16,17,16,10,23,17,0,0,18,17,9,16,10,9,0,26,10,17,17,0,3,18,17,14,25,10,0,16,18,7,9,23,16,0,16,7,21,14,16,15,18,24,16,17,17,14,16,16,16,14,17,21,9,14,23,0,0,24,25,9,23,9,7,0,17,9,17,16,0,2,23,16,21,23,16,0,17,16,8,9,16,16,16,0,7,14,14,16,14,16,17,14,16,17,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,17,9,16,16,0,2,17,16,14,16,9,0,9,8,8,8,8,8,7,7,0,9,7,8,9,8,8,8,8,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,9,8,7,8,9,0,16,15,8,8,22,15,21,14,9,0,14,15,23,17,22,15,15,15,22,14,15,15,15,15,22,10,15,22,0,0,22,22,7,23,8,8,0,15,8,15,15,0,2,23,17,21,24,21,0,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,0,18,17,8,10,18,26,16,16,8,15,14,0,15,25,24,23,16,17,22,16,25,26,16,17,16,10,23,17,0,0,18,17,9,16,10,9,0,26,10,17,17,0,3,18,17,14,25,10,0,16,16,8,8,15,15,15,14,9,23,14,15,0,18,15,16,15,15,22,14,15,15,8,15,15,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,16,17,14,17,14,0,17,18,8,10,17,25,18,16,8,17,14,25,18,0,24,24,17,18,24,16,25,25,16,17,15,12,23,17,0,0,17,18,9,18,10,8,0,26,10,18,17,0,4,17,19,14,26,12,0,18,18,9,10,24,24,24,17,8,22,14,24,15,24,0,23,16,18,22,16,24,24,22,18,22,10,22,24,0,0,25,25,9,23,10,8,0,25,10,17,17,0,2,25,17,21,31,17,0,15,17,8,8,15,23,16,14,8,15,14,23,16,24,23,0,14,15,22,14,23,23,16,16,15,8,23,15,0,0,16,16,7,14,8,8,0,23,8,15,15,0,0,15,15,14,22,8,0,17,16,7,9,16,16,17,16,8,15,14,16,15,17,16,14,0,17,14,16,16,16,7,16,14,9,14,16,0,0,16,17,9,16,9,7,0,17,9,17,16,0,2,17,16,14,16,10,0,18,17,9,10,17,17,17,17,8,15,14,17,15,18,18,15,17,0,15,16,17,17,8,17,15,10,15,17,0,0,17,18,9,16,10,8,0,19,10,18,17,0,2,18,17,14,17,10,0,15,15,8,8,15,22,14,14,8,22,14,22,22,24,22,22,14,15,0,14,22,22,15,15,15,10,22,15,0,0,15,15,7,16,8,8,0,22,8,15,15,0,2,15,17,14,24,13,0,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,0,17,17,8,10,17,25,16,16,8,15,14,25,15,25,24,23,16,17,22,16,0,25,16,17,15,10,23,17,0,0,17,17,9,16,10,8,0,25,10,17,17,0,2,17,17,14,24,10,0,18,17,8,10,18,26,16,16,8,15,14,26,15,25,24,23,16,17,22,16,25,0,16,17,16,10,23,17,0,0,18,17,9,16,10,9,0,26,10,17,17,0,3,18,17,14,25,10,0,9,8,8,9,15,16,14,7,8,15,7,16,8,16,22,16,7,8,15,7,16,16,0,8,15,8,16,16,0,0,15,15,7,14,8,8,0,16,1,8,8,0,0,15,8,14,22,15,0,17,18,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,0,15,10,15,17,0,0,18,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,0,16,15,8,8,23,16,21,14,8,22,14,16,15,15,22,15,14,15,15,14,15,16,15,15,0,8,15,22,0,0,23,22,7,21,8,9,0,16,8,15,15,0,1,23,15,21,23,15,0,10,10,8,10,10,10,9,9,8,10,7,10,10,12,10,8,9,10,10,9,10,10,8,10,8,0,8,10,0,0,10,10,9,11,10,8,0,10,3,10,10,0,4,10,12,7,12,12,0,15,15,8,8,15,23,14,14,8,15,14,23,15,23,22,23,14,15,22,14,23,23,16,15,15,8,0,15,0,0,15,15,7,14,8,8,0,23,8,15,15,0,0,15,15,14,22,8,0,18,17,8,11,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,16,17,22,10,15,0,0,0,24,24,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,8,10,25,18,24,16,8,22,14,18,15,17,25,16,16,17,15,16,17,18,15,18,23,10,15,24,0,0,0,25,9,23,10,9,0,18,10,17,17,0,3,25,17,21,25,17,0,17,18,8,10,24,17,25,16,8,22,14,17,15,18,25,16,17,18,15,16,17,17,15,18,22,10,15,24,0,0,25,0,9,23,10,8,0,18,10,18,17,0,2,24,17,21,24,17,0,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,0,16,16,7,9,23,16,23,16,7,23,14,16,16,18,23,14,16,16,16,16,16,16,14,16,21,11,14,23,0,0,23,23,9,0,9,7,0,16,9,16,16,0,4,23,18,21,25,18,0,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,0,9,8,8,8,9,9,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,9,8,8,9,8,8,8,0,0,9,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,17,9,10,18,26,17,17,8,15,14,26,15,26,25,23,17,19,22,16,25,26,16,17,16,10,23,17,0,0,18,18,9,16,10,9,0,0,10,18,17,0,3,19,17,14,25,10,0,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,10,7,10,3,0,17,17,8,10,17,17,17,16,8,15,14,17,15,18,17,15,17,18,15,16,17,17,8,17,15,10,15,17,0,0,17,18,9,16,10,8,0,18,10,0,17,0,2,17,17,14,17,10,0,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,2,3,3,2,2,0,2,0,3,2,4,2,0,2,2,2,2,2,3,0,2,1,4,0,2,0,0,3,2,2,4,2,1,0,3,2,2,2,0,0,3,4,0,5,4,0,20,17,9,10,25,18,23,17,9,23,14,18,16,17,25,15,17,18,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,19,10,17,17,0,3,0,17,21,25,18,0,17,17,8,10,17,17,16,16,8,17,14,17,17,19,17,15,16,17,17,16,17,17,8,17,15,12,15,17,0,0,17,17,9,18,10,8,0,17,10,17,17,0,4,17,0,14,19,12,0,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,21,21,7,21,7,7,0,14,7,14,14,0,0,21,14,0,21,14,0,18,17,8,10,25,25,23,16,8,24,14,25,17,26,31,22,16,17,24,16,24,25,22,17,23,12,22,24,0,0,25,24,9,25,10,9,0,25,10,17,17,0,5,25,19,21,0,19,0,11,10,8,10,17,10,16,9,9,21,7,10,14,12,17,8,10,10,13,9,10,10,15,10,15,12,8,17,0,0,17,17,9,18,10,8,0,10,3,10,10,0,4,18,12,14,19,0,0,0,17,9,11,18,18,16,17,9,16,14,18,16,17,18,15,17,18,15,16,17,18,9,17,16,10,15,18,0,0,18,17,9,16,10,9,0,19,10,17,17,0,3,20,17,14,18,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,9,0,8,0,8,8,8,7,8,8,8,7,8,8,8,9,8,7,9,15,7,8,15,8,15,8,8,8,8,0,0,8,8,7,7,8,8,0,9,8,8,8,0,0,9,8,7,8,8,11,0,10,8,0,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,9,10,8,10,8,11,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,18,0,17,8,10,0,18,16,16,8,15,14,18,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,18,0,17,8,10,18,0,16,16,8,16,14,19,15,18,17,15,16,17,15,16,18,19,8,17,17,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,18,14,18,10,16,0,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,17,0,16,8,9,16,16,16,0,7,14,14,16,14,16,17,14,16,17,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,17,9,16,16,0,2,17,16,14,16,9,9,0,8,8,8,8,8,7,7,0,9,7,8,9,8,8,8,8,8,8,9,8,8,10,10,8,8,10,10,0,0,8,8,7,7,10,12,0,8,1,10,8,0,0,14,8,10,8,9,16,0,15,8,8,15,16,14,14,9,0,14,16,16,16,15,15,15,15,15,14,16,16,8,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,16,16,14,15,9,14,0,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,18,0,17,8,10,18,19,16,16,8,16,14,0,15,18,17,15,16,17,15,16,18,19,8,17,17,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,18,14,18,10,16,0,15,8,8,15,15,14,14,9,16,14,15,0,15,15,15,15,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,16,15,14,15,9,17,0,17,8,10,17,18,16,16,8,16,14,18,15,0,17,15,16,17,15,16,18,18,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,18,14,17,10,18,0,17,9,10,17,17,16,17,8,15,14,17,15,17,0,15,16,18,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,18,17,14,17,10,15,0,15,8,8,15,15,14,14,8,15,14,15,15,15,15,0,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,17,0,16,7,9,16,16,16,16,8,15,14,16,15,16,16,14,0,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,17,16,14,16,10,18,0,17,9,10,17,17,16,17,8,15,14,17,15,17,18,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,18,17,14,17,10,15,0,15,15,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,22,8,22,15,8,15,15,0,0,15,15,7,14,8,8,0,15,15,15,15,0,0,15,15,14,15,8,16,0,16,7,9,16,16,16,16,9,14,14,16,14,16,16,14,16,16,14,0,16,16,9,18,14,9,16,18,0,0,16,16,9,16,11,9,0,16,9,18,16,0,2,18,16,16,16,9,17,0,17,8,10,17,18,16,16,8,16,14,18,15,18,17,15,16,17,15,16,0,18,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,18,14,17,10,18,0,17,15,10,18,19,16,16,8,16,14,19,15,18,17,15,16,17,22,16,18,0,8,24,17,10,15,17,0,0,18,17,9,16,10,9,0,18,17,17,17,0,3,18,18,14,18,10,9,0,8,8,9,8,8,7,7,10,8,7,8,8,8,8,8,7,8,8,9,8,8,0,10,8,8,10,11,0,0,8,8,7,7,10,10,0,8,1,10,8,0,0,10,8,9,8,8,17,0,17,15,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,22,18,17,24,10,0,15,10,17,19,0,0,17,17,9,16,12,10,0,17,17,19,17,0,2,19,17,16,17,10,16,0,15,8,8,16,17,14,14,8,16,14,17,15,16,15,15,14,15,15,14,16,17,8,15,0,8,15,15,0,0,16,15,7,14,8,9,0,16,8,15,15,0,1,16,16,14,16,8,10,0,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,15,0,15,8,8,15,15,14,14,10,15,14,15,15,15,15,15,14,15,15,16,15,15,10,17,15,8,0,17,0,0,15,15,7,14,10,10,0,15,8,17,15,0,0,17,15,16,15,8,18,0,17,8,11,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,11,19,15,10,17,0,0,0,17,17,9,16,12,10,0,17,10,19,17,0,2,19,17,16,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,17,8,10,18,18,16,16,8,15,14,18,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,0,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,17,0,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,9,0,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,16,0,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,10,0,10,8,10,10,10,9,9,10,8,7,10,8,10,10,8,9,10,8,11,10,10,10,12,8,10,10,12,0,0,10,10,9,9,0,10,0,10,3,12,10,0,2,12,10,9,10,10,9,0,8,8,8,9,9,7,7,12,8,7,9,8,8,8,8,7,8,8,9,8,9,10,10,9,8,10,10,0,0,9,8,7,7,10,0,0,9,1,10,8,0,1,13,8,9,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,17,9,10,18,18,16,17,8,15,14,18,15,17,18,15,16,18,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,19,17,14,18,10,10,0,10,8,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,15,9,10,17,1,17,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,10,7,10,3,17,0,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,19,15,10,17,19,0,0,17,17,9,16,12,10,0,17,10,0,17,0,2,19,17,16,17,10,17,0,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,20,0,17,9,10,18,18,16,17,14,16,14,18,16,17,18,15,17,18,15,18,17,18,10,19,16,10,17,19,0,0,18,17,9,16,12,13,0,19,10,19,17,0,3,0,17,17,18,11,17,0,17,8,10,17,18,16,16,8,16,14,18,15,18,17,15,16,17,15,16,18,18,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,14,0,14,7,7,14,14,14,14,10,14,14,14,14,14,14,14,14,14,14,16,14,14,9,16,14,7,16,16,0,0,14,14,7,14,9,9,0,14,7,16,14,0,0,17,14,0,14,7,18,0,17,8,10,18,18,16,16,8,15,14,18,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,0,10,11,0,10,8,10,10,10,9,9,9,9,7,10,9,10,10,8,10,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,11,10,7,10,0,0,17,0,8,10,17,17,18,16,8,15,14,17,16,18,18,17,16,17,15,16,17,17,8,18,15,10,15,17,0,0,18,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,17,0,0,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,8,8,8,8,8,9,9,7,8,9,8,8,9,8,8,8,7,8,8,8,8,8,8,9,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,9,10,10,0,8,0,10,10,10,16,15,8,7,18,15,17,10,15,17,17,9,16,17,10,8,11,9,17,15,11,0,0,10,10,16,9,18,16,0,17,4,17,10,0,2,10,17,7,11,11,17,17,0,8,10,0,18,16,17,8,16,14,17,15,18,18,16,16,17,15,16,17,18,9,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,17,17,0,8,10,18,0,16,17,8,16,14,17,15,19,19,17,16,17,16,16,17,18,9,18,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,18,16,0,8,10,16,16,0,21,8,15,14,21,16,17,17,17,18,18,15,16,16,16,7,18,15,9,15,18,0,0,17,17,11,16,10,8,0,16,10,16,16,0,2,16,16,14,17,11,16,16,0,8,16,17,17,21,0,15,16,14,27,22,24,17,23,24,25,14,23,23,17,8,16,14,16,22,17,0,0,16,16,18,16,16,14,0,23,9,23,16,0,2,16,23,14,16,10,8,8,0,9,15,8,8,8,15,0,9,7,15,16,15,8,16,15,15,8,14,15,8,8,8,8,15,16,9,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,9,15,15,0,9,8,16,16,15,16,9,0,14,15,16,16,16,17,15,15,15,14,15,16,9,15,15,8,16,16,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,9,14,14,0,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,17,17,0,8,18,17,17,21,27,15,15,14,0,22,24,17,22,24,26,16,23,24,17,8,18,17,17,23,18,0,0,17,17,18,16,18,17,0,24,11,24,17,0,2,17,24,14,19,11,16,15,0,9,15,15,15,16,22,16,16,14,22,0,23,15,24,22,22,15,21,22,15,8,15,15,15,23,16,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,9,18,17,0,8,17,18,19,17,24,15,16,14,24,23,0,19,25,23,24,16,23,24,18,9,18,15,17,22,18,0,0,17,17,16,16,17,15,0,24,10,24,18,0,2,17,24,14,17,10,18,17,0,8,10,18,19,17,17,8,16,14,17,15,19,0,18,16,17,16,16,17,18,9,19,15,10,15,18,0,0,18,18,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,17,15,0,9,15,16,17,17,23,16,17,14,22,24,25,18,0,22,22,16,21,22,16,9,17,15,15,23,17,0,0,16,16,14,14,15,15,0,22,8,22,16,0,0,15,22,14,15,9,16,16,0,8,17,16,16,18,24,15,15,14,24,22,23,16,22,0,23,15,23,23,16,7,17,15,16,22,18,0,0,16,16,16,16,17,15,0,23,10,23,16,0,2,16,23,14,17,11,17,17,0,8,17,17,17,18,25,15,15,14,26,22,24,17,22,23,0,15,23,24,17,8,17,15,17,22,17,0,0,17,17,18,16,17,15,0,24,10,24,17,0,2,17,24,14,17,10,15,15,0,8,9,15,16,15,14,8,15,14,16,15,16,16,16,15,15,0,14,15,15,8,17,16,8,15,17,0,0,15,15,7,14,9,9,0,15,9,15,16,0,0,15,15,14,16,9,16,16,0,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,17,17,0,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,0,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,24,14,17,10,17,17,0,8,10,18,18,16,17,8,16,14,17,15,18,18,16,16,17,15,16,17,0,9,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,8,8,0,8,8,9,9,7,8,8,9,7,8,8,9,9,9,7,8,8,7,8,9,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,18,17,0,8,11,17,18,18,16,8,15,14,18,15,18,19,17,17,17,17,16,17,17,8,0,16,10,15,19,0,0,18,18,9,16,11,9,0,17,11,17,18,0,2,17,17,14,18,11,15,15,0,8,9,15,15,15,14,8,15,14,17,15,15,15,15,15,15,16,14,15,15,8,16,0,8,16,16,0,0,15,15,7,14,9,10,0,15,9,15,15,0,0,15,15,14,17,9,10,10,0,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,15,15,0,9,15,15,15,15,22,16,16,14,23,23,22,15,23,22,22,15,21,22,15,8,15,16,15,0,16,0,0,15,15,14,14,15,16,0,22,8,22,15,0,0,15,22,14,16,9,17,17,0,9,11,17,18,18,17,9,16,14,18,16,18,18,17,18,17,17,16,17,17,8,19,16,10,16,0,0,0,17,17,9,16,11,9,0,17,11,17,18,0,2,17,17,14,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,17,0,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,18,15,10,15,17,0,0,0,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,18,17,0,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,18,15,10,15,17,0,0,18,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,9,9,0,7,16,9,9,11,18,14,7,7,18,14,16,9,14,16,18,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,16,16,0,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,10,10,0,8,18,10,10,10,16,15,8,7,18,15,17,10,15,17,17,9,16,17,10,8,11,9,17,15,11,0,0,10,10,16,9,0,16,0,17,4,17,10,0,2,10,17,7,11,11,8,8,0,8,16,8,8,8,14,15,8,7,17,15,15,8,15,15,15,9,14,15,8,8,9,10,15,16,9,0,0,8,8,14,7,16,0,0,15,2,15,8,0,0,8,15,7,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,0,10,24,17,0,2,17,24,14,17,10,10,10,0,1,4,10,10,10,9,1,8,7,11,8,10,10,8,10,10,9,9,10,10,1,11,9,3,8,11,0,0,10,10,2,9,4,2,0,10,0,10,10,0,2,10,10,7,11,4,17,17,0,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,0,17,0,2,17,24,14,17,10,17,17,0,8,10,17,18,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,18,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,17,17,0,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,0,17,14,17,10,17,17,0,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,0,14,17,10,14,14,0,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,17,17,0,8,11,17,17,17,16,8,15,14,19,15,17,17,15,17,17,16,16,17,17,8,18,17,10,16,18,0,0,17,17,9,16,11,10,0,17,11,17,17,0,2,17,17,14,0,11,10,10,0,9,11,10,10,11,10,9,9,7,11,9,10,10,9,11,10,9,9,10,10,8,11,9,10,9,12,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,11,0,0,9,8,0,8,8,8,7,8,8,8,7,8,8,8,9,8,7,9,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,9,1,8,8,0,0,9,8,7,8,8,9,0,8,0,8,8,8,7,8,8,8,7,8,8,8,9,8,7,9,15,7,8,15,8,15,8,8,8,8,0,0,8,8,7,7,8,8,0,9,8,8,8,0,0,9,8,7,8,8,8,8,0,0,8,8,8,8,8,9,9,7,8,9,8,8,9,8,8,8,7,8,8,8,8,8,8,9,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,0,0,15,8,14,14,15,16,7,8,15,8,9,8,7,15,8,7,8,8,8,16,8,8,8,8,0,0,8,8,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,8,8,8,8,0,15,0,8,14,14,15,15,7,8,15,8,8,10,7,15,8,7,8,8,8,15,8,8,8,8,0,0,8,8,7,14,15,8,0,10,8,8,8,0,0,8,8,14,8,8,8,8,8,0,8,8,0,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,7,7,8,0,14,14,7,0,15,15,15,7,7,15,7,7,8,8,14,7,7,7,7,7,14,7,7,8,8,0,0,7,7,7,14,14,7,0,7,7,7,7,0,0,7,7,14,7,8,8,8,8,0,14,14,7,15,0,15,15,7,7,15,7,8,8,8,15,7,7,7,7,7,14,7,7,8,8,0,0,7,7,7,14,14,7,0,8,7,7,7,0,0,8,7,14,7,8,8,8,9,0,15,15,8,15,15,0,16,7,8,16,8,8,9,8,15,8,7,8,8,8,22,8,15,9,9,0,0,8,8,14,14,15,15,0,8,8,8,8,0,7,8,8,14,8,16,8,8,9,0,16,15,8,15,15,16,0,7,8,16,8,9,9,8,15,8,7,8,8,8,16,8,8,9,9,0,0,8,8,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,9,7,7,7,0,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,8,8,8,0,8,8,8,7,7,8,8,7,0,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,8,9,0,15,15,8,15,15,16,16,7,8,0,8,8,9,8,15,8,7,8,8,8,15,8,8,9,9,0,0,8,8,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,9,8,8,8,0,8,8,8,7,7,8,8,7,8,8,0,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,9,9,8,0,9,8,8,7,8,8,9,7,8,8,8,0,8,7,9,8,7,8,8,8,9,8,8,8,8,0,0,8,8,7,7,8,8,0,9,1,8,8,0,0,9,8,7,8,8,8,8,9,0,8,10,8,8,8,9,9,7,8,9,8,8,0,8,8,8,7,8,8,8,8,8,8,9,9,0,0,8,8,7,7,8,8,0,10,1,8,8,0,0,8,8,7,8,9,7,7,8,0,7,7,7,8,8,8,8,7,7,8,7,7,8,0,7,7,7,7,7,7,7,7,7,8,8,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,8,9,9,8,0,15,15,8,14,15,15,15,7,8,15,8,9,8,7,0,8,7,8,8,8,15,8,8,8,8,0,0,8,8,7,14,15,8,0,9,8,8,8,0,0,9,8,14,8,8,8,15,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,0,7,8,15,8,15,8,8,8,8,0,0,8,8,7,7,8,8,0,8,8,8,8,0,0,8,8,7,8,8,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,0,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,15,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,15,7,8,0,8,15,8,8,8,8,0,0,8,8,7,7,8,8,0,8,8,8,8,0,0,8,8,7,8,8,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,15,8,0,16,15,8,14,14,22,16,7,8,15,8,9,8,7,15,15,7,8,15,8,0,8,15,8,8,0,0,8,8,14,14,15,15,0,8,15,8,8,0,7,8,8,14,8,15,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,0,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,8,8,0,8,8,8,7,7,15,8,7,8,8,8,8,8,7,8,8,7,8,8,8,15,8,0,8,8,0,0,8,8,14,7,8,15,0,8,1,8,8,0,7,8,8,7,8,15,8,8,9,0,8,8,8,8,8,9,9,7,8,9,8,8,9,8,8,8,7,8,8,8,8,8,8,0,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,9,8,8,9,0,8,8,8,8,8,9,9,7,8,9,8,8,9,8,8,8,7,8,8,8,8,8,8,9,0,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,0,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,0,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,7,7,7,0,7,7,7,7,7,14,7,7,7,7,7,7,7,7,7,7,7,7,7,7,14,7,14,7,7,0,0,7,7,0,7,7,14,0,7,0,7,7,0,7,7,7,7,7,14,7,7,7,0,14,14,7,14,14,14,14,7,7,14,7,7,7,7,14,7,7,7,7,7,14,7,7,7,7,0,0,7,7,7,0,14,7,0,7,7,7,7,0,0,7,7,14,7,7,8,8,8,0,15,15,8,14,14,15,15,7,8,15,8,8,8,7,15,8,7,8,8,8,15,8,8,8,8,0,0,8,8,7,14,0,8,0,8,8,8,8,0,0,8,8,14,8,8,8,8,8,0,8,8,8,7,7,15,8,7,8,8,8,8,8,7,8,8,7,8,8,8,15,8,15,8,8,0,0,8,8,14,7,8,0,0,8,1,8,8,0,7,8,8,7,8,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,8,0,8,10,8,7,8,8,8,7,8,8,8,9,10,7,9,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,0,1,8,8,0,0,9,8,7,8,8,1,8,1,0,8,8,1,7,7,8,8,0,1,8,1,1,1,0,8,8,0,1,8,1,15,1,1,1,1,0,0,1,1,0,7,8,1,0,1,0,1,1,0,0,1,1,7,1,1,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,0,8,0,0,8,8,7,8,8,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,0,0,0,8,8,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,7,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,7,9,9,8,0,8,8,8,7,8,8,8,7,8,8,8,9,8,7,9,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,9,1,8,8,0,0,0,8,7,8,8,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,0,7,8,8,7,7,7,0,14,14,7,14,14,14,14,7,7,14,7,7,7,7,14,7,7,7,7,7,14,7,7,7,7,0,0,7,7,7,14,14,7,0,7,7,7,7,0,0,7,7,0,7,7,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,0,8,8,8,9,0,8,8,8,8,8,16,9,7,8,9,8,8,9,8,8,8,7,8,8,8,15,8,15,9,9,0,0,8,8,14,7,8,15,0,8,1,8,8,0,7,8,8,7,8,0,0,11,10,8,0,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,9,10,8,10,8,11,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,11,0,10,8,0,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,9,10,8,10,8,11,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,10,10,0,8,0,10,10,10,16,15,8,7,18,15,17,10,15,17,17,9,16,17,10,8,11,9,17,15,11,0,0,10,10,16,9,18,16,0,17,4,17,10,0,2,10,17,7,11,11,8,8,8,0,0,15,8,14,14,15,16,7,8,15,8,9,8,7,15,8,7,8,8,8,16,8,8,8,8,0,0,8,8,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,15,0,0,10,16,16,15,15,7,10,15,10,10,8,9,17,8,9,10,10,8,17,8,10,8,10,0,0,10,10,9,16,17,8,0,10,10,10,10,0,2,10,10,14,10,10,10,10,10,8,0,10,0,9,9,8,8,9,10,8,10,12,8,11,10,8,9,12,10,8,10,10,10,8,10,0,0,12,12,9,9,10,8,0,10,5,10,12,0,2,10,10,7,10,10,9,9,10,14,0,16,9,0,16,14,14,7,10,14,9,9,7,10,16,8,9,9,9,7,17,8,9,7,10,0,0,9,9,9,16,17,8,0,9,10,9,9,0,2,9,9,14,10,10,9,9,16,14,0,16,9,16,0,21,14,7,16,21,16,9,14,16,23,7,16,16,9,7,16,7,16,14,9,0,0,9,9,16,16,23,14,0,16,9,16,9,0,2,9,16,14,9,9,8,8,15,15,0,15,8,14,21,0,15,7,15,22,15,8,15,14,22,8,14,15,8,8,15,8,15,15,8,0,0,8,8,14,14,22,15,0,15,8,15,8,0,0,8,15,14,8,8,8,8,8,16,0,15,8,14,14,15,0,7,8,15,8,9,8,7,15,8,7,8,8,8,16,8,8,8,8,0,0,8,8,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,8,7,7,7,7,0,7,9,7,7,7,7,0,7,7,7,9,7,9,7,7,7,9,7,7,7,9,7,7,7,0,0,9,9,7,7,7,7,0,7,2,7,9,0,0,7,7,7,7,7,10,10,18,8,0,10,10,10,16,15,8,7,0,15,17,10,15,17,17,9,16,17,10,8,11,9,17,15,11,0,0,10,10,16,9,18,16,0,17,4,17,10,0,2,10,17,7,11,11,8,8,15,15,0,15,8,14,21,22,15,7,15,0,15,8,15,14,22,8,14,15,8,8,15,8,15,15,8,0,0,8,8,14,14,22,15,0,15,8,15,8,0,0,8,15,14,8,8,10,10,17,8,0,10,10,9,16,15,8,7,17,15,0,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,10,10,10,9,0,10,12,9,9,8,9,9,10,8,10,0,8,11,10,8,9,12,10,8,11,10,10,8,10,0,0,12,12,9,9,10,8,0,10,5,10,12,0,2,10,10,7,10,10,8,8,15,8,0,8,8,7,14,15,8,7,15,15,15,8,0,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,9,9,17,7,0,9,11,10,16,14,7,9,17,14,16,11,14,0,16,8,16,18,9,7,10,10,16,14,10,0,0,11,11,16,9,17,15,0,16,5,16,11,0,2,9,16,7,10,10,10,10,17,15,0,17,10,16,23,22,15,7,17,22,17,10,15,16,0,8,16,17,10,8,17,8,17,15,10,0,0,10,10,16,16,24,15,0,17,10,17,10,0,2,10,17,14,10,10,8,8,9,8,0,8,8,8,7,8,8,7,9,8,8,8,8,8,8,0,7,8,8,8,9,9,8,8,9,0,0,8,8,7,7,9,9,0,8,2,8,8,0,0,8,8,7,9,9,9,9,16,7,0,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,0,16,9,7,9,7,16,14,9,0,0,9,9,16,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,10,10,17,8,0,10,12,9,16,15,8,9,17,15,17,12,15,18,17,8,16,0,10,8,10,10,17,15,10,0,0,12,12,16,9,17,15,0,17,5,17,12,0,2,10,17,7,10,10,10,10,10,8,0,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,0,8,10,8,11,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,9,9,8,8,0,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,8,8,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,10,10,11,16,0,17,10,17,16,15,16,7,11,15,10,11,8,10,17,9,9,10,10,8,0,9,10,8,11,0,0,10,10,9,16,18,9,0,10,11,10,10,0,2,10,10,14,11,11,8,8,9,8,0,8,10,8,7,8,8,9,9,8,8,10,8,10,8,9,7,10,8,8,9,0,8,8,9,0,0,10,10,7,7,9,9,0,8,4,8,10,0,0,8,8,7,9,9,10,10,17,8,0,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,11,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,8,8,15,8,0,8,8,7,14,15,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,15,0,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,11,11,11,8,0,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,9,11,9,10,8,0,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,8,0,10,12,9,9,8,8,9,10,8,10,12,8,11,10,8,9,12,10,8,10,10,10,8,10,0,0,0,12,9,9,10,8,0,10,5,10,12,0,2,10,10,7,10,10,10,10,10,8,0,10,12,9,9,8,8,9,10,8,10,12,8,11,10,8,9,12,10,8,10,10,10,8,10,0,0,12,0,9,9,10,8,0,10,5,10,12,0,2,10,10,7,10,10,9,9,16,7,0,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,9,9,9,14,0,16,9,16,16,14,14,7,9,14,9,9,7,9,16,7,9,9,9,7,16,7,9,7,9,0,0,9,9,9,0,16,7,0,9,9,9,9,0,2,9,9,14,9,9,10,10,18,15,0,17,10,17,23,22,15,7,18,22,17,10,15,17,24,9,16,17,10,8,18,9,17,15,11,0,0,10,10,16,16,0,16,0,17,11,17,10,0,2,10,17,14,11,11,8,8,16,8,0,8,8,8,14,15,8,7,16,15,15,8,15,15,15,9,14,15,8,8,9,9,15,15,9,0,0,8,8,14,7,16,0,0,15,2,15,8,0,0,8,15,7,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,17,8,0,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,17,15,0,0,3,17,10,0,2,10,17,7,10,10,3,3,4,8,0,10,5,10,9,8,8,2,4,8,3,5,1,5,10,2,2,5,3,1,11,4,3,1,4,0,0,5,5,2,9,11,2,0,3,0,3,5,0,2,3,3,7,4,4,10,10,17,8,0,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,17,15,0,17,3,0,10,0,2,10,17,7,10,10,10,10,10,8,0,10,12,9,9,8,8,9,10,8,10,12,8,11,10,8,9,12,10,8,10,10,10,8,10,0,0,12,12,9,9,10,8,0,10,5,10,0,0,2,10,10,7,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,10,10,10,8,0,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,0,10,7,10,10,10,10,17,8,0,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,0,7,10,10,7,7,7,14,0,14,7,14,14,14,14,7,7,14,7,7,7,7,14,7,7,7,7,7,14,7,7,7,7,0,0,7,7,7,14,14,7,0,7,7,7,7,0,0,7,7,0,7,7,10,10,11,8,0,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,8,11,9,10,8,11,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,0,11,10,10,11,8,0,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,8,11,9,10,8,11,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,11,0,0,18,17,8,10,0,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,18,10,17,17,0,3,25,17,21,25,17,18,0,17,8,10,0,18,16,16,8,15,14,18,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,17,17,0,8,10,0,18,16,17,8,16,14,17,15,18,18,16,16,17,15,16,17,18,9,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,8,8,8,0,15,0,8,14,14,15,15,7,8,15,8,8,10,7,15,8,7,8,8,8,15,8,8,8,8,0,0,8,8,7,14,15,8,0,10,8,8,8,0,0,8,8,14,8,8,10,10,10,15,0,0,10,16,16,15,15,7,10,15,10,10,8,9,17,8,9,10,10,8,17,8,10,8,10,0,0,10,10,9,16,17,8,0,10,10,10,10,0,2,10,10,14,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,8,10,0,0,16,17,9,16,15,18,16,19,18,17,16,17,15,16,18,20,10,17,16,10,16,17,0,0,19,18,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,23,16,16,14,16,0,16,0,23,15,28,14,16,21,16,23,14,16,24,14,16,16,16,14,23,21,9,14,23,0,0,23,23,9,30,16,7,0,16,16,16,16,0,2,23,16,28,23,16,16,16,17,14,16,0,17,23,0,14,22,14,16,21,17,17,15,16,23,14,16,16,17,8,23,14,9,14,16,0,0,16,16,9,23,16,7,0,16,16,16,16,0,2,16,16,21,16,9,8,8,8,15,15,0,9,15,14,0,15,8,8,16,9,8,9,7,17,8,7,9,9,9,15,8,8,9,8,0,0,9,9,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,8,22,15,16,15,15,0,16,28,22,15,0,14,15,22,16,23,16,14,22,15,14,15,16,16,22,22,8,15,22,0,0,22,22,7,28,15,8,0,15,15,15,15,0,0,22,15,28,22,15,14,14,14,7,7,0,15,14,14,8,14,0,14,15,15,14,15,14,14,14,14,15,15,8,14,14,7,15,14,0,0,15,15,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,18,18,17,8,10,0,18,16,16,8,15,14,0,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,15,15,15,15,15,0,16,21,21,16,22,15,15,0,16,15,16,14,22,15,14,16,16,9,22,15,8,16,15,0,0,16,16,7,21,15,8,0,15,15,15,15,0,0,15,15,21,15,8,17,17,18,8,10,0,19,16,17,9,16,15,17,16,0,18,17,16,17,15,16,18,19,10,17,15,10,16,17,0,0,18,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,24,17,18,8,10,0,18,23,17,8,23,14,17,15,18,0,16,16,17,15,16,17,18,16,17,22,10,15,24,0,0,24,24,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,15,15,16,10,8,0,17,14,15,9,16,15,15,16,17,16,0,14,15,15,14,16,17,10,15,15,8,16,15,0,0,16,16,7,14,8,8,0,17,8,15,15,0,0,15,15,14,15,8,16,16,16,7,9,0,16,16,16,7,14,14,16,14,16,16,14,0,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,17,17,17,15,17,0,17,24,23,17,22,14,17,22,17,17,15,16,0,15,16,17,17,8,24,15,10,15,17,0,0,17,17,9,23,17,8,0,17,17,17,17,0,2,17,17,21,17,10,15,15,15,8,8,0,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,16,16,16,7,9,0,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,17,17,17,8,10,0,18,16,16,9,15,15,17,16,18,17,16,16,17,15,16,0,18,9,17,15,10,16,17,0,0,18,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,18,18,18,8,10,0,20,16,17,9,16,15,18,16,19,18,17,16,17,15,16,18,0,10,17,16,10,16,17,0,0,19,18,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,15,8,9,8,8,0,10,14,8,9,16,8,8,9,10,16,10,7,8,8,7,9,10,0,8,15,8,9,15,0,0,16,16,7,14,8,8,0,8,1,8,8,0,0,15,8,14,15,15,17,17,17,15,17,0,17,23,23,15,22,14,17,22,17,17,15,16,24,15,16,17,17,8,0,15,10,15,17,0,0,17,17,9,23,17,8,0,17,17,17,17,0,2,17,17,21,17,10,23,16,15,8,8,0,16,21,14,8,22,14,16,15,15,22,15,14,15,15,14,15,16,15,15,0,8,15,22,0,0,23,22,7,21,8,9,0,16,8,15,15,0,1,23,15,21,23,15,10,10,10,8,10,0,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,15,15,15,8,8,0,16,14,14,9,15,15,15,16,16,15,16,14,15,15,14,16,16,9,15,15,8,0,15,0,0,16,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,24,17,17,8,10,0,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,0,0,0,24,24,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,18,17,8,10,0,19,23,16,9,22,15,18,16,18,24,16,16,17,15,16,18,19,16,17,23,10,16,24,0,0,0,25,9,23,10,9,0,18,10,17,17,0,3,25,17,21,25,17,24,17,17,8,10,0,18,23,16,9,22,15,17,16,18,24,16,16,17,15,16,18,18,16,17,22,10,16,24,0,0,25,0,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,9,9,9,7,9,0,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,23,16,16,14,16,0,16,30,23,14,28,14,16,21,16,23,14,16,23,14,16,16,16,14,23,21,9,14,23,0,0,23,23,9,0,16,7,0,16,16,16,16,0,2,23,16,28,23,16,10,10,10,15,17,0,10,16,16,15,15,7,10,15,10,10,8,9,17,8,9,10,10,8,17,8,10,8,10,0,0,10,10,9,16,0,8,0,10,10,10,10,0,2,10,10,14,10,10,9,9,8,8,8,0,9,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,9,8,8,9,8,8,8,0,0,9,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,17,10,10,0,18,16,16,8,15,14,18,15,17,17,17,16,17,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,18,17,14,18,10,10,10,10,8,10,0,10,16,16,8,15,7,10,15,10,10,8,9,17,8,9,10,10,1,17,8,3,8,10,0,0,10,10,2,16,10,1,0,10,0,10,10,0,2,10,10,14,10,3,17,17,17,8,10,0,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,17,17,17,8,10,0,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,0,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,25,18,17,8,10,0,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,18,10,17,17,0,3,0,17,21,25,17,17,17,17,8,10,0,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,21,14,14,14,14,0,14,28,21,14,28,14,14,21,14,21,14,14,21,14,14,14,14,14,21,21,7,14,21,0,0,21,21,7,28,14,7,0,14,14,14,14,0,0,21,14,0,21,14,25,18,17,8,10,0,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,18,10,17,17,0,3,25,17,21,0,17,17,10,10,8,10,0,10,16,9,8,15,7,10,8,10,17,8,9,10,8,9,10,10,15,10,15,10,8,17,0,0,17,17,9,16,10,8,0,10,3,10,10,0,2,17,10,14,17,0,0,18,17,8,10,18,0,16,16,8,15,14,26,15,25,24,23,16,17,22,16,25,26,16,17,16,10,23,17,0,0,18,17,9,16,10,9,0,26,10,17,17,0,3,18,17,14,25,10,18,0,17,8,10,18,0,16,16,8,16,14,19,15,18,17,15,16,17,15,16,18,19,8,17,17,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,18,14,18,10,17,17,0,8,10,18,0,16,17,8,16,14,17,15,19,19,17,16,17,16,16,17,18,9,18,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,8,8,8,0,8,8,0,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,10,10,10,8,0,10,0,9,9,8,8,9,10,8,10,12,8,11,10,8,9,12,10,8,10,10,10,8,10,0,0,12,12,9,9,10,8,0,10,5,10,12,0,2,10,10,7,10,10,18,18,18,8,10,0,0,16,17,9,16,15,18,16,19,18,17,16,17,15,16,18,20,10,17,16,10,16,17,0,0,19,18,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,7,9,16,0,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,17,7,9,17,0,16,0,7,15,14,16,14,17,17,15,16,16,14,16,16,17,8,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,10,16,16,0,2,16,16,14,16,9,8,8,8,8,8,9,0,7,7,0,8,8,8,9,9,8,9,7,8,8,7,9,9,9,8,8,8,9,8,0,0,9,9,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,15,16,16,8,8,16,0,14,15,8,0,14,16,15,17,16,16,14,15,15,14,16,17,9,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,14,14,14,7,9,15,0,14,14,8,14,0,14,15,15,16,15,16,14,14,14,17,15,8,14,16,7,15,14,0,0,17,17,7,14,7,7,0,14,9,14,23,0,7,14,14,14,14,7,26,19,17,8,10,18,0,16,16,8,16,14,0,15,26,25,24,16,17,23,16,27,28,17,17,17,10,24,17,0,0,18,17,9,16,10,9,0,27,10,17,17,0,3,19,18,14,25,10,15,15,15,8,8,16,0,14,14,9,15,15,15,0,16,15,16,14,15,15,14,16,16,9,15,15,8,16,15,0,0,16,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,25,18,19,8,10,19,0,16,17,9,17,15,26,16,0,26,26,16,17,23,16,27,28,18,18,16,10,24,18,0,0,18,18,9,16,10,8,0,25,10,17,18,0,2,17,18,14,24,10,24,17,19,8,12,18,0,16,17,8,16,16,25,15,26,0,25,18,17,24,16,27,26,17,18,17,10,23,18,0,0,19,19,9,16,10,8,0,25,12,17,20,0,2,18,17,14,24,10,23,15,17,8,8,17,0,14,15,9,16,15,24,16,26,25,0,14,15,24,14,25,26,19,16,15,8,25,16,0,0,16,16,7,14,8,8,0,24,8,15,16,0,0,16,15,14,22,8,16,16,16,7,11,16,0,16,16,7,14,16,16,14,16,18,14,0,16,14,16,18,16,7,16,16,9,14,16,0,0,18,18,9,16,9,7,0,16,11,16,18,0,2,16,16,14,16,9,17,17,17,8,10,17,0,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,22,15,16,8,8,15,0,14,14,8,15,14,23,15,23,24,24,14,15,0,14,23,23,16,16,15,8,23,16,0,0,15,15,7,14,8,8,0,23,8,15,16,0,0,16,15,14,22,8,16,16,16,7,9,16,0,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,25,18,17,8,12,18,0,16,16,9,16,17,27,16,27,27,25,18,17,23,16,0,28,18,17,18,10,25,17,0,0,20,20,9,16,10,8,0,26,12,17,19,0,2,18,18,14,24,10,26,19,18,8,10,20,0,16,17,9,17,15,28,16,28,26,26,16,17,23,16,28,0,19,17,17,10,25,17,0,0,19,18,9,16,10,9,0,27,10,17,17,0,3,19,18,14,25,10,16,8,9,8,8,10,0,7,8,9,9,8,17,9,18,17,19,7,8,16,7,18,19,0,8,8,8,18,8,0,0,9,9,7,7,8,8,0,17,1,8,8,0,0,9,8,7,15,8,17,17,18,8,10,17,0,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,0,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,16,17,15,8,10,16,0,14,14,8,16,16,17,15,16,17,15,16,15,15,14,18,17,8,15,0,8,15,15,0,0,18,17,7,14,8,9,0,16,10,15,17,0,1,16,16,14,16,8,10,10,10,8,10,10,0,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,23,15,15,8,8,16,0,14,14,9,15,15,24,16,24,23,25,14,15,23,14,25,25,18,15,15,8,0,15,0,0,16,16,7,14,8,8,0,24,8,15,15,0,0,16,15,14,22,8,17,17,18,8,10,17,0,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,18,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,17,8,12,19,0,16,16,9,15,17,18,16,18,19,16,18,17,15,16,20,19,9,17,18,10,16,17,0,0,0,20,9,16,10,9,0,18,12,17,19,0,3,18,17,14,18,10,17,17,17,8,12,18,0,16,16,9,15,17,17,16,18,19,16,18,17,15,16,20,18,9,17,17,10,16,17,0,0,20,0,9,16,10,8,0,17,12,17,19,0,2,17,17,14,17,10,9,9,9,7,9,9,0,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,16,16,16,7,9,16,0,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,10,10,10,8,10,10,0,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,9,9,8,8,8,9,0,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,9,8,8,9,8,8,8,0,0,9,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,18,17,8,10,18,0,16,16,8,15,14,27,15,25,25,24,16,17,23,16,26,27,17,17,16,10,24,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,19,17,14,25,10,10,10,10,1,5,10,0,9,10,1,8,9,10,8,10,12,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,12,12,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,17,17,17,8,10,17,0,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,17,17,18,8,12,17,0,16,16,8,15,23,17,15,18,20,16,18,17,16,16,19,17,8,18,17,10,15,18,0,0,19,19,9,16,10,8,0,17,12,17,0,0,9,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,0,2,2,0,0,7,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,9,0,0,3,2,0,3,2,18,18,17,8,10,18,0,16,16,8,15,14,19,15,17,18,16,16,17,16,16,18,19,9,17,16,10,16,17,0,0,18,17,9,16,10,9,0,19,10,17,17,0,3,0,17,14,18,10,17,18,17,8,10,17,0,16,16,8,16,14,18,15,18,17,15,16,17,15,16,18,18,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,14,14,14,7,7,14,0,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,25,18,17,8,10,18,0,16,16,8,15,14,25,15,24,24,22,16,17,22,16,24,25,15,17,16,10,22,17,0,0,18,17,9,16,10,9,0,25,10,17,17,0,3,18,17,14,0,10,10,10,10,8,10,10,0,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,0,0,16,18,7,9,23,16,0,16,7,21,14,16,15,18,24,16,17,17,14,16,16,16,14,17,21,9,14,23,0,0,24,25,9,23,9,7,0,17,9,17,16,0,2,23,16,21,23,16,16,0,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,18,16,0,8,10,16,16,0,21,8,15,14,21,16,17,17,17,18,18,15,16,16,16,7,18,15,9,15,18,0,0,17,17,11,16,10,8,0,16,10,16,16,0,2,16,16,14,17,11,7,7,8,0,14,14,7,0,15,15,15,7,7,15,7,7,8,8,14,7,7,7,7,7,14,7,7,8,8,0,0,7,7,7,14,14,7,0,7,7,7,7,0,0,7,7,14,7,8,9,9,10,14,0,16,9,0,16,14,14,7,10,14,9,9,7,10,16,8,9,9,9,7,17,8,9,7,10,0,0,9,9,9,16,17,8,0,9,10,9,9,0,2,9,9,14,10,10,23,16,16,14,16,0,16,0,23,15,28,14,16,21,16,23,14,16,24,14,16,16,16,14,23,21,9,14,23,0,0,23,23,9,30,16,7,0,16,16,16,16,0,2,23,16,28,23,16,16,16,16,7,9,16,0,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,21,15,16,23,16,0,0,15,22,15,20,22,16,16,15,18,25,14,17,16,16,7,23,14,9,15,17,0,0,16,16,12,24,16,7,0,16,16,16,16,0,3,16,16,22,16,10,7,7,8,15,14,15,7,0,15,0,15,7,7,15,7,7,8,8,15,7,7,7,7,7,14,7,7,8,8,0,0,7,7,7,14,14,7,0,7,7,7,7,0,0,7,7,14,7,8,21,14,15,15,14,28,14,0,22,15,0,14,14,22,14,21,15,15,21,14,14,14,14,14,21,21,7,15,22,0,0,21,21,7,28,14,7,0,14,14,14,14,0,0,21,14,28,21,15,14,14,14,7,7,14,14,0,15,7,14,0,14,14,14,14,14,15,14,14,15,14,14,7,14,14,7,14,14,0,0,14,14,8,15,7,7,0,14,7,14,14,0,1,14,14,16,14,7,16,16,21,7,10,16,16,0,20,7,14,14,0,14,16,16,14,17,18,15,16,16,16,7,17,15,9,14,17,0,0,16,16,11,16,10,8,0,16,10,16,16,0,2,16,16,14,17,10,15,14,16,15,14,21,14,0,22,15,22,14,14,0,15,14,16,15,21,14,14,14,14,7,21,14,7,15,15,0,0,14,14,7,21,14,7,0,14,14,14,14,0,0,14,14,21,14,8,18,16,17,7,9,16,16,0,16,7,14,14,16,15,0,16,15,17,17,14,16,16,16,7,16,14,9,14,16,0,0,16,17,9,16,9,7,0,17,9,17,16,0,2,16,16,14,16,9,24,16,17,7,9,23,16,0,16,7,21,14,16,14,16,0,15,16,16,14,16,16,16,14,17,21,9,14,23,0,0,24,24,9,23,9,7,0,16,9,16,16,0,2,23,16,21,23,16,16,14,17,8,7,14,14,0,15,8,15,14,14,16,15,15,0,15,14,14,14,14,14,7,15,14,7,15,15,0,0,15,15,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,8,17,16,18,8,10,16,16,0,18,8,15,15,17,15,17,16,15,0,17,15,17,16,16,7,17,15,9,15,18,0,0,16,17,10,17,10,8,0,17,10,17,16,0,3,16,16,15,17,11,17,16,18,14,16,24,16,0,25,15,21,14,18,21,17,16,14,17,0,14,16,16,16,7,23,14,9,14,16,0,0,16,17,11,23,16,7,0,17,16,17,16,0,2,16,16,21,16,9,14,14,15,7,8,14,14,0,14,7,14,14,15,14,14,14,14,15,14,0,14,14,14,7,15,15,7,14,15,0,0,14,14,7,14,8,8,0,14,8,14,14,0,0,14,14,14,15,8,16,16,16,7,9,16,16,0,17,7,14,15,16,14,16,16,14,17,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,10,17,9,7,0,16,9,16,16,0,3,16,16,15,16,9,16,16,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,0,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,0,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,14,7,7,7,7,14,7,0,7,7,14,7,7,7,7,14,7,7,7,7,7,7,7,0,7,14,7,7,14,0,0,14,14,7,14,7,7,0,7,0,7,7,0,0,14,7,14,14,14,17,16,18,14,17,23,16,0,23,14,21,14,17,21,16,17,15,17,23,15,16,16,16,7,0,15,9,14,17,0,0,17,17,9,23,17,8,0,16,17,16,16,0,2,16,16,21,17,10,21,14,15,7,8,21,14,0,14,7,21,14,15,14,14,21,14,15,14,15,14,14,14,14,15,0,7,14,22,0,0,21,21,7,21,8,8,0,14,8,14,14,0,0,21,14,21,22,15,9,9,9,7,9,9,9,0,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,0,7,9,0,0,9,9,9,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,14,14,15,8,7,14,14,0,15,8,15,14,14,15,14,14,15,15,14,14,14,14,14,7,14,14,7,0,15,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,8,23,16,18,8,10,23,16,0,17,8,22,14,17,15,16,23,15,18,16,15,16,16,16,14,17,22,9,15,0,0,0,23,23,9,23,10,8,0,16,10,16,16,0,2,23,16,21,24,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,16,17,7,9,23,16,0,16,7,21,14,16,14,16,24,15,16,16,14,16,16,16,14,17,21,9,14,23,0,0,0,24,9,23,9,7,0,16,9,16,16,0,2,23,16,21,23,16,25,16,17,7,9,23,16,0,16,7,21,14,16,14,17,24,15,17,17,14,16,16,16,14,17,21,9,14,23,0,0,24,0,9,23,9,7,0,17,9,17,16,0,2,23,16,21,23,16,9,9,11,7,9,9,9,0,12,7,7,8,11,7,9,9,7,10,11,7,10,9,9,7,9,7,9,7,9,0,0,9,9,0,10,9,7,0,9,2,9,9,0,3,9,9,8,9,9,23,16,16,14,16,30,16,0,24,14,28,15,16,21,16,23,14,17,23,14,17,16,16,14,23,21,9,14,23,0,0,23,23,10,0,16,7,0,16,16,16,16,0,3,23,16,29,23,16,9,9,10,14,17,16,9,0,16,14,14,7,10,14,9,9,7,10,16,8,9,9,9,7,17,8,9,7,10,0,0,9,9,9,16,0,8,0,9,10,9,9,0,2,9,9,14,10,10,7,7,8,7,8,7,7,0,7,7,7,7,8,7,7,7,7,8,7,8,7,7,7,7,8,8,7,7,8,0,0,7,7,7,7,8,0,0,7,1,7,7,0,0,7,7,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,16,16,7,9,16,16,0,16,7,14,14,16,14,17,16,14,17,17,14,16,16,16,7,16,14,9,14,16,0,0,16,17,9,16,9,7,0,0,9,17,16,0,2,16,16,14,16,9,9,9,10,7,10,16,9,0,16,7,14,7,10,14,9,9,7,10,16,8,9,9,9,0,17,8,2,7,10,0,0,9,9,2,16,10,1,0,9,0,9,9,0,2,9,9,14,10,3,17,16,16,7,9,16,16,0,16,7,14,14,16,14,17,16,14,17,17,14,16,16,16,7,16,14,9,14,16,0,0,16,17,9,16,9,7,0,17,9,0,16,0,2,16,16,14,16,9,16,16,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,0,0,2,16,16,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,0,3,0,0,1,2,0,2,2,0,3,2,0,3,2,2,0,2,0,2,0,2,0,0,2,2,3,3,2,0,0,2,2,2,2,0,0,2,2,1,2,2,23,16,16,7,9,23,16,0,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,23,23,9,23,9,7,0,16,9,16,16,0,2,0,16,21,23,16,16,16,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,0,14,16,9,21,14,14,14,14,28,14,0,22,14,28,16,14,21,14,21,14,15,21,14,15,14,14,14,21,21,7,14,21,0,0,21,21,8,29,14,7,0,14,14,14,14,0,1,21,14,0,21,14,23,16,17,7,10,23,16,0,16,7,21,14,17,14,16,23,14,17,16,15,16,16,16,14,17,22,9,14,24,0,0,23,23,9,23,10,8,0,16,10,16,16,0,2,23,16,21,0,17,16,9,11,8,10,16,9,0,10,8,15,7,10,8,9,16,8,11,9,8,9,9,9,14,10,15,9,8,18,0,0,16,16,9,16,10,8,0,9,3,9,9,0,2,16,9,14,17,0,0,17,16,8,9,16,16,16,0,7,14,14,16,14,16,17,14,16,17,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,17,9,16,16,0,2,17,16,14,16,9,17,0,16,8,9,16,16,16,0,7,14,14,16,14,16,17,14,16,17,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,17,9,16,16,0,2,17,16,14,16,9,16,16,0,8,16,17,17,21,0,15,16,14,27,22,24,17,23,24,25,14,23,23,17,8,16,14,16,22,17,0,0,16,16,18,16,16,14,0,23,9,23,16,0,2,16,23,14,16,10,8,8,8,0,14,14,7,15,0,15,15,7,7,15,7,8,8,8,15,7,7,7,7,7,14,7,7,8,8,0,0,7,7,7,14,14,7,0,8,7,7,7,0,0,8,7,14,7,8,9,9,16,14,0,16,9,16,0,21,14,7,16,21,16,9,14,16,23,7,16,16,9,7,16,7,16,14,9,0,0,9,9,16,16,23,14,0,16,9,16,9,0,2,9,16,14,9,9,16,16,17,14,16,0,17,23,0,14,22,14,16,21,17,17,15,16,23,14,16,16,17,8,23,14,9,14,16,0,0,16,16,9,23,16,7,0,16,16,16,16,0,2,16,16,21,16,9,16,16,17,7,9,17,0,16,0,7,15,14,16,14,17,17,15,16,16,14,16,16,17,8,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,10,16,16,0,2,16,16,14,16,9,16,16,21,15,16,23,16,0,0,15,22,15,20,22,16,16,15,18,25,14,17,16,16,7,23,14,9,15,17,0,0,16,16,12,24,16,7,0,16,16,16,16,0,3,16,16,22,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,15,15,21,14,7,15,0,0,15,7,14,22,14,7,15,15,21,7,14,14,7,7,14,7,14,15,8,0,0,7,7,14,14,21,14,0,14,7,14,7,0,0,7,14,14,7,8,14,14,16,15,14,22,15,22,0,15,0,14,14,22,15,15,16,15,21,14,14,14,15,8,21,14,7,15,15,0,0,14,14,7,21,14,7,0,14,14,14,14,0,0,14,14,21,14,8,14,14,14,7,7,14,14,15,0,7,14,0,14,14,14,14,14,15,14,14,16,14,14,7,14,14,7,14,14,0,0,14,14,8,15,7,7,0,14,7,14,14,0,1,14,14,16,14,7,16,16,27,7,16,16,16,20,0,14,14,14,0,21,23,16,21,23,25,14,23,23,16,7,16,14,16,21,16,0,0,16,16,18,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,14,14,22,15,21,21,14,22,0,22,22,14,21,0,21,14,22,22,28,14,21,21,14,7,21,14,14,22,15,0,0,14,14,14,21,21,14,0,21,14,21,14,0,0,14,21,21,14,8,16,16,24,7,16,17,17,16,0,14,15,14,23,21,0,17,22,23,23,14,23,23,17,8,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,17,17,17,8,9,17,17,16,0,7,15,14,16,14,17,0,15,16,17,14,16,16,17,8,16,14,9,14,16,0,0,16,16,9,16,9,7,0,17,9,16,16,0,2,17,16,14,16,9,14,14,23,8,14,15,15,15,0,15,16,14,21,22,22,15,0,22,21,14,21,21,15,8,14,14,14,22,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,8,16,16,24,8,16,16,16,18,0,15,15,15,23,22,23,16,22,0,23,14,24,23,16,7,16,14,16,22,17,0,0,16,16,17,17,16,15,0,23,9,23,16,0,3,16,23,15,16,10,17,17,25,15,23,23,16,25,0,21,21,14,25,28,23,17,21,23,0,14,23,23,16,7,23,14,16,21,16,0,0,16,16,18,23,23,14,0,24,16,23,16,0,2,17,23,21,16,9,14,14,14,7,7,14,14,14,0,7,14,14,14,14,14,14,14,14,14,0,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,16,16,23,7,16,16,16,17,0,14,14,16,23,21,23,16,21,24,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,17,18,16,14,0,23,9,23,16,0,3,16,23,17,16,9,16,16,23,7,16,16,16,16,0,14,14,14,23,21,23,16,21,23,23,14,23,0,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,16,16,17,7,9,17,17,16,0,7,15,14,16,14,17,17,15,16,16,14,16,16,0,8,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,7,7,8,7,7,8,8,7,0,7,8,7,7,7,8,8,8,7,7,7,7,7,8,0,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,16,16,16,14,16,23,16,23,0,14,21,14,16,21,16,16,14,16,23,14,16,16,16,7,0,14,9,14,16,0,0,16,16,9,23,16,7,0,16,16,16,16,0,2,16,16,21,16,9,14,14,14,7,7,14,14,14,0,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,0,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,9,9,16,7,16,9,9,9,0,14,7,7,16,14,16,9,14,16,16,7,16,16,9,7,9,7,0,14,9,0,0,9,9,16,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,14,14,22,8,14,14,14,15,0,15,15,14,21,22,21,14,22,22,21,14,21,21,14,7,14,14,14,0,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,8,16,16,17,8,9,16,16,17,0,8,15,14,16,15,16,16,15,17,16,14,16,16,16,7,16,14,9,15,0,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,7,9,16,16,16,0,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,0,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,16,7,9,16,16,16,0,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,0,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,9,9,18,7,16,9,9,12,0,14,7,8,18,14,16,9,14,17,18,7,17,16,9,7,9,7,16,14,9,0,0,9,9,0,10,16,14,0,16,2,16,9,0,3,9,16,8,9,9,16,16,16,14,16,23,16,24,0,14,21,15,16,21,16,16,14,17,23,14,18,16,16,7,23,14,9,14,16,0,0,16,16,10,0,16,7,0,16,16,16,16,0,3,16,16,23,16,9,9,9,16,14,23,16,9,16,0,21,14,7,16,21,16,9,14,16,23,7,16,16,9,7,16,7,16,14,9,0,0,9,9,16,16,0,14,0,16,9,16,9,0,2,9,16,14,9,9,7,7,14,7,14,7,7,7,0,14,7,7,14,14,14,7,14,15,14,7,14,14,7,7,7,7,14,14,7,0,0,7,7,14,7,14,0,0,14,0,14,7,0,0,7,14,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,23,8,16,16,16,16,0,14,14,14,23,21,23,17,21,23,24,14,23,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,0,9,23,16,0,2,17,23,14,16,9,9,9,9,7,9,16,10,16,0,7,14,7,9,14,9,9,7,9,16,7,9,9,9,0,16,7,2,7,9,0,0,9,9,2,16,9,0,0,9,0,9,9,0,2,9,9,14,9,2,16,16,23,7,16,16,16,16,0,14,14,14,23,21,23,16,21,23,23,14,23,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,0,16,0,2,16,23,14,16,9,16,16,16,7,9,16,16,16,0,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,0,0,2,16,16,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,3,0,0,0,1,2,0,2,2,0,3,2,0,3,2,2,0,2,0,2,0,2,0,0,2,2,3,3,2,0,0,2,2,2,2,0,0,2,2,1,2,2,17,17,16,8,9,16,16,16,0,7,14,14,16,14,16,17,14,16,17,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,17,9,16,16,0,2,0,16,14,16,9,16,16,23,7,16,16,16,16,0,14,14,14,23,21,23,16,21,23,23,14,23,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,0,14,16,9,14,14,14,14,14,21,14,22,0,14,21,16,14,21,14,14,14,15,21,14,17,14,14,7,21,14,7,14,14,0,0,14,14,8,23,14,7,0,14,14,14,14,0,1,14,14,0,14,7,16,16,16,7,9,16,16,16,0,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,0,9,9,9,10,8,9,9,9,10,0,8,8,7,9,8,9,9,8,10,9,7,9,9,9,7,9,7,9,8,10,0,0,9,9,9,9,9,7,0,9,2,9,9,0,2,9,9,7,9,0,0,9,8,8,8,8,8,7,7,0,9,7,8,9,8,8,8,8,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,9,8,7,8,9,9,0,8,8,8,8,8,7,7,0,9,7,8,9,8,8,8,8,8,8,9,8,8,10,10,8,8,10,10,0,0,8,8,7,7,10,12,0,8,1,10,8,0,0,14,8,10,8,9,8,8,0,9,15,8,8,8,15,0,9,7,15,16,15,8,16,15,15,8,14,15,8,8,8,8,15,16,9,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,9,8,8,9,0,15,15,8,15,15,0,16,7,8,16,8,8,9,8,15,8,7,8,8,8,22,8,15,9,9,0,0,8,8,14,14,15,15,0,8,8,8,8,0,7,8,8,14,8,16,8,8,15,15,0,15,8,14,21,0,15,7,15,22,15,8,15,14,22,8,14,15,8,8,15,8,15,15,8,0,0,8,8,14,14,22,15,0,15,8,15,8,0,0,8,15,14,8,8,8,8,8,15,15,0,9,15,14,0,15,8,8,16,9,8,9,7,17,8,7,9,9,9,15,8,8,9,8,0,0,9,9,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,8,8,8,8,8,8,9,0,7,7,0,8,8,8,9,9,8,9,7,8,8,7,9,9,9,8,8,8,9,8,0,0,9,9,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,7,7,8,15,14,15,7,0,15,0,15,7,7,15,7,7,8,8,15,7,7,7,7,7,14,7,7,8,8,0,0,7,7,7,14,14,7,0,7,7,7,7,0,0,7,7,14,7,8,7,7,15,15,21,14,7,15,0,0,15,7,14,22,14,7,15,15,21,7,14,14,7,7,14,7,14,15,8,0,0,7,7,14,14,21,14,0,14,7,14,7,0,0,7,14,14,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,16,15,15,8,15,15,0,0,9,8,19,8,8,11,9,15,10,7,8,8,10,15,10,8,11,9,0,0,8,8,7,14,15,10,0,8,8,8,8,0,0,9,8,16,8,10,7,7,7,7,7,8,8,7,7,0,9,0,7,10,8,7,10,7,7,9,7,8,8,10,7,9,7,10,7,0,0,8,8,7,7,7,9,0,7,0,7,7,0,0,7,7,9,7,7,8,8,15,8,15,8,8,7,14,0,8,7,0,15,15,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,9,9,16,16,22,16,9,15,22,0,19,10,15,0,16,8,19,16,22,10,14,16,9,11,15,10,15,19,9,0,0,9,9,14,14,22,17,0,15,8,15,8,0,0,9,15,16,8,10,8,8,15,8,15,9,9,7,14,0,8,8,15,16,0,8,16,14,15,8,14,16,9,9,8,8,15,16,8,0,0,9,9,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,8,8,8,8,8,8,8,7,7,0,8,7,8,8,8,0,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,8,16,9,15,9,9,8,15,0,11,10,15,19,16,8,0,15,15,10,14,16,9,11,8,10,15,19,9,0,0,9,9,14,7,15,17,0,15,1,15,8,0,0,8,15,9,8,9,8,8,15,8,14,7,7,8,15,0,9,7,14,16,14,7,15,0,14,7,14,14,7,7,7,7,14,15,8,0,0,7,7,14,7,14,14,0,14,0,14,7,0,0,8,14,7,7,9,8,8,15,15,22,17,8,15,21,0,15,7,15,22,15,8,15,14,0,8,14,15,8,8,15,8,15,15,8,0,0,8,8,14,14,22,15,0,15,8,15,8,0,0,8,15,14,8,8,8,8,8,8,8,8,8,7,7,0,10,9,8,10,8,8,10,7,8,0,7,8,8,10,8,10,8,10,8,0,0,8,8,7,7,8,10,0,8,1,8,8,0,0,8,8,9,8,8,7,9,14,7,14,7,7,7,14,0,7,7,14,14,14,7,14,14,14,7,0,14,7,9,9,7,14,16,9,0,0,7,7,14,7,16,16,0,14,0,16,7,0,0,9,14,9,7,7,8,8,15,8,15,9,9,7,14,0,8,8,15,16,16,8,16,14,15,8,14,0,9,9,8,8,15,16,8,0,0,9,9,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,8,8,8,8,8,9,9,7,7,0,8,8,8,9,9,8,9,7,8,8,7,9,0,9,8,8,8,9,8,0,0,9,9,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,10,8,8,8,9,9,7,7,0,10,10,8,11,9,8,11,7,8,10,9,9,9,0,10,10,8,13,10,0,0,9,9,7,7,10,12,0,8,1,10,8,0,0,10,8,11,8,8,8,10,8,22,15,15,8,14,14,0,15,7,8,15,8,8,8,7,15,8,9,8,8,10,0,8,15,10,10,0,0,8,8,14,14,17,17,0,8,8,10,8,0,7,10,8,16,8,15,8,8,8,8,8,8,8,7,7,0,10,9,8,10,8,8,10,7,8,10,7,8,8,10,8,0,8,10,8,0,0,8,8,7,7,8,10,0,8,1,8,8,0,0,8,8,9,8,8,8,8,15,15,15,8,8,7,14,0,8,7,15,15,15,8,15,14,15,8,14,15,8,8,15,8,0,15,8,0,0,8,8,22,7,15,23,0,15,1,15,8,0,7,8,15,7,8,15,8,10,16,9,15,9,9,8,15,0,11,10,15,19,16,8,19,15,15,10,16,16,9,13,10,10,15,0,11,0,0,9,9,14,7,17,19,0,15,1,17,8,0,0,10,15,11,8,9,8,10,9,9,8,8,8,8,8,0,9,7,8,9,8,8,9,8,8,8,9,8,8,10,10,8,8,11,0,0,0,8,8,7,7,10,10,0,8,1,10,8,0,0,10,8,9,8,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,9,9,7,7,0,8,8,8,9,9,8,9,7,8,8,7,9,9,9,8,8,8,9,8,0,0,0,9,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,8,8,8,8,9,9,7,7,0,8,8,8,9,9,8,9,7,8,8,7,9,9,9,8,8,8,9,8,0,0,9,0,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,7,7,14,14,14,7,7,7,14,0,7,7,14,14,14,7,14,14,14,7,14,14,7,7,14,7,22,14,7,0,0,7,7,0,7,14,22,0,14,0,14,7,0,7,7,14,7,7,14,7,7,7,14,14,14,7,14,14,0,14,7,7,14,7,7,7,7,14,7,7,7,7,7,14,7,7,7,7,0,0,7,7,7,0,14,7,0,7,7,7,7,0,0,7,7,14,7,7,8,10,15,15,22,15,8,14,21,0,15,7,15,22,15,8,15,14,22,8,16,15,8,10,17,8,15,17,10,0,0,8,8,14,14,0,17,0,15,8,17,8,0,0,10,15,16,8,8,8,12,15,15,15,8,8,7,14,0,10,9,15,17,15,8,17,14,15,10,16,15,8,12,17,10,23,19,10,0,0,8,8,22,7,17,0,0,15,1,17,8,0,7,12,15,11,8,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,15,8,15,8,8,7,14,0,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,15,0,0,1,15,8,0,0,8,15,7,8,8,1,1,1,8,8,8,1,7,7,0,8,0,1,8,1,1,1,0,8,1,0,1,1,1,8,1,1,1,1,0,0,1,1,0,7,8,1,0,1,0,1,1,0,0,1,1,7,1,1,8,10,15,8,15,8,8,7,14,0,8,7,15,15,15,8,15,14,15,8,16,15,8,10,10,8,15,17,10,0,0,8,8,14,7,17,17,0,15,1,0,8,0,0,10,15,9,8,8,8,8,8,8,8,8,8,7,7,0,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,0,0,0,8,8,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,7,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,7,9,14,8,8,8,8,8,7,7,0,9,7,8,9,8,8,8,8,8,8,9,8,8,10,10,8,8,10,10,0,0,8,8,7,7,10,12,0,8,1,10,8,0,0,0,8,10,8,9,8,8,15,8,15,8,8,7,14,0,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,0,7,8,8,7,10,7,14,14,14,7,14,14,0,16,9,7,16,7,7,9,7,14,9,9,7,7,11,16,9,7,11,9,0,0,7,7,7,14,16,11,0,7,7,9,7,0,0,10,7,0,7,7,8,8,8,8,8,8,8,7,7,0,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,0,8,9,9,9,16,8,8,8,8,8,0,10,7,8,10,8,8,9,9,8,8,7,8,8,8,15,8,15,9,9,0,0,8,8,14,7,8,15,0,8,1,8,8,0,7,9,8,7,8,0,0,16,15,8,8,22,15,21,14,9,0,14,15,23,17,22,15,15,15,22,14,15,15,15,15,22,10,15,22,0,0,22,22,7,23,8,8,0,15,8,15,15,0,2,23,17,21,24,21,16,0,15,8,8,15,16,14,14,9,0,14,16,16,16,15,15,15,15,15,14,16,16,8,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,16,16,14,15,9,15,15,0,9,8,16,16,15,16,9,0,14,15,16,16,16,17,15,15,15,14,15,16,9,15,15,8,16,16,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,9,8,8,9,0,16,15,8,15,15,16,0,7,8,16,8,9,9,8,15,8,7,8,8,8,16,8,8,9,9,0,0,8,8,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,9,8,8,8,16,0,15,8,14,14,15,0,7,8,15,8,9,8,7,15,8,7,8,8,8,16,8,8,8,8,0,0,8,8,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,8,22,15,16,15,15,0,16,28,22,15,0,14,15,22,16,23,16,14,22,15,14,15,16,16,22,22,8,15,22,0,0,22,22,7,28,15,8,0,15,15,15,15,0,0,22,15,28,22,15,15,16,16,8,8,16,0,14,15,8,0,14,16,15,17,16,16,14,15,15,14,16,17,9,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,21,14,15,15,14,28,14,0,22,15,0,14,14,22,14,21,15,15,21,14,14,14,14,14,21,21,7,15,22,0,0,21,21,7,28,14,7,0,14,14,14,14,0,0,21,14,28,21,15,14,14,16,15,14,22,15,22,0,15,0,14,14,22,15,15,16,15,21,14,14,14,15,8,21,14,7,15,15,0,0,14,14,7,21,14,7,0,14,14,14,14,0,0,14,14,21,14,8,9,9,9,16,15,15,8,15,15,0,0,9,8,19,8,8,11,9,15,10,7,8,8,10,15,10,8,11,9,0,0,8,8,7,14,15,10,0,8,8,8,8,0,0,9,8,16,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,7,7,14,14,14,14,9,0,0,14,16,14,14,16,14,14,16,14,14,14,9,14,16,7,16,14,0,0,14,14,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,15,16,15,8,8,15,16,14,14,8,0,14,0,15,16,15,15,14,15,15,14,16,16,8,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,23,16,16,16,15,22,15,22,22,19,0,16,15,0,17,15,18,16,22,24,14,15,15,10,22,17,10,18,16,0,0,15,15,7,23,15,10,0,15,15,15,15,0,2,16,17,23,17,15,17,16,16,8,8,16,17,14,15,8,0,14,16,17,0,16,16,14,15,17,14,16,17,9,15,16,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,15,18,14,17,10,22,15,16,9,9,23,16,21,15,8,0,14,15,15,16,0,16,14,15,15,14,15,16,16,16,22,8,15,22,0,0,22,22,7,21,8,8,0,15,8,15,15,0,0,22,15,21,22,15,15,15,17,9,8,16,16,15,16,11,0,16,15,18,16,16,0,15,15,17,14,15,16,11,15,17,8,18,16,0,0,15,15,7,14,8,10,0,15,8,15,15,0,0,15,15,16,15,9,15,15,15,8,7,14,14,15,15,9,0,14,14,16,14,14,15,0,14,14,14,14,14,7,14,14,7,15,15,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,15,14,14,14,9,15,15,15,15,15,22,15,21,21,15,0,14,15,22,15,15,15,14,0,15,14,15,15,8,22,15,8,15,15,0,0,15,15,7,21,15,8,0,15,15,15,15,0,0,15,15,21,15,8,22,15,15,8,8,15,15,14,14,10,0,16,15,24,17,15,17,14,15,0,14,15,15,10,15,17,10,17,15,0,0,15,15,7,16,8,10,0,15,8,15,15,0,2,15,17,16,17,13,14,14,14,7,7,14,14,14,14,7,0,14,14,14,14,14,14,14,14,14,0,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,15,16,15,8,8,15,16,14,14,8,0,14,16,15,16,15,15,14,15,15,14,0,16,8,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,15,16,16,8,8,16,17,14,15,8,0,14,16,15,17,16,16,14,15,15,14,16,0,9,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,15,8,9,8,8,16,9,14,8,10,0,9,8,10,9,16,11,7,8,10,7,8,9,0,8,17,8,10,15,0,0,15,15,7,14,8,10,0,8,1,8,8,0,0,15,8,16,15,15,15,15,15,16,16,22,15,21,21,15,0,14,15,22,15,16,15,14,22,15,14,15,15,8,0,15,8,15,15,0,0,15,15,7,21,15,8,0,15,15,15,15,0,0,15,15,21,15,8,22,16,15,8,8,22,16,21,14,10,0,16,16,17,16,22,17,14,15,17,14,16,16,17,15,0,8,17,22,0,0,22,22,7,21,8,10,0,15,8,15,15,0,0,22,16,23,22,15,10,8,8,8,8,8,8,7,7,8,0,7,8,10,10,8,8,7,8,10,7,8,8,8,8,8,0,8,8,0,0,8,8,7,9,8,8,0,8,1,8,8,0,2,8,10,7,10,10,15,15,16,9,8,15,15,15,15,11,0,16,15,18,15,15,18,15,15,17,14,15,15,10,15,17,8,0,16,0,0,15,15,7,14,8,10,0,15,8,15,15,0,0,15,15,16,15,9,22,15,16,9,8,22,15,22,15,9,0,14,15,16,15,22,16,15,15,15,14,15,15,15,15,22,8,16,0,0,0,22,22,7,21,8,8,0,15,8,15,15,0,0,22,15,21,22,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,15,15,8,8,22,15,21,14,8,0,14,15,15,15,22,15,14,15,15,14,15,15,15,15,22,8,15,22,0,0,0,22,7,21,8,8,0,15,8,15,15,0,0,22,15,21,22,15,22,15,15,8,8,22,15,21,14,8,0,14,15,15,15,22,15,14,15,15,14,15,15,15,15,22,8,15,22,0,0,22,0,7,21,8,8,0,15,8,15,15,0,0,22,15,21,22,15,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,0,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,23,14,14,14,14,28,14,28,21,14,0,14,14,23,16,21,14,14,21,16,14,14,14,14,21,21,9,14,21,0,0,21,21,7,0,14,7,0,14,14,14,14,0,2,21,16,28,23,16,8,8,8,15,15,15,8,14,14,15,0,7,8,15,8,8,8,7,15,8,7,8,8,8,15,8,8,8,8,0,0,8,8,7,14,0,8,0,8,8,8,8,0,0,8,8,14,8,8,8,8,8,8,8,8,8,7,7,10,0,9,8,10,8,8,10,7,8,10,7,8,8,10,8,10,8,10,8,0,0,8,8,7,7,8,0,0,8,1,8,8,0,0,8,8,9,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,8,8,15,15,14,14,8,0,14,15,15,15,15,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,0,8,15,15,0,0,15,15,14,15,8,8,8,8,8,8,15,8,14,14,8,0,7,8,15,8,8,8,7,15,8,7,8,8,1,15,8,1,8,8,0,0,8,8,0,14,8,1,0,8,0,8,8,0,0,8,8,14,8,1,15,15,15,8,8,15,15,14,14,8,0,14,15,15,15,15,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,0,15,0,0,15,15,14,15,8,15,15,15,8,8,15,15,14,14,8,0,14,15,15,15,15,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,23,16,15,8,8,22,15,21,14,9,0,14,15,16,15,22,15,15,15,15,14,15,15,15,15,22,8,15,22,0,0,22,22,7,21,8,8,0,15,8,15,15,0,0,0,15,21,22,16,17,16,15,8,8,15,16,14,14,8,0,14,16,17,18,15,15,14,15,17,14,16,16,8,15,16,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,15,0,14,17,10,21,14,14,14,14,28,14,28,21,16,0,16,14,23,14,21,16,14,21,16,14,14,14,16,21,23,7,16,21,0,0,21,21,7,28,14,9,0,14,14,14,14,0,0,21,14,0,21,14,24,15,15,8,8,22,15,21,14,8,0,14,15,17,17,22,15,14,15,17,14,15,15,15,15,22,10,15,22,0,0,22,22,7,23,8,8,0,15,8,15,15,0,2,22,17,21,0,17,21,9,9,9,8,15,8,15,8,10,0,7,8,15,10,15,9,9,8,13,7,8,8,15,8,15,10,9,16,0,0,15,15,7,16,8,8,0,8,1,8,8,0,2,16,10,14,17,0,0,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,14,0,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,14,14,0,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,7,7,7,0,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,7,7,7,7,0,7,9,7,7,7,7,0,7,7,7,9,7,9,7,7,7,9,7,7,7,9,7,7,7,0,0,9,9,7,7,7,7,0,7,2,7,9,0,0,7,7,7,7,7,14,14,14,7,7,0,15,14,14,8,14,0,14,15,15,14,15,14,14,14,14,15,15,8,14,14,7,15,14,0,0,15,15,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,14,14,14,7,9,15,0,14,14,8,14,0,14,15,15,16,15,16,14,14,14,17,15,8,14,16,7,15,14,0,0,17,17,7,14,7,7,0,14,9,14,23,0,7,14,14,14,14,7,14,14,14,7,7,14,14,0,15,7,14,0,14,14,14,14,14,15,14,14,15,14,14,7,14,14,7,14,14,0,0,14,14,8,15,7,7,0,14,7,14,14,0,1,14,14,16,14,7,14,14,14,7,7,14,14,15,0,7,14,0,14,14,14,14,14,15,14,14,16,14,14,7,14,14,7,14,14,0,0,14,14,8,15,7,7,0,14,7,14,14,0,1,14,14,16,14,7,7,7,7,7,7,8,8,7,7,0,9,0,7,10,8,7,10,7,7,9,7,8,8,10,7,9,7,10,7,0,0,8,8,7,7,7,9,0,7,0,7,7,0,0,7,7,9,7,7,14,14,14,7,7,14,14,14,14,9,0,0,14,16,14,14,16,14,14,16,14,14,14,9,14,16,7,16,14,0,0,14,14,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,7,7,14,14,14,14,7,14,0,0,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,14,14,14,7,7,15,15,14,14,10,16,0,14,0,15,14,17,14,14,16,14,15,15,10,14,16,7,17,14,0,0,15,15,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,14,14,14,7,7,15,15,14,14,8,14,0,14,15,0,14,15,14,14,14,14,15,15,8,14,14,7,15,14,0,0,15,15,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,14,14,14,7,9,14,16,14,14,7,14,0,14,14,14,0,14,16,14,14,14,16,14,7,14,16,7,14,14,0,0,16,16,7,14,7,7,0,14,9,14,16,0,0,14,14,14,14,7,14,14,14,7,7,15,15,14,14,10,16,0,14,17,15,14,0,14,14,16,14,15,15,10,14,16,7,17,14,0,0,15,15,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,14,14,14,7,9,14,16,15,15,7,14,0,14,14,14,16,14,0,14,14,15,16,14,7,14,16,7,14,14,0,0,16,16,8,15,7,7,0,14,9,14,16,0,1,14,14,15,14,7,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,0,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,14,14,14,7,7,14,14,14,14,9,16,0,14,16,14,14,16,14,14,0,14,14,14,9,14,16,7,16,14,0,0,14,14,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,14,14,14,7,7,14,14,15,16,7,14,0,14,14,14,14,14,15,14,14,0,14,14,7,14,14,7,14,14,0,0,14,14,8,15,7,7,0,14,7,14,14,0,1,14,14,16,14,7,14,14,14,7,9,15,17,14,14,8,14,0,14,15,15,16,15,16,14,14,14,0,15,8,14,16,7,15,14,0,0,17,17,7,14,7,7,0,14,9,14,16,0,0,14,14,14,14,7,14,14,14,7,7,15,15,14,14,8,14,0,14,15,15,14,15,14,14,14,14,15,0,8,14,14,7,15,14,0,0,15,15,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,7,7,7,7,7,8,8,7,7,10,9,0,7,10,8,7,10,7,7,9,7,8,8,0,7,9,7,10,7,0,0,8,8,7,7,7,9,0,7,0,7,7,0,0,7,7,9,7,7,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,0,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,14,14,14,7,9,14,16,14,14,9,16,0,14,16,14,16,16,16,14,16,14,16,14,9,14,0,7,16,14,0,0,16,16,7,14,7,9,0,14,9,14,16,0,0,14,14,16,14,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,14,14,14,7,7,15,15,14,14,10,16,0,14,17,15,14,17,14,14,16,14,15,15,10,14,16,7,0,14,0,0,15,15,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,0,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,7,9,15,17,14,14,8,14,0,14,15,15,16,15,16,14,14,14,17,15,8,14,16,7,15,14,0,0,0,17,7,14,7,7,0,14,9,14,16,0,0,14,14,14,14,7,14,14,14,7,9,15,17,14,14,8,14,0,14,15,15,16,15,16,14,14,14,17,15,8,14,16,7,15,14,0,0,17,0,7,14,7,7,0,14,9,14,16,0,0,14,14,14,14,7,7,7,7,7,7,7,7,8,8,7,7,0,7,7,7,7,7,8,7,7,8,7,7,7,7,7,7,7,7,0,0,7,7,0,8,7,7,0,7,0,7,7,0,1,7,7,8,7,7,14,14,14,7,7,14,14,15,15,7,14,0,14,14,14,14,14,15,14,14,15,14,14,7,14,14,7,14,14,0,0,14,14,8,0,7,7,0,14,7,14,14,0,1,14,14,15,14,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,7,7,0,7,0,7,0,7,7,0,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,9,9,0,7,9,7,7,9,7,7,9,7,7,7,9,7,9,7,9,7,0,0,7,7,7,7,7,0,0,7,0,7,7,0,0,7,7,9,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,0,7,14,14,0,0,14,14,14,14,7,7,7,7,0,2,7,9,7,7,0,7,0,7,7,7,9,7,9,7,7,7,9,7,0,7,9,0,7,7,0,0,9,9,0,7,0,0,0,7,0,7,9,0,0,7,7,7,7,0,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,0,14,0,0,14,14,14,14,7,14,14,14,7,9,14,23,14,14,7,14,0,14,14,14,16,14,16,14,14,14,16,14,7,14,16,7,14,14,0,0,16,16,7,14,7,7,0,14,9,14,0,0,7,14,14,14,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,7,0,0,0,0,1,0,0,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,0,14,14,14,7,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,0,14,14,7,14,14,14,7,7,14,14,16,16,9,16,0,14,16,14,14,16,15,14,16,16,14,14,9,14,16,7,16,14,0,0,14,14,8,15,7,9,0,14,7,14,14,0,1,14,14,0,14,7,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,0,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,0,0,18,17,8,10,18,26,16,16,8,15,14,0,15,25,24,23,16,17,22,16,25,26,16,17,16,10,23,17,0,0,18,17,9,16,10,9,0,26,10,17,17,0,3,18,17,14,25,10,18,0,17,8,10,18,19,16,16,8,16,14,0,15,18,17,15,16,17,15,16,18,19,8,17,17,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,18,14,18,10,17,17,0,8,18,17,17,21,27,15,15,14,0,22,24,17,22,24,26,16,23,24,17,8,18,17,17,23,18,0,0,17,17,18,16,18,17,0,24,11,24,17,0,2,17,24,14,19,11,8,8,8,0,8,8,8,7,7,8,8,7,0,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,10,10,18,8,0,10,10,10,16,15,8,7,0,15,17,10,15,17,17,9,16,17,10,8,11,9,17,15,11,0,0,10,10,16,9,18,16,0,17,4,17,10,0,2,10,17,7,11,11,18,18,17,8,10,0,18,16,16,8,15,14,0,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,26,19,17,8,10,18,0,16,16,8,16,14,0,15,26,25,24,16,17,23,16,27,28,17,17,17,10,24,17,0,0,18,17,9,16,10,9,0,27,10,17,17,0,3,19,18,14,25,10,16,16,21,7,10,16,16,0,20,7,14,14,0,14,16,16,14,17,18,15,16,16,16,7,17,15,9,14,17,0,0,16,16,11,16,10,8,0,16,10,16,16,0,2,16,16,14,17,10,16,16,27,7,16,16,16,20,0,14,14,14,0,21,23,16,21,23,25,14,23,23,16,7,16,14,16,21,16,0,0,16,16,18,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,8,8,15,8,15,8,8,7,14,0,8,7,0,15,15,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,15,16,15,8,8,15,16,14,14,8,0,14,0,15,16,15,15,14,15,15,14,16,16,8,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,14,14,14,7,7,14,14,14,14,7,14,0,0,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,22,8,15,15,15,14,21,15,15,14,0,0,22,15,22,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,8,25,18,24,8,17,17,26,16,23,15,16,14,0,22,0,24,30,23,24,22,23,33,26,16,17,16,17,30,17,0,0,17,17,16,16,17,15,0,32,10,24,17,0,2,17,25,14,24,10,24,17,17,8,10,17,25,16,16,8,15,14,0,15,24,0,23,16,17,23,16,25,25,16,17,15,10,23,17,0,0,17,17,9,16,10,8,0,25,10,17,17,0,2,18,17,14,24,10,23,15,22,8,15,15,24,14,21,15,15,14,0,22,30,23,0,21,22,23,21,31,24,17,15,15,15,31,15,0,0,15,15,14,14,15,15,0,31,8,22,15,0,0,16,22,14,22,8,16,16,24,7,17,16,16,17,23,14,14,14,0,21,23,16,21,0,23,15,23,23,16,7,17,15,16,21,17,0,0,16,16,16,16,17,15,0,23,10,23,16,0,2,16,23,14,17,10,17,17,26,8,17,17,17,18,25,15,15,14,0,22,24,17,22,23,0,15,23,24,17,8,17,15,17,22,17,0,0,17,17,18,16,17,15,0,24,10,24,17,0,2,17,24,14,17,10,22,15,16,8,9,15,23,15,14,8,15,14,0,15,22,23,23,15,15,0,14,23,23,16,16,16,8,23,16,0,0,15,15,7,14,9,9,0,23,9,15,15,0,0,16,15,14,23,9,16,16,23,7,16,16,16,16,23,14,14,14,0,21,23,16,21,23,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,11,25,18,24,8,17,17,27,16,23,15,16,14,0,22,33,25,31,23,24,23,23,0,27,17,17,16,17,31,17,0,0,17,17,16,16,17,15,0,33,10,24,17,0,2,18,25,14,24,10,26,19,17,8,10,18,28,16,16,8,16,14,0,15,26,25,24,16,17,23,16,27,0,17,17,17,10,24,17,0,0,18,17,9,16,10,9,0,27,10,17,17,0,3,19,18,14,25,10,16,8,8,8,8,8,17,7,7,8,8,7,0,8,16,16,17,7,8,16,7,17,17,0,8,8,8,17,8,0,0,8,8,7,7,8,8,0,17,1,8,8,0,0,9,8,7,15,8,17,17,18,8,11,17,17,17,16,8,15,14,0,15,17,17,15,17,17,16,16,17,17,8,0,16,10,15,18,0,0,17,17,9,16,11,9,0,17,11,17,17,0,2,17,17,14,18,11,16,17,17,8,9,16,17,15,14,8,16,14,0,15,16,15,15,15,15,16,14,16,17,8,16,0,8,16,16,0,0,16,15,7,14,9,11,0,16,9,15,15,0,1,16,16,16,18,9,10,10,17,8,17,10,10,9,16,15,8,7,0,15,17,10,15,16,17,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,23,15,23,8,15,15,24,14,21,15,15,14,0,22,30,23,31,21,22,23,21,31,24,17,15,16,15,0,15,0,0,15,15,14,14,15,16,0,31,8,22,15,0,0,16,22,14,23,8,17,17,18,8,11,17,17,17,16,8,15,14,0,15,17,17,15,17,17,16,16,17,17,8,18,16,10,15,0,0,0,17,17,9,16,11,9,0,17,11,17,17,0,2,17,17,14,18,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,17,8,10,18,18,16,16,8,15,14,0,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,0,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,17,17,17,8,10,17,17,16,16,8,15,14,0,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,9,9,18,7,16,9,9,11,18,14,7,7,0,14,16,9,14,16,18,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,16,16,16,7,9,16,16,16,16,7,14,14,0,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,10,10,18,8,18,10,10,10,16,15,8,7,0,15,17,10,15,17,17,9,16,17,10,8,11,9,17,15,11,0,0,10,10,16,9,0,16,0,17,4,17,10,0,2,10,17,7,11,11,9,9,17,8,16,9,9,8,14,15,8,7,0,15,15,8,15,15,15,9,14,15,9,8,9,11,15,16,9,0,0,9,8,14,7,16,0,0,16,2,15,8,0,1,9,15,7,11,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,18,24,8,17,18,27,16,23,15,15,14,0,22,32,25,31,23,24,23,23,33,27,17,17,16,17,31,17,0,0,18,17,16,16,17,16,0,0,10,24,17,0,3,19,24,14,25,10,10,10,11,1,4,10,10,10,9,1,8,7,0,8,10,10,8,10,10,9,9,10,10,1,11,9,3,8,11,0,0,10,10,2,9,4,2,0,10,0,10,10,0,2,10,10,7,11,4,17,17,24,8,17,17,17,16,23,15,15,14,0,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,0,17,0,2,17,24,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,0,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,3,2,2,0,0,0,0,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,18,18,17,8,10,18,19,16,16,8,15,14,0,15,17,18,16,16,17,16,16,18,19,9,17,16,10,16,17,0,0,18,17,9,16,10,9,0,19,10,17,17,0,3,0,17,14,18,10,17,18,24,8,17,17,18,16,23,15,16,14,0,22,25,17,22,23,24,15,23,25,18,8,17,16,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,0,14,17,10,14,14,14,7,7,14,14,14,14,7,14,14,0,14,14,14,14,14,14,14,14,14,14,7,14,16,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,25,18,19,8,11,18,25,17,16,8,15,14,0,15,24,24,22,17,17,23,16,24,25,15,18,18,10,23,18,0,0,18,17,9,16,11,11,0,25,11,17,17,0,3,18,17,14,0,11,10,10,11,8,11,10,10,10,9,8,8,7,0,8,10,10,8,10,10,9,11,10,10,8,11,9,10,8,11,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,11,0,0,16,16,8,8,15,15,15,14,9,23,14,15,0,18,15,16,15,15,22,14,15,15,8,15,15,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,16,17,14,17,14,16,0,15,8,8,15,15,14,14,9,16,14,15,0,15,15,15,15,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,16,15,14,15,9,16,15,0,9,15,15,15,16,22,16,16,14,22,0,23,15,24,22,22,15,21,22,15,8,15,15,15,23,16,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,9,8,8,9,0,15,15,8,15,15,16,16,7,8,0,8,8,9,8,15,8,7,8,8,8,15,8,8,9,9,0,0,8,8,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,9,8,8,15,15,0,15,8,14,21,22,15,7,15,0,15,8,15,14,22,8,14,15,8,8,15,8,15,15,8,0,0,8,8,14,14,22,15,0,15,8,15,8,0,0,8,15,14,8,8,15,15,15,15,15,0,16,21,21,16,22,15,15,0,16,15,16,14,22,15,14,16,16,9,22,15,8,16,15,0,0,16,16,7,21,15,8,0,15,15,15,15,0,0,15,15,21,15,8,15,15,15,8,8,16,0,14,14,9,15,15,15,0,16,15,16,14,15,15,14,16,16,9,15,15,8,16,15,0,0,16,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,15,14,16,15,14,21,14,0,22,15,22,14,14,0,15,14,16,15,21,14,14,14,14,7,21,14,7,15,15,0,0,14,14,7,21,14,7,0,14,14,14,14,0,0,14,14,21,14,8,14,14,22,15,21,21,14,22,0,22,22,14,21,0,21,14,22,22,28,14,21,21,14,7,21,14,14,22,15,0,0,14,14,14,21,21,14,0,21,14,21,14,0,0,14,21,21,14,8,9,9,16,16,22,16,9,15,22,0,19,10,15,0,16,8,19,16,22,10,14,16,9,11,15,10,15,19,9,0,0,9,9,14,14,22,17,0,15,8,15,8,0,0,9,15,16,8,10,23,16,16,16,15,22,15,22,22,19,0,16,15,0,17,15,18,16,22,24,14,15,15,10,22,17,10,18,16,0,0,15,15,7,23,15,10,0,15,15,15,15,0,2,16,17,23,17,15,14,14,14,7,7,15,15,14,14,10,16,0,14,0,15,14,17,14,14,16,14,15,15,10,14,16,7,17,14,0,0,15,15,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,15,15,22,8,15,15,15,14,21,15,15,14,0,0,22,15,22,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,15,23,8,15,16,16,15,21,16,17,15,22,0,0,15,24,21,22,17,21,23,16,9,15,15,17,23,15,0,0,16,16,14,16,15,15,0,22,8,22,15,0,2,15,24,14,17,10,15,15,15,8,8,15,15,14,14,8,15,14,15,0,15,0,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,16,15,24,9,15,16,16,16,22,19,18,17,22,0,24,15,0,22,22,17,21,23,16,11,15,17,15,26,16,0,0,16,16,14,14,15,17,0,22,8,22,15,0,0,15,22,16,15,9,15,15,22,8,14,14,14,15,22,16,16,14,21,0,21,14,22,0,21,14,21,21,14,7,14,14,14,22,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,15,21,14,14,9,15,15,22,15,22,22,15,21,28,22,22,14,22,0,22,15,22,21,0,15,21,22,15,8,22,15,15,22,15,0,0,15,15,14,21,22,15,0,22,15,22,15,0,0,15,22,21,15,8,22,15,15,8,8,15,15,14,14,10,24,16,15,0,17,15,17,14,15,0,14,15,15,10,15,17,10,17,15,0,0,15,15,7,16,8,10,0,15,8,15,15,0,2,15,17,16,17,13,14,14,21,7,14,14,14,14,21,14,14,14,21,0,21,14,21,21,21,14,0,21,14,7,14,14,14,21,14,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,7,15,15,22,8,15,16,16,14,21,16,15,15,22,0,23,15,23,21,22,15,21,0,16,9,15,15,15,23,15,0,0,16,16,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,8,15,15,15,8,8,16,16,14,14,9,15,15,15,0,16,15,16,14,15,15,14,16,0,9,15,15,8,16,15,0,0,16,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,8,8,8,8,8,9,9,7,7,11,10,10,8,0,9,8,11,7,8,10,7,9,9,0,8,10,8,11,8,0,0,9,9,7,7,8,10,0,8,1,8,8,0,0,8,8,9,8,8,15,15,15,15,15,22,15,21,21,15,22,14,15,0,15,15,15,14,22,15,14,15,15,8,0,15,8,15,15,0,0,15,15,7,21,15,8,0,15,15,15,15,0,0,15,15,21,15,8,15,15,15,8,8,15,15,14,14,10,17,16,15,0,15,15,17,14,15,17,14,15,15,10,15,0,8,17,15,0,0,15,15,7,14,8,10,0,15,8,15,15,0,0,15,15,16,15,8,10,8,15,8,15,8,8,7,14,15,10,7,15,0,17,8,15,14,15,10,14,15,8,8,8,8,0,15,8,0,0,8,8,14,9,15,15,0,15,1,15,8,0,2,8,17,7,10,10,15,15,23,9,15,16,16,15,22,19,18,17,22,0,23,15,26,22,22,17,21,23,16,11,15,17,15,0,16,0,0,16,16,14,14,15,17,0,22,8,22,15,0,0,15,22,16,15,9,15,15,16,9,8,15,15,15,15,9,16,14,15,0,15,15,16,15,15,15,14,15,15,8,15,15,8,16,0,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,8,8,16,16,14,14,9,15,15,15,0,16,15,16,14,15,15,14,16,16,9,15,15,8,16,15,0,0,0,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,15,15,15,8,8,16,16,14,14,9,15,15,15,0,16,15,16,14,15,15,14,16,16,9,15,15,8,16,15,0,0,16,0,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,7,7,14,7,14,7,7,7,14,14,7,7,14,0,14,7,14,14,14,7,14,14,7,7,7,7,14,14,7,0,0,7,7,0,7,14,14,0,14,0,14,7,0,0,7,14,7,7,7,16,14,14,14,14,21,14,21,21,14,23,14,14,0,16,14,14,14,21,16,14,14,14,7,21,14,9,14,14,0,0,14,14,7,0,14,7,0,14,14,14,14,0,2,14,16,21,16,9,8,8,15,15,22,15,8,14,21,22,15,7,15,0,15,8,15,14,22,8,14,15,8,8,15,8,15,15,8,0,0,8,8,14,14,0,15,0,15,8,15,8,0,0,8,15,14,8,8,8,8,15,8,15,8,8,7,14,17,10,9,15,0,15,8,17,14,15,10,14,15,8,10,8,10,15,17,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,9,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,22,8,15,15,15,14,21,15,15,14,22,0,22,15,22,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,0,8,22,15,0,0,15,22,14,15,8,8,8,8,8,8,15,8,14,14,8,15,7,8,0,8,8,8,7,15,8,7,8,8,1,15,8,1,8,8,0,0,8,8,0,14,8,1,0,8,0,8,8,0,0,8,8,14,8,1,15,15,22,8,15,15,15,14,21,15,15,14,22,0,22,15,22,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,0,15,0,0,15,22,14,15,8,15,15,15,8,8,15,15,14,14,8,15,14,15,0,15,15,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,16,16,15,8,8,15,15,14,14,9,16,14,15,0,15,15,15,15,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,0,15,14,15,9,17,15,22,8,15,15,15,14,21,15,17,14,22,0,24,15,22,21,22,17,21,22,15,8,15,15,17,22,15,0,0,15,15,14,16,15,15,0,22,8,22,15,0,2,15,0,14,17,10,14,14,14,14,14,21,14,21,21,16,23,16,14,0,14,14,16,14,21,16,14,14,14,9,21,16,7,16,14,0,0,14,14,7,21,14,9,0,14,14,14,14,0,0,14,14,0,14,7,17,15,15,8,8,15,15,14,14,8,17,14,15,0,17,15,15,14,15,17,14,15,15,8,15,15,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,15,17,14,0,10,14,9,9,9,8,8,8,8,8,10,15,7,8,0,10,8,9,9,8,13,7,8,8,8,8,8,10,9,9,0,0,8,8,7,9,8,8,0,8,1,8,8,0,2,9,10,7,10,0,0,17,18,8,10,17,25,18,16,8,17,14,25,18,0,24,24,17,18,24,16,25,25,16,17,15,12,23,17,0,0,17,18,9,18,10,8,0,26,10,18,17,0,4,17,19,14,26,12,17,0,17,8,10,17,18,16,16,8,16,14,18,15,0,17,15,16,17,15,16,18,18,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,18,14,17,10,18,17,0,8,17,18,19,17,24,15,16,14,24,23,0,19,25,23,24,16,23,24,18,9,18,15,17,22,18,0,0,17,17,16,16,17,15,0,24,10,24,18,0,2,17,24,14,17,10,8,8,8,0,8,8,8,7,7,8,8,7,8,8,0,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,10,10,17,8,0,10,10,9,16,15,8,7,17,15,0,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,17,17,18,8,10,0,19,16,17,9,16,15,17,16,0,18,17,16,17,15,16,18,19,10,17,15,10,16,17,0,0,18,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,25,18,19,8,10,19,0,16,17,9,17,15,26,16,0,26,26,16,17,23,16,27,28,18,18,16,10,24,18,0,0,18,18,9,16,10,8,0,25,10,17,18,0,2,17,18,14,24,10,18,16,17,7,9,16,16,0,16,7,14,14,16,15,0,16,15,17,17,14,16,16,16,7,16,14,9,14,16,0,0,16,17,9,16,9,7,0,17,9,17,16,0,2,16,16,14,16,9,16,16,24,7,16,17,17,16,0,14,15,14,23,21,0,17,22,23,23,14,23,23,17,8,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,8,8,15,8,15,9,9,7,14,0,8,8,15,16,0,8,16,14,15,8,14,16,9,9,8,8,15,16,8,0,0,9,9,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,17,16,16,8,8,16,17,14,15,8,0,14,16,17,0,16,16,14,15,17,14,16,17,9,15,16,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,15,18,14,17,10,14,14,14,7,7,15,15,14,14,8,14,0,14,15,0,14,15,14,14,14,14,15,15,8,14,14,7,15,14,0,0,15,15,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,25,18,24,8,17,17,26,16,23,15,16,14,0,22,0,24,30,23,24,22,23,33,26,16,17,16,17,30,17,0,0,17,17,16,16,17,15,0,32,10,24,17,0,2,17,25,14,24,10,18,15,23,8,15,16,16,15,21,16,17,15,22,0,0,15,24,21,22,17,21,23,16,9,15,15,17,23,15,0,0,16,16,14,16,15,15,0,22,8,22,15,0,2,15,24,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,17,19,8,10,18,26,16,17,8,16,14,24,15,0,0,24,16,17,23,16,24,25,16,18,15,10,22,18,0,0,17,17,9,16,10,8,0,24,10,17,18,0,2,17,17,14,24,10,24,15,25,8,15,17,26,15,22,16,16,15,30,24,0,24,0,21,22,23,21,31,25,18,16,15,15,31,16,0,0,16,16,14,14,15,15,0,30,8,22,16,0,0,15,22,14,22,8,17,16,23,7,16,16,16,17,23,14,14,14,23,21,0,16,21,0,24,14,23,23,16,7,16,14,16,21,16,0,0,16,17,16,16,16,14,0,24,9,24,16,0,2,16,23,14,16,9,18,17,24,8,17,17,17,17,23,15,15,14,24,22,0,17,22,24,0,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,25,10,25,17,0,2,17,24,14,17,10,24,15,16,8,8,15,23,14,14,8,17,14,22,17,0,23,23,14,15,0,14,22,22,15,16,15,10,22,16,0,0,15,15,7,16,8,8,0,22,8,15,16,0,2,15,17,14,24,10,16,16,23,7,16,16,16,16,23,14,14,14,23,21,0,16,21,23,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,25,18,24,8,17,18,27,16,23,16,16,15,33,23,0,24,31,23,24,22,23,0,27,17,17,16,17,31,17,0,0,18,18,16,16,17,15,0,32,10,24,17,0,2,17,25,14,24,10,25,18,18,8,10,19,28,16,17,9,17,15,26,16,0,25,25,16,17,22,16,27,0,18,17,16,10,24,17,0,0,18,18,9,16,10,8,0,25,10,17,17,0,2,17,18,14,24,10,16,8,9,8,8,10,18,7,8,9,9,8,16,9,0,16,18,7,8,15,7,17,18,0,8,8,8,17,8,0,0,9,9,7,7,8,8,0,16,1,8,8,0,0,8,8,7,15,8,17,17,18,8,10,17,18,16,16,8,15,14,17,15,0,18,16,16,17,16,16,17,17,8,0,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,15,16,15,8,8,15,16,14,14,8,16,14,16,15,0,15,15,14,15,15,14,16,16,8,15,0,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,12,10,17,8,17,10,10,9,16,15,10,7,17,17,0,10,15,16,17,10,16,17,10,8,10,8,0,15,10,0,0,10,10,16,11,17,15,0,17,3,17,10,0,4,10,19,7,12,12,23,15,22,8,15,16,24,14,21,16,15,15,30,23,0,22,31,21,22,22,21,31,24,17,15,15,15,0,15,0,0,16,16,14,14,15,15,0,30,8,22,15,0,0,15,22,14,22,8,17,17,18,8,10,17,18,16,16,8,15,14,17,15,0,18,16,16,17,16,16,17,17,8,18,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,10,18,18,16,16,9,15,15,17,16,0,17,16,16,17,15,16,18,18,9,17,15,10,16,17,0,0,0,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,18,17,17,8,10,18,18,17,16,9,15,15,17,16,0,17,16,17,18,15,16,18,18,9,17,15,10,16,17,0,0,18,0,9,16,10,8,0,18,10,18,17,0,2,17,17,14,17,10,9,9,16,7,16,9,9,9,16,14,7,7,16,14,0,9,14,16,16,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,18,16,16,7,9,16,16,16,16,7,16,14,16,16,0,16,14,16,16,16,16,16,16,7,16,14,11,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,4,16,18,14,18,11,10,10,17,8,17,10,10,9,16,15,8,7,17,15,0,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,0,15,0,17,3,17,10,0,2,10,17,7,10,10,8,8,15,8,15,8,8,7,14,15,8,7,15,15,0,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,17,24,8,17,17,25,17,23,15,15,14,32,22,0,24,30,24,25,22,23,32,25,16,17,15,17,30,17,0,0,17,18,16,16,17,15,0,0,10,25,17,0,2,17,24,14,24,10,10,10,10,1,3,10,10,9,9,1,8,7,10,8,0,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,10,7,10,3,18,17,24,8,17,17,17,17,23,15,15,14,24,22,0,17,22,24,25,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,25,10,0,17,0,2,17,24,14,17,10,17,17,18,8,10,17,18,16,16,8,15,14,17,15,0,18,16,16,17,16,16,17,17,8,18,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,0,2,2,2,2,2,0,2,0,2,2,0,2,0,2,2,2,2,2,2,0,2,0,4,0,2,0,0,2,2,2,4,2,0,0,2,2,2,2,0,0,2,5,0,4,4,17,17,17,8,10,17,17,16,16,8,15,14,17,15,0,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,0,17,14,17,10,19,18,24,8,17,17,18,16,23,15,18,14,25,24,0,17,22,23,24,17,23,25,18,8,17,16,19,22,17,0,0,17,17,16,18,17,15,0,24,10,24,17,0,5,17,0,14,19,12,14,14,14,7,7,14,14,14,14,7,14,14,14,14,0,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,26,17,17,8,10,17,24,16,16,8,17,14,24,17,0,24,22,16,17,24,16,24,24,15,17,15,12,22,17,0,0,17,17,9,18,10,8,0,24,10,17,17,0,4,17,19,14,0,12,12,10,10,8,10,10,10,9,9,8,10,7,10,10,0,10,8,9,10,10,9,10,10,8,10,8,12,8,10,0,0,10,10,9,11,10,8,0,10,3,10,10,0,4,10,12,7,12,0,0,18,18,9,10,24,24,24,17,8,22,14,24,15,24,0,23,16,18,22,16,24,24,22,18,22,10,22,24,0,0,25,25,9,23,10,8,0,25,10,17,17,0,2,25,17,21,31,17,18,0,17,9,10,17,17,16,17,8,15,14,17,15,17,0,15,16,18,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,18,17,14,17,10,18,17,0,8,10,18,19,17,17,8,16,14,17,15,19,0,18,16,17,16,16,17,18,9,19,15,10,15,18,0,0,18,18,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,9,9,8,0,9,8,8,7,8,8,9,7,8,8,8,0,8,7,9,8,7,8,8,8,9,8,8,8,8,0,0,8,8,7,7,8,8,0,9,1,8,8,0,0,9,8,7,8,8,10,10,10,9,0,10,12,9,9,8,9,9,10,8,10,0,8,11,10,8,9,12,10,8,11,10,10,8,10,0,0,12,12,9,9,10,8,0,10,5,10,12,0,2,10,10,7,10,10,24,17,18,8,10,0,18,23,17,8,23,14,17,15,18,0,16,16,17,15,16,17,18,16,17,22,10,15,24,0,0,24,24,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,24,17,19,8,12,18,0,16,17,8,16,16,25,15,26,0,25,18,17,24,16,27,26,17,18,17,10,23,18,0,0,19,19,9,16,10,8,0,25,12,17,20,0,2,18,17,14,24,10,24,16,17,7,9,23,16,0,16,7,21,14,16,14,16,0,15,16,16,14,16,16,16,14,17,21,9,14,23,0,0,24,24,9,23,9,7,0,16,9,16,16,0,2,23,16,21,23,16,17,17,17,8,9,17,17,16,0,7,15,14,16,14,17,0,15,16,17,14,16,16,17,8,16,14,9,14,16,0,0,16,16,9,16,9,7,0,17,9,16,16,0,2,17,16,14,16,9,8,8,8,8,8,8,8,7,7,0,8,7,8,8,8,0,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,22,15,16,9,9,23,16,21,15,8,0,14,15,15,16,0,16,14,15,15,14,15,16,16,16,22,8,15,22,0,0,22,22,7,21,8,8,0,15,8,15,15,0,0,22,15,21,22,15,14,14,14,7,9,14,16,14,14,7,14,0,14,14,14,0,14,16,14,14,14,16,14,7,14,16,7,14,14,0,0,16,16,7,14,7,7,0,14,9,14,16,0,0,14,14,14,14,7,24,17,17,8,10,17,25,16,16,8,15,14,0,15,24,0,23,16,17,23,16,25,25,16,17,15,10,23,17,0,0,17,17,9,16,10,8,0,25,10,17,17,0,2,18,17,14,24,10,15,15,15,8,8,15,15,14,14,8,15,14,15,0,15,0,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,24,17,19,8,10,18,26,16,17,8,16,14,24,15,0,0,24,16,17,23,16,24,25,16,18,15,10,22,18,0,0,17,17,9,16,10,8,0,24,10,17,18,0,2,17,17,14,24,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,15,18,8,8,16,25,15,15,8,16,14,23,15,24,0,0,16,15,24,14,23,24,17,17,15,8,23,16,0,0,16,16,7,14,8,8,0,23,8,15,16,0,0,16,15,14,22,8,16,16,16,7,11,16,18,16,16,7,14,16,16,14,16,0,16,0,16,14,16,18,16,7,16,16,9,14,16,0,0,18,18,9,16,9,7,0,16,11,16,18,0,2,16,16,14,16,9,18,18,17,9,10,17,17,16,17,8,15,14,17,15,17,0,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,18,17,14,17,10,22,15,16,8,8,15,24,14,14,8,15,14,23,15,23,0,24,14,15,0,14,23,23,16,16,15,8,23,16,0,0,15,15,7,14,8,8,0,23,8,15,16,0,0,16,15,14,22,8,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,0,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,24,17,17,8,12,17,27,16,16,8,15,16,25,15,24,0,23,18,17,23,16,0,25,16,17,17,10,23,17,0,0,19,19,9,16,10,8,0,25,12,17,19,0,2,18,17,14,24,10,24,17,18,8,10,18,26,16,17,8,16,14,25,15,25,0,24,16,17,23,16,25,0,17,17,15,10,23,17,0,0,17,17,9,16,10,8,0,25,10,17,17,0,2,18,17,14,24,10,22,8,9,8,8,16,17,14,8,8,16,7,16,8,16,0,17,7,8,16,7,16,17,0,8,15,8,16,15,0,0,15,15,7,14,8,8,0,16,1,8,8,0,0,16,8,14,22,15,18,17,19,9,11,17,18,17,16,8,16,14,17,15,18,0,17,16,17,16,16,17,17,8,0,15,10,15,18,0,0,18,18,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,22,15,15,8,10,22,17,21,14,8,22,16,15,15,15,0,15,16,15,15,14,17,15,15,15,0,8,15,22,0,0,24,24,7,21,8,8,0,15,10,15,17,0,0,22,15,21,22,15,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,0,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,22,15,15,8,8,15,23,14,14,8,15,14,23,15,22,0,23,14,15,23,14,23,23,16,15,15,8,0,15,0,0,15,15,7,14,8,8,0,23,8,15,15,0,0,16,15,14,22,8,24,17,18,8,10,24,18,23,16,8,22,14,17,15,18,0,16,16,17,16,16,17,17,15,18,22,10,15,0,0,0,24,24,9,23,10,8,0,17,10,17,18,0,2,24,17,21,24,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,17,18,8,12,24,19,24,16,8,22,16,17,15,17,0,16,18,17,15,16,19,17,15,18,24,10,15,24,0,0,0,27,9,23,10,8,0,17,12,17,19,0,2,24,17,21,24,17,25,17,18,8,12,24,19,24,16,8,22,16,17,15,17,0,16,18,17,15,16,19,17,15,18,24,10,15,24,0,0,27,0,9,23,10,8,0,17,12,17,19,0,2,24,17,21,24,17,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,0,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,0,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,23,23,9,0,9,7,0,16,9,16,16,0,2,23,16,21,23,16,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,0,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,0,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,0,0,8,1,8,8,0,0,8,8,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,18,17,9,10,17,25,16,17,8,15,14,25,15,24,0,23,16,18,23,16,25,25,16,17,15,10,23,17,0,0,17,17,9,16,10,8,0,0,10,17,17,0,2,19,17,14,24,10,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,0,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,12,12,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,0,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,17,17,18,8,12,17,20,16,16,8,15,16,17,15,18,0,16,18,17,16,16,19,17,8,18,17,10,15,18,0,0,19,19,9,16,10,8,0,17,12,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,0,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,25,18,17,9,10,24,18,23,17,8,22,14,18,15,17,0,16,16,18,16,16,18,18,16,17,22,10,16,24,0,0,24,24,9,23,10,8,0,19,10,17,17,0,2,0,17,21,24,17,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,0,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,0,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,21,21,7,21,7,7,0,14,7,14,14,0,0,21,14,0,21,14,31,17,17,8,10,24,24,23,16,8,22,14,24,15,24,0,22,16,17,22,16,24,24,22,17,22,10,22,24,0,0,24,24,9,23,10,8,0,24,10,17,17,0,2,24,17,21,0,17,17,10,10,8,10,17,10,16,9,8,15,7,10,8,10,0,8,9,10,8,9,10,10,15,10,15,10,8,17,0,0,17,17,9,16,10,8,0,10,3,10,10,0,2,17,10,14,17,0,0,15,17,8,8,15,23,16,14,8,15,14,23,16,24,23,0,14,15,22,14,23,23,16,16,15,8,23,15,0,0,16,16,7,14,8,8,0,23,8,15,15,0,0,15,15,14,22,8,15,0,15,8,8,15,15,14,14,8,15,14,15,15,15,15,0,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,17,15,0,9,15,16,17,17,23,16,17,14,22,24,25,18,0,22,22,16,21,22,16,9,17,15,15,23,17,0,0,16,16,14,14,15,15,0,22,8,22,16,0,0,15,22,14,15,9,8,8,9,0,8,10,8,8,8,9,9,7,8,9,8,8,0,8,8,8,7,8,8,8,8,8,8,9,9,0,0,8,8,7,7,8,8,0,10,1,8,8,0,0,8,8,7,8,9,8,8,15,8,0,8,8,7,14,15,8,7,15,15,15,8,0,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,15,15,16,10,8,0,17,14,15,9,16,15,15,16,17,16,0,14,15,15,14,16,17,10,15,15,8,16,15,0,0,16,16,7,14,8,8,0,17,8,15,15,0,0,15,15,14,15,8,23,15,17,8,8,17,0,14,15,9,16,15,24,16,26,25,0,14,15,24,14,25,26,19,16,15,8,25,16,0,0,16,16,7,14,8,8,0,24,8,15,16,0,0,16,15,14,22,8,16,14,17,8,7,14,14,0,15,8,15,14,14,16,15,15,0,15,14,14,14,14,14,7,15,14,7,15,15,0,0,15,15,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,8,14,14,23,8,14,15,15,15,0,15,16,14,21,22,22,15,0,22,21,14,21,21,15,8,14,14,14,22,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,8,8,8,16,9,15,9,9,8,15,0,11,10,15,19,16,8,0,15,15,10,14,16,9,11,8,10,15,19,9,0,0,9,9,14,7,15,17,0,15,1,15,8,0,0,8,15,9,8,9,15,15,17,9,8,16,16,15,16,11,0,16,15,18,16,16,0,15,15,17,14,15,16,11,15,17,8,18,16,0,0,15,15,7,14,8,10,0,15,8,15,15,0,0,15,15,16,15,9,14,14,14,7,7,15,15,14,14,10,16,0,14,17,15,14,0,14,14,16,14,15,15,10,14,16,7,17,14,0,0,15,15,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,23,15,22,8,15,15,24,14,21,15,15,14,0,22,30,23,0,21,22,23,21,31,24,17,15,15,15,31,15,0,0,15,15,14,14,15,15,0,31,8,22,15,0,0,16,22,14,22,8,16,15,24,9,15,16,16,16,22,19,18,17,22,0,24,15,0,22,22,17,21,23,16,11,15,17,15,26,16,0,0,16,16,14,14,15,17,0,22,8,22,15,0,0,15,22,16,15,9,24,15,25,8,15,17,26,15,22,16,16,15,30,24,0,24,0,21,22,23,21,31,25,18,16,15,15,31,16,0,0,16,16,14,14,15,15,0,30,8,22,16,0,0,15,22,14,22,8,23,15,18,8,8,16,25,15,15,8,16,14,23,15,24,0,0,16,15,24,14,23,24,17,17,15,8,23,16,0,0,16,16,7,14,8,8,0,23,8,15,16,0,0,16,15,14,22,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,22,8,14,14,14,15,22,15,15,14,21,22,21,16,0,0,21,14,21,21,14,7,14,14,14,22,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,8,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,0,21,0,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,8,22,15,16,8,8,15,24,14,14,10,17,16,23,17,23,24,0,14,15,0,14,23,23,18,16,17,8,25,16,0,0,15,15,7,14,8,10,0,23,8,15,16,0,0,16,15,16,22,8,14,14,21,7,14,14,14,14,21,14,14,14,21,21,21,14,0,21,21,14,0,21,14,7,14,14,14,21,14,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,7,23,15,22,8,15,16,25,14,21,16,15,15,31,23,31,23,0,21,22,23,21,0,25,18,15,15,15,32,15,0,0,16,16,14,14,15,15,0,31,8,22,15,0,0,16,22,14,22,8,23,15,16,8,8,17,26,14,15,9,16,15,24,16,25,24,0,14,15,23,14,25,0,19,15,15,8,25,15,0,0,16,16,7,14,8,8,0,24,8,15,15,0,0,16,15,14,22,8,16,8,9,8,8,10,19,7,8,11,11,10,17,11,18,17,0,7,8,18,7,18,19,0,8,10,8,20,8,0,0,9,9,7,7,8,10,0,17,1,8,8,0,0,9,8,9,15,8,16,15,17,8,8,15,16,15,14,8,15,14,15,15,16,17,0,14,15,16,14,15,15,8,0,15,8,15,16,0,0,16,16,7,14,8,8,0,15,8,15,16,0,0,15,15,14,15,8,15,15,15,8,8,15,15,14,14,10,17,16,15,17,15,15,0,14,15,17,14,15,15,10,15,0,8,17,15,0,0,15,15,7,14,8,10,0,15,8,15,15,0,0,15,15,16,15,8,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,0,14,15,8,14,15,8,8,8,8,0,15,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,23,15,23,9,15,16,25,15,22,19,18,17,31,26,31,23,0,22,22,25,21,32,25,20,15,17,15,0,16,0,0,16,16,14,14,15,17,0,31,8,22,15,0,0,16,22,16,22,9,15,15,17,9,8,15,16,15,15,9,16,14,15,16,16,16,0,15,15,16,14,15,15,8,16,15,8,16,0,0,0,15,15,7,14,8,8,0,15,8,15,16,0,0,15,15,14,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,15,16,8,8,16,16,15,14,9,15,15,15,16,16,16,0,14,15,15,14,16,16,9,16,15,8,16,15,0,0,0,17,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,16,15,16,8,8,16,16,15,14,9,15,15,15,16,16,16,0,14,15,15,14,16,16,9,16,15,8,16,15,0,0,17,0,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,7,7,14,7,14,7,7,7,14,14,7,7,14,14,14,7,0,14,14,7,14,14,7,7,7,7,14,14,7,0,0,7,7,0,7,14,14,0,14,0,14,7,0,0,7,14,7,7,7,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,0,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,0,7,7,0,14,7,14,14,0,0,14,14,14,14,7,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,0,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,0,15,0,15,1,15,8,0,0,8,15,7,8,8,8,8,15,8,15,8,8,7,14,17,10,9,15,17,15,8,0,14,15,10,14,15,8,10,8,10,15,17,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,9,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,15,22,10,15,17,24,14,21,15,15,14,31,22,30,23,0,21,22,23,21,31,24,17,15,15,15,31,15,0,0,15,15,14,14,15,15,0,0,8,22,15,0,0,16,22,14,22,8,8,8,8,1,1,8,8,7,7,1,8,7,8,8,8,8,0,7,8,8,7,8,8,1,8,8,1,8,8,0,0,8,8,0,7,1,1,0,8,0,8,8,0,0,8,8,7,8,1,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,0,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,0,15,0,0,15,22,14,15,8,15,15,16,8,8,15,16,14,14,8,15,14,15,15,16,16,0,14,15,16,14,15,15,8,16,15,8,15,16,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,8,8,15,16,14,14,8,15,14,16,15,15,16,0,14,15,16,14,16,16,9,15,15,8,16,15,0,0,15,15,7,14,8,8,0,16,8,15,15,0,0,0,15,14,15,8,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,0,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,0,14,15,8,14,14,14,7,7,14,14,14,14,9,16,16,14,16,14,14,0,14,14,16,14,14,14,9,14,16,7,16,14,0,0,14,14,7,14,7,9,0,14,7,14,14,0,0,14,14,0,14,7,22,15,15,8,8,15,22,14,14,8,15,14,22,15,22,22,0,14,15,22,14,22,22,15,15,15,8,22,15,0,0,15,15,7,14,8,8,0,22,8,15,15,0,0,15,15,14,0,8,8,8,9,9,8,8,8,8,8,9,9,7,8,9,8,8,0,8,8,8,7,8,8,8,8,8,8,9,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,0,0,17,16,7,9,16,16,17,16,8,15,14,16,15,17,16,14,0,17,14,16,16,16,7,16,14,9,14,16,0,0,16,17,9,16,9,7,0,17,9,17,16,0,2,17,16,14,16,10,17,0,16,7,9,16,16,16,16,8,15,14,16,15,16,16,14,0,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,17,16,14,16,10,16,16,0,8,17,16,16,18,24,15,15,14,24,22,23,16,22,0,23,15,23,23,16,7,17,15,16,22,18,0,0,16,16,16,16,17,15,0,23,10,23,16,0,2,16,23,14,17,11,7,7,8,0,7,7,7,8,8,8,8,7,7,8,7,7,8,0,7,7,7,7,7,7,7,7,7,8,8,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,8,9,9,17,7,0,9,11,10,16,14,7,9,17,14,16,11,14,0,16,8,16,18,9,7,10,10,16,14,10,0,0,11,11,16,9,17,15,0,16,5,16,11,0,2,9,16,7,10,10,16,16,16,7,9,0,16,16,16,7,14,14,16,14,16,16,14,0,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,16,7,11,16,0,16,16,7,14,16,16,14,16,18,14,0,16,14,16,18,16,7,16,16,9,14,16,0,0,18,18,9,16,9,7,0,16,11,16,18,0,2,16,16,14,16,9,17,16,18,8,10,16,16,0,18,8,15,15,17,15,17,16,15,0,17,15,17,16,16,7,17,15,9,15,18,0,0,16,17,10,17,10,8,0,17,10,17,16,0,3,16,16,15,17,11,16,16,24,8,16,16,16,18,0,15,15,15,23,22,23,16,22,0,23,14,24,23,16,7,16,14,16,22,17,0,0,16,16,17,17,16,15,0,23,9,23,16,0,3,16,23,15,16,10,8,8,15,8,14,7,7,8,15,0,9,7,14,16,14,7,15,0,14,7,14,14,7,7,7,7,14,15,8,0,0,7,7,14,7,14,14,0,14,0,14,7,0,0,8,14,7,7,9,15,15,15,8,7,14,14,15,15,9,0,14,14,16,14,14,15,0,14,14,14,14,14,7,14,14,7,15,15,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,15,14,14,14,9,14,14,14,7,9,14,16,15,15,7,14,0,14,14,14,16,14,0,14,14,15,16,14,7,14,16,7,14,14,0,0,16,16,8,15,7,7,0,14,9,14,16,0,1,14,14,15,14,7,16,16,24,7,17,16,16,17,23,14,14,14,0,21,23,16,21,0,23,15,23,23,16,7,17,15,16,21,17,0,0,16,16,16,16,17,15,0,23,10,23,16,0,2,16,23,14,17,10,15,15,22,8,14,14,14,15,22,16,16,14,21,0,21,14,22,0,21,14,21,21,14,7,14,14,14,22,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,15,21,14,14,9,17,16,23,7,16,16,16,17,23,14,14,14,23,21,0,16,21,0,24,14,23,23,16,7,16,14,16,21,16,0,0,16,17,16,16,16,14,0,24,9,24,16,0,2,16,23,14,16,9,16,16,16,7,11,16,18,16,16,7,14,16,16,14,16,0,16,0,16,14,16,18,16,7,16,16,9,14,16,0,0,18,18,9,16,9,7,0,16,11,16,18,0,2,16,16,14,16,9,14,14,22,8,14,14,14,15,22,15,15,14,21,22,21,16,0,0,21,14,21,21,14,7,14,14,14,22,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,16,23,7,16,16,16,17,23,14,14,14,23,21,24,16,21,0,0,14,23,23,16,7,16,14,16,21,16,0,0,16,17,16,16,16,14,0,24,9,24,16,0,2,16,23,14,16,9,14,14,15,7,8,14,14,15,14,7,14,14,15,14,14,14,14,0,14,0,14,14,14,7,15,15,7,14,15,0,0,14,14,7,14,8,8,0,14,8,14,14,0,0,14,14,14,15,8,16,16,23,7,16,16,16,17,24,14,14,15,23,21,23,16,21,0,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,17,17,16,14,0,23,9,23,16,0,3,16,23,15,16,9,16,16,23,7,18,16,18,16,23,14,14,16,23,21,23,18,21,0,23,14,23,0,16,7,16,16,16,21,16,0,0,18,18,16,16,16,14,0,23,11,23,18,0,2,16,23,14,16,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,0,16,14,16,16,0,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,0,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,16,16,17,7,10,16,16,17,16,7,14,14,17,14,16,16,14,0,16,15,16,16,16,7,0,15,9,14,17,0,0,16,16,9,16,10,8,0,16,10,16,16,0,2,16,16,14,17,10,14,14,15,7,10,14,16,15,14,7,14,16,15,14,14,16,14,0,14,15,14,16,14,7,15,0,7,14,15,0,0,16,16,7,14,8,8,0,14,10,14,16,0,0,14,14,14,15,8,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,0,16,7,16,16,9,7,9,7,0,14,9,0,0,9,9,16,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,14,14,22,8,14,14,14,15,22,15,15,14,21,22,21,14,22,0,21,14,21,21,14,7,14,14,14,0,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,8,16,16,18,8,10,16,16,18,17,8,15,14,17,15,16,16,15,0,16,15,16,16,16,7,17,15,9,15,0,0,0,16,16,9,16,10,8,0,16,10,16,16,0,2,16,16,14,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,7,11,16,18,16,16,7,14,16,16,14,16,18,14,0,16,14,16,18,16,7,16,16,9,14,16,0,0,0,18,9,16,9,7,0,16,11,16,18,0,2,16,16,14,16,9,17,16,16,7,11,16,18,17,16,7,14,16,16,14,17,18,14,0,17,14,16,18,16,7,16,16,9,14,16,0,0,18,0,9,16,9,7,0,17,11,17,18,0,2,16,16,14,16,9,9,9,16,7,16,9,9,10,17,14,7,8,16,14,16,9,14,0,16,7,17,16,9,7,9,7,16,14,9,0,0,9,9,0,10,16,14,0,16,2,16,9,0,3,9,16,8,9,9,16,16,16,7,9,16,16,17,17,7,14,15,16,14,16,16,14,0,16,14,17,16,16,7,16,14,9,14,16,0,0,16,16,10,0,9,7,0,16,9,16,16,0,3,16,16,16,16,9,9,9,17,7,17,9,9,10,16,14,7,7,17,14,16,9,14,0,16,8,16,16,9,7,10,8,16,14,10,0,0,9,9,16,9,0,15,0,16,3,16,9,0,2,9,16,7,10,10,7,7,15,7,15,7,7,8,15,14,7,7,15,14,14,7,14,0,14,8,14,14,7,7,8,8,14,14,8,0,0,7,7,14,7,15,0,0,14,1,14,7,0,0,7,14,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,16,23,7,16,16,16,17,23,14,14,14,23,21,24,16,21,0,24,14,23,23,16,7,16,14,16,21,16,0,0,16,17,16,16,16,14,0,0,9,24,16,0,2,16,23,14,16,9,9,9,10,0,5,9,11,10,9,0,7,9,10,7,9,11,7,0,9,8,9,11,9,0,10,10,2,7,10,0,0,11,11,2,9,3,1,0,9,0,9,11,0,2,9,9,7,10,3,17,16,23,7,16,16,16,17,23,14,14,14,23,21,24,16,21,0,24,14,23,23,16,7,16,14,16,21,16,0,0,16,17,16,16,16,14,0,24,9,0,16,0,2,16,23,14,16,9,16,16,16,7,11,16,18,16,16,7,14,16,16,14,16,18,14,0,16,14,16,18,16,7,16,16,9,14,16,0,0,18,18,9,16,9,7,0,16,11,16,0,0,2,16,16,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,3,3,0,0,1,2,0,2,2,0,0,2,0,3,2,2,0,2,0,2,0,2,0,0,2,2,3,3,2,0,0,2,2,2,2,0,0,2,2,1,2,2,17,17,16,7,9,16,16,16,16,8,15,14,16,15,16,16,14,0,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,0,16,14,16,10,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,0,23,14,23,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,0,14,16,9,14,14,14,7,7,14,14,15,15,7,14,15,14,14,14,14,14,0,14,14,15,14,14,7,14,14,7,14,14,0,0,14,14,8,16,7,7,0,14,7,14,14,0,1,14,14,0,14,7,16,16,17,7,10,16,16,17,16,7,14,14,17,14,16,16,14,0,16,15,16,16,16,7,17,15,9,14,17,0,0,16,16,9,16,10,8,0,16,10,16,16,0,2,16,16,14,0,10,10,10,11,8,10,9,9,11,10,9,9,7,10,9,9,9,8,0,9,8,9,9,9,7,10,8,9,8,11,0,0,9,9,9,9,10,8,0,9,3,9,9,0,2,10,9,7,10,0,0,18,17,9,10,17,17,17,17,8,15,14,17,15,18,18,15,17,0,15,16,17,17,8,17,15,10,15,17,0,0,17,18,9,16,10,8,0,19,10,18,17,0,2,18,17,14,17,10,18,0,17,9,10,17,17,16,17,8,15,14,17,15,17,18,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,18,17,14,17,10,17,17,0,8,17,17,17,18,25,15,15,14,26,22,24,17,22,23,0,15,23,24,17,8,17,15,17,22,17,0,0,17,17,18,16,17,15,0,24,10,24,17,0,2,17,24,14,17,10,9,9,8,0,15,15,8,14,15,15,15,7,8,15,8,9,8,7,0,8,7,8,8,8,15,8,8,8,8,0,0,8,8,7,14,15,8,0,9,8,8,8,0,0,9,8,14,8,8,10,10,17,15,0,17,10,16,23,22,15,7,17,22,17,10,15,16,0,8,16,17,10,8,17,8,17,15,10,0,0,10,10,16,16,24,15,0,17,10,17,10,0,2,10,17,14,10,10,17,17,17,15,17,0,17,24,23,17,22,14,17,22,17,17,15,16,0,15,16,17,17,8,24,15,10,15,17,0,0,17,17,9,23,17,8,0,17,17,17,17,0,2,17,17,21,17,10,17,17,17,8,10,17,0,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,17,16,18,14,16,24,16,0,25,15,21,14,18,21,17,16,14,17,0,14,16,16,16,7,23,14,9,14,16,0,0,16,17,11,23,16,7,0,17,16,17,16,0,2,16,16,21,16,9,17,17,25,15,23,23,16,25,0,21,21,14,25,28,23,17,21,23,0,14,23,23,16,7,23,14,16,21,16,0,0,16,16,18,23,23,14,0,24,16,23,16,0,2,17,23,21,16,9,8,8,15,15,22,17,8,15,21,0,15,7,15,22,15,8,15,14,0,8,14,15,8,8,15,8,15,15,8,0,0,8,8,14,14,22,15,0,15,8,15,8,0,0,8,15,14,8,8,15,15,15,15,15,22,15,21,21,15,0,14,15,22,15,15,15,14,0,15,14,15,15,8,22,15,8,15,15,0,0,15,15,7,21,15,8,0,15,15,15,15,0,0,15,15,21,15,8,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,0,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,17,17,26,8,17,17,17,18,25,15,15,14,0,22,24,17,22,23,0,15,23,24,17,8,17,15,17,22,17,0,0,17,17,18,16,17,15,0,24,10,24,17,0,2,17,24,14,17,10,15,15,22,15,22,22,15,21,28,22,22,14,22,0,22,15,22,21,0,15,21,22,15,8,22,15,15,22,15,0,0,15,15,14,21,22,15,0,22,15,22,15,0,0,15,22,21,15,8,18,17,24,8,17,17,17,17,23,15,15,14,24,22,0,17,22,24,0,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,25,10,25,17,0,2,17,24,14,17,10,18,18,17,9,10,17,17,16,17,8,15,14,17,15,17,0,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,18,17,14,17,10,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,0,21,0,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,8,17,16,23,7,16,16,16,17,23,14,14,14,23,21,24,16,21,0,0,14,23,23,16,7,16,14,16,21,16,0,0,16,17,16,16,16,14,0,24,9,24,16,0,2,16,23,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,0,0,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,0,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,0,15,23,0,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,24,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,0,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,0,8,7,8,8,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,17,17,17,15,17,24,17,23,23,15,22,14,17,22,17,17,15,16,0,15,16,17,17,8,0,15,10,15,17,0,0,17,17,9,23,17,8,0,17,17,17,17,0,2,17,17,21,17,10,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,0,15,14,15,15,8,15,0,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,0,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,22,21,0,15,21,22,15,8,15,15,15,0,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,8,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,0,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,18,17,17,8,10,17,17,17,16,8,15,14,17,15,18,17,15,17,0,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,18,10,18,17,0,2,17,17,14,17,10,9,9,18,7,16,9,9,11,18,14,7,7,18,14,16,9,14,16,0,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,16,16,16,14,16,23,16,23,23,14,21,14,16,21,16,16,14,16,0,14,16,16,16,7,23,14,9,14,16,0,0,16,16,9,0,16,7,0,16,16,16,16,0,2,16,16,21,16,9,10,10,17,15,24,17,10,16,23,22,15,7,17,22,17,10,15,16,0,8,16,17,10,8,17,8,17,15,10,0,0,10,10,16,16,0,15,0,17,10,17,10,0,2,10,17,14,10,10,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,15,14,0,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,18,24,9,17,17,17,17,24,15,15,14,24,22,25,18,22,24,0,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,0,10,25,17,0,2,18,24,14,17,10,10,10,10,8,10,17,10,16,16,8,15,7,10,15,10,10,8,9,0,8,9,10,10,1,17,8,3,8,10,0,0,10,10,2,16,10,1,0,10,0,10,10,0,9,10,10,14,10,3,18,17,24,8,17,17,17,17,23,15,15,14,24,22,25,17,22,24,0,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,25,10,0,17,0,2,17,24,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,0,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,9,2,2,0,0,2,2,0,2,2,18,18,17,9,10,17,17,16,17,8,15,14,17,15,17,18,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,0,17,14,17,10,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,0,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,0,14,17,10,14,14,14,14,14,21,14,21,21,14,21,14,14,21,14,14,14,14,0,14,14,14,14,7,21,14,7,14,14,0,0,14,14,7,21,14,7,0,14,14,14,14,0,0,14,14,0,14,7,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,0,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,0,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,0,0,15,15,8,8,15,22,14,14,8,22,14,22,22,24,22,22,14,15,0,14,22,22,15,15,15,10,22,15,0,0,15,15,7,16,8,8,0,22,8,15,15,0,2,15,17,14,24,13,15,0,15,15,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,22,8,22,15,8,15,15,0,0,15,15,7,14,8,8,0,15,15,15,15,0,0,15,15,14,15,8,15,15,0,8,9,15,16,15,14,8,15,14,16,15,16,16,16,15,15,0,14,15,15,8,17,16,8,15,17,0,0,15,15,7,14,9,9,0,15,9,15,16,0,0,15,15,14,16,9,8,15,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,0,7,8,15,8,15,8,8,8,8,0,0,8,8,7,7,8,8,0,8,8,8,8,0,0,8,8,7,8,8,8,8,9,8,0,8,8,8,7,8,8,7,9,8,8,8,8,8,8,0,7,8,8,8,9,9,8,8,9,0,0,8,8,7,7,9,9,0,8,2,8,8,0,0,8,8,7,9,9,15,15,15,8,8,0,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,22,15,16,8,8,15,0,14,14,8,15,14,23,15,23,24,24,14,15,0,14,23,23,16,16,15,8,23,16,0,0,15,15,7,14,8,8,0,23,8,15,16,0,0,16,15,14,22,8,14,14,15,7,8,14,14,0,14,7,14,14,15,14,14,14,14,15,14,0,14,14,14,7,15,15,7,14,15,0,0,14,14,7,14,8,8,0,14,8,14,14,0,0,14,14,14,15,8,14,14,14,7,7,14,14,14,0,7,14,14,14,14,14,14,14,14,14,0,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,8,8,8,8,8,8,8,7,7,0,10,9,8,10,8,8,10,7,8,0,7,8,8,10,8,10,8,10,8,0,0,8,8,7,7,8,10,0,8,1,8,8,0,0,8,8,9,8,8,22,15,15,8,8,15,15,14,14,10,0,16,15,24,17,15,17,14,15,0,14,15,15,10,15,17,10,17,15,0,0,15,15,7,16,8,10,0,15,8,15,15,0,2,15,17,16,17,13,14,14,14,7,7,14,14,14,14,9,16,0,14,16,14,14,16,14,14,0,14,14,14,9,14,16,7,16,14,0,0,14,14,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,22,15,16,8,9,15,23,15,14,8,15,14,0,15,22,23,23,15,15,0,14,23,23,16,16,16,8,23,16,0,0,15,15,7,14,9,9,0,23,9,15,15,0,0,16,15,14,23,9,22,15,15,8,8,15,15,14,14,10,24,16,15,0,17,15,17,14,15,0,14,15,15,10,15,17,10,17,15,0,0,15,15,7,16,8,10,0,15,8,15,15,0,2,15,17,16,17,13,24,15,16,8,8,15,23,14,14,8,17,14,22,17,0,23,23,14,15,0,14,22,22,15,16,15,10,22,16,0,0,15,15,7,16,8,8,0,22,8,15,16,0,2,15,17,14,24,10,22,15,16,8,8,15,24,14,14,8,15,14,23,15,23,0,24,14,15,0,14,23,23,16,16,15,8,23,16,0,0,15,15,7,14,8,8,0,23,8,15,16,0,0,16,15,14,22,8,22,15,16,8,8,15,24,14,14,10,17,16,23,17,23,24,0,14,15,0,14,23,23,18,16,17,8,25,16,0,0,15,15,7,14,8,10,0,23,8,15,16,0,0,16,15,16,22,8,14,14,15,7,8,14,14,15,14,7,14,14,15,14,14,14,14,0,14,0,14,14,14,7,15,15,7,14,15,0,0,14,14,7,14,8,8,0,14,8,14,14,0,0,14,14,14,15,8,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,0,0,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,0,0,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,22,15,15,8,8,15,23,14,14,8,15,14,23,15,22,23,23,14,15,0,14,0,23,16,15,15,8,23,15,0,0,15,15,7,14,8,8,0,23,8,15,15,0,0,16,15,14,22,8,22,22,15,15,8,15,23,14,14,8,15,14,23,15,22,23,23,14,15,0,14,23,0,16,22,15,8,23,15,0,0,15,15,7,14,8,8,0,23,15,15,15,0,0,16,15,14,22,8,15,8,8,8,8,8,16,7,7,10,10,9,16,10,15,16,18,7,8,0,7,16,16,0,8,10,8,18,8,0,0,8,8,7,7,8,10,0,16,1,8,8,0,0,9,8,9,15,8,15,22,17,15,9,15,16,15,14,8,15,14,16,15,16,16,16,15,15,0,14,15,22,8,0,16,8,15,17,0,0,15,15,7,14,9,9,0,15,16,15,16,0,0,15,15,14,16,9,15,15,16,8,9,15,15,15,14,10,17,16,16,17,15,15,17,15,15,0,14,15,15,10,16,0,8,17,16,0,0,15,15,7,14,9,11,0,15,9,15,15,0,0,15,15,16,16,9,10,8,8,8,8,8,8,7,7,8,10,7,8,10,10,8,8,7,8,0,7,8,8,8,8,8,0,8,8,0,0,8,8,7,9,8,8,0,8,1,8,8,0,2,8,10,7,10,10,22,15,15,8,8,15,23,14,14,10,17,16,23,17,22,23,25,14,15,0,14,23,23,18,15,17,8,0,15,0,0,15,15,7,14,8,10,0,23,8,15,15,0,0,16,15,16,22,8,15,15,17,8,9,15,16,15,14,8,15,14,16,15,16,16,16,15,15,0,14,15,15,8,17,16,8,15,0,0,0,15,15,7,14,9,9,0,15,9,15,16,0,0,15,15,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,15,8,15,15,8,15,15,0,0,0,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,15,8,15,15,8,15,15,0,0,15,0,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,0,0,7,7,0,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,16,14,14,7,7,14,14,14,14,7,16,14,14,16,16,14,14,14,14,0,14,14,14,7,14,14,9,14,14,0,0,14,14,7,0,7,7,0,14,7,14,14,0,2,14,16,14,16,9,8,8,9,8,9,8,8,8,7,8,8,7,9,8,8,8,8,8,8,0,7,8,8,8,9,9,8,8,9,0,0,8,8,7,7,0,9,0,8,2,8,8,0,0,8,8,7,9,9,8,8,9,8,9,8,8,8,7,10,10,9,9,10,8,8,10,8,8,0,7,8,8,10,9,11,8,10,9,0,0,8,8,7,7,9,0,0,8,2,8,8,0,0,8,8,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,15,15,8,8,15,23,14,14,8,15,14,23,15,22,23,23,14,15,0,14,23,23,16,15,15,8,23,15,0,0,15,15,7,14,8,8,0,0,8,15,15,0,0,16,15,14,22,8,8,15,9,8,2,8,8,8,7,1,8,7,9,8,8,8,8,8,8,0,7,8,15,1,16,9,1,8,9,0,0,8,8,0,7,2,2,0,8,0,8,8,0,0,8,8,7,9,2,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,0,15,0,0,15,15,14,15,8,15,15,16,8,8,15,16,14,14,8,15,14,15,15,16,16,16,14,15,0,14,15,15,8,16,15,8,15,16,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,15,15,15,8,8,15,16,14,14,8,15,14,16,15,15,16,16,14,15,0,14,16,16,9,15,15,8,16,15,0,0,15,15,7,14,8,8,0,16,8,15,15,0,0,0,15,14,15,8,17,15,15,8,8,15,15,14,14,8,17,14,15,17,17,15,15,14,15,0,14,15,15,8,15,15,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,15,0,14,17,10,14,14,14,7,7,14,14,14,14,9,16,16,14,16,14,14,16,14,14,0,14,14,14,9,14,16,7,16,14,0,0,14,14,7,14,7,9,0,14,7,14,14,0,0,14,14,0,14,7,24,15,16,8,9,15,22,15,14,8,17,14,23,17,24,22,22,15,15,0,14,22,22,15,16,16,10,22,16,0,0,15,15,7,16,9,9,0,22,9,15,15,0,2,15,17,14,0,11,13,8,9,8,9,8,8,8,7,8,13,7,9,13,10,8,8,8,8,0,7,8,8,8,9,9,10,8,9,0,0,8,8,7,9,9,9,0,8,2,8,8,0,2,8,10,7,11,0,0,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,0,16,7,9,16,16,16,16,9,14,14,16,14,16,16,14,16,16,14,0,16,16,9,18,14,9,16,18,0,0,16,16,9,16,11,9,0,16,9,18,16,0,2,18,16,16,16,9,16,16,0,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,9,9,16,7,0,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,0,16,9,7,9,7,16,14,9,0,0,9,9,16,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,16,16,16,7,9,0,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,16,7,9,16,0,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,16,7,9,16,16,0,17,7,14,15,16,14,16,16,14,17,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,10,17,9,7,0,16,9,16,16,0,3,16,16,15,16,9,16,16,23,7,16,16,16,17,0,14,14,16,23,21,23,16,21,24,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,17,18,16,14,0,23,9,23,16,0,3,16,23,17,16,9,7,9,14,7,14,7,7,7,14,0,7,7,14,14,14,7,14,14,14,7,0,14,7,9,9,7,14,16,9,0,0,7,7,14,7,16,16,0,14,0,16,7,0,0,9,14,9,7,7,14,14,14,7,7,14,14,14,14,7,0,14,14,14,14,14,14,14,14,14,0,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,14,14,14,7,7,14,14,15,16,7,14,0,14,14,14,14,14,15,14,14,0,14,14,7,14,14,7,14,14,0,0,14,14,8,15,7,7,0,14,7,14,14,0,1,14,14,16,14,7,16,16,23,7,16,16,16,16,23,14,14,14,0,21,23,16,21,23,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,11,14,14,21,7,14,14,14,14,21,14,14,14,21,0,21,14,21,21,21,14,0,21,14,7,14,14,14,21,14,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,7,16,16,23,7,16,16,16,16,23,14,14,14,23,21,0,16,21,23,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,0,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,14,14,21,7,14,14,14,14,21,14,14,14,21,21,21,14,0,21,21,14,0,21,14,7,14,14,14,21,14,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,7,16,16,23,7,16,16,16,17,24,14,14,15,23,21,23,16,21,0,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,17,17,16,14,0,23,9,23,16,0,3,16,23,15,16,9,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,0,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,0,0,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,23,14,0,0,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,0,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,7,9,7,7,7,7,7,7,7,9,7,7,7,7,7,7,7,7,7,7,0,7,7,0,9,7,7,9,9,0,0,7,7,7,7,9,9,0,7,0,9,7,0,0,9,7,9,7,7,16,18,16,7,9,16,16,16,16,9,14,14,16,14,16,16,14,16,16,14,0,16,16,9,0,14,9,16,18,0,0,16,16,9,16,11,9,0,16,9,18,16,0,2,18,16,16,16,9,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,0,14,14,7,14,0,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,0,16,9,7,9,7,0,14,9,1,1,9,9,17,10,16,14,1,16,2,17,9,1,2,9,17,8,9,9,14,16,21,7,14,14,14,14,21,16,14,14,21,21,21,14,21,21,21,14,0,21,14,9,16,14,14,0,16,0,0,14,14,14,14,16,16,0,21,7,23,14,0,0,16,21,16,14,7,16,18,16,7,9,16,16,16,16,9,14,14,16,14,16,16,14,16,16,14,0,16,16,9,18,14,9,16,0,0,0,16,16,9,16,11,9,0,16,9,18,16,0,2,18,16,16,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,0,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,0,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,9,9,16,7,16,9,9,10,17,14,7,8,16,14,16,9,14,17,16,7,0,16,9,7,9,7,17,14,9,1,1,9,9,0,11,16,14,1,16,2,17,9,1,3,9,17,9,9,9,16,16,16,7,9,16,16,17,18,7,14,15,16,14,16,16,14,17,16,14,0,16,16,7,16,14,10,14,16,1,1,16,16,11,0,9,7,1,16,9,17,16,1,3,16,17,17,16,9,9,11,16,7,16,9,9,9,16,16,7,7,16,14,16,9,14,16,16,7,0,16,9,9,11,7,16,16,11,0,0,9,9,16,9,0,16,0,16,2,18,9,0,2,11,16,9,9,9,7,9,14,7,14,7,7,7,14,16,7,7,14,14,14,7,14,14,14,7,0,14,7,9,9,7,14,16,9,0,0,7,7,14,7,16,0,0,14,0,16,7,0,0,9,14,9,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,0,9,23,16,0,2,16,23,14,16,9,9,9,9,0,2,9,9,9,9,0,7,7,9,7,9,9,7,9,9,7,0,9,9,0,9,7,2,7,9,0,0,9,9,2,9,2,0,0,9,0,9,9,0,2,9,9,7,9,2,16,18,23,7,16,16,16,16,23,16,14,14,23,21,23,16,21,23,23,14,0,23,16,9,18,14,17,23,18,1,1,16,16,17,17,18,16,1,23,9,0,16,1,2,18,24,17,16,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,0,0,2,16,16,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,2,2,2,0,2,2,2,3,3,0,0,1,2,0,2,2,0,3,2,0,0,2,2,0,2,0,2,0,2,0,0,2,2,3,3,2,0,0,2,2,2,2,0,0,2,2,1,2,2,16,18,16,7,9,16,16,16,16,9,14,14,16,14,16,16,14,16,16,14,0,16,16,9,18,14,9,16,18,0,0,16,16,9,16,11,9,0,16,9,18,16,0,2,0,16,16,16,9,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,23,14,0,23,16,7,16,14,17,21,16,1,1,16,16,17,17,16,14,1,23,9,24,16,1,2,16,0,15,16,9,14,16,14,7,7,14,14,15,17,9,14,16,14,14,14,14,14,15,14,14,0,14,14,9,16,14,8,16,16,1,1,14,14,9,17,9,9,1,14,7,17,14,1,1,16,15,0,14,7,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,0,9,9,9,9,7,9,9,9,9,9,7,7,7,11,7,9,9,7,9,9,7,0,9,9,7,9,7,9,7,9,0,0,9,9,9,9,9,7,0,9,2,9,9,0,2,9,9,7,9,0,0,17,17,8,10,17,25,16,16,8,15,14,25,15,25,24,23,16,17,22,16,0,25,16,17,15,10,23,17,0,0,17,17,9,16,10,8,0,25,10,17,17,0,2,17,17,14,24,10,17,0,17,8,10,17,18,16,16,8,16,14,18,15,18,17,15,16,17,15,16,0,18,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,18,14,17,10,17,17,0,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,0,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,24,14,17,10,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,0,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,10,10,17,8,0,10,12,9,16,15,8,9,17,15,17,12,15,18,17,8,16,0,10,8,10,10,17,15,10,0,0,12,12,16,9,17,15,0,17,5,17,12,0,2,10,17,7,10,10,17,17,17,8,10,0,18,16,16,9,15,15,17,16,18,17,16,16,17,15,16,0,18,9,17,15,10,16,17,0,0,18,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,25,18,17,8,12,18,0,16,16,9,16,17,27,16,27,27,25,18,17,23,16,0,28,18,17,18,10,25,17,0,0,20,20,9,16,10,8,0,26,12,17,19,0,2,18,18,14,24,10,16,16,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,0,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,23,7,16,16,16,16,0,14,14,14,23,21,23,16,21,23,23,14,23,0,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,8,8,15,8,15,9,9,7,14,0,8,8,15,16,16,8,16,14,15,8,14,0,9,9,8,8,15,16,8,0,0,9,9,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,15,16,15,8,8,15,16,14,14,8,0,14,16,15,16,15,15,14,15,15,14,0,16,8,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,14,14,14,7,9,15,17,14,14,8,14,0,14,15,15,16,15,16,14,14,14,0,15,8,14,16,7,15,14,0,0,17,17,7,14,7,7,0,14,9,14,16,0,0,14,14,14,14,7,25,18,24,8,17,17,27,16,23,15,16,14,0,22,33,25,31,23,24,23,23,0,27,17,17,16,17,31,17,0,0,17,17,16,16,17,15,0,33,10,24,17,0,2,18,25,14,24,10,15,15,22,8,15,16,16,14,21,16,15,15,22,0,23,15,23,21,22,15,21,0,16,9,15,15,15,23,15,0,0,16,16,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,8,25,18,24,8,17,18,27,16,23,16,16,15,33,23,0,24,31,23,24,22,23,0,27,17,17,16,17,31,17,0,0,18,18,16,16,17,15,0,32,10,24,17,0,2,17,25,14,24,10,24,17,17,8,12,17,27,16,16,8,15,16,25,15,24,0,23,18,17,23,16,0,25,16,17,17,10,23,17,0,0,19,19,9,16,10,8,0,25,12,17,19,0,2,18,17,14,24,10,23,15,22,8,15,16,25,14,21,16,15,15,31,23,31,23,0,21,22,23,21,0,25,18,15,15,15,32,15,0,0,16,16,14,14,15,15,0,31,8,22,15,0,0,16,22,14,22,8,16,16,23,7,18,16,18,16,23,14,14,16,23,21,23,18,21,0,23,14,23,0,16,7,16,16,16,21,16,0,0,18,18,16,16,16,14,0,23,11,23,18,0,2,16,23,14,16,9,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,0,15,23,0,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,24,14,17,10,22,15,15,8,8,15,23,14,14,8,15,14,23,15,22,23,23,14,15,0,14,0,23,16,15,15,8,23,15,0,0,15,15,7,14,8,8,0,23,8,15,15,0,0,16,15,14,22,8,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,23,14,0,0,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,18,17,8,10,18,28,16,16,9,16,15,27,16,27,25,25,16,17,23,16,0,0,18,17,16,10,25,17,0,0,18,18,9,16,10,8,0,26,10,17,17,0,2,18,18,14,24,10,16,8,8,8,8,9,18,7,7,9,8,8,17,9,17,16,18,7,8,16,7,0,18,0,8,8,8,18,8,0,0,9,9,7,7,8,8,0,17,1,8,8,0,0,9,8,7,15,8,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,0,17,8,0,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,15,16,15,8,10,15,18,14,14,8,16,16,16,15,16,17,15,16,15,15,14,0,16,8,15,0,8,15,15,0,0,17,17,7,14,8,8,0,15,10,15,17,0,0,15,16,14,15,8,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,0,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,23,15,22,8,15,16,25,14,21,16,15,15,31,23,31,23,32,21,22,23,21,0,25,18,15,15,15,0,15,0,0,16,16,14,14,15,15,0,31,8,22,15,0,0,16,22,14,22,8,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,0,17,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,12,18,20,16,16,9,15,17,17,16,18,19,16,18,17,15,16,0,18,9,17,17,10,16,17,0,0,0,20,9,16,10,8,0,17,12,17,24,0,2,17,17,14,17,10,17,17,17,8,12,18,20,16,16,9,15,17,17,16,18,19,16,18,17,15,16,0,18,9,17,17,10,16,17,0,0,20,0,9,16,10,8,0,17,12,17,19,0,2,17,17,14,17,10,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,16,0,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,0,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,0,10,8,10,8,17,15,10,0,0,10,10,16,9,0,15,0,17,3,17,10,0,2,10,17,7,10,10,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,15,14,15,8,14,0,8,8,8,8,15,15,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,17,24,8,17,17,26,16,23,15,15,14,33,22,32,25,31,23,24,23,23,0,26,17,17,15,17,31,17,0,0,17,17,16,16,17,15,0,0,10,24,17,0,2,18,24,14,24,10,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,12,8,11,10,8,9,0,10,1,10,10,3,8,10,0,0,12,12,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,0,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,0,17,0,2,17,24,14,17,10,17,17,17,8,12,17,19,16,16,8,15,16,17,15,17,19,15,18,17,15,16,0,17,8,17,17,10,15,17,0,0,24,19,9,16,10,8,0,17,12,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,0,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,17,17,17,8,10,17,18,16,16,8,15,14,18,15,17,18,16,16,17,16,16,0,18,9,17,15,10,16,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,0,17,14,17,10,17,18,24,8,17,17,18,16,23,15,16,14,25,22,25,17,22,23,24,15,23,0,18,8,17,16,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,0,14,17,10,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,0,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,24,17,17,8,10,17,24,16,16,8,15,14,24,15,24,24,22,16,17,22,16,0,24,15,17,15,10,22,17,0,0,17,17,9,16,10,8,0,24,10,17,17,0,2,17,17,14,0,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,0,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,0,0,18,17,8,10,18,26,16,16,8,15,14,26,15,25,24,23,16,17,22,16,25,0,16,17,16,10,23,17,0,0,18,17,9,16,10,9,0,26,10,17,17,0,3,18,17,14,25,10,18,0,17,15,10,18,19,16,16,8,16,14,19,15,18,17,15,16,17,22,16,18,0,8,24,17,10,15,17,0,0,18,17,9,16,10,9,0,18,17,17,17,0,3,18,18,14,18,10,17,17,0,8,10,18,18,16,17,8,16,14,17,15,18,18,16,16,17,15,16,17,0,9,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,8,15,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,15,7,8,0,8,15,8,8,8,8,0,0,8,8,7,7,8,8,0,8,8,8,8,0,0,8,8,7,8,8,10,10,10,8,0,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,0,8,10,8,11,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,18,18,18,8,10,0,20,16,17,9,16,15,18,16,19,18,17,16,17,15,16,18,0,10,17,16,10,16,17,0,0,19,18,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,26,19,18,8,10,20,0,16,17,9,17,15,28,16,28,26,26,16,17,23,16,28,0,19,17,17,10,25,17,0,0,19,18,9,16,10,9,0,27,10,17,17,0,3,19,18,14,25,10,16,16,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,0,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,17,7,9,17,17,16,0,7,15,14,16,14,17,17,15,16,16,14,16,16,0,8,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,8,8,8,8,8,9,9,7,7,0,8,8,8,9,9,8,9,7,8,8,7,9,0,9,8,8,8,9,8,0,0,9,9,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,15,16,16,8,8,16,17,14,15,8,0,14,16,15,17,16,16,14,15,15,14,16,0,9,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,14,14,14,7,7,15,15,14,14,8,14,0,14,15,15,14,15,14,14,14,14,15,0,8,14,14,7,15,14,0,0,15,15,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,26,19,17,8,10,18,28,16,16,8,16,14,0,15,26,25,24,16,17,23,16,27,0,17,17,17,10,24,17,0,0,18,17,9,16,10,9,0,27,10,17,17,0,3,19,18,14,25,10,15,15,15,8,8,16,16,14,14,9,15,15,15,0,16,15,16,14,15,15,14,16,0,9,15,15,8,16,15,0,0,16,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,25,18,18,8,10,19,28,16,17,9,17,15,26,16,0,25,25,16,17,22,16,27,0,18,17,16,10,24,17,0,0,18,18,9,16,10,8,0,25,10,17,17,0,2,17,18,14,24,10,24,17,18,8,10,18,26,16,17,8,16,14,25,15,25,0,24,16,17,23,16,25,0,17,17,15,10,23,17,0,0,17,17,9,16,10,8,0,25,10,17,17,0,2,18,17,14,24,10,23,15,16,8,8,17,26,14,15,9,16,15,24,16,25,24,0,14,15,23,14,25,0,19,15,15,8,25,15,0,0,16,16,7,14,8,8,0,24,8,15,15,0,0,16,15,14,22,8,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,0,16,14,16,16,0,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,0,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,22,22,15,15,8,15,23,14,14,8,15,14,23,15,22,23,23,14,15,0,14,23,0,16,22,15,8,23,15,0,0,15,15,7,14,8,8,0,23,15,15,15,0,0,16,15,14,22,8,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,0,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,25,18,17,8,10,18,28,16,16,9,16,15,27,16,27,25,25,16,17,23,16,0,0,18,17,16,10,25,17,0,0,18,18,9,16,10,8,0,26,10,17,17,0,2,18,18,14,24,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,8,9,8,8,10,19,7,8,9,9,8,17,9,18,17,19,7,8,16,7,18,0,0,8,8,8,18,8,0,0,9,9,7,7,8,8,0,17,1,8,8,0,0,9,8,7,15,8,17,24,17,15,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,22,16,17,0,8,0,15,10,15,17,0,0,17,17,9,16,10,8,0,17,17,17,17,0,2,17,17,14,17,10,16,17,15,8,8,16,17,14,14,8,16,14,17,15,16,15,15,14,15,15,14,16,0,8,15,0,8,15,15,0,0,16,15,7,14,8,9,0,16,8,15,15,0,1,16,16,14,16,8,10,10,10,8,11,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,0,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,23,15,15,8,8,16,25,14,14,9,15,15,24,16,24,23,25,14,15,23,14,25,0,18,15,15,8,0,15,0,0,16,16,7,14,8,8,0,24,8,15,15,0,0,16,15,14,22,8,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,0,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,17,8,10,19,19,16,16,9,15,15,18,16,18,17,16,16,17,15,16,18,0,9,17,16,10,16,17,0,0,0,18,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,17,17,17,8,10,18,18,16,16,9,15,15,17,16,18,17,16,16,17,15,16,18,0,9,17,15,10,16,17,0,0,18,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,0,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,0,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,0,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,9,9,8,8,8,9,9,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,0,8,8,9,8,8,8,0,0,9,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,18,17,8,10,18,27,16,16,8,15,14,27,15,25,25,24,16,17,23,16,26,0,17,17,16,10,24,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,19,17,14,25,10,10,17,10,8,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,15,9,10,0,1,17,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,10,7,10,3,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,0,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,0,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,0,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,18,18,17,8,10,18,19,16,16,8,15,14,19,15,17,18,16,16,17,16,16,18,0,9,17,16,10,16,17,0,0,18,17,9,16,10,9,0,19,10,17,17,0,3,0,17,14,18,10,17,18,17,8,10,17,18,16,16,8,16,14,18,15,18,17,15,16,17,15,16,18,0,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,0,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,25,18,17,8,10,18,25,16,16,8,15,14,25,15,24,24,22,16,17,22,16,24,0,15,17,16,10,22,17,0,0,18,17,9,16,10,9,0,25,10,17,17,0,3,18,17,14,0,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,0,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,0,0,9,8,8,9,15,16,14,7,8,15,7,16,8,16,22,16,7,8,15,7,16,16,0,8,15,8,16,16,0,0,15,15,7,14,8,8,0,16,1,8,8,0,0,15,8,14,22,15,9,0,8,8,9,8,8,7,7,10,8,7,8,8,8,8,8,7,8,8,9,8,8,0,10,8,8,10,11,0,0,8,8,7,7,10,10,0,8,1,10,8,0,0,10,8,9,8,8,8,8,0,8,8,9,9,7,8,8,9,7,8,8,9,9,9,7,8,8,7,8,9,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,9,9,8,8,0,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,8,8,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,15,8,9,8,8,0,10,14,8,9,16,8,8,9,10,16,10,7,8,8,7,9,10,0,8,15,8,9,15,0,0,16,16,7,14,8,8,0,8,1,8,8,0,0,15,8,14,15,15,16,8,9,8,8,10,0,7,8,9,9,8,17,9,18,17,19,7,8,16,7,18,19,0,8,8,8,18,8,0,0,9,9,7,7,8,8,0,17,1,8,8,0,0,9,8,7,15,8,14,7,7,7,7,14,7,0,7,7,14,7,7,7,7,14,7,7,7,7,7,7,7,0,7,14,7,7,14,0,0,14,14,7,14,7,7,0,7,0,7,7,0,0,14,7,14,14,14,7,7,8,7,7,8,8,7,0,7,8,7,7,7,8,8,8,7,7,7,7,7,8,0,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,8,10,8,8,8,9,9,7,7,0,10,10,8,11,9,8,11,7,8,10,9,9,9,0,10,10,8,13,10,0,0,9,9,7,7,10,12,0,8,1,10,8,0,0,10,8,11,8,8,15,8,9,8,8,16,9,14,8,10,0,9,8,10,9,16,11,7,8,10,7,8,9,0,8,17,8,10,15,0,0,15,15,7,14,8,10,0,8,1,8,8,0,0,15,8,16,15,15,7,7,7,7,7,8,8,7,7,10,9,0,7,10,8,7,10,7,7,9,7,8,8,0,7,9,7,10,7,0,0,8,8,7,7,7,9,0,7,0,7,7,0,0,7,7,9,7,7,16,8,8,8,8,8,17,7,7,8,8,7,0,8,16,16,17,7,8,16,7,17,17,0,8,8,8,17,8,0,0,8,8,7,7,8,8,0,17,1,8,8,0,0,9,8,7,15,8,8,8,8,8,8,9,9,7,7,11,10,10,8,0,9,8,11,7,8,10,7,9,9,0,8,10,8,11,8,0,0,9,9,7,7,8,10,0,8,1,8,8,0,0,8,8,9,8,8,16,8,9,8,8,10,18,7,8,9,9,8,16,9,0,16,18,7,8,15,7,17,18,0,8,8,8,17,8,0,0,9,9,7,7,8,8,0,16,1,8,8,0,0,8,8,7,15,8,22,8,9,8,8,16,17,14,8,8,16,7,16,8,16,0,17,7,8,16,7,16,17,0,8,15,8,16,15,0,0,15,15,7,14,8,8,0,16,1,8,8,0,0,16,8,14,22,15,16,8,9,8,8,10,19,7,8,11,11,10,17,11,18,17,0,7,8,18,7,18,19,0,8,10,8,20,8,0,0,9,9,7,7,8,10,0,17,1,8,8,0,0,9,8,9,15,8,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,0,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,0,8,7,8,8,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,15,8,8,8,8,8,16,7,7,10,10,9,16,10,15,16,18,7,8,0,7,16,16,0,8,10,8,18,8,0,0,8,8,7,7,8,10,0,16,1,8,8,0,0,9,8,9,15,8,7,9,7,7,7,7,7,7,7,9,7,7,7,7,7,7,7,7,7,7,0,7,7,0,9,7,7,9,9,0,0,7,7,7,7,9,9,0,7,0,9,7,0,0,9,7,9,7,7,16,8,8,8,8,9,18,7,7,9,8,8,17,9,17,16,18,7,8,16,7,0,18,0,8,8,8,18,8,0,0,9,9,7,7,8,8,0,17,1,8,8,0,0,9,8,7,15,8,16,8,9,8,8,10,19,7,8,9,9,8,17,9,18,17,19,7,8,16,7,18,0,0,8,8,8,18,8,0,0,9,9,7,7,8,8,0,17,1,8,8,0,0,9,8,7,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,8,8,8,8,8,7,7,10,8,7,8,8,8,8,8,7,8,8,9,8,8,0,0,8,8,10,10,0,0,8,8,7,7,10,10,0,8,1,10,8,0,0,10,8,9,8,8,15,8,8,8,8,15,8,14,7,10,17,9,8,10,8,15,10,7,8,10,7,8,8,0,8,0,8,10,15,0,0,15,15,7,14,8,10,0,8,1,8,8,0,0,15,8,16,15,15,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,0,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,16,10,8,8,8,9,18,7,7,13,10,10,17,11,17,16,20,7,8,18,9,18,18,0,10,10,8,0,10,0,0,9,9,7,7,10,12,0,17,1,10,8,0,0,11,8,11,15,8,16,11,8,8,9,15,8,14,7,10,15,7,8,8,8,15,8,7,8,8,9,8,8,0,10,15,8,10,0,0,0,15,15,7,14,10,10,0,8,1,10,8,0,0,17,8,16,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,8,8,8,8,16,9,14,7,9,15,8,8,9,9,15,9,7,8,8,7,9,9,0,8,15,8,9,15,0,0,0,16,7,14,8,8,0,8,1,8,8,0,0,15,8,14,15,15,15,8,8,8,8,16,9,14,7,9,15,8,8,9,9,15,9,7,8,8,7,9,9,0,8,15,8,9,15,0,0,16,0,7,14,8,8,0,8,1,8,8,0,0,15,8,14,15,15,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,0,0,7,7,0,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,14,7,7,7,7,14,7,14,7,7,14,7,7,7,7,14,7,7,7,7,7,7,7,0,7,14,7,7,14,0,0,14,14,7,0,7,7,0,7,0,7,7,0,0,14,7,14,14,14,8,10,8,8,8,8,8,7,7,10,8,7,8,8,8,8,8,7,8,8,9,8,8,0,10,8,8,10,10,0,0,8,8,7,7,0,10,0,8,1,10,8,0,0,10,8,9,8,8,8,10,8,8,8,8,8,7,7,12,10,9,8,10,8,8,10,7,8,10,9,8,8,0,10,10,8,12,10,0,0,8,8,7,7,10,0,0,8,1,10,8,0,0,10,8,11,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,8,8,8,8,8,17,7,7,8,8,7,17,8,16,16,17,7,8,16,7,17,17,0,8,8,8,17,8,0,0,8,8,7,7,8,8,0,0,1,8,8,0,0,9,8,7,15,8,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,0,1,1,0,0,1,1,0,1,1,8,10,8,8,8,8,8,7,7,10,8,7,8,8,8,8,8,7,8,8,9,8,8,0,10,8,8,10,10,0,0,8,8,7,7,10,10,0,8,1,0,8,0,0,10,8,9,8,8,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,0,0,0,8,8,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,10,8,8,8,15,9,14,7,10,15,7,9,8,8,16,9,7,8,9,9,9,9,0,10,15,8,11,17,0,0,15,15,7,14,10,10,0,9,1,10,8,0,0,0,8,16,15,15,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,0,7,8,8,14,9,7,7,7,14,7,14,7,11,16,9,7,9,7,14,9,7,7,9,9,7,7,0,9,16,7,11,16,0,0,14,14,7,14,9,11,0,7,0,9,7,0,0,16,7,0,14,14,22,8,8,8,8,15,15,14,7,8,15,7,15,8,15,22,15,7,8,15,7,15,15,0,8,15,8,15,15,0,0,15,15,7,14,8,8,0,15,1,8,8,0,0,15,8,14,0,15,15,8,8,8,8,15,8,14,7,8,15,7,8,8,8,15,8,7,8,8,7,8,8,0,8,15,8,8,15,0,0,15,15,7,14,8,8,0,8,1,8,8,0,0,15,8,14,15,0,0,17,18,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,0,15,10,15,17,0,0,18,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,17,0,17,15,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,22,18,17,24,10,0,15,10,17,19,0,0,17,17,9,16,12,10,0,17,17,19,17,0,2,19,17,16,17,10,18,17,0,8,11,17,18,18,16,8,15,14,18,15,18,19,17,17,17,17,16,17,17,8,0,16,10,15,19,0,0,18,18,9,16,11,9,0,17,11,17,18,0,2,17,17,14,18,11,8,15,8,0,16,15,8,14,14,22,16,7,8,15,8,9,8,7,15,15,7,8,15,8,0,8,15,8,8,0,0,8,8,14,14,15,15,0,8,15,8,8,0,7,8,8,14,8,15,10,10,11,16,0,17,10,17,16,15,16,7,11,15,10,11,8,10,17,9,9,10,10,8,0,9,10,8,11,0,0,10,10,9,16,18,9,0,10,11,10,10,0,2,10,10,14,11,11,17,17,17,15,17,0,17,23,23,15,22,14,17,22,17,17,15,16,24,15,16,17,17,8,0,15,10,15,17,0,0,17,17,9,23,17,8,0,17,17,17,17,0,2,17,17,21,17,10,17,17,18,8,10,17,0,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,0,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,17,16,18,14,17,23,16,0,23,14,21,14,17,21,16,17,15,17,23,15,16,16,16,7,0,15,9,14,17,0,0,17,17,9,23,17,8,0,16,17,16,16,0,2,16,16,21,17,10,16,16,16,14,16,23,16,23,0,14,21,14,16,21,16,16,14,16,23,14,16,16,16,7,0,14,9,14,16,0,0,16,16,9,23,16,7,0,16,16,16,16,0,2,16,16,21,16,9,8,10,8,22,15,15,8,14,14,0,15,7,8,15,8,8,8,7,15,8,9,8,8,10,0,8,15,10,10,0,0,8,8,14,14,17,17,0,8,8,10,8,0,7,10,8,16,8,15,15,15,15,16,16,22,15,21,21,15,0,14,15,22,15,16,15,14,22,15,14,15,15,8,0,15,8,15,15,0,0,15,15,7,21,15,8,0,15,15,15,15,0,0,15,15,21,15,8,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,0,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,17,17,18,8,11,17,17,17,16,8,15,14,0,15,17,17,15,17,17,16,16,17,17,8,0,16,10,15,18,0,0,17,17,9,16,11,9,0,17,11,17,17,0,2,17,17,14,18,11,15,15,15,15,15,22,15,21,21,15,22,14,15,0,15,15,15,14,22,15,14,15,15,8,0,15,8,15,15,0,0,15,15,7,21,15,8,0,15,15,15,15,0,0,15,15,21,15,8,17,17,18,8,10,17,18,16,16,8,15,14,17,15,0,18,16,16,17,16,16,17,17,8,0,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,18,17,19,9,11,17,18,17,16,8,16,14,17,15,18,0,17,16,17,16,16,17,17,8,0,15,10,15,18,0,0,18,18,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,16,15,17,8,8,15,16,15,14,8,15,14,15,15,16,17,0,14,15,16,14,15,15,8,0,15,8,15,16,0,0,16,16,7,14,8,8,0,15,8,15,16,0,0,15,15,14,15,8,16,16,17,7,10,16,16,17,16,7,14,14,17,14,16,16,14,0,16,15,16,16,16,7,0,15,9,14,17,0,0,16,16,9,16,10,8,0,16,10,16,16,0,2,16,16,14,17,10,17,17,17,15,17,24,17,23,23,15,22,14,17,22,17,17,15,16,0,15,16,17,17,8,0,15,10,15,17,0,0,17,17,9,23,17,8,0,17,17,17,17,0,2,17,17,21,17,10,15,22,17,15,9,15,16,15,14,8,15,14,16,15,16,16,16,15,15,0,14,15,22,8,0,16,8,15,17,0,0,15,15,7,14,9,9,0,15,16,15,16,0,0,15,15,14,16,9,16,18,16,7,9,16,16,16,16,9,14,14,16,14,16,16,14,16,16,14,0,16,16,9,0,14,9,16,18,0,0,16,16,9,16,11,9,0,16,9,18,16,0,2,18,16,16,16,9,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,0,17,8,0,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,17,24,17,15,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,22,16,17,0,8,0,15,10,15,17,0,0,17,17,9,16,10,8,0,17,17,17,17,0,2,17,17,14,17,10,8,10,8,8,8,8,8,7,7,10,8,7,8,8,8,8,8,7,8,8,9,8,8,0,0,8,8,10,10,0,0,8,8,7,7,10,10,0,8,1,10,8,0,0,10,8,9,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,16,8,9,15,15,15,14,8,15,14,16,15,15,15,15,15,15,16,14,15,15,8,0,0,8,15,16,0,0,15,15,7,14,9,9,0,15,9,15,15,0,0,15,15,14,16,9,10,10,10,15,10,10,10,9,9,15,8,7,10,8,10,10,8,9,10,8,9,10,10,8,0,8,0,8,10,0,0,10,10,16,9,10,15,0,10,3,10,10,0,9,10,10,7,10,17,15,17,15,8,8,15,15,14,14,10,15,14,15,15,15,15,15,14,15,15,16,15,15,10,0,15,8,0,17,0,0,15,15,7,14,10,11,0,15,8,17,15,0,0,17,15,16,15,8,17,19,19,8,11,17,18,17,16,10,15,14,18,15,18,18,16,17,17,17,18,17,17,10,0,16,10,17,0,0,0,17,17,9,16,13,11,0,17,11,19,18,0,2,19,17,16,18,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,17,18,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,0,15,10,15,17,0,0,0,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,18,17,18,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,0,15,10,15,17,0,0,18,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,9,9,9,14,9,9,9,9,9,14,7,7,9,7,9,9,7,9,9,7,9,9,9,7,0,7,16,7,9,0,0,9,9,0,9,9,14,0,9,2,9,9,0,9,9,9,7,9,16,16,16,16,14,16,23,16,23,23,14,21,14,16,21,16,16,14,16,23,14,16,16,16,7,0,14,9,14,16,0,0,16,16,9,0,16,7,0,16,16,16,16,0,2,16,16,21,16,9,10,12,11,15,18,17,10,17,16,17,15,7,11,15,10,10,8,10,17,9,11,10,10,10,0,9,10,10,13,0,0,10,10,9,16,0,11,0,10,11,12,10,0,2,12,10,16,11,11,8,10,9,15,9,8,8,8,7,17,8,7,9,8,8,8,8,8,8,9,9,8,8,10,0,9,15,11,11,0,0,8,8,14,7,11,0,0,8,2,10,8,0,7,10,8,9,9,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,0,15,10,15,17,0,0,17,17,9,16,10,8,0,0,10,17,17,0,2,17,17,14,17,10,10,17,11,15,11,17,10,17,16,8,15,7,11,15,10,10,8,10,17,16,9,10,17,1,0,9,3,8,11,0,0,10,10,2,16,11,2,0,10,0,10,10,0,2,10,10,14,11,4,17,19,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,0,15,10,17,19,0,0,17,17,9,16,12,10,0,17,10,0,17,0,2,19,17,16,17,10,17,17,18,8,10,17,18,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,0,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,7,2,2,2,2,2,7,0,0,2,0,2,2,0,2,2,0,2,2,2,0,0,0,9,0,2,0,0,2,2,9,2,2,7,0,2,2,2,2,0,0,2,2,0,2,9,17,19,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,0,15,10,17,19,0,0,17,17,9,16,12,10,0,17,10,19,17,0,2,0,17,16,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,0,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,14,16,14,14,14,21,14,21,21,16,21,14,14,21,14,14,14,14,21,14,16,14,14,9,0,14,7,16,16,0,0,14,14,7,21,16,9,0,14,14,16,14,0,0,16,14,0,14,7,17,17,18,8,11,17,17,17,16,8,15,14,18,15,17,17,15,17,17,16,16,17,17,8,0,16,10,15,18,0,0,17,17,9,16,11,9,0,17,11,17,17,0,2,17,17,14,0,11,10,10,11,15,11,10,10,10,9,15,8,7,11,8,10,10,8,10,10,9,9,10,10,8,0,9,17,8,11,0,0,10,10,16,9,11,16,0,10,4,10,10,0,9,10,10,7,11,0,0,16,15,8,8,23,16,21,14,8,22,14,16,15,15,22,15,14,15,15,14,15,16,15,15,0,8,15,22,0,0,23,22,7,21,8,9,0,16,8,15,15,0,1,23,15,21,23,15,16,0,15,8,8,16,17,14,14,8,16,14,17,15,16,15,15,14,15,15,14,16,17,8,15,0,8,15,15,0,0,16,15,7,14,8,9,0,16,8,15,15,0,1,16,16,14,16,8,15,15,0,8,9,15,15,15,14,8,15,14,17,15,15,15,15,15,15,16,14,15,15,8,16,0,8,16,16,0,0,15,15,7,14,9,10,0,15,9,15,15,0,0,15,15,14,17,9,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,0,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,8,9,8,0,8,10,8,7,8,8,9,9,8,8,10,8,10,8,9,7,10,8,8,9,0,8,8,9,0,0,10,10,7,7,9,9,0,8,4,8,10,0,0,8,8,7,9,9,23,16,15,8,8,0,16,21,14,8,22,14,16,15,15,22,15,14,15,15,14,15,16,15,15,0,8,15,22,0,0,23,22,7,21,8,9,0,16,8,15,15,0,1,23,15,21,23,15,16,17,15,8,10,16,0,14,14,8,16,16,17,15,16,17,15,16,15,15,14,18,17,8,15,0,8,15,15,0,0,18,17,7,14,8,9,0,16,10,15,17,0,1,16,16,14,16,8,21,14,15,7,8,21,14,0,14,7,21,14,15,14,14,21,14,15,14,15,14,14,14,14,15,0,7,14,22,0,0,21,21,7,21,8,8,0,14,8,14,14,0,0,21,14,21,22,15,14,14,14,7,7,14,14,14,0,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,0,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,8,8,8,8,8,8,8,7,7,0,10,9,8,10,8,8,10,7,8,10,7,8,8,10,8,0,8,10,8,0,0,8,8,7,7,8,10,0,8,1,8,8,0,0,8,8,9,8,8,22,16,15,8,8,22,16,21,14,10,0,16,16,17,16,22,17,14,15,17,14,16,16,17,15,0,8,17,22,0,0,22,22,7,21,8,10,0,15,8,15,15,0,0,22,16,23,22,15,14,14,14,7,9,14,16,14,14,9,16,0,14,16,14,16,16,16,14,16,14,16,14,9,14,0,7,16,14,0,0,16,16,7,14,7,9,0,14,9,14,16,0,0,14,14,16,14,7,16,17,17,8,9,16,17,15,14,8,16,14,0,15,16,15,15,15,15,16,14,16,17,8,16,0,8,16,16,0,0,16,15,7,14,9,11,0,16,9,15,15,0,1,16,16,16,18,9,15,15,15,8,8,15,15,14,14,10,17,16,15,0,15,15,17,14,15,17,14,15,15,10,15,0,8,17,15,0,0,15,15,7,14,8,10,0,15,8,15,15,0,0,15,15,16,15,8,15,16,15,8,8,15,16,14,14,8,16,14,16,15,0,15,15,14,15,15,14,16,16,8,15,0,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,22,15,15,8,10,22,17,21,14,8,22,16,15,15,15,0,15,16,15,15,14,17,15,15,15,0,8,15,22,0,0,24,24,7,21,8,8,0,15,10,15,17,0,0,22,15,21,22,15,15,15,15,8,8,15,15,14,14,10,17,16,15,17,15,15,0,14,15,17,14,15,15,10,15,0,8,17,15,0,0,15,15,7,14,8,10,0,15,8,15,15,0,0,15,15,16,15,8,14,14,15,7,10,14,16,15,14,7,14,16,15,14,14,16,14,0,14,15,14,16,14,7,15,0,7,14,15,0,0,16,16,7,14,8,8,0,14,10,14,16,0,0,14,14,14,15,8,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,0,15,14,15,15,8,15,0,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,15,15,16,8,9,15,15,15,14,10,17,16,16,17,15,15,17,15,15,0,14,15,15,10,16,0,8,17,16,0,0,15,15,7,14,9,11,0,15,9,15,15,0,0,15,15,16,16,9,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,0,14,14,7,14,0,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,15,16,15,8,10,15,18,14,14,8,16,16,16,15,16,17,15,16,15,15,14,0,16,8,15,0,8,15,15,0,0,17,17,7,14,8,8,0,15,10,15,17,0,0,15,16,14,15,8,16,17,15,8,8,16,17,14,14,8,16,14,17,15,16,15,15,14,15,15,14,16,0,8,15,0,8,15,15,0,0,16,15,7,14,8,9,0,16,8,15,15,0,1,16,16,14,16,8,15,8,8,8,8,15,8,14,7,10,17,9,8,10,8,15,10,7,8,10,7,8,8,0,8,0,8,10,15,0,0,15,15,7,14,8,10,0,8,1,8,8,0,0,15,8,16,15,15,15,15,16,8,9,15,15,15,14,8,15,14,16,15,15,15,15,15,15,16,14,15,15,8,0,0,8,15,16,0,0,15,15,7,14,9,9,0,15,9,15,15,0,0,15,15,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,0,0,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,15,15,16,8,8,15,15,14,14,10,17,16,16,17,15,15,17,14,15,17,14,15,15,10,15,0,8,0,15,0,0,15,15,7,14,8,11,0,15,8,15,15,0,0,15,15,16,16,8,22,15,16,8,9,22,15,22,14,8,22,14,16,15,15,22,15,15,15,16,14,15,15,15,16,0,8,15,0,0,0,22,22,7,21,9,9,0,15,9,15,15,0,0,22,15,21,23,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,16,15,8,10,23,18,21,14,8,22,16,16,15,15,24,15,16,15,15,14,17,16,15,15,0,8,15,22,0,0,0,24,7,21,8,9,0,16,10,15,17,0,1,23,15,21,23,15,22,15,15,8,10,22,17,21,14,8,22,16,15,15,15,24,15,16,15,15,14,17,15,15,15,0,8,15,22,0,0,24,0,7,21,8,8,0,15,10,15,17,0,0,22,15,21,22,15,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,0,0,7,7,0,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,0,7,14,21,0,0,21,21,7,0,7,7,0,14,7,14,14,0,0,21,14,21,21,14,8,8,9,8,9,8,8,8,7,8,8,7,9,8,8,8,8,8,8,9,7,8,8,8,9,0,8,8,9,0,0,8,8,7,7,0,9,0,8,2,8,8,0,0,8,8,7,9,9,9,9,10,8,9,9,9,8,7,10,10,9,11,10,8,8,10,8,8,11,7,8,9,10,9,0,8,11,9,0,0,9,8,7,7,9,0,0,9,2,8,8,0,1,9,8,9,11,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,15,8,8,16,16,14,14,8,15,14,16,15,15,15,15,14,15,15,14,15,16,8,15,0,8,15,15,0,0,16,15,7,14,8,9,0,0,8,15,15,0,1,16,15,14,16,8,8,8,9,1,4,8,10,8,7,1,8,9,9,8,8,10,8,10,8,9,7,10,8,1,9,0,1,8,9,0,0,10,10,0,7,2,2,0,8,0,8,10,0,0,8,8,7,9,2,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,15,14,15,15,8,15,0,8,15,15,0,0,15,15,7,14,8,8,0,15,8,0,15,0,0,15,15,14,15,8,15,15,15,8,10,15,17,14,14,8,15,16,15,15,15,17,15,16,15,15,14,17,15,8,15,0,8,15,15,0,0,17,17,7,14,8,8,0,15,10,15,0,0,0,15,15,14,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,23,16,15,8,8,23,16,21,14,8,22,14,16,15,15,22,15,14,15,15,14,15,16,15,15,0,8,15,22,0,0,23,22,7,21,8,9,0,16,8,15,15,0,1,0,15,21,23,15,15,16,15,8,8,15,16,14,14,8,16,14,16,15,16,15,15,14,15,15,14,16,16,8,15,0,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,0,14,15,8,21,14,14,7,7,21,14,21,14,9,23,16,16,16,14,21,16,14,14,16,14,14,14,16,14,0,7,16,21,0,0,21,21,7,21,7,9,0,14,7,14,14,0,0,21,14,0,21,14,23,16,17,8,9,23,16,22,14,8,22,14,18,15,15,22,15,15,15,16,14,15,16,15,16,0,8,16,23,0,0,23,22,7,21,9,11,0,16,9,15,15,0,1,23,15,21,0,16,15,8,9,8,9,15,8,15,7,8,15,7,9,8,8,15,8,8,8,9,7,8,8,15,9,0,8,8,16,0,0,15,15,7,14,9,9,0,8,2,8,8,0,0,15,8,14,16,0,0,10,10,8,10,10,10,9,9,8,10,7,10,10,12,10,8,9,10,10,9,10,10,8,10,8,0,8,10,0,0,10,10,9,11,10,8,0,10,3,10,10,0,4,10,12,7,12,12,10,0,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,10,10,0,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,8,8,8,0,8,8,8,7,7,15,8,7,8,8,8,8,8,7,8,8,7,8,8,8,15,8,0,8,8,0,0,8,8,14,7,8,15,0,8,1,8,8,0,7,8,8,7,8,15,10,10,17,8,0,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,11,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,10,10,10,8,10,0,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,10,10,10,8,10,10,0,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,9,9,9,7,9,9,9,0,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,0,7,9,0,0,9,9,9,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,9,9,16,7,16,9,9,9,0,14,7,7,16,14,16,9,14,16,16,7,16,16,9,7,9,7,0,14,9,0,0,9,9,16,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,8,8,15,15,15,8,8,7,14,0,8,7,15,15,15,8,15,14,15,8,14,15,8,8,15,8,0,15,8,0,0,8,8,22,7,15,23,0,15,1,15,8,0,7,8,15,7,8,15,10,8,8,8,8,8,8,7,7,8,0,7,8,10,10,8,8,7,8,10,7,8,8,8,8,8,0,8,8,0,0,8,8,7,9,8,8,0,8,1,8,8,0,2,8,10,7,10,10,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,10,10,17,8,17,10,10,9,16,15,8,7,0,15,17,10,15,16,17,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,10,8,15,8,15,8,8,7,14,15,10,7,15,0,17,8,15,14,15,10,14,15,8,8,8,8,0,15,8,0,0,8,8,14,9,15,15,0,15,1,15,8,0,2,8,17,7,10,10,12,10,17,8,17,10,10,9,16,15,10,7,17,17,0,10,15,16,17,10,16,17,10,8,10,8,0,15,10,0,0,10,10,16,11,17,15,0,17,3,17,10,0,4,10,19,7,12,12,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,0,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,0,14,15,8,14,15,8,8,8,8,0,15,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,0,16,7,16,16,9,7,9,7,0,14,9,0,0,9,9,16,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,0,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,10,8,8,8,8,8,8,7,7,8,10,7,8,10,10,8,8,7,8,0,7,8,8,8,8,8,0,8,8,0,0,8,8,7,9,8,8,0,8,1,8,8,0,2,8,10,7,10,10,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,0,16,9,7,9,7,0,14,9,1,1,9,9,17,10,16,14,1,16,2,17,9,1,2,9,17,8,9,9,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,0,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,10,10,10,8,11,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,0,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,0,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,10,10,10,15,10,10,10,9,9,15,8,7,10,8,10,10,8,9,10,8,9,10,10,8,0,8,0,8,10,0,0,10,10,16,9,10,15,0,10,3,10,10,0,9,10,10,7,10,17,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,0,0,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,0,0,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,0,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,0,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,0,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,9,9,16,14,16,9,9,9,16,22,7,7,16,14,16,9,14,16,16,7,17,16,9,7,16,7,0,14,9,1,1,9,9,0,10,16,22,1,16,2,17,9,1,9,9,17,8,9,16,11,9,9,7,9,9,9,9,9,7,9,7,9,9,11,9,7,9,9,9,10,9,9,7,9,7,0,7,9,1,1,9,9,10,0,9,7,1,9,2,10,9,1,4,9,12,8,11,11,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,0,15,0,17,3,17,10,0,2,10,17,7,10,10,8,8,15,15,15,8,8,7,14,23,8,7,15,15,15,8,15,14,15,8,14,15,8,8,15,8,0,15,8,0,0,8,8,22,7,15,0,0,15,1,15,8,0,7,8,15,7,8,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,0,3,17,10,0,2,10,17,7,10,10,3,3,3,1,3,3,3,2,2,1,1,0,3,1,3,3,1,2,3,1,2,3,3,1,3,1,0,1,3,0,0,3,3,2,2,3,1,0,3,0,3,3,0,2,3,3,0,3,3,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,17,17,10,8,10,8,0,15,10,1,1,10,10,17,10,17,15,1,17,3,0,10,1,2,10,18,8,10,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,0,0,2,10,10,7,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,4,2,2,7,2,2,2,2,2,7,2,0,2,2,4,2,0,2,2,2,2,2,2,0,9,0,0,0,2,0,0,2,2,9,4,2,7,0,2,2,2,2,0,0,2,4,0,4,11,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,0,10,7,10,10,12,10,17,8,17,10,10,9,16,15,10,7,17,17,19,10,15,16,17,10,17,17,10,8,10,8,0,15,10,1,1,10,10,17,12,17,15,1,17,3,18,10,1,4,10,0,8,12,12,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,7,7,7,7,7,0,7,7,1,1,7,7,8,8,7,7,1,7,0,8,7,1,0,7,8,0,7,7,12,10,10,8,10,10,10,9,9,8,10,7,10,10,12,10,8,9,10,10,9,10,10,8,10,8,0,8,10,0,0,10,10,9,11,10,8,0,10,3,10,10,0,4,10,12,7,0,12,12,10,10,15,10,10,10,9,9,15,10,7,10,10,12,10,8,9,10,10,9,10,10,8,17,8,0,8,10,0,0,10,10,16,11,10,15,0,10,3,10,10,0,11,10,12,7,12,0,0,15,15,8,8,15,23,14,14,8,15,14,23,15,23,22,23,14,15,22,14,23,23,16,15,15,8,0,15,0,0,15,15,7,14,8,8,0,23,8,15,15,0,0,15,15,14,22,8,15,0,15,8,8,15,15,14,14,10,15,14,15,15,15,15,15,14,15,15,16,15,15,10,17,15,8,0,17,0,0,15,15,7,14,10,10,0,15,8,17,15,0,0,17,15,16,15,8,15,15,0,9,15,15,15,15,22,16,16,14,23,23,22,15,23,22,22,15,21,22,15,8,15,16,15,0,16,0,0,15,15,14,14,15,16,0,22,8,22,15,0,0,15,22,14,16,9,8,8,9,0,8,8,8,8,8,9,9,7,8,9,8,8,9,8,8,8,7,8,8,8,8,8,8,0,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,9,8,8,15,8,0,8,8,7,14,15,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,15,0,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,15,15,15,8,8,0,16,14,14,9,15,15,15,16,16,15,16,14,15,15,14,16,16,9,15,15,8,0,15,0,0,16,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,23,15,15,8,8,16,0,14,14,9,15,15,24,16,24,23,25,14,15,23,14,25,25,18,15,15,8,0,15,0,0,16,16,7,14,8,8,0,24,8,15,15,0,0,16,15,14,22,8,14,14,15,8,7,14,14,0,15,8,15,14,14,15,14,14,15,15,14,14,14,14,14,7,14,14,7,0,15,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,8,14,14,22,8,14,14,14,15,0,15,15,14,21,22,21,14,22,22,21,14,21,21,14,7,14,14,14,0,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,8,8,10,16,9,15,9,9,8,15,0,11,10,15,19,16,8,19,15,15,10,16,16,9,13,10,10,15,0,11,0,0,9,9,14,7,17,19,0,15,1,17,8,0,0,10,15,11,8,9,15,15,16,9,8,15,15,15,15,11,0,16,15,18,15,15,18,15,15,17,14,15,15,10,15,17,8,0,16,0,0,15,15,7,14,8,10,0,15,8,15,15,0,0,15,15,16,15,9,14,14,14,7,7,15,15,14,14,10,16,0,14,17,15,14,17,14,14,16,14,15,15,10,14,16,7,0,14,0,0,15,15,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,23,15,23,8,15,15,24,14,21,15,15,14,0,22,30,23,31,21,22,23,21,31,24,17,15,16,15,0,15,0,0,15,15,14,14,15,16,0,31,8,22,15,0,0,16,22,14,23,8,15,15,23,9,15,16,16,15,22,19,18,17,22,0,23,15,26,22,22,17,21,23,16,11,15,17,15,0,16,0,0,16,16,14,14,15,17,0,22,8,22,15,0,0,15,22,16,15,9,23,15,22,8,15,16,24,14,21,16,15,15,30,23,0,22,31,21,22,22,21,31,24,17,15,15,15,0,15,0,0,16,16,14,14,15,15,0,30,8,22,15,0,0,15,22,14,22,8,22,15,15,8,8,15,23,14,14,8,15,14,23,15,22,0,23,14,15,23,14,23,23,16,15,15,8,0,15,0,0,15,15,7,14,8,8,0,23,8,15,15,0,0,16,15,14,22,8,23,15,23,9,15,16,25,15,22,19,18,17,31,26,31,23,0,22,22,25,21,32,25,20,15,17,15,0,16,0,0,16,16,14,14,15,17,0,31,8,22,15,0,0,16,22,16,22,9,14,14,22,8,14,14,14,15,22,15,15,14,21,22,21,14,22,0,21,14,21,21,14,7,14,14,14,0,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,8,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,22,21,0,15,21,22,15,8,15,15,15,0,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,8,22,15,15,8,8,15,23,14,14,10,17,16,23,17,22,23,25,14,15,0,14,23,23,18,15,17,8,0,15,0,0,15,15,7,14,8,10,0,23,8,15,15,0,0,16,15,16,22,8,14,16,21,7,14,14,14,14,21,16,14,14,21,21,21,14,21,21,21,14,0,21,14,9,16,14,14,0,16,0,0,14,14,14,14,16,16,0,21,7,23,14,0,0,16,21,16,14,7,23,15,22,8,15,16,25,14,21,16,15,15,31,23,31,23,32,21,22,23,21,0,25,18,15,15,15,0,15,0,0,16,16,14,14,15,15,0,31,8,22,15,0,0,16,22,14,22,8,23,15,15,8,8,16,25,14,14,9,15,15,24,16,24,23,25,14,15,23,14,25,0,18,15,15,8,0,15,0,0,16,16,7,14,8,8,0,24,8,15,15,0,0,16,15,14,22,8,16,10,8,8,8,9,18,7,7,13,10,10,17,11,17,16,20,7,8,18,9,18,18,0,10,10,8,0,10,0,0,9,9,7,7,10,12,0,17,1,10,8,0,0,11,8,11,15,8,15,17,15,8,8,15,15,14,14,10,15,14,15,15,15,15,15,14,15,15,16,15,15,10,0,15,8,0,17,0,0,15,15,7,14,10,11,0,15,8,17,15,0,0,17,15,16,15,8,15,15,16,8,8,15,15,14,14,10,17,16,16,17,15,15,17,14,15,17,14,15,15,10,15,0,8,0,15,0,0,15,15,7,14,8,11,0,15,8,15,15,0,0,15,15,16,16,8,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,0,0,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,17,16,9,8,15,15,15,15,11,16,14,15,16,15,15,16,15,15,15,16,15,15,10,17,15,8,0,0,0,0,15,15,7,14,10,10,0,15,8,17,15,0,0,17,15,16,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,8,8,16,16,14,14,9,15,15,15,16,16,15,16,14,15,15,14,16,16,9,15,15,8,0,15,0,0,0,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,15,15,15,8,8,16,16,14,14,9,15,15,15,16,16,15,16,14,15,15,14,16,16,9,15,15,8,0,15,0,0,16,0,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,7,7,14,7,14,7,7,7,14,14,7,7,14,14,14,7,14,14,14,7,14,14,7,7,7,7,14,0,7,0,0,7,7,0,7,14,14,0,14,0,14,7,0,0,7,14,7,7,7,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,0,14,0,0,14,14,7,0,7,7,0,14,7,14,14,0,0,14,14,14,14,7,8,10,15,8,15,8,8,7,14,17,8,7,15,15,15,8,15,14,15,8,16,15,8,10,10,8,15,0,10,0,0,8,8,14,7,0,17,0,15,1,17,8,0,0,10,15,9,8,8,8,10,16,8,15,8,8,7,14,19,10,9,16,17,15,8,17,14,15,10,16,15,8,12,11,11,15,0,10,0,0,8,8,14,7,17,0,0,15,1,17,8,0,0,10,15,11,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,15,22,8,15,15,24,14,21,15,15,14,31,22,30,23,31,21,22,23,21,31,24,17,15,15,15,0,15,0,0,15,15,14,14,15,15,0,0,8,22,15,0,0,16,22,14,22,8,8,8,8,1,1,8,8,7,7,1,8,7,8,8,8,8,8,7,8,8,7,8,8,1,8,8,1,0,8,0,0,8,8,0,7,1,1,0,8,0,8,8,0,0,8,8,7,8,1,15,17,22,8,15,15,15,14,21,17,15,14,22,22,22,15,22,21,22,15,23,22,15,10,17,15,15,0,17,0,0,15,15,14,14,17,17,0,22,8,0,15,0,0,17,22,16,15,8,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,15,14,15,15,8,15,15,8,0,15,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,17,15,8,8,15,16,14,14,10,15,14,16,15,15,16,16,14,15,16,16,16,16,11,17,15,8,0,17,0,0,15,15,7,14,10,10,0,16,8,17,15,0,0,0,15,16,15,8,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,22,21,22,15,21,22,15,8,15,15,15,0,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,0,14,15,8,14,16,14,7,7,14,14,14,14,11,16,16,14,16,14,14,16,14,14,16,16,14,14,11,16,16,7,0,16,0,0,14,14,7,14,9,11,0,14,7,16,14,0,0,16,14,0,14,7,22,15,16,8,8,15,22,14,14,8,15,14,23,15,22,22,22,14,15,22,14,22,22,15,15,16,8,0,15,0,0,15,15,7,14,8,9,0,22,8,15,15,0,0,15,15,14,0,8,8,8,9,9,8,8,8,8,8,9,9,7,8,9,8,8,9,8,8,8,7,8,8,8,8,8,8,0,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,0,0,18,17,8,11,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,16,17,22,10,15,0,0,0,24,24,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,18,0,17,8,11,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,11,19,15,10,17,0,0,0,17,17,9,16,12,10,0,17,10,19,17,0,2,19,17,16,17,10,17,17,0,9,11,17,18,18,17,9,16,14,18,16,18,18,17,18,17,17,16,17,17,8,19,16,10,16,0,0,0,17,17,9,16,11,9,0,17,11,17,18,0,2,17,17,14,18,12,8,8,9,0,8,8,8,8,8,9,9,7,8,9,8,8,9,8,8,8,7,8,8,8,8,8,8,9,0,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,9,11,11,11,8,0,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,9,11,9,10,8,0,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,11,11,24,17,17,8,10,0,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,0,0,0,24,24,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,17,17,18,8,10,17,0,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,18,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,23,16,18,8,10,23,16,0,17,8,22,14,17,15,16,23,15,18,16,15,16,16,16,14,17,22,9,15,0,0,0,23,23,9,23,10,8,0,16,10,16,16,0,2,23,16,21,24,18,16,16,17,8,9,16,16,17,0,8,15,14,16,15,16,16,15,17,16,14,16,16,16,7,16,14,9,15,0,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,10,8,10,9,9,8,8,8,8,8,0,9,7,8,9,8,8,9,8,8,8,9,8,8,10,10,8,8,11,0,0,0,8,8,7,7,10,10,0,8,1,10,8,0,0,10,8,9,8,9,22,15,16,9,8,22,15,22,15,9,0,14,15,16,15,22,16,15,15,15,14,15,15,15,15,22,8,16,0,0,0,22,22,7,21,8,8,0,15,8,15,15,0,0,22,15,21,22,16,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,0,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,17,17,18,8,11,17,17,17,16,8,15,14,0,15,17,17,15,17,17,16,16,17,17,8,18,16,10,15,0,0,0,17,17,9,16,11,9,0,17,11,17,17,0,2,17,17,14,18,11,15,15,16,9,8,15,15,15,15,9,16,14,15,0,15,15,16,15,15,15,14,15,15,8,15,15,8,16,0,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,9,17,17,18,8,10,17,18,16,16,8,15,14,17,15,0,18,16,16,17,16,16,17,17,8,18,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,24,17,18,8,10,24,18,23,16,8,22,14,17,15,18,0,16,16,17,16,16,17,17,15,18,22,10,15,0,0,0,24,24,9,23,10,8,0,17,10,17,18,0,2,24,17,21,24,17,15,15,17,9,8,15,16,15,15,9,16,14,15,16,16,16,0,15,15,16,14,15,15,8,16,15,8,16,0,0,0,15,15,7,14,8,8,0,15,8,15,16,0,0,15,15,14,15,9,16,16,18,8,10,16,16,18,17,8,15,14,17,15,16,16,15,0,16,15,16,16,16,7,17,15,9,15,0,0,0,16,16,9,16,10,8,0,16,10,16,16,0,2,16,16,14,17,11,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,15,15,17,8,9,15,16,15,14,8,15,14,16,15,16,16,16,15,15,0,14,15,15,8,17,16,8,15,0,0,0,15,15,7,14,9,9,0,15,9,15,16,0,0,15,15,14,16,9,16,18,16,7,9,16,16,16,16,9,14,14,16,14,16,16,14,16,16,14,0,16,16,9,18,14,9,16,0,0,0,16,16,9,16,11,9,0,16,9,18,16,0,2,18,16,16,16,9,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,0,17,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,0,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,16,11,8,8,9,15,8,14,7,10,15,7,8,8,8,15,8,7,8,8,9,8,8,0,10,15,8,10,0,0,0,15,15,7,14,10,10,0,8,1,10,8,0,0,17,8,16,15,15,17,19,19,8,11,17,18,17,16,10,15,14,18,15,18,18,16,17,17,17,18,17,17,10,0,16,10,17,0,0,0,17,17,9,16,13,11,0,17,11,19,18,0,2,19,17,16,18,11,22,15,16,8,9,22,15,22,14,8,22,14,16,15,15,22,15,15,15,16,14,15,15,15,16,0,8,15,0,0,0,22,22,7,21,9,9,0,15,9,15,15,0,0,22,15,21,23,16,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,0,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,15,17,16,9,8,15,15,15,15,11,16,14,15,16,15,15,16,15,15,15,16,15,15,10,17,15,8,0,0,0,0,15,15,7,14,10,10,0,15,8,17,15,0,0,17,15,16,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,17,17,8,10,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,0,0,0,0,24,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,24,17,17,8,10,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,0,0,0,24,0,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,0,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,0,0,0,23,23,9,0,9,7,0,16,9,16,16,0,2,23,16,21,23,16,10,12,11,8,11,10,10,10,9,10,8,7,11,8,10,10,8,10,10,9,11,10,10,10,13,9,10,10,0,0,0,10,10,9,9,0,11,0,10,4,12,10,0,2,12,10,9,11,11,8,10,9,8,9,8,8,8,7,10,8,7,9,8,8,8,8,8,8,9,9,8,8,10,11,9,8,10,0,0,0,8,8,7,7,11,0,0,8,2,10,8,0,0,10,8,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,0,10,17,17,0,2,17,17,14,17,10,10,10,11,1,4,10,10,10,9,1,8,7,11,8,10,10,8,10,10,9,9,10,10,1,11,9,3,8,0,0,0,10,10,2,9,4,2,0,10,0,10,10,0,2,10,10,7,11,4,17,19,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,19,15,10,17,0,0,0,17,17,9,16,12,10,0,17,10,0,17,0,2,19,17,16,17,10,17,17,18,8,10,17,18,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,18,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,0,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,24,19,17,8,10,24,17,23,16,10,22,14,17,15,17,24,15,16,17,15,18,17,17,17,19,22,10,17,0,0,0,24,24,9,23,12,10,0,17,10,19,17,0,2,0,17,23,24,17,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,21,16,14,7,7,21,14,21,14,9,21,14,14,14,14,21,14,14,14,14,16,14,14,16,16,21,7,16,0,0,0,21,21,7,21,9,9,0,14,7,16,14,0,0,23,14,0,21,14,24,17,18,8,11,24,17,24,16,8,22,14,18,15,17,24,15,17,17,16,16,17,17,15,18,23,10,15,0,0,0,24,24,9,23,11,9,0,17,11,17,17,0,2,24,17,21,0,18,17,10,12,9,11,17,10,18,10,9,16,7,11,9,10,17,9,11,10,9,9,10,10,15,11,16,10,9,0,0,0,17,17,9,16,11,9,0,10,4,10,10,0,2,17,10,14,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,8,10,25,18,24,16,8,22,14,18,15,17,25,16,16,17,15,16,17,18,15,18,23,10,15,24,0,0,0,25,9,23,10,9,0,18,10,17,17,0,3,25,17,21,25,17,18,0,17,8,10,18,18,16,16,8,15,14,18,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,0,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,18,17,0,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,18,15,10,15,17,0,0,0,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,0,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,10,10,10,8,0,10,12,9,9,8,8,9,10,8,10,12,8,11,10,8,9,12,10,8,10,10,10,8,10,0,0,0,12,9,9,10,8,0,10,5,10,12,0,2,10,10,7,10,10,25,18,17,8,10,0,19,23,16,9,22,15,18,16,18,24,16,16,17,15,16,18,19,16,17,23,10,16,24,0,0,0,25,9,23,10,9,0,18,10,17,17,0,3,25,17,21,25,17,18,18,17,8,12,19,0,16,16,9,15,17,18,16,18,19,16,18,17,15,16,20,19,9,17,18,10,16,17,0,0,0,20,9,16,10,9,0,18,12,17,19,0,3,18,17,14,18,10,24,16,17,7,9,23,16,0,16,7,21,14,16,14,16,24,15,16,16,14,16,16,16,14,17,21,9,14,23,0,0,0,24,9,23,9,7,0,16,9,16,16,0,2,23,16,21,23,16,16,16,16,7,9,16,16,16,0,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,0,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,8,8,8,8,8,9,9,7,7,0,8,8,8,9,9,8,9,7,8,8,7,9,9,9,8,8,8,9,8,0,0,0,9,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,22,15,15,8,8,22,15,21,14,8,0,14,15,15,15,22,15,14,15,15,14,15,15,15,15,22,8,15,22,0,0,0,22,7,21,8,8,0,15,8,15,15,0,0,22,15,21,22,15,14,14,14,7,9,15,17,14,14,8,14,0,14,15,15,16,15,16,14,14,14,17,15,8,14,16,7,15,14,0,0,0,17,7,14,7,7,0,14,9,14,16,0,0,14,14,14,14,7,18,18,17,8,10,18,18,16,16,8,15,14,0,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,0,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,15,15,15,8,8,16,16,14,14,9,15,15,15,0,16,15,16,14,15,15,14,16,16,9,15,15,8,16,15,0,0,0,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,17,17,17,8,10,18,18,16,16,9,15,15,17,16,0,17,16,16,17,15,16,18,18,9,17,15,10,16,17,0,0,0,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,25,17,18,8,12,24,19,24,16,8,22,16,17,15,17,0,16,18,17,15,16,19,17,15,18,24,10,15,24,0,0,0,27,9,23,10,8,0,17,12,17,19,0,2,24,17,21,24,17,16,15,16,8,8,16,16,15,14,9,15,15,15,16,16,16,0,14,15,15,14,16,16,9,16,15,8,16,15,0,0,0,17,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,16,16,16,7,11,16,18,16,16,7,14,16,16,14,16,18,14,0,16,14,16,18,16,7,16,16,9,14,16,0,0,0,18,9,16,9,7,0,16,11,16,18,0,2,16,16,14,16,9,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,0,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,15,8,15,15,8,15,15,0,0,0,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,0,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,17,17,17,8,12,18,20,16,16,9,15,17,17,16,18,19,16,18,17,15,16,0,18,9,17,17,10,16,17,0,0,0,20,9,16,10,8,0,17,12,17,24,0,2,17,17,14,17,10,18,18,17,8,10,19,19,16,16,9,15,15,18,16,18,17,16,16,17,15,16,18,0,9,17,16,10,16,17,0,0,0,18,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,15,8,8,8,8,16,9,14,7,9,15,8,8,9,9,15,9,7,8,8,7,9,9,0,8,15,8,9,15,0,0,0,16,7,14,8,8,0,8,1,8,8,0,0,15,8,14,15,15,18,17,18,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,0,15,10,15,17,0,0,0,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,23,16,15,8,10,23,18,21,14,8,22,16,16,15,15,24,15,16,15,15,14,17,16,15,15,0,8,15,22,0,0,0,24,7,21,8,9,0,16,10,15,17,0,1,23,15,21,23,15,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,0,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,15,15,15,8,8,16,16,14,14,9,15,15,15,16,16,15,16,14,15,15,14,16,16,9,15,15,8,0,15,0,0,0,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,24,17,17,8,10,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,0,0,0,0,24,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,17,18,8,12,25,20,24,16,9,22,17,17,16,18,27,17,18,17,15,16,20,18,16,18,24,10,16,24,0,0,0,0,9,23,10,8,0,17,12,17,19,0,2,24,17,21,24,17,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,0,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,0,23,9,0,9,7,0,16,9,16,16,0,2,23,16,21,23,16,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,0,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,9,9,8,8,8,9,9,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,9,8,8,9,8,8,8,0,0,0,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,17,8,10,18,18,16,16,8,15,14,18,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,0,17,9,16,10,9,0,0,10,17,17,0,3,18,17,14,18,10,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,12,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,0,12,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,0,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,17,17,17,8,12,17,19,16,16,8,15,16,17,15,17,19,15,18,17,15,16,24,17,8,17,17,10,15,17,0,0,0,19,9,16,10,8,0,17,12,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,0,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,25,18,17,8,10,25,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,0,24,9,23,10,9,0,18,10,17,17,0,3,0,17,21,25,17,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,0,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,0,21,7,21,7,7,0,14,7,14,14,0,0,21,14,0,21,14,25,18,17,8,10,25,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,0,24,9,23,10,9,0,18,10,17,17,0,3,25,17,21,0,17,17,10,10,8,10,17,10,16,9,8,15,7,10,8,10,17,8,9,10,8,9,10,10,15,10,15,10,8,17,0,0,0,17,9,16,10,8,0,10,3,10,10,0,2,17,10,14,17,0,0,17,18,8,10,24,17,25,16,8,22,14,17,15,18,25,16,17,18,15,16,17,17,15,18,22,10,15,24,0,0,25,0,9,23,10,8,0,18,10,18,17,0,2,24,17,21,24,17,17,0,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,18,17,0,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,18,15,10,15,17,0,0,18,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,0,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,10,10,10,8,0,10,12,9,9,8,8,9,10,8,10,12,8,11,10,8,9,12,10,8,10,10,10,8,10,0,0,12,0,9,9,10,8,0,10,5,10,12,0,2,10,10,7,10,10,24,17,17,8,10,0,18,23,16,9,22,15,17,16,18,24,16,16,17,15,16,18,18,16,17,22,10,16,24,0,0,25,0,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,17,17,17,8,12,18,0,16,16,9,15,17,17,16,18,19,16,18,17,15,16,20,18,9,17,17,10,16,17,0,0,20,0,9,16,10,8,0,17,12,17,19,0,2,17,17,14,17,10,25,16,17,7,9,23,16,0,16,7,21,14,16,14,17,24,15,17,17,14,16,16,16,14,17,21,9,14,23,0,0,24,0,9,23,9,7,0,17,9,17,16,0,2,23,16,21,23,16,16,16,16,7,9,16,16,16,0,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,0,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,8,8,8,8,8,9,9,7,7,0,8,8,8,9,9,8,9,7,8,8,7,9,9,9,8,8,8,9,8,0,0,9,0,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,22,15,15,8,8,22,15,21,14,8,0,14,15,15,15,22,15,14,15,15,14,15,15,15,15,22,8,15,22,0,0,22,0,7,21,8,8,0,15,8,15,15,0,0,22,15,21,22,15,14,14,14,7,9,15,17,14,14,8,14,0,14,15,15,16,15,16,14,14,14,17,15,8,14,16,7,15,14,0,0,17,0,7,14,7,7,0,14,9,14,16,0,0,14,14,14,14,7,17,17,17,8,10,17,17,16,16,8,15,14,0,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,15,15,15,8,8,16,16,14,14,9,15,15,15,0,16,15,16,14,15,15,14,16,16,9,15,15,8,16,15,0,0,16,0,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,18,17,17,8,10,18,18,17,16,9,15,15,17,16,0,17,16,17,18,15,16,18,18,9,17,15,10,16,17,0,0,18,0,9,16,10,8,0,18,10,18,17,0,2,17,17,14,17,10,25,17,18,8,12,24,19,24,16,8,22,16,17,15,17,0,16,18,17,15,16,19,17,15,18,24,10,15,24,0,0,27,0,9,23,10,8,0,17,12,17,19,0,2,24,17,21,24,17,16,15,16,8,8,16,16,15,14,9,15,15,15,16,16,16,0,14,15,15,14,16,16,9,16,15,8,16,15,0,0,17,0,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,17,16,16,7,11,16,18,17,16,7,14,16,16,14,17,18,14,0,17,14,16,18,16,7,16,16,9,14,16,0,0,18,0,9,16,9,7,0,17,11,17,18,0,2,16,16,14,16,9,18,17,17,8,10,17,17,17,16,8,15,14,17,15,18,17,15,17,0,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,18,10,18,17,0,2,17,17,14,17,10,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,15,8,15,15,8,15,15,0,0,15,0,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,0,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,17,17,17,8,12,18,20,16,16,9,15,17,17,16,18,19,16,18,17,15,16,0,18,9,17,17,10,16,17,0,0,20,0,9,16,10,8,0,17,12,17,19,0,2,17,17,14,17,10,17,17,17,8,10,18,18,16,16,9,15,15,17,16,18,17,16,16,17,15,16,18,0,9,17,15,10,16,17,0,0,18,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,15,8,8,8,8,16,9,14,7,9,15,8,8,9,9,15,9,7,8,8,7,9,9,0,8,15,8,9,15,0,0,16,0,7,14,8,8,0,8,1,8,8,0,0,15,8,14,15,15,18,17,18,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,0,15,10,15,17,0,0,18,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,22,15,15,8,10,22,17,21,14,8,22,16,15,15,15,24,15,16,15,15,14,17,15,15,15,0,8,15,22,0,0,24,0,7,21,8,8,0,15,10,15,17,0,0,22,15,21,22,15,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,0,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,15,15,15,8,8,16,16,14,14,9,15,15,15,16,16,15,16,14,15,15,14,16,16,9,15,15,8,0,15,0,0,16,0,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,24,17,17,8,10,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,0,0,0,24,0,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,17,18,8,12,25,20,24,16,9,22,17,17,16,18,27,17,18,17,15,16,20,18,16,18,24,10,16,24,0,0,0,0,9,23,10,8,0,17,12,17,19,0,2,24,17,21,24,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,0,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,23,0,9,0,9,7,0,16,9,16,16,0,2,23,16,21,23,16,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,0,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,0,7,7,8,0,0,8,1,8,8,0,0,8,8,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,17,17,8,10,17,17,17,16,8,15,14,17,15,18,17,15,17,18,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,0,10,18,17,0,2,17,17,14,17,10,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,12,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,12,0,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,18,17,17,8,10,17,17,17,16,8,15,14,17,15,18,17,15,17,18,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,18,10,0,17,0,2,17,17,14,17,10,17,17,17,8,12,17,19,16,16,8,15,16,17,15,17,19,15,18,17,15,16,19,17,8,17,17,10,15,17,0,0,19,0,9,16,10,8,0,17,12,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,0,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,24,17,17,8,10,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,24,0,0,24,0,9,23,10,8,0,17,10,17,17,0,2,0,17,21,24,17,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,21,0,7,21,7,7,0,14,7,14,14,0,0,21,14,0,21,14,24,17,17,8,10,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,24,0,0,24,0,9,23,10,8,0,17,10,17,17,0,2,24,17,21,0,17,17,10,10,8,10,17,10,16,9,8,15,7,10,8,10,17,8,9,10,8,9,10,10,15,10,15,10,8,17,0,0,17,0,9,16,10,8,0,10,3,10,10,0,2,17,10,14,17,0,0,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,9,0,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,9,9,0,7,16,9,9,11,18,14,7,7,18,14,16,9,14,16,18,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,7,7,7,0,7,7,7,7,7,14,7,7,7,7,7,7,7,7,7,7,7,7,7,7,14,7,14,7,7,0,0,7,7,0,7,7,14,0,7,0,7,7,0,7,7,7,7,7,14,9,9,16,7,0,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,9,9,9,7,9,0,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,9,9,9,7,9,9,0,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,9,9,11,7,9,9,9,0,12,7,7,8,11,7,9,9,7,10,11,7,10,9,9,7,9,7,9,7,9,0,0,9,9,0,10,9,7,0,9,2,9,9,0,3,9,9,8,9,9,9,9,18,7,16,9,9,12,0,14,7,8,18,14,16,9,14,17,18,7,17,16,9,7,9,7,16,14,9,0,0,9,9,0,10,16,14,0,16,2,16,9,0,3,9,16,8,9,9,7,7,14,14,14,7,7,7,14,0,7,7,14,14,14,7,14,14,14,7,14,14,7,7,14,7,22,14,7,0,0,7,7,0,7,14,22,0,14,0,14,7,0,7,7,14,7,7,14,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,0,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,7,7,7,7,7,7,7,8,8,7,7,0,7,7,7,7,7,8,7,7,8,7,7,7,7,7,7,7,7,0,0,7,7,0,8,7,7,0,7,0,7,7,0,1,7,7,8,7,7,9,9,18,7,16,9,9,11,18,14,7,7,0,14,16,9,14,16,18,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,7,7,14,7,14,7,7,7,14,14,7,7,14,0,14,7,14,14,14,7,14,14,7,7,7,7,14,14,7,0,0,7,7,0,7,14,14,0,14,0,14,7,0,0,7,14,7,7,7,9,9,16,7,16,9,9,9,16,14,7,7,16,14,0,9,14,16,16,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,0,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,7,7,14,7,14,7,7,7,14,14,7,7,14,14,14,7,0,14,14,7,14,14,7,7,7,7,14,14,7,0,0,7,7,0,7,14,14,0,14,0,14,7,0,0,7,14,7,7,7,9,9,16,7,16,9,9,10,17,14,7,8,16,14,16,9,14,0,16,7,17,16,9,7,9,7,16,14,9,0,0,9,9,0,10,16,14,0,16,2,16,9,0,3,9,16,8,9,9,9,9,18,7,16,9,9,11,18,14,7,7,18,14,16,9,14,16,0,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,0,0,7,7,0,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,9,9,16,7,16,9,9,10,17,14,7,8,16,14,16,9,14,17,16,7,0,16,9,7,9,7,17,14,9,1,1,9,9,0,11,16,14,1,16,2,17,9,1,3,9,17,9,9,9,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,16,0,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,0,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,0,0,7,7,0,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,9,9,9,14,9,9,9,9,9,14,7,7,9,7,9,9,7,9,9,7,9,9,9,7,0,7,16,7,9,0,0,9,9,0,9,9,14,0,9,2,9,9,0,9,9,9,7,9,16,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,0,0,7,7,0,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,9,9,16,14,16,9,9,9,16,22,7,7,16,14,16,9,14,16,16,7,17,16,9,7,16,7,0,14,9,1,1,9,9,0,10,16,22,1,16,2,17,9,1,9,9,17,8,9,16,7,7,14,7,14,7,7,7,14,14,7,7,14,14,14,7,14,14,14,7,14,14,7,7,7,7,14,0,7,0,0,7,7,0,7,14,14,0,14,0,14,7,0,0,7,14,7,7,7,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,0,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,0,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,0,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,7,9,9,9,10,10,7,7,8,9,7,9,9,7,10,9,7,11,9,9,7,9,7,10,7,9,1,1,9,9,0,0,9,7,1,9,2,10,9,1,3,9,10,9,9,9,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,0,14,0,16,2,16,9,0,2,9,16,7,9,9,7,7,14,14,14,7,7,7,14,22,7,7,14,14,14,7,14,14,14,7,14,14,7,7,14,7,22,14,7,0,0,7,7,0,7,14,0,0,14,0,14,7,0,7,7,14,7,7,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,0,2,16,9,0,2,9,16,7,9,9,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,0,2,2,0,0,2,0,2,2,0,2,2,2,0,2,2,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,17,16,9,7,9,7,17,14,9,1,1,9,9,0,10,16,14,1,16,2,0,9,1,2,9,17,8,9,9,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,0,0,2,9,9,7,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,2,2,2,7,2,2,2,3,3,7,0,1,2,0,2,2,0,3,2,0,3,2,2,0,9,0,9,0,2,0,0,2,2,0,3,2,7,0,2,2,2,2,0,0,2,2,1,2,9,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,0,9,7,9,9,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,17,16,9,7,9,7,17,14,9,1,1,9,9,0,10,16,14,1,16,2,17,9,1,2,9,0,8,9,9,7,7,7,7,7,7,7,8,8,7,7,8,7,7,7,7,7,8,7,7,9,7,7,7,7,7,8,7,7,1,1,7,7,0,9,7,7,1,7,0,8,7,1,1,7,8,0,7,7,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,0,9,9,9,9,14,9,9,9,9,9,14,7,7,9,7,9,9,7,9,9,7,9,9,9,7,16,7,16,7,9,0,0,9,9,0,9,9,14,0,9,2,9,9,0,9,9,9,7,9,0,0,16,16,7,9,23,16,23,16,7,23,14,16,16,18,23,14,16,16,16,16,16,16,14,16,21,11,14,23,0,0,23,23,9,0,9,7,0,16,9,16,16,0,4,23,18,21,25,18,16,0,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,0,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,7,7,7,0,14,14,7,14,14,14,14,7,7,14,7,7,7,7,14,7,7,7,7,7,14,7,7,7,7,0,0,7,7,7,0,14,7,0,7,7,7,7,0,0,7,7,14,7,7,9,9,9,14,0,16,9,16,16,14,14,7,9,14,9,9,7,9,16,7,9,9,9,7,16,7,9,7,9,0,0,9,9,9,0,16,7,0,9,9,9,9,0,2,9,9,14,9,9,23,16,16,14,16,0,16,30,23,14,28,14,16,21,16,23,14,16,23,14,16,16,16,14,23,21,9,14,23,0,0,23,23,9,0,16,7,0,16,16,16,16,0,2,23,16,28,23,16,16,16,16,7,9,16,0,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,23,16,16,14,16,30,16,0,24,14,28,15,16,21,16,23,14,17,23,14,17,16,16,14,23,21,9,14,23,0,0,23,23,10,0,16,7,0,16,16,16,16,0,3,23,16,29,23,16,16,16,16,14,16,23,16,24,0,14,21,15,16,21,16,16,14,17,23,14,18,16,16,7,23,14,9,14,16,0,0,16,16,10,0,16,7,0,16,16,16,16,0,3,16,16,23,16,9,7,7,7,14,14,14,7,14,14,0,14,7,7,14,7,7,7,7,14,7,7,7,7,7,14,7,7,7,7,0,0,7,7,7,0,14,7,0,7,7,7,7,0,0,7,7,14,7,7,23,14,14,14,14,28,14,28,21,14,0,14,14,23,16,21,14,14,21,16,14,14,14,14,21,21,9,14,21,0,0,21,21,7,0,14,7,0,14,14,14,14,0,2,21,16,28,23,16,14,14,14,7,7,14,14,15,15,7,14,0,14,14,14,14,14,15,14,14,15,14,14,7,14,14,7,14,14,0,0,14,14,8,0,7,7,0,14,7,14,14,0,1,14,14,15,14,7,16,16,16,7,9,16,16,16,16,7,14,14,0,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,14,14,14,14,21,14,21,21,14,23,14,14,0,16,14,14,14,21,16,14,14,14,7,21,14,9,14,14,0,0,14,14,7,0,14,7,0,14,14,14,14,0,2,14,16,21,16,9,18,16,16,7,9,16,16,16,16,7,16,14,16,16,0,16,14,16,16,16,16,16,16,7,16,14,11,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,4,16,18,14,18,11,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,0,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,23,23,9,0,9,7,0,16,9,16,16,0,2,23,16,21,23,16,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,0,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,0,7,7,0,14,7,14,14,0,0,14,14,14,14,7,16,16,16,7,9,16,16,17,17,7,14,15,16,14,16,16,14,0,16,14,17,16,16,7,16,14,9,14,16,0,0,16,16,10,0,9,7,0,16,9,16,16,0,3,16,16,16,16,9,16,16,16,14,16,23,16,23,23,14,21,14,16,21,16,16,14,16,0,14,16,16,16,7,23,14,9,14,16,0,0,16,16,9,0,16,7,0,16,16,16,16,0,2,16,16,21,16,9,16,14,14,7,7,14,14,14,14,7,16,14,14,16,16,14,14,14,14,0,14,14,14,7,14,14,9,14,14,0,0,14,14,7,0,7,7,0,14,7,14,14,0,2,14,16,14,16,9,16,16,16,7,9,16,16,17,18,7,14,15,16,14,16,16,14,17,16,14,0,16,16,7,16,14,10,14,16,1,1,16,16,11,0,9,7,1,16,9,17,16,1,3,16,17,17,16,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,0,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,0,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,14,7,7,7,7,14,7,14,7,7,14,7,7,7,7,14,7,7,7,7,7,7,7,0,7,14,7,7,14,0,0,14,14,7,0,7,7,0,7,0,7,7,0,0,14,7,14,14,14,16,16,16,14,16,23,16,23,23,14,21,14,16,21,16,16,14,16,23,14,16,16,16,7,0,14,9,14,16,0,0,16,16,9,0,16,7,0,16,16,16,16,0,2,16,16,21,16,9,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,0,7,14,21,0,0,21,21,7,0,7,7,0,14,7,14,14,0,0,21,14,21,21,14,11,9,9,7,9,9,9,9,9,7,9,7,9,9,11,9,7,9,9,9,10,9,9,7,9,7,0,7,9,1,1,9,9,10,0,9,7,1,9,2,10,9,1,4,9,12,8,11,11,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,0,14,0,0,14,14,7,0,7,7,0,14,7,14,14,0,0,14,14,14,14,7,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,0,0,0,23,23,9,0,9,7,0,16,9,16,16,0,2,23,16,21,23,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,0,23,9,0,9,7,0,16,9,16,16,0,2,23,16,21,23,16,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,23,0,9,0,9,7,0,16,9,16,16,0,2,23,16,21,23,16,9,9,9,7,9,9,9,10,10,7,7,8,9,7,9,9,7,10,9,7,11,9,9,7,9,7,10,7,9,1,1,9,9,0,0,9,7,1,9,2,10,9,1,3,9,10,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,14,16,16,9,16,16,14,14,7,9,14,9,9,7,9,16,7,9,9,9,7,16,7,9,7,9,0,0,9,9,9,0,0,7,0,9,9,9,9,0,2,9,9,14,9,9,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,7,0,7,0,0,7,0,7,7,0,0,7,7,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,1,0,0,1,1,0,0,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,0,9,16,16,0,2,16,16,14,16,9,9,9,9,7,9,16,9,16,16,7,14,7,9,14,9,9,7,9,16,7,9,9,9,0,16,7,2,7,9,0,0,9,9,2,0,9,0,0,9,0,9,9,0,2,9,9,14,9,2,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,17,16,16,7,16,14,10,14,16,1,1,16,16,10,0,9,7,1,16,9,0,16,1,2,16,17,15,16,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,0,0,2,16,16,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,4,2,2,0,2,2,2,3,3,0,2,1,2,2,4,2,0,3,2,2,3,2,2,0,2,0,4,0,2,0,0,2,2,3,0,2,0,0,2,2,2,2,0,0,2,4,1,4,4,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,23,23,9,0,9,7,0,16,9,16,16,0,2,0,16,21,23,16,18,16,16,7,9,16,16,16,16,7,16,14,16,16,18,16,14,16,16,16,17,16,16,7,16,14,12,14,16,1,1,16,16,10,0,9,7,1,16,9,17,16,1,4,16,0,15,18,11,21,14,14,14,14,28,14,29,23,14,28,15,14,21,14,21,14,16,21,14,17,14,14,14,21,21,8,14,21,1,1,21,21,9,0,14,7,1,14,14,15,14,1,1,21,15,0,21,14,25,16,16,7,9,23,16,23,16,7,23,14,16,16,18,23,14,16,16,16,16,16,16,14,16,21,11,14,23,0,0,23,23,9,0,9,7,0,16,9,16,16,0,4,23,18,21,0,18,18,9,9,7,9,16,9,16,9,7,16,7,9,9,11,16,7,9,9,9,9,9,9,14,9,14,11,7,16,0,0,16,16,9,0,9,7,0,9,2,9,9,0,4,16,11,14,18,0,0,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,10,0,10,8,10,10,10,9,9,10,8,7,10,8,10,10,8,9,10,8,11,10,10,10,12,8,10,10,12,0,0,10,10,9,9,0,10,0,10,3,12,10,0,2,12,10,9,10,10,10,10,0,8,18,10,10,10,16,15,8,7,18,15,17,10,15,17,17,9,16,17,10,8,11,9,17,15,11,0,0,10,10,16,9,0,16,0,17,4,17,10,0,2,10,17,7,11,11,8,8,8,0,15,15,8,14,14,15,15,7,8,15,8,8,8,7,15,8,7,8,8,8,15,8,8,8,8,0,0,8,8,7,14,0,8,0,8,8,8,8,0,0,8,8,14,8,8,10,10,18,15,0,17,10,17,23,22,15,7,18,22,17,10,15,17,24,9,16,17,10,8,18,9,17,15,11,0,0,10,10,16,16,0,16,0,17,11,17,10,0,2,10,17,14,11,11,10,10,10,15,17,0,10,16,16,15,15,7,10,15,10,10,8,9,17,8,9,10,10,8,17,8,10,8,10,0,0,10,10,9,16,0,8,0,10,10,10,10,0,2,10,10,14,10,10,10,10,10,8,10,10,0,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,9,9,10,14,17,16,9,0,16,14,14,7,10,14,9,9,7,10,16,8,9,9,9,7,17,8,9,7,10,0,0,9,9,9,16,0,8,0,9,10,9,9,0,2,9,9,14,10,10,9,9,16,14,23,16,9,16,0,21,14,7,16,21,16,9,14,16,23,7,16,16,9,7,16,7,16,14,9,0,0,9,9,16,16,0,14,0,16,9,16,9,0,2,9,16,14,9,9,8,10,15,15,22,15,8,14,21,0,15,7,15,22,15,8,15,14,22,8,16,15,8,10,17,8,15,17,10,0,0,8,8,14,14,0,17,0,15,8,17,8,0,0,10,15,16,8,8,8,8,8,15,15,15,8,14,14,15,0,7,8,15,8,8,8,7,15,8,7,8,8,8,15,8,8,8,8,0,0,8,8,7,14,0,8,0,8,8,8,8,0,0,8,8,14,8,8,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,7,7,0,7,0,7,0,7,7,0,0,7,7,7,7,7,10,10,18,8,18,10,10,10,16,15,8,7,0,15,17,10,15,17,17,9,16,17,10,8,11,9,17,15,11,0,0,10,10,16,9,0,16,0,17,4,17,10,0,2,10,17,7,11,11,8,8,15,15,22,15,8,14,21,22,15,7,15,0,15,8,15,14,22,8,14,15,8,8,15,8,15,15,8,0,0,8,8,14,14,0,15,0,15,8,15,8,0,0,8,15,14,8,8,10,10,17,8,17,10,10,9,16,15,8,7,17,15,0,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,0,15,0,17,3,17,10,0,2,10,17,7,10,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,0,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,0,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,0,15,0,15,1,15,8,0,0,8,15,7,8,8,9,9,17,7,17,9,9,10,16,14,7,7,17,14,16,9,14,0,16,8,16,16,9,7,10,8,16,14,10,0,0,9,9,16,9,0,15,0,16,3,16,9,0,2,9,16,7,10,10,10,10,17,15,24,17,10,16,23,22,15,7,17,22,17,10,15,16,0,8,16,17,10,8,17,8,17,15,10,0,0,10,10,16,16,0,15,0,17,10,17,10,0,2,10,17,14,10,10,8,8,9,8,9,8,8,8,7,8,8,7,9,8,8,8,8,8,8,0,7,8,8,8,9,9,8,8,9,0,0,8,8,7,7,0,9,0,8,2,8,8,0,0,8,8,7,9,9,9,11,16,7,16,9,9,9,16,16,7,7,16,14,16,9,14,16,16,7,0,16,9,9,11,7,16,16,11,0,0,9,9,16,9,0,16,0,16,2,18,9,0,2,11,16,9,9,9,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,0,10,8,10,8,17,15,10,0,0,10,10,16,9,0,15,0,17,3,17,10,0,2,10,17,7,10,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,0,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,8,10,8,8,8,8,8,7,7,10,8,7,8,8,8,8,8,7,8,8,9,8,8,0,10,8,8,10,10,0,0,8,8,7,7,0,10,0,8,1,10,8,0,0,10,8,9,8,8,10,12,11,15,18,17,10,17,16,17,15,7,11,15,10,10,8,10,17,9,11,10,10,10,0,9,10,10,13,0,0,10,10,9,16,0,11,0,10,11,12,10,0,2,12,10,16,11,11,8,8,9,8,9,8,8,8,7,8,8,7,9,8,8,8,8,8,8,9,7,8,8,8,9,0,8,8,9,0,0,8,8,7,7,0,9,0,8,2,8,8,0,0,8,8,7,9,9,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,0,15,0,17,3,17,10,0,2,10,17,7,10,10,8,10,15,8,15,8,8,7,14,17,8,7,15,15,15,8,15,14,15,8,16,15,8,10,10,8,15,0,10,0,0,8,8,14,7,0,17,0,15,1,17,8,0,0,10,15,9,8,8,10,12,11,8,11,10,10,10,9,10,8,7,11,8,10,10,8,10,10,9,11,10,10,10,13,9,10,10,0,0,0,10,10,9,9,0,11,0,10,4,12,10,0,2,12,10,9,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,0,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,0,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,0,14,0,16,2,16,9,0,2,9,16,7,9,9,9,9,9,14,16,16,9,16,16,14,14,7,9,14,9,9,7,9,16,7,9,9,9,7,16,7,9,7,9,0,0,9,9,9,0,0,7,0,9,9,9,9,0,2,9,9,14,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,16,8,16,8,8,8,14,17,8,7,16,15,15,8,15,15,15,9,16,15,8,10,11,9,15,17,11,0,0,8,8,14,7,0,0,0,15,2,17,8,0,0,10,15,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,0,15,0,0,3,17,10,0,2,10,17,7,10,10,3,3,4,8,11,10,3,10,9,8,8,0,4,8,3,3,1,3,10,2,2,3,3,1,11,2,3,1,4,0,0,3,3,2,9,0,2,0,3,0,3,3,0,2,3,3,7,4,4,10,12,17,8,17,10,10,9,16,17,8,7,17,15,17,10,15,16,17,8,18,17,10,10,12,8,17,17,12,0,0,10,10,16,9,0,17,0,17,3,0,10,0,2,12,17,9,10,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,0,0,2,10,10,7,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,0,0,0,2,2,2,2,0,0,2,2,0,2,2,10,12,10,8,10,10,10,9,9,10,8,7,10,8,10,10,8,9,10,8,11,10,10,10,12,8,10,10,12,0,0,10,10,9,9,0,10,0,10,3,12,10,0,2,0,10,9,10,10,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,0,15,0,17,3,17,10,0,2,10,0,7,10,10,7,9,7,14,14,14,7,14,14,16,14,7,7,14,7,7,7,7,14,7,9,7,7,9,16,7,7,9,9,0,0,7,7,7,14,0,9,0,7,7,9,7,0,0,9,7,0,7,7,10,10,11,8,11,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,8,11,9,10,8,11,0,0,10,10,9,9,0,9,0,10,4,10,10,0,2,10,10,7,0,11,10,10,11,8,11,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,8,11,9,10,8,11,0,0,10,10,9,9,0,9,0,10,4,10,10,0,2,10,10,7,11,0,0,9,8,8,8,9,9,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,9,8,8,9,8,8,8,0,0,9,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,9,0,8,8,8,9,9,7,7,12,8,7,9,8,8,8,8,7,8,8,9,8,9,10,10,9,8,10,10,0,0,9,8,7,7,10,0,0,9,1,10,8,0,1,13,8,9,9,8,8,8,0,8,16,8,8,8,14,15,8,7,17,15,15,8,15,15,15,9,14,15,8,8,9,10,15,16,9,0,0,8,8,14,7,16,0,0,15,2,15,8,0,0,8,15,7,10,9,8,8,8,0,8,8,8,7,7,15,8,7,8,8,8,8,8,7,8,8,7,8,8,8,15,8,15,8,8,0,0,8,8,14,7,8,0,0,8,1,8,8,0,7,8,8,7,8,15,8,8,16,8,0,8,8,8,14,15,8,7,16,15,15,8,15,15,15,9,14,15,8,8,9,9,15,15,9,0,0,8,8,14,7,16,0,0,15,2,15,8,0,0,8,15,7,9,9,9,9,8,8,8,0,9,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,9,8,8,9,8,8,8,0,0,9,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,9,9,8,8,8,9,0,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,9,8,8,9,8,8,8,0,0,9,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,7,7,8,7,8,7,7,0,7,7,7,7,8,7,7,7,7,8,7,8,7,7,7,7,8,8,7,7,8,0,0,7,7,7,7,8,0,0,7,1,7,7,0,0,7,7,7,8,8,7,7,14,7,14,7,7,7,0,14,7,7,14,14,14,7,14,15,14,7,14,14,7,7,7,7,14,14,7,0,0,7,7,14,7,14,0,0,14,0,14,7,0,0,7,14,7,7,7,8,12,15,15,15,8,8,7,14,0,10,9,15,17,15,8,17,14,15,10,16,15,8,12,17,10,23,19,10,0,0,8,8,22,7,17,0,0,15,1,17,8,0,7,12,15,11,8,15,8,8,8,8,8,8,8,7,7,10,0,9,8,10,8,8,10,7,8,10,7,8,8,10,8,10,8,10,8,0,0,8,8,7,7,8,0,0,8,1,8,8,0,0,8,8,9,8,8,7,7,7,7,7,7,7,7,7,9,9,0,7,9,7,7,9,7,7,9,7,7,7,9,7,9,7,9,7,0,0,7,7,7,7,7,0,0,7,0,7,7,0,0,7,7,9,7,7,9,9,17,8,16,9,9,8,14,15,8,7,0,15,15,8,15,15,15,9,14,15,9,8,9,11,15,16,9,0,0,9,8,14,7,16,0,0,16,2,15,8,0,1,9,15,7,11,9,8,8,15,8,15,8,8,7,14,17,10,9,15,0,15,8,17,14,15,10,14,15,8,10,8,10,15,17,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,9,8,8,8,8,15,8,15,8,8,7,14,15,8,7,15,15,0,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,7,8,8,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,0,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,0,0,8,1,8,8,0,0,8,8,7,8,8,8,8,15,8,15,8,8,7,14,17,10,9,15,17,15,8,0,14,15,10,14,15,8,10,8,10,15,17,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,9,8,8,7,7,15,7,15,7,7,8,15,14,7,7,15,14,14,7,14,0,14,8,14,14,7,7,8,8,14,14,8,0,0,7,7,14,7,15,0,0,14,1,14,7,0,0,7,14,7,8,8,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,15,14,0,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,7,8,8,8,8,9,8,9,8,8,8,7,10,10,9,9,10,8,8,10,8,8,0,7,8,8,10,9,11,8,10,9,0,0,8,8,7,7,9,0,0,8,2,8,8,0,0,8,8,9,9,9,7,9,14,7,14,7,7,7,14,16,7,7,14,14,14,7,14,14,14,7,0,14,7,9,9,7,14,16,9,0,0,7,7,14,7,16,0,0,14,0,16,7,0,0,9,14,9,7,7,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,15,14,15,8,14,0,8,8,8,8,15,15,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,7,8,8,9,9,8,8,8,9,9,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,0,8,8,9,8,8,8,0,0,9,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,8,10,8,8,8,8,8,7,7,12,10,9,8,10,8,8,10,7,8,10,9,8,8,0,10,10,8,12,10,0,0,8,8,7,7,10,0,0,8,1,10,8,0,0,10,8,11,8,8,8,10,9,15,9,8,8,8,7,17,8,7,9,8,8,8,8,8,8,9,9,8,8,10,0,9,15,11,11,0,0,8,8,14,7,11,0,0,8,2,10,8,0,7,10,8,9,9,16,9,9,10,8,9,9,9,8,7,10,10,9,11,10,8,8,10,8,8,11,7,8,9,10,9,0,8,11,9,0,0,9,8,7,7,9,0,0,9,2,8,8,0,1,9,8,9,11,9,8,8,15,15,15,8,8,7,14,23,8,7,15,15,15,8,15,14,15,8,14,15,8,8,15,8,0,15,8,0,0,8,8,22,7,15,0,0,15,1,15,8,0,7,8,15,7,8,15,8,10,16,8,15,8,8,7,14,19,10,9,16,17,15,8,17,14,15,10,16,15,8,12,11,11,15,0,10,0,0,8,8,14,7,17,0,0,15,1,17,8,0,0,10,15,11,9,8,8,10,9,8,9,8,8,8,7,10,8,7,9,8,8,8,8,8,8,9,9,8,8,10,11,9,8,10,0,0,0,8,8,7,7,11,0,0,8,2,10,8,0,0,10,8,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,8,8,8,9,9,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,9,8,8,9,8,8,8,0,0,0,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,0,7,7,8,0,0,8,1,8,8,0,0,8,8,7,8,8,7,7,14,14,14,7,7,7,14,22,7,7,14,14,14,7,14,14,14,7,14,14,7,7,14,7,22,14,7,0,0,7,7,0,7,14,0,0,14,0,14,7,0,7,7,14,7,7,14,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,7,0,7,0,0,7,0,7,7,0,0,7,7,7,7,7,8,10,16,8,16,8,8,8,14,17,8,7,16,15,15,8,15,15,15,9,16,15,8,10,11,9,15,17,11,0,0,8,8,14,7,0,0,0,15,2,17,8,0,0,10,15,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,15,8,15,9,9,7,14,15,8,7,16,15,15,8,15,14,15,8,14,15,9,8,8,9,15,15,8,0,0,9,8,14,7,15,0,0,0,1,15,8,0,1,9,15,7,9,8,1,1,2,1,2,1,1,1,0,1,1,0,2,1,1,1,1,1,1,2,0,1,1,1,2,2,1,1,2,0,0,1,1,0,0,2,0,0,1,0,1,1,0,0,1,1,0,2,2,8,10,15,8,15,8,8,7,14,17,8,7,15,15,15,8,15,14,15,8,16,15,8,10,10,8,15,17,10,0,0,8,8,14,7,17,0,0,15,1,0,8,0,0,10,15,9,8,8,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,0,0,8,1,8,0,0,0,8,8,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7,0,1,1,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,1,0,7,1,7,0,0,0,0,1,0,7,0,0,0,0,1,0,0,0,0,0,1,0,0,1,7,9,13,8,8,8,9,9,7,7,12,8,7,9,8,8,8,8,7,8,8,9,8,9,10,10,9,8,10,10,0,0,9,8,7,7,10,0,0,9,1,10,8,0,1,0,8,9,9,8,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,0,7,8,8,7,9,7,7,7,7,7,7,7,11,9,9,7,9,7,7,9,7,7,9,9,7,7,11,9,9,7,11,9,0,0,7,7,7,7,9,0,0,7,0,9,7,0,0,9,7,0,7,7,9,9,10,8,9,9,9,8,7,8,8,7,11,8,8,8,8,8,8,9,7,8,9,8,9,11,8,9,9,0,0,9,8,7,7,9,0,0,9,2,8,8,0,1,9,8,7,0,9,8,8,9,15,9,8,8,8,7,15,8,7,9,8,8,8,8,8,8,9,7,8,8,8,16,9,15,8,9,0,0,8,8,14,7,9,0,0,8,2,8,8,0,7,8,8,7,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,17,9,10,18,26,17,17,8,15,14,26,15,26,25,23,17,19,22,16,25,26,16,17,16,10,23,17,0,0,18,18,9,16,10,9,0,0,10,18,17,0,3,19,17,14,25,10,19,0,17,9,10,18,18,16,17,8,15,14,18,15,17,18,15,16,18,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,19,17,14,18,10,17,17,0,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,0,10,24,17,0,2,17,24,14,17,10,9,9,8,0,8,10,8,7,8,8,8,7,8,8,8,9,10,7,9,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,0,1,8,8,0,0,9,8,7,8,8,10,10,17,8,0,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,17,15,0,0,3,17,10,0,2,10,17,7,10,10,18,18,17,10,10,0,18,16,16,8,15,14,18,15,17,17,17,16,17,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,18,17,14,18,10,26,18,17,8,10,18,0,16,16,8,15,14,27,15,25,25,24,16,17,23,16,26,27,17,17,16,10,24,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,19,17,14,25,10,17,16,16,7,9,16,16,0,16,7,14,14,16,14,17,16,14,17,17,14,16,16,16,7,16,14,9,14,16,0,0,16,17,9,16,9,7,0,0,9,17,16,0,2,16,16,14,16,9,17,17,23,8,16,16,16,16,0,14,14,14,23,21,23,17,21,23,24,14,23,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,0,9,23,16,0,2,17,23,14,16,9,8,8,15,8,15,8,8,7,14,0,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,15,0,0,1,15,8,0,0,8,15,7,8,8,15,15,15,8,8,15,15,14,14,8,0,14,15,15,15,15,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,0,8,15,15,0,0,15,15,14,15,8,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,0,7,14,14,0,0,14,14,14,14,7,26,18,24,8,17,18,27,16,23,15,15,14,0,22,32,25,31,23,24,23,23,33,27,17,17,16,17,31,17,0,0,18,17,16,16,17,16,0,0,10,24,17,0,3,19,24,14,25,10,15,15,22,8,15,15,15,14,21,15,15,14,22,0,22,15,22,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,0,8,22,15,0,0,15,22,14,15,8,26,17,24,8,17,17,25,17,23,15,15,14,32,22,0,24,30,24,25,22,23,32,25,16,17,15,17,30,17,0,0,17,18,16,16,17,15,0,0,10,25,17,0,2,17,24,14,24,10,25,18,17,9,10,17,25,16,17,8,15,14,25,15,24,0,23,16,18,23,16,25,25,16,17,15,10,23,17,0,0,17,17,9,16,10,8,0,0,10,17,17,0,2,19,17,14,24,10,23,15,22,10,15,17,24,14,21,15,15,14,31,22,30,23,0,21,22,23,21,31,24,17,15,15,15,31,15,0,0,15,15,14,14,15,15,0,0,8,22,15,0,0,16,22,14,22,8,17,16,23,7,16,16,16,17,23,14,14,14,23,21,24,16,21,0,24,14,23,23,16,7,16,14,16,21,16,0,0,16,17,16,16,16,14,0,0,9,24,16,0,2,16,23,14,16,9,19,18,24,9,17,17,17,17,24,15,15,14,24,22,25,18,22,24,0,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,0,10,25,17,0,2,18,24,14,17,10,22,15,15,8,8,15,23,14,14,8,15,14,23,15,22,23,23,14,15,0,14,23,23,16,15,15,8,23,15,0,0,15,15,7,14,8,8,0,0,8,15,15,0,0,16,15,14,22,8,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,0,9,23,16,0,2,16,23,14,16,9,25,17,24,8,17,17,26,16,23,15,15,14,33,22,32,25,31,23,24,23,23,0,26,17,17,15,17,31,17,0,0,17,17,16,16,17,15,0,0,10,24,17,0,2,18,24,14,24,10,26,18,17,8,10,18,27,16,16,8,15,14,27,15,25,25,24,16,17,23,16,26,0,17,17,16,10,24,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,19,17,14,25,10,16,8,8,8,8,8,17,7,7,8,8,7,17,8,16,16,17,7,8,16,7,17,17,0,8,8,8,17,8,0,0,8,8,7,7,8,8,0,0,1,8,8,0,0,9,8,7,15,8,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,0,15,10,15,17,0,0,17,17,9,16,10,8,0,0,10,17,17,0,2,17,17,14,17,10,16,16,15,8,8,16,16,14,14,8,15,14,16,15,15,15,15,14,15,15,14,15,16,8,15,0,8,15,15,0,0,16,15,7,14,8,9,0,0,8,15,15,0,1,16,15,14,16,8,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,0,3,17,10,0,2,10,17,7,10,10,23,15,22,8,15,15,24,14,21,15,15,14,31,22,30,23,31,21,22,23,21,31,24,17,15,15,15,0,15,0,0,15,15,14,14,15,15,0,0,8,22,15,0,0,16,22,14,22,8,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,0,10,17,17,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,17,8,10,18,18,16,16,8,15,14,18,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,0,17,9,16,10,9,0,0,10,17,17,0,3,18,17,14,18,10,18,17,17,8,10,17,17,17,16,8,15,14,17,15,18,17,15,17,18,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,0,10,18,17,0,2,17,17,14,17,10,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,0,2,16,9,0,2,9,16,7,9,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,0,9,16,16,0,2,16,16,14,16,9,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,0,15,0,0,3,17,10,0,2,10,17,7,10,10,9,9,15,8,15,9,9,7,14,15,8,7,16,15,15,8,15,14,15,8,14,15,9,8,8,9,15,15,8,0,0,9,8,14,7,15,0,0,0,1,15,8,0,1,9,15,7,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,0,0,10,10,0,2,10,10,7,10,3,18,17,24,8,17,17,17,17,23,15,15,14,24,22,25,17,22,24,25,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,0,10,0,17,0,2,17,24,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,0,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,0,2,2,2,0,0,3,2,0,3,2,19,19,17,9,10,18,19,16,17,8,15,14,19,15,17,19,16,16,18,16,16,18,19,9,17,16,10,16,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,0,17,14,18,10,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,0,10,24,17,0,2,17,0,14,17,10,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,0,7,14,14,0,0,14,14,0,14,7,25,18,17,8,10,18,25,16,16,8,15,14,25,15,24,24,22,16,17,22,16,24,25,15,17,16,10,22,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,18,17,14,0,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,0,3,10,10,0,2,10,10,7,10,0,0,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,10,7,10,3,10,0,10,8,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,15,9,10,17,1,17,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,10,7,10,3,10,10,0,1,4,10,10,10,9,1,8,7,11,8,10,10,8,10,10,9,9,10,10,1,11,9,3,8,11,0,0,10,10,2,9,4,2,0,10,0,10,10,0,2,10,10,7,11,4,1,8,1,0,8,8,1,7,7,8,8,0,1,8,1,1,1,0,8,8,0,1,8,1,15,1,1,1,1,0,0,1,1,0,7,8,1,0,1,0,1,1,0,0,1,1,7,1,1,3,3,4,8,0,10,5,10,9,8,8,2,4,8,3,5,1,5,10,2,2,5,3,1,11,4,3,1,4,0,0,5,5,2,9,11,2,0,3,0,3,5,0,2,3,3,7,4,4,10,10,10,8,10,0,10,16,16,8,15,7,10,15,10,10,8,9,17,8,9,10,10,1,17,8,3,8,10,0,0,10,10,2,16,10,1,0,10,0,10,10,0,2,10,10,14,10,3,10,10,10,1,5,10,0,9,10,1,8,9,10,8,10,12,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,12,12,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,9,9,10,7,10,16,9,0,16,7,14,7,10,14,9,9,7,10,16,8,9,9,9,0,17,8,2,7,10,0,0,9,9,2,16,10,1,0,9,0,9,9,0,2,9,9,14,10,3,9,9,9,7,9,16,10,16,0,7,14,7,9,14,9,9,7,9,16,7,9,9,9,0,16,7,2,7,9,0,0,9,9,2,16,9,0,0,9,0,9,9,0,2,9,9,14,9,2,1,1,1,8,8,8,1,7,7,0,8,0,1,8,1,1,1,0,8,1,0,1,1,1,8,1,1,1,1,0,0,1,1,0,7,8,1,0,1,0,1,1,0,0,1,1,7,1,1,8,8,8,8,8,15,8,14,14,8,0,7,8,15,8,8,8,7,15,8,7,8,8,1,15,8,1,8,8,0,0,8,8,0,14,8,1,0,8,0,8,8,0,0,8,8,14,8,1,7,7,7,0,2,7,9,7,7,0,7,0,7,7,7,9,7,9,7,7,7,9,7,0,7,9,0,7,7,0,0,9,9,0,7,0,0,0,7,0,7,9,0,0,7,7,7,7,0,10,10,11,1,4,10,10,10,9,1,8,7,0,8,10,10,8,10,10,9,9,10,10,1,11,9,3,8,11,0,0,10,10,2,9,4,2,0,10,0,10,10,0,2,10,10,7,11,4,8,8,8,8,8,15,8,14,14,8,15,7,8,0,8,8,8,7,15,8,7,8,8,1,15,8,1,8,8,0,0,8,8,0,14,8,1,0,8,0,8,8,0,0,8,8,14,8,1,10,10,10,1,3,10,10,9,9,1,8,7,10,8,0,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,10,7,10,3,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,0,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,12,12,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,8,8,8,1,1,8,8,7,7,1,8,7,8,8,8,8,0,7,8,8,7,8,8,1,8,8,1,8,8,0,0,8,8,0,7,1,1,0,8,0,8,8,0,0,8,8,7,8,1,9,9,10,0,5,9,11,10,9,0,7,9,10,7,9,11,7,0,9,8,9,11,9,0,10,10,2,7,10,0,0,11,11,2,9,3,1,0,9,0,9,11,0,2,9,9,7,10,3,10,10,10,8,10,17,10,16,16,8,15,7,10,15,10,10,8,9,0,8,9,10,10,1,17,8,3,8,10,0,0,10,10,2,16,10,1,0,10,0,10,10,0,9,10,10,14,10,3,8,15,9,8,2,8,8,8,7,1,8,7,9,8,8,8,8,8,8,0,7,8,15,1,16,9,1,8,9,0,0,8,8,0,7,2,2,0,8,0,8,8,0,0,8,8,7,9,2,9,9,9,0,2,9,9,9,9,0,7,7,9,7,9,9,7,9,9,7,0,9,9,0,9,7,2,7,9,0,0,9,9,2,9,2,0,0,9,0,9,9,0,2,9,9,7,9,2,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,12,8,11,10,8,9,0,10,1,10,10,3,8,10,0,0,12,12,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,10,17,10,8,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,15,9,10,0,1,17,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,10,7,10,3,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,0,1,1,0,0,1,1,0,1,1,10,17,11,15,11,17,10,17,16,8,15,7,11,15,10,10,8,10,17,16,9,10,17,1,0,9,3,8,11,0,0,10,10,2,16,11,2,0,10,0,10,10,0,2,10,10,14,11,4,8,8,9,1,4,8,10,8,7,1,8,9,9,8,8,10,8,10,8,9,7,10,8,1,9,0,1,8,9,0,0,10,10,0,7,2,2,0,8,0,8,10,0,0,8,8,7,9,2,3,3,3,1,3,3,3,2,2,1,1,0,3,1,3,3,1,2,3,1,2,3,3,1,3,1,0,1,3,0,0,3,3,2,2,3,1,0,3,0,3,3,0,2,3,3,0,3,3,8,8,8,1,1,8,8,7,7,1,8,7,8,8,8,8,8,7,8,8,7,8,8,1,8,8,1,0,8,0,0,8,8,0,7,1,1,0,8,0,8,8,0,0,8,8,7,8,1,10,10,11,1,4,10,10,10,9,1,8,7,11,8,10,10,8,10,10,9,9,10,10,1,11,9,3,8,0,0,0,10,10,2,9,4,2,0,10,0,10,10,0,2,10,10,7,11,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,12,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,0,12,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,12,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,12,0,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,0,2,2,0,0,2,0,2,2,0,2,2,2,0,2,2,9,9,9,7,9,16,9,16,16,7,14,7,9,14,9,9,7,9,16,7,9,9,9,0,16,7,2,7,9,0,0,9,9,2,0,9,0,0,9,0,9,9,0,2,9,9,14,9,2,3,3,4,8,11,10,3,10,9,8,8,0,4,8,3,3,1,3,10,2,2,3,3,1,11,2,3,1,4,0,0,3,3,2,9,0,2,0,3,0,3,3,0,2,3,3,7,4,4,1,1,2,1,2,1,1,1,0,1,1,0,2,1,1,1,1,1,1,2,0,1,1,1,2,2,1,1,2,0,0,1,1,0,0,2,0,0,1,0,1,1,0,0,1,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,0,0,10,10,0,2,10,10,7,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,0,10,0,2,10,10,7,10,3,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,12,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,12,12,2,9,3,1,0,10,0,10,0,0,2,10,10,7,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,9,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,0,2,2,0,0,2,2,0,2,2,10,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,0,10,7,10,3,10,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,0,7,10,3,7,7,7,7,7,14,7,14,14,7,14,7,7,14,7,7,7,7,14,7,7,7,7,0,14,7,0,7,7,0,0,7,7,0,14,7,0,0,7,0,7,7,0,0,7,7,0,7,0,10,10,11,1,4,10,10,10,9,1,8,7,11,8,10,10,8,10,10,9,9,10,10,1,11,9,3,8,11,0,0,10,10,2,9,4,2,0,10,0,10,10,0,2,10,10,7,0,4,3,3,4,1,4,3,3,3,2,1,1,0,4,1,3,3,1,3,3,2,2,3,3,1,4,2,3,1,4,0,0,3,3,2,2,4,2,0,3,0,3,3,0,2,3,3,0,4,0,0,17,17,8,10,17,17,17,16,8,15,14,17,15,18,17,15,17,18,15,16,17,17,8,17,15,10,15,17,0,0,17,18,9,16,10,8,0,18,10,0,17,0,2,17,17,14,17,10,17,0,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,19,15,10,17,19,0,0,17,17,9,16,12,10,0,17,10,0,17,0,2,19,17,16,17,10,17,17,0,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,0,17,0,2,17,24,14,17,10,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,0,8,0,0,8,8,7,8,8,10,10,17,8,0,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,17,15,0,17,3,0,10,0,2,10,17,7,10,10,17,17,17,8,10,0,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,17,17,17,8,10,17,0,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,17,16,16,7,9,16,16,0,16,7,14,14,16,14,17,16,14,17,17,14,16,16,16,7,16,14,9,14,16,0,0,16,17,9,16,9,7,0,17,9,0,16,0,2,16,16,14,16,9,16,16,23,7,16,16,16,16,0,14,14,14,23,21,23,16,21,23,23,14,23,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,0,16,0,2,16,23,14,16,9,8,10,15,8,15,8,8,7,14,0,8,7,15,15,15,8,15,14,15,8,16,15,8,10,10,8,15,17,10,0,0,8,8,14,7,17,17,0,15,1,0,8,0,0,10,15,9,8,8,15,15,15,8,8,15,15,14,14,8,0,14,15,15,15,15,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,0,15,0,0,15,15,14,15,8,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,0,14,0,0,14,14,14,14,7,17,17,24,8,17,17,17,16,23,15,15,14,0,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,0,17,0,2,17,24,14,17,10,15,15,22,8,15,15,15,14,21,15,15,14,22,0,22,15,22,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,0,15,0,0,15,22,14,15,8,18,17,24,8,17,17,17,17,23,15,15,14,24,22,0,17,22,24,25,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,25,10,0,17,0,2,17,24,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,0,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,0,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,0,15,0,0,15,22,14,15,8,17,16,23,7,16,16,16,17,23,14,14,14,23,21,24,16,21,0,24,14,23,23,16,7,16,14,16,21,16,0,0,16,17,16,16,16,14,0,24,9,0,16,0,2,16,23,14,16,9,18,17,24,8,17,17,17,17,23,15,15,14,24,22,25,17,22,24,0,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,25,10,0,17,0,2,17,24,14,17,10,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,0,15,0,0,15,15,14,15,8,16,18,23,7,16,16,16,16,23,16,14,14,23,21,23,16,21,23,23,14,0,23,16,9,18,14,17,23,18,1,1,16,16,17,17,18,16,1,23,9,0,16,1,2,18,24,17,16,9,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,0,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,0,17,0,2,17,24,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,0,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,8,10,8,8,8,8,8,7,7,10,8,7,8,8,8,8,8,7,8,8,9,8,8,0,10,8,8,10,10,0,0,8,8,7,7,10,10,0,8,1,0,8,0,0,10,8,9,8,8,17,19,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,0,15,10,17,19,0,0,17,17,9,16,12,10,0,17,10,0,17,0,2,19,17,16,17,10,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,15,14,15,15,8,15,0,8,15,15,0,0,15,15,7,14,8,8,0,15,8,0,15,0,0,15,15,14,15,8,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,17,17,10,8,10,8,0,15,10,1,1,10,10,17,10,17,15,1,17,3,0,10,1,2,10,18,8,10,10,15,17,22,8,15,15,15,14,21,17,15,14,22,22,22,15,22,21,22,15,23,22,15,10,17,15,15,0,17,0,0,15,15,14,14,17,17,0,22,8,0,15,0,0,17,22,16,15,8,17,19,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,19,15,10,17,0,0,0,17,17,9,16,12,10,0,17,10,0,17,0,2,19,17,16,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,1,0,0,1,1,0,0,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,0,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,18,17,17,8,10,17,17,17,16,8,15,14,17,15,18,17,15,17,18,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,18,10,0,17,0,2,17,17,14,17,10,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,17,16,9,7,9,7,17,14,9,1,1,9,9,0,10,16,14,1,16,2,0,9,1,2,9,17,8,9,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,17,16,16,7,16,14,10,14,16,1,1,16,16,10,0,9,7,1,16,9,0,16,1,2,16,17,15,16,9,10,12,17,8,17,10,10,9,16,17,8,7,17,15,17,10,15,16,17,8,18,17,10,10,12,8,17,17,12,0,0,10,10,16,9,0,17,0,17,3,0,10,0,2,12,17,9,10,10,8,10,15,8,15,8,8,7,14,17,8,7,15,15,15,8,15,14,15,8,16,15,8,10,10,8,15,17,10,0,0,8,8,14,7,17,0,0,15,1,0,8,0,0,10,15,9,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,1,0,0,1,1,0,0,18,17,24,8,17,17,17,17,23,15,15,14,24,22,25,17,22,24,25,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,0,10,0,17,0,2,17,24,14,17,10,10,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,0,10,0,2,10,10,7,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,0,2,0,0,2,2,0,2,2,17,19,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,19,15,10,17,19,0,0,17,17,9,16,12,10,0,17,10,0,17,0,2,0,17,16,17,10,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,24,24,17,8,17,15,18,22,17,1,1,17,17,17,17,17,15,1,24,10,0,17,1,2,17,0,15,17,10,14,16,14,7,7,14,14,14,14,9,14,14,14,14,14,14,14,14,14,14,17,14,14,9,16,14,8,16,16,1,1,14,14,8,15,9,9,1,14,7,0,14,1,0,16,15,0,14,7,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,0,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,0,10,0,2,10,10,7,10,0,0,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,17,0,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,17,17,0,8,10,17,18,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,18,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,0,0,0,8,8,7,8,8,10,10,10,8,0,10,12,9,9,8,8,9,10,8,10,12,8,11,10,8,9,12,10,8,10,10,10,8,10,0,0,12,12,9,9,10,8,0,10,5,10,0,0,2,10,10,7,10,10,17,17,17,8,10,0,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,17,17,18,8,12,17,0,16,16,8,15,23,17,15,18,20,16,18,17,16,16,19,17,8,18,17,10,15,18,0,0,19,19,9,16,10,8,0,17,12,17,0,0,9,17,17,14,17,10,16,16,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,0,0,2,16,16,14,16,9,16,16,16,7,9,16,16,16,0,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,0,0,2,16,16,14,16,9,8,8,8,8,8,8,8,7,7,0,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,0,0,0,8,8,7,8,8,15,15,15,8,8,15,15,14,14,8,0,14,15,15,15,15,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,14,14,14,7,9,14,23,14,14,7,14,0,14,14,14,16,14,16,14,14,14,16,14,7,14,16,7,14,14,0,0,16,16,7,14,7,7,0,14,9,14,0,0,7,14,14,14,14,7,17,17,17,8,10,17,17,16,16,8,15,14,0,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,15,15,15,8,8,15,15,14,14,8,15,14,15,0,15,15,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,17,17,18,8,10,17,18,16,16,8,15,14,17,15,0,18,16,16,17,16,16,17,17,8,18,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,17,17,18,8,12,17,20,16,16,8,15,16,17,15,18,0,16,18,17,16,16,19,17,8,18,17,10,15,18,0,0,19,19,9,16,10,8,0,17,12,17,0,0,2,17,17,14,17,10,15,15,16,8,8,15,16,14,14,8,15,14,15,15,16,16,0,14,15,16,14,15,15,8,16,15,8,15,16,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,16,16,16,7,11,16,18,16,16,7,14,16,16,14,16,18,14,0,16,14,16,18,16,7,16,16,9,14,16,0,0,18,18,9,16,9,7,0,16,11,16,0,0,2,16,16,14,16,9,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,15,15,16,8,8,15,16,14,14,8,15,14,15,15,16,16,16,14,15,0,14,15,15,8,16,15,8,15,16,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,0,0,2,16,16,14,16,9,17,17,17,8,12,17,19,16,16,8,15,16,17,15,17,19,15,18,17,15,16,0,17,8,17,17,10,15,17,0,0,24,19,9,16,10,8,0,17,12,17,0,0,2,17,17,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,0,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,0,0,0,8,8,7,8,8,17,17,18,8,10,17,18,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,0,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,15,15,15,8,10,15,17,14,14,8,15,16,15,15,15,17,15,16,15,15,14,17,15,8,15,0,8,15,15,0,0,17,17,7,14,8,8,0,15,10,15,0,0,0,15,15,14,15,8,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,0,0,2,10,10,7,10,10,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,15,14,15,15,8,15,15,8,0,15,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,17,17,18,8,10,17,18,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,18,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,12,17,19,16,16,8,15,16,17,15,17,19,15,18,17,15,16,24,17,8,17,17,10,15,17,0,0,0,19,9,16,10,8,0,17,12,17,0,0,2,17,17,14,17,10,17,17,17,8,12,17,19,16,16,8,15,16,17,15,17,19,15,18,17,15,16,19,17,8,17,17,10,15,17,0,0,19,0,9,16,10,8,0,17,12,17,0,0,2,17,17,14,17,10,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,0,0,2,9,9,7,9,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,0,0,2,16,16,14,16,9,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,0,0,2,10,10,7,10,10,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,0,0,8,1,8,0,0,0,8,8,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,0,10,17,0,0,2,17,17,14,17,10,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,12,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,12,12,2,9,3,1,0,10,0,10,0,0,2,10,10,7,10,3,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,9,2,2,0,0,7,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,0,0,0,2,2,0,2,2,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,0,17,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,0,14,17,10,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,0,0,0,14,14,0,14,7,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,0,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,0,0,2,10,10,7,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,2,3,3,2,2,0,2,0,3,2,4,2,0,2,2,2,2,2,3,0,2,1,4,0,2,0,0,3,2,2,4,2,1,0,3,2,2,2,0,0,3,4,0,5,4,3,0,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,2,2,0,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,7,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,7,2,2,2,0,0,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,3,3,2,0,2,0,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,3,3,2,0,2,3,0,2,2,0,0,7,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,9,0,0,3,2,0,3,2,2,2,2,0,2,2,2,0,3,0,0,1,2,0,2,2,0,3,2,0,3,2,2,0,2,0,2,0,2,0,0,2,2,3,3,2,0,0,2,2,2,2,0,0,2,2,1,2,2,2,2,2,0,2,2,2,3,0,0,0,1,2,0,2,2,0,3,2,0,3,2,2,0,2,0,2,0,2,0,0,2,2,3,3,2,0,0,2,2,2,2,0,0,2,2,1,2,2,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,7,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,7,0,0,0,0,1,0,0,3,3,2,0,2,3,3,2,2,0,0,0,0,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,4,2,2,0,2,2,2,2,2,0,2,0,2,2,0,2,0,2,2,2,2,2,2,0,2,0,4,0,2,0,0,2,2,2,4,2,0,0,2,2,2,2,0,0,2,5,0,4,4,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,0,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,3,3,0,0,1,2,0,2,2,0,0,2,0,3,2,2,0,2,0,2,0,2,0,0,2,2,3,3,2,0,0,2,2,2,2,0,0,2,2,1,2,2,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,0,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,9,2,2,0,0,2,2,0,2,2,2,0,0,0,0,0,0,0,0,0,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2,2,2,0,2,2,2,3,3,0,0,1,2,0,2,2,0,3,2,0,0,2,2,0,2,0,2,0,2,0,0,2,2,3,3,2,0,0,2,2,2,2,0,0,2,2,1,2,2,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,0,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,3,3,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,0,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,7,2,2,2,2,2,7,0,0,2,0,2,2,0,2,2,0,2,2,2,0,0,0,9,0,2,0,0,2,2,9,2,2,7,0,2,2,2,2,0,0,2,2,0,2,9,1,1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,4,2,2,7,2,2,2,2,2,7,2,0,2,2,4,2,0,2,2,2,2,2,2,0,9,0,0,0,2,0,0,2,2,9,4,2,7,0,2,2,2,2,0,0,2,4,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,0,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,0,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,0,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,2,2,2,7,2,2,2,3,3,7,0,1,2,0,2,2,0,3,2,0,3,2,2,0,9,0,9,0,2,0,0,2,2,0,3,2,7,0,2,2,2,2,0,0,2,2,1,2,9,4,2,2,0,2,2,2,3,3,0,2,1,2,2,4,2,0,3,2,2,3,2,2,0,2,0,4,0,2,0,0,2,2,3,0,2,0,0,2,2,2,2,0,0,2,4,1,4,4,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,0,0,0,2,2,2,2,0,0,2,2,0,2,2,1,1,0,7,0,1,1,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,1,0,7,1,7,0,0,0,0,1,0,7,0,0,0,0,1,0,0,0,0,0,1,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,0,2,2,2,0,0,3,2,0,3,2,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,9,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,0,2,2,0,0,2,2,0,2,2,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,0,2,0,0,2,2,0,2,2,2,2,2,0,2,2,9,2,2,0,0,7,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,0,0,0,2,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,0,2,0,3,2,4,2,2,0,2,2,2,2,2,0,2,0,2,2,5,2,0,2,2,2,2,2,2,0,2,0,4,0,2,0,0,2,2,2,4,2,0,0,2,2,2,2,0,0,2,0,0,4,4,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,0,2,3,3,2,2,0,2,0,3,2,4,2,0,2,2,2,2,2,3,0,2,1,4,0,2,0,0,3,2,2,4,2,1,0,3,2,2,2,0,0,3,4,0,0,4,4,2,2,7,2,2,2,2,2,7,2,0,2,2,4,2,0,2,2,2,2,2,2,0,9,0,11,0,2,0,0,2,2,9,4,2,7,0,2,2,2,2,0,0,2,4,0,4,0,0,20,17,9,10,25,18,23,17,9,23,14,18,16,17,25,15,17,18,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,19,10,17,17,0,3,0,17,21,25,18,20,0,17,9,10,18,18,16,17,14,16,14,18,16,17,18,15,17,18,15,18,17,18,10,19,16,10,17,19,0,0,18,17,9,16,12,13,0,19,10,19,17,0,3,0,17,17,18,11,17,17,0,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,0,17,14,17,10,9,9,8,0,8,8,8,7,8,8,8,7,8,8,8,9,8,7,9,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,9,1,8,8,0,0,0,8,7,8,8,10,10,10,8,0,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,0,10,7,10,10,25,18,17,8,10,0,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,18,10,17,17,0,3,0,17,21,25,17,18,18,17,8,10,18,0,16,16,8,15,14,19,15,17,18,16,16,17,16,16,18,19,9,17,16,10,16,17,0,0,18,17,9,16,10,9,0,19,10,17,17,0,3,0,17,14,18,10,23,16,16,7,9,23,16,0,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,23,23,9,23,9,7,0,16,9,16,16,0,2,0,16,21,23,16,17,17,16,8,9,16,16,16,0,7,14,14,16,14,16,17,14,16,17,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,17,9,16,16,0,2,0,16,14,16,9,9,14,8,8,8,8,8,7,7,0,9,7,8,9,8,8,8,8,8,8,9,8,8,10,10,8,8,10,10,0,0,8,8,7,7,10,12,0,8,1,10,8,0,0,0,8,10,8,9,23,16,15,8,8,22,15,21,14,9,0,14,15,16,15,22,15,15,15,15,14,15,15,15,15,22,8,15,22,0,0,22,22,7,21,8,8,0,15,8,15,15,0,0,0,15,21,22,16,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,0,14,14,14,7,18,18,17,8,10,18,19,16,16,8,15,14,0,15,17,18,16,16,17,16,16,18,19,9,17,16,10,16,17,0,0,18,17,9,16,10,9,0,19,10,17,17,0,3,0,17,14,18,10,16,16,15,8,8,15,15,14,14,9,16,14,15,0,15,15,15,15,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,0,15,14,15,9,17,17,17,8,10,17,17,16,16,8,15,14,17,15,0,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,0,17,14,17,10,25,18,17,9,10,24,18,23,17,8,22,14,18,15,17,0,16,16,18,16,16,18,18,16,17,22,10,16,24,0,0,24,24,9,23,10,8,0,19,10,17,17,0,2,0,17,21,24,17,15,15,15,8,8,15,16,14,14,8,15,14,16,15,15,16,0,14,15,16,14,16,16,9,15,15,8,16,15,0,0,15,15,7,14,8,8,0,16,8,15,15,0,0,0,15,14,15,8,17,17,16,7,9,16,16,16,16,8,15,14,16,15,16,16,14,0,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,0,16,14,16,10,18,18,17,9,10,17,17,16,17,8,15,14,17,15,17,18,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,0,17,14,17,10,15,15,15,8,8,15,16,14,14,8,15,14,16,15,15,16,16,14,15,0,14,16,16,9,15,15,8,16,15,0,0,15,15,7,14,8,8,0,16,8,15,15,0,0,0,15,14,15,8,16,18,16,7,9,16,16,16,16,9,14,14,16,14,16,16,14,16,16,14,0,16,16,9,18,14,9,16,18,0,0,16,16,9,16,11,9,0,16,9,18,16,0,2,0,16,16,16,9,17,17,17,8,10,17,18,16,16,8,15,14,18,15,17,18,16,16,17,16,16,0,18,9,17,15,10,16,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,0,17,14,17,10,18,18,17,8,10,18,19,16,16,8,15,14,19,15,17,18,16,16,17,16,16,18,0,9,17,16,10,16,17,0,0,18,17,9,16,10,9,0,19,10,17,17,0,3,0,17,14,18,10,15,10,8,8,8,15,9,14,7,10,15,7,9,8,8,16,9,7,8,9,9,9,9,0,10,15,8,11,17,0,0,15,15,7,14,10,10,0,9,1,10,8,0,0,0,8,16,15,15,17,19,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,0,15,10,17,19,0,0,17,17,9,16,12,10,0,17,10,19,17,0,2,0,17,16,17,10,23,16,15,8,8,23,16,21,14,8,22,14,16,15,15,22,15,14,15,15,14,15,16,15,15,0,8,15,22,0,0,23,22,7,21,8,9,0,16,8,15,15,0,1,0,15,21,23,15,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,0,10,7,10,10,15,17,15,8,8,15,16,14,14,10,15,14,16,15,15,16,16,14,15,16,16,16,16,11,17,15,8,0,17,0,0,15,15,7,14,10,10,0,16,8,17,15,0,0,0,15,16,15,8,24,19,17,8,10,24,17,23,16,10,22,14,17,15,17,24,15,16,17,15,18,17,17,17,19,22,10,17,0,0,0,24,24,9,23,12,10,0,17,10,19,17,0,2,0,17,23,24,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,18,17,8,10,25,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,0,24,9,23,10,9,0,18,10,17,17,0,3,0,17,21,25,17,24,17,17,8,10,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,24,0,0,24,0,9,23,10,8,0,17,10,17,17,0,2,0,17,21,24,17,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,0,9,7,9,9,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,23,23,9,0,9,7,0,16,9,16,16,0,2,0,16,21,23,16,10,12,10,8,10,10,10,9,9,10,8,7,10,8,10,10,8,9,10,8,11,10,10,10,12,8,10,10,12,0,0,10,10,9,9,0,10,0,10,3,12,10,0,2,0,10,9,10,10,9,13,8,8,8,9,9,7,7,12,8,7,9,8,8,8,8,7,8,8,9,8,9,10,10,9,8,10,10,0,0,9,8,7,7,10,0,0,9,1,10,8,0,1,0,8,9,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,17,9,10,18,19,16,17,8,15,14,19,15,17,19,16,16,18,16,16,18,19,9,17,16,10,16,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,0,17,14,18,10,10,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,0,10,7,10,3,17,19,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,19,15,10,17,19,0,0,17,17,9,16,12,10,0,17,10,0,17,0,2,0,17,16,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,0,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,0,2,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,0,0,14,17,10,21,17,14,7,7,21,14,21,14,10,21,14,14,14,14,21,14,14,14,14,16,14,14,16,16,21,7,16,23,0,0,21,21,7,21,9,9,0,14,7,16,14,0,0,0,14,0,21,14,25,18,17,8,10,25,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,18,10,17,17,0,3,0,17,21,0,17,18,11,10,8,10,17,10,16,9,9,16,7,10,9,10,17,8,10,10,8,9,10,10,15,10,15,10,8,17,0,0,17,17,9,16,10,8,0,10,3,10,10,0,2,0,10,14,17,0,0,17,17,8,10,17,17,16,16,8,17,14,17,17,19,17,15,16,17,17,16,17,17,8,17,15,12,15,17,0,0,17,17,9,18,10,8,0,17,10,17,17,0,4,17,0,14,19,12,17,0,17,8,10,17,18,16,16,8,16,14,18,15,18,17,15,16,17,15,16,18,18,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,17,17,0,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,0,14,17,10,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,0,7,8,8,10,10,17,8,0,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,0,7,10,10,17,17,17,8,10,0,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,17,18,17,8,10,17,0,16,16,8,16,14,18,15,18,17,15,16,17,15,16,18,18,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,16,16,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,0,14,16,9,16,16,23,7,16,16,16,16,0,14,14,14,23,21,23,16,21,23,23,14,23,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,0,14,16,9,8,8,15,8,15,8,8,7,14,0,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,0,7,8,8,17,16,15,8,8,15,16,14,14,8,0,14,16,17,18,15,15,14,15,17,14,16,16,8,15,16,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,15,0,14,17,10,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,0,14,14,7,17,18,24,8,17,17,18,16,23,15,16,14,0,22,25,17,22,23,24,15,23,25,18,8,17,16,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,0,14,17,10,17,15,22,8,15,15,15,14,21,15,17,14,22,0,24,15,22,21,22,17,21,22,15,8,15,15,17,22,15,0,0,15,15,14,16,15,15,0,22,8,22,15,0,2,15,0,14,17,10,19,18,24,8,17,17,18,16,23,15,18,14,25,24,0,17,22,23,24,17,23,25,18,8,17,16,19,22,17,0,0,17,17,16,18,17,15,0,24,10,24,17,0,5,17,0,14,19,12,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,0,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,0,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,0,14,15,8,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,0,23,14,23,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,0,14,16,9,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,0,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,0,14,17,10,17,15,15,8,8,15,15,14,14,8,17,14,15,17,17,15,15,14,15,0,14,15,15,8,15,15,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,15,0,14,17,10,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,23,14,0,23,16,7,16,14,17,21,16,1,1,16,16,17,17,16,14,1,23,9,24,16,1,2,16,0,15,16,9,17,18,24,8,17,17,18,16,23,15,16,14,25,22,25,17,22,23,24,15,23,0,18,8,17,16,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,0,14,17,10,17,18,17,8,10,17,18,16,16,8,16,14,18,15,18,17,15,16,17,15,16,18,0,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,0,7,8,8,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,0,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,15,16,15,8,8,15,16,14,14,8,16,14,16,15,16,15,15,14,15,15,14,16,16,8,15,0,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,0,14,15,8,12,10,17,8,17,10,10,9,16,15,10,7,17,17,19,10,15,16,17,10,17,17,10,8,10,8,0,15,10,1,1,10,10,17,12,17,15,1,17,3,18,10,1,4,10,0,8,12,12,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,22,21,22,15,21,22,15,8,15,15,15,0,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,0,14,15,8,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,0,1,0,0,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,0,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,17,16,9,7,9,7,17,14,9,1,1,9,9,0,10,16,14,1,16,2,17,9,1,2,9,0,8,9,9,18,16,16,7,9,16,16,16,16,7,16,14,16,16,18,16,14,16,16,16,17,16,16,7,16,14,12,14,16,1,1,16,16,10,0,9,7,1,16,9,17,16,1,4,16,0,15,18,11,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,0,15,0,17,3,17,10,0,2,10,0,7,10,10,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,0,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,0,10,24,17,0,2,17,0,14,17,10,10,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,0,7,10,3,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,24,24,17,8,17,15,18,22,17,1,1,17,17,17,17,17,15,1,24,10,0,17,1,2,17,0,15,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,0,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,4,2,2,0,2,2,2,2,2,0,2,0,2,2,5,2,0,2,2,2,2,2,2,0,2,0,4,0,2,0,0,2,2,2,4,2,0,0,2,2,2,2,0,0,2,0,0,4,4,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,0,0,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,15,14,14,7,14,14,8,14,14,1,1,14,14,8,15,7,7,1,14,7,15,14,1,0,14,0,0,14,7,19,17,17,8,10,17,17,16,16,8,17,14,17,17,19,17,15,16,17,17,16,17,17,8,17,15,12,15,17,0,0,17,17,9,18,10,8,0,17,10,17,17,0,4,17,0,14,0,12,12,10,10,8,10,10,10,9,9,8,10,7,10,10,12,10,8,9,10,10,9,10,10,8,10,8,12,8,10,0,0,10,10,9,11,10,8,0,10,3,10,10,0,4,10,0,7,12,0,0,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,21,21,7,21,7,7,0,14,7,14,14,0,0,21,14,0,21,14,14,0,14,7,7,14,14,14,14,10,14,14,14,14,14,14,14,14,14,14,16,14,14,9,16,14,7,16,16,0,0,14,14,7,14,9,9,0,14,7,16,14,0,0,17,14,0,14,7,14,14,0,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,7,7,7,0,14,14,7,14,14,14,14,7,7,14,7,7,7,7,14,7,7,7,7,7,14,7,7,7,7,0,0,7,7,7,14,14,7,0,7,7,7,7,0,0,7,7,0,7,7,7,7,7,14,0,14,7,14,14,14,14,7,7,14,7,7,7,7,14,7,7,7,7,7,14,7,7,7,7,0,0,7,7,7,14,14,7,0,7,7,7,7,0,0,7,7,0,7,7,21,14,14,14,14,0,14,28,21,14,28,14,14,21,14,21,14,14,21,14,14,14,14,14,21,21,7,14,21,0,0,21,21,7,28,14,7,0,14,14,14,14,0,0,21,14,0,21,14,14,14,14,7,7,14,0,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,21,14,14,14,14,28,14,0,22,14,28,16,14,21,14,21,14,15,21,14,15,14,14,14,21,21,7,14,21,0,0,21,21,8,29,14,7,0,14,14,14,14,0,1,21,14,0,21,14,14,14,14,14,14,21,14,22,0,14,21,16,14,21,14,14,14,15,21,14,17,14,14,7,21,14,7,14,14,0,0,14,14,8,23,14,7,0,14,14,14,14,0,1,14,14,0,14,7,7,10,7,14,14,14,7,14,14,0,16,9,7,16,7,7,9,7,14,9,9,7,7,11,16,9,7,11,9,0,0,7,7,7,14,16,11,0,7,7,9,7,0,0,10,7,0,7,7,21,14,14,14,14,28,14,28,21,16,0,16,14,23,14,21,16,14,21,16,14,14,14,16,21,23,7,16,21,0,0,21,21,7,28,14,9,0,14,14,14,14,0,0,21,14,0,21,14,14,14,14,7,7,14,14,16,16,9,16,0,14,16,14,14,16,15,14,16,16,14,14,9,14,16,7,16,14,0,0,14,14,8,15,7,9,0,14,7,14,14,0,1,14,14,0,14,7,14,14,14,7,7,14,14,14,14,7,14,14,0,14,14,14,14,14,14,14,14,14,14,7,14,16,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,14,14,14,14,14,21,14,21,21,16,23,16,14,0,14,14,16,14,21,16,14,14,14,9,21,16,7,16,14,0,0,14,14,7,21,14,9,0,14,14,14,14,0,0,14,14,0,14,7,14,14,14,7,7,14,14,14,14,7,14,14,14,14,0,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,0,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,21,21,7,21,7,7,0,14,7,14,14,0,0,21,14,0,21,14,14,14,14,7,7,14,14,14,14,9,16,16,14,16,14,14,0,14,14,16,14,14,14,9,14,16,7,16,14,0,0,14,14,7,14,7,9,0,14,7,14,14,0,0,14,14,0,14,7,14,14,14,7,7,14,14,15,15,7,14,15,14,14,14,14,14,0,14,14,15,14,14,7,14,14,7,14,14,0,0,14,14,8,16,7,7,0,14,7,14,14,0,1,14,14,0,14,7,14,14,14,14,14,21,14,21,21,14,21,14,14,21,14,14,14,14,0,14,14,14,14,7,21,14,7,14,14,0,0,14,14,7,21,14,7,0,14,14,14,14,0,0,14,14,0,14,7,14,14,14,7,7,14,14,14,14,9,16,16,14,16,14,14,16,14,14,0,14,14,14,9,14,16,7,16,14,0,0,14,14,7,14,7,9,0,14,7,14,14,0,0,14,14,0,14,7,14,16,14,7,7,14,14,15,17,9,14,16,14,14,14,14,14,15,14,14,0,14,14,9,16,14,8,16,16,1,1,14,14,9,17,9,9,1,14,7,17,14,1,1,16,15,0,14,7,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,0,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,0,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,14,9,7,7,7,14,7,14,7,11,16,9,7,9,7,14,9,7,7,9,9,7,7,0,9,16,7,11,16,0,0,14,14,7,14,9,11,0,7,0,9,7,0,0,16,7,0,14,14,14,16,14,14,14,21,14,21,21,16,21,14,14,21,14,14,14,14,21,14,16,14,14,9,0,14,7,16,16,0,0,14,14,7,21,16,9,0,14,14,16,14,0,0,16,14,0,14,7,21,14,14,7,7,21,14,21,14,9,23,16,16,16,14,21,16,14,14,16,14,14,14,16,14,0,7,16,21,0,0,21,21,7,21,7,9,0,14,7,14,14,0,0,21,14,0,21,14,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,7,7,7,7,7,0,7,7,1,1,7,7,8,8,7,7,1,7,0,8,7,1,0,7,8,0,7,7,14,16,14,7,7,14,14,14,14,11,16,16,14,16,14,14,16,14,14,16,16,14,14,11,16,16,7,0,16,0,0,14,14,7,14,9,11,0,14,7,16,14,0,0,16,14,0,14,7,21,16,14,7,7,21,14,21,14,9,21,14,14,14,14,21,14,14,14,14,16,14,14,16,16,21,7,16,0,0,0,21,21,7,21,9,9,0,14,7,16,14,0,0,23,14,0,21,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,0,0,0,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,0,21,7,21,7,7,0,14,7,14,14,0,0,21,14,0,21,14,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,21,0,7,21,7,7,0,14,7,14,14,0,0,21,14,0,21,14,7,7,7,7,7,7,7,8,8,7,7,8,7,7,7,7,7,8,7,7,9,7,7,7,7,7,8,7,7,1,1,7,7,0,9,7,7,1,7,0,8,7,1,1,7,8,0,7,7,21,14,14,14,14,28,14,29,23,14,28,15,14,21,14,21,14,16,21,14,17,14,14,14,21,21,8,14,21,1,1,21,21,9,0,14,7,1,14,14,15,14,1,1,21,15,0,21,14,7,9,7,14,14,14,7,14,14,16,14,7,7,14,7,7,7,7,14,7,9,7,7,9,16,7,7,9,9,0,0,7,7,7,14,0,9,0,7,7,9,7,0,0,9,7,0,7,7,7,9,7,7,7,7,7,7,7,11,9,9,7,9,7,7,9,7,7,9,9,7,7,11,9,9,7,11,9,0,0,7,7,7,7,9,0,0,7,0,9,7,0,0,9,7,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,0,7,14,14,0,0,14,14,0,14,7,7,7,7,7,7,14,7,14,14,7,14,7,7,14,7,7,7,7,14,7,7,7,7,0,14,7,0,7,7,0,0,7,7,0,14,7,0,0,7,0,7,7,0,0,7,7,0,7,0,14,16,14,7,7,14,14,14,14,9,14,14,14,14,14,14,14,14,14,14,17,14,14,9,16,14,8,16,16,1,1,14,14,8,15,9,9,1,14,7,0,14,1,0,16,15,0,14,7,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,0,0,0,14,14,0,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,17,14,7,7,21,14,21,14,10,21,14,14,14,14,21,14,14,14,14,16,14,14,16,16,21,7,16,23,0,0,21,21,7,21,9,9,0,14,7,16,14,0,0,0,14,0,21,14,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,15,14,14,7,14,14,8,14,14,1,1,14,14,8,15,7,7,1,14,7,15,14,1,0,14,0,0,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,21,21,7,21,7,7,0,14,7,14,14,0,0,21,14,0,0,14,14,7,7,7,7,14,7,14,7,7,14,7,7,7,7,14,7,7,7,7,7,7,7,14,7,14,7,7,14,0,0,14,14,7,14,7,7,0,7,0,7,7,0,0,14,7,0,14,0,0,18,17,8,10,25,25,23,16,8,24,14,25,17,26,31,22,16,17,24,16,24,25,22,17,23,12,22,24,0,0,25,24,9,25,10,9,0,25,10,17,17,0,5,25,19,21,0,19,18,0,17,8,10,18,18,16,16,8,15,14,18,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,0,10,17,17,0,8,11,17,17,17,16,8,15,14,19,15,17,17,15,17,17,16,16,17,17,8,18,17,10,16,18,0,0,17,17,9,16,11,10,0,17,11,17,17,0,2,17,17,14,0,11,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,0,8,10,10,11,8,0,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,8,11,9,10,8,11,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,0,11,25,18,17,8,10,0,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,18,10,17,17,0,3,25,17,21,0,17,25,18,17,8,10,18,0,16,16,8,15,14,25,15,24,24,22,16,17,22,16,24,25,15,17,16,10,22,17,0,0,18,17,9,16,10,9,0,25,10,17,17,0,3,18,17,14,0,10,23,16,17,7,10,23,16,0,16,7,21,14,17,14,16,23,14,17,16,15,16,16,16,14,17,22,9,14,24,0,0,23,23,9,23,10,8,0,16,10,16,16,0,2,23,16,21,0,17,16,16,16,7,9,16,16,16,0,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,0,9,8,8,8,8,8,8,8,7,7,0,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,0,8,24,15,15,8,8,22,15,21,14,8,0,14,15,17,17,22,15,14,15,17,14,15,15,15,15,22,10,15,22,0,0,22,22,7,23,8,8,0,15,8,15,15,0,2,22,17,21,0,17,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,0,7,25,18,19,8,11,18,25,17,16,8,15,14,0,15,24,24,22,17,17,23,16,24,25,15,18,18,10,23,18,0,0,18,17,9,16,11,11,0,25,11,17,17,0,3,18,17,14,0,11,17,15,15,8,8,15,15,14,14,8,17,14,15,0,17,15,15,14,15,17,14,15,15,8,15,15,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,15,17,14,0,10,26,17,17,8,10,17,24,16,16,8,17,14,24,17,0,24,22,16,17,24,16,24,24,15,17,15,12,22,17,0,0,17,17,9,18,10,8,0,24,10,17,17,0,4,17,19,14,0,12,31,17,17,8,10,24,24,23,16,8,22,14,24,15,24,0,22,16,17,22,16,24,24,22,17,22,10,22,24,0,0,24,24,9,23,10,8,0,24,10,17,17,0,2,24,17,21,0,17,22,15,15,8,8,15,22,14,14,8,15,14,22,15,22,22,0,14,15,22,14,22,22,15,15,15,8,22,15,0,0,15,15,7,14,8,8,0,22,8,15,15,0,0,15,15,14,0,8,16,16,17,7,10,16,16,17,16,7,14,14,17,14,16,16,14,0,16,15,16,16,16,7,17,15,9,14,17,0,0,16,16,9,16,10,8,0,16,10,16,16,0,2,16,16,14,0,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,0,10,24,15,16,8,9,15,22,15,14,8,17,14,23,17,24,22,22,15,15,0,14,22,22,15,16,16,10,22,16,0,0,15,15,7,16,9,9,0,22,9,15,15,0,2,15,17,14,0,11,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,0,9,24,17,17,8,10,17,24,16,16,8,15,14,24,15,24,24,22,16,17,22,16,0,24,15,17,15,10,22,17,0,0,17,17,9,16,10,8,0,24,10,17,17,0,2,17,17,14,0,10,25,18,17,8,10,18,25,16,16,8,15,14,25,15,24,24,22,16,17,22,16,24,0,15,17,16,10,22,17,0,0,18,17,9,16,10,9,0,25,10,17,17,0,3,18,17,14,0,10,22,8,8,8,8,15,15,14,7,8,15,7,15,8,15,22,15,7,8,15,7,15,15,0,8,15,8,15,15,0,0,15,15,7,14,8,8,0,15,1,8,8,0,0,15,8,14,0,15,17,17,18,8,11,17,17,17,16,8,15,14,18,15,17,17,15,17,17,16,16,17,17,8,0,16,10,15,18,0,0,17,17,9,16,11,9,0,17,11,17,17,0,2,17,17,14,0,11,23,16,17,8,9,23,16,22,14,8,22,14,18,15,15,22,15,15,15,16,14,15,16,15,16,0,8,16,23,0,0,23,22,7,21,9,11,0,16,9,15,15,0,1,23,15,21,0,16,12,10,10,8,10,10,10,9,9,8,10,7,10,10,12,10,8,9,10,10,9,10,10,8,10,8,0,8,10,0,0,10,10,9,11,10,8,0,10,3,10,10,0,4,10,12,7,0,12,22,15,16,8,8,15,22,14,14,8,15,14,23,15,22,22,22,14,15,22,14,22,22,15,15,16,8,0,15,0,0,15,15,7,14,8,9,0,22,8,15,15,0,0,15,15,14,0,8,24,17,18,8,11,24,17,24,16,8,22,14,18,15,17,24,15,17,17,16,16,17,17,15,18,23,10,15,0,0,0,24,24,9,23,11,9,0,17,11,17,17,0,2,24,17,21,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,18,17,8,10,25,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,0,24,9,23,10,9,0,18,10,17,17,0,3,25,17,21,0,17,24,17,17,8,10,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,24,0,0,24,0,9,23,10,8,0,17,10,17,17,0,2,24,17,21,0,17,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,0,9,25,16,16,7,9,23,16,23,16,7,23,14,16,16,18,23,14,16,16,16,16,16,16,14,16,21,11,14,23,0,0,23,23,9,0,9,7,0,16,9,16,16,0,4,23,18,21,0,18,10,10,11,8,11,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,8,11,9,10,8,11,0,0,10,10,9,9,0,9,0,10,4,10,10,0,2,10,10,7,0,11,9,9,10,8,9,9,9,8,7,8,8,7,11,8,8,8,8,8,8,9,7,8,9,8,9,11,8,9,9,0,0,9,8,7,7,9,0,0,9,2,8,8,0,1,9,8,7,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,18,17,8,10,18,25,16,16,8,15,14,25,15,24,24,22,16,17,22,16,24,25,15,17,16,10,22,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,18,17,14,0,10,10,10,11,1,4,10,10,10,9,1,8,7,11,8,10,10,8,10,10,9,9,10,10,1,11,9,3,8,11,0,0,10,10,2,9,4,2,0,10,0,10,10,0,2,10,10,7,0,4,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,0,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,0,2,3,3,2,2,0,2,0,3,2,4,2,0,2,2,2,2,2,3,0,2,1,4,0,2,0,0,3,2,2,4,2,1,0,3,2,2,2,0,0,3,4,0,0,4,25,18,17,8,10,25,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,18,10,17,17,0,3,0,17,21,0,17,19,17,17,8,10,17,17,16,16,8,17,14,17,17,19,17,15,16,17,17,16,17,17,8,17,15,12,15,17,0,0,17,17,9,18,10,8,0,17,10,17,17,0,4,17,0,14,0,12,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,21,21,7,21,7,7,0,14,7,14,14,0,0,21,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,10,11,8,11,17,10,17,9,8,17,7,11,10,12,17,8,10,10,11,9,10,10,15,11,16,12,8,18,0,0,17,17,9,18,11,9,0,10,4,10,10,0,4,17,12,14,0,0,0,11,10,8,10,17,10,16,9,9,21,7,10,14,12,17,8,10,10,13,9,10,10,15,10,15,12,8,17,0,0,17,17,9,18,10,8,0,10,3,10,10,0,4,18,12,14,19,0,11,0,10,8,10,10,10,9,9,9,9,7,10,9,10,10,8,10,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,11,10,7,10,0,10,10,0,9,11,10,10,11,10,9,9,7,11,9,10,10,9,11,10,9,9,10,10,8,11,9,10,9,12,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,11,0,8,8,9,0,8,8,8,8,8,16,9,7,8,9,8,8,9,8,8,8,7,8,8,8,15,8,15,9,9,0,0,8,8,14,7,8,15,0,8,1,8,8,0,7,8,8,7,8,0,10,10,11,8,0,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,8,11,9,10,8,11,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,11,0,17,10,10,8,10,0,10,16,9,8,15,7,10,8,10,17,8,9,10,8,9,10,10,15,10,15,10,8,17,0,0,17,17,9,16,10,8,0,10,3,10,10,0,2,17,10,14,17,0,10,10,10,8,10,10,0,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,0,16,9,11,8,10,16,9,0,10,8,15,7,10,8,9,16,8,11,9,8,9,9,9,14,10,15,9,8,18,0,0,16,16,9,16,10,8,0,9,3,9,9,0,2,16,9,14,17,0,9,9,10,8,9,9,9,10,0,8,8,7,9,8,9,9,8,10,9,7,9,9,9,7,9,7,9,8,10,0,0,9,9,9,9,9,7,0,9,2,9,9,0,2,9,9,7,9,0,9,9,9,16,8,8,8,8,8,0,10,7,8,10,8,8,9,9,8,8,7,8,8,8,15,8,15,9,9,0,0,8,8,14,7,8,15,0,8,1,8,8,0,7,9,8,7,8,0,21,9,9,9,8,15,8,15,8,10,0,7,8,15,10,15,9,9,8,13,7,8,8,15,8,15,10,9,16,0,0,15,15,7,16,8,8,0,8,1,8,8,0,2,16,10,14,17,0,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,0,10,10,11,8,11,10,10,10,9,8,8,7,0,8,10,10,8,10,10,9,11,10,10,8,11,9,10,8,11,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,11,0,14,9,9,9,8,8,8,8,8,10,15,7,8,0,10,8,9,9,8,13,7,8,8,8,8,8,10,9,9,0,0,8,8,7,9,8,8,0,8,1,8,8,0,2,9,10,7,10,0,12,10,10,8,10,10,10,9,9,8,10,7,10,10,0,10,8,9,10,10,9,10,10,8,10,8,12,8,10,0,0,10,10,9,11,10,8,0,10,3,10,10,0,4,10,12,7,12,0,17,10,10,8,10,17,10,16,9,8,15,7,10,8,10,0,8,9,10,8,9,10,10,15,10,15,10,8,17,0,0,17,17,9,16,10,8,0,10,3,10,10,0,2,17,10,14,17,0,8,8,9,9,8,8,8,8,8,9,9,7,8,9,8,8,0,8,8,8,7,8,8,8,8,8,8,9,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,0,10,10,11,8,10,9,9,11,10,9,9,7,10,9,9,9,8,0,9,8,9,9,9,7,10,8,9,8,11,0,0,9,9,9,9,10,8,0,9,3,9,9,0,2,10,9,7,10,0,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,0,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,0,13,8,9,8,9,8,8,8,7,8,13,7,9,13,10,8,8,8,8,0,7,8,8,8,9,9,10,8,9,0,0,8,8,7,9,9,9,0,8,2,8,8,0,2,8,10,7,11,0,9,9,9,7,9,9,9,9,9,7,7,7,11,7,9,9,7,9,9,7,0,9,9,7,9,7,9,7,9,0,0,9,9,9,9,9,7,0,9,2,9,9,0,2,9,9,7,9,0,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,0,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,0,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,0,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,0,15,8,8,8,8,15,8,14,7,8,15,7,8,8,8,15,8,7,8,8,7,8,8,0,8,15,8,8,15,0,0,15,15,7,14,8,8,0,8,1,8,8,0,0,15,8,14,15,0,10,10,11,15,11,10,10,10,9,15,8,7,11,8,10,10,8,10,10,9,9,10,10,8,0,9,17,8,11,0,0,10,10,16,9,11,16,0,10,4,10,10,0,9,10,10,7,11,0,15,8,9,8,9,15,8,15,7,8,15,7,9,8,8,15,8,8,8,9,7,8,8,15,9,0,8,8,16,0,0,15,15,7,14,9,9,0,8,2,8,8,0,0,15,8,14,16,0,12,10,10,15,10,10,10,9,9,15,10,7,10,10,12,10,8,9,10,10,9,10,10,8,17,8,0,8,10,0,0,10,10,16,11,10,15,0,10,3,10,10,0,11,10,12,7,12,0,8,8,9,9,8,8,8,8,8,9,9,7,8,9,8,8,9,8,8,8,7,8,8,8,8,8,8,0,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,0,17,10,12,9,11,17,10,18,10,9,16,7,11,9,10,17,9,11,10,9,9,10,10,15,11,16,10,9,0,0,0,17,17,9,16,11,9,0,10,4,10,10,0,2,17,10,14,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,10,10,8,10,17,10,16,9,8,15,7,10,8,10,17,8,9,10,8,9,10,10,15,10,15,10,8,17,0,0,0,17,9,16,10,8,0,10,3,10,10,0,2,17,10,14,17,0,17,10,10,8,10,17,10,16,9,8,15,7,10,8,10,17,8,9,10,8,9,10,10,15,10,15,10,8,17,0,0,17,0,9,16,10,8,0,10,3,10,10,0,2,17,10,14,17,0,9,9,9,14,9,9,9,9,9,14,7,7,9,7,9,9,7,9,9,7,9,9,9,7,16,7,16,7,9,0,0,9,9,0,9,9,14,0,9,2,9,9,0,9,9,9,7,9,0,18,9,9,7,9,16,9,16,9,7,16,7,9,9,11,16,7,9,9,9,9,9,9,14,9,14,11,7,16,0,0,16,16,9,0,9,7,0,9,2,9,9,0,4,16,11,14,18,0,10,10,11,8,11,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,8,11,9,10,8,11,0,0,10,10,9,9,0,9,0,10,4,10,10,0,2,10,10,7,11,0,8,8,9,15,9,8,8,8,7,15,8,7,9,8,8,8,8,8,8,9,7,8,8,8,16,9,15,8,9,0,0,8,8,14,7,9,0,0,8,2,8,8,0,7,8,8,7,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,0,3,10,10,0,2,10,10,7,10,0,3,3,4,1,4,3,3,3,2,1,1,0,4,1,3,3,1,3,3,2,2,3,3,1,4,2,3,1,4,0,0,3,3,2,2,4,2,0,3,0,3,3,0,2,3,3,0,4,0,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,0,10,0,2,10,10,7,10,0,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,0,0,2,10,10,7,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,7,2,2,2,2,2,7,2,0,2,2,4,2,0,2,2,2,2,2,2,0,9,0,11,0,2,0,0,2,2,9,4,2,7,0,2,2,2,2,0,0,2,4,0,4,0,18,11,10,8,10,17,10,16,9,9,16,7,10,9,10,17,8,10,10,8,9,10,10,15,10,15,10,8,17,0,0,17,17,9,16,10,8,0,10,3,10,10,0,2,0,10,14,17,0,12,10,10,8,10,10,10,9,9,8,10,7,10,10,12,10,8,9,10,10,9,10,10,8,10,8,12,8,10,0,0,10,10,9,11,10,8,0,10,3,10,10,0,4,10,0,7,12,0,14,7,7,7,7,14,7,14,7,7,14,7,7,7,7,14,7,7,7,7,7,7,7,14,7,14,7,7,14,0,0,14,14,7,14,7,7,0,7,0,7,7,0,0,14,7,0,14,0,19,10,11,8,11,17,10,17,9,8,17,7,11,10,12,17,8,10,10,11,9,10,10,15,11,16,12,8,18,0,0,17,17,9,18,11,9,0,10,4,10,10,0,4,17,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,};\nkk_vector_from_cintarray(arr, (kk_ssize_t)49 * (kk_ssize_t)49 * (kk_ssize_t)49, kk_context())"
js inline "[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,9,11,18,18,16,17,9,16,14,18,16,17,18,15,17,18,15,16,17,18,9,17,16,10,15,18,0,0,18,17,9,16,10,9,0,19,10,17,17,0,3,20,17,14,18,11,0,17,0,8,10,17,17,18,16,8,15,14,17,16,18,18,17,16,17,15,16,17,17,8,18,15,10,15,17,0,0,18,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,0,9,8,0,8,8,8,7,8,8,8,7,8,8,8,9,8,7,9,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,9,1,8,8,0,0,9,8,7,8,8,0,11,10,8,0,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,9,10,8,10,8,11,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,0,18,17,8,10,0,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,18,10,17,17,0,3,25,17,21,25,17,0,18,17,8,10,18,0,16,16,8,15,14,26,15,25,24,23,16,17,22,16,25,26,16,17,16,10,23,17,0,0,18,17,9,16,10,9,0,26,10,17,17,0,3,18,17,14,25,10,0,16,18,7,9,23,16,0,16,7,21,14,16,15,18,24,16,17,17,14,16,16,16,14,17,21,9,14,23,0,0,24,25,9,23,9,7,0,17,9,17,16,0,2,23,16,21,23,16,0,17,16,8,9,16,16,16,0,7,14,14,16,14,16,17,14,16,17,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,17,9,16,16,0,2,17,16,14,16,9,0,9,8,8,8,8,8,7,7,0,9,7,8,9,8,8,8,8,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,9,8,7,8,9,0,16,15,8,8,22,15,21,14,9,0,14,15,23,17,22,15,15,15,22,14,15,15,15,15,22,10,15,22,0,0,22,22,7,23,8,8,0,15,8,15,15,0,2,23,17,21,24,21,0,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,0,18,17,8,10,18,26,16,16,8,15,14,0,15,25,24,23,16,17,22,16,25,26,16,17,16,10,23,17,0,0,18,17,9,16,10,9,0,26,10,17,17,0,3,18,17,14,25,10,0,16,16,8,8,15,15,15,14,9,23,14,15,0,18,15,16,15,15,22,14,15,15,8,15,15,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,16,17,14,17,14,0,17,18,8,10,17,25,18,16,8,17,14,25,18,0,24,24,17,18,24,16,25,25,16,17,15,12,23,17,0,0,17,18,9,18,10,8,0,26,10,18,17,0,4,17,19,14,26,12,0,18,18,9,10,24,24,24,17,8,22,14,24,15,24,0,23,16,18,22,16,24,24,22,18,22,10,22,24,0,0,25,25,9,23,10,8,0,25,10,17,17,0,2,25,17,21,31,17,0,15,17,8,8,15,23,16,14,8,15,14,23,16,24,23,0,14,15,22,14,23,23,16,16,15,8,23,15,0,0,16,16,7,14,8,8,0,23,8,15,15,0,0,15,15,14,22,8,0,17,16,7,9,16,16,17,16,8,15,14,16,15,17,16,14,0,17,14,16,16,16,7,16,14,9,14,16,0,0,16,17,9,16,9,7,0,17,9,17,16,0,2,17,16,14,16,10,0,18,17,9,10,17,17,17,17,8,15,14,17,15,18,18,15,17,0,15,16,17,17,8,17,15,10,15,17,0,0,17,18,9,16,10,8,0,19,10,18,17,0,2,18,17,14,17,10,0,15,15,8,8,15,22,14,14,8,22,14,22,22,24,22,22,14,15,0,14,22,22,15,15,15,10,22,15,0,0,15,15,7,16,8,8,0,22,8,15,15,0,2,15,17,14,24,13,0,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,0,17,17,8,10,17,25,16,16,8,15,14,25,15,25,24,23,16,17,22,16,0,25,16,17,15,10,23,17,0,0,17,17,9,16,10,8,0,25,10,17,17,0,2,17,17,14,24,10,0,18,17,8,10,18,26,16,16,8,15,14,26,15,25,24,23,16,17,22,16,25,0,16,17,16,10,23,17,0,0,18,17,9,16,10,9,0,26,10,17,17,0,3,18,17,14,25,10,0,9,8,8,9,15,16,14,7,8,15,7,16,8,16,22,16,7,8,15,7,16,16,0,8,15,8,16,16,0,0,15,15,7,14,8,8,0,16,1,8,8,0,0,15,8,14,22,15,0,17,18,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,0,15,10,15,17,0,0,18,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,0,16,15,8,8,23,16,21,14,8,22,14,16,15,15,22,15,14,15,15,14,15,16,15,15,0,8,15,22,0,0,23,22,7,21,8,9,0,16,8,15,15,0,1,23,15,21,23,15,0,10,10,8,10,10,10,9,9,8,10,7,10,10,12,10,8,9,10,10,9,10,10,8,10,8,0,8,10,0,0,10,10,9,11,10,8,0,10,3,10,10,0,4,10,12,7,12,12,0,15,15,8,8,15,23,14,14,8,15,14,23,15,23,22,23,14,15,22,14,23,23,16,15,15,8,0,15,0,0,15,15,7,14,8,8,0,23,8,15,15,0,0,15,15,14,22,8,0,18,17,8,11,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,16,17,22,10,15,0,0,0,24,24,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,8,10,25,18,24,16,8,22,14,18,15,17,25,16,16,17,15,16,17,18,15,18,23,10,15,24,0,0,0,25,9,23,10,9,0,18,10,17,17,0,3,25,17,21,25,17,0,17,18,8,10,24,17,25,16,8,22,14,17,15,18,25,16,17,18,15,16,17,17,15,18,22,10,15,24,0,0,25,0,9,23,10,8,0,18,10,18,17,0,2,24,17,21,24,17,0,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,0,16,16,7,9,23,16,23,16,7,23,14,16,16,18,23,14,16,16,16,16,16,16,14,16,21,11,14,23,0,0,23,23,9,0,9,7,0,16,9,16,16,0,4,23,18,21,25,18,0,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,0,9,8,8,8,9,9,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,9,8,8,9,8,8,8,0,0,9,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,17,9,10,18,26,17,17,8,15,14,26,15,26,25,23,17,19,22,16,25,26,16,17,16,10,23,17,0,0,18,18,9,16,10,9,0,0,10,18,17,0,3,19,17,14,25,10,0,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,10,7,10,3,0,17,17,8,10,17,17,17,16,8,15,14,17,15,18,17,15,17,18,15,16,17,17,8,17,15,10,15,17,0,0,17,18,9,16,10,8,0,18,10,0,17,0,2,17,17,14,17,10,0,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,2,3,3,2,2,0,2,0,3,2,4,2,0,2,2,2,2,2,3,0,2,1,4,0,2,0,0,3,2,2,4,2,1,0,3,2,2,2,0,0,3,4,0,5,4,0,20,17,9,10,25,18,23,17,9,23,14,18,16,17,25,15,17,18,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,19,10,17,17,0,3,0,17,21,25,18,0,17,17,8,10,17,17,16,16,8,17,14,17,17,19,17,15,16,17,17,16,17,17,8,17,15,12,15,17,0,0,17,17,9,18,10,8,0,17,10,17,17,0,4,17,0,14,19,12,0,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,21,21,7,21,7,7,0,14,7,14,14,0,0,21,14,0,21,14,0,18,17,8,10,25,25,23,16,8,24,14,25,17,26,31,22,16,17,24,16,24,25,22,17,23,12,22,24,0,0,25,24,9,25,10,9,0,25,10,17,17,0,5,25,19,21,0,19,0,11,10,8,10,17,10,16,9,9,21,7,10,14,12,17,8,10,10,13,9,10,10,15,10,15,12,8,17,0,0,17,17,9,18,10,8,0,10,3,10,10,0,4,18,12,14,19,0,0,0,17,9,11,18,18,16,17,9,16,14,18,16,17,18,15,17,18,15,16,17,18,9,17,16,10,15,18,0,0,18,17,9,16,10,9,0,19,10,17,17,0,3,20,17,14,18,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,0,0,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,9,0,8,0,8,8,8,7,8,8,8,7,8,8,8,9,8,7,9,15,7,8,15,8,15,8,8,8,8,0,0,8,8,7,7,8,8,0,9,8,8,8,0,0,9,8,7,8,8,11,0,10,8,0,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,9,10,8,10,8,11,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,18,0,17,8,10,0,18,16,16,8,15,14,18,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,18,0,17,8,10,18,0,16,16,8,16,14,19,15,18,17,15,16,17,15,16,18,19,8,17,17,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,18,14,18,10,16,0,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,17,0,16,8,9,16,16,16,0,7,14,14,16,14,16,17,14,16,17,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,17,9,16,16,0,2,17,16,14,16,9,9,0,8,8,8,8,8,7,7,0,9,7,8,9,8,8,8,8,8,8,9,8,8,10,10,8,8,10,10,0,0,8,8,7,7,10,12,0,8,1,10,8,0,0,14,8,10,8,9,16,0,15,8,8,15,16,14,14,9,0,14,16,16,16,15,15,15,15,15,14,16,16,8,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,16,16,14,15,9,14,0,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,18,0,17,8,10,18,19,16,16,8,16,14,0,15,18,17,15,16,17,15,16,18,19,8,17,17,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,18,14,18,10,16,0,15,8,8,15,15,14,14,9,16,14,15,0,15,15,15,15,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,16,15,14,15,9,17,0,17,8,10,17,18,16,16,8,16,14,18,15,0,17,15,16,17,15,16,18,18,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,18,14,17,10,18,0,17,9,10,17,17,16,17,8,15,14,17,15,17,0,15,16,18,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,18,17,14,17,10,15,0,15,8,8,15,15,14,14,8,15,14,15,15,15,15,0,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,17,0,16,7,9,16,16,16,16,8,15,14,16,15,16,16,14,0,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,17,16,14,16,10,18,0,17,9,10,17,17,16,17,8,15,14,17,15,17,18,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,18,17,14,17,10,15,0,15,15,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,22,8,22,15,8,15,15,0,0,15,15,7,14,8,8,0,15,15,15,15,0,0,15,15,14,15,8,16,0,16,7,9,16,16,16,16,9,14,14,16,14,16,16,14,16,16,14,0,16,16,9,18,14,9,16,18,0,0,16,16,9,16,11,9,0,16,9,18,16,0,2,18,16,16,16,9,17,0,17,8,10,17,18,16,16,8,16,14,18,15,18,17,15,16,17,15,16,0,18,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,18,14,17,10,18,0,17,15,10,18,19,16,16,8,16,14,19,15,18,17,15,16,17,22,16,18,0,8,24,17,10,15,17,0,0,18,17,9,16,10,9,0,18,17,17,17,0,3,18,18,14,18,10,9,0,8,8,9,8,8,7,7,10,8,7,8,8,8,8,8,7,8,8,9,8,8,0,10,8,8,10,11,0,0,8,8,7,7,10,10,0,8,1,10,8,0,0,10,8,9,8,8,17,0,17,15,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,22,18,17,24,10,0,15,10,17,19,0,0,17,17,9,16,12,10,0,17,17,19,17,0,2,19,17,16,17,10,16,0,15,8,8,16,17,14,14,8,16,14,17,15,16,15,15,14,15,15,14,16,17,8,15,0,8,15,15,0,0,16,15,7,14,8,9,0,16,8,15,15,0,1,16,16,14,16,8,10,0,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,15,0,15,8,8,15,15,14,14,10,15,14,15,15,15,15,15,14,15,15,16,15,15,10,17,15,8,0,17,0,0,15,15,7,14,10,10,0,15,8,17,15,0,0,17,15,16,15,8,18,0,17,8,11,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,11,19,15,10,17,0,0,0,17,17,9,16,12,10,0,17,10,19,17,0,2,19,17,16,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,0,17,8,10,18,18,16,16,8,15,14,18,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,0,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,17,0,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,9,0,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,16,0,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,10,0,10,8,10,10,10,9,9,10,8,7,10,8,10,10,8,9,10,8,11,10,10,10,12,8,10,10,12,0,0,10,10,9,9,0,10,0,10,3,12,10,0,2,12,10,9,10,10,9,0,8,8,8,9,9,7,7,12,8,7,9,8,8,8,8,7,8,8,9,8,9,10,10,9,8,10,10,0,0,9,8,7,7,10,0,0,9,1,10,8,0,1,13,8,9,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,0,17,9,10,18,18,16,17,8,15,14,18,15,17,18,15,16,18,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,19,17,14,18,10,10,0,10,8,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,15,9,10,17,1,17,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,10,7,10,3,17,0,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,19,15,10,17,19,0,0,17,17,9,16,12,10,0,17,10,0,17,0,2,19,17,16,17,10,17,0,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,0,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,20,0,17,9,10,18,18,16,17,14,16,14,18,16,17,18,15,17,18,15,18,17,18,10,19,16,10,17,19,0,0,18,17,9,16,12,13,0,19,10,19,17,0,3,0,17,17,18,11,17,0,17,8,10,17,18,16,16,8,16,14,18,15,18,17,15,16,17,15,16,18,18,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,14,0,14,7,7,14,14,14,14,10,14,14,14,14,14,14,14,14,14,14,16,14,14,9,16,14,7,16,16,0,0,14,14,7,14,9,9,0,14,7,16,14,0,0,17,14,0,14,7,18,0,17,8,10,18,18,16,16,8,15,14,18,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,0,10,11,0,10,8,10,10,10,9,9,9,9,7,10,9,10,10,8,10,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,11,10,7,10,0,0,17,0,8,10,17,17,18,16,8,15,14,17,16,18,18,17,16,17,15,16,17,17,8,18,15,10,15,17,0,0,18,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,17,0,0,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,0,0,8,8,8,8,8,9,9,7,8,9,8,8,9,8,8,8,7,8,8,8,8,8,8,9,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,9,10,10,0,8,0,10,10,10,16,15,8,7,18,15,17,10,15,17,17,9,16,17,10,8,11,9,17,15,11,0,0,10,10,16,9,18,16,0,17,4,17,10,0,2,10,17,7,11,11,17,17,0,8,10,0,18,16,17,8,16,14,17,15,18,18,16,16,17,15,16,17,18,9,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,17,17,0,8,10,18,0,16,17,8,16,14,17,15,19,19,17,16,17,16,16,17,18,9,18,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,18,16,0,8,10,16,16,0,21,8,15,14,21,16,17,17,17,18,18,15,16,16,16,7,18,15,9,15,18,0,0,17,17,11,16,10,8,0,16,10,16,16,0,2,16,16,14,17,11,16,16,0,8,16,17,17,21,0,15,16,14,27,22,24,17,23,24,25,14,23,23,17,8,16,14,16,22,17,0,0,16,16,18,16,16,14,0,23,9,23,16,0,2,16,23,14,16,10,8,8,0,9,15,8,8,8,15,0,9,7,15,16,15,8,16,15,15,8,14,15,8,8,8,8,15,16,9,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,9,15,15,0,9,8,16,16,15,16,9,0,14,15,16,16,16,17,15,15,15,14,15,16,9,15,15,8,16,16,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,9,14,14,0,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,17,17,0,8,18,17,17,21,27,15,15,14,0,22,24,17,22,24,26,16,23,24,17,8,18,17,17,23,18,0,0,17,17,18,16,18,17,0,24,11,24,17,0,2,17,24,14,19,11,16,15,0,9,15,15,15,16,22,16,16,14,22,0,23,15,24,22,22,15,21,22,15,8,15,15,15,23,16,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,9,18,17,0,8,17,18,19,17,24,15,16,14,24,23,0,19,25,23,24,16,23,24,18,9,18,15,17,22,18,0,0,17,17,16,16,17,15,0,24,10,24,18,0,2,17,24,14,17,10,18,17,0,8,10,18,19,17,17,8,16,14,17,15,19,0,18,16,17,16,16,17,18,9,19,15,10,15,18,0,0,18,18,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,17,15,0,9,15,16,17,17,23,16,17,14,22,24,25,18,0,22,22,16,21,22,16,9,17,15,15,23,17,0,0,16,16,14,14,15,15,0,22,8,22,16,0,0,15,22,14,15,9,16,16,0,8,17,16,16,18,24,15,15,14,24,22,23,16,22,0,23,15,23,23,16,7,17,15,16,22,18,0,0,16,16,16,16,17,15,0,23,10,23,16,0,2,16,23,14,17,11,17,17,0,8,17,17,17,18,25,15,15,14,26,22,24,17,22,23,0,15,23,24,17,8,17,15,17,22,17,0,0,17,17,18,16,17,15,0,24,10,24,17,0,2,17,24,14,17,10,15,15,0,8,9,15,16,15,14,8,15,14,16,15,16,16,16,15,15,0,14,15,15,8,17,16,8,15,17,0,0,15,15,7,14,9,9,0,15,9,15,16,0,0,15,15,14,16,9,16,16,0,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,17,17,0,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,0,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,24,14,17,10,17,17,0,8,10,18,18,16,17,8,16,14,17,15,18,18,16,16,17,15,16,17,0,9,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,8,8,0,8,8,9,9,7,8,8,9,7,8,8,9,9,9,7,8,8,7,8,9,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,18,17,0,8,11,17,18,18,16,8,15,14,18,15,18,19,17,17,17,17,16,17,17,8,0,16,10,15,19,0,0,18,18,9,16,11,9,0,17,11,17,18,0,2,17,17,14,18,11,15,15,0,8,9,15,15,15,14,8,15,14,17,15,15,15,15,15,15,16,14,15,15,8,16,0,8,16,16,0,0,15,15,7,14,9,10,0,15,9,15,15,0,0,15,15,14,17,9,10,10,0,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,15,15,0,9,15,15,15,15,22,16,16,14,23,23,22,15,23,22,22,15,21,22,15,8,15,16,15,0,16,0,0,15,15,14,14,15,16,0,22,8,22,15,0,0,15,22,14,16,9,17,17,0,9,11,17,18,18,17,9,16,14,18,16,18,18,17,18,17,17,16,17,17,8,19,16,10,16,0,0,0,17,17,9,16,11,9,0,17,11,17,18,0,2,17,17,14,18,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,17,0,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,18,15,10,15,17,0,0,0,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,18,17,0,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,18,15,10,15,17,0,0,18,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,9,9,0,7,16,9,9,11,18,14,7,7,18,14,16,9,14,16,18,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,16,16,0,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,10,10,0,8,18,10,10,10,16,15,8,7,18,15,17,10,15,17,17,9,16,17,10,8,11,9,17,15,11,0,0,10,10,16,9,0,16,0,17,4,17,10,0,2,10,17,7,11,11,8,8,0,8,16,8,8,8,14,15,8,7,17,15,15,8,15,15,15,9,14,15,8,8,9,10,15,16,9,0,0,8,8,14,7,16,0,0,15,2,15,8,0,0,8,15,7,10,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,0,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,0,10,24,17,0,2,17,24,14,17,10,10,10,0,1,4,10,10,10,9,1,8,7,11,8,10,10,8,10,10,9,9,10,10,1,11,9,3,8,11,0,0,10,10,2,9,4,2,0,10,0,10,10,0,2,10,10,7,11,4,17,17,0,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,0,17,0,2,17,24,14,17,10,17,17,0,8,10,17,18,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,18,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,17,17,0,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,0,17,14,17,10,17,17,0,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,0,14,17,10,14,14,0,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,17,17,0,8,11,17,17,17,16,8,15,14,19,15,17,17,15,17,17,16,16,17,17,8,18,17,10,16,18,0,0,17,17,9,16,11,10,0,17,11,17,17,0,2,17,17,14,0,11,10,10,0,9,11,10,10,11,10,9,9,7,11,9,10,10,9,11,10,9,9,10,10,8,11,9,10,9,12,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,11,0,0,9,8,0,8,8,8,7,8,8,8,7,8,8,8,9,8,7,9,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,9,1,8,8,0,0,9,8,7,8,8,9,0,8,0,8,8,8,7,8,8,8,7,8,8,8,9,8,7,9,15,7,8,15,8,15,8,8,8,8,0,0,8,8,7,7,8,8,0,9,8,8,8,0,0,9,8,7,8,8,8,8,0,0,8,8,8,8,8,9,9,7,8,9,8,8,9,8,8,8,7,8,8,8,8,8,8,9,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,0,0,15,8,14,14,15,16,7,8,15,8,9,8,7,15,8,7,8,8,8,16,8,8,8,8,0,0,8,8,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,8,8,8,8,0,15,0,8,14,14,15,15,7,8,15,8,8,10,7,15,8,7,8,8,8,15,8,8,8,8,0,0,8,8,7,14,15,8,0,10,8,8,8,0,0,8,8,14,8,8,8,8,8,0,8,8,0,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,7,7,8,0,14,14,7,0,15,15,15,7,7,15,7,7,8,8,14,7,7,7,7,7,14,7,7,8,8,0,0,7,7,7,14,14,7,0,7,7,7,7,0,0,7,7,14,7,8,8,8,8,0,14,14,7,15,0,15,15,7,7,15,7,8,8,8,15,7,7,7,7,7,14,7,7,8,8,0,0,7,7,7,14,14,7,0,8,7,7,7,0,0,8,7,14,7,8,8,8,9,0,15,15,8,15,15,0,16,7,8,16,8,8,9,8,15,8,7,8,8,8,22,8,15,9,9,0,0,8,8,14,14,15,15,0,8,8,8,8,0,7,8,8,14,8,16,8,8,9,0,16,15,8,15,15,16,0,7,8,16,8,9,9,8,15,8,7,8,8,8,16,8,8,9,9,0,0,8,8,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,9,7,7,7,0,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,8,8,8,0,8,8,8,7,7,8,8,7,0,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,8,9,0,15,15,8,15,15,16,16,7,8,0,8,8,9,8,15,8,7,8,8,8,15,8,8,9,9,0,0,8,8,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,9,8,8,8,0,8,8,8,7,7,8,8,7,8,8,0,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,9,9,8,0,9,8,8,7,8,8,9,7,8,8,8,0,8,7,9,8,7,8,8,8,9,8,8,8,8,0,0,8,8,7,7,8,8,0,9,1,8,8,0,0,9,8,7,8,8,8,8,9,0,8,10,8,8,8,9,9,7,8,9,8,8,0,8,8,8,7,8,8,8,8,8,8,9,9,0,0,8,8,7,7,8,8,0,10,1,8,8,0,0,8,8,7,8,9,7,7,8,0,7,7,7,8,8,8,8,7,7,8,7,7,8,0,7,7,7,7,7,7,7,7,7,8,8,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,8,9,9,8,0,15,15,8,14,15,15,15,7,8,15,8,9,8,7,0,8,7,8,8,8,15,8,8,8,8,0,0,8,8,7,14,15,8,0,9,8,8,8,0,0,9,8,14,8,8,8,15,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,0,7,8,15,8,15,8,8,8,8,0,0,8,8,7,7,8,8,0,8,8,8,8,0,0,8,8,7,8,8,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,0,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,15,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,15,7,8,0,8,15,8,8,8,8,0,0,8,8,7,7,8,8,0,8,8,8,8,0,0,8,8,7,8,8,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,15,8,0,16,15,8,14,14,22,16,7,8,15,8,9,8,7,15,15,7,8,15,8,0,8,15,8,8,0,0,8,8,14,14,15,15,0,8,15,8,8,0,7,8,8,14,8,15,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,0,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,8,8,0,8,8,8,7,7,15,8,7,8,8,8,8,8,7,8,8,7,8,8,8,15,8,0,8,8,0,0,8,8,14,7,8,15,0,8,1,8,8,0,7,8,8,7,8,15,8,8,9,0,8,8,8,8,8,9,9,7,8,9,8,8,9,8,8,8,7,8,8,8,8,8,8,0,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,9,8,8,9,0,8,8,8,8,8,9,9,7,8,9,8,8,9,8,8,8,7,8,8,8,8,8,8,9,0,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,0,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,0,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,7,7,7,0,7,7,7,7,7,14,7,7,7,7,7,7,7,7,7,7,7,7,7,7,14,7,14,7,7,0,0,7,7,0,7,7,14,0,7,0,7,7,0,7,7,7,7,7,14,7,7,7,0,14,14,7,14,14,14,14,7,7,14,7,7,7,7,14,7,7,7,7,7,14,7,7,7,7,0,0,7,7,7,0,14,7,0,7,7,7,7,0,0,7,7,14,7,7,8,8,8,0,15,15,8,14,14,15,15,7,8,15,8,8,8,7,15,8,7,8,8,8,15,8,8,8,8,0,0,8,8,7,14,0,8,0,8,8,8,8,0,0,8,8,14,8,8,8,8,8,0,8,8,8,7,7,15,8,7,8,8,8,8,8,7,8,8,7,8,8,8,15,8,15,8,8,0,0,8,8,14,7,8,0,0,8,1,8,8,0,7,8,8,7,8,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,8,0,8,10,8,7,8,8,8,7,8,8,8,9,10,7,9,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,0,1,8,8,0,0,9,8,7,8,8,1,8,1,0,8,8,1,7,7,8,8,0,1,8,1,1,1,0,8,8,0,1,8,1,15,1,1,1,1,0,0,1,1,0,7,8,1,0,1,0,1,1,0,0,1,1,7,1,1,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,0,8,0,0,8,8,7,8,8,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,0,0,0,8,8,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,7,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,7,9,9,8,0,8,8,8,7,8,8,8,7,8,8,8,9,8,7,9,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,9,1,8,8,0,0,0,8,7,8,8,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,0,7,8,8,7,7,7,0,14,14,7,14,14,14,14,7,7,14,7,7,7,7,14,7,7,7,7,7,14,7,7,7,7,0,0,7,7,7,14,14,7,0,7,7,7,7,0,0,7,7,0,7,7,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,0,8,8,8,9,0,8,8,8,8,8,16,9,7,8,9,8,8,9,8,8,8,7,8,8,8,15,8,15,9,9,0,0,8,8,14,7,8,15,0,8,1,8,8,0,7,8,8,7,8,0,0,11,10,8,0,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,9,10,8,10,8,11,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,11,0,10,8,0,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,9,10,8,10,8,11,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,10,10,0,8,0,10,10,10,16,15,8,7,18,15,17,10,15,17,17,9,16,17,10,8,11,9,17,15,11,0,0,10,10,16,9,18,16,0,17,4,17,10,0,2,10,17,7,11,11,8,8,8,0,0,15,8,14,14,15,16,7,8,15,8,9,8,7,15,8,7,8,8,8,16,8,8,8,8,0,0,8,8,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,15,0,0,10,16,16,15,15,7,10,15,10,10,8,9,17,8,9,10,10,8,17,8,10,8,10,0,0,10,10,9,16,17,8,0,10,10,10,10,0,2,10,10,14,10,10,10,10,10,8,0,10,0,9,9,8,8,9,10,8,10,12,8,11,10,8,9,12,10,8,10,10,10,8,10,0,0,12,12,9,9,10,8,0,10,5,10,12,0,2,10,10,7,10,10,9,9,10,14,0,16,9,0,16,14,14,7,10,14,9,9,7,10,16,8,9,9,9,7,17,8,9,7,10,0,0,9,9,9,16,17,8,0,9,10,9,9,0,2,9,9,14,10,10,9,9,16,14,0,16,9,16,0,21,14,7,16,21,16,9,14,16,23,7,16,16,9,7,16,7,16,14,9,0,0,9,9,16,16,23,14,0,16,9,16,9,0,2,9,16,14,9,9,8,8,15,15,0,15,8,14,21,0,15,7,15,22,15,8,15,14,22,8,14,15,8,8,15,8,15,15,8,0,0,8,8,14,14,22,15,0,15,8,15,8,0,0,8,15,14,8,8,8,8,8,16,0,15,8,14,14,15,0,7,8,15,8,9,8,7,15,8,7,8,8,8,16,8,8,8,8,0,0,8,8,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,8,7,7,7,7,0,7,9,7,7,7,7,0,7,7,7,9,7,9,7,7,7,9,7,7,7,9,7,7,7,0,0,9,9,7,7,7,7,0,7,2,7,9,0,0,7,7,7,7,7,10,10,18,8,0,10,10,10,16,15,8,7,0,15,17,10,15,17,17,9,16,17,10,8,11,9,17,15,11,0,0,10,10,16,9,18,16,0,17,4,17,10,0,2,10,17,7,11,11,8,8,15,15,0,15,8,14,21,22,15,7,15,0,15,8,15,14,22,8,14,15,8,8,15,8,15,15,8,0,0,8,8,14,14,22,15,0,15,8,15,8,0,0,8,15,14,8,8,10,10,17,8,0,10,10,9,16,15,8,7,17,15,0,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,10,10,10,9,0,10,12,9,9,8,9,9,10,8,10,0,8,11,10,8,9,12,10,8,11,10,10,8,10,0,0,12,12,9,9,10,8,0,10,5,10,12,0,2,10,10,7,10,10,8,8,15,8,0,8,8,7,14,15,8,7,15,15,15,8,0,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,9,9,17,7,0,9,11,10,16,14,7,9,17,14,16,11,14,0,16,8,16,18,9,7,10,10,16,14,10,0,0,11,11,16,9,17,15,0,16,5,16,11,0,2,9,16,7,10,10,10,10,17,15,0,17,10,16,23,22,15,7,17,22,17,10,15,16,0,8,16,17,10,8,17,8,17,15,10,0,0,10,10,16,16,24,15,0,17,10,17,10,0,2,10,17,14,10,10,8,8,9,8,0,8,8,8,7,8,8,7,9,8,8,8,8,8,8,0,7,8,8,8,9,9,8,8,9,0,0,8,8,7,7,9,9,0,8,2,8,8,0,0,8,8,7,9,9,9,9,16,7,0,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,0,16,9,7,9,7,16,14,9,0,0,9,9,16,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,10,10,17,8,0,10,12,9,16,15,8,9,17,15,17,12,15,18,17,8,16,0,10,8,10,10,17,15,10,0,0,12,12,16,9,17,15,0,17,5,17,12,0,2,10,17,7,10,10,10,10,10,8,0,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,0,8,10,8,11,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,9,9,8,8,0,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,8,8,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,10,10,11,16,0,17,10,17,16,15,16,7,11,15,10,11,8,10,17,9,9,10,10,8,0,9,10,8,11,0,0,10,10,9,16,18,9,0,10,11,10,10,0,2,10,10,14,11,11,8,8,9,8,0,8,10,8,7,8,8,9,9,8,8,10,8,10,8,9,7,10,8,8,9,0,8,8,9,0,0,10,10,7,7,9,9,0,8,4,8,10,0,0,8,8,7,9,9,10,10,17,8,0,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,11,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,8,8,15,8,0,8,8,7,14,15,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,15,0,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,11,11,11,8,0,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,9,11,9,10,8,0,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,8,0,10,12,9,9,8,8,9,10,8,10,12,8,11,10,8,9,12,10,8,10,10,10,8,10,0,0,0,12,9,9,10,8,0,10,5,10,12,0,2,10,10,7,10,10,10,10,10,8,0,10,12,9,9,8,8,9,10,8,10,12,8,11,10,8,9,12,10,8,10,10,10,8,10,0,0,12,0,9,9,10,8,0,10,5,10,12,0,2,10,10,7,10,10,9,9,16,7,0,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,9,9,9,14,0,16,9,16,16,14,14,7,9,14,9,9,7,9,16,7,9,9,9,7,16,7,9,7,9,0,0,9,9,9,0,16,7,0,9,9,9,9,0,2,9,9,14,9,9,10,10,18,15,0,17,10,17,23,22,15,7,18,22,17,10,15,17,24,9,16,17,10,8,18,9,17,15,11,0,0,10,10,16,16,0,16,0,17,11,17,10,0,2,10,17,14,11,11,8,8,16,8,0,8,8,8,14,15,8,7,16,15,15,8,15,15,15,9,14,15,8,8,9,9,15,15,9,0,0,8,8,14,7,16,0,0,15,2,15,8,0,0,8,15,7,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,17,8,0,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,17,15,0,0,3,17,10,0,2,10,17,7,10,10,3,3,4,8,0,10,5,10,9,8,8,2,4,8,3,5,1,5,10,2,2,5,3,1,11,4,3,1,4,0,0,5,5,2,9,11,2,0,3,0,3,5,0,2,3,3,7,4,4,10,10,17,8,0,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,17,15,0,17,3,0,10,0,2,10,17,7,10,10,10,10,10,8,0,10,12,9,9,8,8,9,10,8,10,12,8,11,10,8,9,12,10,8,10,10,10,8,10,0,0,12,12,9,9,10,8,0,10,5,10,0,0,2,10,10,7,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,0,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,10,10,10,8,0,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,0,10,7,10,10,10,10,17,8,0,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,0,7,10,10,7,7,7,14,0,14,7,14,14,14,14,7,7,14,7,7,7,7,14,7,7,7,7,7,14,7,7,7,7,0,0,7,7,7,14,14,7,0,7,7,7,7,0,0,7,7,0,7,7,10,10,11,8,0,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,8,11,9,10,8,11,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,0,11,10,10,11,8,0,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,8,11,9,10,8,11,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,11,0,0,18,17,8,10,0,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,18,10,17,17,0,3,25,17,21,25,17,18,0,17,8,10,0,18,16,16,8,15,14,18,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,17,17,0,8,10,0,18,16,17,8,16,14,17,15,18,18,16,16,17,15,16,17,18,9,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,8,8,8,0,15,0,8,14,14,15,15,7,8,15,8,8,10,7,15,8,7,8,8,8,15,8,8,8,8,0,0,8,8,7,14,15,8,0,10,8,8,8,0,0,8,8,14,8,8,10,10,10,15,0,0,10,16,16,15,15,7,10,15,10,10,8,9,17,8,9,10,10,8,17,8,10,8,10,0,0,10,10,9,16,17,8,0,10,10,10,10,0,2,10,10,14,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,18,8,10,0,0,16,17,9,16,15,18,16,19,18,17,16,17,15,16,18,20,10,17,16,10,16,17,0,0,19,18,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,23,16,16,14,16,0,16,0,23,15,28,14,16,21,16,23,14,16,24,14,16,16,16,14,23,21,9,14,23,0,0,23,23,9,30,16,7,0,16,16,16,16,0,2,23,16,28,23,16,16,16,17,14,16,0,17,23,0,14,22,14,16,21,17,17,15,16,23,14,16,16,17,8,23,14,9,14,16,0,0,16,16,9,23,16,7,0,16,16,16,16,0,2,16,16,21,16,9,8,8,8,15,15,0,9,15,14,0,15,8,8,16,9,8,9,7,17,8,7,9,9,9,15,8,8,9,8,0,0,9,9,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,8,22,15,16,15,15,0,16,28,22,15,0,14,15,22,16,23,16,14,22,15,14,15,16,16,22,22,8,15,22,0,0,22,22,7,28,15,8,0,15,15,15,15,0,0,22,15,28,22,15,14,14,14,7,7,0,15,14,14,8,14,0,14,15,15,14,15,14,14,14,14,15,15,8,14,14,7,15,14,0,0,15,15,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,18,18,17,8,10,0,18,16,16,8,15,14,0,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,15,15,15,15,15,0,16,21,21,16,22,15,15,0,16,15,16,14,22,15,14,16,16,9,22,15,8,16,15,0,0,16,16,7,21,15,8,0,15,15,15,15,0,0,15,15,21,15,8,17,17,18,8,10,0,19,16,17,9,16,15,17,16,0,18,17,16,17,15,16,18,19,10,17,15,10,16,17,0,0,18,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,24,17,18,8,10,0,18,23,17,8,23,14,17,15,18,0,16,16,17,15,16,17,18,16,17,22,10,15,24,0,0,24,24,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,15,15,16,10,8,0,17,14,15,9,16,15,15,16,17,16,0,14,15,15,14,16,17,10,15,15,8,16,15,0,0,16,16,7,14,8,8,0,17,8,15,15,0,0,15,15,14,15,8,16,16,16,7,9,0,16,16,16,7,14,14,16,14,16,16,14,0,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,17,17,17,15,17,0,17,24,23,17,22,14,17,22,17,17,15,16,0,15,16,17,17,8,24,15,10,15,17,0,0,17,17,9,23,17,8,0,17,17,17,17,0,2,17,17,21,17,10,15,15,15,8,8,0,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,16,16,16,7,9,0,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,17,17,17,8,10,0,18,16,16,9,15,15,17,16,18,17,16,16,17,15,16,0,18,9,17,15,10,16,17,0,0,18,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,18,18,18,8,10,0,20,16,17,9,16,15,18,16,19,18,17,16,17,15,16,18,0,10,17,16,10,16,17,0,0,19,18,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,15,8,9,8,8,0,10,14,8,9,16,8,8,9,10,16,10,7,8,8,7,9,10,0,8,15,8,9,15,0,0,16,16,7,14,8,8,0,8,1,8,8,0,0,15,8,14,15,15,17,17,17,15,17,0,17,23,23,15,22,14,17,22,17,17,15,16,24,15,16,17,17,8,0,15,10,15,17,0,0,17,17,9,23,17,8,0,17,17,17,17,0,2,17,17,21,17,10,23,16,15,8,8,0,16,21,14,8,22,14,16,15,15,22,15,14,15,15,14,15,16,15,15,0,8,15,22,0,0,23,22,7,21,8,9,0,16,8,15,15,0,1,23,15,21,23,15,10,10,10,8,10,0,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,15,15,15,8,8,0,16,14,14,9,15,15,15,16,16,15,16,14,15,15,14,16,16,9,15,15,8,0,15,0,0,16,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,24,17,17,8,10,0,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,0,0,0,24,24,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,18,17,8,10,0,19,23,16,9,22,15,18,16,18,24,16,16,17,15,16,18,19,16,17,23,10,16,24,0,0,0,25,9,23,10,9,0,18,10,17,17,0,3,25,17,21,25,17,24,17,17,8,10,0,18,23,16,9,22,15,17,16,18,24,16,16,17,15,16,18,18,16,17,22,10,16,24,0,0,25,0,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,9,9,9,7,9,0,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,23,16,16,14,16,0,16,30,23,14,28,14,16,21,16,23,14,16,23,14,16,16,16,14,23,21,9,14,23,0,0,23,23,9,0,16,7,0,16,16,16,16,0,2,23,16,28,23,16,10,10,10,15,17,0,10,16,16,15,15,7,10,15,10,10,8,9,17,8,9,10,10,8,17,8,10,8,10,0,0,10,10,9,16,0,8,0,10,10,10,10,0,2,10,10,14,10,10,9,9,8,8,8,0,9,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,9,8,8,9,8,8,8,0,0,9,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,17,10,10,0,18,16,16,8,15,14,18,15,17,17,17,16,17,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,18,17,14,18,10,10,10,10,8,10,0,10,16,16,8,15,7,10,15,10,10,8,9,17,8,9,10,10,1,17,8,3,8,10,0,0,10,10,2,16,10,1,0,10,0,10,10,0,2,10,10,14,10,3,17,17,17,8,10,0,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,17,17,17,8,10,0,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,0,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,25,18,17,8,10,0,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,18,10,17,17,0,3,0,17,21,25,17,17,17,17,8,10,0,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,21,14,14,14,14,0,14,28,21,14,28,14,14,21,14,21,14,14,21,14,14,14,14,14,21,21,7,14,21,0,0,21,21,7,28,14,7,0,14,14,14,14,0,0,21,14,0,21,14,25,18,17,8,10,0,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,18,10,17,17,0,3,25,17,21,0,17,17,10,10,8,10,0,10,16,9,8,15,7,10,8,10,17,8,9,10,8,9,10,10,15,10,15,10,8,17,0,0,17,17,9,16,10,8,0,10,3,10,10,0,2,17,10,14,17,0,0,18,17,8,10,18,0,16,16,8,15,14,26,15,25,24,23,16,17,22,16,25,26,16,17,16,10,23,17,0,0,18,17,9,16,10,9,0,26,10,17,17,0,3,18,17,14,25,10,18,0,17,8,10,18,0,16,16,8,16,14,19,15,18,17,15,16,17,15,16,18,19,8,17,17,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,18,14,18,10,17,17,0,8,10,18,0,16,17,8,16,14,17,15,19,19,17,16,17,16,16,17,18,9,18,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,8,8,8,0,8,8,0,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,10,10,10,8,0,10,0,9,9,8,8,9,10,8,10,12,8,11,10,8,9,12,10,8,10,10,10,8,10,0,0,12,12,9,9,10,8,0,10,5,10,12,0,2,10,10,7,10,10,18,18,18,8,10,0,0,16,17,9,16,15,18,16,19,18,17,16,17,15,16,18,20,10,17,16,10,16,17,0,0,19,18,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,7,9,16,0,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,17,7,9,17,0,16,0,7,15,14,16,14,17,17,15,16,16,14,16,16,17,8,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,10,16,16,0,2,16,16,14,16,9,8,8,8,8,8,9,0,7,7,0,8,8,8,9,9,8,9,7,8,8,7,9,9,9,8,8,8,9,8,0,0,9,9,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,15,16,16,8,8,16,0,14,15,8,0,14,16,15,17,16,16,14,15,15,14,16,17,9,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,14,14,14,7,9,15,0,14,14,8,14,0,14,15,15,16,15,16,14,14,14,17,15,8,14,16,7,15,14,0,0,17,17,7,14,7,7,0,14,9,14,23,0,7,14,14,14,14,7,26,19,17,8,10,18,0,16,16,8,16,14,0,15,26,25,24,16,17,23,16,27,28,17,17,17,10,24,17,0,0,18,17,9,16,10,9,0,27,10,17,17,0,3,19,18,14,25,10,15,15,15,8,8,16,0,14,14,9,15,15,15,0,16,15,16,14,15,15,14,16,16,9,15,15,8,16,15,0,0,16,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,25,18,19,8,10,19,0,16,17,9,17,15,26,16,0,26,26,16,17,23,16,27,28,18,18,16,10,24,18,0,0,18,18,9,16,10,8,0,25,10,17,18,0,2,17,18,14,24,10,24,17,19,8,12,18,0,16,17,8,16,16,25,15,26,0,25,18,17,24,16,27,26,17,18,17,10,23,18,0,0,19,19,9,16,10,8,0,25,12,17,20,0,2,18,17,14,24,10,23,15,17,8,8,17,0,14,15,9,16,15,24,16,26,25,0,14,15,24,14,25,26,19,16,15,8,25,16,0,0,16,16,7,14,8,8,0,24,8,15,16,0,0,16,15,14,22,8,16,16,16,7,11,16,0,16,16,7,14,16,16,14,16,18,14,0,16,14,16,18,16,7,16,16,9,14,16,0,0,18,18,9,16,9,7,0,16,11,16,18,0,2,16,16,14,16,9,17,17,17,8,10,17,0,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,22,15,16,8,8,15,0,14,14,8,15,14,23,15,23,24,24,14,15,0,14,23,23,16,16,15,8,23,16,0,0,15,15,7,14,8,8,0,23,8,15,16,0,0,16,15,14,22,8,16,16,16,7,9,16,0,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,25,18,17,8,12,18,0,16,16,9,16,17,27,16,27,27,25,18,17,23,16,0,28,18,17,18,10,25,17,0,0,20,20,9,16,10,8,0,26,12,17,19,0,2,18,18,14,24,10,26,19,18,8,10,20,0,16,17,9,17,15,28,16,28,26,26,16,17,23,16,28,0,19,17,17,10,25,17,0,0,19,18,9,16,10,9,0,27,10,17,17,0,3,19,18,14,25,10,16,8,9,8,8,10,0,7,8,9,9,8,17,9,18,17,19,7,8,16,7,18,19,0,8,8,8,18,8,0,0,9,9,7,7,8,8,0,17,1,8,8,0,0,9,8,7,15,8,17,17,18,8,10,17,0,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,0,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,16,17,15,8,10,16,0,14,14,8,16,16,17,15,16,17,15,16,15,15,14,18,17,8,15,0,8,15,15,0,0,18,17,7,14,8,9,0,16,10,15,17,0,1,16,16,14,16,8,10,10,10,8,10,10,0,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,23,15,15,8,8,16,0,14,14,9,15,15,24,16,24,23,25,14,15,23,14,25,25,18,15,15,8,0,15,0,0,16,16,7,14,8,8,0,24,8,15,15,0,0,16,15,14,22,8,17,17,18,8,10,17,0,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,18,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,17,8,12,19,0,16,16,9,15,17,18,16,18,19,16,18,17,15,16,20,19,9,17,18,10,16,17,0,0,0,20,9,16,10,9,0,18,12,17,19,0,3,18,17,14,18,10,17,17,17,8,12,18,0,16,16,9,15,17,17,16,18,19,16,18,17,15,16,20,18,9,17,17,10,16,17,0,0,20,0,9,16,10,8,0,17,12,17,19,0,2,17,17,14,17,10,9,9,9,7,9,9,0,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,16,16,16,7,9,16,0,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,10,10,10,8,10,10,0,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,9,9,8,8,8,9,0,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,9,8,8,9,8,8,8,0,0,9,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,18,17,8,10,18,0,16,16,8,15,14,27,15,25,25,24,16,17,23,16,26,27,17,17,16,10,24,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,19,17,14,25,10,10,10,10,1,5,10,0,9,10,1,8,9,10,8,10,12,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,12,12,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,17,17,17,8,10,17,0,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,17,17,18,8,12,17,0,16,16,8,15,23,17,15,18,20,16,18,17,16,16,19,17,8,18,17,10,15,18,0,0,19,19,9,16,10,8,0,17,12,17,0,0,9,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,0,2,2,0,0,7,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,9,0,0,3,2,0,3,2,18,18,17,8,10,18,0,16,16,8,15,14,19,15,17,18,16,16,17,16,16,18,19,9,17,16,10,16,17,0,0,18,17,9,16,10,9,0,19,10,17,17,0,3,0,17,14,18,10,17,18,17,8,10,17,0,16,16,8,16,14,18,15,18,17,15,16,17,15,16,18,18,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,14,14,14,7,7,14,0,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,25,18,17,8,10,18,0,16,16,8,15,14,25,15,24,24,22,16,17,22,16,24,25,15,17,16,10,22,17,0,0,18,17,9,16,10,9,0,25,10,17,17,0,3,18,17,14,0,10,10,10,10,8,10,10,0,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,0,0,16,18,7,9,23,16,0,16,7,21,14,16,15,18,24,16,17,17,14,16,16,16,14,17,21,9,14,23,0,0,24,25,9,23,9,7,0,17,9,17,16,0,2,23,16,21,23,16,16,0,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,18,16,0,8,10,16,16,0,21,8,15,14,21,16,17,17,17,18,18,15,16,16,16,7,18,15,9,15,18,0,0,17,17,11,16,10,8,0,16,10,16,16,0,2,16,16,14,17,11,7,7,8,0,14,14,7,0,15,15,15,7,7,15,7,7,8,8,14,7,7,7,7,7,14,7,7,8,8,0,0,7,7,7,14,14,7,0,7,7,7,7,0,0,7,7,14,7,8,9,9,10,14,0,16,9,0,16,14,14,7,10,14,9,9,7,10,16,8,9,9,9,7,17,8,9,7,10,0,0,9,9,9,16,17,8,0,9,10,9,9,0,2,9,9,14,10,10,23,16,16,14,16,0,16,0,23,15,28,14,16,21,16,23,14,16,24,14,16,16,16,14,23,21,9,14,23,0,0,23,23,9,30,16,7,0,16,16,16,16,0,2,23,16,28,23,16,16,16,16,7,9,16,0,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,21,15,16,23,16,0,0,15,22,15,20,22,16,16,15,18,25,14,17,16,16,7,23,14,9,15,17,0,0,16,16,12,24,16,7,0,16,16,16,16,0,3,16,16,22,16,10,7,7,8,15,14,15,7,0,15,0,15,7,7,15,7,7,8,8,15,7,7,7,7,7,14,7,7,8,8,0,0,7,7,7,14,14,7,0,7,7,7,7,0,0,7,7,14,7,8,21,14,15,15,14,28,14,0,22,15,0,14,14,22,14,21,15,15,21,14,14,14,14,14,21,21,7,15,22,0,0,21,21,7,28,14,7,0,14,14,14,14,0,0,21,14,28,21,15,14,14,14,7,7,14,14,0,15,7,14,0,14,14,14,14,14,15,14,14,15,14,14,7,14,14,7,14,14,0,0,14,14,8,15,7,7,0,14,7,14,14,0,1,14,14,16,14,7,16,16,21,7,10,16,16,0,20,7,14,14,0,14,16,16,14,17,18,15,16,16,16,7,17,15,9,14,17,0,0,16,16,11,16,10,8,0,16,10,16,16,0,2,16,16,14,17,10,15,14,16,15,14,21,14,0,22,15,22,14,14,0,15,14,16,15,21,14,14,14,14,7,21,14,7,15,15,0,0,14,14,7,21,14,7,0,14,14,14,14,0,0,14,14,21,14,8,18,16,17,7,9,16,16,0,16,7,14,14,16,15,0,16,15,17,17,14,16,16,16,7,16,14,9,14,16,0,0,16,17,9,16,9,7,0,17,9,17,16,0,2,16,16,14,16,9,24,16,17,7,9,23,16,0,16,7,21,14,16,14,16,0,15,16,16,14,16,16,16,14,17,21,9,14,23,0,0,24,24,9,23,9,7,0,16,9,16,16,0,2,23,16,21,23,16,16,14,17,8,7,14,14,0,15,8,15,14,14,16,15,15,0,15,14,14,14,14,14,7,15,14,7,15,15,0,0,15,15,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,8,17,16,18,8,10,16,16,0,18,8,15,15,17,15,17,16,15,0,17,15,17,16,16,7,17,15,9,15,18,0,0,16,17,10,17,10,8,0,17,10,17,16,0,3,16,16,15,17,11,17,16,18,14,16,24,16,0,25,15,21,14,18,21,17,16,14,17,0,14,16,16,16,7,23,14,9,14,16,0,0,16,17,11,23,16,7,0,17,16,17,16,0,2,16,16,21,16,9,14,14,15,7,8,14,14,0,14,7,14,14,15,14,14,14,14,15,14,0,14,14,14,7,15,15,7,14,15,0,0,14,14,7,14,8,8,0,14,8,14,14,0,0,14,14,14,15,8,16,16,16,7,9,16,16,0,17,7,14,15,16,14,16,16,14,17,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,10,17,9,7,0,16,9,16,16,0,3,16,16,15,16,9,16,16,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,0,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,0,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,14,7,7,7,7,14,7,0,7,7,14,7,7,7,7,14,7,7,7,7,7,7,7,0,7,14,7,7,14,0,0,14,14,7,14,7,7,0,7,0,7,7,0,0,14,7,14,14,14,17,16,18,14,17,23,16,0,23,14,21,14,17,21,16,17,15,17,23,15,16,16,16,7,0,15,9,14,17,0,0,17,17,9,23,17,8,0,16,17,16,16,0,2,16,16,21,17,10,21,14,15,7,8,21,14,0,14,7,21,14,15,14,14,21,14,15,14,15,14,14,14,14,15,0,7,14,22,0,0,21,21,7,21,8,8,0,14,8,14,14,0,0,21,14,21,22,15,9,9,9,7,9,9,9,0,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,0,7,9,0,0,9,9,9,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,14,14,15,8,7,14,14,0,15,8,15,14,14,15,14,14,15,15,14,14,14,14,14,7,14,14,7,0,15,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,8,23,16,18,8,10,23,16,0,17,8,22,14,17,15,16,23,15,18,16,15,16,16,16,14,17,22,9,15,0,0,0,23,23,9,23,10,8,0,16,10,16,16,0,2,23,16,21,24,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,16,17,7,9,23,16,0,16,7,21,14,16,14,16,24,15,16,16,14,16,16,16,14,17,21,9,14,23,0,0,0,24,9,23,9,7,0,16,9,16,16,0,2,23,16,21,23,16,25,16,17,7,9,23,16,0,16,7,21,14,16,14,17,24,15,17,17,14,16,16,16,14,17,21,9,14,23,0,0,24,0,9,23,9,7,0,17,9,17,16,0,2,23,16,21,23,16,9,9,11,7,9,9,9,0,12,7,7,8,11,7,9,9,7,10,11,7,10,9,9,7,9,7,9,7,9,0,0,9,9,0,10,9,7,0,9,2,9,9,0,3,9,9,8,9,9,23,16,16,14,16,30,16,0,24,14,28,15,16,21,16,23,14,17,23,14,17,16,16,14,23,21,9,14,23,0,0,23,23,10,0,16,7,0,16,16,16,16,0,3,23,16,29,23,16,9,9,10,14,17,16,9,0,16,14,14,7,10,14,9,9,7,10,16,8,9,9,9,7,17,8,9,7,10,0,0,9,9,9,16,0,8,0,9,10,9,9,0,2,9,9,14,10,10,7,7,8,7,8,7,7,0,7,7,7,7,8,7,7,7,7,8,7,8,7,7,7,7,8,8,7,7,8,0,0,7,7,7,7,8,0,0,7,1,7,7,0,0,7,7,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,16,16,7,9,16,16,0,16,7,14,14,16,14,17,16,14,17,17,14,16,16,16,7,16,14,9,14,16,0,0,16,17,9,16,9,7,0,0,9,17,16,0,2,16,16,14,16,9,9,9,10,7,10,16,9,0,16,7,14,7,10,14,9,9,7,10,16,8,9,9,9,0,17,8,2,7,10,0,0,9,9,2,16,10,1,0,9,0,9,9,0,2,9,9,14,10,3,17,16,16,7,9,16,16,0,16,7,14,14,16,14,17,16,14,17,17,14,16,16,16,7,16,14,9,14,16,0,0,16,17,9,16,9,7,0,17,9,0,16,0,2,16,16,14,16,9,16,16,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,0,0,2,16,16,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,0,3,0,0,1,2,0,2,2,0,3,2,0,3,2,2,0,2,0,2,0,2,0,0,2,2,3,3,2,0,0,2,2,2,2,0,0,2,2,1,2,2,23,16,16,7,9,23,16,0,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,23,23,9,23,9,7,0,16,9,16,16,0,2,0,16,21,23,16,16,16,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,0,14,16,9,21,14,14,14,14,28,14,0,22,14,28,16,14,21,14,21,14,15,21,14,15,14,14,14,21,21,7,14,21,0,0,21,21,8,29,14,7,0,14,14,14,14,0,1,21,14,0,21,14,23,16,17,7,10,23,16,0,16,7,21,14,17,14,16,23,14,17,16,15,16,16,16,14,17,22,9,14,24,0,0,23,23,9,23,10,8,0,16,10,16,16,0,2,23,16,21,0,17,16,9,11,8,10,16,9,0,10,8,15,7,10,8,9,16,8,11,9,8,9,9,9,14,10,15,9,8,18,0,0,16,16,9,16,10,8,0,9,3,9,9,0,2,16,9,14,17,0,0,17,16,8,9,16,16,16,0,7,14,14,16,14,16,17,14,16,17,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,17,9,16,16,0,2,17,16,14,16,9,17,0,16,8,9,16,16,16,0,7,14,14,16,14,16,17,14,16,17,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,17,9,16,16,0,2,17,16,14,16,9,16,16,0,8,16,17,17,21,0,15,16,14,27,22,24,17,23,24,25,14,23,23,17,8,16,14,16,22,17,0,0,16,16,18,16,16,14,0,23,9,23,16,0,2,16,23,14,16,10,8,8,8,0,14,14,7,15,0,15,15,7,7,15,7,8,8,8,15,7,7,7,7,7,14,7,7,8,8,0,0,7,7,7,14,14,7,0,8,7,7,7,0,0,8,7,14,7,8,9,9,16,14,0,16,9,16,0,21,14,7,16,21,16,9,14,16,23,7,16,16,9,7,16,7,16,14,9,0,0,9,9,16,16,23,14,0,16,9,16,9,0,2,9,16,14,9,9,16,16,17,14,16,0,17,23,0,14,22,14,16,21,17,17,15,16,23,14,16,16,17,8,23,14,9,14,16,0,0,16,16,9,23,16,7,0,16,16,16,16,0,2,16,16,21,16,9,16,16,17,7,9,17,0,16,0,7,15,14,16,14,17,17,15,16,16,14,16,16,17,8,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,10,16,16,0,2,16,16,14,16,9,16,16,21,15,16,23,16,0,0,15,22,15,20,22,16,16,15,18,25,14,17,16,16,7,23,14,9,15,17,0,0,16,16,12,24,16,7,0,16,16,16,16,0,3,16,16,22,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,7,15,15,21,14,7,15,0,0,15,7,14,22,14,7,15,15,21,7,14,14,7,7,14,7,14,15,8,0,0,7,7,14,14,21,14,0,14,7,14,7,0,0,7,14,14,7,8,14,14,16,15,14,22,15,22,0,15,0,14,14,22,15,15,16,15,21,14,14,14,15,8,21,14,7,15,15,0,0,14,14,7,21,14,7,0,14,14,14,14,0,0,14,14,21,14,8,14,14,14,7,7,14,14,15,0,7,14,0,14,14,14,14,14,15,14,14,16,14,14,7,14,14,7,14,14,0,0,14,14,8,15,7,7,0,14,7,14,14,0,1,14,14,16,14,7,16,16,27,7,16,16,16,20,0,14,14,14,0,21,23,16,21,23,25,14,23,23,16,7,16,14,16,21,16,0,0,16,16,18,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,14,14,22,15,21,21,14,22,0,22,22,14,21,0,21,14,22,22,28,14,21,21,14,7,21,14,14,22,15,0,0,14,14,14,21,21,14,0,21,14,21,14,0,0,14,21,21,14,8,16,16,24,7,16,17,17,16,0,14,15,14,23,21,0,17,22,23,23,14,23,23,17,8,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,17,17,17,8,9,17,17,16,0,7,15,14,16,14,17,0,15,16,17,14,16,16,17,8,16,14,9,14,16,0,0,16,16,9,16,9,7,0,17,9,16,16,0,2,17,16,14,16,9,14,14,23,8,14,15,15,15,0,15,16,14,21,22,22,15,0,22,21,14,21,21,15,8,14,14,14,22,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,8,16,16,24,8,16,16,16,18,0,15,15,15,23,22,23,16,22,0,23,14,24,23,16,7,16,14,16,22,17,0,0,16,16,17,17,16,15,0,23,9,23,16,0,3,16,23,15,16,10,17,17,25,15,23,23,16,25,0,21,21,14,25,28,23,17,21,23,0,14,23,23,16,7,23,14,16,21,16,0,0,16,16,18,23,23,14,0,24,16,23,16,0,2,17,23,21,16,9,14,14,14,7,7,14,14,14,0,7,14,14,14,14,14,14,14,14,14,0,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,16,16,23,7,16,16,16,17,0,14,14,16,23,21,23,16,21,24,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,17,18,16,14,0,23,9,23,16,0,3,16,23,17,16,9,16,16,23,7,16,16,16,16,0,14,14,14,23,21,23,16,21,23,23,14,23,0,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,16,16,17,7,9,17,17,16,0,7,15,14,16,14,17,17,15,16,16,14,16,16,0,8,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,7,7,8,7,7,8,8,7,0,7,8,7,7,7,8,8,8,7,7,7,7,7,8,0,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,16,16,16,14,16,23,16,23,0,14,21,14,16,21,16,16,14,16,23,14,16,16,16,7,0,14,9,14,16,0,0,16,16,9,23,16,7,0,16,16,16,16,0,2,16,16,21,16,9,14,14,14,7,7,14,14,14,0,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,0,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,9,9,16,7,16,9,9,9,0,14,7,7,16,14,16,9,14,16,16,7,16,16,9,7,9,7,0,14,9,0,0,9,9,16,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,14,14,22,8,14,14,14,15,0,15,15,14,21,22,21,14,22,22,21,14,21,21,14,7,14,14,14,0,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,8,16,16,17,8,9,16,16,17,0,8,15,14,16,15,16,16,15,17,16,14,16,16,16,7,16,14,9,15,0,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,7,9,16,16,16,0,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,0,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,16,7,9,16,16,16,0,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,0,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,9,9,18,7,16,9,9,12,0,14,7,8,18,14,16,9,14,17,18,7,17,16,9,7,9,7,16,14,9,0,0,9,9,0,10,16,14,0,16,2,16,9,0,3,9,16,8,9,9,16,16,16,14,16,23,16,24,0,14,21,15,16,21,16,16,14,17,23,14,18,16,16,7,23,14,9,14,16,0,0,16,16,10,0,16,7,0,16,16,16,16,0,3,16,16,23,16,9,9,9,16,14,23,16,9,16,0,21,14,7,16,21,16,9,14,16,23,7,16,16,9,7,16,7,16,14,9,0,0,9,9,16,16,0,14,0,16,9,16,9,0,2,9,16,14,9,9,7,7,14,7,14,7,7,7,0,14,7,7,14,14,14,7,14,15,14,7,14,14,7,7,7,7,14,14,7,0,0,7,7,14,7,14,0,0,14,0,14,7,0,0,7,14,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,23,8,16,16,16,16,0,14,14,14,23,21,23,17,21,23,24,14,23,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,0,9,23,16,0,2,17,23,14,16,9,9,9,9,7,9,16,10,16,0,7,14,7,9,14,9,9,7,9,16,7,9,9,9,0,16,7,2,7,9,0,0,9,9,2,16,9,0,0,9,0,9,9,0,2,9,9,14,9,2,16,16,23,7,16,16,16,16,0,14,14,14,23,21,23,16,21,23,23,14,23,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,0,16,0,2,16,23,14,16,9,16,16,16,7,9,16,16,16,0,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,0,0,2,16,16,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,3,0,0,0,1,2,0,2,2,0,3,2,0,3,2,2,0,2,0,2,0,2,0,0,2,2,3,3,2,0,0,2,2,2,2,0,0,2,2,1,2,2,17,17,16,8,9,16,16,16,0,7,14,14,16,14,16,17,14,16,17,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,17,9,16,16,0,2,0,16,14,16,9,16,16,23,7,16,16,16,16,0,14,14,14,23,21,23,16,21,23,23,14,23,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,0,14,16,9,14,14,14,14,14,21,14,22,0,14,21,16,14,21,14,14,14,15,21,14,17,14,14,7,21,14,7,14,14,0,0,14,14,8,23,14,7,0,14,14,14,14,0,1,14,14,0,14,7,16,16,16,7,9,16,16,16,0,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,0,9,9,9,10,8,9,9,9,10,0,8,8,7,9,8,9,9,8,10,9,7,9,9,9,7,9,7,9,8,10,0,0,9,9,9,9,9,7,0,9,2,9,9,0,2,9,9,7,9,0,0,9,8,8,8,8,8,7,7,0,9,7,8,9,8,8,8,8,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,9,8,7,8,9,9,0,8,8,8,8,8,7,7,0,9,7,8,9,8,8,8,8,8,8,9,8,8,10,10,8,8,10,10,0,0,8,8,7,7,10,12,0,8,1,10,8,0,0,14,8,10,8,9,8,8,0,9,15,8,8,8,15,0,9,7,15,16,15,8,16,15,15,8,14,15,8,8,8,8,15,16,9,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,9,8,8,9,0,15,15,8,15,15,0,16,7,8,16,8,8,9,8,15,8,7,8,8,8,22,8,15,9,9,0,0,8,8,14,14,15,15,0,8,8,8,8,0,7,8,8,14,8,16,8,8,15,15,0,15,8,14,21,0,15,7,15,22,15,8,15,14,22,8,14,15,8,8,15,8,15,15,8,0,0,8,8,14,14,22,15,0,15,8,15,8,0,0,8,15,14,8,8,8,8,8,15,15,0,9,15,14,0,15,8,8,16,9,8,9,7,17,8,7,9,9,9,15,8,8,9,8,0,0,9,9,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,8,8,8,8,8,8,9,0,7,7,0,8,8,8,9,9,8,9,7,8,8,7,9,9,9,8,8,8,9,8,0,0,9,9,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,7,7,8,15,14,15,7,0,15,0,15,7,7,15,7,7,8,8,15,7,7,7,7,7,14,7,7,8,8,0,0,7,7,7,14,14,7,0,7,7,7,7,0,0,7,7,14,7,8,7,7,15,15,21,14,7,15,0,0,15,7,14,22,14,7,15,15,21,7,14,14,7,7,14,7,14,15,8,0,0,7,7,14,14,21,14,0,14,7,14,7,0,0,7,14,14,7,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,16,15,15,8,15,15,0,0,9,8,19,8,8,11,9,15,10,7,8,8,10,15,10,8,11,9,0,0,8,8,7,14,15,10,0,8,8,8,8,0,0,9,8,16,8,10,7,7,7,7,7,8,8,7,7,0,9,0,7,10,8,7,10,7,7,9,7,8,8,10,7,9,7,10,7,0,0,8,8,7,7,7,9,0,7,0,7,7,0,0,7,7,9,7,7,8,8,15,8,15,8,8,7,14,0,8,7,0,15,15,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,9,9,16,16,22,16,9,15,22,0,19,10,15,0,16,8,19,16,22,10,14,16,9,11,15,10,15,19,9,0,0,9,9,14,14,22,17,0,15,8,15,8,0,0,9,15,16,8,10,8,8,15,8,15,9,9,7,14,0,8,8,15,16,0,8,16,14,15,8,14,16,9,9,8,8,15,16,8,0,0,9,9,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,8,8,8,8,8,8,8,7,7,0,8,7,8,8,8,0,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,8,16,9,15,9,9,8,15,0,11,10,15,19,16,8,0,15,15,10,14,16,9,11,8,10,15,19,9,0,0,9,9,14,7,15,17,0,15,1,15,8,0,0,8,15,9,8,9,8,8,15,8,14,7,7,8,15,0,9,7,14,16,14,7,15,0,14,7,14,14,7,7,7,7,14,15,8,0,0,7,7,14,7,14,14,0,14,0,14,7,0,0,8,14,7,7,9,8,8,15,15,22,17,8,15,21,0,15,7,15,22,15,8,15,14,0,8,14,15,8,8,15,8,15,15,8,0,0,8,8,14,14,22,15,0,15,8,15,8,0,0,8,15,14,8,8,8,8,8,8,8,8,8,7,7,0,10,9,8,10,8,8,10,7,8,0,7,8,8,10,8,10,8,10,8,0,0,8,8,7,7,8,10,0,8,1,8,8,0,0,8,8,9,8,8,7,9,14,7,14,7,7,7,14,0,7,7,14,14,14,7,14,14,14,7,0,14,7,9,9,7,14,16,9,0,0,7,7,14,7,16,16,0,14,0,16,7,0,0,9,14,9,7,7,8,8,15,8,15,9,9,7,14,0,8,8,15,16,16,8,16,14,15,8,14,0,9,9,8,8,15,16,8,0,0,9,9,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,8,8,8,8,8,9,9,7,7,0,8,8,8,9,9,8,9,7,8,8,7,9,0,9,8,8,8,9,8,0,0,9,9,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,10,8,8,8,9,9,7,7,0,10,10,8,11,9,8,11,7,8,10,9,9,9,0,10,10,8,13,10,0,0,9,9,7,7,10,12,0,8,1,10,8,0,0,10,8,11,8,8,8,10,8,22,15,15,8,14,14,0,15,7,8,15,8,8,8,7,15,8,9,8,8,10,0,8,15,10,10,0,0,8,8,14,14,17,17,0,8,8,10,8,0,7,10,8,16,8,15,8,8,8,8,8,8,8,7,7,0,10,9,8,10,8,8,10,7,8,10,7,8,8,10,8,0,8,10,8,0,0,8,8,7,7,8,10,0,8,1,8,8,0,0,8,8,9,8,8,8,8,15,15,15,8,8,7,14,0,8,7,15,15,15,8,15,14,15,8,14,15,8,8,15,8,0,15,8,0,0,8,8,22,7,15,23,0,15,1,15,8,0,7,8,15,7,8,15,8,10,16,9,15,9,9,8,15,0,11,10,15,19,16,8,19,15,15,10,16,16,9,13,10,10,15,0,11,0,0,9,9,14,7,17,19,0,15,1,17,8,0,0,10,15,11,8,9,8,10,9,9,8,8,8,8,8,0,9,7,8,9,8,8,9,8,8,8,9,8,8,10,10,8,8,11,0,0,0,8,8,7,7,10,10,0,8,1,10,8,0,0,10,8,9,8,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,9,9,7,7,0,8,8,8,9,9,8,9,7,8,8,7,9,9,9,8,8,8,9,8,0,0,0,9,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,8,8,8,8,9,9,7,7,0,8,8,8,9,9,8,9,7,8,8,7,9,9,9,8,8,8,9,8,0,0,9,0,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,7,7,14,14,14,7,7,7,14,0,7,7,14,14,14,7,14,14,14,7,14,14,7,7,14,7,22,14,7,0,0,7,7,0,7,14,22,0,14,0,14,7,0,7,7,14,7,7,14,7,7,7,14,14,14,7,14,14,0,14,7,7,14,7,7,7,7,14,7,7,7,7,7,14,7,7,7,7,0,0,7,7,7,0,14,7,0,7,7,7,7,0,0,7,7,14,7,7,8,10,15,15,22,15,8,14,21,0,15,7,15,22,15,8,15,14,22,8,16,15,8,10,17,8,15,17,10,0,0,8,8,14,14,0,17,0,15,8,17,8,0,0,10,15,16,8,8,8,12,15,15,15,8,8,7,14,0,10,9,15,17,15,8,17,14,15,10,16,15,8,12,17,10,23,19,10,0,0,8,8,22,7,17,0,0,15,1,17,8,0,7,12,15,11,8,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,15,8,15,8,8,7,14,0,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,15,0,0,1,15,8,0,0,8,15,7,8,8,1,1,1,8,8,8,1,7,7,0,8,0,1,8,1,1,1,0,8,1,0,1,1,1,8,1,1,1,1,0,0,1,1,0,7,8,1,0,1,0,1,1,0,0,1,1,7,1,1,8,10,15,8,15,8,8,7,14,0,8,7,15,15,15,8,15,14,15,8,16,15,8,10,10,8,15,17,10,0,0,8,8,14,7,17,17,0,15,1,0,8,0,0,10,15,9,8,8,8,8,8,8,8,8,8,7,7,0,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,0,0,0,8,8,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,7,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,7,9,14,8,8,8,8,8,7,7,0,9,7,8,9,8,8,8,8,8,8,9,8,8,10,10,8,8,10,10,0,0,8,8,7,7,10,12,0,8,1,10,8,0,0,0,8,10,8,9,8,8,15,8,15,8,8,7,14,0,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,0,7,8,8,7,10,7,14,14,14,7,14,14,0,16,9,7,16,7,7,9,7,14,9,9,7,7,11,16,9,7,11,9,0,0,7,7,7,14,16,11,0,7,7,9,7,0,0,10,7,0,7,7,8,8,8,8,8,8,8,7,7,0,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,0,8,9,9,9,16,8,8,8,8,8,0,10,7,8,10,8,8,9,9,8,8,7,8,8,8,15,8,15,9,9,0,0,8,8,14,7,8,15,0,8,1,8,8,0,7,9,8,7,8,0,0,16,15,8,8,22,15,21,14,9,0,14,15,23,17,22,15,15,15,22,14,15,15,15,15,22,10,15,22,0,0,22,22,7,23,8,8,0,15,8,15,15,0,2,23,17,21,24,21,16,0,15,8,8,15,16,14,14,9,0,14,16,16,16,15,15,15,15,15,14,16,16,8,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,16,16,14,15,9,15,15,0,9,8,16,16,15,16,9,0,14,15,16,16,16,17,15,15,15,14,15,16,9,15,15,8,16,16,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,9,8,8,9,0,16,15,8,15,15,16,0,7,8,16,8,9,9,8,15,8,7,8,8,8,16,8,8,9,9,0,0,8,8,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,9,8,8,8,16,0,15,8,14,14,15,0,7,8,15,8,9,8,7,15,8,7,8,8,8,16,8,8,8,8,0,0,8,8,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,8,22,15,16,15,15,0,16,28,22,15,0,14,15,22,16,23,16,14,22,15,14,15,16,16,22,22,8,15,22,0,0,22,22,7,28,15,8,0,15,15,15,15,0,0,22,15,28,22,15,15,16,16,8,8,16,0,14,15,8,0,14,16,15,17,16,16,14,15,15,14,16,17,9,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,21,14,15,15,14,28,14,0,22,15,0,14,14,22,14,21,15,15,21,14,14,14,14,14,21,21,7,15,22,0,0,21,21,7,28,14,7,0,14,14,14,14,0,0,21,14,28,21,15,14,14,16,15,14,22,15,22,0,15,0,14,14,22,15,15,16,15,21,14,14,14,15,8,21,14,7,15,15,0,0,14,14,7,21,14,7,0,14,14,14,14,0,0,14,14,21,14,8,9,9,9,16,15,15,8,15,15,0,0,9,8,19,8,8,11,9,15,10,7,8,8,10,15,10,8,11,9,0,0,8,8,7,14,15,10,0,8,8,8,8,0,0,9,8,16,8,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,7,7,14,14,14,14,9,0,0,14,16,14,14,16,14,14,16,14,14,14,9,14,16,7,16,14,0,0,14,14,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,15,16,15,8,8,15,16,14,14,8,0,14,0,15,16,15,15,14,15,15,14,16,16,8,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,23,16,16,16,15,22,15,22,22,19,0,16,15,0,17,15,18,16,22,24,14,15,15,10,22,17,10,18,16,0,0,15,15,7,23,15,10,0,15,15,15,15,0,2,16,17,23,17,15,17,16,16,8,8,16,17,14,15,8,0,14,16,17,0,16,16,14,15,17,14,16,17,9,15,16,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,15,18,14,17,10,22,15,16,9,9,23,16,21,15,8,0,14,15,15,16,0,16,14,15,15,14,15,16,16,16,22,8,15,22,0,0,22,22,7,21,8,8,0,15,8,15,15,0,0,22,15,21,22,15,15,15,17,9,8,16,16,15,16,11,0,16,15,18,16,16,0,15,15,17,14,15,16,11,15,17,8,18,16,0,0,15,15,7,14,8,10,0,15,8,15,15,0,0,15,15,16,15,9,15,15,15,8,7,14,14,15,15,9,0,14,14,16,14,14,15,0,14,14,14,14,14,7,14,14,7,15,15,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,15,14,14,14,9,15,15,15,15,15,22,15,21,21,15,0,14,15,22,15,15,15,14,0,15,14,15,15,8,22,15,8,15,15,0,0,15,15,7,21,15,8,0,15,15,15,15,0,0,15,15,21,15,8,22,15,15,8,8,15,15,14,14,10,0,16,15,24,17,15,17,14,15,0,14,15,15,10,15,17,10,17,15,0,0,15,15,7,16,8,10,0,15,8,15,15,0,2,15,17,16,17,13,14,14,14,7,7,14,14,14,14,7,0,14,14,14,14,14,14,14,14,14,0,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,15,16,15,8,8,15,16,14,14,8,0,14,16,15,16,15,15,14,15,15,14,0,16,8,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,15,16,16,8,8,16,17,14,15,8,0,14,16,15,17,16,16,14,15,15,14,16,0,9,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,15,8,9,8,8,16,9,14,8,10,0,9,8,10,9,16,11,7,8,10,7,8,9,0,8,17,8,10,15,0,0,15,15,7,14,8,10,0,8,1,8,8,0,0,15,8,16,15,15,15,15,15,16,16,22,15,21,21,15,0,14,15,22,15,16,15,14,22,15,14,15,15,8,0,15,8,15,15,0,0,15,15,7,21,15,8,0,15,15,15,15,0,0,15,15,21,15,8,22,16,15,8,8,22,16,21,14,10,0,16,16,17,16,22,17,14,15,17,14,16,16,17,15,0,8,17,22,0,0,22,22,7,21,8,10,0,15,8,15,15,0,0,22,16,23,22,15,10,8,8,8,8,8,8,7,7,8,0,7,8,10,10,8,8,7,8,10,7,8,8,8,8,8,0,8,8,0,0,8,8,7,9,8,8,0,8,1,8,8,0,2,8,10,7,10,10,15,15,16,9,8,15,15,15,15,11,0,16,15,18,15,15,18,15,15,17,14,15,15,10,15,17,8,0,16,0,0,15,15,7,14,8,10,0,15,8,15,15,0,0,15,15,16,15,9,22,15,16,9,8,22,15,22,15,9,0,14,15,16,15,22,16,15,15,15,14,15,15,15,15,22,8,16,0,0,0,22,22,7,21,8,8,0,15,8,15,15,0,0,22,15,21,22,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,15,15,8,8,22,15,21,14,8,0,14,15,15,15,22,15,14,15,15,14,15,15,15,15,22,8,15,22,0,0,0,22,7,21,8,8,0,15,8,15,15,0,0,22,15,21,22,15,22,15,15,8,8,22,15,21,14,8,0,14,15,15,15,22,15,14,15,15,14,15,15,15,15,22,8,15,22,0,0,22,0,7,21,8,8,0,15,8,15,15,0,0,22,15,21,22,15,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,0,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,23,14,14,14,14,28,14,28,21,14,0,14,14,23,16,21,14,14,21,16,14,14,14,14,21,21,9,14,21,0,0,21,21,7,0,14,7,0,14,14,14,14,0,2,21,16,28,23,16,8,8,8,15,15,15,8,14,14,15,0,7,8,15,8,8,8,7,15,8,7,8,8,8,15,8,8,8,8,0,0,8,8,7,14,0,8,0,8,8,8,8,0,0,8,8,14,8,8,8,8,8,8,8,8,8,7,7,10,0,9,8,10,8,8,10,7,8,10,7,8,8,10,8,10,8,10,8,0,0,8,8,7,7,8,0,0,8,1,8,8,0,0,8,8,9,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,8,8,15,15,14,14,8,0,14,15,15,15,15,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,0,8,15,15,0,0,15,15,14,15,8,8,8,8,8,8,15,8,14,14,8,0,7,8,15,8,8,8,7,15,8,7,8,8,1,15,8,1,8,8,0,0,8,8,0,14,8,1,0,8,0,8,8,0,0,8,8,14,8,1,15,15,15,8,8,15,15,14,14,8,0,14,15,15,15,15,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,0,15,0,0,15,15,14,15,8,15,15,15,8,8,15,15,14,14,8,0,14,15,15,15,15,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,23,16,15,8,8,22,15,21,14,9,0,14,15,16,15,22,15,15,15,15,14,15,15,15,15,22,8,15,22,0,0,22,22,7,21,8,8,0,15,8,15,15,0,0,0,15,21,22,16,17,16,15,8,8,15,16,14,14,8,0,14,16,17,18,15,15,14,15,17,14,16,16,8,15,16,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,15,0,14,17,10,21,14,14,14,14,28,14,28,21,16,0,16,14,23,14,21,16,14,21,16,14,14,14,16,21,23,7,16,21,0,0,21,21,7,28,14,9,0,14,14,14,14,0,0,21,14,0,21,14,24,15,15,8,8,22,15,21,14,8,0,14,15,17,17,22,15,14,15,17,14,15,15,15,15,22,10,15,22,0,0,22,22,7,23,8,8,0,15,8,15,15,0,2,22,17,21,0,17,21,9,9,9,8,15,8,15,8,10,0,7,8,15,10,15,9,9,8,13,7,8,8,15,8,15,10,9,16,0,0,15,15,7,16,8,8,0,8,1,8,8,0,2,16,10,14,17,0,0,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,14,0,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,14,14,0,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,7,7,7,0,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,7,7,7,7,0,7,9,7,7,7,7,0,7,7,7,9,7,9,7,7,7,9,7,7,7,9,7,7,7,0,0,9,9,7,7,7,7,0,7,2,7,9,0,0,7,7,7,7,7,14,14,14,7,7,0,15,14,14,8,14,0,14,15,15,14,15,14,14,14,14,15,15,8,14,14,7,15,14,0,0,15,15,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,14,14,14,7,9,15,0,14,14,8,14,0,14,15,15,16,15,16,14,14,14,17,15,8,14,16,7,15,14,0,0,17,17,7,14,7,7,0,14,9,14,23,0,7,14,14,14,14,7,14,14,14,7,7,14,14,0,15,7,14,0,14,14,14,14,14,15,14,14,15,14,14,7,14,14,7,14,14,0,0,14,14,8,15,7,7,0,14,7,14,14,0,1,14,14,16,14,7,14,14,14,7,7,14,14,15,0,7,14,0,14,14,14,14,14,15,14,14,16,14,14,7,14,14,7,14,14,0,0,14,14,8,15,7,7,0,14,7,14,14,0,1,14,14,16,14,7,7,7,7,7,7,8,8,7,7,0,9,0,7,10,8,7,10,7,7,9,7,8,8,10,7,9,7,10,7,0,0,8,8,7,7,7,9,0,7,0,7,7,0,0,7,7,9,7,7,14,14,14,7,7,14,14,14,14,9,0,0,14,16,14,14,16,14,14,16,14,14,14,9,14,16,7,16,14,0,0,14,14,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,7,7,14,14,14,14,7,14,0,0,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,14,14,14,7,7,15,15,14,14,10,16,0,14,0,15,14,17,14,14,16,14,15,15,10,14,16,7,17,14,0,0,15,15,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,14,14,14,7,7,15,15,14,14,8,14,0,14,15,0,14,15,14,14,14,14,15,15,8,14,14,7,15,14,0,0,15,15,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,14,14,14,7,9,14,16,14,14,7,14,0,14,14,14,0,14,16,14,14,14,16,14,7,14,16,7,14,14,0,0,16,16,7,14,7,7,0,14,9,14,16,0,0,14,14,14,14,7,14,14,14,7,7,15,15,14,14,10,16,0,14,17,15,14,0,14,14,16,14,15,15,10,14,16,7,17,14,0,0,15,15,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,14,14,14,7,9,14,16,15,15,7,14,0,14,14,14,16,14,0,14,14,15,16,14,7,14,16,7,14,14,0,0,16,16,8,15,7,7,0,14,9,14,16,0,1,14,14,15,14,7,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,0,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,14,14,14,7,7,14,14,14,14,9,16,0,14,16,14,14,16,14,14,0,14,14,14,9,14,16,7,16,14,0,0,14,14,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,14,14,14,7,7,14,14,15,16,7,14,0,14,14,14,14,14,15,14,14,0,14,14,7,14,14,7,14,14,0,0,14,14,8,15,7,7,0,14,7,14,14,0,1,14,14,16,14,7,14,14,14,7,9,15,17,14,14,8,14,0,14,15,15,16,15,16,14,14,14,0,15,8,14,16,7,15,14,0,0,17,17,7,14,7,7,0,14,9,14,16,0,0,14,14,14,14,7,14,14,14,7,7,15,15,14,14,8,14,0,14,15,15,14,15,14,14,14,14,15,0,8,14,14,7,15,14,0,0,15,15,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,7,7,7,7,7,8,8,7,7,10,9,0,7,10,8,7,10,7,7,9,7,8,8,0,7,9,7,10,7,0,0,8,8,7,7,7,9,0,7,0,7,7,0,0,7,7,9,7,7,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,0,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,14,14,14,7,9,14,16,14,14,9,16,0,14,16,14,16,16,16,14,16,14,16,14,9,14,0,7,16,14,0,0,16,16,7,14,7,9,0,14,9,14,16,0,0,14,14,16,14,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,14,14,14,7,7,15,15,14,14,10,16,0,14,17,15,14,17,14,14,16,14,15,15,10,14,16,7,0,14,0,0,15,15,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,0,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,7,9,15,17,14,14,8,14,0,14,15,15,16,15,16,14,14,14,17,15,8,14,16,7,15,14,0,0,0,17,7,14,7,7,0,14,9,14,16,0,0,14,14,14,14,7,14,14,14,7,9,15,17,14,14,8,14,0,14,15,15,16,15,16,14,14,14,17,15,8,14,16,7,15,14,0,0,17,0,7,14,7,7,0,14,9,14,16,0,0,14,14,14,14,7,7,7,7,7,7,7,7,8,8,7,7,0,7,7,7,7,7,8,7,7,8,7,7,7,7,7,7,7,7,0,0,7,7,0,8,7,7,0,7,0,7,7,0,1,7,7,8,7,7,14,14,14,7,7,14,14,15,15,7,14,0,14,14,14,14,14,15,14,14,15,14,14,7,14,14,7,14,14,0,0,14,14,8,0,7,7,0,14,7,14,14,0,1,14,14,15,14,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,7,7,0,7,0,7,0,7,7,0,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,9,9,0,7,9,7,7,9,7,7,9,7,7,7,9,7,9,7,9,7,0,0,7,7,7,7,7,0,0,7,0,7,7,0,0,7,7,9,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,0,7,14,14,0,0,14,14,14,14,7,7,7,7,0,2,7,9,7,7,0,7,0,7,7,7,9,7,9,7,7,7,9,7,0,7,9,0,7,7,0,0,9,9,0,7,0,0,0,7,0,7,9,0,0,7,7,7,7,0,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,0,14,0,0,14,14,14,14,7,14,14,14,7,9,14,23,14,14,7,14,0,14,14,14,16,14,16,14,14,14,16,14,7,14,16,7,14,14,0,0,16,16,7,14,7,7,0,14,9,14,0,0,7,14,14,14,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,7,0,0,0,0,1,0,0,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,0,14,14,14,7,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,0,14,14,7,14,14,14,7,7,14,14,16,16,9,16,0,14,16,14,14,16,15,14,16,16,14,14,9,14,16,7,16,14,0,0,14,14,8,15,7,9,0,14,7,14,14,0,1,14,14,0,14,7,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,0,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,0,0,18,17,8,10,18,26,16,16,8,15,14,0,15,25,24,23,16,17,22,16,25,26,16,17,16,10,23,17,0,0,18,17,9,16,10,9,0,26,10,17,17,0,3,18,17,14,25,10,18,0,17,8,10,18,19,16,16,8,16,14,0,15,18,17,15,16,17,15,16,18,19,8,17,17,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,18,14,18,10,17,17,0,8,18,17,17,21,27,15,15,14,0,22,24,17,22,24,26,16,23,24,17,8,18,17,17,23,18,0,0,17,17,18,16,18,17,0,24,11,24,17,0,2,17,24,14,19,11,8,8,8,0,8,8,8,7,7,8,8,7,0,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,10,10,18,8,0,10,10,10,16,15,8,7,0,15,17,10,15,17,17,9,16,17,10,8,11,9,17,15,11,0,0,10,10,16,9,18,16,0,17,4,17,10,0,2,10,17,7,11,11,18,18,17,8,10,0,18,16,16,8,15,14,0,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,26,19,17,8,10,18,0,16,16,8,16,14,0,15,26,25,24,16,17,23,16,27,28,17,17,17,10,24,17,0,0,18,17,9,16,10,9,0,27,10,17,17,0,3,19,18,14,25,10,16,16,21,7,10,16,16,0,20,7,14,14,0,14,16,16,14,17,18,15,16,16,16,7,17,15,9,14,17,0,0,16,16,11,16,10,8,0,16,10,16,16,0,2,16,16,14,17,10,16,16,27,7,16,16,16,20,0,14,14,14,0,21,23,16,21,23,25,14,23,23,16,7,16,14,16,21,16,0,0,16,16,18,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,8,8,15,8,15,8,8,7,14,0,8,7,0,15,15,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,15,16,15,8,8,15,16,14,14,8,0,14,0,15,16,15,15,14,15,15,14,16,16,8,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,14,14,14,7,7,14,14,14,14,7,14,0,0,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,22,8,15,15,15,14,21,15,15,14,0,0,22,15,22,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,8,25,18,24,8,17,17,26,16,23,15,16,14,0,22,0,24,30,23,24,22,23,33,26,16,17,16,17,30,17,0,0,17,17,16,16,17,15,0,32,10,24,17,0,2,17,25,14,24,10,24,17,17,8,10,17,25,16,16,8,15,14,0,15,24,0,23,16,17,23,16,25,25,16,17,15,10,23,17,0,0,17,17,9,16,10,8,0,25,10,17,17,0,2,18,17,14,24,10,23,15,22,8,15,15,24,14,21,15,15,14,0,22,30,23,0,21,22,23,21,31,24,17,15,15,15,31,15,0,0,15,15,14,14,15,15,0,31,8,22,15,0,0,16,22,14,22,8,16,16,24,7,17,16,16,17,23,14,14,14,0,21,23,16,21,0,23,15,23,23,16,7,17,15,16,21,17,0,0,16,16,16,16,17,15,0,23,10,23,16,0,2,16,23,14,17,10,17,17,26,8,17,17,17,18,25,15,15,14,0,22,24,17,22,23,0,15,23,24,17,8,17,15,17,22,17,0,0,17,17,18,16,17,15,0,24,10,24,17,0,2,17,24,14,17,10,22,15,16,8,9,15,23,15,14,8,15,14,0,15,22,23,23,15,15,0,14,23,23,16,16,16,8,23,16,0,0,15,15,7,14,9,9,0,23,9,15,15,0,0,16,15,14,23,9,16,16,23,7,16,16,16,16,23,14,14,14,0,21,23,16,21,23,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,11,25,18,24,8,17,17,27,16,23,15,16,14,0,22,33,25,31,23,24,23,23,0,27,17,17,16,17,31,17,0,0,17,17,16,16,17,15,0,33,10,24,17,0,2,18,25,14,24,10,26,19,17,8,10,18,28,16,16,8,16,14,0,15,26,25,24,16,17,23,16,27,0,17,17,17,10,24,17,0,0,18,17,9,16,10,9,0,27,10,17,17,0,3,19,18,14,25,10,16,8,8,8,8,8,17,7,7,8,8,7,0,8,16,16,17,7,8,16,7,17,17,0,8,8,8,17,8,0,0,8,8,7,7,8,8,0,17,1,8,8,0,0,9,8,7,15,8,17,17,18,8,11,17,17,17,16,8,15,14,0,15,17,17,15,17,17,16,16,17,17,8,0,16,10,15,18,0,0,17,17,9,16,11,9,0,17,11,17,17,0,2,17,17,14,18,11,16,17,17,8,9,16,17,15,14,8,16,14,0,15,16,15,15,15,15,16,14,16,17,8,16,0,8,16,16,0,0,16,15,7,14,9,11,0,16,9,15,15,0,1,16,16,16,18,9,10,10,17,8,17,10,10,9,16,15,8,7,0,15,17,10,15,16,17,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,23,15,23,8,15,15,24,14,21,15,15,14,0,22,30,23,31,21,22,23,21,31,24,17,15,16,15,0,15,0,0,15,15,14,14,15,16,0,31,8,22,15,0,0,16,22,14,23,8,17,17,18,8,11,17,17,17,16,8,15,14,0,15,17,17,15,17,17,16,16,17,17,8,18,16,10,15,0,0,0,17,17,9,16,11,9,0,17,11,17,17,0,2,17,17,14,18,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,17,8,10,18,18,16,16,8,15,14,0,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,0,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,17,17,17,8,10,17,17,16,16,8,15,14,0,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,9,9,18,7,16,9,9,11,18,14,7,7,0,14,16,9,14,16,18,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,16,16,16,7,9,16,16,16,16,7,14,14,0,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,10,10,18,8,18,10,10,10,16,15,8,7,0,15,17,10,15,17,17,9,16,17,10,8,11,9,17,15,11,0,0,10,10,16,9,0,16,0,17,4,17,10,0,2,10,17,7,11,11,9,9,17,8,16,9,9,8,14,15,8,7,0,15,15,8,15,15,15,9,14,15,9,8,9,11,15,16,9,0,0,9,8,14,7,16,0,0,16,2,15,8,0,1,9,15,7,11,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,18,24,8,17,18,27,16,23,15,15,14,0,22,32,25,31,23,24,23,23,33,27,17,17,16,17,31,17,0,0,18,17,16,16,17,16,0,0,10,24,17,0,3,19,24,14,25,10,10,10,11,1,4,10,10,10,9,1,8,7,0,8,10,10,8,10,10,9,9,10,10,1,11,9,3,8,11,0,0,10,10,2,9,4,2,0,10,0,10,10,0,2,10,10,7,11,4,17,17,24,8,17,17,17,16,23,15,15,14,0,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,0,17,0,2,17,24,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,0,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,3,2,2,0,0,0,0,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,18,18,17,8,10,18,19,16,16,8,15,14,0,15,17,18,16,16,17,16,16,18,19,9,17,16,10,16,17,0,0,18,17,9,16,10,9,0,19,10,17,17,0,3,0,17,14,18,10,17,18,24,8,17,17,18,16,23,15,16,14,0,22,25,17,22,23,24,15,23,25,18,8,17,16,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,0,14,17,10,14,14,14,7,7,14,14,14,14,7,14,14,0,14,14,14,14,14,14,14,14,14,14,7,14,16,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,25,18,19,8,11,18,25,17,16,8,15,14,0,15,24,24,22,17,17,23,16,24,25,15,18,18,10,23,18,0,0,18,17,9,16,11,11,0,25,11,17,17,0,3,18,17,14,0,11,10,10,11,8,11,10,10,10,9,8,8,7,0,8,10,10,8,10,10,9,11,10,10,8,11,9,10,8,11,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,11,0,0,16,16,8,8,15,15,15,14,9,23,14,15,0,18,15,16,15,15,22,14,15,15,8,15,15,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,16,17,14,17,14,16,0,15,8,8,15,15,14,14,9,16,14,15,0,15,15,15,15,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,16,15,14,15,9,16,15,0,9,15,15,15,16,22,16,16,14,22,0,23,15,24,22,22,15,21,22,15,8,15,15,15,23,16,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,9,8,8,9,0,15,15,8,15,15,16,16,7,8,0,8,8,9,8,15,8,7,8,8,8,15,8,8,9,9,0,0,8,8,7,14,15,8,0,8,8,8,8,0,0,8,8,14,8,9,8,8,15,15,0,15,8,14,21,22,15,7,15,0,15,8,15,14,22,8,14,15,8,8,15,8,15,15,8,0,0,8,8,14,14,22,15,0,15,8,15,8,0,0,8,15,14,8,8,15,15,15,15,15,0,16,21,21,16,22,15,15,0,16,15,16,14,22,15,14,16,16,9,22,15,8,16,15,0,0,16,16,7,21,15,8,0,15,15,15,15,0,0,15,15,21,15,8,15,15,15,8,8,16,0,14,14,9,15,15,15,0,16,15,16,14,15,15,14,16,16,9,15,15,8,16,15,0,0,16,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,15,14,16,15,14,21,14,0,22,15,22,14,14,0,15,14,16,15,21,14,14,14,14,7,21,14,7,15,15,0,0,14,14,7,21,14,7,0,14,14,14,14,0,0,14,14,21,14,8,14,14,22,15,21,21,14,22,0,22,22,14,21,0,21,14,22,22,28,14,21,21,14,7,21,14,14,22,15,0,0,14,14,14,21,21,14,0,21,14,21,14,0,0,14,21,21,14,8,9,9,16,16,22,16,9,15,22,0,19,10,15,0,16,8,19,16,22,10,14,16,9,11,15,10,15,19,9,0,0,9,9,14,14,22,17,0,15,8,15,8,0,0,9,15,16,8,10,23,16,16,16,15,22,15,22,22,19,0,16,15,0,17,15,18,16,22,24,14,15,15,10,22,17,10,18,16,0,0,15,15,7,23,15,10,0,15,15,15,15,0,2,16,17,23,17,15,14,14,14,7,7,15,15,14,14,10,16,0,14,0,15,14,17,14,14,16,14,15,15,10,14,16,7,17,14,0,0,15,15,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,15,15,22,8,15,15,15,14,21,15,15,14,0,0,22,15,22,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,15,23,8,15,16,16,15,21,16,17,15,22,0,0,15,24,21,22,17,21,23,16,9,15,15,17,23,15,0,0,16,16,14,16,15,15,0,22,8,22,15,0,2,15,24,14,17,10,15,15,15,8,8,15,15,14,14,8,15,14,15,0,15,0,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,16,15,24,9,15,16,16,16,22,19,18,17,22,0,24,15,0,22,22,17,21,23,16,11,15,17,15,26,16,0,0,16,16,14,14,15,17,0,22,8,22,15,0,0,15,22,16,15,9,15,15,22,8,14,14,14,15,22,16,16,14,21,0,21,14,22,0,21,14,21,21,14,7,14,14,14,22,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,15,21,14,14,9,15,15,22,15,22,22,15,21,28,22,22,14,22,0,22,15,22,21,0,15,21,22,15,8,22,15,15,22,15,0,0,15,15,14,21,22,15,0,22,15,22,15,0,0,15,22,21,15,8,22,15,15,8,8,15,15,14,14,10,24,16,15,0,17,15,17,14,15,0,14,15,15,10,15,17,10,17,15,0,0,15,15,7,16,8,10,0,15,8,15,15,0,2,15,17,16,17,13,14,14,21,7,14,14,14,14,21,14,14,14,21,0,21,14,21,21,21,14,0,21,14,7,14,14,14,21,14,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,7,15,15,22,8,15,16,16,14,21,16,15,15,22,0,23,15,23,21,22,15,21,0,16,9,15,15,15,23,15,0,0,16,16,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,8,15,15,15,8,8,16,16,14,14,9,15,15,15,0,16,15,16,14,15,15,14,16,0,9,15,15,8,16,15,0,0,16,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,8,8,8,8,8,9,9,7,7,11,10,10,8,0,9,8,11,7,8,10,7,9,9,0,8,10,8,11,8,0,0,9,9,7,7,8,10,0,8,1,8,8,0,0,8,8,9,8,8,15,15,15,15,15,22,15,21,21,15,22,14,15,0,15,15,15,14,22,15,14,15,15,8,0,15,8,15,15,0,0,15,15,7,21,15,8,0,15,15,15,15,0,0,15,15,21,15,8,15,15,15,8,8,15,15,14,14,10,17,16,15,0,15,15,17,14,15,17,14,15,15,10,15,0,8,17,15,0,0,15,15,7,14,8,10,0,15,8,15,15,0,0,15,15,16,15,8,10,8,15,8,15,8,8,7,14,15,10,7,15,0,17,8,15,14,15,10,14,15,8,8,8,8,0,15,8,0,0,8,8,14,9,15,15,0,15,1,15,8,0,2,8,17,7,10,10,15,15,23,9,15,16,16,15,22,19,18,17,22,0,23,15,26,22,22,17,21,23,16,11,15,17,15,0,16,0,0,16,16,14,14,15,17,0,22,8,22,15,0,0,15,22,16,15,9,15,15,16,9,8,15,15,15,15,9,16,14,15,0,15,15,16,15,15,15,14,15,15,8,15,15,8,16,0,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,8,8,16,16,14,14,9,15,15,15,0,16,15,16,14,15,15,14,16,16,9,15,15,8,16,15,0,0,0,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,15,15,15,8,8,16,16,14,14,9,15,15,15,0,16,15,16,14,15,15,14,16,16,9,15,15,8,16,15,0,0,16,0,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,7,7,14,7,14,7,7,7,14,14,7,7,14,0,14,7,14,14,14,7,14,14,7,7,7,7,14,14,7,0,0,7,7,0,7,14,14,0,14,0,14,7,0,0,7,14,7,7,7,16,14,14,14,14,21,14,21,21,14,23,14,14,0,16,14,14,14,21,16,14,14,14,7,21,14,9,14,14,0,0,14,14,7,0,14,7,0,14,14,14,14,0,2,14,16,21,16,9,8,8,15,15,22,15,8,14,21,22,15,7,15,0,15,8,15,14,22,8,14,15,8,8,15,8,15,15,8,0,0,8,8,14,14,0,15,0,15,8,15,8,0,0,8,15,14,8,8,8,8,15,8,15,8,8,7,14,17,10,9,15,0,15,8,17,14,15,10,14,15,8,10,8,10,15,17,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,9,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,22,8,15,15,15,14,21,15,15,14,22,0,22,15,22,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,0,8,22,15,0,0,15,22,14,15,8,8,8,8,8,8,15,8,14,14,8,15,7,8,0,8,8,8,7,15,8,7,8,8,1,15,8,1,8,8,0,0,8,8,0,14,8,1,0,8,0,8,8,0,0,8,8,14,8,1,15,15,22,8,15,15,15,14,21,15,15,14,22,0,22,15,22,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,0,15,0,0,15,22,14,15,8,15,15,15,8,8,15,15,14,14,8,15,14,15,0,15,15,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,16,16,15,8,8,15,15,14,14,9,16,14,15,0,15,15,15,15,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,0,15,14,15,9,17,15,22,8,15,15,15,14,21,15,17,14,22,0,24,15,22,21,22,17,21,22,15,8,15,15,17,22,15,0,0,15,15,14,16,15,15,0,22,8,22,15,0,2,15,0,14,17,10,14,14,14,14,14,21,14,21,21,16,23,16,14,0,14,14,16,14,21,16,14,14,14,9,21,16,7,16,14,0,0,14,14,7,21,14,9,0,14,14,14,14,0,0,14,14,0,14,7,17,15,15,8,8,15,15,14,14,8,17,14,15,0,17,15,15,14,15,17,14,15,15,8,15,15,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,15,17,14,0,10,14,9,9,9,8,8,8,8,8,10,15,7,8,0,10,8,9,9,8,13,7,8,8,8,8,8,10,9,9,0,0,8,8,7,9,8,8,0,8,1,8,8,0,2,9,10,7,10,0,0,17,18,8,10,17,25,18,16,8,17,14,25,18,0,24,24,17,18,24,16,25,25,16,17,15,12,23,17,0,0,17,18,9,18,10,8,0,26,10,18,17,0,4,17,19,14,26,12,17,0,17,8,10,17,18,16,16,8,16,14,18,15,0,17,15,16,17,15,16,18,18,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,18,14,17,10,18,17,0,8,17,18,19,17,24,15,16,14,24,23,0,19,25,23,24,16,23,24,18,9,18,15,17,22,18,0,0,17,17,16,16,17,15,0,24,10,24,18,0,2,17,24,14,17,10,8,8,8,0,8,8,8,7,7,8,8,7,8,8,0,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,10,10,17,8,0,10,10,9,16,15,8,7,17,15,0,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,17,17,18,8,10,0,19,16,17,9,16,15,17,16,0,18,17,16,17,15,16,18,19,10,17,15,10,16,17,0,0,18,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,25,18,19,8,10,19,0,16,17,9,17,15,26,16,0,26,26,16,17,23,16,27,28,18,18,16,10,24,18,0,0,18,18,9,16,10,8,0,25,10,17,18,0,2,17,18,14,24,10,18,16,17,7,9,16,16,0,16,7,14,14,16,15,0,16,15,17,17,14,16,16,16,7,16,14,9,14,16,0,0,16,17,9,16,9,7,0,17,9,17,16,0,2,16,16,14,16,9,16,16,24,7,16,17,17,16,0,14,15,14,23,21,0,17,22,23,23,14,23,23,17,8,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,8,8,15,8,15,9,9,7,14,0,8,8,15,16,0,8,16,14,15,8,14,16,9,9,8,8,15,16,8,0,0,9,9,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,17,16,16,8,8,16,17,14,15,8,0,14,16,17,0,16,16,14,15,17,14,16,17,9,15,16,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,15,18,14,17,10,14,14,14,7,7,15,15,14,14,8,14,0,14,15,0,14,15,14,14,14,14,15,15,8,14,14,7,15,14,0,0,15,15,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,25,18,24,8,17,17,26,16,23,15,16,14,0,22,0,24,30,23,24,22,23,33,26,16,17,16,17,30,17,0,0,17,17,16,16,17,15,0,32,10,24,17,0,2,17,25,14,24,10,18,15,23,8,15,16,16,15,21,16,17,15,22,0,0,15,24,21,22,17,21,23,16,9,15,15,17,23,15,0,0,16,16,14,16,15,15,0,22,8,22,15,0,2,15,24,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,17,19,8,10,18,26,16,17,8,16,14,24,15,0,0,24,16,17,23,16,24,25,16,18,15,10,22,18,0,0,17,17,9,16,10,8,0,24,10,17,18,0,2,17,17,14,24,10,24,15,25,8,15,17,26,15,22,16,16,15,30,24,0,24,0,21,22,23,21,31,25,18,16,15,15,31,16,0,0,16,16,14,14,15,15,0,30,8,22,16,0,0,15,22,14,22,8,17,16,23,7,16,16,16,17,23,14,14,14,23,21,0,16,21,0,24,14,23,23,16,7,16,14,16,21,16,0,0,16,17,16,16,16,14,0,24,9,24,16,0,2,16,23,14,16,9,18,17,24,8,17,17,17,17,23,15,15,14,24,22,0,17,22,24,0,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,25,10,25,17,0,2,17,24,14,17,10,24,15,16,8,8,15,23,14,14,8,17,14,22,17,0,23,23,14,15,0,14,22,22,15,16,15,10,22,16,0,0,15,15,7,16,8,8,0,22,8,15,16,0,2,15,17,14,24,10,16,16,23,7,16,16,16,16,23,14,14,14,23,21,0,16,21,23,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,25,18,24,8,17,18,27,16,23,16,16,15,33,23,0,24,31,23,24,22,23,0,27,17,17,16,17,31,17,0,0,18,18,16,16,17,15,0,32,10,24,17,0,2,17,25,14,24,10,25,18,18,8,10,19,28,16,17,9,17,15,26,16,0,25,25,16,17,22,16,27,0,18,17,16,10,24,17,0,0,18,18,9,16,10,8,0,25,10,17,17,0,2,17,18,14,24,10,16,8,9,8,8,10,18,7,8,9,9,8,16,9,0,16,18,7,8,15,7,17,18,0,8,8,8,17,8,0,0,9,9,7,7,8,8,0,16,1,8,8,0,0,8,8,7,15,8,17,17,18,8,10,17,18,16,16,8,15,14,17,15,0,18,16,16,17,16,16,17,17,8,0,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,15,16,15,8,8,15,16,14,14,8,16,14,16,15,0,15,15,14,15,15,14,16,16,8,15,0,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,12,10,17,8,17,10,10,9,16,15,10,7,17,17,0,10,15,16,17,10,16,17,10,8,10,8,0,15,10,0,0,10,10,16,11,17,15,0,17,3,17,10,0,4,10,19,7,12,12,23,15,22,8,15,16,24,14,21,16,15,15,30,23,0,22,31,21,22,22,21,31,24,17,15,15,15,0,15,0,0,16,16,14,14,15,15,0,30,8,22,15,0,0,15,22,14,22,8,17,17,18,8,10,17,18,16,16,8,15,14,17,15,0,18,16,16,17,16,16,17,17,8,18,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,10,18,18,16,16,9,15,15,17,16,0,17,16,16,17,15,16,18,18,9,17,15,10,16,17,0,0,0,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,18,17,17,8,10,18,18,17,16,9,15,15,17,16,0,17,16,17,18,15,16,18,18,9,17,15,10,16,17,0,0,18,0,9,16,10,8,0,18,10,18,17,0,2,17,17,14,17,10,9,9,16,7,16,9,9,9,16,14,7,7,16,14,0,9,14,16,16,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,18,16,16,7,9,16,16,16,16,7,16,14,16,16,0,16,14,16,16,16,16,16,16,7,16,14,11,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,4,16,18,14,18,11,10,10,17,8,17,10,10,9,16,15,8,7,17,15,0,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,0,15,0,17,3,17,10,0,2,10,17,7,10,10,8,8,15,8,15,8,8,7,14,15,8,7,15,15,0,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,17,24,8,17,17,25,17,23,15,15,14,32,22,0,24,30,24,25,22,23,32,25,16,17,15,17,30,17,0,0,17,18,16,16,17,15,0,0,10,25,17,0,2,17,24,14,24,10,10,10,10,1,3,10,10,9,9,1,8,7,10,8,0,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,10,7,10,3,18,17,24,8,17,17,17,17,23,15,15,14,24,22,0,17,22,24,25,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,25,10,0,17,0,2,17,24,14,17,10,17,17,18,8,10,17,18,16,16,8,15,14,17,15,0,18,16,16,17,16,16,17,17,8,18,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,0,2,2,2,2,2,0,2,0,2,2,0,2,0,2,2,2,2,2,2,0,2,0,4,0,2,0,0,2,2,2,4,2,0,0,2,2,2,2,0,0,2,5,0,4,4,17,17,17,8,10,17,17,16,16,8,15,14,17,15,0,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,0,17,14,17,10,19,18,24,8,17,17,18,16,23,15,18,14,25,24,0,17,22,23,24,17,23,25,18,8,17,16,19,22,17,0,0,17,17,16,18,17,15,0,24,10,24,17,0,5,17,0,14,19,12,14,14,14,7,7,14,14,14,14,7,14,14,14,14,0,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,26,17,17,8,10,17,24,16,16,8,17,14,24,17,0,24,22,16,17,24,16,24,24,15,17,15,12,22,17,0,0,17,17,9,18,10,8,0,24,10,17,17,0,4,17,19,14,0,12,12,10,10,8,10,10,10,9,9,8,10,7,10,10,0,10,8,9,10,10,9,10,10,8,10,8,12,8,10,0,0,10,10,9,11,10,8,0,10,3,10,10,0,4,10,12,7,12,0,0,18,18,9,10,24,24,24,17,8,22,14,24,15,24,0,23,16,18,22,16,24,24,22,18,22,10,22,24,0,0,25,25,9,23,10,8,0,25,10,17,17,0,2,25,17,21,31,17,18,0,17,9,10,17,17,16,17,8,15,14,17,15,17,0,15,16,18,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,18,17,14,17,10,18,17,0,8,10,18,19,17,17,8,16,14,17,15,19,0,18,16,17,16,16,17,18,9,19,15,10,15,18,0,0,18,18,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,9,9,8,0,9,8,8,7,8,8,9,7,8,8,8,0,8,7,9,8,7,8,8,8,9,8,8,8,8,0,0,8,8,7,7,8,8,0,9,1,8,8,0,0,9,8,7,8,8,10,10,10,9,0,10,12,9,9,8,9,9,10,8,10,0,8,11,10,8,9,12,10,8,11,10,10,8,10,0,0,12,12,9,9,10,8,0,10,5,10,12,0,2,10,10,7,10,10,24,17,18,8,10,0,18,23,17,8,23,14,17,15,18,0,16,16,17,15,16,17,18,16,17,22,10,15,24,0,0,24,24,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,24,17,19,8,12,18,0,16,17,8,16,16,25,15,26,0,25,18,17,24,16,27,26,17,18,17,10,23,18,0,0,19,19,9,16,10,8,0,25,12,17,20,0,2,18,17,14,24,10,24,16,17,7,9,23,16,0,16,7,21,14,16,14,16,0,15,16,16,14,16,16,16,14,17,21,9,14,23,0,0,24,24,9,23,9,7,0,16,9,16,16,0,2,23,16,21,23,16,17,17,17,8,9,17,17,16,0,7,15,14,16,14,17,0,15,16,17,14,16,16,17,8,16,14,9,14,16,0,0,16,16,9,16,9,7,0,17,9,16,16,0,2,17,16,14,16,9,8,8,8,8,8,8,8,7,7,0,8,7,8,8,8,0,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,22,15,16,9,9,23,16,21,15,8,0,14,15,15,16,0,16,14,15,15,14,15,16,16,16,22,8,15,22,0,0,22,22,7,21,8,8,0,15,8,15,15,0,0,22,15,21,22,15,14,14,14,7,9,14,16,14,14,7,14,0,14,14,14,0,14,16,14,14,14,16,14,7,14,16,7,14,14,0,0,16,16,7,14,7,7,0,14,9,14,16,0,0,14,14,14,14,7,24,17,17,8,10,17,25,16,16,8,15,14,0,15,24,0,23,16,17,23,16,25,25,16,17,15,10,23,17,0,0,17,17,9,16,10,8,0,25,10,17,17,0,2,18,17,14,24,10,15,15,15,8,8,15,15,14,14,8,15,14,15,0,15,0,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,24,17,19,8,10,18,26,16,17,8,16,14,24,15,0,0,24,16,17,23,16,24,25,16,18,15,10,22,18,0,0,17,17,9,16,10,8,0,24,10,17,18,0,2,17,17,14,24,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,15,18,8,8,16,25,15,15,8,16,14,23,15,24,0,0,16,15,24,14,23,24,17,17,15,8,23,16,0,0,16,16,7,14,8,8,0,23,8,15,16,0,0,16,15,14,22,8,16,16,16,7,11,16,18,16,16,7,14,16,16,14,16,0,16,0,16,14,16,18,16,7,16,16,9,14,16,0,0,18,18,9,16,9,7,0,16,11,16,18,0,2,16,16,14,16,9,18,18,17,9,10,17,17,16,17,8,15,14,17,15,17,0,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,18,17,14,17,10,22,15,16,8,8,15,24,14,14,8,15,14,23,15,23,0,24,14,15,0,14,23,23,16,16,15,8,23,16,0,0,15,15,7,14,8,8,0,23,8,15,16,0,0,16,15,14,22,8,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,0,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,24,17,17,8,12,17,27,16,16,8,15,16,25,15,24,0,23,18,17,23,16,0,25,16,17,17,10,23,17,0,0,19,19,9,16,10,8,0,25,12,17,19,0,2,18,17,14,24,10,24,17,18,8,10,18,26,16,17,8,16,14,25,15,25,0,24,16,17,23,16,25,0,17,17,15,10,23,17,0,0,17,17,9,16,10,8,0,25,10,17,17,0,2,18,17,14,24,10,22,8,9,8,8,16,17,14,8,8,16,7,16,8,16,0,17,7,8,16,7,16,17,0,8,15,8,16,15,0,0,15,15,7,14,8,8,0,16,1,8,8,0,0,16,8,14,22,15,18,17,19,9,11,17,18,17,16,8,16,14,17,15,18,0,17,16,17,16,16,17,17,8,0,15,10,15,18,0,0,18,18,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,22,15,15,8,10,22,17,21,14,8,22,16,15,15,15,0,15,16,15,15,14,17,15,15,15,0,8,15,22,0,0,24,24,7,21,8,8,0,15,10,15,17,0,0,22,15,21,22,15,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,0,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,22,15,15,8,8,15,23,14,14,8,15,14,23,15,22,0,23,14,15,23,14,23,23,16,15,15,8,0,15,0,0,15,15,7,14,8,8,0,23,8,15,15,0,0,16,15,14,22,8,24,17,18,8,10,24,18,23,16,8,22,14,17,15,18,0,16,16,17,16,16,17,17,15,18,22,10,15,0,0,0,24,24,9,23,10,8,0,17,10,17,18,0,2,24,17,21,24,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,17,18,8,12,24,19,24,16,8,22,16,17,15,17,0,16,18,17,15,16,19,17,15,18,24,10,15,24,0,0,0,27,9,23,10,8,0,17,12,17,19,0,2,24,17,21,24,17,25,17,18,8,12,24,19,24,16,8,22,16,17,15,17,0,16,18,17,15,16,19,17,15,18,24,10,15,24,0,0,27,0,9,23,10,8,0,17,12,17,19,0,2,24,17,21,24,17,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,0,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,0,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,23,23,9,0,9,7,0,16,9,16,16,0,2,23,16,21,23,16,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,0,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,0,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,0,0,8,1,8,8,0,0,8,8,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,18,17,9,10,17,25,16,17,8,15,14,25,15,24,0,23,16,18,23,16,25,25,16,17,15,10,23,17,0,0,17,17,9,16,10,8,0,0,10,17,17,0,2,19,17,14,24,10,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,0,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,12,12,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,0,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,17,17,18,8,12,17,20,16,16,8,15,16,17,15,18,0,16,18,17,16,16,19,17,8,18,17,10,15,18,0,0,19,19,9,16,10,8,0,17,12,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,0,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,25,18,17,9,10,24,18,23,17,8,22,14,18,15,17,0,16,16,18,16,16,18,18,16,17,22,10,16,24,0,0,24,24,9,23,10,8,0,19,10,17,17,0,2,0,17,21,24,17,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,0,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,0,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,21,21,7,21,7,7,0,14,7,14,14,0,0,21,14,0,21,14,31,17,17,8,10,24,24,23,16,8,22,14,24,15,24,0,22,16,17,22,16,24,24,22,17,22,10,22,24,0,0,24,24,9,23,10,8,0,24,10,17,17,0,2,24,17,21,0,17,17,10,10,8,10,17,10,16,9,8,15,7,10,8,10,0,8,9,10,8,9,10,10,15,10,15,10,8,17,0,0,17,17,9,16,10,8,0,10,3,10,10,0,2,17,10,14,17,0,0,15,17,8,8,15,23,16,14,8,15,14,23,16,24,23,0,14,15,22,14,23,23,16,16,15,8,23,15,0,0,16,16,7,14,8,8,0,23,8,15,15,0,0,15,15,14,22,8,15,0,15,8,8,15,15,14,14,8,15,14,15,15,15,15,0,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,17,15,0,9,15,16,17,17,23,16,17,14,22,24,25,18,0,22,22,16,21,22,16,9,17,15,15,23,17,0,0,16,16,14,14,15,15,0,22,8,22,16,0,0,15,22,14,15,9,8,8,9,0,8,10,8,8,8,9,9,7,8,9,8,8,0,8,8,8,7,8,8,8,8,8,8,9,9,0,0,8,8,7,7,8,8,0,10,1,8,8,0,0,8,8,7,8,9,8,8,15,8,0,8,8,7,14,15,8,7,15,15,15,8,0,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,15,15,16,10,8,0,17,14,15,9,16,15,15,16,17,16,0,14,15,15,14,16,17,10,15,15,8,16,15,0,0,16,16,7,14,8,8,0,17,8,15,15,0,0,15,15,14,15,8,23,15,17,8,8,17,0,14,15,9,16,15,24,16,26,25,0,14,15,24,14,25,26,19,16,15,8,25,16,0,0,16,16,7,14,8,8,0,24,8,15,16,0,0,16,15,14,22,8,16,14,17,8,7,14,14,0,15,8,15,14,14,16,15,15,0,15,14,14,14,14,14,7,15,14,7,15,15,0,0,15,15,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,8,14,14,23,8,14,15,15,15,0,15,16,14,21,22,22,15,0,22,21,14,21,21,15,8,14,14,14,22,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,8,8,8,16,9,15,9,9,8,15,0,11,10,15,19,16,8,0,15,15,10,14,16,9,11,8,10,15,19,9,0,0,9,9,14,7,15,17,0,15,1,15,8,0,0,8,15,9,8,9,15,15,17,9,8,16,16,15,16,11,0,16,15,18,16,16,0,15,15,17,14,15,16,11,15,17,8,18,16,0,0,15,15,7,14,8,10,0,15,8,15,15,0,0,15,15,16,15,9,14,14,14,7,7,15,15,14,14,10,16,0,14,17,15,14,0,14,14,16,14,15,15,10,14,16,7,17,14,0,0,15,15,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,23,15,22,8,15,15,24,14,21,15,15,14,0,22,30,23,0,21,22,23,21,31,24,17,15,15,15,31,15,0,0,15,15,14,14,15,15,0,31,8,22,15,0,0,16,22,14,22,8,16,15,24,9,15,16,16,16,22,19,18,17,22,0,24,15,0,22,22,17,21,23,16,11,15,17,15,26,16,0,0,16,16,14,14,15,17,0,22,8,22,15,0,0,15,22,16,15,9,24,15,25,8,15,17,26,15,22,16,16,15,30,24,0,24,0,21,22,23,21,31,25,18,16,15,15,31,16,0,0,16,16,14,14,15,15,0,30,8,22,16,0,0,15,22,14,22,8,23,15,18,8,8,16,25,15,15,8,16,14,23,15,24,0,0,16,15,24,14,23,24,17,17,15,8,23,16,0,0,16,16,7,14,8,8,0,23,8,15,16,0,0,16,15,14,22,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,22,8,14,14,14,15,22,15,15,14,21,22,21,16,0,0,21,14,21,21,14,7,14,14,14,22,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,8,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,0,21,0,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,8,22,15,16,8,8,15,24,14,14,10,17,16,23,17,23,24,0,14,15,0,14,23,23,18,16,17,8,25,16,0,0,15,15,7,14,8,10,0,23,8,15,16,0,0,16,15,16,22,8,14,14,21,7,14,14,14,14,21,14,14,14,21,21,21,14,0,21,21,14,0,21,14,7,14,14,14,21,14,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,7,23,15,22,8,15,16,25,14,21,16,15,15,31,23,31,23,0,21,22,23,21,0,25,18,15,15,15,32,15,0,0,16,16,14,14,15,15,0,31,8,22,15,0,0,16,22,14,22,8,23,15,16,8,8,17,26,14,15,9,16,15,24,16,25,24,0,14,15,23,14,25,0,19,15,15,8,25,15,0,0,16,16,7,14,8,8,0,24,8,15,15,0,0,16,15,14,22,8,16,8,9,8,8,10,19,7,8,11,11,10,17,11,18,17,0,7,8,18,7,18,19,0,8,10,8,20,8,0,0,9,9,7,7,8,10,0,17,1,8,8,0,0,9,8,9,15,8,16,15,17,8,8,15,16,15,14,8,15,14,15,15,16,17,0,14,15,16,14,15,15,8,0,15,8,15,16,0,0,16,16,7,14,8,8,0,15,8,15,16,0,0,15,15,14,15,8,15,15,15,8,8,15,15,14,14,10,17,16,15,17,15,15,0,14,15,17,14,15,15,10,15,0,8,17,15,0,0,15,15,7,14,8,10,0,15,8,15,15,0,0,15,15,16,15,8,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,0,14,15,8,14,15,8,8,8,8,0,15,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,23,15,23,9,15,16,25,15,22,19,18,17,31,26,31,23,0,22,22,25,21,32,25,20,15,17,15,0,16,0,0,16,16,14,14,15,17,0,31,8,22,15,0,0,16,22,16,22,9,15,15,17,9,8,15,16,15,15,9,16,14,15,16,16,16,0,15,15,16,14,15,15,8,16,15,8,16,0,0,0,15,15,7,14,8,8,0,15,8,15,16,0,0,15,15,14,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,15,16,8,8,16,16,15,14,9,15,15,15,16,16,16,0,14,15,15,14,16,16,9,16,15,8,16,15,0,0,0,17,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,16,15,16,8,8,16,16,15,14,9,15,15,15,16,16,16,0,14,15,15,14,16,16,9,16,15,8,16,15,0,0,17,0,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,7,7,14,7,14,7,7,7,14,14,7,7,14,14,14,7,0,14,14,7,14,14,7,7,7,7,14,14,7,0,0,7,7,0,7,14,14,0,14,0,14,7,0,0,7,14,7,7,7,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,0,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,0,7,7,0,14,7,14,14,0,0,14,14,14,14,7,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,0,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,0,15,0,15,1,15,8,0,0,8,15,7,8,8,8,8,15,8,15,8,8,7,14,17,10,9,15,17,15,8,0,14,15,10,14,15,8,10,8,10,15,17,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,9,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,15,22,10,15,17,24,14,21,15,15,14,31,22,30,23,0,21,22,23,21,31,24,17,15,15,15,31,15,0,0,15,15,14,14,15,15,0,0,8,22,15,0,0,16,22,14,22,8,8,8,8,1,1,8,8,7,7,1,8,7,8,8,8,8,0,7,8,8,7,8,8,1,8,8,1,8,8,0,0,8,8,0,7,1,1,0,8,0,8,8,0,0,8,8,7,8,1,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,0,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,0,15,0,0,15,22,14,15,8,15,15,16,8,8,15,16,14,14,8,15,14,15,15,16,16,0,14,15,16,14,15,15,8,16,15,8,15,16,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,8,8,15,16,14,14,8,15,14,16,15,15,16,0,14,15,16,14,16,16,9,15,15,8,16,15,0,0,15,15,7,14,8,8,0,16,8,15,15,0,0,0,15,14,15,8,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,0,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,0,14,15,8,14,14,14,7,7,14,14,14,14,9,16,16,14,16,14,14,0,14,14,16,14,14,14,9,14,16,7,16,14,0,0,14,14,7,14,7,9,0,14,7,14,14,0,0,14,14,0,14,7,22,15,15,8,8,15,22,14,14,8,15,14,22,15,22,22,0,14,15,22,14,22,22,15,15,15,8,22,15,0,0,15,15,7,14,8,8,0,22,8,15,15,0,0,15,15,14,0,8,8,8,9,9,8,8,8,8,8,9,9,7,8,9,8,8,0,8,8,8,7,8,8,8,8,8,8,9,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,0,0,17,16,7,9,16,16,17,16,8,15,14,16,15,17,16,14,0,17,14,16,16,16,7,16,14,9,14,16,0,0,16,17,9,16,9,7,0,17,9,17,16,0,2,17,16,14,16,10,17,0,16,7,9,16,16,16,16,8,15,14,16,15,16,16,14,0,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,17,16,14,16,10,16,16,0,8,17,16,16,18,24,15,15,14,24,22,23,16,22,0,23,15,23,23,16,7,17,15,16,22,18,0,0,16,16,16,16,17,15,0,23,10,23,16,0,2,16,23,14,17,11,7,7,8,0,7,7,7,8,8,8,8,7,7,8,7,7,8,0,7,7,7,7,7,7,7,7,7,8,8,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,8,9,9,17,7,0,9,11,10,16,14,7,9,17,14,16,11,14,0,16,8,16,18,9,7,10,10,16,14,10,0,0,11,11,16,9,17,15,0,16,5,16,11,0,2,9,16,7,10,10,16,16,16,7,9,0,16,16,16,7,14,14,16,14,16,16,14,0,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,16,7,11,16,0,16,16,7,14,16,16,14,16,18,14,0,16,14,16,18,16,7,16,16,9,14,16,0,0,18,18,9,16,9,7,0,16,11,16,18,0,2,16,16,14,16,9,17,16,18,8,10,16,16,0,18,8,15,15,17,15,17,16,15,0,17,15,17,16,16,7,17,15,9,15,18,0,0,16,17,10,17,10,8,0,17,10,17,16,0,3,16,16,15,17,11,16,16,24,8,16,16,16,18,0,15,15,15,23,22,23,16,22,0,23,14,24,23,16,7,16,14,16,22,17,0,0,16,16,17,17,16,15,0,23,9,23,16,0,3,16,23,15,16,10,8,8,15,8,14,7,7,8,15,0,9,7,14,16,14,7,15,0,14,7,14,14,7,7,7,7,14,15,8,0,0,7,7,14,7,14,14,0,14,0,14,7,0,0,8,14,7,7,9,15,15,15,8,7,14,14,15,15,9,0,14,14,16,14,14,15,0,14,14,14,14,14,7,14,14,7,15,15,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,15,14,14,14,9,14,14,14,7,9,14,16,15,15,7,14,0,14,14,14,16,14,0,14,14,15,16,14,7,14,16,7,14,14,0,0,16,16,8,15,7,7,0,14,9,14,16,0,1,14,14,15,14,7,16,16,24,7,17,16,16,17,23,14,14,14,0,21,23,16,21,0,23,15,23,23,16,7,17,15,16,21,17,0,0,16,16,16,16,17,15,0,23,10,23,16,0,2,16,23,14,17,10,15,15,22,8,14,14,14,15,22,16,16,14,21,0,21,14,22,0,21,14,21,21,14,7,14,14,14,22,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,15,21,14,14,9,17,16,23,7,16,16,16,17,23,14,14,14,23,21,0,16,21,0,24,14,23,23,16,7,16,14,16,21,16,0,0,16,17,16,16,16,14,0,24,9,24,16,0,2,16,23,14,16,9,16,16,16,7,11,16,18,16,16,7,14,16,16,14,16,0,16,0,16,14,16,18,16,7,16,16,9,14,16,0,0,18,18,9,16,9,7,0,16,11,16,18,0,2,16,16,14,16,9,14,14,22,8,14,14,14,15,22,15,15,14,21,22,21,16,0,0,21,14,21,21,14,7,14,14,14,22,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,16,23,7,16,16,16,17,23,14,14,14,23,21,24,16,21,0,0,14,23,23,16,7,16,14,16,21,16,0,0,16,17,16,16,16,14,0,24,9,24,16,0,2,16,23,14,16,9,14,14,15,7,8,14,14,15,14,7,14,14,15,14,14,14,14,0,14,0,14,14,14,7,15,15,7,14,15,0,0,14,14,7,14,8,8,0,14,8,14,14,0,0,14,14,14,15,8,16,16,23,7,16,16,16,17,24,14,14,15,23,21,23,16,21,0,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,17,17,16,14,0,23,9,23,16,0,3,16,23,15,16,9,16,16,23,7,18,16,18,16,23,14,14,16,23,21,23,18,21,0,23,14,23,0,16,7,16,16,16,21,16,0,0,18,18,16,16,16,14,0,23,11,23,18,0,2,16,23,14,16,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,0,16,14,16,16,0,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,0,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,16,16,17,7,10,16,16,17,16,7,14,14,17,14,16,16,14,0,16,15,16,16,16,7,0,15,9,14,17,0,0,16,16,9,16,10,8,0,16,10,16,16,0,2,16,16,14,17,10,14,14,15,7,10,14,16,15,14,7,14,16,15,14,14,16,14,0,14,15,14,16,14,7,15,0,7,14,15,0,0,16,16,7,14,8,8,0,14,10,14,16,0,0,14,14,14,15,8,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,0,16,7,16,16,9,7,9,7,0,14,9,0,0,9,9,16,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,14,14,22,8,14,14,14,15,22,15,15,14,21,22,21,14,22,0,21,14,21,21,14,7,14,14,14,0,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,8,16,16,18,8,10,16,16,18,17,8,15,14,17,15,16,16,15,0,16,15,16,16,16,7,17,15,9,15,0,0,0,16,16,9,16,10,8,0,16,10,16,16,0,2,16,16,14,17,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,16,7,11,16,18,16,16,7,14,16,16,14,16,18,14,0,16,14,16,18,16,7,16,16,9,14,16,0,0,0,18,9,16,9,7,0,16,11,16,18,0,2,16,16,14,16,9,17,16,16,7,11,16,18,17,16,7,14,16,16,14,17,18,14,0,17,14,16,18,16,7,16,16,9,14,16,0,0,18,0,9,16,9,7,0,17,11,17,18,0,2,16,16,14,16,9,9,9,16,7,16,9,9,10,17,14,7,8,16,14,16,9,14,0,16,7,17,16,9,7,9,7,16,14,9,0,0,9,9,0,10,16,14,0,16,2,16,9,0,3,9,16,8,9,9,16,16,16,7,9,16,16,17,17,7,14,15,16,14,16,16,14,0,16,14,17,16,16,7,16,14,9,14,16,0,0,16,16,10,0,9,7,0,16,9,16,16,0,3,16,16,16,16,9,9,9,17,7,17,9,9,10,16,14,7,7,17,14,16,9,14,0,16,8,16,16,9,7,10,8,16,14,10,0,0,9,9,16,9,0,15,0,16,3,16,9,0,2,9,16,7,10,10,7,7,15,7,15,7,7,8,15,14,7,7,15,14,14,7,14,0,14,8,14,14,7,7,8,8,14,14,8,0,0,7,7,14,7,15,0,0,14,1,14,7,0,0,7,14,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,16,23,7,16,16,16,17,23,14,14,14,23,21,24,16,21,0,24,14,23,23,16,7,16,14,16,21,16,0,0,16,17,16,16,16,14,0,0,9,24,16,0,2,16,23,14,16,9,9,9,10,0,5,9,11,10,9,0,7,9,10,7,9,11,7,0,9,8,9,11,9,0,10,10,2,7,10,0,0,11,11,2,9,3,1,0,9,0,9,11,0,2,9,9,7,10,3,17,16,23,7,16,16,16,17,23,14,14,14,23,21,24,16,21,0,24,14,23,23,16,7,16,14,16,21,16,0,0,16,17,16,16,16,14,0,24,9,0,16,0,2,16,23,14,16,9,16,16,16,7,11,16,18,16,16,7,14,16,16,14,16,18,14,0,16,14,16,18,16,7,16,16,9,14,16,0,0,18,18,9,16,9,7,0,16,11,16,0,0,2,16,16,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,3,3,0,0,1,2,0,2,2,0,0,2,0,3,2,2,0,2,0,2,0,2,0,0,2,2,3,3,2,0,0,2,2,2,2,0,0,2,2,1,2,2,17,17,16,7,9,16,16,16,16,8,15,14,16,15,16,16,14,0,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,0,16,14,16,10,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,0,23,14,23,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,0,14,16,9,14,14,14,7,7,14,14,15,15,7,14,15,14,14,14,14,14,0,14,14,15,14,14,7,14,14,7,14,14,0,0,14,14,8,16,7,7,0,14,7,14,14,0,1,14,14,0,14,7,16,16,17,7,10,16,16,17,16,7,14,14,17,14,16,16,14,0,16,15,16,16,16,7,17,15,9,14,17,0,0,16,16,9,16,10,8,0,16,10,16,16,0,2,16,16,14,0,10,10,10,11,8,10,9,9,11,10,9,9,7,10,9,9,9,8,0,9,8,9,9,9,7,10,8,9,8,11,0,0,9,9,9,9,10,8,0,9,3,9,9,0,2,10,9,7,10,0,0,18,17,9,10,17,17,17,17,8,15,14,17,15,18,18,15,17,0,15,16,17,17,8,17,15,10,15,17,0,0,17,18,9,16,10,8,0,19,10,18,17,0,2,18,17,14,17,10,18,0,17,9,10,17,17,16,17,8,15,14,17,15,17,18,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,18,17,14,17,10,17,17,0,8,17,17,17,18,25,15,15,14,26,22,24,17,22,23,0,15,23,24,17,8,17,15,17,22,17,0,0,17,17,18,16,17,15,0,24,10,24,17,0,2,17,24,14,17,10,9,9,8,0,15,15,8,14,15,15,15,7,8,15,8,9,8,7,0,8,7,8,8,8,15,8,8,8,8,0,0,8,8,7,14,15,8,0,9,8,8,8,0,0,9,8,14,8,8,10,10,17,15,0,17,10,16,23,22,15,7,17,22,17,10,15,16,0,8,16,17,10,8,17,8,17,15,10,0,0,10,10,16,16,24,15,0,17,10,17,10,0,2,10,17,14,10,10,17,17,17,15,17,0,17,24,23,17,22,14,17,22,17,17,15,16,0,15,16,17,17,8,24,15,10,15,17,0,0,17,17,9,23,17,8,0,17,17,17,17,0,2,17,17,21,17,10,17,17,17,8,10,17,0,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,17,16,18,14,16,24,16,0,25,15,21,14,18,21,17,16,14,17,0,14,16,16,16,7,23,14,9,14,16,0,0,16,17,11,23,16,7,0,17,16,17,16,0,2,16,16,21,16,9,17,17,25,15,23,23,16,25,0,21,21,14,25,28,23,17,21,23,0,14,23,23,16,7,23,14,16,21,16,0,0,16,16,18,23,23,14,0,24,16,23,16,0,2,17,23,21,16,9,8,8,15,15,22,17,8,15,21,0,15,7,15,22,15,8,15,14,0,8,14,15,8,8,15,8,15,15,8,0,0,8,8,14,14,22,15,0,15,8,15,8,0,0,8,15,14,8,8,15,15,15,15,15,22,15,21,21,15,0,14,15,22,15,15,15,14,0,15,14,15,15,8,22,15,8,15,15,0,0,15,15,7,21,15,8,0,15,15,15,15,0,0,15,15,21,15,8,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,0,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,17,17,26,8,17,17,17,18,25,15,15,14,0,22,24,17,22,23,0,15,23,24,17,8,17,15,17,22,17,0,0,17,17,18,16,17,15,0,24,10,24,17,0,2,17,24,14,17,10,15,15,22,15,22,22,15,21,28,22,22,14,22,0,22,15,22,21,0,15,21,22,15,8,22,15,15,22,15,0,0,15,15,14,21,22,15,0,22,15,22,15,0,0,15,22,21,15,8,18,17,24,8,17,17,17,17,23,15,15,14,24,22,0,17,22,24,0,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,25,10,25,17,0,2,17,24,14,17,10,18,18,17,9,10,17,17,16,17,8,15,14,17,15,17,0,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,18,17,14,17,10,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,0,21,0,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,8,17,16,23,7,16,16,16,17,23,14,14,14,23,21,24,16,21,0,0,14,23,23,16,7,16,14,16,21,16,0,0,16,17,16,16,16,14,0,24,9,24,16,0,2,16,23,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,0,0,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,0,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,0,15,23,0,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,24,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,0,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,0,8,7,8,8,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,17,17,17,15,17,24,17,23,23,15,22,14,17,22,17,17,15,16,0,15,16,17,17,8,0,15,10,15,17,0,0,17,17,9,23,17,8,0,17,17,17,17,0,2,17,17,21,17,10,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,0,15,14,15,15,8,15,0,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,0,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,22,21,0,15,21,22,15,8,15,15,15,0,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,8,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,0,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,18,17,17,8,10,17,17,17,16,8,15,14,17,15,18,17,15,17,0,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,18,10,18,17,0,2,17,17,14,17,10,9,9,18,7,16,9,9,11,18,14,7,7,18,14,16,9,14,16,0,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,16,16,16,14,16,23,16,23,23,14,21,14,16,21,16,16,14,16,0,14,16,16,16,7,23,14,9,14,16,0,0,16,16,9,0,16,7,0,16,16,16,16,0,2,16,16,21,16,9,10,10,17,15,24,17,10,16,23,22,15,7,17,22,17,10,15,16,0,8,16,17,10,8,17,8,17,15,10,0,0,10,10,16,16,0,15,0,17,10,17,10,0,2,10,17,14,10,10,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,15,14,0,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,18,24,9,17,17,17,17,24,15,15,14,24,22,25,18,22,24,0,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,0,10,25,17,0,2,18,24,14,17,10,10,10,10,8,10,17,10,16,16,8,15,7,10,15,10,10,8,9,0,8,9,10,10,1,17,8,3,8,10,0,0,10,10,2,16,10,1,0,10,0,10,10,0,9,10,10,14,10,3,18,17,24,8,17,17,17,17,23,15,15,14,24,22,25,17,22,24,0,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,25,10,0,17,0,2,17,24,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,0,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,9,2,2,0,0,2,2,0,2,2,18,18,17,9,10,17,17,16,17,8,15,14,17,15,17,18,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,0,17,14,17,10,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,0,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,0,14,17,10,14,14,14,14,14,21,14,21,21,14,21,14,14,21,14,14,14,14,0,14,14,14,14,7,21,14,7,14,14,0,0,14,14,7,21,14,7,0,14,14,14,14,0,0,14,14,0,14,7,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,0,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,0,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,0,0,15,15,8,8,15,22,14,14,8,22,14,22,22,24,22,22,14,15,0,14,22,22,15,15,15,10,22,15,0,0,15,15,7,16,8,8,0,22,8,15,15,0,2,15,17,14,24,13,15,0,15,15,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,22,8,22,15,8,15,15,0,0,15,15,7,14,8,8,0,15,15,15,15,0,0,15,15,14,15,8,15,15,0,8,9,15,16,15,14,8,15,14,16,15,16,16,16,15,15,0,14,15,15,8,17,16,8,15,17,0,0,15,15,7,14,9,9,0,15,9,15,16,0,0,15,15,14,16,9,8,15,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,0,7,8,15,8,15,8,8,8,8,0,0,8,8,7,7,8,8,0,8,8,8,8,0,0,8,8,7,8,8,8,8,9,8,0,8,8,8,7,8,8,7,9,8,8,8,8,8,8,0,7,8,8,8,9,9,8,8,9,0,0,8,8,7,7,9,9,0,8,2,8,8,0,0,8,8,7,9,9,15,15,15,8,8,0,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,22,15,16,8,8,15,0,14,14,8,15,14,23,15,23,24,24,14,15,0,14,23,23,16,16,15,8,23,16,0,0,15,15,7,14,8,8,0,23,8,15,16,0,0,16,15,14,22,8,14,14,15,7,8,14,14,0,14,7,14,14,15,14,14,14,14,15,14,0,14,14,14,7,15,15,7,14,15,0,0,14,14,7,14,8,8,0,14,8,14,14,0,0,14,14,14,15,8,14,14,14,7,7,14,14,14,0,7,14,14,14,14,14,14,14,14,14,0,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,8,8,8,8,8,8,8,7,7,0,10,9,8,10,8,8,10,7,8,0,7,8,8,10,8,10,8,10,8,0,0,8,8,7,7,8,10,0,8,1,8,8,0,0,8,8,9,8,8,22,15,15,8,8,15,15,14,14,10,0,16,15,24,17,15,17,14,15,0,14,15,15,10,15,17,10,17,15,0,0,15,15,7,16,8,10,0,15,8,15,15,0,2,15,17,16,17,13,14,14,14,7,7,14,14,14,14,9,16,0,14,16,14,14,16,14,14,0,14,14,14,9,14,16,7,16,14,0,0,14,14,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,22,15,16,8,9,15,23,15,14,8,15,14,0,15,22,23,23,15,15,0,14,23,23,16,16,16,8,23,16,0,0,15,15,7,14,9,9,0,23,9,15,15,0,0,16,15,14,23,9,22,15,15,8,8,15,15,14,14,10,24,16,15,0,17,15,17,14,15,0,14,15,15,10,15,17,10,17,15,0,0,15,15,7,16,8,10,0,15,8,15,15,0,2,15,17,16,17,13,24,15,16,8,8,15,23,14,14,8,17,14,22,17,0,23,23,14,15,0,14,22,22,15,16,15,10,22,16,0,0,15,15,7,16,8,8,0,22,8,15,16,0,2,15,17,14,24,10,22,15,16,8,8,15,24,14,14,8,15,14,23,15,23,0,24,14,15,0,14,23,23,16,16,15,8,23,16,0,0,15,15,7,14,8,8,0,23,8,15,16,0,0,16,15,14,22,8,22,15,16,8,8,15,24,14,14,10,17,16,23,17,23,24,0,14,15,0,14,23,23,18,16,17,8,25,16,0,0,15,15,7,14,8,10,0,23,8,15,16,0,0,16,15,16,22,8,14,14,15,7,8,14,14,15,14,7,14,14,15,14,14,14,14,0,14,0,14,14,14,7,15,15,7,14,15,0,0,14,14,7,14,8,8,0,14,8,14,14,0,0,14,14,14,15,8,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,0,0,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,0,0,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,22,15,15,8,8,15,23,14,14,8,15,14,23,15,22,23,23,14,15,0,14,0,23,16,15,15,8,23,15,0,0,15,15,7,14,8,8,0,23,8,15,15,0,0,16,15,14,22,8,22,22,15,15,8,15,23,14,14,8,15,14,23,15,22,23,23,14,15,0,14,23,0,16,22,15,8,23,15,0,0,15,15,7,14,8,8,0,23,15,15,15,0,0,16,15,14,22,8,15,8,8,8,8,8,16,7,7,10,10,9,16,10,15,16,18,7,8,0,7,16,16,0,8,10,8,18,8,0,0,8,8,7,7,8,10,0,16,1,8,8,0,0,9,8,9,15,8,15,22,17,15,9,15,16,15,14,8,15,14,16,15,16,16,16,15,15,0,14,15,22,8,0,16,8,15,17,0,0,15,15,7,14,9,9,0,15,16,15,16,0,0,15,15,14,16,9,15,15,16,8,9,15,15,15,14,10,17,16,16,17,15,15,17,15,15,0,14,15,15,10,16,0,8,17,16,0,0,15,15,7,14,9,11,0,15,9,15,15,0,0,15,15,16,16,9,10,8,8,8,8,8,8,7,7,8,10,7,8,10,10,8,8,7,8,0,7,8,8,8,8,8,0,8,8,0,0,8,8,7,9,8,8,0,8,1,8,8,0,2,8,10,7,10,10,22,15,15,8,8,15,23,14,14,10,17,16,23,17,22,23,25,14,15,0,14,23,23,18,15,17,8,0,15,0,0,15,15,7,14,8,10,0,23,8,15,15,0,0,16,15,16,22,8,15,15,17,8,9,15,16,15,14,8,15,14,16,15,16,16,16,15,15,0,14,15,15,8,17,16,8,15,0,0,0,15,15,7,14,9,9,0,15,9,15,16,0,0,15,15,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,15,8,15,15,8,15,15,0,0,0,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,15,8,15,15,8,15,15,0,0,15,0,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,0,0,7,7,0,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,16,14,14,7,7,14,14,14,14,7,16,14,14,16,16,14,14,14,14,0,14,14,14,7,14,14,9,14,14,0,0,14,14,7,0,7,7,0,14,7,14,14,0,2,14,16,14,16,9,8,8,9,8,9,8,8,8,7,8,8,7,9,8,8,8,8,8,8,0,7,8,8,8,9,9,8,8,9,0,0,8,8,7,7,0,9,0,8,2,8,8,0,0,8,8,7,9,9,8,8,9,8,9,8,8,8,7,10,10,9,9,10,8,8,10,8,8,0,7,8,8,10,9,11,8,10,9,0,0,8,8,7,7,9,0,0,8,2,8,8,0,0,8,8,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22,15,15,8,8,15,23,14,14,8,15,14,23,15,22,23,23,14,15,0,14,23,23,16,15,15,8,23,15,0,0,15,15,7,14,8,8,0,0,8,15,15,0,0,16,15,14,22,8,8,15,9,8,2,8,8,8,7,1,8,7,9,8,8,8,8,8,8,0,7,8,15,1,16,9,1,8,9,0,0,8,8,0,7,2,2,0,8,0,8,8,0,0,8,8,7,9,2,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,0,15,0,0,15,15,14,15,8,15,15,16,8,8,15,16,14,14,8,15,14,15,15,16,16,16,14,15,0,14,15,15,8,16,15,8,15,16,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,15,15,15,8,8,15,16,14,14,8,15,14,16,15,15,16,16,14,15,0,14,16,16,9,15,15,8,16,15,0,0,15,15,7,14,8,8,0,16,8,15,15,0,0,0,15,14,15,8,17,15,15,8,8,15,15,14,14,8,17,14,15,17,17,15,15,14,15,0,14,15,15,8,15,15,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,15,0,14,17,10,14,14,14,7,7,14,14,14,14,9,16,16,14,16,14,14,16,14,14,0,14,14,14,9,14,16,7,16,14,0,0,14,14,7,14,7,9,0,14,7,14,14,0,0,14,14,0,14,7,24,15,16,8,9,15,22,15,14,8,17,14,23,17,24,22,22,15,15,0,14,22,22,15,16,16,10,22,16,0,0,15,15,7,16,9,9,0,22,9,15,15,0,2,15,17,14,0,11,13,8,9,8,9,8,8,8,7,8,13,7,9,13,10,8,8,8,8,0,7,8,8,8,9,9,10,8,9,0,0,8,8,7,9,9,9,0,8,2,8,8,0,2,8,10,7,11,0,0,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,0,16,7,9,16,16,16,16,9,14,14,16,14,16,16,14,16,16,14,0,16,16,9,18,14,9,16,18,0,0,16,16,9,16,11,9,0,16,9,18,16,0,2,18,16,16,16,9,16,16,0,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,9,9,16,7,0,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,0,16,9,7,9,7,16,14,9,0,0,9,9,16,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,16,16,16,7,9,0,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,16,7,9,16,0,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,16,7,9,16,16,0,17,7,14,15,16,14,16,16,14,17,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,10,17,9,7,0,16,9,16,16,0,3,16,16,15,16,9,16,16,23,7,16,16,16,17,0,14,14,16,23,21,23,16,21,24,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,17,18,16,14,0,23,9,23,16,0,3,16,23,17,16,9,7,9,14,7,14,7,7,7,14,0,7,7,14,14,14,7,14,14,14,7,0,14,7,9,9,7,14,16,9,0,0,7,7,14,7,16,16,0,14,0,16,7,0,0,9,14,9,7,7,14,14,14,7,7,14,14,14,14,7,0,14,14,14,14,14,14,14,14,14,0,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,14,14,14,7,7,14,14,15,16,7,14,0,14,14,14,14,14,15,14,14,0,14,14,7,14,14,7,14,14,0,0,14,14,8,15,7,7,0,14,7,14,14,0,1,14,14,16,14,7,16,16,23,7,16,16,16,16,23,14,14,14,0,21,23,16,21,23,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,11,14,14,21,7,14,14,14,14,21,14,14,14,21,0,21,14,21,21,21,14,0,21,14,7,14,14,14,21,14,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,7,16,16,23,7,16,16,16,16,23,14,14,14,23,21,0,16,21,23,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,0,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,14,14,21,7,14,14,14,14,21,14,14,14,21,21,21,14,0,21,21,14,0,21,14,7,14,14,14,21,14,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,7,16,16,23,7,16,16,16,17,24,14,14,15,23,21,23,16,21,0,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,17,17,16,14,0,23,9,23,16,0,3,16,23,15,16,9,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,0,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,0,0,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,23,14,0,0,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,0,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,7,9,7,7,7,7,7,7,7,9,7,7,7,7,7,7,7,7,7,7,0,7,7,0,9,7,7,9,9,0,0,7,7,7,7,9,9,0,7,0,9,7,0,0,9,7,9,7,7,16,18,16,7,9,16,16,16,16,9,14,14,16,14,16,16,14,16,16,14,0,16,16,9,0,14,9,16,18,0,0,16,16,9,16,11,9,0,16,9,18,16,0,2,18,16,16,16,9,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,0,14,14,7,14,0,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,0,16,9,7,9,7,0,14,9,1,1,9,9,17,10,16,14,1,16,2,17,9,1,2,9,17,8,9,9,14,16,21,7,14,14,14,14,21,16,14,14,21,21,21,14,21,21,21,14,0,21,14,9,16,14,14,0,16,0,0,14,14,14,14,16,16,0,21,7,23,14,0,0,16,21,16,14,7,16,18,16,7,9,16,16,16,16,9,14,14,16,14,16,16,14,16,16,14,0,16,16,9,18,14,9,16,0,0,0,16,16,9,16,11,9,0,16,9,18,16,0,2,18,16,16,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,0,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,0,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,9,9,16,7,16,9,9,10,17,14,7,8,16,14,16,9,14,17,16,7,0,16,9,7,9,7,17,14,9,1,1,9,9,0,11,16,14,1,16,2,17,9,1,3,9,17,9,9,9,16,16,16,7,9,16,16,17,18,7,14,15,16,14,16,16,14,17,16,14,0,16,16,7,16,14,10,14,16,1,1,16,16,11,0,9,7,1,16,9,17,16,1,3,16,17,17,16,9,9,11,16,7,16,9,9,9,16,16,7,7,16,14,16,9,14,16,16,7,0,16,9,9,11,7,16,16,11,0,0,9,9,16,9,0,16,0,16,2,18,9,0,2,11,16,9,9,9,7,9,14,7,14,7,7,7,14,16,7,7,14,14,14,7,14,14,14,7,0,14,7,9,9,7,14,16,9,0,0,7,7,14,7,16,0,0,14,0,16,7,0,0,9,14,9,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,0,9,23,16,0,2,16,23,14,16,9,9,9,9,0,2,9,9,9,9,0,7,7,9,7,9,9,7,9,9,7,0,9,9,0,9,7,2,7,9,0,0,9,9,2,9,2,0,0,9,0,9,9,0,2,9,9,7,9,2,16,18,23,7,16,16,16,16,23,16,14,14,23,21,23,16,21,23,23,14,0,23,16,9,18,14,17,23,18,1,1,16,16,17,17,18,16,1,23,9,0,16,1,2,18,24,17,16,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,0,0,2,16,16,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,2,2,2,0,2,2,2,3,3,0,0,1,2,0,2,2,0,3,2,0,0,2,2,0,2,0,2,0,2,0,0,2,2,3,3,2,0,0,2,2,2,2,0,0,2,2,1,2,2,16,18,16,7,9,16,16,16,16,9,14,14,16,14,16,16,14,16,16,14,0,16,16,9,18,14,9,16,18,0,0,16,16,9,16,11,9,0,16,9,18,16,0,2,0,16,16,16,9,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,23,14,0,23,16,7,16,14,17,21,16,1,1,16,16,17,17,16,14,1,23,9,24,16,1,2,16,0,15,16,9,14,16,14,7,7,14,14,15,17,9,14,16,14,14,14,14,14,15,14,14,0,14,14,9,16,14,8,16,16,1,1,14,14,9,17,9,9,1,14,7,17,14,1,1,16,15,0,14,7,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,0,9,9,9,9,7,9,9,9,9,9,7,7,7,11,7,9,9,7,9,9,7,0,9,9,7,9,7,9,7,9,0,0,9,9,9,9,9,7,0,9,2,9,9,0,2,9,9,7,9,0,0,17,17,8,10,17,25,16,16,8,15,14,25,15,25,24,23,16,17,22,16,0,25,16,17,15,10,23,17,0,0,17,17,9,16,10,8,0,25,10,17,17,0,2,17,17,14,24,10,17,0,17,8,10,17,18,16,16,8,16,14,18,15,18,17,15,16,17,15,16,0,18,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,18,14,17,10,17,17,0,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,0,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,24,14,17,10,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,0,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,10,10,17,8,0,10,12,9,16,15,8,9,17,15,17,12,15,18,17,8,16,0,10,8,10,10,17,15,10,0,0,12,12,16,9,17,15,0,17,5,17,12,0,2,10,17,7,10,10,17,17,17,8,10,0,18,16,16,9,15,15,17,16,18,17,16,16,17,15,16,0,18,9,17,15,10,16,17,0,0,18,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,25,18,17,8,12,18,0,16,16,9,16,17,27,16,27,27,25,18,17,23,16,0,28,18,17,18,10,25,17,0,0,20,20,9,16,10,8,0,26,12,17,19,0,2,18,18,14,24,10,16,16,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,0,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,23,7,16,16,16,16,0,14,14,14,23,21,23,16,21,23,23,14,23,0,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,8,8,15,8,15,9,9,7,14,0,8,8,15,16,16,8,16,14,15,8,14,0,9,9,8,8,15,16,8,0,0,9,9,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,15,16,15,8,8,15,16,14,14,8,0,14,16,15,16,15,15,14,15,15,14,0,16,8,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,14,14,14,7,9,15,17,14,14,8,14,0,14,15,15,16,15,16,14,14,14,0,15,8,14,16,7,15,14,0,0,17,17,7,14,7,7,0,14,9,14,16,0,0,14,14,14,14,7,25,18,24,8,17,17,27,16,23,15,16,14,0,22,33,25,31,23,24,23,23,0,27,17,17,16,17,31,17,0,0,17,17,16,16,17,15,0,33,10,24,17,0,2,18,25,14,24,10,15,15,22,8,15,16,16,14,21,16,15,15,22,0,23,15,23,21,22,15,21,0,16,9,15,15,15,23,15,0,0,16,16,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,8,25,18,24,8,17,18,27,16,23,16,16,15,33,23,0,24,31,23,24,22,23,0,27,17,17,16,17,31,17,0,0,18,18,16,16,17,15,0,32,10,24,17,0,2,17,25,14,24,10,24,17,17,8,12,17,27,16,16,8,15,16,25,15,24,0,23,18,17,23,16,0,25,16,17,17,10,23,17,0,0,19,19,9,16,10,8,0,25,12,17,19,0,2,18,17,14,24,10,23,15,22,8,15,16,25,14,21,16,15,15,31,23,31,23,0,21,22,23,21,0,25,18,15,15,15,32,15,0,0,16,16,14,14,15,15,0,31,8,22,15,0,0,16,22,14,22,8,16,16,23,7,18,16,18,16,23,14,14,16,23,21,23,18,21,0,23,14,23,0,16,7,16,16,16,21,16,0,0,18,18,16,16,16,14,0,23,11,23,18,0,2,16,23,14,16,9,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,0,15,23,0,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,24,14,17,10,22,15,15,8,8,15,23,14,14,8,15,14,23,15,22,23,23,14,15,0,14,0,23,16,15,15,8,23,15,0,0,15,15,7,14,8,8,0,23,8,15,15,0,0,16,15,14,22,8,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,23,14,0,0,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,23,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,18,17,8,10,18,28,16,16,9,16,15,27,16,27,25,25,16,17,23,16,0,0,18,17,16,10,25,17,0,0,18,18,9,16,10,8,0,26,10,17,17,0,2,18,18,14,24,10,16,8,8,8,8,9,18,7,7,9,8,8,17,9,17,16,18,7,8,16,7,0,18,0,8,8,8,18,8,0,0,9,9,7,7,8,8,0,17,1,8,8,0,0,9,8,7,15,8,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,0,17,8,0,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,15,16,15,8,10,15,18,14,14,8,16,16,16,15,16,17,15,16,15,15,14,0,16,8,15,0,8,15,15,0,0,17,17,7,14,8,8,0,15,10,15,17,0,0,15,16,14,15,8,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,0,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,23,15,22,8,15,16,25,14,21,16,15,15,31,23,31,23,32,21,22,23,21,0,25,18,15,15,15,0,15,0,0,16,16,14,14,15,15,0,31,8,22,15,0,0,16,22,14,22,8,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,0,17,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,12,18,20,16,16,9,15,17,17,16,18,19,16,18,17,15,16,0,18,9,17,17,10,16,17,0,0,0,20,9,16,10,8,0,17,12,17,24,0,2,17,17,14,17,10,17,17,17,8,12,18,20,16,16,9,15,17,17,16,18,19,16,18,17,15,16,0,18,9,17,17,10,16,17,0,0,20,0,9,16,10,8,0,17,12,17,19,0,2,17,17,14,17,10,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,16,0,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,0,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,0,10,8,10,8,17,15,10,0,0,10,10,16,9,0,15,0,17,3,17,10,0,2,10,17,7,10,10,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,15,14,15,8,14,0,8,8,8,8,15,15,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,17,24,8,17,17,26,16,23,15,15,14,33,22,32,25,31,23,24,23,23,0,26,17,17,15,17,31,17,0,0,17,17,16,16,17,15,0,0,10,24,17,0,2,18,24,14,24,10,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,12,8,11,10,8,9,0,10,1,10,10,3,8,10,0,0,12,12,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,0,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,0,17,0,2,17,24,14,17,10,17,17,17,8,12,17,19,16,16,8,15,16,17,15,17,19,15,18,17,15,16,0,17,8,17,17,10,15,17,0,0,24,19,9,16,10,8,0,17,12,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,0,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,17,17,17,8,10,17,18,16,16,8,15,14,18,15,17,18,16,16,17,16,16,0,18,9,17,15,10,16,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,0,17,14,17,10,17,18,24,8,17,17,18,16,23,15,16,14,25,22,25,17,22,23,24,15,23,0,18,8,17,16,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,0,14,17,10,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,0,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,24,17,17,8,10,17,24,16,16,8,15,14,24,15,24,24,22,16,17,22,16,0,24,15,17,15,10,22,17,0,0,17,17,9,16,10,8,0,24,10,17,17,0,2,17,17,14,0,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,0,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,0,0,18,17,8,10,18,26,16,16,8,15,14,26,15,25,24,23,16,17,22,16,25,0,16,17,16,10,23,17,0,0,18,17,9,16,10,9,0,26,10,17,17,0,3,18,17,14,25,10,18,0,17,15,10,18,19,16,16,8,16,14,19,15,18,17,15,16,17,22,16,18,0,8,24,17,10,15,17,0,0,18,17,9,16,10,9,0,18,17,17,17,0,3,18,18,14,18,10,17,17,0,8,10,18,18,16,17,8,16,14,17,15,18,18,16,16,17,15,16,17,0,9,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,8,15,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,15,7,8,0,8,15,8,8,8,8,0,0,8,8,7,7,8,8,0,8,8,8,8,0,0,8,8,7,8,8,10,10,10,8,0,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,0,8,10,8,11,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,18,18,18,8,10,0,20,16,17,9,16,15,18,16,19,18,17,16,17,15,16,18,0,10,17,16,10,16,17,0,0,19,18,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,26,19,18,8,10,20,0,16,17,9,17,15,28,16,28,26,26,16,17,23,16,28,0,19,17,17,10,25,17,0,0,19,18,9,16,10,9,0,27,10,17,17,0,3,19,18,14,25,10,16,16,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,0,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,17,7,9,17,17,16,0,7,15,14,16,14,17,17,15,16,16,14,16,16,0,8,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,8,8,8,8,8,9,9,7,7,0,8,8,8,9,9,8,9,7,8,8,7,9,0,9,8,8,8,9,8,0,0,9,9,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,15,16,16,8,8,16,17,14,15,8,0,14,16,15,17,16,16,14,15,15,14,16,0,9,15,16,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,14,14,14,7,7,15,15,14,14,8,14,0,14,15,15,14,15,14,14,14,14,15,0,8,14,14,7,15,14,0,0,15,15,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,26,19,17,8,10,18,28,16,16,8,16,14,0,15,26,25,24,16,17,23,16,27,0,17,17,17,10,24,17,0,0,18,17,9,16,10,9,0,27,10,17,17,0,3,19,18,14,25,10,15,15,15,8,8,16,16,14,14,9,15,15,15,0,16,15,16,14,15,15,14,16,0,9,15,15,8,16,15,0,0,16,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,25,18,18,8,10,19,28,16,17,9,17,15,26,16,0,25,25,16,17,22,16,27,0,18,17,16,10,24,17,0,0,18,18,9,16,10,8,0,25,10,17,17,0,2,17,18,14,24,10,24,17,18,8,10,18,26,16,17,8,16,14,25,15,25,0,24,16,17,23,16,25,0,17,17,15,10,23,17,0,0,17,17,9,16,10,8,0,25,10,17,17,0,2,18,17,14,24,10,23,15,16,8,8,17,26,14,15,9,16,15,24,16,25,24,0,14,15,23,14,25,0,19,15,15,8,25,15,0,0,16,16,7,14,8,8,0,24,8,15,15,0,0,16,15,14,22,8,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,0,16,14,16,16,0,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,0,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,22,22,15,15,8,15,23,14,14,8,15,14,23,15,22,23,23,14,15,0,14,23,0,16,22,15,8,23,15,0,0,15,15,7,14,8,8,0,23,15,15,15,0,0,16,15,14,22,8,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,0,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,25,18,17,8,10,18,28,16,16,9,16,15,27,16,27,25,25,16,17,23,16,0,0,18,17,16,10,25,17,0,0,18,18,9,16,10,8,0,26,10,17,17,0,2,18,18,14,24,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,8,9,8,8,10,19,7,8,9,9,8,17,9,18,17,19,7,8,16,7,18,0,0,8,8,8,18,8,0,0,9,9,7,7,8,8,0,17,1,8,8,0,0,9,8,7,15,8,17,24,17,15,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,22,16,17,0,8,0,15,10,15,17,0,0,17,17,9,16,10,8,0,17,17,17,17,0,2,17,17,14,17,10,16,17,15,8,8,16,17,14,14,8,16,14,17,15,16,15,15,14,15,15,14,16,0,8,15,0,8,15,15,0,0,16,15,7,14,8,9,0,16,8,15,15,0,1,16,16,14,16,8,10,10,10,8,11,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,0,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,23,15,15,8,8,16,25,14,14,9,15,15,24,16,24,23,25,14,15,23,14,25,0,18,15,15,8,0,15,0,0,16,16,7,14,8,8,0,24,8,15,15,0,0,16,15,14,22,8,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,0,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,17,8,10,19,19,16,16,9,15,15,18,16,18,17,16,16,17,15,16,18,0,9,17,16,10,16,17,0,0,0,18,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,17,17,17,8,10,18,18,16,16,9,15,15,17,16,18,17,16,16,17,15,16,18,0,9,17,15,10,16,17,0,0,18,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,0,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,0,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,0,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,9,9,8,8,8,9,9,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,0,8,8,9,8,8,8,0,0,9,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26,18,17,8,10,18,27,16,16,8,15,14,27,15,25,25,24,16,17,23,16,26,0,17,17,16,10,24,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,19,17,14,25,10,10,17,10,8,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,15,9,10,0,1,17,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,10,7,10,3,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,0,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,0,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,0,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,18,18,17,8,10,18,19,16,16,8,15,14,19,15,17,18,16,16,17,16,16,18,0,9,17,16,10,16,17,0,0,18,17,9,16,10,9,0,19,10,17,17,0,3,0,17,14,18,10,17,18,17,8,10,17,18,16,16,8,16,14,18,15,18,17,15,16,17,15,16,18,0,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,0,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,25,18,17,8,10,18,25,16,16,8,15,14,25,15,24,24,22,16,17,22,16,24,0,15,17,16,10,22,17,0,0,18,17,9,16,10,9,0,25,10,17,17,0,3,18,17,14,0,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,0,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,0,0,9,8,8,9,15,16,14,7,8,15,7,16,8,16,22,16,7,8,15,7,16,16,0,8,15,8,16,16,0,0,15,15,7,14,8,8,0,16,1,8,8,0,0,15,8,14,22,15,9,0,8,8,9,8,8,7,7,10,8,7,8,8,8,8,8,7,8,8,9,8,8,0,10,8,8,10,11,0,0,8,8,7,7,10,10,0,8,1,10,8,0,0,10,8,9,8,8,8,8,0,8,8,9,9,7,8,8,9,7,8,8,9,9,9,7,8,8,7,8,9,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,9,9,8,8,0,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,8,8,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,15,8,9,8,8,0,10,14,8,9,16,8,8,9,10,16,10,7,8,8,7,9,10,0,8,15,8,9,15,0,0,16,16,7,14,8,8,0,8,1,8,8,0,0,15,8,14,15,15,16,8,9,8,8,10,0,7,8,9,9,8,17,9,18,17,19,7,8,16,7,18,19,0,8,8,8,18,8,0,0,9,9,7,7,8,8,0,17,1,8,8,0,0,9,8,7,15,8,14,7,7,7,7,14,7,0,7,7,14,7,7,7,7,14,7,7,7,7,7,7,7,0,7,14,7,7,14,0,0,14,14,7,14,7,7,0,7,0,7,7,0,0,14,7,14,14,14,7,7,8,7,7,8,8,7,0,7,8,7,7,7,8,8,8,7,7,7,7,7,8,0,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,8,10,8,8,8,9,9,7,7,0,10,10,8,11,9,8,11,7,8,10,9,9,9,0,10,10,8,13,10,0,0,9,9,7,7,10,12,0,8,1,10,8,0,0,10,8,11,8,8,15,8,9,8,8,16,9,14,8,10,0,9,8,10,9,16,11,7,8,10,7,8,9,0,8,17,8,10,15,0,0,15,15,7,14,8,10,0,8,1,8,8,0,0,15,8,16,15,15,7,7,7,7,7,8,8,7,7,10,9,0,7,10,8,7,10,7,7,9,7,8,8,0,7,9,7,10,7,0,0,8,8,7,7,7,9,0,7,0,7,7,0,0,7,7,9,7,7,16,8,8,8,8,8,17,7,7,8,8,7,0,8,16,16,17,7,8,16,7,17,17,0,8,8,8,17,8,0,0,8,8,7,7,8,8,0,17,1,8,8,0,0,9,8,7,15,8,8,8,8,8,8,9,9,7,7,11,10,10,8,0,9,8,11,7,8,10,7,9,9,0,8,10,8,11,8,0,0,9,9,7,7,8,10,0,8,1,8,8,0,0,8,8,9,8,8,16,8,9,8,8,10,18,7,8,9,9,8,16,9,0,16,18,7,8,15,7,17,18,0,8,8,8,17,8,0,0,9,9,7,7,8,8,0,16,1,8,8,0,0,8,8,7,15,8,22,8,9,8,8,16,17,14,8,8,16,7,16,8,16,0,17,7,8,16,7,16,17,0,8,15,8,16,15,0,0,15,15,7,14,8,8,0,16,1,8,8,0,0,16,8,14,22,15,16,8,9,8,8,10,19,7,8,11,11,10,17,11,18,17,0,7,8,18,7,18,19,0,8,10,8,20,8,0,0,9,9,7,7,8,10,0,17,1,8,8,0,0,9,8,9,15,8,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,0,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,0,8,7,8,8,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,15,8,8,8,8,8,16,7,7,10,10,9,16,10,15,16,18,7,8,0,7,16,16,0,8,10,8,18,8,0,0,8,8,7,7,8,10,0,16,1,8,8,0,0,9,8,9,15,8,7,9,7,7,7,7,7,7,7,9,7,7,7,7,7,7,7,7,7,7,0,7,7,0,9,7,7,9,9,0,0,7,7,7,7,9,9,0,7,0,9,7,0,0,9,7,9,7,7,16,8,8,8,8,9,18,7,7,9,8,8,17,9,17,16,18,7,8,16,7,0,18,0,8,8,8,18,8,0,0,9,9,7,7,8,8,0,17,1,8,8,0,0,9,8,7,15,8,16,8,9,8,8,10,19,7,8,9,9,8,17,9,18,17,19,7,8,16,7,18,0,0,8,8,8,18,8,0,0,9,9,7,7,8,8,0,17,1,8,8,0,0,9,8,7,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,8,8,8,8,8,7,7,10,8,7,8,8,8,8,8,7,8,8,9,8,8,0,0,8,8,10,10,0,0,8,8,7,7,10,10,0,8,1,10,8,0,0,10,8,9,8,8,15,8,8,8,8,15,8,14,7,10,17,9,8,10,8,15,10,7,8,10,7,8,8,0,8,0,8,10,15,0,0,15,15,7,14,8,10,0,8,1,8,8,0,0,15,8,16,15,15,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,0,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,16,10,8,8,8,9,18,7,7,13,10,10,17,11,17,16,20,7,8,18,9,18,18,0,10,10,8,0,10,0,0,9,9,7,7,10,12,0,17,1,10,8,0,0,11,8,11,15,8,16,11,8,8,9,15,8,14,7,10,15,7,8,8,8,15,8,7,8,8,9,8,8,0,10,15,8,10,0,0,0,15,15,7,14,10,10,0,8,1,10,8,0,0,17,8,16,15,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,8,8,8,8,16,9,14,7,9,15,8,8,9,9,15,9,7,8,8,7,9,9,0,8,15,8,9,15,0,0,0,16,7,14,8,8,0,8,1,8,8,0,0,15,8,14,15,15,15,8,8,8,8,16,9,14,7,9,15,8,8,9,9,15,9,7,8,8,7,9,9,0,8,15,8,9,15,0,0,16,0,7,14,8,8,0,8,1,8,8,0,0,15,8,14,15,15,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,0,0,7,7,0,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,14,7,7,7,7,14,7,14,7,7,14,7,7,7,7,14,7,7,7,7,7,7,7,0,7,14,7,7,14,0,0,14,14,7,0,7,7,0,7,0,7,7,0,0,14,7,14,14,14,8,10,8,8,8,8,8,7,7,10,8,7,8,8,8,8,8,7,8,8,9,8,8,0,10,8,8,10,10,0,0,8,8,7,7,0,10,0,8,1,10,8,0,0,10,8,9,8,8,8,10,8,8,8,8,8,7,7,12,10,9,8,10,8,8,10,7,8,10,9,8,8,0,10,10,8,12,10,0,0,8,8,7,7,10,0,0,8,1,10,8,0,0,10,8,11,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,8,8,8,8,8,17,7,7,8,8,7,17,8,16,16,17,7,8,16,7,17,17,0,8,8,8,17,8,0,0,8,8,7,7,8,8,0,0,1,8,8,0,0,9,8,7,15,8,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,0,1,1,0,0,1,1,0,1,1,8,10,8,8,8,8,8,7,7,10,8,7,8,8,8,8,8,7,8,8,9,8,8,0,10,8,8,10,10,0,0,8,8,7,7,10,10,0,8,1,0,8,0,0,10,8,9,8,8,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,0,0,0,8,8,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,10,8,8,8,15,9,14,7,10,15,7,9,8,8,16,9,7,8,9,9,9,9,0,10,15,8,11,17,0,0,15,15,7,14,10,10,0,9,1,10,8,0,0,0,8,16,15,15,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,0,7,8,8,14,9,7,7,7,14,7,14,7,11,16,9,7,9,7,14,9,7,7,9,9,7,7,0,9,16,7,11,16,0,0,14,14,7,14,9,11,0,7,0,9,7,0,0,16,7,0,14,14,22,8,8,8,8,15,15,14,7,8,15,7,15,8,15,22,15,7,8,15,7,15,15,0,8,15,8,15,15,0,0,15,15,7,14,8,8,0,15,1,8,8,0,0,15,8,14,0,15,15,8,8,8,8,15,8,14,7,8,15,7,8,8,8,15,8,7,8,8,7,8,8,0,8,15,8,8,15,0,0,15,15,7,14,8,8,0,8,1,8,8,0,0,15,8,14,15,0,0,17,18,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,0,15,10,15,17,0,0,18,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,17,0,17,15,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,22,18,17,24,10,0,15,10,17,19,0,0,17,17,9,16,12,10,0,17,17,19,17,0,2,19,17,16,17,10,18,17,0,8,11,17,18,18,16,8,15,14,18,15,18,19,17,17,17,17,16,17,17,8,0,16,10,15,19,0,0,18,18,9,16,11,9,0,17,11,17,18,0,2,17,17,14,18,11,8,15,8,0,16,15,8,14,14,22,16,7,8,15,8,9,8,7,15,15,7,8,15,8,0,8,15,8,8,0,0,8,8,14,14,15,15,0,8,15,8,8,0,7,8,8,14,8,15,10,10,11,16,0,17,10,17,16,15,16,7,11,15,10,11,8,10,17,9,9,10,10,8,0,9,10,8,11,0,0,10,10,9,16,18,9,0,10,11,10,10,0,2,10,10,14,11,11,17,17,17,15,17,0,17,23,23,15,22,14,17,22,17,17,15,16,24,15,16,17,17,8,0,15,10,15,17,0,0,17,17,9,23,17,8,0,17,17,17,17,0,2,17,17,21,17,10,17,17,18,8,10,17,0,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,0,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,17,16,18,14,17,23,16,0,23,14,21,14,17,21,16,17,15,17,23,15,16,16,16,7,0,15,9,14,17,0,0,17,17,9,23,17,8,0,16,17,16,16,0,2,16,16,21,17,10,16,16,16,14,16,23,16,23,0,14,21,14,16,21,16,16,14,16,23,14,16,16,16,7,0,14,9,14,16,0,0,16,16,9,23,16,7,0,16,16,16,16,0,2,16,16,21,16,9,8,10,8,22,15,15,8,14,14,0,15,7,8,15,8,8,8,7,15,8,9,8,8,10,0,8,15,10,10,0,0,8,8,14,14,17,17,0,8,8,10,8,0,7,10,8,16,8,15,15,15,15,16,16,22,15,21,21,15,0,14,15,22,15,16,15,14,22,15,14,15,15,8,0,15,8,15,15,0,0,15,15,7,21,15,8,0,15,15,15,15,0,0,15,15,21,15,8,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,0,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,17,17,18,8,11,17,17,17,16,8,15,14,0,15,17,17,15,17,17,16,16,17,17,8,0,16,10,15,18,0,0,17,17,9,16,11,9,0,17,11,17,17,0,2,17,17,14,18,11,15,15,15,15,15,22,15,21,21,15,22,14,15,0,15,15,15,14,22,15,14,15,15,8,0,15,8,15,15,0,0,15,15,7,21,15,8,0,15,15,15,15,0,0,15,15,21,15,8,17,17,18,8,10,17,18,16,16,8,15,14,17,15,0,18,16,16,17,16,16,17,17,8,0,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,18,17,19,9,11,17,18,17,16,8,16,14,17,15,18,0,17,16,17,16,16,17,17,8,0,15,10,15,18,0,0,18,18,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,16,15,17,8,8,15,16,15,14,8,15,14,15,15,16,17,0,14,15,16,14,15,15,8,0,15,8,15,16,0,0,16,16,7,14,8,8,0,15,8,15,16,0,0,15,15,14,15,8,16,16,17,7,10,16,16,17,16,7,14,14,17,14,16,16,14,0,16,15,16,16,16,7,0,15,9,14,17,0,0,16,16,9,16,10,8,0,16,10,16,16,0,2,16,16,14,17,10,17,17,17,15,17,24,17,23,23,15,22,14,17,22,17,17,15,16,0,15,16,17,17,8,0,15,10,15,17,0,0,17,17,9,23,17,8,0,17,17,17,17,0,2,17,17,21,17,10,15,22,17,15,9,15,16,15,14,8,15,14,16,15,16,16,16,15,15,0,14,15,22,8,0,16,8,15,17,0,0,15,15,7,14,9,9,0,15,16,15,16,0,0,15,15,14,16,9,16,18,16,7,9,16,16,16,16,9,14,14,16,14,16,16,14,16,16,14,0,16,16,9,0,14,9,16,18,0,0,16,16,9,16,11,9,0,16,9,18,16,0,2,18,16,16,16,9,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,0,17,8,0,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,17,24,17,15,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,22,16,17,0,8,0,15,10,15,17,0,0,17,17,9,16,10,8,0,17,17,17,17,0,2,17,17,14,17,10,8,10,8,8,8,8,8,7,7,10,8,7,8,8,8,8,8,7,8,8,9,8,8,0,0,8,8,10,10,0,0,8,8,7,7,10,10,0,8,1,10,8,0,0,10,8,9,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,16,8,9,15,15,15,14,8,15,14,16,15,15,15,15,15,15,16,14,15,15,8,0,0,8,15,16,0,0,15,15,7,14,9,9,0,15,9,15,15,0,0,15,15,14,16,9,10,10,10,15,10,10,10,9,9,15,8,7,10,8,10,10,8,9,10,8,9,10,10,8,0,8,0,8,10,0,0,10,10,16,9,10,15,0,10,3,10,10,0,9,10,10,7,10,17,15,17,15,8,8,15,15,14,14,10,15,14,15,15,15,15,15,14,15,15,16,15,15,10,0,15,8,0,17,0,0,15,15,7,14,10,11,0,15,8,17,15,0,0,17,15,16,15,8,17,19,19,8,11,17,18,17,16,10,15,14,18,15,18,18,16,17,17,17,18,17,17,10,0,16,10,17,0,0,0,17,17,9,16,13,11,0,17,11,19,18,0,2,19,17,16,18,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,17,18,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,0,15,10,15,17,0,0,0,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,18,17,18,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,0,15,10,15,17,0,0,18,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,9,9,9,14,9,9,9,9,9,14,7,7,9,7,9,9,7,9,9,7,9,9,9,7,0,7,16,7,9,0,0,9,9,0,9,9,14,0,9,2,9,9,0,9,9,9,7,9,16,16,16,16,14,16,23,16,23,23,14,21,14,16,21,16,16,14,16,23,14,16,16,16,7,0,14,9,14,16,0,0,16,16,9,0,16,7,0,16,16,16,16,0,2,16,16,21,16,9,10,12,11,15,18,17,10,17,16,17,15,7,11,15,10,10,8,10,17,9,11,10,10,10,0,9,10,10,13,0,0,10,10,9,16,0,11,0,10,11,12,10,0,2,12,10,16,11,11,8,10,9,15,9,8,8,8,7,17,8,7,9,8,8,8,8,8,8,9,9,8,8,10,0,9,15,11,11,0,0,8,8,14,7,11,0,0,8,2,10,8,0,7,10,8,9,9,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,0,15,10,15,17,0,0,17,17,9,16,10,8,0,0,10,17,17,0,2,17,17,14,17,10,10,17,11,15,11,17,10,17,16,8,15,7,11,15,10,10,8,10,17,16,9,10,17,1,0,9,3,8,11,0,0,10,10,2,16,11,2,0,10,0,10,10,0,2,10,10,14,11,4,17,19,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,0,15,10,17,19,0,0,17,17,9,16,12,10,0,17,10,0,17,0,2,19,17,16,17,10,17,17,18,8,10,17,18,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,0,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,7,2,2,2,2,2,7,0,0,2,0,2,2,0,2,2,0,2,2,2,0,0,0,9,0,2,0,0,2,2,9,2,2,7,0,2,2,2,2,0,0,2,2,0,2,9,17,19,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,0,15,10,17,19,0,0,17,17,9,16,12,10,0,17,10,19,17,0,2,0,17,16,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,0,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,14,16,14,14,14,21,14,21,21,16,21,14,14,21,14,14,14,14,21,14,16,14,14,9,0,14,7,16,16,0,0,14,14,7,21,16,9,0,14,14,16,14,0,0,16,14,0,14,7,17,17,18,8,11,17,17,17,16,8,15,14,18,15,17,17,15,17,17,16,16,17,17,8,0,16,10,15,18,0,0,17,17,9,16,11,9,0,17,11,17,17,0,2,17,17,14,0,11,10,10,11,15,11,10,10,10,9,15,8,7,11,8,10,10,8,10,10,9,9,10,10,8,0,9,17,8,11,0,0,10,10,16,9,11,16,0,10,4,10,10,0,9,10,10,7,11,0,0,16,15,8,8,23,16,21,14,8,22,14,16,15,15,22,15,14,15,15,14,15,16,15,15,0,8,15,22,0,0,23,22,7,21,8,9,0,16,8,15,15,0,1,23,15,21,23,15,16,0,15,8,8,16,17,14,14,8,16,14,17,15,16,15,15,14,15,15,14,16,17,8,15,0,8,15,15,0,0,16,15,7,14,8,9,0,16,8,15,15,0,1,16,16,14,16,8,15,15,0,8,9,15,15,15,14,8,15,14,17,15,15,15,15,15,15,16,14,15,15,8,16,0,8,16,16,0,0,15,15,7,14,9,10,0,15,9,15,15,0,0,15,15,14,17,9,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,0,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,8,8,9,8,0,8,10,8,7,8,8,9,9,8,8,10,8,10,8,9,7,10,8,8,9,0,8,8,9,0,0,10,10,7,7,9,9,0,8,4,8,10,0,0,8,8,7,9,9,23,16,15,8,8,0,16,21,14,8,22,14,16,15,15,22,15,14,15,15,14,15,16,15,15,0,8,15,22,0,0,23,22,7,21,8,9,0,16,8,15,15,0,1,23,15,21,23,15,16,17,15,8,10,16,0,14,14,8,16,16,17,15,16,17,15,16,15,15,14,18,17,8,15,0,8,15,15,0,0,18,17,7,14,8,9,0,16,10,15,17,0,1,16,16,14,16,8,21,14,15,7,8,21,14,0,14,7,21,14,15,14,14,21,14,15,14,15,14,14,14,14,15,0,7,14,22,0,0,21,21,7,21,8,8,0,14,8,14,14,0,0,21,14,21,22,15,14,14,14,7,7,14,14,14,0,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,0,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,8,8,8,8,8,8,8,7,7,0,10,9,8,10,8,8,10,7,8,10,7,8,8,10,8,0,8,10,8,0,0,8,8,7,7,8,10,0,8,1,8,8,0,0,8,8,9,8,8,22,16,15,8,8,22,16,21,14,10,0,16,16,17,16,22,17,14,15,17,14,16,16,17,15,0,8,17,22,0,0,22,22,7,21,8,10,0,15,8,15,15,0,0,22,16,23,22,15,14,14,14,7,9,14,16,14,14,9,16,0,14,16,14,16,16,16,14,16,14,16,14,9,14,0,7,16,14,0,0,16,16,7,14,7,9,0,14,9,14,16,0,0,14,14,16,14,7,16,17,17,8,9,16,17,15,14,8,16,14,0,15,16,15,15,15,15,16,14,16,17,8,16,0,8,16,16,0,0,16,15,7,14,9,11,0,16,9,15,15,0,1,16,16,16,18,9,15,15,15,8,8,15,15,14,14,10,17,16,15,0,15,15,17,14,15,17,14,15,15,10,15,0,8,17,15,0,0,15,15,7,14,8,10,0,15,8,15,15,0,0,15,15,16,15,8,15,16,15,8,8,15,16,14,14,8,16,14,16,15,0,15,15,14,15,15,14,16,16,8,15,0,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,16,14,15,8,22,15,15,8,10,22,17,21,14,8,22,16,15,15,15,0,15,16,15,15,14,17,15,15,15,0,8,15,22,0,0,24,24,7,21,8,8,0,15,10,15,17,0,0,22,15,21,22,15,15,15,15,8,8,15,15,14,14,10,17,16,15,17,15,15,0,14,15,17,14,15,15,10,15,0,8,17,15,0,0,15,15,7,14,8,10,0,15,8,15,15,0,0,15,15,16,15,8,14,14,15,7,10,14,16,15,14,7,14,16,15,14,14,16,14,0,14,15,14,16,14,7,15,0,7,14,15,0,0,16,16,7,14,8,8,0,14,10,14,16,0,0,14,14,14,15,8,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,0,15,14,15,15,8,15,0,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,15,15,16,8,9,15,15,15,14,10,17,16,16,17,15,15,17,15,15,0,14,15,15,10,16,0,8,17,16,0,0,15,15,7,14,9,11,0,15,9,15,15,0,0,15,15,16,16,9,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,0,14,14,7,14,0,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,15,16,15,8,10,15,18,14,14,8,16,16,16,15,16,17,15,16,15,15,14,0,16,8,15,0,8,15,15,0,0,17,17,7,14,8,8,0,15,10,15,17,0,0,15,16,14,15,8,16,17,15,8,8,16,17,14,14,8,16,14,17,15,16,15,15,14,15,15,14,16,0,8,15,0,8,15,15,0,0,16,15,7,14,8,9,0,16,8,15,15,0,1,16,16,14,16,8,15,8,8,8,8,15,8,14,7,10,17,9,8,10,8,15,10,7,8,10,7,8,8,0,8,0,8,10,15,0,0,15,15,7,14,8,10,0,8,1,8,8,0,0,15,8,16,15,15,15,15,16,8,9,15,15,15,14,8,15,14,16,15,15,15,15,15,15,16,14,15,15,8,0,0,8,15,16,0,0,15,15,7,14,9,9,0,15,9,15,15,0,0,15,15,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,0,0,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,15,15,16,8,8,15,15,14,14,10,17,16,16,17,15,15,17,14,15,17,14,15,15,10,15,0,8,0,15,0,0,15,15,7,14,8,11,0,15,8,15,15,0,0,15,15,16,16,8,22,15,16,8,9,22,15,22,14,8,22,14,16,15,15,22,15,15,15,16,14,15,15,15,16,0,8,15,0,0,0,22,22,7,21,9,9,0,15,9,15,15,0,0,22,15,21,23,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,16,15,8,10,23,18,21,14,8,22,16,16,15,15,24,15,16,15,15,14,17,16,15,15,0,8,15,22,0,0,0,24,7,21,8,9,0,16,10,15,17,0,1,23,15,21,23,15,22,15,15,8,10,22,17,21,14,8,22,16,15,15,15,24,15,16,15,15,14,17,15,15,15,0,8,15,22,0,0,24,0,7,21,8,8,0,15,10,15,17,0,0,22,15,21,22,15,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,0,0,7,7,0,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,0,7,14,21,0,0,21,21,7,0,7,7,0,14,7,14,14,0,0,21,14,21,21,14,8,8,9,8,9,8,8,8,7,8,8,7,9,8,8,8,8,8,8,9,7,8,8,8,9,0,8,8,9,0,0,8,8,7,7,0,9,0,8,2,8,8,0,0,8,8,7,9,9,9,9,10,8,9,9,9,8,7,10,10,9,11,10,8,8,10,8,8,11,7,8,9,10,9,0,8,11,9,0,0,9,8,7,7,9,0,0,9,2,8,8,0,1,9,8,9,11,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16,16,15,8,8,16,16,14,14,8,15,14,16,15,15,15,15,14,15,15,14,15,16,8,15,0,8,15,15,0,0,16,15,7,14,8,9,0,0,8,15,15,0,1,16,15,14,16,8,8,8,9,1,4,8,10,8,7,1,8,9,9,8,8,10,8,10,8,9,7,10,8,1,9,0,1,8,9,0,0,10,10,0,7,2,2,0,8,0,8,10,0,0,8,8,7,9,2,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,15,14,15,15,8,15,0,8,15,15,0,0,15,15,7,14,8,8,0,15,8,0,15,0,0,15,15,14,15,8,15,15,15,8,10,15,17,14,14,8,15,16,15,15,15,17,15,16,15,15,14,17,15,8,15,0,8,15,15,0,0,17,17,7,14,8,8,0,15,10,15,0,0,0,15,15,14,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,23,16,15,8,8,23,16,21,14,8,22,14,16,15,15,22,15,14,15,15,14,15,16,15,15,0,8,15,22,0,0,23,22,7,21,8,9,0,16,8,15,15,0,1,0,15,21,23,15,15,16,15,8,8,15,16,14,14,8,16,14,16,15,16,15,15,14,15,15,14,16,16,8,15,0,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,0,14,15,8,21,14,14,7,7,21,14,21,14,9,23,16,16,16,14,21,16,14,14,16,14,14,14,16,14,0,7,16,21,0,0,21,21,7,21,7,9,0,14,7,14,14,0,0,21,14,0,21,14,23,16,17,8,9,23,16,22,14,8,22,14,18,15,15,22,15,15,15,16,14,15,16,15,16,0,8,16,23,0,0,23,22,7,21,9,11,0,16,9,15,15,0,1,23,15,21,0,16,15,8,9,8,9,15,8,15,7,8,15,7,9,8,8,15,8,8,8,9,7,8,8,15,9,0,8,8,16,0,0,15,15,7,14,9,9,0,8,2,8,8,0,0,15,8,14,16,0,0,10,10,8,10,10,10,9,9,8,10,7,10,10,12,10,8,9,10,10,9,10,10,8,10,8,0,8,10,0,0,10,10,9,11,10,8,0,10,3,10,10,0,4,10,12,7,12,12,10,0,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,10,10,0,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,8,8,8,0,8,8,8,7,7,15,8,7,8,8,8,8,8,7,8,8,7,8,8,8,15,8,0,8,8,0,0,8,8,14,7,8,15,0,8,1,8,8,0,7,8,8,7,8,15,10,10,17,8,0,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,11,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,10,10,10,8,10,0,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,10,10,10,8,10,10,0,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,9,9,9,7,9,9,9,0,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,0,7,9,0,0,9,9,9,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,9,9,16,7,16,9,9,9,0,14,7,7,16,14,16,9,14,16,16,7,16,16,9,7,9,7,0,14,9,0,0,9,9,16,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,8,8,15,15,15,8,8,7,14,0,8,7,15,15,15,8,15,14,15,8,14,15,8,8,15,8,0,15,8,0,0,8,8,22,7,15,23,0,15,1,15,8,0,7,8,15,7,8,15,10,8,8,8,8,8,8,7,7,8,0,7,8,10,10,8,8,7,8,10,7,8,8,8,8,8,0,8,8,0,0,8,8,7,9,8,8,0,8,1,8,8,0,2,8,10,7,10,10,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,10,10,17,8,17,10,10,9,16,15,8,7,0,15,17,10,15,16,17,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,10,8,15,8,15,8,8,7,14,15,10,7,15,0,17,8,15,14,15,10,14,15,8,8,8,8,0,15,8,0,0,8,8,14,9,15,15,0,15,1,15,8,0,2,8,17,7,10,10,12,10,17,8,17,10,10,9,16,15,10,7,17,17,0,10,15,16,17,10,16,17,10,8,10,8,0,15,10,0,0,10,10,16,11,17,15,0,17,3,17,10,0,4,10,19,7,12,12,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,0,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,0,14,15,8,14,15,8,8,8,8,0,15,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,0,16,7,16,16,9,7,9,7,0,14,9,0,0,9,9,16,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,0,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,10,8,8,8,8,8,8,7,7,8,10,7,8,10,10,8,8,7,8,0,7,8,8,8,8,8,0,8,8,0,0,8,8,7,9,8,8,0,8,1,8,8,0,2,8,10,7,10,10,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,0,16,9,7,9,7,0,14,9,1,1,9,9,17,10,16,14,1,16,2,17,9,1,2,9,17,8,9,9,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,0,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,17,7,10,10,10,10,10,8,11,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,0,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,0,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,10,10,10,15,10,10,10,9,9,15,8,7,10,8,10,10,8,9,10,8,9,10,10,8,0,8,0,8,10,0,0,10,10,16,9,10,15,0,10,3,10,10,0,9,10,10,7,10,17,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,0,0,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,0,0,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,0,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,0,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,0,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,9,9,16,14,16,9,9,9,16,22,7,7,16,14,16,9,14,16,16,7,17,16,9,7,16,7,0,14,9,1,1,9,9,0,10,16,22,1,16,2,17,9,1,9,9,17,8,9,16,11,9,9,7,9,9,9,9,9,7,9,7,9,9,11,9,7,9,9,9,10,9,9,7,9,7,0,7,9,1,1,9,9,10,0,9,7,1,9,2,10,9,1,4,9,12,8,11,11,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,0,15,0,17,3,17,10,0,2,10,17,7,10,10,8,8,15,15,15,8,8,7,14,23,8,7,15,15,15,8,15,14,15,8,14,15,8,8,15,8,0,15,8,0,0,8,8,22,7,15,0,0,15,1,15,8,0,7,8,15,7,8,15,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,0,3,17,10,0,2,10,17,7,10,10,3,3,3,1,3,3,3,2,2,1,1,0,3,1,3,3,1,2,3,1,2,3,3,1,3,1,0,1,3,0,0,3,3,2,2,3,1,0,3,0,3,3,0,2,3,3,0,3,3,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,17,17,10,8,10,8,0,15,10,1,1,10,10,17,10,17,15,1,17,3,0,10,1,2,10,18,8,10,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,0,0,2,10,10,7,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,4,2,2,7,2,2,2,2,2,7,2,0,2,2,4,2,0,2,2,2,2,2,2,0,9,0,0,0,2,0,0,2,2,9,4,2,7,0,2,2,2,2,0,0,2,4,0,4,11,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,0,10,7,10,10,12,10,17,8,17,10,10,9,16,15,10,7,17,17,19,10,15,16,17,10,17,17,10,8,10,8,0,15,10,1,1,10,10,17,12,17,15,1,17,3,18,10,1,4,10,0,8,12,12,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,7,7,7,7,7,0,7,7,1,1,7,7,8,8,7,7,1,7,0,8,7,1,0,7,8,0,7,7,12,10,10,8,10,10,10,9,9,8,10,7,10,10,12,10,8,9,10,10,9,10,10,8,10,8,0,8,10,0,0,10,10,9,11,10,8,0,10,3,10,10,0,4,10,12,7,0,12,12,10,10,15,10,10,10,9,9,15,10,7,10,10,12,10,8,9,10,10,9,10,10,8,17,8,0,8,10,0,0,10,10,16,11,10,15,0,10,3,10,10,0,11,10,12,7,12,0,0,15,15,8,8,15,23,14,14,8,15,14,23,15,23,22,23,14,15,22,14,23,23,16,15,15,8,0,15,0,0,15,15,7,14,8,8,0,23,8,15,15,0,0,15,15,14,22,8,15,0,15,8,8,15,15,14,14,10,15,14,15,15,15,15,15,14,15,15,16,15,15,10,17,15,8,0,17,0,0,15,15,7,14,10,10,0,15,8,17,15,0,0,17,15,16,15,8,15,15,0,9,15,15,15,15,22,16,16,14,23,23,22,15,23,22,22,15,21,22,15,8,15,16,15,0,16,0,0,15,15,14,14,15,16,0,22,8,22,15,0,0,15,22,14,16,9,8,8,9,0,8,8,8,8,8,9,9,7,8,9,8,8,9,8,8,8,7,8,8,8,8,8,8,0,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,9,8,8,15,8,0,8,8,7,14,15,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,15,0,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,15,15,15,8,8,0,16,14,14,9,15,15,15,16,16,15,16,14,15,15,14,16,16,9,15,15,8,0,15,0,0,16,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,23,15,15,8,8,16,0,14,14,9,15,15,24,16,24,23,25,14,15,23,14,25,25,18,15,15,8,0,15,0,0,16,16,7,14,8,8,0,24,8,15,15,0,0,16,15,14,22,8,14,14,15,8,7,14,14,0,15,8,15,14,14,15,14,14,15,15,14,14,14,14,14,7,14,14,7,0,15,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,8,14,14,22,8,14,14,14,15,0,15,15,14,21,22,21,14,22,22,21,14,21,21,14,7,14,14,14,0,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,8,8,10,16,9,15,9,9,8,15,0,11,10,15,19,16,8,19,15,15,10,16,16,9,13,10,10,15,0,11,0,0,9,9,14,7,17,19,0,15,1,17,8,0,0,10,15,11,8,9,15,15,16,9,8,15,15,15,15,11,0,16,15,18,15,15,18,15,15,17,14,15,15,10,15,17,8,0,16,0,0,15,15,7,14,8,10,0,15,8,15,15,0,0,15,15,16,15,9,14,14,14,7,7,15,15,14,14,10,16,0,14,17,15,14,17,14,14,16,14,15,15,10,14,16,7,0,14,0,0,15,15,7,14,7,9,0,14,7,14,14,0,0,14,14,16,14,7,23,15,23,8,15,15,24,14,21,15,15,14,0,22,30,23,31,21,22,23,21,31,24,17,15,16,15,0,15,0,0,15,15,14,14,15,16,0,31,8,22,15,0,0,16,22,14,23,8,15,15,23,9,15,16,16,15,22,19,18,17,22,0,23,15,26,22,22,17,21,23,16,11,15,17,15,0,16,0,0,16,16,14,14,15,17,0,22,8,22,15,0,0,15,22,16,15,9,23,15,22,8,15,16,24,14,21,16,15,15,30,23,0,22,31,21,22,22,21,31,24,17,15,15,15,0,15,0,0,16,16,14,14,15,15,0,30,8,22,15,0,0,15,22,14,22,8,22,15,15,8,8,15,23,14,14,8,15,14,23,15,22,0,23,14,15,23,14,23,23,16,15,15,8,0,15,0,0,15,15,7,14,8,8,0,23,8,15,15,0,0,16,15,14,22,8,23,15,23,9,15,16,25,15,22,19,18,17,31,26,31,23,0,22,22,25,21,32,25,20,15,17,15,0,16,0,0,16,16,14,14,15,17,0,31,8,22,15,0,0,16,22,16,22,9,14,14,22,8,14,14,14,15,22,15,15,14,21,22,21,14,22,0,21,14,21,21,14,7,14,14,14,0,15,0,0,14,14,14,14,14,14,0,21,7,21,14,0,0,14,21,14,14,8,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,22,21,0,15,21,22,15,8,15,15,15,0,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,22,14,15,8,22,15,15,8,8,15,23,14,14,10,17,16,23,17,22,23,25,14,15,0,14,23,23,18,15,17,8,0,15,0,0,15,15,7,14,8,10,0,23,8,15,15,0,0,16,15,16,22,8,14,16,21,7,14,14,14,14,21,16,14,14,21,21,21,14,21,21,21,14,0,21,14,9,16,14,14,0,16,0,0,14,14,14,14,16,16,0,21,7,23,14,0,0,16,21,16,14,7,23,15,22,8,15,16,25,14,21,16,15,15,31,23,31,23,32,21,22,23,21,0,25,18,15,15,15,0,15,0,0,16,16,14,14,15,15,0,31,8,22,15,0,0,16,22,14,22,8,23,15,15,8,8,16,25,14,14,9,15,15,24,16,24,23,25,14,15,23,14,25,0,18,15,15,8,0,15,0,0,16,16,7,14,8,8,0,24,8,15,15,0,0,16,15,14,22,8,16,10,8,8,8,9,18,7,7,13,10,10,17,11,17,16,20,7,8,18,9,18,18,0,10,10,8,0,10,0,0,9,9,7,7,10,12,0,17,1,10,8,0,0,11,8,11,15,8,15,17,15,8,8,15,15,14,14,10,15,14,15,15,15,15,15,14,15,15,16,15,15,10,0,15,8,0,17,0,0,15,15,7,14,10,11,0,15,8,17,15,0,0,17,15,16,15,8,15,15,16,8,8,15,15,14,14,10,17,16,16,17,15,15,17,14,15,17,14,15,15,10,15,0,8,0,15,0,0,15,15,7,14,8,11,0,15,8,15,15,0,0,15,15,16,16,8,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,0,0,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,15,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,17,16,9,8,15,15,15,15,11,16,14,15,16,15,15,16,15,15,15,16,15,15,10,17,15,8,0,0,0,0,15,15,7,14,10,10,0,15,8,17,15,0,0,17,15,16,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,15,15,8,8,16,16,14,14,9,15,15,15,16,16,15,16,14,15,15,14,16,16,9,15,15,8,0,15,0,0,0,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,15,15,15,8,8,16,16,14,14,9,15,15,15,16,16,15,16,14,15,15,14,16,16,9,15,15,8,0,15,0,0,16,0,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,7,7,14,7,14,7,7,7,14,14,7,7,14,14,14,7,14,14,14,7,14,14,7,7,7,7,14,0,7,0,0,7,7,0,7,14,14,0,14,0,14,7,0,0,7,14,7,7,7,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,0,14,0,0,14,14,7,0,7,7,0,14,7,14,14,0,0,14,14,14,14,7,8,10,15,8,15,8,8,7,14,17,8,7,15,15,15,8,15,14,15,8,16,15,8,10,10,8,15,0,10,0,0,8,8,14,7,0,17,0,15,1,17,8,0,0,10,15,9,8,8,8,10,16,8,15,8,8,7,14,19,10,9,16,17,15,8,17,14,15,10,16,15,8,12,11,11,15,0,10,0,0,8,8,14,7,17,0,0,15,1,17,8,0,0,10,15,11,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,15,22,8,15,15,24,14,21,15,15,14,31,22,30,23,31,21,22,23,21,31,24,17,15,15,15,0,15,0,0,15,15,14,14,15,15,0,0,8,22,15,0,0,16,22,14,22,8,8,8,8,1,1,8,8,7,7,1,8,7,8,8,8,8,8,7,8,8,7,8,8,1,8,8,1,0,8,0,0,8,8,0,7,1,1,0,8,0,8,8,0,0,8,8,7,8,1,15,17,22,8,15,15,15,14,21,17,15,14,22,22,22,15,22,21,22,15,23,22,15,10,17,15,15,0,17,0,0,15,15,14,14,17,17,0,22,8,0,15,0,0,17,22,16,15,8,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,15,14,15,15,8,15,15,8,0,15,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15,17,15,8,8,15,16,14,14,10,15,14,16,15,15,16,16,14,15,16,16,16,16,11,17,15,8,0,17,0,0,15,15,7,14,10,10,0,16,8,17,15,0,0,0,15,16,15,8,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,22,21,22,15,21,22,15,8,15,15,15,0,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,0,14,15,8,14,16,14,7,7,14,14,14,14,11,16,16,14,16,14,14,16,14,14,16,16,14,14,11,16,16,7,0,16,0,0,14,14,7,14,9,11,0,14,7,16,14,0,0,16,14,0,14,7,22,15,16,8,8,15,22,14,14,8,15,14,23,15,22,22,22,14,15,22,14,22,22,15,15,16,8,0,15,0,0,15,15,7,14,8,9,0,22,8,15,15,0,0,15,15,14,0,8,8,8,9,9,8,8,8,8,8,9,9,7,8,9,8,8,9,8,8,8,7,8,8,8,8,8,8,0,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,0,0,18,17,8,11,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,16,17,22,10,15,0,0,0,24,24,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,18,0,17,8,11,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,11,19,15,10,17,0,0,0,17,17,9,16,12,10,0,17,10,19,17,0,2,19,17,16,17,10,17,17,0,9,11,17,18,18,17,9,16,14,18,16,18,18,17,18,17,17,16,17,17,8,19,16,10,16,0,0,0,17,17,9,16,11,9,0,17,11,17,18,0,2,17,17,14,18,12,8,8,9,0,8,8,8,8,8,9,9,7,8,9,8,8,9,8,8,8,7,8,8,8,8,8,8,9,0,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,9,11,11,11,8,0,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,9,11,9,10,8,0,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,11,11,24,17,17,8,10,0,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,0,0,0,24,24,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,17,17,18,8,10,17,0,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,18,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,23,16,18,8,10,23,16,0,17,8,22,14,17,15,16,23,15,18,16,15,16,16,16,14,17,22,9,15,0,0,0,23,23,9,23,10,8,0,16,10,16,16,0,2,23,16,21,24,18,16,16,17,8,9,16,16,17,0,8,15,14,16,15,16,16,15,17,16,14,16,16,16,7,16,14,9,15,0,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,10,8,10,9,9,8,8,8,8,8,0,9,7,8,9,8,8,9,8,8,8,9,8,8,10,10,8,8,11,0,0,0,8,8,7,7,10,10,0,8,1,10,8,0,0,10,8,9,8,9,22,15,16,9,8,22,15,22,15,9,0,14,15,16,15,22,16,15,15,15,14,15,15,15,15,22,8,16,0,0,0,22,22,7,21,8,8,0,15,8,15,15,0,0,22,15,21,22,16,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,0,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,14,7,17,17,18,8,11,17,17,17,16,8,15,14,0,15,17,17,15,17,17,16,16,17,17,8,18,16,10,15,0,0,0,17,17,9,16,11,9,0,17,11,17,17,0,2,17,17,14,18,11,15,15,16,9,8,15,15,15,15,9,16,14,15,0,15,15,16,15,15,15,14,15,15,8,15,15,8,16,0,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,9,17,17,18,8,10,17,18,16,16,8,15,14,17,15,0,18,16,16,17,16,16,17,17,8,18,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,18,0,2,17,17,14,17,10,24,17,18,8,10,24,18,23,16,8,22,14,17,15,18,0,16,16,17,16,16,17,17,15,18,22,10,15,0,0,0,24,24,9,23,10,8,0,17,10,17,18,0,2,24,17,21,24,17,15,15,17,9,8,15,16,15,15,9,16,14,15,16,16,16,0,15,15,16,14,15,15,8,16,15,8,16,0,0,0,15,15,7,14,8,8,0,15,8,15,16,0,0,15,15,14,15,9,16,16,18,8,10,16,16,18,17,8,15,14,17,15,16,16,15,0,16,15,16,16,16,7,17,15,9,15,0,0,0,16,16,9,16,10,8,0,16,10,16,16,0,2,16,16,14,17,11,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,15,15,17,8,9,15,16,15,14,8,15,14,16,15,16,16,16,15,15,0,14,15,15,8,17,16,8,15,0,0,0,15,15,7,14,9,9,0,15,9,15,16,0,0,15,15,14,16,9,16,18,16,7,9,16,16,16,16,9,14,14,16,14,16,16,14,16,16,14,0,16,16,9,18,14,9,16,0,0,0,16,16,9,16,11,9,0,16,9,18,16,0,2,18,16,16,16,9,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,0,17,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,0,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,16,11,8,8,9,15,8,14,7,10,15,7,8,8,8,15,8,7,8,8,9,8,8,0,10,15,8,10,0,0,0,15,15,7,14,10,10,0,8,1,10,8,0,0,17,8,16,15,15,17,19,19,8,11,17,18,17,16,10,15,14,18,15,18,18,16,17,17,17,18,17,17,10,0,16,10,17,0,0,0,17,17,9,16,13,11,0,17,11,19,18,0,2,19,17,16,18,11,22,15,16,8,9,22,15,22,14,8,22,14,16,15,15,22,15,15,15,16,14,15,15,15,16,0,8,15,0,0,0,22,22,7,21,9,9,0,15,9,15,15,0,0,22,15,21,23,16,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,0,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,15,17,16,9,8,15,15,15,15,11,16,14,15,16,15,15,16,15,15,15,16,15,15,10,17,15,8,0,0,0,0,15,15,7,14,10,10,0,15,8,17,15,0,0,17,15,16,15,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24,17,17,8,10,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,0,0,0,0,24,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,24,17,17,8,10,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,0,0,0,24,0,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,0,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,0,0,0,23,23,9,0,9,7,0,16,9,16,16,0,2,23,16,21,23,16,10,12,11,8,11,10,10,10,9,10,8,7,11,8,10,10,8,10,10,9,11,10,10,10,13,9,10,10,0,0,0,10,10,9,9,0,11,0,10,4,12,10,0,2,12,10,9,11,11,8,10,9,8,9,8,8,8,7,10,8,7,9,8,8,8,8,8,8,9,9,8,8,10,11,9,8,10,0,0,0,8,8,7,7,11,0,0,8,2,10,8,0,0,10,8,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,0,10,17,17,0,2,17,17,14,17,10,10,10,11,1,4,10,10,10,9,1,8,7,11,8,10,10,8,10,10,9,9,10,10,1,11,9,3,8,0,0,0,10,10,2,9,4,2,0,10,0,10,10,0,2,10,10,7,11,4,17,19,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,19,15,10,17,0,0,0,17,17,9,16,12,10,0,17,10,0,17,0,2,19,17,16,17,10,17,17,18,8,10,17,18,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,18,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,0,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,24,19,17,8,10,24,17,23,16,10,22,14,17,15,17,24,15,16,17,15,18,17,17,17,19,22,10,17,0,0,0,24,24,9,23,12,10,0,17,10,19,17,0,2,0,17,23,24,17,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,21,16,14,7,7,21,14,21,14,9,21,14,14,14,14,21,14,14,14,14,16,14,14,16,16,21,7,16,0,0,0,21,21,7,21,9,9,0,14,7,16,14,0,0,23,14,0,21,14,24,17,18,8,11,24,17,24,16,8,22,14,18,15,17,24,15,17,17,16,16,17,17,15,18,23,10,15,0,0,0,24,24,9,23,11,9,0,17,11,17,17,0,2,24,17,21,0,18,17,10,12,9,11,17,10,18,10,9,16,7,11,9,10,17,9,11,10,9,9,10,10,15,11,16,10,9,0,0,0,17,17,9,16,11,9,0,10,4,10,10,0,2,17,10,14,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,8,10,25,18,24,16,8,22,14,18,15,17,25,16,16,17,15,16,17,18,15,18,23,10,15,24,0,0,0,25,9,23,10,9,0,18,10,17,17,0,3,25,17,21,25,17,18,0,17,8,10,18,18,16,16,8,15,14,18,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,0,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,18,17,0,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,18,15,10,15,17,0,0,0,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,0,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,10,10,10,8,0,10,12,9,9,8,8,9,10,8,10,12,8,11,10,8,9,12,10,8,10,10,10,8,10,0,0,0,12,9,9,10,8,0,10,5,10,12,0,2,10,10,7,10,10,25,18,17,8,10,0,19,23,16,9,22,15,18,16,18,24,16,16,17,15,16,18,19,16,17,23,10,16,24,0,0,0,25,9,23,10,9,0,18,10,17,17,0,3,25,17,21,25,17,18,18,17,8,12,19,0,16,16,9,15,17,18,16,18,19,16,18,17,15,16,20,19,9,17,18,10,16,17,0,0,0,20,9,16,10,9,0,18,12,17,19,0,3,18,17,14,18,10,24,16,17,7,9,23,16,0,16,7,21,14,16,14,16,24,15,16,16,14,16,16,16,14,17,21,9,14,23,0,0,0,24,9,23,9,7,0,16,9,16,16,0,2,23,16,21,23,16,16,16,16,7,9,16,16,16,0,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,0,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,8,8,8,8,8,9,9,7,7,0,8,8,8,9,9,8,9,7,8,8,7,9,9,9,8,8,8,9,8,0,0,0,9,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,22,15,15,8,8,22,15,21,14,8,0,14,15,15,15,22,15,14,15,15,14,15,15,15,15,22,8,15,22,0,0,0,22,7,21,8,8,0,15,8,15,15,0,0,22,15,21,22,15,14,14,14,7,9,15,17,14,14,8,14,0,14,15,15,16,15,16,14,14,14,17,15,8,14,16,7,15,14,0,0,0,17,7,14,7,7,0,14,9,14,16,0,0,14,14,14,14,7,18,18,17,8,10,18,18,16,16,8,15,14,0,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,0,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,15,15,15,8,8,16,16,14,14,9,15,15,15,0,16,15,16,14,15,15,14,16,16,9,15,15,8,16,15,0,0,0,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,17,17,17,8,10,18,18,16,16,9,15,15,17,16,0,17,16,16,17,15,16,18,18,9,17,15,10,16,17,0,0,0,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,25,17,18,8,12,24,19,24,16,8,22,16,17,15,17,0,16,18,17,15,16,19,17,15,18,24,10,15,24,0,0,0,27,9,23,10,8,0,17,12,17,19,0,2,24,17,21,24,17,16,15,16,8,8,16,16,15,14,9,15,15,15,16,16,16,0,14,15,15,14,16,16,9,16,15,8,16,15,0,0,0,17,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,16,16,16,7,11,16,18,16,16,7,14,16,16,14,16,18,14,0,16,14,16,18,16,7,16,16,9,14,16,0,0,0,18,9,16,9,7,0,16,11,16,18,0,2,16,16,14,16,9,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,0,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,15,8,15,15,8,15,15,0,0,0,15,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,0,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,17,17,17,8,12,18,20,16,16,9,15,17,17,16,18,19,16,18,17,15,16,0,18,9,17,17,10,16,17,0,0,0,20,9,16,10,8,0,17,12,17,24,0,2,17,17,14,17,10,18,18,17,8,10,19,19,16,16,9,15,15,18,16,18,17,16,16,17,15,16,18,0,9,17,16,10,16,17,0,0,0,18,9,16,10,9,0,18,10,17,17,0,3,18,17,14,18,10,15,8,8,8,8,16,9,14,7,9,15,8,8,9,9,15,9,7,8,8,7,9,9,0,8,15,8,9,15,0,0,0,16,7,14,8,8,0,8,1,8,8,0,0,15,8,14,15,15,18,17,18,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,0,15,10,15,17,0,0,0,18,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,23,16,15,8,10,23,18,21,14,8,22,16,16,15,15,24,15,16,15,15,14,17,16,15,15,0,8,15,22,0,0,0,24,7,21,8,9,0,16,10,15,17,0,1,23,15,21,23,15,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,0,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,15,15,15,8,8,16,16,14,14,9,15,15,15,16,16,15,16,14,15,15,14,16,16,9,15,15,8,0,15,0,0,0,16,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,24,17,17,8,10,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,0,0,0,0,24,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,17,18,8,12,25,20,24,16,9,22,17,17,16,18,27,17,18,17,15,16,20,18,16,18,24,10,16,24,0,0,0,0,9,23,10,8,0,17,12,17,19,0,2,24,17,21,24,17,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,0,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,0,23,9,0,9,7,0,16,9,16,16,0,2,23,16,21,23,16,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,0,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,9,9,8,8,8,9,9,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,9,8,8,9,8,8,8,0,0,0,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,17,8,10,18,18,16,16,8,15,14,18,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,0,17,9,16,10,9,0,0,10,17,17,0,3,18,17,14,18,10,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,12,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,0,12,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,0,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,17,17,17,8,12,17,19,16,16,8,15,16,17,15,17,19,15,18,17,15,16,24,17,8,17,17,10,15,17,0,0,0,19,9,16,10,8,0,17,12,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,0,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,25,18,17,8,10,25,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,0,24,9,23,10,9,0,18,10,17,17,0,3,0,17,21,25,17,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,0,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,0,21,7,21,7,7,0,14,7,14,14,0,0,21,14,0,21,14,25,18,17,8,10,25,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,0,24,9,23,10,9,0,18,10,17,17,0,3,25,17,21,0,17,17,10,10,8,10,17,10,16,9,8,15,7,10,8,10,17,8,9,10,8,9,10,10,15,10,15,10,8,17,0,0,0,17,9,16,10,8,0,10,3,10,10,0,2,17,10,14,17,0,0,17,18,8,10,24,17,25,16,8,22,14,17,15,18,25,16,17,18,15,16,17,17,15,18,22,10,15,24,0,0,25,0,9,23,10,8,0,18,10,18,17,0,2,24,17,21,24,17,17,0,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,18,17,0,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,18,15,10,15,17,0,0,18,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,0,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,10,10,10,8,0,10,12,9,9,8,8,9,10,8,10,12,8,11,10,8,9,12,10,8,10,10,10,8,10,0,0,12,0,9,9,10,8,0,10,5,10,12,0,2,10,10,7,10,10,24,17,17,8,10,0,18,23,16,9,22,15,17,16,18,24,16,16,17,15,16,18,18,16,17,22,10,16,24,0,0,25,0,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,17,17,17,8,12,18,0,16,16,9,15,17,17,16,18,19,16,18,17,15,16,20,18,9,17,17,10,16,17,0,0,20,0,9,16,10,8,0,17,12,17,19,0,2,17,17,14,17,10,25,16,17,7,9,23,16,0,16,7,21,14,16,14,17,24,15,17,17,14,16,16,16,14,17,21,9,14,23,0,0,24,0,9,23,9,7,0,17,9,17,16,0,2,23,16,21,23,16,16,16,16,7,9,16,16,16,0,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,0,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,8,8,8,8,8,9,9,7,7,0,8,8,8,9,9,8,9,7,8,8,7,9,9,9,8,8,8,9,8,0,0,9,0,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,8,22,15,15,8,8,22,15,21,14,8,0,14,15,15,15,22,15,14,15,15,14,15,15,15,15,22,8,15,22,0,0,22,0,7,21,8,8,0,15,8,15,15,0,0,22,15,21,22,15,14,14,14,7,9,15,17,14,14,8,14,0,14,15,15,16,15,16,14,14,14,17,15,8,14,16,7,15,14,0,0,17,0,7,14,7,7,0,14,9,14,16,0,0,14,14,14,14,7,17,17,17,8,10,17,17,16,16,8,15,14,0,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,15,15,15,8,8,16,16,14,14,9,15,15,15,0,16,15,16,14,15,15,14,16,16,9,15,15,8,16,15,0,0,16,0,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,18,17,17,8,10,18,18,17,16,9,15,15,17,16,0,17,16,17,18,15,16,18,18,9,17,15,10,16,17,0,0,18,0,9,16,10,8,0,18,10,18,17,0,2,17,17,14,17,10,25,17,18,8,12,24,19,24,16,8,22,16,17,15,17,0,16,18,17,15,16,19,17,15,18,24,10,15,24,0,0,27,0,9,23,10,8,0,17,12,17,19,0,2,24,17,21,24,17,16,15,16,8,8,16,16,15,14,9,15,15,15,16,16,16,0,14,15,15,14,16,16,9,16,15,8,16,15,0,0,17,0,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,17,16,16,7,11,16,18,17,16,7,14,16,16,14,17,18,14,0,17,14,16,18,16,7,16,16,9,14,16,0,0,18,0,9,16,9,7,0,17,11,17,18,0,2,16,16,14,16,9,18,17,17,8,10,17,17,17,16,8,15,14,17,15,18,17,15,17,0,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,18,10,18,17,0,2,17,17,14,17,10,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,15,8,15,15,8,15,15,0,0,15,0,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,0,9,16,9,7,0,16,9,16,16,0,2,16,16,14,16,9,17,17,17,8,12,18,20,16,16,9,15,17,17,16,18,19,16,18,17,15,16,0,18,9,17,17,10,16,17,0,0,20,0,9,16,10,8,0,17,12,17,19,0,2,17,17,14,17,10,17,17,17,8,10,18,18,16,16,9,15,15,17,16,18,17,16,16,17,15,16,18,0,9,17,15,10,16,17,0,0,18,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,15,8,8,8,8,16,9,14,7,9,15,8,8,9,9,15,9,7,8,8,7,9,9,0,8,15,8,9,15,0,0,16,0,7,14,8,8,0,8,1,8,8,0,0,15,8,14,15,15,18,17,18,8,10,17,17,17,16,8,15,14,17,15,17,18,16,16,17,15,16,17,17,8,0,15,10,15,17,0,0,18,0,9,16,10,8,0,17,10,17,17,0,2,17,17,14,17,10,22,15,15,8,10,22,17,21,14,8,22,16,15,15,15,24,15,16,15,15,14,17,15,15,15,0,8,15,22,0,0,24,0,7,21,8,8,0,15,10,15,17,0,0,22,15,21,22,15,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,0,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,10,15,15,15,8,8,16,16,14,14,9,15,15,15,16,16,15,16,14,15,15,14,16,16,9,15,15,8,0,15,0,0,16,0,7,14,8,8,0,15,8,15,15,0,0,15,15,14,15,8,24,17,17,8,10,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,0,0,0,24,0,9,23,10,8,0,17,10,17,17,0,2,24,17,21,24,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,17,18,8,12,25,20,24,16,9,22,17,17,16,18,27,17,18,17,15,16,20,18,16,18,24,10,16,24,0,0,0,0,9,23,10,8,0,17,12,17,19,0,2,24,17,21,24,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,0,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,23,0,9,0,9,7,0,16,9,16,16,0,2,23,16,21,23,16,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,0,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,0,7,7,8,0,0,8,1,8,8,0,0,8,8,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,17,17,8,10,17,17,17,16,8,15,14,17,15,18,17,15,17,18,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,0,10,18,17,0,2,17,17,14,17,10,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,12,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,12,0,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,18,17,17,8,10,17,17,17,16,8,15,14,17,15,18,17,15,17,18,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,18,10,0,17,0,2,17,17,14,17,10,17,17,17,8,12,17,19,16,16,8,15,16,17,15,17,19,15,18,17,15,16,19,17,8,17,17,10,15,17,0,0,19,0,9,16,10,8,0,17,12,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,0,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,24,17,17,8,10,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,24,0,0,24,0,9,23,10,8,0,17,10,17,17,0,2,0,17,21,24,17,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,21,0,7,21,7,7,0,14,7,14,14,0,0,21,14,0,21,14,24,17,17,8,10,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,24,0,0,24,0,9,23,10,8,0,17,10,17,17,0,2,24,17,21,0,17,17,10,10,8,10,17,10,16,9,8,15,7,10,8,10,17,8,9,10,8,9,10,10,15,10,15,10,8,17,0,0,17,0,9,16,10,8,0,10,3,10,10,0,2,17,10,14,17,0,0,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,9,0,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,9,9,0,7,16,9,9,11,18,14,7,7,18,14,16,9,14,16,18,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,7,7,7,0,7,7,7,7,7,14,7,7,7,7,7,7,7,7,7,7,7,7,7,7,14,7,14,7,7,0,0,7,7,0,7,7,14,0,7,0,7,7,0,7,7,7,7,7,14,9,9,16,7,0,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,9,9,9,7,9,0,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,9,9,9,7,9,9,0,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,9,9,11,7,9,9,9,0,12,7,7,8,11,7,9,9,7,10,11,7,10,9,9,7,9,7,9,7,9,0,0,9,9,0,10,9,7,0,9,2,9,9,0,3,9,9,8,9,9,9,9,18,7,16,9,9,12,0,14,7,8,18,14,16,9,14,17,18,7,17,16,9,7,9,7,16,14,9,0,0,9,9,0,10,16,14,0,16,2,16,9,0,3,9,16,8,9,9,7,7,14,14,14,7,7,7,14,0,7,7,14,14,14,7,14,14,14,7,14,14,7,7,14,7,22,14,7,0,0,7,7,0,7,14,22,0,14,0,14,7,0,7,7,14,7,7,14,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,0,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,7,7,7,7,7,7,7,8,8,7,7,0,7,7,7,7,7,8,7,7,8,7,7,7,7,7,7,7,7,0,0,7,7,0,8,7,7,0,7,0,7,7,0,1,7,7,8,7,7,9,9,18,7,16,9,9,11,18,14,7,7,0,14,16,9,14,16,18,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,7,7,14,7,14,7,7,7,14,14,7,7,14,0,14,7,14,14,14,7,14,14,7,7,7,7,14,14,7,0,0,7,7,0,7,14,14,0,14,0,14,7,0,0,7,14,7,7,7,9,9,16,7,16,9,9,9,16,14,7,7,16,14,0,9,14,16,16,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,0,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,7,7,14,7,14,7,7,7,14,14,7,7,14,14,14,7,0,14,14,7,14,14,7,7,7,7,14,14,7,0,0,7,7,0,7,14,14,0,14,0,14,7,0,0,7,14,7,7,7,9,9,16,7,16,9,9,10,17,14,7,8,16,14,16,9,14,0,16,7,17,16,9,7,9,7,16,14,9,0,0,9,9,0,10,16,14,0,16,2,16,9,0,3,9,16,8,9,9,9,9,18,7,16,9,9,11,18,14,7,7,18,14,16,9,14,16,0,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,0,0,7,7,0,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,9,9,16,7,16,9,9,10,17,14,7,8,16,14,16,9,14,17,16,7,0,16,9,7,9,7,17,14,9,1,1,9,9,0,11,16,14,1,16,2,17,9,1,3,9,17,9,9,9,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,16,0,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,16,2,16,9,0,2,9,16,7,9,9,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,0,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,0,0,7,7,0,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,9,9,9,14,9,9,9,9,9,14,7,7,9,7,9,9,7,9,9,7,9,9,9,7,0,7,16,7,9,0,0,9,9,0,9,9,14,0,9,2,9,9,0,9,9,9,7,9,16,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,0,0,7,7,0,7,7,7,0,7,0,7,7,0,0,7,7,7,7,7,9,9,16,14,16,9,9,9,16,22,7,7,16,14,16,9,14,16,16,7,17,16,9,7,16,7,0,14,9,1,1,9,9,0,10,16,22,1,16,2,17,9,1,9,9,17,8,9,16,7,7,14,7,14,7,7,7,14,14,7,7,14,14,14,7,14,14,14,7,14,14,7,7,7,7,14,0,7,0,0,7,7,0,7,14,14,0,14,0,14,7,0,0,7,14,7,7,7,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,0,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,1,0,0,1,0,0,1,0,1,0,0,1,1,0,0,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,0,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,0,0,9,9,7,0,9,2,9,9,0,2,9,9,7,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,7,9,9,9,10,10,7,7,8,9,7,9,9,7,10,9,7,11,9,9,7,9,7,10,7,9,1,1,9,9,0,0,9,7,1,9,2,10,9,1,3,9,10,9,9,9,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,0,14,0,16,2,16,9,0,2,9,16,7,9,9,7,7,14,14,14,7,7,7,14,22,7,7,14,14,14,7,14,14,14,7,14,14,7,7,14,7,22,14,7,0,0,7,7,0,7,14,0,0,14,0,14,7,0,7,7,14,7,7,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,0,2,16,9,0,2,9,16,7,9,9,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,0,2,2,0,0,2,0,2,2,0,2,2,2,0,2,2,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,17,16,9,7,9,7,17,14,9,1,1,9,9,0,10,16,14,1,16,2,0,9,1,2,9,17,8,9,9,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,0,0,2,9,9,7,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,2,2,2,7,2,2,2,3,3,7,0,1,2,0,2,2,0,3,2,0,3,2,2,0,9,0,9,0,2,0,0,2,2,0,3,2,7,0,2,2,2,2,0,0,2,2,1,2,9,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,0,9,7,9,9,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,17,16,9,7,9,7,17,14,9,1,1,9,9,0,10,16,14,1,16,2,17,9,1,2,9,0,8,9,9,7,7,7,7,7,7,7,8,8,7,7,8,7,7,7,7,7,8,7,7,9,7,7,7,7,7,8,7,7,1,1,7,7,0,9,7,7,1,7,0,8,7,1,1,7,8,0,7,7,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,0,9,9,9,9,14,9,9,9,9,9,14,7,7,9,7,9,9,7,9,9,7,9,9,9,7,16,7,16,7,9,0,0,9,9,0,9,9,14,0,9,2,9,9,0,9,9,9,7,9,0,0,16,16,7,9,23,16,23,16,7,23,14,16,16,18,23,14,16,16,16,16,16,16,14,16,21,11,14,23,0,0,23,23,9,0,9,7,0,16,9,16,16,0,4,23,18,21,25,18,16,0,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,0,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,7,7,7,0,14,14,7,14,14,14,14,7,7,14,7,7,7,7,14,7,7,7,7,7,14,7,7,7,7,0,0,7,7,7,0,14,7,0,7,7,7,7,0,0,7,7,14,7,7,9,9,9,14,0,16,9,16,16,14,14,7,9,14,9,9,7,9,16,7,9,9,9,7,16,7,9,7,9,0,0,9,9,9,0,16,7,0,9,9,9,9,0,2,9,9,14,9,9,23,16,16,14,16,0,16,30,23,14,28,14,16,21,16,23,14,16,23,14,16,16,16,14,23,21,9,14,23,0,0,23,23,9,0,16,7,0,16,16,16,16,0,2,23,16,28,23,16,16,16,16,7,9,16,0,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,23,16,16,14,16,30,16,0,24,14,28,15,16,21,16,23,14,17,23,14,17,16,16,14,23,21,9,14,23,0,0,23,23,10,0,16,7,0,16,16,16,16,0,3,23,16,29,23,16,16,16,16,14,16,23,16,24,0,14,21,15,16,21,16,16,14,17,23,14,18,16,16,7,23,14,9,14,16,0,0,16,16,10,0,16,7,0,16,16,16,16,0,3,16,16,23,16,9,7,7,7,14,14,14,7,14,14,0,14,7,7,14,7,7,7,7,14,7,7,7,7,7,14,7,7,7,7,0,0,7,7,7,0,14,7,0,7,7,7,7,0,0,7,7,14,7,7,23,14,14,14,14,28,14,28,21,14,0,14,14,23,16,21,14,14,21,16,14,14,14,14,21,21,9,14,21,0,0,21,21,7,0,14,7,0,14,14,14,14,0,2,21,16,28,23,16,14,14,14,7,7,14,14,15,15,7,14,0,14,14,14,14,14,15,14,14,15,14,14,7,14,14,7,14,14,0,0,14,14,8,0,7,7,0,14,7,14,14,0,1,14,14,15,14,7,16,16,16,7,9,16,16,16,16,7,14,14,0,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,14,14,14,14,21,14,21,21,14,23,14,14,0,16,14,14,14,21,16,14,14,14,7,21,14,9,14,14,0,0,14,14,7,0,14,7,0,14,14,14,14,0,2,14,16,21,16,9,18,16,16,7,9,16,16,16,16,7,16,14,16,16,0,16,14,16,16,16,16,16,16,7,16,14,11,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,4,16,18,14,18,11,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,0,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,23,23,9,0,9,7,0,16,9,16,16,0,2,23,16,21,23,16,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,0,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,0,7,7,0,14,7,14,14,0,0,14,14,14,14,7,16,16,16,7,9,16,16,17,17,7,14,15,16,14,16,16,14,0,16,14,17,16,16,7,16,14,9,14,16,0,0,16,16,10,0,9,7,0,16,9,16,16,0,3,16,16,16,16,9,16,16,16,14,16,23,16,23,23,14,21,14,16,21,16,16,14,16,0,14,16,16,16,7,23,14,9,14,16,0,0,16,16,9,0,16,7,0,16,16,16,16,0,2,16,16,21,16,9,16,14,14,7,7,14,14,14,14,7,16,14,14,16,16,14,14,14,14,0,14,14,14,7,14,14,9,14,14,0,0,14,14,7,0,7,7,0,14,7,14,14,0,2,14,16,14,16,9,16,16,16,7,9,16,16,17,18,7,14,15,16,14,16,16,14,17,16,14,0,16,16,7,16,14,10,14,16,1,1,16,16,11,0,9,7,1,16,9,17,16,1,3,16,17,17,16,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,0,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,0,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,16,0,2,16,16,14,16,9,14,7,7,7,7,14,7,14,7,7,14,7,7,7,7,14,7,7,7,7,7,7,7,0,7,14,7,7,14,0,0,14,14,7,0,7,7,0,7,0,7,7,0,0,14,7,14,14,14,16,16,16,14,16,23,16,23,23,14,21,14,16,21,16,16,14,16,23,14,16,16,16,7,0,14,9,14,16,0,0,16,16,9,0,16,7,0,16,16,16,16,0,2,16,16,21,16,9,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,0,7,14,21,0,0,21,21,7,0,7,7,0,14,7,14,14,0,0,21,14,21,21,14,11,9,9,7,9,9,9,9,9,7,9,7,9,9,11,9,7,9,9,9,10,9,9,7,9,7,0,7,9,1,1,9,9,10,0,9,7,1,9,2,10,9,1,4,9,12,8,11,11,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,0,14,0,0,14,14,7,0,7,7,0,14,7,14,14,0,0,14,14,14,14,7,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,0,0,0,23,23,9,0,9,7,0,16,9,16,16,0,2,23,16,21,23,16,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,0,0,0,1,0,0,1,0,1,0,0,1,1,0,0,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,0,23,9,0,9,7,0,16,9,16,16,0,2,23,16,21,23,16,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,23,0,9,0,9,7,0,16,9,16,16,0,2,23,16,21,23,16,9,9,9,7,9,9,9,10,10,7,7,8,9,7,9,9,7,10,9,7,11,9,9,7,9,7,10,7,9,1,1,9,9,0,0,9,7,1,9,2,10,9,1,3,9,10,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,9,14,16,16,9,16,16,14,14,7,9,14,9,9,7,9,16,7,9,9,9,7,16,7,9,7,9,0,0,9,9,9,0,0,7,0,9,9,9,9,0,2,9,9,14,9,9,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,7,0,7,0,0,7,0,7,7,0,0,7,7,7,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,1,0,0,1,1,0,0,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,0,9,16,16,0,2,16,16,14,16,9,9,9,9,7,9,16,9,16,16,7,14,7,9,14,9,9,7,9,16,7,9,9,9,0,16,7,2,7,9,0,0,9,9,2,0,9,0,0,9,0,9,9,0,2,9,9,14,9,2,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,17,16,16,7,16,14,10,14,16,1,1,16,16,10,0,9,7,1,16,9,0,16,1,2,16,17,15,16,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,0,0,2,16,16,14,16,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,4,2,2,0,2,2,2,3,3,0,2,1,2,2,4,2,0,3,2,2,3,2,2,0,2,0,4,0,2,0,0,2,2,3,0,2,0,0,2,2,2,2,0,0,2,4,1,4,4,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,23,23,9,0,9,7,0,16,9,16,16,0,2,0,16,21,23,16,18,16,16,7,9,16,16,16,16,7,16,14,16,16,18,16,14,16,16,16,17,16,16,7,16,14,12,14,16,1,1,16,16,10,0,9,7,1,16,9,17,16,1,4,16,0,15,18,11,21,14,14,14,14,28,14,29,23,14,28,15,14,21,14,21,14,16,21,14,17,14,14,14,21,21,8,14,21,1,1,21,21,9,0,14,7,1,14,14,15,14,1,1,21,15,0,21,14,25,16,16,7,9,23,16,23,16,7,23,14,16,16,18,23,14,16,16,16,16,16,16,14,16,21,11,14,23,0,0,23,23,9,0,9,7,0,16,9,16,16,0,4,23,18,21,0,18,18,9,9,7,9,16,9,16,9,7,16,7,9,9,11,16,7,9,9,9,9,9,9,14,9,14,11,7,16,0,0,16,16,9,0,9,7,0,9,2,9,9,0,4,16,11,14,18,0,0,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,10,0,10,8,10,10,10,9,9,10,8,7,10,8,10,10,8,9,10,8,11,10,10,10,12,8,10,10,12,0,0,10,10,9,9,0,10,0,10,3,12,10,0,2,12,10,9,10,10,10,10,0,8,18,10,10,10,16,15,8,7,18,15,17,10,15,17,17,9,16,17,10,8,11,9,17,15,11,0,0,10,10,16,9,0,16,0,17,4,17,10,0,2,10,17,7,11,11,8,8,8,0,15,15,8,14,14,15,15,7,8,15,8,8,8,7,15,8,7,8,8,8,15,8,8,8,8,0,0,8,8,7,14,0,8,0,8,8,8,8,0,0,8,8,14,8,8,10,10,18,15,0,17,10,17,23,22,15,7,18,22,17,10,15,17,24,9,16,17,10,8,18,9,17,15,11,0,0,10,10,16,16,0,16,0,17,11,17,10,0,2,10,17,14,11,11,10,10,10,15,17,0,10,16,16,15,15,7,10,15,10,10,8,9,17,8,9,10,10,8,17,8,10,8,10,0,0,10,10,9,16,0,8,0,10,10,10,10,0,2,10,10,14,10,10,10,10,10,8,10,10,0,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,9,9,10,14,17,16,9,0,16,14,14,7,10,14,9,9,7,10,16,8,9,9,9,7,17,8,9,7,10,0,0,9,9,9,16,0,8,0,9,10,9,9,0,2,9,9,14,10,10,9,9,16,14,23,16,9,16,0,21,14,7,16,21,16,9,14,16,23,7,16,16,9,7,16,7,16,14,9,0,0,9,9,16,16,0,14,0,16,9,16,9,0,2,9,16,14,9,9,8,10,15,15,22,15,8,14,21,0,15,7,15,22,15,8,15,14,22,8,16,15,8,10,17,8,15,17,10,0,0,8,8,14,14,0,17,0,15,8,17,8,0,0,10,15,16,8,8,8,8,8,15,15,15,8,14,14,15,0,7,8,15,8,8,8,7,15,8,7,8,8,8,15,8,8,8,8,0,0,8,8,7,14,0,8,0,8,8,8,8,0,0,8,8,14,8,8,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,7,7,0,7,0,7,0,7,7,0,0,7,7,7,7,7,10,10,18,8,18,10,10,10,16,15,8,7,0,15,17,10,15,17,17,9,16,17,10,8,11,9,17,15,11,0,0,10,10,16,9,0,16,0,17,4,17,10,0,2,10,17,7,11,11,8,8,15,15,22,15,8,14,21,22,15,7,15,0,15,8,15,14,22,8,14,15,8,8,15,8,15,15,8,0,0,8,8,14,14,0,15,0,15,8,15,8,0,0,8,15,14,8,8,10,10,17,8,17,10,10,9,16,15,8,7,17,15,0,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,0,15,0,17,3,17,10,0,2,10,17,7,10,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,0,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,0,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,0,15,0,15,1,15,8,0,0,8,15,7,8,8,9,9,17,7,17,9,9,10,16,14,7,7,17,14,16,9,14,0,16,8,16,16,9,7,10,8,16,14,10,0,0,9,9,16,9,0,15,0,16,3,16,9,0,2,9,16,7,10,10,10,10,17,15,24,17,10,16,23,22,15,7,17,22,17,10,15,16,0,8,16,17,10,8,17,8,17,15,10,0,0,10,10,16,16,0,15,0,17,10,17,10,0,2,10,17,14,10,10,8,8,9,8,9,8,8,8,7,8,8,7,9,8,8,8,8,8,8,0,7,8,8,8,9,9,8,8,9,0,0,8,8,7,7,0,9,0,8,2,8,8,0,0,8,8,7,9,9,9,11,16,7,16,9,9,9,16,16,7,7,16,14,16,9,14,16,16,7,0,16,9,9,11,7,16,16,11,0,0,9,9,16,9,0,16,0,16,2,18,9,0,2,11,16,9,9,9,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,0,10,8,10,8,17,15,10,0,0,10,10,16,9,0,15,0,17,3,17,10,0,2,10,17,7,10,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,0,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,8,10,8,8,8,8,8,7,7,10,8,7,8,8,8,8,8,7,8,8,9,8,8,0,10,8,8,10,10,0,0,8,8,7,7,0,10,0,8,1,10,8,0,0,10,8,9,8,8,10,12,11,15,18,17,10,17,16,17,15,7,11,15,10,10,8,10,17,9,11,10,10,10,0,9,10,10,13,0,0,10,10,9,16,0,11,0,10,11,12,10,0,2,12,10,16,11,11,8,8,9,8,9,8,8,8,7,8,8,7,9,8,8,8,8,8,8,9,7,8,8,8,9,0,8,8,9,0,0,8,8,7,7,0,9,0,8,2,8,8,0,0,8,8,7,9,9,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,0,15,0,17,3,17,10,0,2,10,17,7,10,10,8,10,15,8,15,8,8,7,14,17,8,7,15,15,15,8,15,14,15,8,16,15,8,10,10,8,15,0,10,0,0,8,8,14,7,0,17,0,15,1,17,8,0,0,10,15,9,8,8,10,12,11,8,11,10,10,10,9,10,8,7,11,8,10,10,8,10,10,9,11,10,10,10,13,9,10,10,0,0,0,10,10,9,9,0,11,0,10,4,12,10,0,2,12,10,9,11,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,0,10,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,0,9,9,0,8,0,10,3,10,10,0,2,10,10,7,10,10,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,0,14,0,16,2,16,9,0,2,9,16,7,9,9,9,9,9,14,16,16,9,16,16,14,14,7,9,14,9,9,7,9,16,7,9,9,9,7,16,7,9,7,9,0,0,9,9,9,0,0,7,0,9,9,9,9,0,2,9,9,14,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8,10,16,8,16,8,8,8,14,17,8,7,16,15,15,8,15,15,15,9,16,15,8,10,11,9,15,17,11,0,0,8,8,14,7,0,0,0,15,2,17,8,0,0,10,15,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,0,15,0,0,3,17,10,0,2,10,17,7,10,10,3,3,4,8,11,10,3,10,9,8,8,0,4,8,3,3,1,3,10,2,2,3,3,1,11,2,3,1,4,0,0,3,3,2,9,0,2,0,3,0,3,3,0,2,3,3,7,4,4,10,12,17,8,17,10,10,9,16,17,8,7,17,15,17,10,15,16,17,8,18,17,10,10,12,8,17,17,12,0,0,10,10,16,9,0,17,0,17,3,0,10,0,2,12,17,9,10,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,0,0,2,10,10,7,10,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,0,0,0,2,2,2,2,0,0,2,2,0,2,2,10,12,10,8,10,10,10,9,9,10,8,7,10,8,10,10,8,9,10,8,11,10,10,10,12,8,10,10,12,0,0,10,10,9,9,0,10,0,10,3,12,10,0,2,0,10,9,10,10,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,0,15,0,17,3,17,10,0,2,10,0,7,10,10,7,9,7,14,14,14,7,14,14,16,14,7,7,14,7,7,7,7,14,7,9,7,7,9,16,7,7,9,9,0,0,7,7,7,14,0,9,0,7,7,9,7,0,0,9,7,0,7,7,10,10,11,8,11,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,8,11,9,10,8,11,0,0,10,10,9,9,0,9,0,10,4,10,10,0,2,10,10,7,0,11,10,10,11,8,11,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,8,11,9,10,8,11,0,0,10,10,9,9,0,9,0,10,4,10,10,0,2,10,10,7,11,0,0,9,8,8,8,9,9,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,9,8,8,9,8,8,8,0,0,9,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,9,0,8,8,8,9,9,7,7,12,8,7,9,8,8,8,8,7,8,8,9,8,9,10,10,9,8,10,10,0,0,9,8,7,7,10,0,0,9,1,10,8,0,1,13,8,9,9,8,8,8,0,8,16,8,8,8,14,15,8,7,17,15,15,8,15,15,15,9,14,15,8,8,9,10,15,16,9,0,0,8,8,14,7,16,0,0,15,2,15,8,0,0,8,15,7,10,9,8,8,8,0,8,8,8,7,7,15,8,7,8,8,8,8,8,7,8,8,7,8,8,8,15,8,15,8,8,0,0,8,8,14,7,8,0,0,8,1,8,8,0,7,8,8,7,8,15,8,8,16,8,0,8,8,8,14,15,8,7,16,15,15,8,15,15,15,9,14,15,8,8,9,9,15,15,9,0,0,8,8,14,7,16,0,0,15,2,15,8,0,0,8,15,7,9,9,9,9,8,8,8,0,9,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,9,8,8,9,8,8,8,0,0,9,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,9,9,8,8,8,9,0,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,9,8,8,9,8,8,8,0,0,9,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,7,7,8,7,8,7,7,0,7,7,7,7,8,7,7,7,7,8,7,8,7,7,7,7,8,8,7,7,8,0,0,7,7,7,7,8,0,0,7,1,7,7,0,0,7,7,7,8,8,7,7,14,7,14,7,7,7,0,14,7,7,14,14,14,7,14,15,14,7,14,14,7,7,7,7,14,14,7,0,0,7,7,14,7,14,0,0,14,0,14,7,0,0,7,14,7,7,7,8,12,15,15,15,8,8,7,14,0,10,9,15,17,15,8,17,14,15,10,16,15,8,12,17,10,23,19,10,0,0,8,8,22,7,17,0,0,15,1,17,8,0,7,12,15,11,8,15,8,8,8,8,8,8,8,7,7,10,0,9,8,10,8,8,10,7,8,10,7,8,8,10,8,10,8,10,8,0,0,8,8,7,7,8,0,0,8,1,8,8,0,0,8,8,9,8,8,7,7,7,7,7,7,7,7,7,9,9,0,7,9,7,7,9,7,7,9,7,7,7,9,7,9,7,9,7,0,0,7,7,7,7,7,0,0,7,0,7,7,0,0,7,7,9,7,7,9,9,17,8,16,9,9,8,14,15,8,7,0,15,15,8,15,15,15,9,14,15,9,8,9,11,15,16,9,0,0,9,8,14,7,16,0,0,16,2,15,8,0,1,9,15,7,11,9,8,8,15,8,15,8,8,7,14,17,10,9,15,0,15,8,17,14,15,10,14,15,8,10,8,10,15,17,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,9,8,8,8,8,15,8,15,8,8,7,14,15,8,7,15,15,0,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,7,8,8,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,0,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,0,0,8,1,8,8,0,0,8,8,7,8,8,8,8,15,8,15,8,8,7,14,17,10,9,15,17,15,8,0,14,15,10,14,15,8,10,8,10,15,17,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,9,8,8,7,7,15,7,15,7,7,8,15,14,7,7,15,14,14,7,14,0,14,8,14,14,7,7,8,8,14,14,8,0,0,7,7,14,7,15,0,0,14,1,14,7,0,0,7,14,7,8,8,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,15,14,0,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,7,8,8,8,8,9,8,9,8,8,8,7,10,10,9,9,10,8,8,10,8,8,0,7,8,8,10,9,11,8,10,9,0,0,8,8,7,7,9,0,0,8,2,8,8,0,0,8,8,9,9,9,7,9,14,7,14,7,7,7,14,16,7,7,14,14,14,7,14,14,14,7,0,14,7,9,9,7,14,16,9,0,0,7,7,14,7,16,0,0,14,0,16,7,0,0,9,14,9,7,7,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,15,14,15,8,14,0,8,8,8,8,15,15,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,15,7,8,8,9,9,8,8,8,9,9,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,0,8,8,9,8,8,8,0,0,9,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,8,10,8,8,8,8,8,7,7,12,10,9,8,10,8,8,10,7,8,10,9,8,8,0,10,10,8,12,10,0,0,8,8,7,7,10,0,0,8,1,10,8,0,0,10,8,11,8,8,8,10,9,15,9,8,8,8,7,17,8,7,9,8,8,8,8,8,8,9,9,8,8,10,0,9,15,11,11,0,0,8,8,14,7,11,0,0,8,2,10,8,0,7,10,8,9,9,16,9,9,10,8,9,9,9,8,7,10,10,9,11,10,8,8,10,8,8,11,7,8,9,10,9,0,8,11,9,0,0,9,8,7,7,9,0,0,9,2,8,8,0,1,9,8,9,11,9,8,8,15,15,15,8,8,7,14,23,8,7,15,15,15,8,15,14,15,8,14,15,8,8,15,8,0,15,8,0,0,8,8,22,7,15,0,0,15,1,15,8,0,7,8,15,7,8,15,8,10,16,8,15,8,8,7,14,19,10,9,16,17,15,8,17,14,15,10,16,15,8,12,11,11,15,0,10,0,0,8,8,14,7,17,0,0,15,1,17,8,0,0,10,15,11,9,8,8,10,9,8,9,8,8,8,7,10,8,7,9,8,8,8,8,8,8,9,9,8,8,10,11,9,8,10,0,0,0,8,8,7,7,11,0,0,8,2,10,8,0,0,10,8,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,8,8,8,9,9,7,7,8,8,7,9,8,8,8,8,7,8,8,7,8,9,8,8,9,8,8,8,0,0,0,8,7,7,8,0,0,9,1,8,8,0,1,9,8,7,9,8,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,0,7,7,8,0,0,8,1,8,8,0,0,8,8,7,8,8,7,7,14,14,14,7,7,7,14,22,7,7,14,14,14,7,14,14,14,7,14,14,7,7,14,7,22,14,7,0,0,7,7,0,7,14,0,0,14,0,14,7,0,7,7,14,7,7,14,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,7,0,7,0,0,7,0,7,7,0,0,7,7,7,7,7,8,10,16,8,16,8,8,8,14,17,8,7,16,15,15,8,15,15,15,9,16,15,8,10,11,9,15,17,11,0,0,8,8,14,7,0,0,0,15,2,17,8,0,0,10,15,9,9,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9,9,15,8,15,9,9,7,14,15,8,7,16,15,15,8,15,14,15,8,14,15,9,8,8,9,15,15,8,0,0,9,8,14,7,15,0,0,0,1,15,8,0,1,9,15,7,9,8,1,1,2,1,2,1,1,1,0,1,1,0,2,1,1,1,1,1,1,2,0,1,1,1,2,2,1,1,2,0,0,1,1,0,0,2,0,0,1,0,1,1,0,0,1,1,0,2,2,8,10,15,8,15,8,8,7,14,17,8,7,15,15,15,8,15,14,15,8,16,15,8,10,10,8,15,17,10,0,0,8,8,14,7,17,0,0,15,1,0,8,0,0,10,15,9,8,8,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,0,0,8,1,8,0,0,0,8,8,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7,0,1,1,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,1,0,7,1,7,0,0,0,0,1,0,7,0,0,0,0,1,0,0,0,0,0,1,0,0,1,7,9,13,8,8,8,9,9,7,7,12,8,7,9,8,8,8,8,7,8,8,9,8,9,10,10,9,8,10,10,0,0,9,8,7,7,10,0,0,9,1,10,8,0,1,0,8,9,9,8,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,0,7,8,8,7,9,7,7,7,7,7,7,7,11,9,9,7,9,7,7,9,7,7,9,9,7,7,11,9,9,7,11,9,0,0,7,7,7,7,9,0,0,7,0,9,7,0,0,9,7,0,7,7,9,9,10,8,9,9,9,8,7,8,8,7,11,8,8,8,8,8,8,9,7,8,9,8,9,11,8,9,9,0,0,9,8,7,7,9,0,0,9,2,8,8,0,1,9,8,7,0,9,8,8,9,15,9,8,8,8,7,15,8,7,9,8,8,8,8,8,8,9,7,8,8,8,16,9,15,8,9,0,0,8,8,14,7,9,0,0,8,2,8,8,0,7,8,8,7,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,0,0,1,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,17,9,10,18,26,17,17,8,15,14,26,15,26,25,23,17,19,22,16,25,26,16,17,16,10,23,17,0,0,18,18,9,16,10,9,0,0,10,18,17,0,3,19,17,14,25,10,19,0,17,9,10,18,18,16,17,8,15,14,18,15,17,18,15,16,18,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,19,17,14,18,10,17,17,0,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,0,10,24,17,0,2,17,24,14,17,10,9,9,8,0,8,10,8,7,8,8,8,7,8,8,8,9,10,7,9,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,0,1,8,8,0,0,9,8,7,8,8,10,10,17,8,0,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,17,15,0,0,3,17,10,0,2,10,17,7,10,10,18,18,17,10,10,0,18,16,16,8,15,14,18,15,17,17,17,16,17,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,18,17,14,18,10,26,18,17,8,10,18,0,16,16,8,15,14,27,15,25,25,24,16,17,23,16,26,27,17,17,16,10,24,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,19,17,14,25,10,17,16,16,7,9,16,16,0,16,7,14,14,16,14,17,16,14,17,17,14,16,16,16,7,16,14,9,14,16,0,0,16,17,9,16,9,7,0,0,9,17,16,0,2,16,16,14,16,9,17,17,23,8,16,16,16,16,0,14,14,14,23,21,23,17,21,23,24,14,23,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,0,9,23,16,0,2,17,23,14,16,9,8,8,15,8,15,8,8,7,14,0,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,15,0,0,1,15,8,0,0,8,15,7,8,8,15,15,15,8,8,15,15,14,14,8,0,14,15,15,15,15,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,0,8,15,15,0,0,15,15,14,15,8,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,0,7,14,14,0,0,14,14,14,14,7,26,18,24,8,17,18,27,16,23,15,15,14,0,22,32,25,31,23,24,23,23,33,27,17,17,16,17,31,17,0,0,18,17,16,16,17,16,0,0,10,24,17,0,3,19,24,14,25,10,15,15,22,8,15,15,15,14,21,15,15,14,22,0,22,15,22,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,0,8,22,15,0,0,15,22,14,15,8,26,17,24,8,17,17,25,17,23,15,15,14,32,22,0,24,30,24,25,22,23,32,25,16,17,15,17,30,17,0,0,17,18,16,16,17,15,0,0,10,25,17,0,2,17,24,14,24,10,25,18,17,9,10,17,25,16,17,8,15,14,25,15,24,0,23,16,18,23,16,25,25,16,17,15,10,23,17,0,0,17,17,9,16,10,8,0,0,10,17,17,0,2,19,17,14,24,10,23,15,22,10,15,17,24,14,21,15,15,14,31,22,30,23,0,21,22,23,21,31,24,17,15,15,15,31,15,0,0,15,15,14,14,15,15,0,0,8,22,15,0,0,16,22,14,22,8,17,16,23,7,16,16,16,17,23,14,14,14,23,21,24,16,21,0,24,14,23,23,16,7,16,14,16,21,16,0,0,16,17,16,16,16,14,0,0,9,24,16,0,2,16,23,14,16,9,19,18,24,9,17,17,17,17,24,15,15,14,24,22,25,18,22,24,0,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,0,10,25,17,0,2,18,24,14,17,10,22,15,15,8,8,15,23,14,14,8,15,14,23,15,22,23,23,14,15,0,14,23,23,16,15,15,8,23,15,0,0,15,15,7,14,8,8,0,0,8,15,15,0,0,16,15,14,22,8,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,23,14,0,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,0,9,23,16,0,2,16,23,14,16,9,25,17,24,8,17,17,26,16,23,15,15,14,33,22,32,25,31,23,24,23,23,0,26,17,17,15,17,31,17,0,0,17,17,16,16,17,15,0,0,10,24,17,0,2,18,24,14,24,10,26,18,17,8,10,18,27,16,16,8,15,14,27,15,25,25,24,16,17,23,16,26,0,17,17,16,10,24,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,19,17,14,25,10,16,8,8,8,8,8,17,7,7,8,8,7,17,8,16,16,17,7,8,16,7,17,17,0,8,8,8,17,8,0,0,8,8,7,7,8,8,0,0,1,8,8,0,0,9,8,7,15,8,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,0,15,10,15,17,0,0,17,17,9,16,10,8,0,0,10,17,17,0,2,17,17,14,17,10,16,16,15,8,8,16,16,14,14,8,15,14,16,15,15,15,15,14,15,15,14,15,16,8,15,0,8,15,15,0,0,16,15,7,14,8,9,0,0,8,15,15,0,1,16,15,14,16,8,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,0,15,10,0,0,10,10,16,9,17,15,0,0,3,17,10,0,2,10,17,7,10,10,23,15,22,8,15,15,24,14,21,15,15,14,31,22,30,23,31,21,22,23,21,31,24,17,15,15,15,0,15,0,0,15,15,14,14,15,15,0,0,8,22,15,0,0,16,22,14,22,8,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,0,10,17,17,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18,18,17,8,10,18,18,16,16,8,15,14,18,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,0,17,9,16,10,9,0,0,10,17,17,0,3,18,17,14,18,10,18,17,17,8,10,17,17,17,16,8,15,14,17,15,18,17,15,17,18,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,0,10,18,17,0,2,17,17,14,17,10,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,16,16,9,7,9,7,16,14,9,0,0,9,9,0,9,16,14,0,0,2,16,9,0,2,9,16,7,9,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,0,9,16,16,0,2,16,16,14,16,9,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,0,15,0,0,3,17,10,0,2,10,17,7,10,10,9,9,15,8,15,9,9,7,14,15,8,7,16,15,15,8,15,14,15,8,14,15,9,8,8,9,15,15,8,0,0,9,8,14,7,15,0,0,0,1,15,8,0,1,9,15,7,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,0,0,10,10,0,2,10,10,7,10,3,18,17,24,8,17,17,17,17,23,15,15,14,24,22,25,17,22,24,25,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,0,10,0,17,0,2,17,24,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,0,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,0,2,2,2,0,0,3,2,0,3,2,19,19,17,9,10,18,19,16,17,8,15,14,19,15,17,19,16,16,18,16,16,18,19,9,17,16,10,16,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,0,17,14,18,10,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,0,10,24,17,0,2,17,0,14,17,10,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,0,7,14,14,0,0,14,14,0,14,7,25,18,17,8,10,18,25,16,16,8,15,14,25,15,24,24,22,16,17,22,16,24,25,15,17,16,10,22,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,18,17,14,0,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,0,3,10,10,0,2,10,10,7,10,0,0,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,10,7,10,3,10,0,10,8,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,15,9,10,17,1,17,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,10,7,10,3,10,10,0,1,4,10,10,10,9,1,8,7,11,8,10,10,8,10,10,9,9,10,10,1,11,9,3,8,11,0,0,10,10,2,9,4,2,0,10,0,10,10,0,2,10,10,7,11,4,1,8,1,0,8,8,1,7,7,8,8,0,1,8,1,1,1,0,8,8,0,1,8,1,15,1,1,1,1,0,0,1,1,0,7,8,1,0,1,0,1,1,0,0,1,1,7,1,1,3,3,4,8,0,10,5,10,9,8,8,2,4,8,3,5,1,5,10,2,2,5,3,1,11,4,3,1,4,0,0,5,5,2,9,11,2,0,3,0,3,5,0,2,3,3,7,4,4,10,10,10,8,10,0,10,16,16,8,15,7,10,15,10,10,8,9,17,8,9,10,10,1,17,8,3,8,10,0,0,10,10,2,16,10,1,0,10,0,10,10,0,2,10,10,14,10,3,10,10,10,1,5,10,0,9,10,1,8,9,10,8,10,12,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,12,12,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,9,9,10,7,10,16,9,0,16,7,14,7,10,14,9,9,7,10,16,8,9,9,9,0,17,8,2,7,10,0,0,9,9,2,16,10,1,0,9,0,9,9,0,2,9,9,14,10,3,9,9,9,7,9,16,10,16,0,7,14,7,9,14,9,9,7,9,16,7,9,9,9,0,16,7,2,7,9,0,0,9,9,2,16,9,0,0,9,0,9,9,0,2,9,9,14,9,2,1,1,1,8,8,8,1,7,7,0,8,0,1,8,1,1,1,0,8,1,0,1,1,1,8,1,1,1,1,0,0,1,1,0,7,8,1,0,1,0,1,1,0,0,1,1,7,1,1,8,8,8,8,8,15,8,14,14,8,0,7,8,15,8,8,8,7,15,8,7,8,8,1,15,8,1,8,8,0,0,8,8,0,14,8,1,0,8,0,8,8,0,0,8,8,14,8,1,7,7,7,0,2,7,9,7,7,0,7,0,7,7,7,9,7,9,7,7,7,9,7,0,7,9,0,7,7,0,0,9,9,0,7,0,0,0,7,0,7,9,0,0,7,7,7,7,0,10,10,11,1,4,10,10,10,9,1,8,7,0,8,10,10,8,10,10,9,9,10,10,1,11,9,3,8,11,0,0,10,10,2,9,4,2,0,10,0,10,10,0,2,10,10,7,11,4,8,8,8,8,8,15,8,14,14,8,15,7,8,0,8,8,8,7,15,8,7,8,8,1,15,8,1,8,8,0,0,8,8,0,14,8,1,0,8,0,8,8,0,0,8,8,14,8,1,10,10,10,1,3,10,10,9,9,1,8,7,10,8,0,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,10,7,10,3,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,0,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,12,12,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,8,8,8,1,1,8,8,7,7,1,8,7,8,8,8,8,0,7,8,8,7,8,8,1,8,8,1,8,8,0,0,8,8,0,7,1,1,0,8,0,8,8,0,0,8,8,7,8,1,9,9,10,0,5,9,11,10,9,0,7,9,10,7,9,11,7,0,9,8,9,11,9,0,10,10,2,7,10,0,0,11,11,2,9,3,1,0,9,0,9,11,0,2,9,9,7,10,3,10,10,10,8,10,17,10,16,16,8,15,7,10,15,10,10,8,9,0,8,9,10,10,1,17,8,3,8,10,0,0,10,10,2,16,10,1,0,10,0,10,10,0,9,10,10,14,10,3,8,15,9,8,2,8,8,8,7,1,8,7,9,8,8,8,8,8,8,0,7,8,15,1,16,9,1,8,9,0,0,8,8,0,7,2,2,0,8,0,8,8,0,0,8,8,7,9,2,9,9,9,0,2,9,9,9,9,0,7,7,9,7,9,9,7,9,9,7,0,9,9,0,9,7,2,7,9,0,0,9,9,2,9,2,0,0,9,0,9,9,0,2,9,9,7,9,2,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,12,8,11,10,8,9,0,10,1,10,10,3,8,10,0,0,12,12,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,10,17,10,8,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,15,9,10,0,1,17,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,10,7,10,3,1,1,1,1,1,1,1,0,0,1,1,0,1,1,1,1,1,0,1,1,0,1,1,0,1,1,1,1,1,0,0,1,1,0,0,1,1,0,1,0,1,1,0,0,1,1,0,1,1,10,17,11,15,11,17,10,17,16,8,15,7,11,15,10,10,8,10,17,16,9,10,17,1,0,9,3,8,11,0,0,10,10,2,16,11,2,0,10,0,10,10,0,2,10,10,14,11,4,8,8,9,1,4,8,10,8,7,1,8,9,9,8,8,10,8,10,8,9,7,10,8,1,9,0,1,8,9,0,0,10,10,0,7,2,2,0,8,0,8,10,0,0,8,8,7,9,2,3,3,3,1,3,3,3,2,2,1,1,0,3,1,3,3,1,2,3,1,2,3,3,1,3,1,0,1,3,0,0,3,3,2,2,3,1,0,3,0,3,3,0,2,3,3,0,3,3,8,8,8,1,1,8,8,7,7,1,8,7,8,8,8,8,8,7,8,8,7,8,8,1,8,8,1,0,8,0,0,8,8,0,7,1,1,0,8,0,8,8,0,0,8,8,7,8,1,10,10,11,1,4,10,10,10,9,1,8,7,11,8,10,10,8,10,10,9,9,10,10,1,11,9,3,8,0,0,0,10,10,2,9,4,2,0,10,0,10,10,0,2,10,10,7,11,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,12,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,0,12,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,12,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,12,0,2,9,3,1,0,10,0,10,12,0,2,10,10,7,10,3,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,0,2,2,0,0,2,0,2,2,0,2,2,2,0,2,2,9,9,9,7,9,16,9,16,16,7,14,7,9,14,9,9,7,9,16,7,9,9,9,0,16,7,2,7,9,0,0,9,9,2,0,9,0,0,9,0,9,9,0,2,9,9,14,9,2,3,3,4,8,11,10,3,10,9,8,8,0,4,8,3,3,1,3,10,2,2,3,3,1,11,2,3,1,4,0,0,3,3,2,9,0,2,0,3,0,3,3,0,2,3,3,7,4,4,1,1,2,1,2,1,1,1,0,1,1,0,2,1,1,1,1,1,1,2,0,1,1,1,2,2,1,1,2,0,0,1,1,0,0,2,0,0,1,0,1,1,0,0,1,1,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,0,0,10,10,0,2,10,10,7,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,0,10,0,2,10,10,7,10,3,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,12,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,12,12,2,9,3,1,0,10,0,10,0,0,2,10,10,7,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,9,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,0,2,2,0,0,2,2,0,2,2,10,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,0,10,7,10,3,10,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,0,7,10,3,7,7,7,7,7,14,7,14,14,7,14,7,7,14,7,7,7,7,14,7,7,7,7,0,14,7,0,7,7,0,0,7,7,0,14,7,0,0,7,0,7,7,0,0,7,7,0,7,0,10,10,11,1,4,10,10,10,9,1,8,7,11,8,10,10,8,10,10,9,9,10,10,1,11,9,3,8,11,0,0,10,10,2,9,4,2,0,10,0,10,10,0,2,10,10,7,0,4,3,3,4,1,4,3,3,3,2,1,1,0,4,1,3,3,1,3,3,2,2,3,3,1,4,2,3,1,4,0,0,3,3,2,2,4,2,0,3,0,3,3,0,2,3,3,0,4,0,0,17,17,8,10,17,17,17,16,8,15,14,17,15,18,17,15,17,18,15,16,17,17,8,17,15,10,15,17,0,0,17,18,9,16,10,8,0,18,10,0,17,0,2,17,17,14,17,10,17,0,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,19,15,10,17,19,0,0,17,17,9,16,12,10,0,17,10,0,17,0,2,19,17,16,17,10,17,17,0,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,0,17,0,2,17,24,14,17,10,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,0,8,0,0,8,8,7,8,8,10,10,17,8,0,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,17,15,0,17,3,0,10,0,2,10,17,7,10,10,17,17,17,8,10,0,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,17,17,17,8,10,17,0,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,17,16,16,7,9,16,16,0,16,7,14,14,16,14,17,16,14,17,17,14,16,16,16,7,16,14,9,14,16,0,0,16,17,9,16,9,7,0,17,9,0,16,0,2,16,16,14,16,9,16,16,23,7,16,16,16,16,0,14,14,14,23,21,23,16,21,23,23,14,23,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,0,16,0,2,16,23,14,16,9,8,10,15,8,15,8,8,7,14,0,8,7,15,15,15,8,15,14,15,8,16,15,8,10,10,8,15,17,10,0,0,8,8,14,7,17,17,0,15,1,0,8,0,0,10,15,9,8,8,15,15,15,8,8,15,15,14,14,8,0,14,15,15,15,15,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,0,15,0,0,15,15,14,15,8,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,0,14,0,0,14,14,14,14,7,17,17,24,8,17,17,17,16,23,15,15,14,0,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,0,17,0,2,17,24,14,17,10,15,15,22,8,15,15,15,14,21,15,15,14,22,0,22,15,22,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,0,15,0,0,15,22,14,15,8,18,17,24,8,17,17,17,17,23,15,15,14,24,22,0,17,22,24,25,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,25,10,0,17,0,2,17,24,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,0,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,0,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,0,15,0,0,15,22,14,15,8,17,16,23,7,16,16,16,17,23,14,14,14,23,21,24,16,21,0,24,14,23,23,16,7,16,14,16,21,16,0,0,16,17,16,16,16,14,0,24,9,0,16,0,2,16,23,14,16,9,18,17,24,8,17,17,17,17,23,15,15,14,24,22,25,17,22,24,0,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,25,10,0,17,0,2,17,24,14,17,10,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,0,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,0,15,0,0,15,15,14,15,8,16,18,23,7,16,16,16,16,23,16,14,14,23,21,23,16,21,23,23,14,0,23,16,9,18,14,17,23,18,1,1,16,16,17,17,18,16,1,23,9,0,16,1,2,18,24,17,16,9,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,0,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,0,17,0,2,17,24,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,0,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,8,10,8,8,8,8,8,7,7,10,8,7,8,8,8,8,8,7,8,8,9,8,8,0,10,8,8,10,10,0,0,8,8,7,7,10,10,0,8,1,0,8,0,0,10,8,9,8,8,17,19,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,0,15,10,17,19,0,0,17,17,9,16,12,10,0,17,10,0,17,0,2,19,17,16,17,10,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,15,14,15,15,8,15,0,8,15,15,0,0,15,15,7,14,8,8,0,15,8,0,15,0,0,15,15,14,15,8,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,17,17,10,8,10,8,0,15,10,1,1,10,10,17,10,17,15,1,17,3,0,10,1,2,10,18,8,10,10,15,17,22,8,15,15,15,14,21,17,15,14,22,22,22,15,22,21,22,15,23,22,15,10,17,15,15,0,17,0,0,15,15,14,14,17,17,0,22,8,0,15,0,0,17,22,16,15,8,17,19,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,19,15,10,17,0,0,0,17,17,9,16,12,10,0,17,10,0,17,0,2,19,17,16,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,0,0,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,0,0,1,0,0,1,1,0,0,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,0,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,17,10,18,17,17,8,10,17,17,17,16,8,15,14,17,15,18,17,15,17,18,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,18,10,0,17,0,2,17,17,14,17,10,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,17,16,9,7,9,7,17,14,9,1,1,9,9,0,10,16,14,1,16,2,0,9,1,2,9,17,8,9,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,17,16,16,7,16,14,10,14,16,1,1,16,16,10,0,9,7,1,16,9,0,16,1,2,16,17,15,16,9,10,12,17,8,17,10,10,9,16,17,8,7,17,15,17,10,15,16,17,8,18,17,10,10,12,8,17,17,12,0,0,10,10,16,9,0,17,0,17,3,0,10,0,2,12,17,9,10,10,8,10,15,8,15,8,8,7,14,17,8,7,15,15,15,8,15,14,15,8,16,15,8,10,10,8,15,17,10,0,0,8,8,14,7,17,0,0,15,1,0,8,0,0,10,15,9,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,0,0,1,0,0,1,1,0,0,18,17,24,8,17,17,17,17,23,15,15,14,24,22,25,17,22,24,25,15,23,24,17,8,17,15,17,22,17,0,0,17,18,16,16,17,15,0,0,10,0,17,0,2,17,24,14,17,10,10,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,0,10,0,2,10,10,7,10,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,0,2,0,0,2,2,0,2,2,17,19,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,19,15,10,17,19,0,0,17,17,9,16,12,10,0,17,10,0,17,0,2,0,17,16,17,10,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,24,24,17,8,17,15,18,22,17,1,1,17,17,17,17,17,15,1,24,10,0,17,1,2,17,0,15,17,10,14,16,14,7,7,14,14,14,14,9,14,14,14,14,14,14,14,14,14,14,17,14,14,9,16,14,8,16,16,1,1,14,14,8,15,9,9,1,14,7,0,14,1,0,16,15,0,14,7,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,0,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,0,10,0,2,10,10,7,10,0,0,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,17,0,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,17,17,0,8,10,17,18,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,18,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,0,0,0,8,8,7,8,8,10,10,10,8,0,10,12,9,9,8,8,9,10,8,10,12,8,11,10,8,9,12,10,8,10,10,10,8,10,0,0,12,12,9,9,10,8,0,10,5,10,0,0,2,10,10,7,10,10,17,17,17,8,10,0,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,17,17,18,8,12,17,0,16,16,8,15,23,17,15,18,20,16,18,17,16,16,19,17,8,18,17,10,15,18,0,0,19,19,9,16,10,8,0,17,12,17,0,0,9,17,17,14,17,10,16,16,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,0,0,2,16,16,14,16,9,16,16,16,7,9,16,16,16,0,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,0,0,2,16,16,14,16,9,8,8,8,8,8,8,8,7,7,0,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,0,0,0,8,8,7,8,8,15,15,15,8,8,15,15,14,14,8,0,14,15,15,15,15,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,14,14,14,7,9,14,23,14,14,7,14,0,14,14,14,16,14,16,14,14,14,16,14,7,14,16,7,14,14,0,0,16,16,7,14,7,7,0,14,9,14,0,0,7,14,14,14,14,7,17,17,17,8,10,17,17,16,16,8,15,14,0,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,15,15,15,8,8,15,15,14,14,8,15,14,15,0,15,15,15,14,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,17,17,18,8,10,17,18,16,16,8,15,14,17,15,0,18,16,16,17,16,16,17,17,8,18,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,17,17,18,8,12,17,20,16,16,8,15,16,17,15,18,0,16,18,17,16,16,19,17,8,18,17,10,15,18,0,0,19,19,9,16,10,8,0,17,12,17,0,0,2,17,17,14,17,10,15,15,16,8,8,15,16,14,14,8,15,14,15,15,16,16,0,14,15,16,14,15,15,8,16,15,8,15,16,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,16,16,16,7,11,16,18,16,16,7,14,16,16,14,16,18,14,0,16,14,16,18,16,7,16,16,9,14,16,0,0,18,18,9,16,9,7,0,16,11,16,0,0,2,16,16,14,16,9,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,15,15,16,8,8,15,16,14,14,8,15,14,15,15,16,16,16,14,15,0,14,15,15,8,16,15,8,15,16,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,0,0,2,16,16,14,16,9,17,17,17,8,12,17,19,16,16,8,15,16,17,15,17,19,15,18,17,15,16,0,17,8,17,17,10,15,17,0,0,24,19,9,16,10,8,0,17,12,17,0,0,2,17,17,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,0,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,0,0,0,8,8,7,8,8,17,17,18,8,10,17,18,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,0,15,10,15,18,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,15,15,15,8,10,15,17,14,14,8,15,16,15,15,15,17,15,16,15,15,14,17,15,8,15,0,8,15,15,0,0,17,17,7,14,8,8,0,15,10,15,0,0,0,15,15,14,15,8,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,0,0,2,10,10,7,10,10,15,15,15,8,8,15,15,14,14,8,15,14,15,15,15,15,15,14,15,15,14,15,15,8,15,15,8,0,15,0,0,15,15,7,14,8,8,0,15,8,15,0,0,0,15,15,14,15,8,17,17,18,8,10,17,18,16,16,8,15,14,17,15,18,18,16,16,17,16,16,17,17,8,18,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,12,17,19,16,16,8,15,16,17,15,17,19,15,18,17,15,16,24,17,8,17,17,10,15,17,0,0,0,19,9,16,10,8,0,17,12,17,0,0,2,17,17,14,17,10,17,17,17,8,12,17,19,16,16,8,15,16,17,15,17,19,15,18,17,15,16,19,17,8,17,17,10,15,17,0,0,19,0,9,16,10,8,0,17,12,17,0,0,2,17,17,14,17,10,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,0,0,2,9,9,7,9,9,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,0,9,7,0,16,9,16,0,0,2,16,16,14,16,9,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,0,8,0,10,3,10,0,0,2,10,10,7,10,10,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,0,0,8,1,8,0,0,0,8,8,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,0,10,17,0,0,2,17,17,14,17,10,10,10,10,1,5,10,12,9,9,1,8,9,10,8,10,12,8,11,10,8,9,12,10,1,10,10,3,8,10,0,0,12,12,2,9,3,1,0,10,0,10,0,0,2,10,10,7,10,3,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,0,0,2,17,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,9,2,2,0,0,7,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,0,0,0,2,2,0,2,2,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,0,17,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,0,14,17,10,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,0,0,0,14,14,0,14,7,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,0,10,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,0,0,2,10,10,7,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,0,1,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,0,0,0,1,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,2,0,2,3,3,2,2,0,2,0,3,2,4,2,0,2,2,2,2,2,3,0,2,1,4,0,2,0,0,3,2,2,4,2,1,0,3,2,2,2,0,0,3,4,0,5,4,3,0,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,2,2,0,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,7,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,7,2,2,2,0,0,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,3,3,2,0,2,0,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,3,3,2,0,2,3,0,2,2,0,0,7,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,9,0,0,3,2,0,3,2,2,2,2,0,2,2,2,0,3,0,0,1,2,0,2,2,0,3,2,0,3,2,2,0,2,0,2,0,2,0,0,2,2,3,3,2,0,0,2,2,2,2,0,0,2,2,1,2,2,2,2,2,0,2,2,2,3,0,0,0,1,2,0,2,2,0,3,2,0,3,2,2,0,2,0,2,0,2,0,0,2,2,3,3,2,0,0,2,2,2,2,0,0,2,2,1,2,2,0,0,0,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7,0,7,0,0,0,0,0,0,7,0,0,7,0,0,0,0,0,0,0,0,0,0,0,7,2,0,0,0,0,0,0,0,0,0,0,0,0,2,2,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,0,0,0,0,0,0,7,1,1,0,0,0,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,7,0,0,0,0,1,0,0,3,3,2,0,2,3,3,2,2,0,0,0,0,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,2,0,0,0,0,0,0,0,0,0,2,0,0,0,2,0,0,0,0,2,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,4,2,2,0,2,2,2,2,2,0,2,0,2,2,0,2,0,2,2,2,2,2,2,0,2,0,4,0,2,0,0,2,2,2,4,2,0,0,2,2,2,2,0,0,2,5,0,4,4,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,0,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,3,3,0,0,1,2,0,2,2,0,0,2,0,3,2,2,0,2,0,2,0,2,0,0,2,2,3,3,2,0,0,2,2,2,2,0,0,2,2,1,2,2,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,0,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,9,2,2,0,0,2,2,0,2,2,2,0,0,0,0,0,0,0,0,0,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,2,0,2,2,2,2,2,0,2,2,2,3,3,0,0,1,2,0,2,2,0,3,2,0,0,2,2,0,2,0,2,0,2,0,0,2,2,3,3,2,0,0,2,2,2,2,0,0,2,2,1,2,2,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,0,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,3,3,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,0,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,7,2,2,2,2,2,7,0,0,2,0,2,2,0,2,2,0,2,2,2,0,0,0,9,0,2,0,0,2,2,9,2,2,7,0,2,2,2,2,0,0,2,2,0,2,9,1,1,0,0,0,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,0,0,0,1,0,0,1,0,4,2,2,7,2,2,2,2,2,7,2,0,2,2,4,2,0,2,2,2,2,2,2,0,9,0,0,0,2,0,0,2,2,9,4,2,7,0,2,2,2,2,0,0,2,4,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,0,0,0,2,2,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,0,2,2,2,2,1,0,3,2,2,2,0,0,3,2,0,3,2,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,0,2,2,2,0,0,2,2,2,2,0,0,2,2,0,2,2,2,2,2,7,2,2,2,3,3,7,0,1,2,0,2,2,0,3,2,0,3,2,2,0,9,0,9,0,2,0,0,2,2,0,3,2,7,0,2,2,2,2,0,0,2,2,1,2,9,4,2,2,0,2,2,2,3,3,0,2,1,2,2,4,2,0,3,2,2,3,2,2,0,2,0,4,0,2,0,0,2,2,3,0,2,0,0,2,2,2,2,0,0,2,4,1,4,4,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,0,0,0,2,2,2,2,0,0,2,2,0,2,2,1,1,0,7,0,1,1,0,0,7,0,0,1,0,0,0,0,0,0,0,0,0,1,0,7,1,7,0,0,0,0,1,0,7,0,0,0,0,1,0,0,0,0,0,1,0,0,1,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,0,2,2,2,0,0,3,2,0,3,2,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,9,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,0,2,2,0,0,2,2,0,2,2,2,2,2,0,2,2,2,2,2,0,0,0,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,0,2,0,0,2,2,0,2,2,2,2,2,0,2,2,9,2,2,0,0,7,2,0,2,2,0,2,2,0,2,2,2,0,2,0,2,0,2,0,0,2,2,2,2,2,0,0,2,2,2,0,0,0,2,2,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,0,2,0,3,2,4,2,2,0,2,2,2,2,2,0,2,0,2,2,5,2,0,2,2,2,2,2,2,0,2,0,4,0,2,0,0,2,2,2,4,2,0,0,2,2,2,2,0,0,2,0,0,4,4,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,0,2,3,3,2,2,0,2,0,3,2,4,2,0,2,2,2,2,2,3,0,2,1,4,0,2,0,0,3,2,2,4,2,1,0,3,2,2,2,0,0,3,4,0,0,4,4,2,2,7,2,2,2,2,2,7,2,0,2,2,4,2,0,2,2,2,2,2,2,0,9,0,11,0,2,0,0,2,2,9,4,2,7,0,2,2,2,2,0,0,2,4,0,4,0,0,20,17,9,10,25,18,23,17,9,23,14,18,16,17,25,15,17,18,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,19,10,17,17,0,3,0,17,21,25,18,20,0,17,9,10,18,18,16,17,14,16,14,18,16,17,18,15,17,18,15,18,17,18,10,19,16,10,17,19,0,0,18,17,9,16,12,13,0,19,10,19,17,0,3,0,17,17,18,11,17,17,0,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,0,17,14,17,10,9,9,8,0,8,8,8,7,8,8,8,7,8,8,8,9,8,7,9,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,9,1,8,8,0,0,0,8,7,8,8,10,10,10,8,0,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,0,10,7,10,10,25,18,17,8,10,0,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,18,10,17,17,0,3,0,17,21,25,17,18,18,17,8,10,18,0,16,16,8,15,14,19,15,17,18,16,16,17,16,16,18,19,9,17,16,10,16,17,0,0,18,17,9,16,10,9,0,19,10,17,17,0,3,0,17,14,18,10,23,16,16,7,9,23,16,0,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,23,23,9,23,9,7,0,16,9,16,16,0,2,0,16,21,23,16,17,17,16,8,9,16,16,16,0,7,14,14,16,14,16,17,14,16,17,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,17,9,16,16,0,2,0,16,14,16,9,9,14,8,8,8,8,8,7,7,0,9,7,8,9,8,8,8,8,8,8,9,8,8,10,10,8,8,10,10,0,0,8,8,7,7,10,12,0,8,1,10,8,0,0,0,8,10,8,9,23,16,15,8,8,22,15,21,14,9,0,14,15,16,15,22,15,15,15,15,14,15,15,15,15,22,8,15,22,0,0,22,22,7,21,8,8,0,15,8,15,15,0,0,0,15,21,22,16,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,0,14,14,14,7,18,18,17,8,10,18,19,16,16,8,15,14,0,15,17,18,16,16,17,16,16,18,19,9,17,16,10,16,17,0,0,18,17,9,16,10,9,0,19,10,17,17,0,3,0,17,14,18,10,16,16,15,8,8,15,15,14,14,9,16,14,15,0,15,15,15,15,15,15,14,15,15,8,15,15,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,0,15,14,15,9,17,17,17,8,10,17,17,16,16,8,15,14,17,15,0,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,0,17,14,17,10,25,18,17,9,10,24,18,23,17,8,22,14,18,15,17,0,16,16,18,16,16,18,18,16,17,22,10,16,24,0,0,24,24,9,23,10,8,0,19,10,17,17,0,2,0,17,21,24,17,15,15,15,8,8,15,16,14,14,8,15,14,16,15,15,16,0,14,15,16,14,16,16,9,15,15,8,16,15,0,0,15,15,7,14,8,8,0,16,8,15,15,0,0,0,15,14,15,8,17,17,16,7,9,16,16,16,16,8,15,14,16,15,16,16,14,0,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,0,16,14,16,10,18,18,17,9,10,17,17,16,17,8,15,14,17,15,17,18,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,0,17,14,17,10,15,15,15,8,8,15,16,14,14,8,15,14,16,15,15,16,16,14,15,0,14,16,16,9,15,15,8,16,15,0,0,15,15,7,14,8,8,0,16,8,15,15,0,0,0,15,14,15,8,16,18,16,7,9,16,16,16,16,9,14,14,16,14,16,16,14,16,16,14,0,16,16,9,18,14,9,16,18,0,0,16,16,9,16,11,9,0,16,9,18,16,0,2,0,16,16,16,9,17,17,17,8,10,17,18,16,16,8,15,14,18,15,17,18,16,16,17,16,16,0,18,9,17,15,10,16,17,0,0,17,17,9,16,10,8,0,18,10,17,17,0,2,0,17,14,17,10,18,18,17,8,10,18,19,16,16,8,15,14,19,15,17,18,16,16,17,16,16,18,0,9,17,16,10,16,17,0,0,18,17,9,16,10,9,0,19,10,17,17,0,3,0,17,14,18,10,15,10,8,8,8,15,9,14,7,10,15,7,9,8,8,16,9,7,8,9,9,9,9,0,10,15,8,11,17,0,0,15,15,7,14,10,10,0,9,1,10,8,0,0,0,8,16,15,15,17,19,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,0,15,10,17,19,0,0,17,17,9,16,12,10,0,17,10,19,17,0,2,0,17,16,17,10,23,16,15,8,8,23,16,21,14,8,22,14,16,15,15,22,15,14,15,15,14,15,16,15,15,0,8,15,22,0,0,23,22,7,21,8,9,0,16,8,15,15,0,1,0,15,21,23,15,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,0,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,0,10,7,10,10,15,17,15,8,8,15,16,14,14,10,15,14,16,15,15,16,16,14,15,16,16,16,16,11,17,15,8,0,17,0,0,15,15,7,14,10,10,0,16,8,17,15,0,0,0,15,16,15,8,24,19,17,8,10,24,17,23,16,10,22,14,17,15,17,24,15,16,17,15,18,17,17,17,19,22,10,17,0,0,0,24,24,9,23,12,10,0,17,10,19,17,0,2,0,17,23,24,17,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,18,17,8,10,25,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,0,24,9,23,10,9,0,18,10,17,17,0,3,0,17,21,25,17,24,17,17,8,10,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,24,0,0,24,0,9,23,10,8,0,17,10,17,17,0,2,0,17,21,24,17,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,0,9,7,9,9,23,16,16,7,9,23,16,23,16,7,21,14,16,14,16,23,14,16,16,14,16,16,16,14,16,21,9,14,23,0,0,23,23,9,0,9,7,0,16,9,16,16,0,2,0,16,21,23,16,10,12,10,8,10,10,10,9,9,10,8,7,10,8,10,10,8,9,10,8,11,10,10,10,12,8,10,10,12,0,0,10,10,9,9,0,10,0,10,3,12,10,0,2,0,10,9,10,10,9,13,8,8,8,9,9,7,7,12,8,7,9,8,8,8,8,7,8,8,9,8,9,10,10,9,8,10,10,0,0,9,8,7,7,10,0,0,9,1,10,8,0,1,0,8,9,9,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,19,17,9,10,18,19,16,17,8,15,14,19,15,17,19,16,16,18,16,16,18,19,9,17,16,10,16,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,0,17,14,18,10,10,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,0,10,7,10,3,17,19,17,8,10,17,17,16,16,10,15,14,17,15,17,17,15,16,17,15,18,17,17,10,19,15,10,17,19,0,0,17,17,9,16,12,10,0,17,10,0,17,0,2,0,17,16,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,0,17,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3,2,0,2,3,3,2,2,0,0,0,3,0,2,2,0,2,2,0,2,2,3,0,2,1,2,0,2,0,0,3,2,2,2,2,1,0,3,2,2,2,0,0,0,2,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,0,0,14,17,10,21,17,14,7,7,21,14,21,14,10,21,14,14,14,14,21,14,14,14,14,16,14,14,16,16,21,7,16,23,0,0,21,21,7,21,9,9,0,14,7,16,14,0,0,0,14,0,21,14,25,18,17,8,10,25,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,18,10,17,17,0,3,0,17,21,0,17,18,11,10,8,10,17,10,16,9,9,16,7,10,9,10,17,8,10,10,8,9,10,10,15,10,15,10,8,17,0,0,17,17,9,16,10,8,0,10,3,10,10,0,2,0,10,14,17,0,0,17,17,8,10,17,17,16,16,8,17,14,17,17,19,17,15,16,17,17,16,17,17,8,17,15,12,15,17,0,0,17,17,9,18,10,8,0,17,10,17,17,0,4,17,0,14,19,12,17,0,17,8,10,17,18,16,16,8,16,14,18,15,18,17,15,16,17,15,16,18,18,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,17,17,0,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,0,14,17,10,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,0,7,8,8,10,10,17,8,0,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,17,15,0,17,3,17,10,0,2,10,0,7,10,10,17,17,17,8,10,0,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,17,18,17,8,10,17,0,16,16,8,16,14,18,15,18,17,15,16,17,15,16,18,18,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,16,16,16,7,9,16,16,0,16,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,0,14,16,9,16,16,23,7,16,16,16,16,0,14,14,14,23,21,23,16,21,23,23,14,23,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,0,14,16,9,8,8,15,8,15,8,8,7,14,0,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,15,0,15,1,15,8,0,0,8,0,7,8,8,17,16,15,8,8,15,16,14,14,8,0,14,16,17,18,15,15,14,15,17,14,16,16,8,15,16,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,15,0,14,17,10,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,0,14,14,7,17,18,24,8,17,17,18,16,23,15,16,14,0,22,25,17,22,23,24,15,23,25,18,8,17,16,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,0,14,17,10,17,15,22,8,15,15,15,14,21,15,17,14,22,0,24,15,22,21,22,17,21,22,15,8,15,15,17,22,15,0,0,15,15,14,16,15,15,0,22,8,22,15,0,2,15,0,14,17,10,19,18,24,8,17,17,18,16,23,15,18,14,25,24,0,17,22,23,24,17,23,25,18,8,17,16,19,22,17,0,0,17,17,16,18,17,15,0,24,10,24,17,0,5,17,0,14,19,12,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,0,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,0,21,22,15,21,22,15,8,15,15,15,22,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,0,14,15,8,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,0,23,14,23,23,16,7,16,14,16,21,16,0,0,16,16,16,16,16,14,0,23,9,23,16,0,2,16,0,14,16,9,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,0,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,0,14,17,10,17,15,15,8,8,15,15,14,14,8,17,14,15,17,17,15,15,14,15,0,14,15,15,8,15,15,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,15,0,14,17,10,16,16,23,7,16,16,16,16,23,14,14,14,23,21,23,16,21,23,23,14,0,23,16,7,16,14,17,21,16,1,1,16,16,17,17,16,14,1,23,9,24,16,1,2,16,0,15,16,9,17,18,24,8,17,17,18,16,23,15,16,14,25,22,25,17,22,23,24,15,23,0,18,8,17,16,17,22,17,0,0,17,17,16,16,17,15,0,24,10,24,17,0,2,17,0,14,17,10,17,18,17,8,10,17,18,16,16,8,16,14,18,15,18,17,15,16,17,15,16,18,0,8,17,16,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,8,8,8,8,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,0,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,0,7,8,8,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,0,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,15,16,15,8,8,15,16,14,14,8,16,14,16,15,16,15,15,14,15,15,14,16,16,8,15,0,8,15,15,0,0,15,15,7,14,8,8,0,15,8,15,15,0,0,15,0,14,15,8,12,10,17,8,17,10,10,9,16,15,10,7,17,17,19,10,15,16,17,10,17,17,10,8,10,8,0,15,10,1,1,10,10,17,12,17,15,1,17,3,18,10,1,4,10,0,8,12,12,15,15,22,8,15,15,15,14,21,15,15,14,22,22,22,15,22,21,22,15,21,22,15,8,15,15,15,0,15,0,0,15,15,14,14,15,15,0,22,8,22,15,0,0,15,0,14,15,8,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,0,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,0,1,0,0,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,0,17,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,0,9,16,10,8,0,17,10,17,17,0,2,17,0,14,17,10,9,9,16,7,16,9,9,9,16,14,7,7,16,14,16,9,14,16,16,7,17,16,9,7,9,7,17,14,9,1,1,9,9,0,10,16,14,1,16,2,17,9,1,2,9,0,8,9,9,18,16,16,7,9,16,16,16,16,7,16,14,16,16,18,16,14,16,16,16,17,16,16,7,16,14,12,14,16,1,1,16,16,10,0,9,7,1,16,9,17,16,1,4,16,0,15,18,11,10,10,17,8,17,10,10,9,16,15,8,7,17,15,17,10,15,16,17,8,16,17,10,8,10,8,17,15,10,0,0,10,10,16,9,0,15,0,17,3,17,10,0,2,10,0,7,10,10,8,8,15,8,15,8,8,7,14,15,8,7,15,15,15,8,15,14,15,8,14,15,8,8,8,8,15,15,8,0,0,8,8,14,7,15,0,0,15,1,15,8,0,0,8,0,7,8,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,0,1,0,0,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,23,24,17,8,17,15,17,22,17,0,0,17,17,16,16,17,15,0,0,10,24,17,0,2,17,0,14,17,10,10,10,10,1,3,10,10,9,9,1,8,7,10,8,10,10,8,9,10,8,9,10,10,1,10,8,3,8,10,0,0,10,10,2,9,3,1,0,10,0,10,10,0,2,10,0,7,10,3,17,17,24,8,17,17,17,16,23,15,15,14,24,22,24,17,22,23,24,15,24,24,17,8,17,15,18,22,17,1,1,17,17,17,17,17,15,1,24,10,0,17,1,2,17,0,15,17,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,0,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,0,1,0,0,4,2,2,0,2,2,2,2,2,0,2,0,2,2,5,2,0,2,2,2,2,2,2,0,2,0,4,0,2,0,0,2,2,2,4,2,0,0,2,2,2,2,0,0,2,0,0,4,4,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,0,0,14,17,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,15,14,14,7,14,14,8,14,14,1,1,14,14,8,15,7,7,1,14,7,15,14,1,0,14,0,0,14,7,19,17,17,8,10,17,17,16,16,8,17,14,17,17,19,17,15,16,17,17,16,17,17,8,17,15,12,15,17,0,0,17,17,9,18,10,8,0,17,10,17,17,0,4,17,0,14,0,12,12,10,10,8,10,10,10,9,9,8,10,7,10,10,12,10,8,9,10,10,9,10,10,8,10,8,12,8,10,0,0,10,10,9,11,10,8,0,10,3,10,10,0,4,10,0,7,12,0,0,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,21,21,7,21,7,7,0,14,7,14,14,0,0,21,14,0,21,14,14,0,14,7,7,14,14,14,14,10,14,14,14,14,14,14,14,14,14,14,16,14,14,9,16,14,7,16,16,0,0,14,14,7,14,9,9,0,14,7,16,14,0,0,17,14,0,14,7,14,14,0,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,7,7,7,0,14,14,7,14,14,14,14,7,7,14,7,7,7,7,14,7,7,7,7,7,14,7,7,7,7,0,0,7,7,7,14,14,7,0,7,7,7,7,0,0,7,7,0,7,7,7,7,7,14,0,14,7,14,14,14,14,7,7,14,7,7,7,7,14,7,7,7,7,7,14,7,7,7,7,0,0,7,7,7,14,14,7,0,7,7,7,7,0,0,7,7,0,7,7,21,14,14,14,14,0,14,28,21,14,28,14,14,21,14,21,14,14,21,14,14,14,14,14,21,21,7,14,21,0,0,21,21,7,28,14,7,0,14,14,14,14,0,0,21,14,0,21,14,14,14,14,7,7,14,0,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,21,14,14,14,14,28,14,0,22,14,28,16,14,21,14,21,14,15,21,14,15,14,14,14,21,21,7,14,21,0,0,21,21,8,29,14,7,0,14,14,14,14,0,1,21,14,0,21,14,14,14,14,14,14,21,14,22,0,14,21,16,14,21,14,14,14,15,21,14,17,14,14,7,21,14,7,14,14,0,0,14,14,8,23,14,7,0,14,14,14,14,0,1,14,14,0,14,7,7,10,7,14,14,14,7,14,14,0,16,9,7,16,7,7,9,7,14,9,9,7,7,11,16,9,7,11,9,0,0,7,7,7,14,16,11,0,7,7,9,7,0,0,10,7,0,7,7,21,14,14,14,14,28,14,28,21,16,0,16,14,23,14,21,16,14,21,16,14,14,14,16,21,23,7,16,21,0,0,21,21,7,28,14,9,0,14,14,14,14,0,0,21,14,0,21,14,14,14,14,7,7,14,14,16,16,9,16,0,14,16,14,14,16,15,14,16,16,14,14,9,14,16,7,16,14,0,0,14,14,8,15,7,9,0,14,7,14,14,0,1,14,14,0,14,7,14,14,14,7,7,14,14,14,14,7,14,14,0,14,14,14,14,14,14,14,14,14,14,7,14,16,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,14,14,14,14,14,21,14,21,21,16,23,16,14,0,14,14,16,14,21,16,14,14,14,9,21,16,7,16,14,0,0,14,14,7,21,14,9,0,14,14,14,14,0,0,14,14,0,14,7,14,14,14,7,7,14,14,14,14,7,14,14,14,14,0,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,0,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,21,21,7,21,7,7,0,14,7,14,14,0,0,21,14,0,21,14,14,14,14,7,7,14,14,14,14,9,16,16,14,16,14,14,0,14,14,16,14,14,14,9,14,16,7,16,14,0,0,14,14,7,14,7,9,0,14,7,14,14,0,0,14,14,0,14,7,14,14,14,7,7,14,14,15,15,7,14,15,14,14,14,14,14,0,14,14,15,14,14,7,14,14,7,14,14,0,0,14,14,8,16,7,7,0,14,7,14,14,0,1,14,14,0,14,7,14,14,14,14,14,21,14,21,21,14,21,14,14,21,14,14,14,14,0,14,14,14,14,7,21,14,7,14,14,0,0,14,14,7,21,14,7,0,14,14,14,14,0,0,14,14,0,14,7,14,14,14,7,7,14,14,14,14,9,16,16,14,16,14,14,16,14,14,0,14,14,14,9,14,16,7,16,14,0,0,14,14,7,14,7,9,0,14,7,14,14,0,0,14,14,0,14,7,14,16,14,7,7,14,14,15,17,9,14,16,14,14,14,14,14,15,14,14,0,14,14,9,16,14,8,16,16,1,1,14,14,9,17,9,9,1,14,7,17,14,1,1,16,15,0,14,7,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,0,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,0,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,0,14,7,14,9,7,7,7,14,7,14,7,11,16,9,7,9,7,14,9,7,7,9,9,7,7,0,9,16,7,11,16,0,0,14,14,7,14,9,11,0,7,0,9,7,0,0,16,7,0,14,14,14,16,14,14,14,21,14,21,21,16,21,14,14,21,14,14,14,14,21,14,16,14,14,9,0,14,7,16,16,0,0,14,14,7,21,16,9,0,14,14,16,14,0,0,16,14,0,14,7,21,14,14,7,7,21,14,21,14,9,23,16,16,16,14,21,16,14,14,16,14,14,14,16,14,0,7,16,21,0,0,21,21,7,21,7,9,0,14,7,14,14,0,0,21,14,0,21,14,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,8,7,7,7,7,7,0,7,7,1,1,7,7,8,8,7,7,1,7,0,8,7,1,0,7,8,0,7,7,14,16,14,7,7,14,14,14,14,11,16,16,14,16,14,14,16,14,14,16,16,14,14,11,16,16,7,0,16,0,0,14,14,7,14,9,11,0,14,7,16,14,0,0,16,14,0,14,7,21,16,14,7,7,21,14,21,14,9,21,14,14,14,14,21,14,14,14,14,16,14,14,16,16,21,7,16,0,0,0,21,21,7,21,9,9,0,14,7,16,14,0,0,23,14,0,21,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,1,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,1,1,0,0,1,0,0,1,0,1,0,0,1,0,0,0,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,0,21,7,21,7,7,0,14,7,14,14,0,0,21,14,0,21,14,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,21,0,7,21,7,7,0,14,7,14,14,0,0,21,14,0,21,14,7,7,7,7,7,7,7,8,8,7,7,8,7,7,7,7,7,8,7,7,9,7,7,7,7,7,8,7,7,1,1,7,7,0,9,7,7,1,7,0,8,7,1,1,7,8,0,7,7,21,14,14,14,14,28,14,29,23,14,28,15,14,21,14,21,14,16,21,14,17,14,14,14,21,21,8,14,21,1,1,21,21,9,0,14,7,1,14,14,15,14,1,1,21,15,0,21,14,7,9,7,14,14,14,7,14,14,16,14,7,7,14,7,7,7,7,14,7,9,7,7,9,16,7,7,9,9,0,0,7,7,7,14,0,9,0,7,7,9,7,0,0,9,7,0,7,7,7,9,7,7,7,7,7,7,7,11,9,9,7,9,7,7,9,7,7,9,9,7,7,11,9,9,7,11,9,0,0,7,7,7,7,9,0,0,7,0,9,7,0,0,9,7,0,7,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,0,0,0,1,0,1,0,0,1,0,0,0,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,0,7,14,14,0,0,14,14,0,14,7,7,7,7,7,7,14,7,14,14,7,14,7,7,14,7,7,7,7,14,7,7,7,7,0,14,7,0,7,7,0,0,7,7,0,14,7,0,0,7,0,7,7,0,0,7,7,0,7,0,14,16,14,7,7,14,14,14,14,9,14,14,14,14,14,14,14,14,14,14,17,14,14,9,16,14,8,16,16,1,1,14,14,8,15,9,9,1,14,7,0,14,1,0,16,15,0,14,7,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,0,0,0,14,14,0,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,1,0,0,1,1,0,0,1,1,0,0,1,0,0,1,0,0,0,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1,0,0,0,0,0,1,0,0,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,17,14,7,7,21,14,21,14,10,21,14,14,14,14,21,14,14,14,14,16,14,14,16,16,21,7,16,23,0,0,21,21,7,21,9,9,0,14,7,16,14,0,0,0,14,0,21,14,14,14,14,7,7,14,14,14,14,7,14,14,14,14,14,14,14,14,14,14,15,14,14,7,14,14,8,14,14,1,1,14,14,8,15,7,7,1,14,7,15,14,1,0,14,0,0,14,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,21,21,7,21,7,7,0,14,7,14,14,0,0,21,14,0,0,14,14,7,7,7,7,14,7,14,7,7,14,7,7,7,7,14,7,7,7,7,7,7,7,14,7,14,7,7,14,0,0,14,14,7,14,7,7,0,7,0,7,7,0,0,14,7,0,14,0,0,18,17,8,10,25,25,23,16,8,24,14,25,17,26,31,22,16,17,24,16,24,25,22,17,23,12,22,24,0,0,25,24,9,25,10,9,0,25,10,17,17,0,5,25,19,21,0,19,18,0,17,8,10,18,18,16,16,8,15,14,18,15,17,17,15,16,17,15,16,17,18,8,17,16,10,15,17,0,0,18,17,9,16,10,9,0,18,10,17,17,0,3,18,17,14,0,10,17,17,0,8,11,17,17,17,16,8,15,14,19,15,17,17,15,17,17,16,16,17,17,8,18,17,10,16,18,0,0,17,17,9,16,11,10,0,17,11,17,17,0,2,17,17,14,0,11,8,8,8,0,8,8,8,7,7,8,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,0,8,10,10,11,8,0,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,8,11,9,10,8,11,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,0,11,25,18,17,8,10,0,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,18,10,17,17,0,3,25,17,21,0,17,25,18,17,8,10,18,0,16,16,8,15,14,25,15,24,24,22,16,17,22,16,24,25,15,17,16,10,22,17,0,0,18,17,9,16,10,9,0,25,10,17,17,0,3,18,17,14,0,10,23,16,17,7,10,23,16,0,16,7,21,14,17,14,16,23,14,17,16,15,16,16,16,14,17,22,9,14,24,0,0,23,23,9,23,10,8,0,16,10,16,16,0,2,23,16,21,0,17,16,16,16,7,9,16,16,16,0,7,14,14,16,14,16,16,14,16,16,14,16,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,0,9,8,8,8,8,8,8,8,7,7,0,8,7,8,8,8,8,8,7,8,8,7,8,8,8,8,8,8,8,8,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,0,8,24,15,15,8,8,22,15,21,14,8,0,14,15,17,17,22,15,14,15,17,14,15,15,15,15,22,10,15,22,0,0,22,22,7,23,8,8,0,15,8,15,15,0,2,22,17,21,0,17,14,14,14,7,7,14,14,14,14,7,14,0,14,14,14,14,14,14,14,14,14,14,14,7,14,14,7,14,14,0,0,14,14,7,14,7,7,0,14,7,14,14,0,0,14,14,14,0,7,25,18,19,8,11,18,25,17,16,8,15,14,0,15,24,24,22,17,17,23,16,24,25,15,18,18,10,23,18,0,0,18,17,9,16,11,11,0,25,11,17,17,0,3,18,17,14,0,11,17,15,15,8,8,15,15,14,14,8,17,14,15,0,17,15,15,14,15,17,14,15,15,8,15,15,10,15,15,0,0,15,15,7,16,8,8,0,15,8,15,15,0,2,15,17,14,0,10,26,17,17,8,10,17,24,16,16,8,17,14,24,17,0,24,22,16,17,24,16,24,24,15,17,15,12,22,17,0,0,17,17,9,18,10,8,0,24,10,17,17,0,4,17,19,14,0,12,31,17,17,8,10,24,24,23,16,8,22,14,24,15,24,0,22,16,17,22,16,24,24,22,17,22,10,22,24,0,0,24,24,9,23,10,8,0,24,10,17,17,0,2,24,17,21,0,17,22,15,15,8,8,15,22,14,14,8,15,14,22,15,22,22,0,14,15,22,14,22,22,15,15,15,8,22,15,0,0,15,15,7,14,8,8,0,22,8,15,15,0,0,15,15,14,0,8,16,16,17,7,10,16,16,17,16,7,14,14,17,14,16,16,14,0,16,15,16,16,16,7,17,15,9,14,17,0,0,16,16,9,16,10,8,0,16,10,16,16,0,2,16,16,14,0,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,0,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,17,0,2,17,17,14,0,10,24,15,16,8,9,15,22,15,14,8,17,14,23,17,24,22,22,15,15,0,14,22,22,15,16,16,10,22,16,0,0,15,15,7,16,9,9,0,22,9,15,15,0,2,15,17,14,0,11,16,16,16,7,9,16,16,16,16,7,14,14,16,14,16,16,14,16,16,14,0,16,16,7,16,14,9,14,16,0,0,16,16,9,16,9,7,0,16,9,16,16,0,2,16,16,14,0,9,24,17,17,8,10,17,24,16,16,8,15,14,24,15,24,24,22,16,17,22,16,0,24,15,17,15,10,22,17,0,0,17,17,9,16,10,8,0,24,10,17,17,0,2,17,17,14,0,10,25,18,17,8,10,18,25,16,16,8,15,14,25,15,24,24,22,16,17,22,16,24,0,15,17,16,10,22,17,0,0,18,17,9,16,10,9,0,25,10,17,17,0,3,18,17,14,0,10,22,8,8,8,8,15,15,14,7,8,15,7,15,8,15,22,15,7,8,15,7,15,15,0,8,15,8,15,15,0,0,15,15,7,14,8,8,0,15,1,8,8,0,0,15,8,14,0,15,17,17,18,8,11,17,17,17,16,8,15,14,18,15,17,17,15,17,17,16,16,17,17,8,0,16,10,15,18,0,0,17,17,9,16,11,9,0,17,11,17,17,0,2,17,17,14,0,11,23,16,17,8,9,23,16,22,14,8,22,14,18,15,15,22,15,15,15,16,14,15,16,15,16,0,8,16,23,0,0,23,22,7,21,9,11,0,16,9,15,15,0,1,23,15,21,0,16,12,10,10,8,10,10,10,9,9,8,10,7,10,10,12,10,8,9,10,10,9,10,10,8,10,8,0,8,10,0,0,10,10,9,11,10,8,0,10,3,10,10,0,4,10,12,7,0,12,22,15,16,8,8,15,22,14,14,8,15,14,23,15,22,22,22,14,15,22,14,22,22,15,15,16,8,0,15,0,0,15,15,7,14,8,9,0,22,8,15,15,0,0,15,15,14,0,8,24,17,18,8,11,24,17,24,16,8,22,14,18,15,17,24,15,17,17,16,16,17,17,15,18,23,10,15,0,0,0,24,24,9,23,11,9,0,17,11,17,17,0,2,24,17,21,0,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,18,17,8,10,25,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,0,24,9,23,10,9,0,18,10,17,17,0,3,25,17,21,0,17,24,17,17,8,10,24,17,23,16,8,22,14,17,15,17,24,15,16,17,15,16,17,17,15,17,22,10,15,24,0,0,24,0,9,23,10,8,0,17,10,17,17,0,2,24,17,21,0,17,9,9,9,7,9,9,9,9,9,7,7,7,9,7,9,9,7,9,9,7,9,9,9,7,9,7,9,7,9,0,0,9,9,0,9,9,7,0,9,2,9,9,0,2,9,9,7,0,9,25,16,16,7,9,23,16,23,16,7,23,14,16,16,18,23,14,16,16,16,16,16,16,14,16,21,11,14,23,0,0,23,23,9,0,9,7,0,16,9,16,16,0,4,23,18,21,0,18,10,10,11,8,11,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,8,11,9,10,8,11,0,0,10,10,9,9,0,9,0,10,4,10,10,0,2,10,10,7,0,11,9,9,10,8,9,9,9,8,7,8,8,7,11,8,8,8,8,8,8,9,7,8,9,8,9,11,8,9,9,0,0,9,8,7,7,9,0,0,9,2,8,8,0,1,9,8,7,0,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25,18,17,8,10,18,25,16,16,8,15,14,25,15,24,24,22,16,17,22,16,24,25,15,17,16,10,22,17,0,0,18,17,9,16,10,9,0,0,10,17,17,0,3,18,17,14,0,10,10,10,11,1,4,10,10,10,9,1,8,7,11,8,10,10,8,10,10,9,9,10,10,1,11,9,3,8,11,0,0,10,10,2,9,4,2,0,10,0,10,10,0,2,10,10,7,0,4,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,0,17,0,2,17,17,14,0,10,17,17,17,8,10,17,17,16,16,8,15,14,17,15,17,17,15,16,17,15,16,17,17,8,17,15,10,15,17,0,0,17,17,9,16,10,8,0,17,10,17,0,0,2,17,17,14,0,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5,3,2,0,2,3,3,2,2,0,2,0,3,2,4,2,0,2,2,2,2,2,3,0,2,1,4,0,2,0,0,3,2,2,4,2,1,0,3,2,2,2,0,0,3,4,0,0,4,25,18,17,8,10,25,18,23,16,8,22,14,18,15,17,24,15,16,17,15,16,17,18,15,17,23,10,15,24,0,0,25,24,9,23,10,9,0,18,10,17,17,0,3,0,17,21,0,17,19,17,17,8,10,17,17,16,16,8,17,14,17,17,19,17,15,16,17,17,16,17,17,8,17,15,12,15,17,0,0,17,17,9,18,10,8,0,17,10,17,17,0,4,17,0,14,0,12,21,14,14,7,7,21,14,21,14,7,21,14,14,14,14,21,14,14,14,14,14,14,14,14,14,21,7,14,21,0,0,21,21,7,21,7,7,0,14,7,14,14,0,0,21,14,0,0,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19,10,11,8,11,17,10,17,9,8,17,7,11,10,12,17,8,10,10,11,9,10,10,15,11,16,12,8,18,0,0,17,17,9,18,11,9,0,10,4,10,10,0,4,17,12,14,0,0,0,11,10,8,10,17,10,16,9,9,21,7,10,14,12,17,8,10,10,13,9,10,10,15,10,15,12,8,17,0,0,17,17,9,18,10,8,0,10,3,10,10,0,4,18,12,14,19,0,11,0,10,8,10,10,10,9,9,9,9,7,10,9,10,10,8,10,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,11,10,7,10,0,10,10,0,9,11,10,10,11,10,9,9,7,11,9,10,10,9,11,10,9,9,10,10,8,11,9,10,9,12,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,11,0,8,8,9,0,8,8,8,8,8,16,9,7,8,9,8,8,9,8,8,8,7,8,8,8,15,8,15,9,9,0,0,8,8,14,7,8,15,0,8,1,8,8,0,7,8,8,7,8,0,10,10,11,8,0,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,8,11,9,10,8,11,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,11,0,17,10,10,8,10,0,10,16,9,8,15,7,10,8,10,17,8,9,10,8,9,10,10,15,10,15,10,8,17,0,0,17,17,9,16,10,8,0,10,3,10,10,0,2,17,10,14,17,0,10,10,10,8,10,10,0,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,0,16,9,11,8,10,16,9,0,10,8,15,7,10,8,9,16,8,11,9,8,9,9,9,14,10,15,9,8,18,0,0,16,16,9,16,10,8,0,9,3,9,9,0,2,16,9,14,17,0,9,9,10,8,9,9,9,10,0,8,8,7,9,8,9,9,8,10,9,7,9,9,9,7,9,7,9,8,10,0,0,9,9,9,9,9,7,0,9,2,9,9,0,2,9,9,7,9,0,9,9,9,16,8,8,8,8,8,0,10,7,8,10,8,8,9,9,8,8,7,8,8,8,15,8,15,9,9,0,0,8,8,14,7,8,15,0,8,1,8,8,0,7,9,8,7,8,0,21,9,9,9,8,15,8,15,8,10,0,7,8,15,10,15,9,9,8,13,7,8,8,15,8,15,10,9,16,0,0,15,15,7,16,8,8,0,8,1,8,8,0,2,16,10,14,17,0,7,7,7,7,7,7,7,7,7,7,7,0,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,0,0,7,7,7,7,7,7,0,7,0,7,7,0,0,7,7,7,7,0,10,10,11,8,11,10,10,10,9,8,8,7,0,8,10,10,8,10,10,9,11,10,10,8,11,9,10,8,11,0,0,10,10,9,9,11,9,0,10,4,10,10,0,2,10,10,7,11,0,14,9,9,9,8,8,8,8,8,10,15,7,8,0,10,8,9,9,8,13,7,8,8,8,8,8,10,9,9,0,0,8,8,7,9,8,8,0,8,1,8,8,0,2,9,10,7,10,0,12,10,10,8,10,10,10,9,9,8,10,7,10,10,0,10,8,9,10,10,9,10,10,8,10,8,12,8,10,0,0,10,10,9,11,10,8,0,10,3,10,10,0,4,10,12,7,12,0,17,10,10,8,10,17,10,16,9,8,15,7,10,8,10,0,8,9,10,8,9,10,10,15,10,15,10,8,17,0,0,17,17,9,16,10,8,0,10,3,10,10,0,2,17,10,14,17,0,8,8,9,9,8,8,8,8,8,9,9,7,8,9,8,8,0,8,8,8,7,8,8,8,8,8,8,9,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,0,10,10,11,8,10,9,9,11,10,9,9,7,10,9,9,9,8,0,9,8,9,9,9,7,10,8,9,8,11,0,0,9,9,9,9,10,8,0,9,3,9,9,0,2,10,9,7,10,0,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,0,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,0,13,8,9,8,9,8,8,8,7,8,13,7,9,13,10,8,8,8,8,0,7,8,8,8,9,9,10,8,9,0,0,8,8,7,9,9,9,0,8,2,8,8,0,2,8,10,7,11,0,9,9,9,7,9,9,9,9,9,7,7,7,11,7,9,9,7,9,9,7,0,9,9,7,9,7,9,7,9,0,0,9,9,9,9,9,7,0,9,2,9,9,0,2,9,9,7,9,0,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,0,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,0,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,0,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,10,0,2,10,10,7,10,0,15,8,8,8,8,15,8,14,7,8,15,7,8,8,8,15,8,7,8,8,7,8,8,0,8,15,8,8,15,0,0,15,15,7,14,8,8,0,8,1,8,8,0,0,15,8,14,15,0,10,10,11,15,11,10,10,10,9,15,8,7,11,8,10,10,8,10,10,9,9,10,10,8,0,9,17,8,11,0,0,10,10,16,9,11,16,0,10,4,10,10,0,9,10,10,7,11,0,15,8,9,8,9,15,8,15,7,8,15,7,9,8,8,15,8,8,8,9,7,8,8,15,9,0,8,8,16,0,0,15,15,7,14,9,9,0,8,2,8,8,0,0,15,8,14,16,0,12,10,10,15,10,10,10,9,9,15,10,7,10,10,12,10,8,9,10,10,9,10,10,8,17,8,0,8,10,0,0,10,10,16,11,10,15,0,10,3,10,10,0,11,10,12,7,12,0,8,8,9,9,8,8,8,8,8,9,9,7,8,9,8,8,9,8,8,8,7,8,8,8,8,8,8,0,9,0,0,8,8,7,7,8,8,0,8,1,8,8,0,0,8,8,7,8,0,17,10,12,9,11,17,10,18,10,9,16,7,11,9,10,17,9,11,10,9,9,10,10,15,11,16,10,9,0,0,0,17,17,9,16,11,9,0,10,4,10,10,0,2,17,10,14,18,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17,10,10,8,10,17,10,16,9,8,15,7,10,8,10,17,8,9,10,8,9,10,10,15,10,15,10,8,17,0,0,0,17,9,16,10,8,0,10,3,10,10,0,2,17,10,14,17,0,17,10,10,8,10,17,10,16,9,8,15,7,10,8,10,17,8,9,10,8,9,10,10,15,10,15,10,8,17,0,0,17,0,9,16,10,8,0,10,3,10,10,0,2,17,10,14,17,0,9,9,9,14,9,9,9,9,9,14,7,7,9,7,9,9,7,9,9,7,9,9,9,7,16,7,16,7,9,0,0,9,9,0,9,9,14,0,9,2,9,9,0,9,9,9,7,9,0,18,9,9,7,9,16,9,16,9,7,16,7,9,9,11,16,7,9,9,9,9,9,9,14,9,14,11,7,16,0,0,16,16,9,0,9,7,0,9,2,9,9,0,4,16,11,14,18,0,10,10,11,8,11,10,10,10,9,8,8,7,11,8,10,10,8,10,10,9,9,10,10,8,11,9,10,8,11,0,0,10,10,9,9,0,9,0,10,4,10,10,0,2,10,10,7,11,0,8,8,9,15,9,8,8,8,7,15,8,7,9,8,8,8,8,8,8,9,7,8,8,8,16,9,15,8,9,0,0,8,8,14,7,9,0,0,8,2,8,8,0,7,8,8,7,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,0,3,10,10,0,2,10,10,7,10,0,3,3,4,1,4,3,3,3,2,1,1,0,4,1,3,3,1,3,3,2,2,3,3,1,4,2,3,1,4,0,0,3,3,2,2,4,2,0,3,0,3,3,0,2,3,3,0,4,0,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,0,10,0,2,10,10,7,10,0,10,10,10,8,10,10,10,9,9,8,8,7,10,8,10,10,8,9,10,8,9,10,10,8,10,8,10,8,10,0,0,10,10,9,9,10,8,0,10,3,10,0,0,2,10,10,7,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4,2,2,7,2,2,2,2,2,7,2,0,2,2,4,2,0,2,2,2,2,2,2,0,9,0,11,0,2,0,0,2,2,9,4,2,7,0,2,2,2,2,0,0,2,4,0,4,0,18,11,10,8,10,17,10,16,9,9,16,7,10,9,10,17,8,10,10,8,9,10,10,15,10,15,10,8,17,0,0,17,17,9,16,10,8,0,10,3,10,10,0,2,0,10,14,17,0,12,10,10,8,10,10,10,9,9,8,10,7,10,10,12,10,8,9,10,10,9,10,10,8,10,8,12,8,10,0,0,10,10,9,11,10,8,0,10,3,10,10,0,4,10,0,7,12,0,14,7,7,7,7,14,7,14,7,7,14,7,7,7,7,14,7,7,7,7,7,7,7,14,7,14,7,7,14,0,0,14,14,7,14,7,7,0,7,0,7,7,0,0,14,7,0,14,0,19,10,11,8,11,17,10,17,9,8,17,7,11,10,12,17,8,10,10,11,9,10,10,15,11,16,12,8,18,0,0,17,17,9,18,11,9,0,10,4,10,10,0,4,17,12,14,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,]"
val global/trio-table = global/create-trio-table()
// Base affinity for a trio using the global ruleset.
pub fun global/trio-affinity(a: character, b: character, c: character): int
global/trio-table.at(a.index * 49 * 49 + b.index * 49 + c.index).default(0)