Statistics

Problem Statement for "ReconstructNumber"

Problem Statement

You are given the String comparisons with n characters. Each character in comparisons is one of '<', '>', '=', and '!'. These represent the relations "is less than", "is greater than", "equals", and "does not equal", respectively.

A positive integer X with n+1 digits (and with no leading zeros) is said to match the given comparisons if all the relations are true for pairs of consecutive digits of X, in order. For example, suppose comparisons is "<<=!". One integer that matches these comparisons is 14770. This is because 1<4, 4<7, 7=7, and 7!=0.

If no (n+1)-digit integer matches all the given comparisons, return an empty String. Otherwise return a String with the digits of the smallest such number.

Definition

Class:
ReconstructNumber
Method:
smallest
Parameters:
String
Returns:
String
Method signature:
String smallest(String comparisons)
(be sure your method is public)

Constraints

  • comparisons will have between 0 and 2000 characters, inclusive.
  • Each character in comparisons will be one of "<>=!".

Examples

  1. ">=!<"

    Returns: "10012"

    We have 1 > 0, 0 = 0, 0 != 1, and 1 < 2. There are other numbers that match these comparisons, but this one is the smallest of them all.

  2. "====!===="

    Returns: "1111100000"

  3. ""

    Returns: "1"

  4. ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>"

    Returns: ""

  5. "<"

    Returns: "12"

  6. ">"

    Returns: "10"

  7. "="

    Returns: "11"

  8. "!"

    Returns: "10"

  9. "><<>><=<=>=>"

    Returns: "1012101122110"

  10. "<<<<<<<<"

    Returns: "123456789"

  11. "<<<<<<<<<"

    Returns: ""

  12. "======<======<======<======<======<======<======<======<======"

    Returns: "111111122222223333333444444455555556666666777777788888889999999"

  13. "!!<<<<<<<<<"

    Returns: "120123456789"

  14. ">>>>>>>>>"

    Returns: "9876543210"

  15. ">>>>>>>>>>"

    Returns: ""

  16. ">>>>>>>>>!!!"

    Returns: "9876543210101"

  17. "!!>>>>>>>>>"

    Returns: "109876543210"

  18. "!!!>>>>>>>>>"

    Returns: "1019876543210"

  19. "<<><=>!=!=!<==!=<>>!>==>=!!>=!><=>=!>=!=><>=<>!<<>><<>!>>>>==!>=>=>>=<><<<>!>!=!><=!>!!!=!!<<>!!=<<<==!>>=!>=>><=><==>!!<=!>>!<<><=!=>!!=!<=!>!<<<>!!<<>=>>==!!!=!!!>!>!<=<<>><!>!=<==!<<<>>=!!!=!>>=!====!>!=>!>=<>=!!<==<==!!>==!!!<==!<=>>!<>!>=>===>!<>!<=!>!!<=!><>>>><=>>!=!<<<=<>!>=!!!<<=!>>><==><<<=!=<=<>!<<==<<>=!>>=<=<======>=<=><==!!!>><>=>=>=>!<<>>>>>=>=>>>>!>>>!=<=>>>!!!<=><=!!<>!=><><=>=<<<<=!<=><=<=>!=>==>>=>==>=><=>!!>=!!>!>><>>!!>!<=><=<>!=<<=>=!=<==>>=!><<<=>!=!!!!!=<=>=!>!=><=<==><=>>>><<><==!=>!=<<>!!!>><<<<=<<<<=>>!>=!>>>=>>>==<>!>!=>!==<>=!><==!!!>!>=!==>><>!!>>!!!=><!<>>><<>!>>!<>=!!=====!>>>=>>!<><<<==!=>=<=!=<===<>!<=<=><<>!=><>=!>=<<>!>!=<>>=>>!=<>=>!=>>>==>>=>>!>!>!=>>==><>====>=>==!=>>>>><=<>=!<=><=>!=!==>=<>>=!<><<==>!!!>!!<=!!!!!>!>=!!<<>!!<<==<=>=!=<<>>!>!>=>>>=>!<=>==!!>=>!==>>>==!>>=!>><==><>>><<=<<>!==!=>!!>=>===!<<<==>!>!!><!<>=!>>=>=!!<>=!!!><>>><=>=!!==<>>!!>!!!!=!=!=>!!<=!=!!<<<>>=><>><<=><>>!<>==>=<>><==!><==>>!!>==<>==>=!!!><><>!>!<==!!!<>!=>=<<<>=!>!!><>!<<>=!><=>!=>>><><<>!=!=!<<>=>!<=><==!><><=><>>===!<<>!!!!=>===><<>>=>!>>=>!>!=>!=<<=<>=>!<==><>!======><>!=<<>==<=>>!==!!!<<><>!!!>!<<=!>=!><>=>=><<><<=!<>!====>!==>!=>!>>==!<=>=<!>!<<=>!<==>=<=<=><>!!>=!!!<=<=<==!==<>>><<>>!><==!><>=!<<!==<<>=>==!=!>>!<=!!>=!=>!<<=<<<=!!><=>!=<<<<><><>!<=!!<><=>=><<=!<<>=<><=><=>!<<><=!<===>><>=!==!>=>!!<=!><=<<>>!!=>>>!<<=><>!<=>=<=!>><>><=><=<>>!=!=<=!>==><!<<<=>!"

    Returns: ""

  20. "!<>>!>!!!>==>=>><<><<<><<!>>><=<<==!=>><<<<===<=<==!==>==>>=>!!>>!><><==><<<<===>=!<<<<=><=>>!>!<=><<=====<<===>!=>>!!===<===>!!!<=!>>!!!<<=!!<=!==><<>>>!<>>!<====!!<>!!!<<>!>=<=>>>>>!=<==><<=<><>=<<<<>!==!<><=<<>>!=>=>!>=!>!=!<<==>=>>=<=>>==!<>==>>><<=<<><=<<<==!><=>!!<==><>=<><>!>=!>!=>=>=<>>><=!!>>>=!!<==!><===<<<>!>!!!!=!=>==!!<==!!>=!=!!!><>>!>=<>!!=>=<>!<>=!!=!<===><==!>=!<=<<<=!==<<<=!==>=<<===!!!<=!=!>==>!>><<=!>!>!>>>><<<!=!!<>>===>==!<===><=<=>><>>><=====!<<<=!=>>!<>>=<<>=<>!<>!<><=<>>>>==<=!=>=!=>=>>!=>=>>><<=<>>!=>>=>=>>><><>=>><<==!==!=>><><>>>!>=>>==!<>=<><>!>><=>===>>!!!<==>!<=>>!><>>>!!<=<==!<<>>=>>>==!=!=!!!=<><=!!!=<>>==>>===!><=><==<>!<<===>=!=<<!>==<<=!><=>>!>!===!>=!>>>>!=>!>!!=!==!<=>>!<=<>!!=!=!!!>!!!><<>!<>><>>>>!>==!<<<>><=<=<><=!!>====!===!=!!><>>====!<<<>!=!>!!><>=>!<<>>!==!==<>==!!<>>====>!!=<>!!<><<>!>==!>!>>!<>!=>!=><=<>==<=<==!!==!==<>!>=!=!><=<=>=>!<>!>=>><>=!==<=<<>==!<>!>!=!<<>>=!!!<>><><>=!!>>!==!><==<>=!!<=<=>=!!====<<=<=!<<=<<<>><>>!=>=><<>>=>>>!!<>==<>=!!<>!!!<=<<=>!!>!>><>==>>>>>!>!=<>>>!=>!=><>==<=>>!<><<=>!><<><<<=<<==<>=>==<<==<<>=>>!>!<=>=!>>!<<==>!>>=<<>!!=!<=!>!>!>=>!==<<<<<>!<><><===!>=!=<=>=<>!=!!>=<>=>=<=!<>>=>===><==<=!>>><<=!<>=<>><<=>!=>=<<=<<<=<=><<=><><>>>>><>>><<=!<==<=>>=!=>=!!=>!<=><>====!>>>!<===>=>><>!>>=!!!<<<!!!=!>><=!><=>><>>=!!<=!=!<=>><>=>=>>>=!=<>!><<==!<=>=>=>><=<<=>>>>=!>>=>=!!!=!<>!<>>==>=!!!=!!<>====!>!><>!!!=

    Returns: "1021010102111001010101123210120123012301220321011233311012101234445001100112230100120444333211012101010012220101110123444400123456001101012110221010122012222223444402210100101111010010111110120100111101012231010123301221110132101210122222012010123010055432101122201223010012340111010112310221101010110000123345567700100101101333221001101021000143332101223401123444501000120101110011201011010111010010122010100101120013211001010111132101103210010111201120111100012301010100112010210001011101001101202101001012200101200100123011230000101210111200122345601010123001112344001001211001222201011012002111021012210104321012301201101201000121011210103211110001222201122101200432101111110123322101210012001012012011432100101201001122003322101204433210122310221010154433210103221012220002210101201010132101010013332210120001230110121001010210332222101012322221110122101032101011222012105433210001100101120110100210001033210000101201101112012333300112340112010010120100012210221010120111120043210110101001112101221012230100110120101012012103210101121012310001234101122301101000001211010112220000110102100010110120001234011010000210120101010011021101231011100010001210132111110100101010120100010101021012012311011011200012201122201110001010011201122110120322101001112234010100012010110121001012101010012101110100123450101234560121011120010112200101012000001223411100123345601021021022110154332101010001001010101200012011233012021043332101032101010123012201132101101101201112234100011201010112333421012012201012012334555611012001010012223110132210101220021012333010101021001201001230120012101011022210102110111234560120101211000010012011001012012001100101101202100211001104322111101112210100003210101012230112301220100210122011001223455660123211010543210101012001123210122011122100110010121101220100000321012010101112443322101021001012010123401012101002101121101022102100101100122105443321001120101222011001012010432210112334010543210010121001021001011010121012211100101120112010100000101010101120"

  21. "!!><<>=><<><<<>><=!==>=!<<==!<<!!!=!<<=!==!=>!!<!<==<=>!>>!!>==<<<>>>>===<<==<>=>!>==!><==>>!=<<==<><<<=!!!==!<>=>!<>=!<<<==>=!!!==>>==>!!!!!=!>!=!!!><>!<><<=<>===>>!!!!=<=>=>==!!>=!==!<>>!!<===>>=<>=>=!=>>>!!>!>!>=<>!>!><==<<==!!==!>=<<==!=<<<<=<><=>>>=!!=><<<=!<<>!>>!>!<>=!<=!=<=<=>!>=!>=<>><<=!=>>=<=!<=!!!!!<>=!=><><<=!>=!=>><=!====>!>!=>>>=>=<<>=<><=><<>><>=>!!=!=>!==>!=!!=!!!=<=!!><>!=>!<>>=>>=!<=!>=<<<<<=>>>!!<><<!<=!!!!!=>!><>>=<=>=>!==!=<<>>>==!!>>!>!<=!<><<=<==>!===>=>!>!=<>>=!!>!=<>=>=!>><<=<==<>===<!!<=<<=<><>!>=!===!!>===<><><>><>><!!>!>>!=>=!<====>!=!=<>>!===!=><>=!=<==>>=><<=><>>=!===!=<==!!<=!=>=>>!><>>=>>=><>!!>>==><=!=<>==!<=>!>>>>>=<=>!=<==!=!=>!>!!=<==!!!=>=<>>!===!>==>=<=>=>!>=!!<><><>!>!>>!>===!=!<>===!>>!!<=!>>>===>=!>>=>==!<>>>==>=><>=<>!!>!>>==!>>!<==!==<>==>=!>=!!==!><=!=!=>=<==>!=<=>!=>=<>!!!<=<><<==>=>>>><><<=><<><=>>>>>=<===>!!=<<>!<><>!=<<><=><=<<<<=<>!=>=<=!=>><===>=!=>=><<<=!<><=>=!=!>=<==<>>!>>=<<<==<=!<=><>!==!=<<><==!!<=<>><>>!>!!<>!<===>!==>>>=><<>!>!==>!!==!<><=!>>=>><=>!=!>>!>!!<>!>=!><><><=!<<=!<=!<=!==<<<=!=!!!!!!!=>>>=!>>=<>!=!>=!>!<>>=!>><==<<=><<>!=>>=<=>!<<==><>><>>=!=>!==<>>==<=>!>!=>><!!!=!>>=>!>=>>=><>=!>>><=<<>=!=<===!!=<>=<=><>>>==>><<>=<==><==<<<>>!!>!!!!>!>!><>!<<>!<<>!!!>!<=!!<<=>>>!<=<=><>>!=!<>=<<=!<<<>>>>=!=>!=!<==>><<<!>=!>>>=<<>=!>><"

    Returns: "101012110123021012310110010011001010001001200100210101222001233301230120121101001233000110101201100011101222330210120001243210000123100021101010101000102221011233340123000120110100012010101012110120101100123444001022210001210101012110010110120101201223010110123001032222101010012011203221100012001110101001234010221010120222210021100120001233433210101010121010100101010111233301112001222001234450332100122012330120210101230123012100122010112001122010120010021012233101001222301101010011011010101010100110101221002210112222201044321100120010110120102102110100110112021101101120001123012010112201010120211012010210101332210101222001221001234552101010123010110011120122010122010210011012110111001321000121010122010122334012330122311011112012010001103211010112100120120111200211002101223334000012012201012010101210120112001223010100111101000012010112101021021012110120210110012222201100101221011112201001122210100211012231010011121021001111001110122332210105433211010121001012311011001000122054321001101122200110101001110122002101111200102110101112010123330010012200120000332211010120010101012010101012011222220111010321010001010100110100001202101011432111100321100015432221101001012021000101120120033210120122200021110010012012011120110011001110112201100101012230155544321010122012055432100111101001201201011230110112345561010110011221011110022110123301011001201120011201122002102100123012011011122010111100101101201101012100011230111012231021012010111231010101222204443211012010111010001201143221011011210101010100101001201010110122011011000120101230100110121010121010143321002100101120010000012301101012100210111233012321022101200120211012333021021001101112100011010221012110101132110100101222432110101101002101021011230011201011110112001105432221012322100112000123321101112341012010120101010123012301010122012334010001244432101223302101101201001001010122012432100120110110222101201231012101003210010101012002101"

  22. "=<=!!=>!!>>!!===!>!><>=!!<=<==<=>>==<>>!=!>!>!!>!!=>!>!><>!>!=>=!<===!<>!!<<>!=>>!===!>>>==<=!!!!>!><==!=!!=>>!=<<<>=!==>!!<>=<<><<<=>>==<><=<====!<<>>==<==!!<=>=>==><=!>=<==>><>><<=>!!><===!====>=>>>><>>=>>==!<===!=>>!=<=!>><>==<>=!><==!=<=<<=!<<<<=!<>>!==!<>>!<=><=>>===<<=>>==><=!>=<<>=>!!===<>><=>>>>!<=>!<>!==!><>=>>===!==>!><=>>>=>!><==>!>!!!<>==<=!<==>!=<=<>><=><==>>=<<>!<=>><=>><=!>!=!>=<>=<<>>>!<=<><=!!=<=<==>!=>!!!>><<!>!!====<><><>!><><=>!=<<<=<>=<<==!><<==><==<<>>=<>>=!===<<=!==!<==<!=!!<=!=!<<>!=!=><><<<=!>=>>>!!<=>=!>>!!=>=!<<=>><=<>!<=>!!>>!>>!!>=<<===!>>!!>!>>>=!!<>=><=<=><>>!<=!=>==>===><=!!=!<=<=>><=>!!<==<>===>>!><===!=!>!>==!>><>!>=><><<>!!>>=<<>==<<><==!!><>!!<=<>!!>=><<><><<<==><<==!!!>!!!><>!===>=<=>>>><=>=<===!<>!!<<=!>>!><>>!=><=<<=>!>!==<>>>==!!<<<>>!=!==!>=>><!>=!==!<<=><=!>!>=!=>>>>=<=!<<<>!===!==>!==<><=>>>>>!!=>!>====!>!!<><>!=>!>=!<>>!>=>!===!!=>!!!>=>>>>!><=!!!!><<>=<<<>!!>=>!>!=>!>!==><=>!<>=!!==!!!<<>><=!=<==!><=!=<<<>>!!>=!>!!<=!><>><=!!>>=<<<><=<=>!=>=!<<<<>><=<<<=>=>!=<<=<==<<><><>>!!=!<==>=<>!<===<=!=>!>>==>!!===<===!>><=>!!>!!!>>><<=>!<>!<><<>><=>>>==>!>!>=>!><<==>!>==<>==>=!!!>>>!>==!!=<=<>>!>><==<<=>=!<==>=>!=><=>!!=!=!!>=!>=>=!!<<><>>!=<<=>=!=<>>=!!>!=><=>!=!===<>!!!>>!<<<>>!!=>>>==>>=>>>>!<=>>!=<<==!!!<><<>>=><<>=>!==!=<<<<<>!=<<<>>=<><>!>!=!><>!>!>>!!!<>>>!!!==!=!==><<><=>!!=>=>!<<<=<<=====!>>=<=!=>>><<<=>><<<=!<<==!!="

    Returns: "11201201201101101210100010010010101001011222331000210112012022101001230100010120122010101010110012222012010101202210111132100011010101011100122101123400111010100120123340010132100010112301234010112000001231000101012001011000103322111011200222102101220120111100001001665544321010101104322100012222331011230100012200210100010010122011100112330123410110210111012021012202210000101220123456677880133211101101000210012010121101000021044321012230101230001011012210120112100103221012000011101011010104321101011101010120001101110112001111010112101102221001201221022101120112001001321012230012101011200001012223000112101001122201101021012300001012201010000010101010101010110112344500122210122201201112310021001111233000122234101101220012301122010120123343321010110012021012200123340321011201210110120102102101200123011000021012032100102110112231010210210122001321110010122111011011011221011010111322221010111120101120100010101231010211010120121001200012011101010101120121101201012000122012223012345566210122201222012010101011112310022101321011001111010101201011210102101101123301011132100010123101100010010100113210122012110120001231001110122011201004432100110123011200100011101112055432101220100000101010101101010012330012102110111101101054432101011010101200123012110101101011010111011012001000121010121012110012101012100111201100123101010120010101120210120112001210012012012101011220110012345101123441101123344456010210100120001001112201112010010021001012222331103211101000011112101010110120103210122012012012000102103321000102101021101012300211101000211100103210101220001001121021012010111100012200122012221101101101001101002110010120210112330012100210012011201210110110000101201010210123410199876665443210123442210112334100101201120101321101200121011100123450112341001010101120101012021010120101321010111001110123012201231011010123001001201221101010123445601111123012011100000021001133210123310123301222011"

  23. "<==!!==<=<<>!=>><>!!>=<=!!>!!<=!=!><>==!>=<><>!=>>=>><>!=>=>==<<>>!<><=<<>!<=!<<==!!=><<==<=!!>=<<==!<>!<!>=!==!<>=<<===!!=!==>!!<==>=<>><==<>=>=<><=<===!<=<<==<>===<=!=>!=<>=!>!!<=>==<=>!<>><>>><<>=!<=!>!>!!<=<=<===<>><=!>>!<>!!>>=!=<<=>=!>>==>!<<!=>!=<=!!<<<<<==>!<<>>><<====>>==!><<>><<><>!==<>>><>!===!==><====!!!!====<<<==!>!!!=<>>>!>=!>!<>>>!>>=>>=<=!>!=!!!<>!=!<>>!!!>==<=<><=!>=><>><=!!!<<=!!=>!>>>><!!>!!>>=<<===!<=!!!>=>>!>!<>===<<>==>><==<<==>>>!!>=!=!!<>!><>>=!!!>><><><=!=>>>>!!=<=>!=>==>>><>!=!!<=!>!=>>!=!!==>==>!=!!<==><=>>!<<>>!!<=!!!>=!>!>>!>!==>>>=!<<>><>==!!>>=><>!>>=!>=>=><==>=<=<=>=><>=<>>=====>=!<>!!>>><>!<>>=!<>>!=!!>><<<==>>!<>>===<=>!>==>>>>!<>=>!===<>==<<<<>=><<!>>>>=<>!>!!>!!>>==!>=<<=><<><<><>=<<=<<>!>>!>><=>=<<>=!!>>><=>!==<!!<>==!>!!=>=>==><==><!<==!>><>>=<<>>><=!!!>!=!>>!<=>!=<<<=>>>=<>!=>=<=><=<>=!><>>=!====<>>>!!><<>>><<>==>>=<>>=>=!<<=>!>!!=>!>==>>!<<=!>>>!>=<<>=!!====><==!!=>>===>><==>=>!><=<>=>>!!<=!==>===<<<>!!=<>!>!<>=><=<>><><>>>>===<>>=>!>=!>>!<<>><=><>>==<<>=!!!==<<<==!=!><!=!!!>>>>>>=!!>=!=<<=<<>=>=<<><><==>>>==<>!<==!>>>!!!<><>!!=>==<><>=!====>!>=<>=<><>!!=!<==<<<<<<<<><>!=<>>!<=<<==<<==><=!=!>!==>!=!=!=!=<>>!>!>><=!<==>=!!<<=!<>=>>!==!=!=>>>=!!=!=!>=<<==!=>!<>==>==!>=!==!<<=!=>=!!!!>!!=<>!<>=!>==<>=!=>>!!<>=<>===>!!<==!><=!<>!=>>>=>>==!<=<<=>=!=!===<=>!<<=<"

    Returns: "12220111223450012210110101210101200120100110101011001010001001012000120012104432210101120012230103211000121012011234012101220122201101222334001012001222010120001220110120010122010110101001110100122220120100111010111002101112110010112222011233340000112201120012001011210101231100011012010210321012001221012012101200111111201223345001200002101121012301202101210010112220012201123300120112330432111012341011011220123401012333010012301222201001222012321012222210001012101201011132101011112220111110101112100012301010101112010113210100101321021013322100110102101120122101012011021010121012100011201121102101101012110121101011012110012204321012010120121001222201101200100113210101200101011000132221011123332101200110120102100120121012101010101201101544321010012011011001433210101101210112022101101201333222111011012220221010100101231010110120122012001021010112043321012001231010001010112304321101012021003221101110011221101001001220321111110012010010101010132101012100121011010120111021012333101210000110544432101211011112000123411012301101200122201011223340432100101101010120121000100122012012010012234021021011001200120120101010110103210110111230012101010001013322111010101231110120120101010111220122231010122210120101001321011012101011010101121012201123442100101100110121001001021001111132101201321012101010133222100321100123301012201243222101233401123010124321010012001222220111022100010322101110012101011201001010101123001032210101100010112210000100101012301001010121101120101123310104321000021010122221101002101231011021000120010111201001012201233300101210110165432100120011233451100120103332100010122232101012010122000101001111101001233100101012201112345678901011234421012234445666011001011101100110021010101101011021012100122200122201012010122211012203221011100332100100112001222012221101230122201101221001010110101111211000100111201201233110010001010120100101200100123010001002210101002111101011120110105543221000120111230112330011000011012334"

  24. "!<<>!=!<=>>!!!=>===<==<<=<<>!<>><=!!<><>>=>!!>=>=!=!==!>!>!=!>!<=!>>=<==<==!!>=!=<=>>>>==<>>=!=<>!=!<<<=!!<=>>>!!<=><>=!=<=!<=!=!<=>>!<>!=>>>>>>=<=>>=!><<<>>!>!><=<>><=!!!=!<=>=><<>>=!<==!>><!<=!=>=<=!=<=<><==>>!!<<=!!=>==>>>=<=!==><=!=<<=!>!!=><>>!=<=><><=!=!=!!>==>!>!!==<<==<==!=!!!!>!>=<>=<=!<>><==!>=!=!!<>!===>===>>!>=>=><>!>=!!<>!>>!=!=>>>!>!!>>=<<<=<=!=<>=<=><<>><=!<>>>==>=!!=>>!!====<>!<=!!=<=!=!!<<<<=!!>==!!==!!===<=><=<=>>=>!!===!>>>>!><>=!><=!!<=!>=!<<>=>>!>!!<<<=!=!==!!==<><<=><>>=><===<<=!=>>>=!><>!=<>>>>!><!>!!<>>=!<=!=<>!==!===!>=<==>>!=><><<>!>!>>=!!==!!=<>><<=<<<<=!>>=>=>!==<<>=!>===>=>!>><<><<=!=><>>=>><><<<!=>>!!!>!>>!=<==!<===!=><=!<<==>>>=>>==>=<=>==!>>>=!<>>==<<=!=><=<=!>!=>==!=>!=<>=>!=!!<!!>>>><>=>>!!!!==!>>><>!=>==><>==!=!=!>=>!=>=!<<<=>>===>!>=>!>=>!!!=>>=!><===>!<<<=!!=!>=<==<<=<><>=!=!<=>!<>>>>>=!=!>>!<==!!!<>>!<=<><=>!!=!=<>=>!<>>!!>!=>!!>>!!>=>!>!>!<>>!!>=!<=>=>!<<=><><<>><=<>>>><==!=!==>=<><>!>>><>>!<=<=><=!!!!>=!<>=!>=!==>====<==>>><>=!>!<<=><!>>>>>=!<>>=>=!>><>>!>=<=<>==<>=!<>>=!=>=<=>>==><==<<>>>>===<==!><><=!!<><>=<>>>!>==!<><=!=!=!=!<=><>=<<=<>!=>=!!>>=!=!>=!!>><<==<>>===!<<=!<<<<=<><>!>!>=!=>><=!>!><=!>=>=!>!!>!<=>=!=!=!!>!>>=>><>>=!==>>==<>==>!=>=!>>>>!====<==!!==>!=!=>!<<>!==>!!<=>!=!!=>=>><=>>!!=>==>><=!==>!==!<<=>>=!<=!<=<>>!>==!===<=<<=!=><=<>=>==<>===!>=>!>!==!>==<>!=<<<>!==!<>>!=!!==!><<===<><>>===<<>=>=!!>!!><>==!<=>=<><=><>=!=<>!=="

    Returns: "12010123011022101011000011123345012303210110120321101201012311001100010101120122310011122201001144321000210011201101233012201332101011010011220110012234210120443210101122301032100221001012310101011210110100122110120101010100101012334100122231012012201221100110011200123410101012012342102221010123010014433321001122201100122101220210112201011001102111010101010120010122010001222333001010102101001001102101112001101230123301210112012433322221032211010100101010101022101133210123101210101200120101223300100110120100002101101014321110010010032101010120000010101123301012201123012100110120111201234401000100010000101011001201101133211010000432101010010110122100123221010101233401001010110001000101010122032110111123340103321001010114321010120101010210012310011201110001011200120122223334021002221011010120102100100120010012010321012012234566432211011201010012010121111001001010133222110101001120210120101220122110432210101234010102210101021011222011112201101222101054332111001100032100121000120122110112210110001010110112110110123010120100110010101543210322101010001011203210101100102211010001200101200112110110012310123433211110211010120010002210102210010100101010111101010122333301234401120011123340100110110154321001121012220101010121012230110100112110120122010210101101200120120110101221010111102101211012010012010101221010121012001221101233422101201231012012101123054321011101001001001110101101222300101032102101223301101010012001001110000033321010010123301210543210012100100122230210021021010011200010012100110022100101231101112432100120001112010110123210100321010001201100112010110110100123010010110012100112001210123011201011100021000012330123410112010101002210120122001200101011211001012012200110012032110121010102100112001010332210001000101222310110043210111112220111011220123011101011011033221022101332221011222011101201012022100122011230112334210100011112234411011211000100001010021101220120122101112000101123401110210110111201222234210210000121100120120100012200101101001120111"

  25. "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"

    Returns: "101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101"

  26. "<<=!<>!><>>!<>!<==<>=!==!<=<==<<<=!!!>==!<=>>!!>=!<<<=<<><>!>>!>=!=!!<=<<<><>=!!>>!=>==<>>!<==<><==>!=>>>!!=><=>!<>===!>><>=<=!==<==>=!=<>!>><>==!>=!!>=>>==<=><=!!><=<=>!><=>>>>>><<<==><<=<<>==>=<>>!==!<<=<<>!><<===>>!>=!!>!>>><>!><=!>=!<>=<>!><<=!>>=><====!<>!!>=!>!>>=!=<>!>=!!<>==>!!>=>!<=!!=!!!==!=>!>>>>!!<<><<>!!!<=>>=!=>!=<>=>>>!<=<>==!=!<===<>=>>!!!>=!><=<>><>>!=<>>>>><<<<=!!>=>!<==>!<>=!==!!=>!<><<><>=<=>!>=<<<<=<><==<=>=>!<<==!=!!!!=<<==<>!=<>!=!!=><=<>!!!>!!!<>=!>>!=>><><>!><=<!>!<<====<>=<===>>>>!!<=<=>!!==<<=<>>!>!!>>!!<>=>>!=>!<<===>!===!!><>=<=<<>!>!><=!=<<>>!<>=<!==>!=>!!>!!>!!!<<=>!!!=!>!<>=<>>!=!=!>>!<=!=<>=!=>>=<>=>!!!>>>=>>>!><=!><><=>>>==>!=>>!>>!><>>!==!=<<>>>=!<>=!=>!!=>>>>><==<<<>!=!!!<=<>=><<><>!!>!==><><=><=><<=<=>>=<>!>><<>><=<!=>==>=<<>>>><>!=<>>=><<>!=>==>>=<>!<<>=<>!=<=>>!>>==!>=<>!<<==!=>>!<===!!==!=<<!><>!><>>=><=!>=<<>>!!>==<>=<=!==!!>!>><<<><=!>>=><=<>=><><=!>!<><>!>>!!!==<=>>=!>=<=!=<<<=!!!==<=!>>=!><=!<<<<!!!=>!!=!!<=!!<<<=>=<>=!<=>!>=!!!=>=!!!!=<=>>=<><<=<>!!!!>=!==>><!!>><<<=!!!=!!><>=><>===<=!<<>!==!<=><=<>>=>!<>><=!!==<><<=>>!==>><><>=!<<=!<==<>!>>>=>==>>=>=><<>=<==<<<<<<>===<=!!=>>=<==!>!=!>>!>!<<=!<>><=!>>=!>=><>===><<<<<<<==<<<!>==>>!><<<>!>=>=><><<>>!!=>=>!<>!=!==>!===<>==><=<>=!!===!<>=><>=!<=<<=><>=!<>=<>!=>>>><>=>><<>!

    Returns: "123301010210120123010001010100111012100111234401200012210120101012234441001234456012010122102101001101223456012310100121011000210122230111033210122011201220101210101012000021010101101001100011100112021010001001322100011011012310101011123011011201210011201121010665432101230011011101223400121100210111012301012011012001201012222010010012101201010121001203210101011200120010101223211010010111110101200102100112010012010121110121101220110100011043210101230012101201012210011011200100432101223001220011010123401201120122201111322101010110100101121021011201543210123440101211012220120011101101201230121010011010010110120123445011122110123330101200101001222301123221011011012100101011211110101010120021010112233001101022101010101123001010123333340044443210101122010001223001021012011112234521012101010013332101123331012334002111011110101201001200101100123012334012310101233310110012101200120101201110110120120012010101233010112012002101100210122001010101002210010011001001010102110106543321010112010120332100100112231102210123332101021011100132100123010011220112021001101220132101032101112300122001012011010112110120101010022101001010101201011101011011012233100102101210112310221110012300155432101011321101210101100120103221001012300101123442210210001001012310111221012222011100123101010103211011200121012000100110001001012010101222334210123011200010321101201201111001001012101202101120120102101210100022100100110012334010101112231021001011012345000112010110100101101234452100100122010010110010100221010012001201222010122301010101002100120103222101220120101010000111011222201210123301001201012211010000110123021010010111011011230321010010100100122021012344210110111201221012022210101001233011120876554443221101200112010012001234001222201230000110221001112011210101233021011210021102111101234561101231000123410322210122010123032211010121012211010120120120010011101111211101120010000121101001223440101123010012001044321032210120100112010121101011222"

  27. ">!<==!!=>!!>==<>===!<<>=!>==!>=>>=======>!<=<>>=<>=>=!!<<<=>=<=!=<=!!!=<=!=!!!=!!<>!<<>!><=><>=!>!!><>==<>>!<<>!<<<==>=!><<=>!>=>!=!!=<><==>!!!<>><<=!>!!!=>=>=<>=>==<=!<><>!=>><=!<=><>!!<>><=><==<<!<<=!!==>!!!!<>>==!=!<>!><=!><<=!!=<=>=>>>><=!=<<=>!!>=!>>>=!=>>>===!!!<>=!>>!>!>>!>!><<==<====<=!><==!<=!><=>>=!>=!==<<>!<>=<>>>><>><>!=>!=>>=>><<==<<<><==<==<=<><<==>!><<=!!=!==>>>!><><>==<==>!<<===<=<==>!=!>=<==>=<>=><>!><=<<<>!=>>!!>=>=<=>>>=<=>><=>=><<=<>!=!!<=<<=<===!==<><>>!>=<>>==>=>!>!===!<=!!=!>======<!<=><=<=<><><<=<=>>!!>=<>=!=<<>==!!>>><==>><=><=><=<>=!=><!>=>><<!!==>=!==!!>=>!===!==>><=<=!!>!!!!!!>!>!!<><<<=!=!==>!=>=!!=!!<><=<>!>!<>!!!<>>!=<>=<>=!==<<=>!<>!==!<<<>>==<>!<=>>==<<<<>=>>>>>>=!<>=<<=!!!<=!>><>!>=!=<<==!<<<=><<>===!<>>=>>==<><<<<>>!!=!<=<><=!><=>=!!<====>=!>><<<>!=<=<<><>!>>=>>=<=!>!><><>>==>!==>>>>=>==!!!!><>==<><==!<=<<==!==!<=<=<><=!><>!><=<=><=>=!=!====!!<><!!!!!>!>=>=<>!==<=<=<<><<==!!>!<>=>==<==>=><>>=<==<>=!!=!><<=<<=!<=>>!>><<>=>=<>=<<<!!!!><>=!>=>>=!=!!==>=<><==!=>!=<=!<=<>!=>><>>!>><=!<><>!!<=!<=!!=>=>=!!<>>!==>==<<<=<<=>=><>>>=>!<<><><=!!=!===!>=!=!!>><>>==<<>>>>!!!!<<>>!!<=!!><=!><<<==>><<<=<>!=><===>!=><<<==>><<<=>!=!=>=>!=!!=<>!!!<>>>!!=<>>=!>=!!!><<><=>>==<<<>==<>>==>!<==>=>===>=>!=<=>=!=!<=!>><<=><<=<=!!<><=>!<==<>!!=<>!!>>!<<<=>!=<>"

    Returns: "1012220110120001000012300100043321111111101223100211001012330010000101012011201011220100110010120110120120012012301231012310110100101201000210123012310122200100120120101220211011011201012301110101210122101210122110021100011201100122012010221011011010102101101112340101001100101233011101010120321000110101011201220115544321010110110012311012110120032101011012010120033210000101200210102101010120101012223333345100101110112022100100111230010101101010101200210101011220132101200032101011033211012101222345011123100011201222010122011333210101010001200012111010101233334010011223301011222011200111002110101202101211001230101102210101230101211001120143210022101011202211012230110122344555601001112021012002210043222110123101111201012231010010000101123444455500001210120100012011011223010122331012001001123000132102221011011201021011200112010120001012210120121032210121101001201001230101211010001021001110211011112220100010111010121011220101010120120101010101010123300111011001001010112010123021010123013210112001001112334021012011101231000101221010101000101230001220123766543210012001220101120121010100101001123330123301200122000143221001200101231012101001201201120012101012011001001011201201220002221001011111001010112101230101210112234010101104322100112010101010103211105554321100010100123012010001011101123330001223340120100101010112201100110000010101200101010102110010112012100112234012220101201210211000120000332221102100111200120011101121012100120122223101223440221021012110010012201234012010120100322100110101011100101112201122011201101210210100111202101101010101101101000101101021100101201000011122321011100012334551104321101230120210110110000101012001102102100014321010101210101101011201234010101112111010021012334011011110101201101233310123301122110110112010132101001201111321001001010101010012301202210001230003211101222001443222211011223210011011210101101222012201201223301201201101222301001012101234401120"

  28. "!>>=>>>!>><==<=>>=>=!===!>!=>=>>>==!=<=!!>=>><=<>><<<<<>=!<<<<=<<>!>!>>>==><<<<===!<=!!<=>!=!<>!!==<=>!!=!=>!=<>!=<<==!!!!>!=<>=>><<=<=<=<=>=<<<==<=>!!>!>!!=!!=>=!>=!<==<===!==<=>!==<>=<>==!!!><=!!>!!>!!>=<=<>>=!=>!>==<<<>=!<>!=<=<><>==!<<<=><==>!>!!>=!>!<>!=<=<<>!>=!==>==!>>>=>!!!<>>==<>>!!!=<>!>!>>!!>>!==!=!><=<>=!=<=!<!><>=!=>==<>!!>=>>=!!==>!<<<=>>=<!!<><=>>=>><<>!===!>!><==<=<>>!<>!>!>=!>!<><<<=!!<<<=<<<=!!=>><====!>==>=!==!>=>=<<><>=<>>=<=>!==!>!<<<=!!=!!>!<<>!>!>!<!=!<>==><>!!!=<<<>>=>!>!>!<<!<!==>!==!><=<=>=>><<<===>=<<==>!=<<=>=!=>==<=<>>=<>!<>><<<<<=<<>>!=!>>>>!<=<<>!>==><=>!<>>=>=<==!<=!>!!!=>!=<=><<>=!!<>>>!=<<<<===!=<=!=>==<=><=!=<>!!<<<=!>!>=!=<===!<<><<=>>=>><=<>=!<=!!==!=!<><>=<=!!<><<<<=>!!>!=!=!!<>>!>>><<=!!<<>>!<==!=>==!!!=!>=>>!>><>><<==!=>===!<><=>!<==<=<<=!!><<><>=>!<<>>>=!<<=<=!><>>!<><>><>!=><>>><==<>!<><<=!==!<==>!!>!=<==>!>=>=<=<=>>!!=!=!==>!>>=!<<=>!<==>!>==><=><=><=>>=><<====><>!<=>!=!!>=>=!><<>><><!=><<>!!<=!<===!!<==><<=>!!<=!=>!>!=>==!>!>>>>>==><><<>=!=!><=><<>!<=<<<=!>!=>!>><=!>>=!>><=!!=>>!>><<><=>!>==<=<<<=>!=><>!!>>>!<!><<=>==>><===!!=<=<=<><>!<!>=><==!==><<>===!!=<><=!>!<><=<=<!>>=!>=!!>=!==<>!!>>==<<<>!!!<<>><<=>==<>!>><<<>=>!>=!<>>=>!>!<>!>=<>!=>!><=>=<>!<>=!!<<=>!!<<===!><><<<<====<>>!!!<=!!!>>=>=>!<><=>!!<=<><=>==<><!!>!>>!=!>>>!!=<>><>!!!=<>>!>>!=!!<<=>=>>===>

    Returns: "1543321021011123422101222110012100001012022211014332100011220120322101121012345001234556701043211101234444011012201101010001101010120011011201123330101011322101223345001200110012340011120001101010112011201121012010100101122230012301001010101121001001222333301200011011120012011122100010101210012012010000122012001223001010011210012311012000100112002100012300101001110122220120112230100012344011101201012001012011223401001110004321101012010210002101012001210010102101210111001011200112201201012011110121010011000101201001230100100321001201101110123441001200012010104432210120011223401201011112010111223101201010010120123301234456701110110221011111211100111211001201002100112011210111201234401101012301010123000111201201102111010101123421101010123401012301001011101110101001123410121100110010321012333300122201123300110001121001012101234556701201012345622101143210122340123211101101321100112012001221010110112201200102101021011234555500112200011011001010123401001010011222201230100010012101443221011200122011100120100110120120101233401012001210120110010210321012300120010121012220010123021000101132210210210121010011122011101221100001201101222334550101202110123210012334410210101101012021010112010121010011222234403210111201201230111111010112001110111010101210112220211001122101001122201202100122012334221012220211101101101201220121101001321101222220101232211011010010120021001012303210101201012331101201011011120100101110122010120001110011010110001065432111012010210120122200112010101101201223455101102101121002101102210210120112010100012012223341010001123440110101321012301201013322210111101122334010123102110120111222012000010010112011220101201122340012012021001001200111201210001230101231012200010110102101231101001321101012010010110101100101200101220101222210101234444451010122301101010101000111012334443221101201101012010112200001011220101201120112021010111011000101201012021011321010010101123301011021010121101001200101321021010101101244332111101000"

  29. "================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================================"

    Returns: "111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111"

  30. "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!"

    Returns: "10101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010101010"

  31. ">==!!=<=>!>!=<=<=>!><<<>!!!<=<<>===>>!<!<>!!!!<><<===>>=>!!>><>>><>>!<=><<====<=>!=>>!><=!<<=>=!<=>>>!==<=<=><<<>>><===<=>=<<<>!>!!>!>=!=<<=>==!=!=<=<>=!=<>!=><!=>=<>><=>!=>><==!>!>><=><=!>=<<>!!<===<==!==!><><>>=<<=><==<=!>><>>!=>!!<=<><<=<<=!!>=>!<=>>=<=>>!>=<>==>>>!=!<>!>=>!>!=<<>!<>!!>!==<=><><=!>><<<>!!>>==>>=<=>=<<=!<<>!==><<>>!><<>>!!<=><=<><>=!<<<<=<<>=>==!<=<<<>==>=!>==!!=!<===>>>=!>!!!=<><==>>!<=<=!>===<===>=>==<<=!>><<=<>!=<=!=<<<=!<><=><===!><=!!=>=<>!==><<=!>!><>!>!!!=<>!=<!>=!=<=<=<<<<=<>!>!>=!>>><=!>>==!<>=!><<=!!=!>!>>><==><=!!!<<=>=!=!=>>===<<><<>>>>=!<>=!!><==!=!!>>==>>!>!<<>!>!==>=>!=<>>=!!!<><<>><=>=<>!<====!<>=<<<=>>=!!=<<<>!>>=!<>!=>>=!!==<<>>=>>!>==><=<><>!>==>>><==>=<<>>=!!>=!=>=!!=!<><<>>!>>!>=>!<=<=!<>><<>><>=>!===<>!=!=>!!<<>!<=<=<<<=>=<<=!=!=<>>!>!>=!=<<!<!=!<>=!<>!!!!==>=<>>=<>>>=<<><>=!>!>><><<<>!><>=!<><<=<=!>!!=>>><>==>!=><=!!==<=>!>!>=<=!!>!<!===!<!>=>=!==!!><>!===<>>!!=<=<>=>>>=><>><>>=!<==>!!=>>>>>==!!=!>==<>!<>=!>=<>>!!><=>!>!>!>=>>=>>>>>=!><>==!==>=!>><><<><=>>>>=!<>!>><==<<>!<<==!>>!><>>>=!=>=!==><<=!<=<><=>!======>!>>>!=<=>>!!<><<>!>=!!!!<=!!><=!=!>=>=>>>==><=!=<=>=<==!!=>>>=>>>><!=<<<<==><<=<<<<>!!=>===>><<>==>=<>=>!!<=>!=<>=!>==<>!!<>!=><>=<==<=!====<<<=<===<>>=<=>!>>!!>=<==!><<==!>=<><=>!>==>>=!<>><>>===!<<>=!<=!!=<=!<!=<<<><><==!<<>=><>=>=>><<>"

    Returns: "10001001101201011230120011010123010122300012013222210123011011010001201201010101333321101210321021012201222223302210101101223022210100120013321011122330123210101011101120111220101011201234556000110012301012010011233402100012011120012011223001120112310120111101100210112012231022101112021011011200120101120101234500011100010102100122011122310120210110101120122344010121101221002210100433321011010211010112011201201201201112001101101011210123014322210011001220101223012012000010100111211101230120003210101210101101120100123455671100012234511100100010012101120433321001010112022210120122334101000022221100012231012230112200123301011011110100123012210110110010111012210101012021010112011230120100112233456778010120121003210112100012001012201101021012014321011101101012201200112210000120101220120104432100101222012001201110014322210101230101123221101012101201201000110021001012012101100101222220100123310010012301010110123310012301233310221001010010100014322102111011201043332101110012100120011001010101101120101001201210210211012233021012102110111120112201012012233456670010100101210012200112010122331010100112340122012311011010012010122200210012011222432100120100120221021010123010120210012012233101221010000122102111011011011122010101200112101201230111101200101120012111100012301011233334560211001110101011112101201001001112010000110115443211021021001222010014432101321000100100010120010010120210120110101087765543210101010010120120122310001110021010120443210012021011120001012012334012002101032100110011101220120100101101111112001220101010110010121032101122101010120100101011010110065544321110110101120101123444001100100120120111012012331101001230765443210121011234556221101223456012200101132221012111001203321101011011200100010101012201012101120122223301021010011123010120011111234455556100120120110210120100110123441101001112012221001201112021011012014322210012102100001230012201122012001220112340101110121104332210120"

  32. ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"

    Returns: ""

  33. "<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<"

    Returns: ""

  34. ">=<>!>=<=><<>>><=!><<==!!<=<>><><=!<<<<=>=<<>>!!!=>>><=<<>><<<<>==<<>!<<<=<=>!<><=!!!<<>><><>!>><=<<>>><=>>>=<>!!<<<<>=!!><=<><=>>><=>!<><><><><<<>!<<>!==<<>=>>==<<>>!<>!!><>==>>>>>!><>=<=!>=>=!=>!><==<=<><>=<>!>>><=<<<>>>!><=!><<<=<<<><>=<=>>>===><>!>!<<>!==>><>>>=<<<===!>!<<>!>=><>>>>>><<><<<=>===>><=!!<>=>!!<>>!><<==<<<<<<>><=<>><>><=>>>=>!!=<<<>!>!>!>><><=>=!>>=<>!<=>>=!<=><<<>><<><<=>!>>!<=>!>=>>><>==<<<>!>!<<<>><=<>!<<>><<=<>===<<=>><><>><<==!!>><>>=><<=<>><=><=!>><<<><>>!!>>><=<>!!<><><><==<==>>!<<>!!>><<>=<<<===><=!<<<>=<<<==>>!>!<><>=!=>!=>!!>>!!==<<>!=<==>=<<!><=<=<<<>>!<<>!<><>>>>><>=<=<>>>!>>><>!<><<<=><<<>!<=<<>>>=!<><>>>!=<<>=>!!!>=>>!=><=><==<<=<>!<=>!<>=<<=<<>=>><>!<===!<<>!<>>=!>>>><<<<=!<>!<>><>>==>>=!!<<<=>!==<=!<<><>=<>><<<><>!===<=!>><==<!>=<<<=<>=<<=><<<=>>!><>====<=>!=>=>!<>!>=><>!=>=<<=><=<<><===<><>><<>>=!=<<>!>==<><>=<>!>>>>!=>><><>>=>=<=>=<>>=<=>!><=>>>=>=<=>>>!!<=><<=<<>=>=>><<>=!==>>>!!>!<>!>=>><=>>==<>>>>===<>=<<=<>=<!><=!<<<<=>>=><><>>>!>=<<=>=><<<<<<=!><=>!!<<==!>>!>!>!=><>=!!<<<>><>>>>>>><=<<><<<>><=>>><<<<>=>>=>!<>>><=>!>=!>=<>=>=><=<<==!!=>!><<<>!=>!=<<<>!!<=<=>=!<!=><<<><<==>>>>>!<<==>>=><<>>>><>>><<><==><<=!=<<=>>>>>!>><>!!!>=!!<><<>=>=>=>>=><>>>><>>>>=<<>!><>=>!>>>!=!>>>!<>><<><<=><>=>==<<=<<>=!>=!!!!>!<>>>=!>=>=<<>><=<=!>>=<><<>><>><>!>>=>==<<><><=>=<<<>=!<>>>!==!=<<><<>>>>><<>>=>=><<<><<=!=>><<=<><><>=<<>><=!<>>>><<==><<<==!!>><>!>=>=>!=!!<=!>><<><>>>!<>>=!>><=!><>>><<><<<>=!=<=>=>>==>=<<>><>!>!>=>><"

    Returns: "100101001101321011201222012231010101200122345010110123440012012330210101101321011230101231012340001201234455012011010121010102101123210332100101012340012011201012010332101101201201010101230123011120120132210001210120120655543210101001121100110101012011122301001032101123421010112012334560100443211110101010101230122022210321001233331012300101201021105432101010210120123300001321011012010211010101021010110101222345678101121021044321101001012201234021012021010210101100210010122101200122012310120122021012201220433210101201000101000122012301012341011201201231101210122301010000122101010100210122201010101222021032110122310101220110112101234210210132101120101010101112221010123010123012101232100123333011012300123331010120120210011011012101000120112220012301211010112234510123012043210100012101001121010123410101001103210101201233012301223421001203210112310211010322101101120210111233401220120012234221010122220120121003210101231012344501201201210321110121001012330112001231001101201002101230101111223101112301010012334001220123310101000001123102211012021101011001220112301111201201013321012010120210011230100010100104321022101032110011002100100110110104432110033210101101223411010123221012002221010121012012012321010123010120010113210221000432100012200100122300120001010110123442110103210100101201220122110123456610110101201012220103321010101101001211101234101201876543210112301231033210123433211012013210110123100101200322110112333011012021012301101123401011232211001230120110123014443210121012341000143211013210100121032101230210111012200155432102101010100101015443322100102104321043210012010211032101132101210120120122021100012234001001012013210021100121011223100101210210101010101032110001201011001230013210111001201543210143221101230120122331012230101010100123012010321011010101201012014321012223022101233301010012210103221101101223101230012103210121002101120321012012300114433211100121010123310322101201"

  35. "<=======================================================================================================================================================================================================<=======================================================================================================================================================================================================<=======================================================================================================================================================================================================<=======================================================================================================================================================================================================<=======================================================================================================================================================================================================<=======================================================================================================================================================================================================<======================================================================================================================================================================================================="

    Returns: "122222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333334444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444455555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666667777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777788888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888"

  36. "=>=>==<<<=<<=<>>>=<=>=>>>==>>>>=>>=><><=><=>>=>=<<<<>=<<>=<==><=<==>==<=>=>>>==>><===<<<>=<=<<=>><<>=>=>==<>><>=><====<<>=<<><=>=><<<=><=>>>=>===>>=>=<=>=>>==>>>>>>=<<=<=>=>=<<<==>=<<==<====<>==<=<=>=>><<=>=<=>==<=<=>=>=<=<<>><==<=<=>==><<<=<<><==<<>><><>><<<=>><==<=><>>><==<>=>>>>>=======<><>=><==>><>><>=>==>=<>><>>=<<==><>=>=<<>>=<<<<<<>=<><<>>=>>=<>=====<>>>><=<><=>><<<<><<=<><<<<=>><<><==><>=>=<=>=<==><<=><<<=<>><>>>><=>>=<><>>=>=<<><==>=><><><==<>>>=><=>=<<<<<<=<><>=><<<>>=><==<<<>=<==<<<<<<<=>>=><==<=>=><<>>=><=><<=>>=<>>><=>>==>>><<>><<>><<<===>=<=<<=>=<<>==><=><><>>><<=<====>><<=<>=><>=<=<<>>><<><>==><>><=>==><=>=<=<>=>=<=>><<><>>>>=<<>>><=><<>=>>>>>>=<>><><<<<<=<=<===><==<>>>>=>><=>=>==>=<<>=<<<<<>><===>=<=>>><><==<==<>>>==<>>>=>>==><>>>=>=<><>=><>=><=<>===<<<<>===<><<>>>=<>=<><>===<<=><====><>>>>>====<<>=>>><===<><=>=>>>=<=>>======<><<>=>><<==>>><<=>=<>>=>=====<>==<<<=>>==>>>=<=><>=><<==>===<<==<<====>>>=><><><<<<<<>>>>=<==<><>>==>=>><<==<><=<=<<=>=<==><==<<><=>=>>>=>==<<><><<<=>=>==<<><<<==<==><=>=>=<=<>=><====><>><=>=><=>><>><==<=<>>>=>>>=>=<<>>==<>===<=><====>>>>>===<=>>><>><><==<>=<><<=<>==><=>>=<><><===><=<><=>=><=<<<>==<<>=<<<><<<=<<<=><=<>==><<<<<==<=>>><>>>>>=<=<>==>>==><<=>=>=>>=><>><<>==<<=<=<><=<=<<===<<><><>=<===<>=>>>><>=>=<=<>><=>=>==>==><=>>=>>=<=>=><<=<<===<>><><<><=<<><>==<===<<<<>><==<<><==>==><=<=>>=<>>===<<>><=<<<<>=<=><=====><<===>=><<>><<<==>>>=<><><<=><><<><>=<=<==>><=<<=<<===<>=<=><>><>>><=<<<>>><<=><<<<====><=<==<<=><>>><<<>>>===>><><<>>>=<><===<=<>==<=<=<>=<<><<>>=<>>><=<>=>>><==>>><<<==<=<=>>>=<><><>>=<=>>==<<<========>===>>>=<<>=><<<<=><<=><<<=<><>=<>==>=>=<===<<<=><====<>=>==>=>><>><===><<==>===>=<===><>><=>=><===>=====<=>=<>>>>>>><>==<<>==<<=>=<<<<<=>><<=>>><>><=>>><><>=<=<>><<=>><=><=<=>=><=<<>><>>=<<<<=>=>>>=><===>=>>=>==>><>=======>>><>==<<==<>>><>=><=>=<>>>>=>==<=><==<=<><===<>=>=><>=><=<<=>>>><>>=>><<=>==<><>=<<><<>>===<===>=><=><<=====>=<><===<><=<<<=><>==>===>>===>><><<=>>><<=>==<=<><>><<="

    Returns: ""

  37. "=!<=!<<>>>=>><=>>!><=><>!!!=>!><=<><<<>=><>>>!=!<=>><<><>>!<==!===>==>>=<=<==<>!<=<>=<<>!>=><<<<<<<>!<<<<>>>>!>><<>>>=!<>=<==><<>=<<===<<==<<>===<>=>><<>><<>><=!=<<=>!>!=>>=><>><><>>>>!><=><<<===>>>=<==!!>>!<<>!==!><>!<<<>>!==>>><=>!!<<>!<<<>>!=><>>=<<><<<<<>!><>>!>=<>!>>=>><><>=!<<<<!=>==<=<=<<>>=>>!>>>>>!=<=><>==<<===<<<=<><>><>>=><<<>!>>><><>!<<<>>>>>>>=!=>!<><<=>=>>>>>>!<><><<=!>!>>!!>>>>=!!<=>>><==!><>>>=<!>><><>>><><>><><>>!>!=>>!>!!<>>><=><<>>><<<><>>!><><<><>><=>>!=<>><<<<<=<!<<<><=<><=!>><<><<>>><<<><<><<=!!><=>><>>!!=>><<>>><<<>!!!!<><><=<><>>=>=>!<><<><<<>=!>=<>><><>=><>!>=>=<>>><>=>>>!>>=<=>=<<>>=>>><=<><>>==<><<==<<<<><<<=><><><<<=!<<=><<>==<<>><<>><>!<<=!!==!!=!<>>!<=<>>=<<>=<<>><=!!!><=>=!!>!<<<<><>===><>!!<=<=><><=!=>><>>!<<>!<>==><>!=<==<><>==!><><><=!><=><<<=!><>><>>!=!<=>!=!<<><!==<>=>><>>!<><=>=<>=!!=>=><>><<>><!<>>>>>>!>><><>><>><<><>><<<><<=>>>!=>>=><>>!>=<>>>===!>>=!=>=!>!<>>>=!=<>!!><>===>!<=<>>=<<<>=>>=<!<<<=<><<><>=><>><<<>!>!<!!!<<>!><<><>>!<<==!><<>=>><><><=<<>!>>>>=<>><<>>=>!=><!>!>>>=!!<>>>>!<<<<>><=<>>=!!>><<<>=!>!>><<=<<<<<<><=>>!>>!>>>!>!<=<<=>!!<>>><><>>>!!>><<><>=<=><<<!=>!!<<<>=>=<><<><>=>=<<>><>><<<>>!<<=><<><=>==<>><=<>><<<>>>><>==>=>><<<>!!>!<><<==>==>>>!!><=>><=>>!!>>=><<<<<><=><>!!>><>=!><>>>>===>><>!>><>=<<<<>><<>!!=<>=<<>!<><>!=>><<==!>=!=!!=<><<<><><><=>===!>!>!<>>><>=<>!>=>>><><=!<=><><<<>><<<<!<>><>>>>>!=<=>=<=>>>=>><>!<>=<==!=>!>!>=><<<>==<>=!<><>=><<<>>><<=><<<>>===!=<=><=<>><<<=><>><>!=<=!=<=>=>>><<!==<>=!"

    Returns: "110110120120543221022101011010101101011201231102110321011022101201010210122233332221001122230122300120101202102110123456701234532102101321001200111012001222234445600003221012101210110012201012433211010121010432101011012333321001110100120210123011120101234010120101230210112311013210120211010120123400120210110210012012345010210100103211012101010012345610110001123100143221054321011220101011010101000120101111234450101102103211012340123103210101012376543210011012017766543210120101201221021014321001033210101201201112032101010012110210101010110132101021010210120102210101032101101201032101230120210101012021022101121012345567010123401120112101201321012301201220102210210122101210101202101234022101220101010101120432211012012321012300100210101233310101201012110123102110021010210120433210210120011001543321011202100010120122234561010123301010123301201210110101010101232100012101210101233011101201101202101223100120012101101201100100101201234501000010101231010101122010112210210123012111010112223010001010101121010110123301021012321021011011012011012012010111322102101201101011120010012211021012101201201654321021010210210120210101220123012301223456733210112432110210100321000021001100101321001120120211110122310012322100120123011012344501202110120001010000332101231010101230121101012301202210120210123331012010322101233101011230432100210121001210110121010321001012043210123451011210012101230010120101032101223456701101201233221021032101012234401012101012001432101032101010132101201001101234101101012311001010121012021100101012201210101202101231012330120110002101121012432101014333221012012340120120120122200010143210120110101121022101321101234501101012001021010010654322221010120132101001234101201001001201201022101010122222221012221012001101120123010101100001010132101012001021101012321012310110110101231012345001201210101122340543210120010011005543221010120011122010211012301010001202100120211012321012201201012342100001122011201210121012202101011220011001004321012301000012201112001"

  38. ">=======================================================================================================================================================================================================>=======================================================================================================================================================================================================>=======================================================================================================================================================================================================>=======================================================================================================================================================================================================>=======================================================================================================================================================================================================>=======================================================================================================================================================================================================>=======================================================================================================================================================================================================>=======================================================================================================================================================================================================>======================================================================================================================================================================================================="

    Returns: "9888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888887777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777766666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555554444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444433333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222221111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"

  39. "<>==><=====>>=>><>><=<>===>=>>><==>><=<<<====<<<>>==><<<=><=<<==>=<=><<<<=<><<>>=<<><<<<>==<=<><<==><=<=>>=<<<==>==<<>>==>>>=<<>==<><>><=<=<>=>>><>=>=><=>=<<>><=<>>=><<=><<=>>=><>><=<<==>===<<=<<=<==>>><<><=<><<>=<====>=>>>==><><<<=<>=====<<=><<<<=>>>==<<=>><>><<=<><>><<<>==><>>=<<=<=>>>=<<><>><>><>><<=<==<=>=><=><<==>>>==>=<==<<===<=<><>><<><=>=>==>==><>><>>=><<=><<<<==>==>==><>>==>===<>===<<=>>=<>==<====<=>>>===<=><=<<=><><=====>=><<>===<>>=>=>><=<==<=><==>=<>=<><>=<=<<><<><<=<<<==<<<==<====>>=<==><<>><<<><<=<=>=<=><><=>=<=<<=>>==>=><<<>>>==>==<>==>>>>=<<>=<<<><<===<=>>=>=<=<=>=>=<>>==>>=<<><=><><>><=<=====<>>><=><<<<==<=><<===>><>>==<<=><<>=<=<<=>=><<><==<>>=<<<=>>=>>>==<<>=><=>=><===><=<>>><<>==<>==><==>=><>=<<>=><>=><><><>=>>>=>>=>>==>>=><><<=<<=>><<<=>>=>><<==<<<>===>><=>=<=<=>>>==<=>=><<>=<>>=>=<=<<=<><=>=====<=<>=<>><=>=>=>>===<=>><=<<>==><>=<>=<>=>>>><<>>><<>==<<>><=><><><>=><<>=<=<<==<=<<>><<<>=<<==<<=<===<<<<>>>===<<><=>=<><>><=>=<=<=>>>=>>>>=<>=<<<=====<<>=<<<<=<<=>==<><>=<><>>>=>>=><=<<<<><<<>=>=<===><><>=<=<=>>=><>=><<>=>=>>>><<>>=<=<>><=<>=><<=>>=>====>><<<>=<><<=<><>=<=>>>><>=>>=<>>=>=<=<=>=><=<==<>=<>=<>=<>>>>=>=>=<<=>==>=<<<=<<<><<=><<=>><<><=><<==>>>>====<=<>==<=>=>=>=<<<<==>><==>====<><>=>>===><=<><>><<<<<><=>>>>=><><=<<><=<==>=><==<=>><=<><>=>><=<<>=>==<>>><<>=<<=>==<>=>>===<>><>=>>==>>>=<==<>===<=<<><<>==>>==>=>>==<><<<=><=<==<>=<><<>=<==<>=<===><>=>>=<<=<>>=><<<<>=<<><<><>>==><>>===>=<=>><>><><=>>=<><=><>>=><<>=<==>>>>><><=<===>=<<<==>===>>==>><<==><>>>=<==<<>=>===><===<=>>>=<===<><>>=>=>>==>>=>>><<===<<===>><><>>>=<==<=<><<=<>=<<>><===<==<<><=<><<==<>==<>=>>=>==<=><<><=>=><<=><>=>><=<<><<<=<>>>>><=<<<=<>><<=><=>><><=>>>=>=<==>=<==<<>>=><>==>><=<>====<<<<=>=><=<=<=<>>==<=<>>><>=>><=<<=<=<>>>>><><<><===<<=<=<=<>><>>==>>=<=<==<>>>><=<<=>>====<=>><>==>>==<===<<<><<><<=<><><==<><<==>=<==<<==<<<<><<><>>=<>>==<>====<<<>>====<=>>==<=<<<<<<=>==>=<==<<=>=<<<><<"

    Returns: ""

  40. "==<>>>==><=<><====><>==<><<><===>==<=<<<>=>==>=><><<<<>=<<>>><<><>>><==<<<>=>=>>==<==<=<<<<<>=>>=<<>=>>>==<>>==><=<<=<<<><<<<<==<=>=>><=<<>>=<<>>><><==>=<>>><>=>=>===<>>=>><<><<>>=><=>====>=<<=><==<===<=<<><<<=<<=<>>=<=>=<<=<<<==><<=<>==><===<>=><<==>=>>==<=<>=>=>=<>>=>=>>==<<><=<>=<>>==<><<<=<>>=<<<====<>>=<<<>=<<>>=<===<><==>==><=>><==<<==<>><===>>==<<<><>==><><<<<>==>=<><><><=>=>>=<<==>><<<<=><=<<<><=>==<<<<<<<====><<>><===<==>=<<=><><>=><>=<===<>>==<>><<<=<=>=<<====><><><>><<>===<<=>=><><<>>>><==<><=<<>>>=>=<<=>><=<>>=<==><<><====>===>==>>>=<<>=<><==>=<>>==>=<<<=<<<=>=<<<<=<=<=>><==>>==>><>><><>==>==>=>==><<>>=>==<>=<=><><<>>=>=>=<>=><=<=><<===><><>><=<=<><=>==>><<>==><>><<>=>>>>=<=<<<=>>><<>====<><>=<<<<==<>><<=><<<<<==><===>=><><<===><<<=><=><==<==<=<=><><<==<<<==<<<<<<<=><=<>>>=>=<=<=<<<=<<>><>><><<>>=><>=>><=>=<><=>=<><===<<>===>>>=><=<<><><=>><<==>>=<>>==<>=<><==<<=<><<=>>>=><>><<=<<==<=><<><><>>>><<<==><>=><=><=<>=<=<<<<=>=>>====<>=>>>=<>=<<===<<>=<><=<<>=>><<=><=<<=>=>====>==<><=><><<>==>>><<=>=<<<==>=<<==><==>==<>>==<<<<==<=>==><=<>===<<><>>=<=<>==>>>====>>=<<>=<==<<=<=>>=<>><>>>=>>=<>=<>=><>>==<<>=>=>=>>=<><<<>=>>><>>>>>><=<>=<><=<<==<><<<==><><<<>>>=<><><<>==>=<==>><<=><<==><>>=<>>>>><=<><=>===<<>>==<<><<>>><>=>><<=>===<>>=<<<<<>=<<=><><<>=<<=>><===>===<>><<<<=>===>=><<=>>==<<>>==>><==>==>><>=<=<><><=<><<=<<<<===>=<<==>=<>====<=><<=<<>===<>>=<>><>=>=><=<=<<<==><<<>=><<>>=><>==>=<>>>=>>==<>><=>==<=<<>><<<==<<>>=<=<=<><>><=<<<=>=<=><=<=>><<=<=>>=<>=>=>==<=>==<<<><<>=<=<<<=><<<==<<>=>==><<<>>>>>=<><<>>>>><<=<=><=<<><<==<<>><=<=>><==><=>=<>>=<>>><><>><<<><<<>><<<=><=><>><<<=<=><>=>=><>>>=>><<=<<<><<<<>===>=<><==<>>==>=><<<=<==<><=><>>=>=><=<<>=<<<<>=<====><<==<<=>==>==<==><<><=<><>=>=<<>==<><>==<>><<<=<>>=>>=>>><>>>><>===><<=>>=<=>>=>>>><=<=<<>>==><>>==<<=<><><<>=<<<>><><>><>==<<>=<===>=<=><=><<<><<<==<===><=><<==>>>>>=>>>>>>><>>==>=>=<=>><<<=<<=<<<<><=>==>>=======<<=>=>><><<<<><=><=><<>=<<>=>>>>>==>=>====>>==>><><<=<><><<==>>><===>==<>=<>"

    Returns: ""

  41. "<><><<<<<=<<>>==><<>>==<>=><<=<>>>=>==>=<>=<<=<<=<<>><<==>=<>>><=<<<=<<====><=<==>====>=<>><=<=>==>=>><><=<<>>=>=<<><>><==><>>=<==>=<>>>==<=<><<=<>===>=<><>>><<==><=>>=><<>>==><==<>=<<<<>==<>>=>==<>=>=><<<>=>=<<<>=<<>><<>=<=>>>=<>>===><<=<<==<<><=>=><==>=><><=><=<==>=<<<<=>>><=<>>==><=<>=<==<>>>=>=<>=>=>><=><><<>==>>>>><=<<===<=<>>==<>>>><=><>=><<<======>><<>>>>>>>>>>=<>==>=><>>=><>>==><>=<>>=>>==><<><<><<=>>><<=>=><><>==>><>==><><=<=<=>>><><==<<<=>==>=>>>><===<>>>=<>=<<=>=<<===<==<=><<=<>==><<=<<=><<=<===><><>==><<>>>><><==>=>=>>><><><=>>>=>=>><><=<=>><<==<=>=>>>>>>==<<=<<=>>=<==<>=<<<<<>=<><<==><<=><===<>>>==>=<=>><<==><=>>><=><=><=<==<<>>=<<<=<<<<<>==<>=<>>==<=><===<=>><<<=====>=<><<==><=>>><=<>=>=><>>===<>>>>>>=<>>><<<>><>>===<><==>>>>=<>==><=>>>=<<><<=><>><=>>>==<=<<<<<<<>><==>><<>=><><=<=><=<><<==<=<>>=<<<<<<<=>=>><>=>=<<<><<>>><===>>=<><>>>=<<><<><>>=>=<<>=><=<>=>>>>=>=>==<>>=<<=>>><<>><>==<<=<=><><>>><=><=>=>><<><<<=>>====<=><<=<=<<<=><==><><>==<<<>=<=<>><====>>>=<>>>=<<<<>=>====<=>>>><>><>><=<===>><<>==<==>>=<<<=<==><==<<==><=<<>><><<>><>>=>>>==><==>>><=>=<<><=><=>=<=====<=>>>><><><===>=<><<<=<=><>>=<==><<<<<<=<<<==>==>><=>><=>=<<=<>>><<<>>><>=<==<=<<=>>>><=>>>>>>>>=><=<=<<<==<>>><><=><<>=>>>=<====><=<<=<==<>=><><><>=<======>>><=<<<=><=<=>=<>===<<><=<====>>><>>==>><<<=>>=<<<><<=<>>>>=>=<<<<><<==<===><<>><===><<>><=<==<>>>>>=>><><>>=<>>><<<==<<><<>><<<=<=<<><<><<=>>><<>===<==><>==><<==<<<=><<>>><<=>>><<<=<=<>><>>>=>=<<======><<>=<>===<>===><<=<<><=<><<=<<<<><=>>>===<==><<=<==<><><==<=>>=>=><<<<>>>==<<=<=>><>>=><>>>>><>><>=<=>><=>><><>========>>><>==>>>><==<=<<<>>==>>==>==>>><=<<<><=>>======>=<>=>>>=<==><<>>>=<=<><><<<=<<<==<<==>>><=<><=<>>=>=><<<>=><====>><><<<==>>><<=<=<==><><======><<<>>=><>>===<>=>=<<===<===<=>=<=<><==>=<=<=>>==>><>><<><><><>>===<=<=<=>>>=>><=<=<=>==>><>=<><><>=>==><>=<<<=>>>>>><<<<=>><<=>=<<>><=><>==<<><<<<=><><>=<<<>>>>=<===>=<>=><>=><<>=>><==<>>><><>==<>>><<><>><>>>==><<>=>=>>>="

    Returns: ""

  42. "====>=>=<<<>=<==>><<==<><>===<>>==>>>>==><>=>>==<>=<<<<><<=>=>>=>><<<<>=<<=<<>>=<><<=><><>====<>><>=<>>=>=<<>=<><<>=>>>>><><==>=><<<<=<<===>==>=<>>=<><=<=>=><><==><>>=><=<>=>>===<<=<==<<=<=><<>>=<>><>><>>==<<=<<<<><><==<>>><<><<==>==<==<<<<>=<<==<<><=><>><>><<<=<<<==<>=<<==<>=<>=<=>><==<><>><==<<=<<<=<====<=>=>=>=><>=>=>>>><=====>=>===>=>=<=<>><>>>><>><<=<>=<<><>=====>=><=>=>==><><===<=>>=<>>=>>=>=<>>>><<<=>=<=<<>==<=>><>>><==<<<<=====><=>=<<=><===<=<<=>>==><<<=<==<=<><=<=<=>><>>==<=<><><><=><<<<>==><<>>==<><>=><==<>>==<>>>>===<==<<><<>><=>>>>>=<><=<<=><<<<=>=>><>=>>===<>>======<==<=====><><>><><>==><><>><<><=>>>>>=>><>==><>==<>>><<<<<<>=>=<<==>=<>>===<>===<><<<=>=>=>==<=>==><>>==<=====<<<><>=>>==>>>===<>><<=<=====<>>><<>=<<<<<>>><<<>><=<>==<<<<><<>><==><=<=====>=><<>=<=><>>==>><=><=>><<<<<=<<===><=<<<><=><<>>>>><<<=<<<>=><<<=<<><==<<=<=><=>==>=><<<><<><><<<=>=<>=<=>>><<==<<>>>>>>=>>=>=><==<<==<====>=<=<====>><<><<<>=<==<>==<<<>>==>>>==<>==<>=>>=<>=<<>><>=<==<<><<><>=>=>=>==<=<<<<=>>>>=<>==>>=>>><<>==<>>><<<<==<=<><=<<==<===<>><<>>>===>>>><<><=<==<><==<<=>><<><==><=<<=>=>><==><=>>=<=>===<>>>==><><=>=<>><=><<==><><<<=>>====>><>=><==><=><>=<<<><<<<<<==<<<>><<<==<><<==<=><=>=<<<>><<<<<>>>><>=>><>=<=>>=>====<<=>>=>><><>=><>>><>===>=><>===><<>><<>>===>=>=>>=<>><<><<=<<><>=<<=>>===<<===<><>==<=><=<=<<>>>>===>>==<>=>==<><==<>>><=><>=<=><>===>><><>=><><>=>>====<=>>><>==><=>=>=>=<<<>=>><>>>>><=>><<>><===>=><>>=<>>====>><=>=<>=><><>=>><<===><<=>>>>=>>=<<>>>>><<=<=><>>>=<>><<=>>>>==<<>=<><=>>=<<=><>><===<><><==><==<<>><>=<><><=>>>==<>>>><>=><<<=>><=<=<<=><==><=>><>>>>>>>><><==<=>><><<<<>>><<<=>=<<>=>=<<><==><>===><>>==<><<>==>==<>=<<=<>=<>=>==>><>>>=<<==<>==<=>>=>==<<=<=>><=<>>==<<<>>==>=<=>>=><><><<===><>=<=<>><=<==>>==>>=>>==<<><=<>>><==>>=<=<><=<==><><>>>==><=<=<<=<<=>>=><>><<=>==><=<=>>><<><<>=<>>><<<==>><=>=>><>>===><><<=<=><<><<>>>==>=><>==><=<=<>==<=<><===<<<>>>><><=<>=<<<<<=>>>"

    Returns: ""

  43. "!======!=!!!==!==!!==!!===!!!!=!===!!=!=!===!==!====!!!===!=!!!!====!===!!!==!!=!!!!==!==!!=!=!=!!!=!==!!!!=!!!=!!!=!=!!=!==!!=====!!!==!=!==!!==!=!!===!!=!===!!====!!!====!!==!=!===!=!=====!!=!!=====!=!!====!==!==!=!!!!==!!=!=!!!=!====!=!!==!!===!===!==!!==!==!=!=!!!==!!=!=!==!=!=!=!!!!!!!!!!!!==!==!=!=!!!!=!========!!=!=!=!!==!=!===!!!!==!!=!!=!!==!!==!!=!===!=====!=!==!!=!==!===!!==!!!!==!=!!!=!==!==!===!!!=!!!!!==!!===!!==!====!===!==!=!!!!!!!====!!===!!!!!!!!!!===!!!!!!=======!!==========!=!==!!!==!!==!!===!====!!!!=!==!=!!!!=!!!==!=!!=!==!=!!!==!==!==!===!!===!!!===!=!!=!!==!=!!!==!=!!!!!====!!==!!!==!!====!!==!====!=!!!!!!==!==!==!!=!!====!====!=!=====!!!=!=!!=!=!===!==!!!==!!!==!!==!!!==!=====!!=!!!!=!=!=!=!==!!!!!!!=!=!!==!=!=!!!!===!=!!=!==!=!=!=!!!!!====!=!!==!==!!====!=!!==!==!==!====!==!!=!!!=!===!=!!!!==!====!!==!!=!==!=!!=!==!==!=!!!!=!==!!!!!!====!===!!==!!!=!!!!=!=!!==!=!=!!==!=!=!=!=!!!=!=====!!!!=====!==!=!===!!!!==!==!!!!!=!!!==!!!===!==!====!=!!!!!==!!=!!!===!=!=!==!!!!=!!=!====!!==!!!!!=!!!!====!!==!===!!===!=!=!!=!!!!=!=!=!!!=!==!==!!===!=!!=!!!!!!!!!=!!=!!!=!!=!!!=!=!!!=!=!==!!=!!!====!==!!!!=!===!!==!!=!==!!===!===!=!==!!=!!!!=!==!!!==!====!!=!====!=!===!!!!!===!!!=!!==!=!!!!!!===!=!!=====!=!===!!=!=!==!!!=!!!=!!==!=!=!!!=!=!!==!!!!======!!!!==!!!!!!!!=!!!!====!==!!=!!!=!==!!=!=!===!=!=!!==!!=!!=!=!=!!==!=!=!!!!=!=!!!=======!!=====!!==!==!=!!!==!=!=!!=!!=!====!!!!!===!!=====!=!!==!====!=====!!===!==!==!!!!!===!!=!=!!=!!=!!!=!=!!=!!!!!!!!!===!!!!=!====!=!=!==!!=!!!!!=!!!!==!!!======!====!====!!!!=====!!!=!=====!!!!!!===!===!!=!!!=!=!!!!!!==!!!==!!=!===!!!===!!!!===!==!!!!======!=!=!!==!!=!!!!====!==!!!!!!!!!!!==!!==!!!=!=!!==!!==!!====!===!========!!!=!!=!==!=!=!=!!!!=!==!==!=!===!==!=!!==!====!!!==!!=!!=======!!!=======!=!!===!===!=!=!!=!!======!==!!=!===!=!!=!====!=!===!====!=!!!=!!===!=!====!====!===!!=!!=!==!!!!=!==!!===!!==!!=!!===!==!===!!==!!==!!!=!!===!====!!!!=!!=!=======!=!=!!=!"

    Returns: "10000000110100011101110111101011000010011000011100000101111001010000011110100010010100011101100110100111010110100101100100111011111101000110001000110111101100001000001011111011100111100111111011011111100100000111000110101110110010110000011011101111000011101110001100101110110011100110010101010101000111001101011000000000100110010001100001010001001001000100010011110000001100010011100001000101000110100111000111101001010111011110111000001111000110101010000010000101010101000010101000000001000000000001100010111011101111000001010011100101001011100100111001011100011100001000010111100100100011010001101010000010001011101111101110000011010101110001110110111110000011000000101100100110000111010001011101110100011111101101011001100111010101001101110011010111100100111001100101011111001000111011111001000111000111110001001011000011010111000001000100111001001110001101011000101010000011110111010010100110111001101110011001101001111110101111110001100001010001110101001011101000011100000110101000100101111001100010100100111110111010100101000001000111101111001101101011001101001110001000011011010101010010010110110100110100110001001011111000101001111011101100010000111100111011010110001011100000100111110011110101000010110111001010100001101111110011110110011101001011011100110100110111010111111101011101010101101011111000100101100010011000011001000100100110010001100101001101000000001000000100011100101110011011011000001010111101111110010001111100000010000111000101011110110010010010110010010101010111101011000001100111011010100101000101111111000001111101011111101001111110101011110000100101100101010001011101100001011110101111000101000000011001000100101000001110101010101000100010110010001000100000111100000000010110110001100110101100011100111100011011100000101110110111111110100000000110111100001100100100000001110110000110110000011000011111001011011110011111000001111011011000101001110111101110110111100011110111011101001000011111010110110000000011001001"

  44. "!>><><<><=<<>!<<=!>>>=<>=!<<>=!!<<>>!><><<><<>!!>!>><==<><>=>>==>>!=>>>><><<==<=<==<>><><<<<>><>><>>>><=!>!!><=<>><><<>><>=><><><<<<>><<=>!=!<<=><>>>>><=><<>!=<><<<<<<>><><<<<=>!<>!>>!><=>!<>!<>>!><<<>!=<>!=<=<>>>!>==><=>=!<><<=!!>>!!<<=>><>!><=><<>>=>><>=>>>><>>=><<=<=>=<=>=<<=>=<==<=>>!=<><><>>>=>><=>>=>==>>>=!!<=<<>>!>=><><>!<=<>=>=>!>!>><=!>>>>><<>><>>=!=><<>><<=!<>!><<<><>><<=>>>><>>!>=<>>>>=><>==>!=>>>>>><<<<>><>>!=><>!!>>><=!=<>>>><><=<><<>><<=!=>!!>=>!!<>>><>=>!<<<>=<=><<<<>>=!>!!!>>===<<<=<><<>>!><<<=<<<>><><>><<><<<=><>!!>!<<>!<>==<<<<=><><>=>>!><<=<><<<>>!<>>>=<<=<>>>>><=<>=>>=<>>><<><>><===><=!<>><<<>>><<<<<<<>><=!=<>><=!>=><<<=>>=<>!<<<=<<>==!<<<<<!>>=!<><=<>!<<=<><<>!===<>!>><=!>=>!>=><>>>><=<>><==!<=>!>=>>>>!<<><<<>>!=<><<><<=>>!>=<>!<<==><<=>!><<=<<<<><<>==>>!<=>=!!=<=!==<>!!>==<><>><<><>=>!>>><=>><>!><=<>>!>=>!<<<>><>>><>!<=<>>>>=>!=>=><><>=!<=!<=<=!><!!=>=><=<<>==<><>>=>>>><<=!>=!!<><<>><>!!!>>>><>>!>>=><><>!>=>=!==><=!<><>!!>><<<<<=><=!===<>!!<>!!>=<<<=>><<<><<>!<<<>><>=<=>>><>!<><<>!<>>>>><==<<<<<<>=>!<>=>><<<<=<>!><>=<>>><=><><<>=!><=>=<>>=!>>!!><>!><=><<<<>><<>=<><=><<=<<>=<<>><<<>!<=>!!<>><>>><<=><<>!>>>=!>==>!>><<>!=!<>!===>>>!<=<>>!!=>=>><>==<=!>!>>>>><=<>=!!=<=>>>!<<=>>>!=><=!<=!<><<!>>=<<<>>>=>>>=!><<><=!!=!=>=<<><=<><<><<>!<<<>==!=>!<>>=>><<><>><<>!>>=>=<<><>>>><<>=!>>=<<>>><<=>===<=<<<><<>>>>>=<>>=>><!!=>>=><<<<<>><>><=!=<=><<=><<<<>>=>=<<>!!!<>><=><=!!<<<=>><><=<<>>>!>>>><<<<!!!=>!!>!=>>>!>"

    Returns: "12101010101201121010010120120101201223101012021001001230010121010101201201010021021011120544322210443210101201012001201112233340102101012341021010001204321011201201121010121021101010123450120132101220101101101232110543210110120112012345601010102210101234401201220101232101012012022110120121010123011201122321021110110012101012202101012210120112021010110143221054432103211012233001100122001112210112010543221066544333210120010112310211010101223221101012344012012102101154321012102100110121012201010123021014432102101005432110211101120123017654321012341010101012101101012010123210100112310110043210101120121012200102101211010120103210211012340012331101234100101021000012334012001202101012334561012310210120123301012012301200012344010322101012230123403333210132100122340321014321011200133210032101201010210111201121101102101201232101234567101100100120210100111230112001021012331001012344561010120001234567012021001201120123340120111120210112110211043210112101121001232110544321012301231011201201221010012001231012333012201012234560123012432221012200100112101112012010010001021012021103210221010101121021101234103210101225432110221101010012201122101210121102211011230001043221012013210122100101012101010432102103211010102110011101101010121012345501201201123012001011230101111230012221010101200123310101201230120123410100332101012101012001010121110543210111231012345110132210123445010100101321011010120012010110021002101201010110123410123021001012021101223400121012301220102103210122012032100100102110210120110120111011123103333210122301000111021010010101124322101000112012012234521010321010101112101120012010022101010210123404332101101101101012310210012654332100101010101201101122001201120120120123400011014322101202101202101000221100121012310432101200210013210122000011234012010112333345432100432210120101010101332110123451021011001101220123410010120120222100120101210110110123441010112321043210123101230121010110101021033210101010"

  45. "!>>><==><<>!!<<>!><><=>>>>>!<>>=<=>!>>>!<<<>>=!=!>>>>>!<<<>>><<=>>>=<<<>=<>>><=>>!==!=<=<<>>>==<><<<=<<>>><<>>>=><<>>><>><>=!<>!!==<>=<>=>!=>>!<=>=!=<<<<><<>>>!><<=><=><>=>>><>=!<><><><>!!<>!>><>>==<>><<><<>!!!><=>!>><=<<<>!>=<<<<==>!>=<>><>>>!<<>>!=<<><<><<><><=>!<<<>>=>>><<>>>!>>!><==><>>===>><<=>!=!=<><>!>>>>>><>>><=>>==><>><<=>>!><=!=<>>!><>=>==>><<<=!<=<<>!<<<=>>>!>=!>=><<>=>!!>!<=<<><>=<<<<<>!><>>!=<=<<<=<=><>>!==>!><><>=<<>>>>>>>>=!<!<<=>!<=<>>>>=!=<>>><<>><>!<=!<><==!><<>>===>><=<=!>=><=<=!<<=!<>>!=!<=><=!>>!=><>>!>>>>!!!!>><<><==<>><>=><<<>!><==!<<>!=<===>>!><>==>>><<>=!==<=>>>>>>!>!><<=>>>=>!<<=>>=>>>=>!<<<<>==<>>>>>=>=><=><><<<>>>>!>!>>>>>=>=!>!!<<>==>!>=<>!<<<=>>>>==><<>>>>=><>><!>><=>=><><<<<>>>>=>!<<<>>><==!<>>=<>>>><><>>!=>>=!=>>><><>><>><>!=<<=!<<>><><>=<<<<<<=<>==><><<>>>=<>><>>>><>>=>==!!<>>><<><>!<<===>==><<<<=!<=>==>>>>><=>=><<><<=!<<>=<<=!!>=<<=<>!<><<>><>!>=><>=>=>!<<<><>><><<<>=><<<>!==<<<><<<<<<<>>>!!>!==>>><<<>>><<<<<<><=<<>>=<<>><==><<=<>=<>!=>!=>!<<>=>><<=><=<>!<<<<><>>>!<>><<>>=>><=>><=><>!<<>=!!==!!><>==!!!!=<=>>>!<<<=<=>>=>>=>!>>>>><=<<>=>>=>><<<>>>=><>>><=<><==<===><!>=<<><=<>>><>>><=<<=!!!>>><<<>!>=>!!<<><>=!=!><==<>><<><<><>!>>!=>>!<>!>><><>>>>!>>!<>!<><><=<><><<>>>>>>=>><>=>>!<<<<><<<<<>><<><><=<===>>=>=<>>><>>>!!=>><>==><<>>>>>>!!>>>>!!>><><>!==<=>=>><<>=>!><=!<<<>>!>!=<>=>>><<<=>><<<<>>=>!>!>=>><><<<<>>>>>><=<>>>!=!=!!!<>!<=<==<>!=>=>>!<>>!!><<=!>>=<<<>>><><<>!<<<=><<>!=<>=!<>>===<<><<>!!=>!><<><>>>!=>!>>>>!!!=><=<>"

    Returns: "13210123111012010120101201022101044321012100123110101012032101234100115432101234210122010123432100123003210221011100112321000101201012310112321014321101201032102101001201201000100120101012301111234550112341102210122001123450132101012201201234110433210100120101010101120101010210210001010210120120101011021011234010012344521101002101201014321012310112301201201011012354332101321012331010210101110432222101220110010105432101210101032103321110210122101011002101043322210123301123012340010332101002110121101201223410101001234501021011230010012334401201010132101110120120101231010100187654321001231012330122321010112100113210121010122010111201210010113222101122311012012010100112012210123302101101101121011010102104321010121012011210021021101230101222010111012011222210120104333210120011122010165432101010111222010101012234210132110123105543321012211012345000765432211011010124321010101021015543211001010120101201001021101001012310155432111013210101132110210120121021022110101235432110123454321011101233210043210101010102102210022101210102102101011233012101010012345667111010120120103210010120210101210101321032110001032101201012340322221110123440665554321012013221101201201010110120101001220100122301011223401201210101012010211032211012101230210101010112010123110123011123401201234011233012342101203332101232101234560112012012100121011101223001011011012322101220112012345010012210321012303210143221022101101012300100010101233002101000101003321012010123344010101254332110543210112544322101231013211012044321011201112222012101001201132103210112330132101230211010120100112101011121012012010101021022101201010101010121010432102101201201011201018765432210322101234501234501012021012010113333211010011223012001010123321032101221021110165432101010543210121012010210101113322101211010110123101011433210123310123421101032210101201012365432101132101100120110101012233340332210121012012231001230123310321010120123440120112001210210000120120122012010120321011043210101101120"

  46. "<>==>!!>><>><=<<>!<>>!><>><<<><<==<>><>=<><=!!=!<<>>>><<>>!<==<><<>><=!<<><>!<>!!<<>==>=>>=<>><<>!=>=====!>><>><<>=><><=<=<>>><><>!=><><>===<==<<>>>!<><>=<><>!<==!!<<>>>>><<>><>=>><==!>!<>!<=!<<>=>=!==!=<>=!><>!>=>><=><><=><=<>=>=>!>>!<<<>>=<>>>>>!<><=<>=>>>>!!!=>><<>>!<=>>!><>>!<=<<>!=!><>==<=<><=<>><<=><>>>>!<<<=!<=>><><==>>><=>!<=>>>>=<><><=>><<=!!>=>=<>!<>>!=<=<>=><<>>>>>>>!><>><===><==><<<<<><=!!>>><<<=!==>><>=>!>=>==><=<=>>!=<<=!>!>>=>==><>=><>>><=!<>>!<==<>><=<>=>==>>=<><=!=<!<<>><<=>>><=!><=!!!!<>!=<<>>>==<>>=<>!><<<=<=<><>!=<<=<>!<<=>><<=>><>>>!<<<>><<>=>=>>><<<<<><>!<=!><>>>>>>>===>=>=<=><<><<>!>!<=!>!=><<<>=<<<>=<>>>!!>==!>>=<>=!!===<<=>><<=!<>!!=!=><><>>>=<<=>><>=>!><=>><>><>>=>=>>!==<<<=<><=<><<<>=<><<=<<<>><>>>=<==>!<<<=<>>><=>!!<<<>=!>=!!>><>>=<>>==<>>>!==>!>!=<>=<==>>!>!=<><>>=!=<>!>>>>>!=!>>!!>!>=<==><><>>>>!>!!!>=>==!!><==<<=>!=!!=<<>=<<>>!><><<>!<=!!<>=><<=<>=>>>>!===<<>=>>!=!=>><>!><<><>!>!==>><>>>>>=>=><<<<><=>=!<<<>><><>!=!<<>>=><>=>=<>!<<<>==!!<<>=>!<=!<>><=<<>>!!!>=><>>=>>=<><>!<==!!<<=>=!==!=>><=<<><>!<>=!<<><>=><>=<<>><><>!><>=><<=!=>>>>><><><!!<>><>><=>><<=!!><=>><=>>!<>>><>==<>=>>>!!<=!>=<=!!=<<<>!!<><<<<<<>!!!!><=<><><=>>>><><<>><>!!<<<==>!!><==<><<><><<<<=!<><>==!>=<>=><<<>>>>!><>=>>!=<<<>!!!!!!>>>!<><<><><<<<><>!>=>>!<!><<==>>=><<>=!>!<<>!=<<><><===>>=><<<>>><<<=!!<<>!=>=!>=>>!><><==>>>!>=>><<<<><<<>!!=!>!<>>>><>!!<<>>>>>=><>!<>=>!!!><=<<<><>><=<==<><>!>!>=<>!!=>>>===>!<=>>><<<>=<<=<>=><=><=>>=>>><>>><><"

    Returns: "12001201012110121021011230121010210120101012012231002101001011011012010101210103210121012223012010210110120101201012010433322100210120110000002102101211010112232101010110101231000011123210120100101201210122201254321012103221011120120122012001210011100100101032210110120122101120112221011322110210123410054321012011544321010221012101223012342101021012310012012301201011201000112301210100112011210120123440110125543210123440221010112012001433210110144321001010221012202110010121011223011223401120211017654321012010210111101110123450110321012341001201322210211032211101122101123310432211102110210100112002101102101222310114332221012001200210110012010123101223443210112011010112010120101011232100021001010123344501101010112334012331012210321012340101112341012001543321012012012201234010122101010112987654322221100110120120101220122101101230012300321012000210010010001010012201210123100120100120211010321001221021101231022102105433221011201001233410123101120123001012230101231032100111012310123012001013210110101230101001001210210021000321011101011200222101011202100112010132101011234210112101201001110104321010101001012001012201010123341010101011000120111233011011230012101012001210120122012110100123301225443210111123221011221010101201010222104321010114322110123401120121012200123410101012201101010132110211001010101230122340120001210123001012101220210112101210122201200120121104322100123101012220123300111221012100120101200123012012010012013211010012101010101012221101225543210101012012010210210120322101220101123321022101321010003221010221010112001101123401010123456010120112012021012011433210101210101210101012333401011223101201112012322101012344010100010012032110124321010322101123401010132101201201012311012011201010322101231010122210010221012001200123210123011230103333211012345321012330123011003221010103332103221012345022210123010010120143210101015432101012010211010121101010112340210112223421010101001014432111101332101230012234033211011055433210210100112310101"

  47. ">=======================================================================================================================================================================================================>=======================================================================================================================================================================================================>=======================================================================================================================================================================================================>=======================================================================================================================================================================================================>=======================================================================================================================================================================================================>=======================================================================================================================================================================================================>=======================================================================================================================================================================================================>=======================================================================================================================================================================================================>=======================================================================================================================================================================================================>======================================================================================================================================================================================================="

    Returns: ""

  48. "<><<><=<=>=>><===>>=>><><>=<>>>==<<=>==<=>===><>>=><=><>><>==<<><=<<>=<===>=><==<=<<>===><><==<==<=<=<>>><=>><<=<>>=<<>><=>=><><=><><><<<=<<<><><<=<==><><=<<>=<>=<<=<><<>>=>=><=><======<>==<>><>><>>>==><==<===<<<><>><><<>=<<=<>><>=<><=><<>>>=><>><><=><==><======>=>==>==><=>=>==>=<>=<=><<<=>>><>=><>>=><<===><>===<><=>>>>><==<>=<<><><=<<<<<><><==<>><><=====<>=>=><=<<=>>=>=><<<<>><=<=<><=<=>=<===>===>><<<<>==<<>>=><>===<>><>>>>==>><><<<<><<><>=<=><<=<<=>=><<>>><><=>==>=>=<<=>===<===<<<>><>>==>><=><<<=>==>=>>>=>==<><>>=>>>>=><<>>==>>><>=><<>=<===>=<=<<><>>>=<>==>>>=>===><<=><><=<><=>><>><===<==<<<>>===>>>><>==>===<=>>>>=>><<<><<=><><<=><==<=<>>==>==<<>><=<<=<>><<>====<<>>=>><<=><><<<><=<=>>>=>=<<=<<<>>==<<><=><=<=<><>><=>>=<====>>=<==<>>><<>=<====<<<=<<><<=<<=====<<>=>==<=<><<>>>=><>><<><=<<===<<>>=<<=>===<>>><=<>>>=<==<<><<<<>===<>=>=<=>>====>===<==<<>=<<>=<>=<><<<==<==<><<=<===<===<=>==>=>><>>>===<<><>>=<<><<=<<<=>>>>>=><>><<><>>=<>=<<>=>>=>>>><<=>==>><>>=>>=<>><===<==><=====>==><<<=<<<==<>><>=<>><=><=<<<=<<>=<===>=<=><<=>=<<><>><>=<=<<=<==<<>=<><=<<>=====><=>>><<==<<><====>>>><>>=<<===<=<>=><<=<=>>=<=<=<>>><=><==<>=>=>>>=><><==>=<<=<<=><=<>><<<><<>=<=><=<><=>>>>>>>>==>><<====<<>>>=<>=>=>>><><=>=<><<>=><><<>=<><><==><==<<<==<=>>===>>=<><=><=<===><<<><>=====><<>>>><==>=<>>=<><<=<<====><=>><<=>><>><>>><><==><><>==<>=>=<><=<>=>>=<<=<<<><<>><>=<<=>=<<<<<=><>==<==<><>><<<<=<==>><<>>===>>=====<<<>=><=>=====<<>>=>><=>==<=<>=>><><<<=>>====>=><==>>==<=>><><=<>><<>=<=<==<<==<=<=>=>==<>><<><<<>><<<<===>><>><=>=>=<>>><=<>>=<=<==>>===<><>=>>==<===<>>=>>>=>==<>=>==<><<=<<>>=><>><<=<><<>=<><<<=<=<=><=><<=<<<>=<<<<>>>=====>>=>>>=><=<>>><==>=>=>>><<<<<=>=><<<=<<<=>>>==>=<<<==<==>====><>>=><<>>=<<==<=<<><><>>>=><<=>>==<<>=>><<=<<<><=<>><<>=>=>=<<>>=><==>><<<====<=>==><=<<<<><==>>>><><>===>=>>=><<=>=>>=<<<<=>>>=<<>>>>>=><<=<==>><>>=>==><<><==>=<>=><==<<<<=<<<=>=<<>=><<==<=<>=><=<<>==><>==<>>=<>=<=>>====<<>>><====><=>>"

    Returns: ""

  49. "==<>>!><==!<>=<==!=>>><=>>!!<>>>!=><><<><>>>=!!<=<>!><>=>=<<<>>><><=>>=<>=>>>><<><>==>>><=>>!!<<<><>>>>!><<=!><=><=<<>=<=<><<>>>!=>!>>>!<=!<=<=<>=!!>>!><==!<>!==><<>=!<=!=!><=<=<==>=>><>==>=><<>>!=<>>!!><>=<=><<><<<>>=>>>!>>>=>!><>=<>>!=><=<=>=>><=<>=!<!<><==<>=<><>>><<=><>!==>=><<<>=!><>!==>=>>>>=!!=>!=!><=<=<<<<=!><!>><>!><=!<<!<!><=<=<><<<<=>!<>=<><>=<>!>!>><=!>=>=<==>!<>>!<><><!==<<>!<><=>=><=<==<><=!<<>>=>=<<>><<<<><<=><<><><>><<=><<<<>><=<=<>><><><<>!!>!><<=!!<><>!=<<>!>>><=<><=>!!<=>===!=>>=><=<><><<=!!>>=!><>>=<=>=>><===>>=!><<>!<><>=<<<<<<>=<<<<=<<><=<>>=<>!><==<<>!>>>!>>>>>><><><><>>>><<==!>!<<<<>>><>><><<<<><<><==>!<<>!><>>>=>=<=<<<>=>>!>=<=>=>=!>!><=<><>>>>!=<>><=>><>=<<>>>>=><<==<><>!>!!<=<<<<<=!<>=>>==><<=!=>!>!<<><<><<>><<<<=>!><=!<<>><=<<=<>==<>!>>>><<<>>>>!<=>>><<<>>>!<=<>>=>!!>==<>!><>!<<><>>><>>>>!<=>><=>>!>=<<=<><><>!!<><>>>===>!!==>><==<<>><=<>!>=<<=>>!=>!=<><>=!<><>><>=><===<=><=><>><>><<=>=!>!=<<==><<==<>>><<><<>>>=!!>>>!<>=<<<=<<===>==>><<>!!>==!>==<<<=!=><!>><>>>=<<><<=<<=>!>!>>!==<>><<<<=>>=<<>!=!!>>!>><<=>=><>><<<==>====>!>=<<==<>>===<==><>!!!=!!<>><=><<<<>=!<<><>><<>>!>><>!!>><>><=>>!>=>=!<>><<==>>><=<<>!!!<<<>!<=>>=>=!<<><>!!!=><>=><<<>>><<>><=====>>!>!<<<>>===<<=<<>>=!!<><=<>=<<><==!>>=<<<<>><>><<=!<><>><<><<<<>==>><<==>><><>><>>>=>>>>>!>>><<>!!<<>!<>!!<<<<>><<><>=<>!>!!!=<<>>>!>!<>=><<><<=>!<<<<>>>=>>>>>><<<>!!=>>>=!<<>>=><<>><==><<><<==!!==>><<>!>>=!>"

    Returns: "11121010111010011133210123221010124321011010120321001012012001010211012001232101022100544321012300112104333210221010123010120432101012210110121001200100123333011123440112013210110321012201123010012310012101201011101011101200122001011223010101223340120100110333221032221101210112101201001101201123411110101243221010101021021010132110101002101101201201120033221011200123010123301201201112001032101220102221101230010105554432100122012100101201011223456701200101210210101011101011012301012301101011223012101012310122012001010010101201021011211001110121012010120000120111230120101011012022110112230100120101101321101200121012340122012010101021012201234101122310101012012012010122012010112303210112011012220101000123450110000332110112010122021001021003322102222100101201201202100123456721001230101200101123012100210010101112303210654321012021010101010432101222101234560143210210122201012340120112021101230103210010022210011234110120122101002211001231010112043210101011210221010015432110122230101010112345660120543321110122110101230120101234401210123440101101210120120112101012001231001000104321012432101010133210123210122012232110120001010101000100123450123032104321012012210112032101001223010101010432111101222101112310112302101001201221011201210112012012310100120210211011112201102102101220010112333012001201011120103210121010101201201321001321012101001234100133332221012012012010001000123410011012011202101010101012341010012330210012012234401021011121012344100120110210210122001210101012101233311111010012223100001110101011012344210110122012340012302101210210101210210123221021101012001210133321011230101234013321101010012301010110211012321012102222221010123410000122341001010112001232101112100122201234102101220102101010121010123400013210122210102101201234043210010654321032101201012012010123410120100101010112321010121101201220123498766543210121012011011201012210121001230101010123010321101201210111012012010122201120122032210120210010"

  50. ">!>!!<>>=>!=>><>!>>=<=>=<=!<><>><<>>>!><<<>><>>>>>=>>>><>>!=>>>>=<>=<=><=<>>>><>=>>><<>>><=<<<>>>=>>>!>!<>>=!><><>!=>!!<>==<>><>>!<<>=>=<=<>=><<<<>!><<<>><><<====!!>==<==!<=><>=<<<<=<==!<<>>>=><>><<<>><<>=!!=<<=>=><===>>><<>!=><<=<>!=<<<><>=!=><>><>><==>><>>!<<<>=<><==<><>>><!><=>!>!<==>=>>>=!><>=<<>>>!><=>>!>>><<>><<=!<<>>><<=>>=>===>=<><>>=<>>!><<>>><>>>>!!<<=><>>>>!<>!!>><><><>=<<>==><=<>>=>>>==<<<><>><=>><><>>>>><<<>=><<>=>!=<>>=!>>>=!<>!>!<>!<<<=!==>!===!><<<<><<<>=<<>>>!==<>><<<<><<=>>>=!!>>!=<<>>=!<>=>><=<<>=>!!<<==<>>=><<>>=!<=>>!=>>==><<>!!<=>>>><<>><=!=>>><<=!>=><>!<>!>><=<<<><=><=!!=>>><>><>><><=!>><<<=!<=<><<==!>>!>====<=!<>=<>!<==!<=<>><<<==!<>>>><<>!<=>!><>>>>>><==!=!=<>!=<>>>=!>=!>==<<<><>>!<>><<>>!>!<><=>!=<>>!<<>==<<<<><>!>>>!><==>>==>>>><<>=>!<=>!<=<<>>!<<>><>!>==><>><>>!==><>>>=>!><>>>>=<<>>!<<<<<=<>!<=<<<>>=>>>==<>>=<==>!>><<<<><>>><>!<>><>!!><<><<>===<><<<<========!=!><<><>=>>>!=!!>>>!>><=>=<!!>><<=<==<=>=<<>=><==>>>!<>><=<<<<<<=<<<>>=><><<>>>!==>==!<>>!<==<>=>==>!>>==<>!!<=><==<<==>><>><=>>!!>>><><>>!>><>><>=<<<=<>>>!>>=<>=!<><>!!!<=!>=>>>>!=<=<>>>!>>!<><=<<<>!>>>!><<<>>!><<><=>>>!=<>><==>>=<<=>>><><=<>!>==!!>>!>><<=>=!<><><><!!<>><<<<>!!<<=>><=>>>>=<!>>=<<>!!>><>>>==><<=<<<<>=>><><<=!=>>><=<<=<=!==<<=>!=!<><!><<<><><>==<=><<=><<<>!!><<>==!<=>!>>>!<=!>=>!>>=>=!=!>!><=>=!=>!>=!!<!!<==><=<><>=><=>><<>>>>>!!<<<<!<>>>>=<<<><>!!<>=><<<>!>!><>>>=!>>!>><<>=>=><>=><=<<<=!<><<>>><>=<>><====<>><>>>>!><<=>>>>!<<>!>><>!><><>>>><<>>!<>!==!><=<<<>>!>>!"

    Returns: ""

  51. "==>>>=<>===>><<>=<====<<>=><>===>=>=>>=>=>=>><<>==>==>=<=>><>==>>><>==<>=<<<=<<><<==<=<=<<>=<<=<=<><<>=>=<==><==<===<<>>><<=>><<>><>><==<==><>>=<=>><=><><=>>=>=<>==<=><<====<===<=<=>=====<=>=====<>>=>>><<>>===<==><<=<<>><><=>==>><><==<<>=<<><<<>=====><<=>>=<<==>=<>>=<<=<<<<><=>=><==<<<==>=>>>=><<<><><><<>=>=><>>=>><=<=>><<<<=<<><=<<<=>=>=><=>>>=<>=<<<=>===>=>=>><>>><====<<<<><=><==<=><><>=>=<=>><=<=>=<<><><===<><==>><=<<>=>>>>>>=<==<=<=>><<<>><><=<>====>>==>>=><=<<<<=>>><><<>=><>><==<<><><==<<==<<=<=>=>=<<=<=><>==>>>=>>>==<<<><>>><=>===>>====>><>>><==>><><==<>=>><><=><===<><>==<<=>><==><=<=><>=<>><><=><>=<<<==>>==<>>>><>=<=>><=><<<<><>>>>><<<=<<<<<>=<<=>>><<<>>=<=<<=><>>><<==<><>>>=>><<==<>=>>>>=<=>=<=>>>=<>>==><>==<<>===<<==<=>=>><=<><>>=<<<=<=<<<<===<><>=>><<<>===<=><<<>=>==<<<>==<<<><<><>=<=<<<==>>=<=>=>>=<=<====<=<>==>>=>=>=<=>=<==>=><>><<==>>>>=><<><<<=<>>=>==<<<>==<=<><<<>=<==><><=>><<=<<<>>>><===>===><<<>=<<><<<>=>>=><>><=>><<<>><<>===<><>>>>=>>==<><><<<>==<><<>=>=>>>=<>=<<>=<><>><<=>>=<==<>==<=><>=<<=<<<>>==>===<=>==<==>>=>>=<<<<<>>>==<<><<><=>=>=>><=<=>>><<<=><<>>=>>=<<<===<>===>><<>=<>><=<=<<<=<<=<<=><>=<===<<>====>>><==><>>=<==<><<>==><=<==><>>>>==<<=<>>>=<<>=><>===<=<<>>=><=><>=<<<=<=<=<<=<><>>>=><=<>=<>>>=><><==<><><=>==<>=>=<<<<>===<<=>>=<><=><=<===<<==><>><><=>>>=<=<=><><<=<====>>><=>>>=>=><><><>><==>=<<==>>====>===<=<>><=>==<<=<=<><>>>=<>><=><<=<<>==<><=<=><=<<>=><<=<>=>><><<=<>=<<=>><==><<<>><><=>=>>==><<<<<=>>==<=>>=>=>>><<<<=<=<=>=<=<=><=<===>><>><<<==><=<=<<>>==<>>=<>=<======<=<=<><<>>>==<<==><><><>=<<><><=<====><=><==<>><==<<==>>><=<><><>=<>==>=<>>>><<<===<=>=<<>====><>=>=>=<=>==><>=<<><=<==<==<==>><<=<<<<>><=<>==><<=><><=>=<<>><=>==<<><<<<<=><=>>>==>>>=<=>>>>=>><>><=<<<>=><==>=>=>><<<=><<=<==<<>>=<><=<>===<=<<<=>>=<<<===<==>==<==<=<=><>==>><>===<===<<===<=>><=>=><=>=>>=>>><>==<=<==>===<>=<<=>><<=<>><>>=>>=<<=<>><<<><><><==><><=><=>>><=>>==>=<====><>>==<=<>>=<<===<<><<==>><>===>><<=<>====>=<<<><=<==>===>==>>=<>=>=><=<><<>=<<<>>>><>=<=<>>==>==<"

    Returns: "3332100322221012001111123110988887766544332210132221110022104333210100010012334501222334456001223340121100111011122223421012210121021011122202100221011010332110010001101222223333445500000011000000543321012100001110122341010332221010111230012012311111101221001222002100122345602211011123555443211012301010132211043221011221012344560112344221103321001001255444433221032101111123450110111220102110022101122001201011112022210112766543210011122331012310101165555543332110112345521010121102101112301011123334556611001223307666543321000123032105544443222221032102221010111322101011011112010001221011101122010021010110100123331000432101002210110123405432101233456780013321012310011233032101222305432210122254432100110033210032111010001200001222332210112021001233445678888903221012300001101231100012300012301201001123444100332210011222223354443221100110022211021015554321101201233421100012300011201230011101022101223453210222211110123001201243321102102210123101200001065432210001010123000101544332100100120010210122100111200011010012234521110000110004443221001234521000120120443322101133210123301432210012333342222101200210112234556778990100111124333332101110210011120121110112220432100012232100121101000011232110110100123344556778043211011200432110101112010110002110012340000122100101101122223444021010332100112201012233333210554322110101021011100133321111100001121011000122334032100210110122340001011220112311012232210101223001221011101231010443321110123455100066544332101234455660011220112222102101233301122341000210010011111112233401321000122201010100120101122222011011121011123332101120101002111004321012333344001211111032211002211101001201122233344410122345610112111012201011001210110001201234550665433321006654322102101123411044433221012330122333451001011200001123441001233334440001112233032221010000111123333441022110665543321010001122200001001221012231043221001223101230101011101011033210332111001111102100011210012222340122210322221012231111100123011444333322210032211011201200124321010011321110001"

  52. "!=<=>><<<<<>!<<==>=><>><<>=>=<<>>=<<<<>=<=<=>>>>>!><<>===><>=><=<><<<><<>><>!<<>>><>!>><<>==<=!<>>=>><><==!<>>=>>><>=<>>>=!<>><><<==!>!>>>>=<=>!!!>>!<><<>>!==><>!><!=><=>>=<<<=><>><>=!>><>=!<=>>=!=<=!>>>=<=!!>=<>!>!>>>>>=>=>>=!<=>><<>><><>=<=<>>>==<=>!<>===><><>>>>>>!!<>><==<<<>=>><>>=>>>=!>=<>!<=><><<><=<<><><<<=>>>!><<=!>>=>!<>><=!<>=<>>!=>>!<<==<><>=><<><>>><=>>>>!>>=<<<<<><<<<<<=>!>>>>!>=!<<><=!=>!>>!!<<==!><><<=>!=!<><><><=>==><=<>=<<=!>!>=!<>>>>>!=>!>=<<<><<==>=<>!><<<<<<>>==!><>><<<=><><><=><<=!=><>>><>=>>>!>>><><>>=<><><<<<<><><>><><>!>=><=>>!=!!!>>!>>==!!>>>=<><><=!!>!=><=>>>>!!!>>=>>=<>>==!=!>=>><=<<<><><=><=><<<><>><>>>>>>>!=!!<>><>>!!<<><>=<=<<=!<=<>=>>>>!>>!==<<<>=><><><><<=>!<>><>!>>>>>>!><<>>>=!!=<>=!><<<<=>>>><<==>=!>>=!><<>>>=>=!><<<>>><>>>!>><>==!!<<><>==!>>!!<<<<>=>=>!<><=>>>=>!><>!=>==<=!<<>!==>=<>>=><<=>>=><><>!<<=!!>><<=<><!=!>=<<<>=>>=><>!<><==>=<<=><<>=>>!>!!==!<>>=<<<><<>>==>=>>><=<=><>><>><>><<>>>!!!=>>><=<>>=><>=><><<=<<==><<><>><=<<>>=!><>>!><>>>=>!<<<>><><<>!<>!<>>>!><><<<=><<<>=<>>=>!!!=><<><<=<=><<<<>!>!<><=><<<>!<>><>==><>>>=><=!<<><>>=<>!!><<<<<>>>!=<=<<<>=>>><<>==>=>!>><><><<<<<<<=<<<<>=!!>>>>!=>!>=<>!>=>>=><<=<>!><<<=>!><<=!!>=!<<<>!=>>><><==>!>=>><=><<<>=<==>!<><=<><<=>!!==><<<==>=!<<<>=>><=<<>!!><=!><>!<=><=====>=<<><=>!>>=>><>!=!<<<><><><=>>>!>>><<==>><<<>>>=!!>>>><><>><<><<><><<<==>>>>>!!>>>=!=><>=>>=<>>!=!>=<=<<>==><>=!<><=><>>=>><<><>!><<>=>!>>===>>=><<><>!<<==!<<=!>><=!!><!!><>>>>==<<<>!>!<<<<=>>==>=>!=<>=<>>=<<><==><<>>>!!<=!<=!>!>=!>=<>==<<<"

    Returns: "100221012345012333110210121100121001234001155432101012111102110112012301210101230100103210102101232100011043221010111054332101003210012101012230001001043210011010210120121010120112331101012010012221012012011022100123302101002101001221001122010101112301432100110120101200101054321001432210012210121010100113210001101211110101206543210102101201112342210543321001001012201012111010112301012332101012232110101012101101002102210123334021101203210443210210120012345012345660101043210100123101011220210101222101012201201001230101210101011201210121110112001221010015432101101001230122200120101012311101234100010120021010210123111101101010110121011220321043321032101021001010123450102101010211022101012011012102100013210012310101101011044321010321101210012321000112010322101123401011011010101230210765432101101201230210210101201201001123410010110122433210101121021012010001220123110101201223101012201210210120210654321010132100100101010100101234432101223211002100101230155432110012010123210321021010001012010002101012340011010123456103221101201200112310104432110101011000110120111003211013321101010123302101223012110121100100123010143321101012101011101012301233340012201200103221010120100012301321001230120106544433210112202102102101201234321010332101200123001010132110101231102110101223445011121101202101123100102101043211012310121012010123021012013210101012330123003211010110101234401201201101011220101012340101201101230121021110432110110101012021001012012345604321011231001230123043321013222110210101201010123456101223456001432101101001010014443211012230101233010122010012340332101011103221011012300111012011201220100101120101123445567811012333001201101232210112301201120101220111123111001201104322101011012301201010110103210321012221012321001432101021012012010124443210121013210011032210012032101120011231110100120110432210120101012110543333211012010123334012012332101201101201231012101204321000123010123455601101205432221101120021001210101231110132101011011201001001000120123"

  53. ">=<=>><><<<><=<=><>><=><<<<<>>!>=<==<<<=>>=>><>>><==<=<===>!>>!>><>!>=<>>>=!>==><><<!!!<=><>>==!>!!><<>>=>!!!><><<=<>>=>>>><><<<><><><=<>>>>=>><=!>>><=>>!=>!><<===<>=>>><=!!<><>=<><<<=>><><<>!=<>><>!><>>>>!<>=<>>>><<<<<<<=>>=!<>!<>!<===!><><<<<==>=><>=<<>><>>=<<>>>!><=><<<<><<=!<===<<<<===><<=><<<=>!=>><<<<><=<=>=<<>=>==<<><<=<=!><><><=>><>==><>>>><>><>!>><<=!<<>>!!<<=>><=>=!>>!=>!<>>!>><=>!<=<>!>>!<><<><>=!><><=>>>!=<>>=!!>><<!<>>>>=!!>><><!!<<>!<<<=><<>==>!<>>>>>>>><<=!<<>=!=<>>!><<=<<>>!<<<<>>!>==<==>>>=<>>>>!!>>!<<=!<=>!=<<=<<>=>>!<<<<>>>>=!<><==<=<>!<<<>!=>!>>==>>=><><<=!><<<<<<<><>>>><<>!>><>=>=!<>!!!<>>!>=!><>!!><>>>=<<<<<=<><>=!<=<<=><=!<>==<>>=!<>>=<<><<<<==<>=>=>><<<<>>>!><>>><<><<<<<<>>=<<=>!<<<!>=>>>>>===>!>><>=<!>>=>><>=><>><>>!>=!<<>>=!<>!>!<=><>!<>!<>=<=<>=>>>>>>>=<>!<<>=<>!==!><=><><<><==>=><>!=<=!>>!<==<>>=<<=>><=!!<<>>>><><>=<>>!=>><>><>><=!!<=!=<>><<<<><<==<=<><>!=><>=!!<!>!<>>=<>><><!>><>!!==><=<!<>>>><>=><>>><>>!<>>><>>=<<<>=<>=<<=!>>==<=>!>>>!==><<<<><=><<!><>>=<=<<>><<=>><>>>!=<<<<<<><>><<>>>!<<>>=>!!=<><=<<>><>==!=><<=><<<>=>!<=<<!<>><=<<>!>=!>!!>>>!<=>!<>!=!!!<<<=<><!<>=<><=<=><<>>!=!>>>>>=!>>=>!<<<=><><><>!!==<<<><<>>>!!<>!==<>!<<>!=><>>!><==>=>>><<>=><<==>><=!>=>==<<<<<<>!!<=!>=><=!>>===><=!<=<<<<==<>==!<>=>!<<=!!<>=<><=<>=>!<==>=<<><>=!!=>>!<<>=<>><<>!>>>=!!<<<<<<<=>>!>>>><=><>=<><>>!!>=<<==>>>>>>>>!>!>!!!!<<><>><<><=>=<=><<=<><<=>!><>><==>>>>>>>>=><>><>!!!=!=!<<<=>=!<>=><<<>>>=>===!!>=<>>>!<>=><><>>>><=>><===!><>"

    Returns: "1001101021010123011220101210110123451010012010001244322101243210111223333021021010100321002111010120123001201201120101102100010120132110101010122654432101012301010116543221011321022101101202221012222433210110101012101201001012331010120112101231010432101200432101234567710012012012222101012344501322110100121021001201321012010110123101201220111201234500123444401220123401231101200322101234101012012200110012110001201010122331010101101012231021110432102101010110101202101220121010122101201211002101101210101021011012230210123210123021010010103321011210012101231101432100121010120110120101201234401211101876543210122012001121010122341012345110210100011123210100102100432101210123301101123345601210101101322101234501432100120111223012340110543332110101221012345671012310432101202102110012010121010010101120101012101010321001234556010012234450121011010002100120120001220210012012344456012100143221012342101032101201234561001220123450107665432111102101001201043221021102102101001231001201012201012012001201187765432101010010123001011120110121012101202221101011223101231010101012000210012101101021010123011012432101010101231010021022101010110210210110122002101234012301122345000112010110100101201201012100210101210210101222011231012101013210211032101012101321010101234100123001001230001100110122310021000110321011120111210101012340110123101021012001123101221012014432101120101234560210132101231001021010010112301210101001200120011012321101230010021012310012310121011230100101321012201201101012334012101200101122012101132101010132100321101234401010101001201200123010101321010101112110101230110210104443321012110122210110101321100012345601011211011321111011011201012345012000100012110123301211110120100100101011211012220012010010101001000321012300210120321001012345677102101011012321011010010210120018887654321010101010120210120110011012230122010120120032109998765432110120210101011010122001234400121101243211000012012002101012332210121101012321010132101203221011112101010"

  54. "><>>>>>=<>><<<=><===>>=<<>><==<<==>=>=><<=>>>=><=<>==<==>>>=>==><>====<><<==><><>=<=>===<==><===<<<>><>==<>>=><=<<=<<><=><=><>=>>==>=<=<>=>=>==>>===><=>=><=>>><=<>><=><<<==>=><<==<><>=><>>>===<>==><>>><<>=>===>==>>><<=<=>=<==<<=<<<>>>=<>>>>=<>=<>>==>><>><<<><==><>>=>><<<<<>>><<<>>=><=<<><<<<=><>>=<<>=>==>>>>=><=<<=><<><<===<<>===<=<>=>=<>===<===<=<<>>=<><=<>>>===<<=>=<=>=<====<=>><==>>>>=<<>====<><<>><<>><><><>>>>=>=<=<=<>===><=><<=<<=<==>>==<>=>=<><<<>>>>><=<>>=<>==>><<<>><=><=>==>==<>>>>><<<==<==><<<>=>>=<>==<=<<<<>><<<=>><>>><=><>=>><<=<><==<=>>>><>>==<=<>><<<<==<<=>>>>><<<=<<<<=<<===<<<><=><><=<><===>==>>><<>><><><>=<><<><==<=<><>==<<<>>>=<>==<<<<<<>>>>====<>><>><=<=<<=<=<>>=>><>>>===<===>><>><><=<<<<=<>==<==<=>>><<=<>=<<<=<<<><<<=<=>><=<==<=>=>==>==>==>><=>>===>=><=>=>><=><><>>====>><=<=<<><=<=><<===<=<==<<<=<=><><<<=>>=>>=<=<==><=<<======><>>=>=>>>=><<<>>>>==>>===>>==>>><<<>><<>=<>><=<>=<><>==<<=><<<=<<><=><>=<>=>==<<>>=>>>><=<>>><>=>=><>><<<==>>=<=>=>>>====>=<<<==><>>=><>=>=<<>=<<=><<=>>>=====<>===>=<=>==<<><<<>>><<>=>>><<>==><>>><>><>><>>==>=<>===>>>=<>>>==>>=<=<==<>=>>=<=>=><==<<>==<<=<<==<<<<==>=<>>>==>=>=>>=<>==<><>><>>>=>>>=<<<<=>=<<=<><<<=<<<><><=>=><<><>=<<==<>==<<>===>=<=<>=>=<=>>>=>=>=><====<><=>=<><<>==>><<=><<=><===>===<=<><==<==<=<>====>===<>==<<><=<===>>>=<>>=<><=<<=<<>>><<><=<=>=<>><>>><<==><>>><><<>=<==><<>>>><=>==<=<<>>>=<==<>>==>=>>==<=>=><><=>><<><<=>>><>=<<<<<>=<===>=>=<===<=>=><>=>><<<<=<>=<=>==>=>====>><=<>=><<>><=<<==>=<<=<<>>>==><>==>>>>==><=<<>==<<<===><===<=>=<===>>=><=>>><><<<=>=>>>><=><<>>=<>=<<<>><<=<<><<>=<>==<====<>=<==>==<><<>><<<<>=>===><<==>=<<><><<==<=<=<>===><<<=>>>>=<=<=<>>=<==<><=<>=>=><=>==>>==>><==>><>>>>=<>=>><>>>=<>><>>=<<<>=<<<=>><>=><=<><=>=><<=>=>=>>><=<==>><=<<<<<=><====>>><<><><=>>><=><<<<<>>>==<>>==<<<><>==<>=>=<<>><<<==>>>>>=>=<><>=<<<><=<<><>=<>>=>>><==<=<===<><<>=><>=>>=<<=<>=>>>=><><=><<<==<=<=====<=<><>==<<<><=>=><><><>=<>==><=>=>>>><>=>=>><=<>=<===<><=<=><><=>>>>=>==<<><>==<="

    Returns: ""

  55. "=>=><<=<=<=<><=>><>>><=<>>>>><<<<>=<<<>><>=>=>>==<<>==<>=<<==>=>><<>>><>><<=<=<><<<=<=>===><=<<<<<<<>>><=>=><>>>=<=<<>====>>=<=>>>=><><=>>===>==<<<>>>>>=<>><=<>>>==<=<====<>==<<<>=<===>>===<>>>><=<>>>=>=>>=<>><<====>===>>>=>><=>>==<><>=>=<=>=<==>==<<>>=<>><<<<<=<<>=>=><=<<><=>===><<><=<><><<>=<>===>><<>><=<>><<>=><<<==<<>=>>>>=<<>=>>=>=>>=><<=<>==>>>><><><><=<<>>><>><=<<==>><>>>>>>=<<=>=><=><<==>>=>=>>=<>>=<>>==<=>=>>>>==<==<<><=<<<===><<<=====><>>><<>><><<===>>>==<<=>>=>>>=<<>=<><><<>=<><===>>>>==<>>==>>>==<<<=>>===>==<<<>>>>><<>><><=<=>>><<=><=<==>==<==>=>==<>=>>==<<<==>=><><=<<=>><>=><<>=<==<><>=<><<>==<><<>>=<<=>=>>>=>>><><<>>>>==<<======<==<>=<====<<><=<<=>>>>=<<=<<>>=<=<<><<>=<==><<><=<<=>=<<<=<=>==>=<>===><>>>=<<><=><=><><=<>==<>>=<==><<<<<>>><=<=<>=>=<=<==>><>=>=>><><==<>=<>>=<>>==<><<>>==>==>=<<=>>=><<<<<>><==>=>><=<<>>=>>=>=><><>><<<=><=><<===<=><<=<><<=<<==<><<<==<<><>>>>><==>><=>=<<=><=>==>>>><>=>>>><<===>><==<=>>>>=<>=>=>=<<==<><>><><>=<>====><<<<<><<=><>=<==<<><<=>><>==><>=>=<><<<<<><==<=<>><=<<<<><=>>==>>>===>>=><<>=<>>>==>>>==>=<><=<=<<><=><<><><>=>>>><<=<<<>>>====><<=><=>=<>><==<<==<><><=><<=<>=>=<<>>==<><>>>>=<>><>>>=>>==<=>>==<=<<===><>=<>=><<=<>>==><><=>>>>>=<==><<>=<>><<<==<><>><<>>=>====<<=><===<=><<>====><<>=><>=<=<=><<=<=><><=<><==<=>=<<<==<=>=<>=>>>>=>><===>>====>==<<==><><==>><<==<=<<<<==<<<<==<>><>=><><<>><=>><>>>>=<=>=>>==><<<>=><=<==>>=>>==>><<=<=>>==><>><<<>><<><<<===>=<><==<>>>>==>=<<<<<=<>>>>=>>==><==>>>=><>=>><=>=<<=><<<==<>=<<===><=<=<>=><=<=><><=<=>=<><<===>>=><<>=>>===<><><<<<<=>=<><=>>=<====>>==>>>>=<><=>=>><=>>>>>=><><<<==>>==>>><><>====<==<><<>=<>><>>><<==<>>>>>>===><<><><<>>=>><=><><=><><<>==<>>===>=<=<<>><<<<<<><=><><=>=<>>>>><>>=>=>>>==<=<=<>==<===>>=<><><<>=>=>=><==<==>>>=<>=<><<====>><>=><=<=<>=>>=<>>=<<><==>==>><=<<=<==>=>=<><=<==<>=<<>>===<>==<<>><>>><<>=<>=><>=<<<<>=<>==<>=>>=>=><=<>><=>>=<==>><======>=>=<==<>>==>=><<>==>>=>>=<>=<>><>>"

    Returns: ""

  56. "<=======================================================================================================================================================================================================<=======================================================================================================================================================================================================<=======================================================================================================================================================================================================<=======================================================================================================================================================================================================<=======================================================================================================================================================================================================<=======================================================================================================================================================================================================<=======================================================================================================================================================================================================<======================================================================================================================================================================================================="

    Returns: "12222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222233333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444445555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555566666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777778888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888888899999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999"

  57. "><>>>>==<<>>>===<=<><=>>><<==>><>>=<<=<=><=>>=<<>=>==><===<>==><<<><=>><=<=<><<>>><==>>>><><==><=<=>>><=>>>>==<>><=>>==>><===>=><>>>><<=><>==>>>>======><==>><<<>=====><><<=><<=<<<==<=<=>>>=>><<<<>=<>>><<>>=<>=>><=<=<><>==<<><<=<<<><><>><>=<>>=<<==<><<<<>=<<=<===><><==><=>=><=<><=<=>><>>=>=>===<><>><><><<<><<=<=<>><<<>=<>==><>><=>=>>>=<><>=>==><=<<<=>=>=>=<<<>>=<>===><==<<=>>=<==<=<<<<=><==><>><=><=>>><=><=>>=>=<<>=><<=>=<=<>>=><<=><==><><><<<<=<<>>=<=<<>><====<==>=<<=<>><<>><<>=>>>>>====>><<=><><<=<<<><>=<=><<=<<><==>=<><><==>===>>>><<<>=<<<=<====>>>>><<>><=<><><<<=>=<>>>==><=>>=>=<>==<<=<==>><=<>>>=>=<<<=<=<<==<>>>=><>=<>=><<=<=<===<===>==>=>><<<><=<<>><=<=<>==>==<==>==<==>>=<><<<==>=<=>><<=>==<=<=<==<>>>>>>=>>=<=>=<=<===>=<<===>>=<>><<<>===<<<>>>===>><==<<=>===>=><<===<>>=<>><==><<<<<<<=<=<>><==>===<<>>>>><=><<==<><==><====<<<<=>>=>==><>>>==<<>==<>=<=>><>><==>>=><<>>><==>=<=<=><<><<==><==<<><=<>>=<><>=><><<<<><>><===>=<><<<=><<>==<>>=<>><<<<><><>><===<<<==<=><==>=<===>=>>><<>>><>=>>>=<<<>>>>==<<<><=<>>=>><<<>>=<==<<<=<>=>=<<===<<<<>><<<<=<<>==<>>><<>>=>><<<<><<=>===<=<<<=<<<<=><=<<><<==<<<>>==>===<=>==<<==>=><><>><<=>=<=<==>>==<>===<=<>>>>=<><=<>=<><<<=>>>=>><><<<<=<>>><===<=<<<=><==<<>===><==<>=<<==<<<<>=<<=<><><<=><>=<=<><>>>=>>=><<=><><<>>=<>>===>><<=>=<>=><=<>==><=>=<>=<<==<=><=<<<<>=<=<<=><===<<>==<====>=<>>>=><>>=<====><>==>=>>=<<<><<=<<=>=<==>==<<<=>===<==<><=>><<<<=><=>=>=><=>>==<<<<>>=<==<>==<=<=><<<<><<>==<==<>>>==<=>=<<=<>>>=<<<<<>>><==>=<<<>=>=><<=><=<><==<<<=>=<==>=<=>==>>>>>>><=><=>=<=><=<>>==>>=<<=>>=<=>====<<<=>==>=>>><>><<<<<<=>>=<><<<<=<>><<=><<<<>><=<<>><=<==<><=<<<=<>>=>><<=>=>>==><====<=<>>>==<>=<>=><=><<<=<><>==>=<><=>>>>>>==>><<<=>==<<=<>===<><<=>===>>><==>==<>=>><<=<=<======><><=>><<>==>==<><<>==>>>=>====<>=<<<=>><====<>>>>==><<<===<<=<==><<==<<><>>>>>><<<>==<===><>===<>>><>><<>=<<=<<<>=<<<<<<>>><><=<=<=>=<><===>=><=<=>==>>==<>>>>==><<====>>>==>=<=<>====<<==><<>><=<==<<=><"

    Returns: "104321000132100001120332101222102100122330221001322111011112111012302210112230132104443210101110113321044321000210443222102222110432101220655543211111110222101231111110101220122345556677432210123400321012100322101122301000120122345010210100210012223012340012233330101110221101120112210432211000010210101012301223341012300211102104433210010322111011234422110012310021111011123310011122345660111021011033210110332110012110122001132110122011101010123445610011231011111222001223101210187765432222210122010122345010011012234011100101055544443210123001233555554321012101120101233004321110332110010001223331011432110012334456667321101002110122334444555533322101230112310112231110001110002221001012333002210122000112233387654322100110011222200122221002101230000125432222101112332222110122223100210111012345677889101110000154321011012223011101111123455322111032100012000100221021033321101321011100112201201222011123011210010211010123402101111001012330120002100210123401021011112344455011100444433210132104332100124321000123011432210123100111234451100122223456101234456000321014322101234012200001123445678801123012223452111000011000122211010210122001122210001000011432100101120010125543221010123445210111122345501112311110111200122234560012230101220100112065433211012201012100432222101220021101121110110010012223301123450011233011112300011111004321102100111110433322100123012234400111000123300001112022101234403322110221000123410011120001122012340120001113210001100122321001234521011100123221101220112011123440011100887776543210110110011011432221001221001100000125544433210210123456610010123445101220123410112310112223011234453221014433211101111122321000100211011012334021110010887654322210123300012230000101443333210111000322101223344444440102210121110001015444321100000100123310111115432111012333345566601222340654321012300011110100003210210120012234500123456210101122330010222211011332221000543211101444443211100112000001222012101122234401"

  58. "=<>>=!<=><=<==<>>=!<<>>>=>=<==><<>==<<>>><><>!=<<==<<>==<><>!<=<>>!<<<><<>==>><<=>!!==>=!=>>>><=>><=<><>!=<><<<<!>!!!>>><<<><>>>=!>><!>!=><<>=!>=>=!<><<<<>>=<>=><><<>>><===!<>!!>>>!>!><<>>!!=!<><=!<<=><=>==>!<>==!!!<><><!<>!<>><>>!>>>!<><>=<<<>!>>>=<<==<=<=><=<><>!>>!>><<>!<=<<>=<<>>!>><<<=!=<>!!<<>!>=>=>><>><<>!><<=!><<<>>!!!<<>!!=!!=>=<=<>!>><>>>>><=>><=>>=<=<>!>=<<=!=>!=<<<<>!=>!==>==!>><>>>>>=>>>>>=<>=>>>=<>>!!!<>=<>!<=><>><<<<=<<<>>>><<>>!!>>==>!<<<>!<><<===!<=>!!<=>><<><><<<<>=<<=>!>>==>!>==<<==<<>=<><>!!>><<=<>!=!<>><=!==>><>!!=>>=!!<=<>><=!<=>=>!>>>!=!!!!>!<><<>=>=<>>=>!<<<<>=!=<<<<<>>=!=>>!!==<<=<<=<=>><=<=<!!><>!!>><<<>>>===><<>===<<>=!<=!>=><>>>><><==><><>!!<>!>==<<>>=>>>=!><<>>><>!><>>!>!!<>>>!!>>><<>>!!=><=>=<==<==!>>==!><<<<><>=!<=>=>!!=>>>><<=!>=>>!=>>=<=>!>>>=><>==>>=><=!<=>!!==<<<<><==<<<=<<=>==!<>>!>><>><<<<<<>>>===>>=>===<<><<>===><>!<><><===<<<>>!!<=>!<>=!<>=<>!<<><=<<=!<=><=<=>!>!<<<<>><><<=!=>>>>!=<=!!>><<<==><<<>><>>><=<==!>><>><=!<=!><>><>==>>=>=>!><=><=<<>=>=>>>=><>!><<>>>=>!>>>>=!><<<><<<>!><>!=!<=<>>!<<<<<==>!!!!<>!>>>>!<>>>!<=<>>>!=>!<><<><<>><><>!=!<<<=><><<>!!=<>!<><>>><>>=>!>>=!!<==><>!<>><<>><<=<><<<<>!=<<<<=<<=>==<>>!<>><><<<>!<>><>=<>>!=><=<=>>>=!!=<>!=<>!><=><>><=>=<=>><<>!=!!><<<>=><<>!=<=!<>!>=<>===>=<>>>=<>!=!<<>><>!<=<><><=><=>>>!>>=>!!=<==<<=>>>!<<=!!<><<<><><=<=>!=<>>>>>>=>>====<><>==<>>=><=<<>>>=!<>=<<>>>!!!><>><<<>!<>=<>!>>><<>>>>>=

    Returns: "11210012201123100021001243211001120221101200012011032101010112333401012000120101012231012345021013222101220122201012111004432102210112010112012345101012011201321012110120321002101211010110123022100211010012234010012012341021002110101321011110101321010101210120110110101101220221110120001012010120011012012010121021032101201001230321001222340120010011011201021021012012234001210210123300101012043322102101201012210123101012301001220011202105432102210101012230101022100112012010101101201210012200102101121012340110111012220002103210108765543210043321002101011012344410101200101010010122021012344567012043210121012101021110123401010120122220110102210123210101234001220321110100012310101010012001200101012101223011021011222010123310101221001011210110221103210110101012012011012321100321101234500112345610012332210101010001012001012345101223101223310112234001012101010121012432111101200001230210012231101201543210101110101010120101012010101200015433210010132101010210101032101201321012101220110011122231000101234010012211014432101223103221010122301123210011043211010014443321101010101101101000120101230111234456721100012101232102101234510123654322221001221000012012111101012010111123410120010122012001200101230112334011012012201122010123101231010122015443210112202101012344500111121012334211010101231032101120120120111012010321021011011201201123321043332110101221101202101101123001654432110101014321101204321001201201210123012301010110112101234566601010104321013210122321011012101012302101210101011012330101232101001010012012032103211010112021001011101012101201210122301234011234556770002101201123340210101230123010132101002101101122101012342100100101201001010110120210110210123110022101201101012311012011231001201002111100321001011012101201201210122301011033210321101001112330103210123341101010121012010112201143210132101011232210000010100032110112321001200132101010210123012001021010121012101012234532100101"

  59. "!<<<<<>>>"

    Returns: "1012345210"

  60. "!<<<>>>>>"

    Returns: "1012543210"

  61. "<<<<<>>>"

    Returns: "123456210"

  62. "<<<>>>>>"

    Returns: "123543210"

  63. "<<<<<<<<>><<<<>>>>>>>><<>>>><<<<>>>>><<<>>>>>>>><<<<<<<<>>>><<<<<<<<>>>>>><<<<<>>>>>>>>><<<>>>>>>>><<<<<<>>>><>>>>>>>>><>>>>><<<>>>>>>>><<<>>>>>>>><<<<<>>>>>>>>><<<>>>>>>>>><<<<<<<<>>>>>><<<<<<<<>>>><<>>>><<<<<<<>>>>>>>>><<>>>><<<<<<><>>>>>>>>><<<<<<<<<>>>>>><<><>>>>>>>><<<<<<>>>>>>>>><<<<<<<<>>>>>><<<>><<<<>>><>><<<<>>>>><<<>>><<<<>><<<<<<>>>>>><<<<<<<>>>>>>><<<<<<<>>>>>>><<<<>>>><<<<<<<>>>>>>><<<<<>>><<<<<<<>>><<<<<<<<>>>><<<>>>>>>>><>>><><>>>><<<<<<>>><<<<<<>>>>>>><<<<<<>>>><<>>>>>>><<<<<<>>><<>>>>>><<<<<<<>><<<<<<<<<>>>><<>>>>><<<<<<<<<>>>>><<<<<<<<<>>><<<<<<>>>>><<<<<>>>>>>><>>>>><>>>>><<<<<<<>>><<<<<>><<<<<<>>>>>>><<<<<<<<>>>>>>>><<<<<<<<<>>>>>><<<>>>>>><<>><<<>>>>>><<<<<>>>>>>><<>><>>>>>>>><<<<<<<<<>>>>>>>><<<<<<>>>>>>>>><<<>>><<<<<<<>>>>>><<<>>>>>>><<<<<<<<<>>>><<<<><<<<<<<<>>>><<<<<<<<<>><<<<<<<<<>>>>>><<><<>>>><<<<<<<<<>><<<<<<<<>>>>>>><<<<<<<<<>>><<<<<<>>>>><>>>>>>>>><<<<<<>>>>>>><<<<<<<<>>><>><<<<<>>>>><<<<<<<<<>>>>>>>>><<><<<<<<<>><<><<<<<<<<<>><<<<<>><<<<<<<<>>>>>>>><<<<<<>>>><<<<<<<<>>>>>><<<<>>><<<<<<><<>>><>><<<<<>>>>>>>><<<<>>>>>>>><<<<<>>>>>>>>><<<<<<<>>><<<<<>>>>>><<<<<<<>>>>><<>>>>>>>><<<<<<>>><<<<<<><<<<<<>>>>>>>>><<<<><><<<<>>>>>>>>><<<<<>>>>><<><<<<>>>>>>>>><<<<<<<<>>>><<<<>>>>>>><<<<<<<>>>>>><<<<<<>>>>>>>>><<<<<>>>>>>>><<<<<>>>>><<<<<>>><<<<<>>>><<<<<<<<<>>>>>>>>><>>>>><<<>>>>>>>>><<<<<<<<<>>>>>><>>>>>>>><<><<>>>>><<<<>>>><<<<>><<>>>>>><<<>>>>>>>>><<<<<<<<<>>>>><<<>>>>><<<<<<<>><<<<<<<>>>>>>><<<<<>><<><<<<>>>>>>>>><<<>>>>>>>>><<<<<<<<>>>>>><<<<<<<<<>>>>>><<<<<<>>>>>>><>>>>><>>>>>><><<>>>>>>><<<<<>>>>>>>><<<<<<<>>>>>>><<<<<<<>>>>><<<<<<<<<>>>>><<<>>>>><<<<>>>><<<<<<<>>>>>><<<<<<<<>>>>>>>><<<<<<<<>>>>>>>><<<<<<>>>><<<<<<><<<<<<><<<<<<<<<>>>>><<>><<<<<<<>>>>>>>>><<<<<<<<>>>>>>>><<<<<<<<<>>>>>>>>><<<<<>>>>>>><<<<<<<<>>>>>><<<<<<<<<>>>>>>>>><<>>>>>><<<<<<<>>>>><<>>>>>>>>><<<<<<<<<>>>>>>>><<<>>>>>>>><<<>>>>>>>>><<<<<<><<<<<>>>>>>>><<<<<<<<>>><<<>>>>>>>>"

    Returns: "123456789101238765432101432101235432101287654321012345678321012345678543210123498765432101287654321012345632109876543210543210128765432101287654321012349876543210129876543210123456785432101234567832101432101234569876543210143210123456098765432101234567895432101208765432101234598765432101234567854321012310123421021012354321012321012341012345654321012345676543210123456765432101234321012345676543210123452101234567210123456783210128765432103210104321012345621012345765432101234563210176543210123456210165432101234567101234567893210154321012345678943210123456789210123456432101234765432105432105432101234567210123451012345765432101234567876543210123456789543210126543210121012654321012347654321012108765432101234567897654321012345987654321012321012345675432101276543210123456789321012340123456783210123456789101234567895432101201432101234567891012345678654321012345678921012345643210987654321012345765432101234567821021012345432101234567898765432101201234567101201234567891012345101234567876543210123456321012345678543210123421012345601321021012348765432101238765432101234987654321012345672101234654321012345674321018765432101234562101234560123459876543210123401012398765432101234543210120123987654321012345678321012376543210123456754321012345987654321012348765432101234543210123452101234532101234567898765432105432101298765432101234567895432108765432101201543210123432101234101654321012987654321012345678943210125432101234567101234567654321012345101201239876543210129876543210123456785432101234567895432101234576543210543210654321010176543210123487654321012345676543210123456743210123456789432101254321012343210123456754321012345678765432101234567876543210123456321012345601234560123456789432101210123456987654321012345678765432101234567898765432101234765432101234567854321012345678987654321016543210123456743210198765432101234567897654321012876543210129876543210123456012348765432101234567821012876543210"

  64. "<<><<<<<<<>>>>>>>><<<<<<<<>>>>><<>>>>>>>><<<<<>>>>>><<<<<>>>><<<<<<<>><<<<<>>>>>>><<<<<<>>>>>>>><<<<<>>><<<<>>><<<<<<>>>><<<<<><<<<>>>>>>>><>>>>>><>>>>><<<<<>>>>>>>>><<<<<<<>>>>>>>>><<<<>>>>>>>><<<<<<<<><<>>><<<<<<<>>>>>>>><<<>>>><>>>>>>><<<<<<<<>>>>>>>>><<<<<<<<<>><<<<<<<<<><<<<<<<<<>>>>>>>><<<<<<<<<>>>>>>>><<<>>><<<<>>>>><<<<<<>>>><<<<<<<<<>>>>>>>><<<<<<<<<>>>>><<<<<<<<>>>>><<<<<<>>>>>>>>><<>>>><<<<<>>>><>>><<<<>>>>>>>><<>>>>>><<<<<<<<<>>>><<<<<<>><<<<<>>>>>>>>><<<>>>>><<<<<<>>><<<>><<<><<<<<<<<<>>><<<<<<<<<>><<<<<><<<<<<>>><<>>>>>>>><<<<<>><<<<<>>>><<<<<<<<>>><<<>>>><<<<<<<<<>>>><<<<<>>>>><<<<<<<<><<<<<>>>><>>>>>>><<<>>>>><<<<<<<<>>>><<<<<<<<><<<<<<>>>><<<<<<<>>>>>>>>><<<>>><<<><<<<>>>>>><<<<<<<>>>>><<<<<>><<<<<>>>><>>>>>>>>><<<<<<<<>>>>><<<<>>>>><<<<<<<<>>><<<>>>>>>>>><<<<<>>>>>>>><<<<<>>>>><>>>>><>><<<<<<<>>>>>>>>><<<<<<<>>><<<<<<<>>>>>>><<<<<<<<<>>>><<<<<<<<<>>>>>>>>><<<<<<<>>>>>>>><<<<<<<<<>>><<<<<>>>>>>><<<<<<>>>>>><<>>>>>>><<<<<<<>>><<>>>>>>><<<<>>>><>>>>><<<<<<<<<><<<<<<>>>>>>><<<<<<<<<>>>>><<<<>>>>><<><<<<>>><<<<<<>>>>>><<>>>>>>>><<<<<>>>>><<<<<<>>>><>>>>><<<<<<<<>>>><<>>>>>>>>><<<<<>>><<<<<<<>>>>><<<<>>>>>>>>><<<<<>>><<<>>>>>><<<>>>>><<<<<<<<>><<<<<>>>>><<<>>>>>>><<<<>>>><<<>><<<<<>>>>>>>>><<<>>>>>>>><<<<<><<>>>>>>>>><<<<>>>><<>>>><<<<<<<<>>>>>>><<<<<>>>>><>>>>>><<<<<<>>>>>>><<>><<<<<<>>>>><<<<<<<<<>>>><<<>>>><<<<<<<<>>>>>>>>><<<<><<<><<<<<<>>>><<<<<<>>>><<<<>>>>>>>><<<<<<>>>><<<<<<<>>><<<<<<<<>>>><>>>>>>><<<<<<<<>>>><<<<<<<><<<<<<<>>>>>>>>><<>>>>>>>><<<<>>>>>>><<<<><<<<>>>>>>>><<<<<<<<<><<<<<<<<<>>>>><<<<<<<<>>>>>><<<<<>>>>>>>>><<<<<<<<<>>>>>>><<<<><<<<>>>><<<<<<<<>>>>>>>><<<<<<<<>>>>>>><<<<<<<<<>>>>>>><<<>>>>>>><<<<<<><<<<<<<<<>>>>>><<<<<<<<<>><<<<<<>>>>>>>>><<<<<<<>>>>><<<><<<<><<<<<>>>>><<<>>>>>><<<<<<>>>><<<<<<<<<>>><<<<>><<<>>>>>><>>><<<>>>>>>><<<<<>>>>>>>>><<>>>>>>>>><<<>>>><<<<<<>>>>>>>><<<<<<<<<>>>>><<>>>>>><<<<<><<<<<<<<<>>>>><<<<<<<<<>>>>><<<<<<<<>>>>>>>>>"

    Returns: "1230123456876543210123456784321018765432101234654321012345321012345671012347654321012345876543210123452101234210123456321012345012387654321065432105432101234987654321012345698765432101238765432101234567801321012345687654321012432107654321012345679876543210123456789101234567890123456789765432101234567897654321012321012354321012345632101234567897654321012345678943210123456784321012345987654321014321012345321032101238765432101654321012345678932101234561012349876543210125432101234562101231012301234567892101234567891012345012345621018765432101234510123453210123456782101243210123456789321012345432101234567801234532107654321012543210123456783210123456780123456321012345698765432101232101230123654321012345674321012345101234532109876543210123456784321012354321012345678210129876543210123487654321012345432105432102101234569876543210123456721012345676543210123456789321012345678987654321012345687654321012345678921012347654321012345654321017654321012345672101765432101234321054321012345678901234576543210123456789432101235432101201234210123456543210187654321012345432101234563210543210123456783210198765432101234521012345674321012398765432101234521012654321012543210123456781012345432101276543210123432101231012349876543210128765432101234501987654321012343210143210123456786543210123454321065432101234576543210121012345643210123456789321012432101234567987654321012340123012345632101234563210123876543210123456321012345672101234567832107654321012345678321012345670123456987654321018765432101237654321012340123876543210123456789012345678943210123456785432101234987654321012345678965432101234012343210123456787654321012345678654321012345678965432101276543210123456012345678954321012345678910123459876543210123456743210123012340123454321012654321012345632101234567892101234101265432103210127654321012349876543210198765432101243210123458765432101234567894321016543210123450123456789432101234567894321012345679876543210"

  65. "<>>>><<<<<<<<<>>>>>>><<<<<>>>>><>>>>>>>><>>>>><<>>>>>>>>><<<>>>>>>>>><>>>>>><<<<<<<<>>>>>>>><<<<>>>>>>>><>>>>>>><<<<<<<><<<<<>>>><<<<<<>>>>>><<<>>>>>>>><<<<<<<<<>>>>>>><<<<<>>>>>><<<<<<>>>>>>>>><>>>>>>>><<<<<<<<>>>>><<>>>>>>>><<<>>>><<<<<><<<<<<<<<>>>>>>>>><<<<<<>>>>>><<<<<>>><<>>>><<<<<<>>><<<<<<<>>><<<<<<<>>>>>>><<<<<<<<<>>>>>>>><<<<>>>>><<>>><<<<<<>><<<<<<<<>>>>><<<>>>>><<<<<>><<<<<<<>>>>>><<<>><<<<>>><<<>>>><>>>>>>>>><>>>>>><>>><<>>>>><><<<<<<><<<<<>>>>><>>><<<<<<<<>>>><<<<>>>>>><<<<<<<>>>>><<>><<>>>>>>>><>>><<<<<>>><<>>>>>>>>><<<<<<>><<<<<<<<>>>>>>>><<<<>>>>>>>><<<<<>>>>>>>>><<<<<<>>>>><><<<<<<<>>>>>><<<<>>><<<>><<<<<<<>>>>>>>><<<>><<>><<<<<<<<<>>>>>>>><<<<<<><<<<<<<<<>>>>><<<<<<<<<>>>>>>>>><<<<<<<<<>>><<<<<<<<><<<<<<<<>><<<<>>>>><<>>>>>><<<<<<>>>>><<<<<<<<>>>>>>>>><<>>>>>>>><<<<><>>>>>>>><<<<<<<>><>>><<<<<<<>>>>>>>>><<<<<><<<<<>>>>><>>>>><<>><<<<<<<<<>>>>><<<<<<<<>>><<<<<<<<<>>><<<>>>>>>>><<>>>>>>>>><>>>>>>>>><<<<<<>>>>>>><>><<<<<<<<<>>>>>>><<<<<>>>>>>>><<<<<<>><<<<<>>>>>><<<>><<<<<<>>>>><<<>>>>>>>><>>>>>>><<<<<<<>>>>>>><<<<<<<<>>>>>>>>><<<<<<<>>>>>>>><<<<>>>>>>>>><<<<<<<><<<<<<<>>>><>>>>>>><<<<<<<<>>>>><<<<<>>>>>><<<>><<<<<>><<<<<>>>>>>><>>>>>>>><<>>>>>>>>><<<<<<<><>>><<<<>><<<>>>>>>>>><<<<<<<>><<<<<<><<<<>>>><<<<<<<<>>><<<<<<<<>>><<<<<><>>><<<<<<<<<>>><<<>>>>>>>>><<<<>>><<<<<<<<<>>>>>>>><<<>>>>>>><<<<>>>>>>>>><<<<>>>>>>>>><<<>>>>>>>>><<<<>>>>><<<>>><<<<>>>>>>>>><<<<<<>>>>>>>><>><<<<<<>>>>><>><<<<<<<<>>>>>><<<<>>>>>>>><<<<<<<<<>>>><<<<>>>>>>>>><<<>>>>>>>>><<<<<>>>>>>>>><<>>>>>><<<<>>>>><<<<<>><>>>>>><<<<<<<><<<>>>>>>><<<>><<<<<<<<>>>>>><<>>>>>>>>><<<<<>>>><<<<<<><<<>>>>>><<<<<<<<<>>>>>>>>><<<<<<<>>><>>>><>>>>>>>><<<>>>>>>>><<><>><<<<<<<<>>>>><<>>>>>>><<<<<<<<<>>>><>>>>>>><<>>>>>>><<<>>>>>>>>><<<<<<>>>>>>>><<<>>>>>>>><<<<<<<>>>><<<>>>>>>><<<<<<<<<>>>><<<<<<<>>>>>>><<<<>>>>>>><<<><<<<<<<<>>>><<<<<>>>>>>>>><<<<<>>><<<<<<<>><<<<<>><<<<>>>>><<<<<<>>>><<<<<<>>>><<<<>"

    Returns: "14321012345678965432101234543210876543210543210198765432101298765432106543210123456787654321012387654321076543210123456701234532101234565432101287654321012345678965432101234654321012345987654321087654321012345678432101876543210124321012345012345678987654321012345654321012345210143210123456210123456721012345676543210123456789765432101235432101321012345610123456784321012543210123451012345675432101231012342101243210987654321065432103210154321010123456012345432103210123456783210123654321012345674321012101876543210321012345210198765432101234561012345678765432101238765432101234987654321012345643210101234567543210123421012310123456876543210123101210123456789765432101234560123456789432101234567898765432101234567892101234567801234567810123543210165432101234564321012345679876543210187654321012340876543210123456710321012345698765432101234501234543210543210121012345678943210123456782101234567892101287654321019876543210987654321012345765432102101234567896543210123487654321012345610123465432101231012345643210128765432107654321012345676543210123456798765432101234568765432101239876543210123456701234567321076543210123456784321012346543210123101234510123476543210876543210198765432101234567032101234101298765432101234567101234560123432101234567821012345678210123450321012345678921012987654321012342101234567897654321012765432101239876543210123987654321012987654321012354321012321012398765432101234587654321021012345643210210123456785432101238765432101234567893210123987654321012987654321012349876543210165432101235432101234510654321012345670127654321012310123456785432101987654321012345321012345601265432101234567898765432101234567210432108765432101287654321012021012345678432101765432101234567893210765432101765432101298765432101234587654321012876543210123456732101276543210123456789321012345676543210123765432101230123456783210123498765432101234521012345671012345101235432101234563210123456321012340"

  66. "<>>>><<<<>>>>>>><<<>>>><<<<<<>>>>>>>><>>>>>>>>><<<>>>>>>><<<>>>>><<<<<<<<>>>><<<>>>><<<<<<<>>>>>>>><<<<<<<<<>>><<<>>>>>>><<<>>>><<<<<>>>><<<<<<>>>><<<<<>>>>>>><<<<>>>><<<<<<<<>>>>>>><<<>><<<>>>>>>><<<<<<<>>>>>>>><<<<<<<>>><<<<<<<<>>>><<<<<<<<<>>>>>>><<<<<<<>>>>>><<<<<<<<>>><<<>>>>>>>>><<<<>>><<<<><<<<<<<>><<<<>>>>>>>><<<<<<<<<>>>>>><<>>>>>>><<<>><<<<<<<>>><<<<<<<<<>>>>>><<<<<<<>>>>>><<<<<<<>>>>>>>>><<<<<<<>>><<<<<<<<>><<<<<<<<<>>>><<<>>>>>>>><<<<<<>><<<<<>>>>>><<<<<<>>>>>>>><<<<<>>>><<>>><<><<<<<<<<><<<<<>>><<<<<<<>>>>>>>>><<<>>>>>>>>><<<<<<>>>>>><<<<<<>>><<<<<<>>>>>><>>>>>>><<<<<<>>>>>><<<<<<>>>>>><<<<<<>>><<<<<>>>>>>>>><<<>>>>>>>>><<<<<<<<<>>>>>>><<<<<<>>>>><>>>>>><<<>><>>><<<<<>>>>>><<><<<<<<<>>>>>>>>><<>>>>>><<>>><<<<<<<<><<<<<<<<>>>><<<<<<<>>>>>>>>><<<<<>>>>>>><>>>>>>>>><<>>>>>>>>><<<>>>><<<<<>>><<>>>>>>>>><<<<<>>><<<<<<<<<>>>>>><<<<<<<<<>>>><<<<<<<>>>><<<<>>><<<<<<<<>>><<<<<><<<<<<<<>>><<<<<<<<>>>>>>>><<<<<>>>>>>>>><>>>>>><<<<<<>>>>>>><<<>>>>>><<<>>>>>>><<<<>>>>><<<<<<<<>>>>>>><<<>>>>>>>>><<<>>><<<<<<<<>>>>>>><<<<<>>><<<>>>>>>>><<<<<<>>>><<<<<<<<<>><<<<<><<<<<<>>>><<<><<<<<<<>>>>>>><<<<><<<<>>><<<<><>>>>>>>><<<<<<<<<>><<<<<<>>>>>>><<<<>><>>><<>>>>><<<>>>>><<<<<<<>>>>>>><<<<<<>>>>>>><<<>>>>>>>>><<<<<<<<<>>>>>><>>>>>><>>>>>><<<<<<<<>>>>><<<<<<>>>>>>>><<<<>>>>>><<<<<<<<<>>><<<<<<<>>><<<<<<<>>>>>>>><<<<<<<<>>>>><>><>>>>>>>>><<<<<<><<<<<>>>><<>>>>>>>><<<<<<<<>>>>>>>>><<<>>>>>><<<<>>>>>><<<<<>>><<><<<<<>>>>>>><<<<<<<<>><>>>>><><<<<<<<<<>>>>><><<>>>>>>>>><<<<<>>>>>><<<<<<>>><<<<<><<<<>>>>>>><>>>>><<<<<><<<>>>>>>>>><<<<<>>><<<>>>>>>><<<<>>>>>>>><<<<<<><<<<<<><<<<>>>>><>>>><<<<<<<<>>>>>><<<<<<>>>>>><<<><<<>>>><<<<<<<<<>>><<>>>>>>><<<>>>>>>><<<<<<<<<>>>>>>>>><<<<<>>>>><<<<<<<>>>>>>>>><<>>>>><<<<<<<<<>>>>>>>>><<<<<>>>>>><<>>><<<<<<<>>>>>>>>><<>>>>>>>>><<<<<<<<<>>><<<>>>>><<<<<>>>><<<<<<>>>>>>>>><<<<<<>>>>>><<<<<>>>>>>><<<<<<>>>>>>><<<<<<>>>>>>><<<<><<<<<<>>>>>>><<<<<<<<<>>>>>"

    Returns: "14321012376543210124321012345876543210987654321012765432101254321012345678321012432101234568765432101234567892101276543210124321012345321012345632101234765432101234321012345678654321012310127654321012345687654321012345672101234567832101234567896543210123456754321012345678210129876543210123421012340123456710123876543210123456789543210176543210123101234567210123456789543210123456754321012345698765432101234567210123456781012345678932101287654321012345610123465432101234587654321012345321013210120123456780123452101234569876543210129876543210123456543210123456210123456543210765432101234565432101234565432101234562101234987654321012987654321012345678965432101234564321065432101231032101234654321012012345698765432101654321013210123456780123456783210123456987654321012347654321098765432101987654321012432101234521019876543210123452101234567895432101234567893210123456732101234210123456782101234501234567821012345678765432101234987654321065432101234576543210126543210127654321012354321012345678654321012987654321012321012345678654321012345210128765432101234563210123456789101234501234563210123012345676543210123401234210123408765432101234567891012345765432101234103210154321012543210123456765432101234576543210129876543210123456789543210654321065432101234567843210123458765432101236543210123456789210123456721012345687654321012345678432102109876543210123456012345321018765432101234567987654321012654321012365432101234521012012347654321012345678105432101012345678943210101987654321012346543210123456210123450123765432105432101234501298765432101234521012765432101238765432101234560123456012354321043210123456785432101234565432101230124321012345678921017654321012765432101234567898765432101234543210123456987654321015432101234567898765432101234654321013210123456987654321019876543210123456789210125432101234532101234598765432101234565432101234765432101234576543210123457654321012340123457654321012345678943210"

  67. "<<<<<<<>>>>><>>>>>>>><<<<<<<><<<<<<<<<><><<><<>>>>>>>>><<>>>>>>>>><<<<><<<<<<<<<>>><<<<<>>>>>>>>><<<<<<<<><<>>>>>>>>><<<<<<<<<>>>>><<<<<<<<>>><<<<>>>><<<<<<>><<<<<<<<>><>>>>>>>><<<<<<<<><>>>>>>>><<<<<<<<>>>><<>>>>>>><<<<<<>>>>>>><<<<<<>>><<<<<>>>>>>><<<<<<<<>>>><<<<<>>>>>>>><<<<<<>>>>>>><<<<<<<<<>>>>><<<<<<<>>>>>><<<<<<<<><<<>>>><<<<<<>>>><<>>>>><<>>>>>>>><<<<<<>><<<<<<><<<<<<<>>>><<<<<<<<<>>>>><<<<<<<<<>>>><<<><>>>>><<<>>>>>>>><<<<<<<<<>>>>><<>>>>>>>><<<<<<<>>>><<<<<<<>><<<<<<>>>>>>><<<<<<<<>>><<<<<>>>>><>>>>><<<<><<<<<>>>>>><>>>>>>>><<<<<<<>>>>><<<<<<<>>><<><<<<<<<>>>>>>>>><<<<<<<<<>>>>>><<>>>>>>>>><<<<>>>>>>>><<<<<<<<<>>>>>>>>><<<<<<<<<>>><<<<>>>>>><<<<<<<<<>>>>>>>><<<<<<<>>>>>><<<<<<<>>>>><<<<<<<>>><<<>>>><<<<<<<<>>>>>><<<<<<<<<>>>>><<<<<<<>>>>>><<<<<<<>>>>><<<>>>>>>><><<<<<<<>>>>>>>>><<<<<<<<>>>>>><>>>>><<<<<<<>>>>>>><<<<>>>>>>><<<<>>>>>><>><<<<<>><<<<<<<<<>><<<<<<<>>>>>>><<<<<>>>>>><<<<<<<>>>>>><>>>>>><<<<<<<>>><<<<<<<<<>>><<<<<<<><<<<<>>>>><<<<<<><<<<<<<<>>>><<>>>>><<<<<<<<<>><<<<<<<>>>>>>>><<<<<<<<<>>>>>>>>><<<<<<<>>>>>><<<<<<<<<>>>><<<<<<<<>>>><<<<<<<>>>>>>>><<<<<<>>>><<<<<<<>>>>><<<<<<<<<>>>>>>><<<<<<<>><<<<<<><>>>><<<<<><<>>>>>>>><<<<<<>>>>>>>><<<<>>>>>>><>>>>><<<<<<<<>>>>>>><<<<<<>>><<<<<<>>>>>><<<<<<>>>>>><<<<>>>>>><<<<<>>>>>>><>>>><<<<<>>>>>>>>><>>><<<<<<<>><<<<<>>>>>>>><<><>>><<<<<>>><<<<<<<<>>>>>>>>><<<<<<<>>>>>>>>><<>>>><<<<<<<<>>>>>><<<<<<<>>>>>>>>><<<<>>>><<<<<>>>>><<>>><<<<<<<<>><<<<>>>>>>>>><<<<<<<>>>>>>>><<<<<<<<<>>>>>>><<<<>>>>><<<<<><<<<<<<>>>>>>><<<<<>>>>>>>>><<<<<<<<<>>><>>>>>>><<<<<<>><<<>>>>><<<<<<<>>><<<>>><<<<<<<<>>>><<<<>>>>>>>>><<<<<<<>>>>>>><<<<<>><<<<<>>>>><<<<<<<<>>>>>>>><><<<<><<<<<<<><<>>>>>>>>><<<<<<<>>><<<<<<<<>>>>><<<<<<<<>>>>>><<<<<<<>>>>>>>><<<<<<<<>><<<<<<<<>>>>>>>>><<<<>>>>><><<<<<<<><<<<<<<<<><<<<<<<<<>><<<><<<<<<<<>>>><<<<<<>>>>>>>><<<<<<>>>>>>>><<<<<<>><<<<<<<>>>>>>>><<<<<<<<<>>>>><<>>>>>><>>>>>>>><<<<<<<<<>>>>>>>>><<<<<<>>>>>>>>>"

    Returns: "12345678432108765432101234567012345678901012019876543210198765432101234012345678921012349876543210123456780198765432101234567894321012345678210123432101234561012345678108765432101234567808765432101234567832101765432101234576543210123456210123476543210123456783210123487654321012345765432101234567894321012345675432101234567801243210123456321015432101876543210123456101234560123456732101234567894321012345678932101230543210128765432101234567894321018765432101234567321012345671012345765432101234567821012345432105432101234012346543210876543210123456743210123456721012012345698765432101234567895432101987654321012387654321012345678987654321012345678921012365432101234567897654321012345675432101234567432101234567210124321012345678543210123456789432101234567543210123456743210127654321010123456987654321012345678543210543210123456765432101237654321012365432102101234510123456789101234567654321012346543210123456754321065432101234567210123456789210123456701234543210123456012345678321015432101234567891012345687654321012345678987654321012345675432101234567893210123456783210123456876543210123456321012345674321012345678965432101234567101234560432101234501876543210123458765432101237654321054321012345678654321012345621012345654321012345654321012365432101234765432104321012349876543210321012345671012348765432101203210123452101234567987654321012345698765432101432101234567854321012345698765432101234321012345432101321012345678101239876543210123456876543210123456789654321012354321012345012345676543210123498765432101234567892107654321012345610125432101234567210123210123456783210123987654321012345676543210123451012345432101234567876543210101234012345670198765432101234567210123456784321012345678543210123456876543210123456781012345679876543210123543210101234567012345678901234567891012301234567832101234587654321012345876543210123456101234568765432101234567894321016543210876543210123456789876543210123459876543210"

  68. "<<<<<<<<<>>>><<<>>>>><<<<<>>>><>>>>>><<<<<<<<>>>>><>>>>>><<<<<<<<>>>>>>>>><<<<<<<<<>>>><<<<<>><<<<<<<<>>>>>>>>><<<>><<<<<<<<><<<<>>>>>>>>><<<<<<>>>>>>>>><>>>>>><<<<<<<>>>>>>>><<>>>>>>><<<<<>><<<<<<>>><<<<<<<>><<<<<<<<<>><<<<<<<<>>><<<<<<<>>>>>>>>><<<<<<>>>>>>><>>>>>>>><<<<<<<>>><<<<>>>>>>><<<<<<>>>><>>>>>>>>><>><<<<<<<>>>><<<<<>>>>>>><<<<<<>>>>>><<<<<>>>>><<<<<<<<<>>>>><<<<<<<>><<<<<<<<>>>><<<<<<<<>>>>><<<<>>>>>><<<<<<<<>>>><>>>>>>><<>>>>>>>><<<<<<<>>>><>>>>><<>>>><>>>>>>><<<<>>>><<<<>>>>>>>>><<<<<<<<<>>>><<>><<<<>><<>>>>>><<<<<>>>>><<<<<<<<>>>>>>>>><<<>>>>>>>>><<<<<<<>>>>>>>><<<<<<>>>>>>>><>>>>>><<<<<>>>>>>>>><<<<<<<<>><<<<<<>>>>>>>><<<<<>>>>><<<<<<<<>>>>>>>>><<<<<<<>>>>><>>>>>>>><<<<<<>>>>>>><>>>>>>><<<<<<<<>><<<<<>>>>>><<<<<<<<<>>><<<<>>>>><<<<<<<>><<>>><<<<<<>>>>>><<<<<<>>><<<<><>><<>>>>>>>><>><>><<<<<<<<>>>><<<<>>>>><<<<>>>>>>>><<<<<>>>><<<<>>>>>>>>><<<<>>>>>>><<<<>><<<<<>>>>>>><<<<<<<>>><<<<>>><<<<<<<<<>>>>>>>><<>>>>><<<<<<<<>>>>>>>>><>><<<<<<<<<>><<<<>>>>>>>>><<<<<<<>>>>>>>>><>>><<<<<><<<<<<<<<>>>>>><<<<<<<>>><<<>>>>>><<>>>>><<<<<<<<><<>>>>>>>>><<<<<<<><<<<>>>>>>><<<<>>>>><<<<<<<>>>>>>>><<><<<<<>>>>>>><>>>>>><<<>>>><<>>>>><<<<<<<>>>>>>>><<<<<<<>>>>>><<<<>>>>>>>><<<<<>>>><<>>>>>><<<<<><<<<<<<<<>>>>><<<<<<<>>>>>>>>><<<<<<>>><<>>>>>>>><<<<<<<<<>>>>>>>><<<<<<<<<>>>>><<<<<<>>>>><<<<>>>>>>>>><<<<<>>>><<<<<<<>>>>>><<<<<<<>>>>>>><<<<>>>><>>>><<<<<>>>>><<<<>>><<<<<<>>>>><<<<<<<<<>>>>>>>>><<<<<<>>>>>>>><<<>><>>>>><<<<<<<<<>>>>><<>>>>>>>>><<<<>>>>><<>><<<<<>>>>>>>><<<<<<<>>>><<<>>>><<<>><>>>><<<<<<>>>><<<>>>>>><<>>><<<<<<<>>>>>><<<<<>>>>>>>>><<<<<<<<>>>>>>>><<<<<<<>>>>>>>><<<<<<<<>>>>>>>>><<<<<>>><<<<>>><<<<<<<>>>>>>>>><<<>>><<<<<>><<<>><<<<<<<<<>><>>>>>>>><<<<<<<<>>>>>><<<<<<<>>><<<<<<<<><<<<<<<<>>>>>><<<<<<<>>>>>>>>><>>>>>>>>><<<<<<<>>>>>>><<<<<<<><<<<>>>>><<>>>>>>><<>>>>>>><<<<>><>>>><<<<<>>>>>>>><<<<<<<<<>>>><<>>><<<<<<<<>>>>><<<<>>>>>>><<><<<<>>>>>><<<<><<<<<<>>><<<<<>>>>>>>>"

    Returns: ""

  69. "<<<<<<>><<<<<<<>>>>>>>>><<<<<<<<>>>>>><<<<<>>>>>>>>><<<<<<<>>>>>>><>>>>>>><>><>>>>><<<<<<<<>>>>>>>>><>>>>>><<<<<<<>>>><<<<>>>>>>>>><<<<<<<<<>>>>>><<<<<<<<>>>><>>>>>>>>><<<<<<>>>>>><<<<<<>>>>>>>>><<<<>>>><>>><<<<<<>><<<<<<>>>>>>><<<<<<<<<>>>>>>>>><<<<<>><<<<>>>>>><<<<>>>>>>>><<>>>>>>><<<<<<>>>>><<<<>>>>>>>>><<<<<>>>>>><<<<<<<<<><<<<<<<<>>>>><<<<<<<>>>>><<<<<<<<<>>>><<>>>><<<<<<<>>>>>>>><<<<<>>>>>>>>><<<>>>>>>>><>>><<<<<<<<<>><<>>>>><<<<<<<<<>>>>>>>>><<<<<<<<>>>>>>><<<<<<><<<<<>>>>>>>>><<<<<<<<>>>>>><>>>><<<<>>>>>><<<<<<<>>><<<>>>>>>>><<<<>>><<>>><<<<<<>>>>>>>>><<<<<<<>><<<<<>>>>>>>><>><<<<<<<>><<<<<<><<<<<><<<>>><<<<<<<<<>>>>>>>><<<<>>>>>>>><<<<<<<<<>>>>>>>><>><<<>>><<<<<<<<<>>>>>><>>>><>>>>>>><<><<>>>>><>>>>>>>>><<<<<>>>><<<<<<<<<>>><<<<<<<<<>>>>><<>>>>>>>><<<<<<>>>>>>>>><>><<<<<<<>>>>>>><<<<<<>>>>><<<<<<<<>>><<>>>>>>>>><<>>>>>>>><<<<<<<<><<<<<<<>>>>>>>>><<>>>>><<<<<<<<>>>>>>>>><<>>>><<<<<<>>>>>><<<>>>>>>>><>><<<<<<<<>>>>>>>><<<<<>>>>>>>>><>>>>>>>>><<<<>>>>><>>>>><<<<<<<<<>>>>>>>><<<<<<<>><<>>>>>>>>><<<<<<<<>>>>>>>>><<<<<<>>>>><<<<<<<>>>><<>><<<<<<<<<>>>>><<<<<<<>>>>>><<<<<<<<<>>>>>><<>><<<<<<<>>>>>><>>>>>><>>>>>>><<<<<>>>>><<<<>>>>><<<<>>>>>>>><<<<<>>>>>>>><<<<<<<<>>>>>><>>><<<<<<<<><>>>>>>><<<<<<<<>>>>>>>>><<<<<<<<>>>>><<<<<>><<<<<>><<<>>>>>>><<<<<<>>>>>>>><<<<<<<>>>><<<<<<<<<>>>>>>>>><<<<<>>>>>><<<<<<<<<><<<<<<<>>>>>>>><<<<<<<<<>>><<<<<<<><<<>>><<>>>>>>>><<<<<<<><<<<>>>>>>>><<<>>>>>>><>>><<>>>>>>>>><<<<<<<><<<<<<<>>>>>>>><<<<<<<<>>>>>><<>>>>>>>>><<<<<<<>><<>>>>>>><<<<<<<>>>>>>>>><<>>><<<<<<<<>>>>>>>><<<<<<<<>><<<<<<<>>>>>>>>><<<<<<<<<>>>>>><<<<<<<>>>><<<<<<>>>>>>><<>>><<<<<<<<>>>>>><<>>>>><<<<<<<<>><<<<<<><<<<<<<>><<<<>>>>>>>>><<<<>>>>>>>>><<<<<>>>>><<<<<<<<<>><<<<<<<<<><<<<<>>><<<<<<<<>>>><<<<<<<>>>>>>>><>>>>>>><<<<>>>>>>>>><<<<<<>><<<<<<>><<<>><<<<>>><<>>><<<<<<<<<>>><<<>><<>>><<<<<<<>>>>>><<>>>>>>><<<<<>>>>>>>>><<<<>>>>>><<>>>>>><<><<<<>>>>>>>>><<<>>>>>><<>>>>>>"

    Returns: "12345671012345698765432101234567854321012349876543210123456765432107654321021054321012345679876543210654321012345673210123987654321012345678954321012345678321098765432101234565432101234598765432101234321032101234561012345765432101234567898765432101234510123654321012387654321017654321012345643210123987654321012346543210123456789012345678432101234567432101234567893210143210123456876543210123498765432101287654321032101234567891015432101234567898765432101234567865432101234560123498765432101234567854321043210123654321012345672101287654321012342101321012345987654321012345671012348765432102101234567101234560123450123210123456789765432101238765432101234567897654321021012321012345678954321043210765432101201543210987654321012345321012345678921012345678943210187654321012345987654321021012345676543210123456432101234567821019876543210187654321012345678012345698765432101543210123456798765432101432101234565432101287654321021012345678765432101234987654321098765432101235432105432101234567897654321012345671019876543210123456798765432101234564321012345673210121012345678943210123456754321012345678954321012101234567543210654321076543210123454321012354321012387654321012348765432101234567854321032101234567807654321012345679876543210123456784321012345101234510127654321012345876543210123456732101234567898765432101234654321012345678901234568765432101234567892101234567012321018765432101234567012387654321012765432103210198765432101234567012345687654321012345678543210198765432101234567101765432101234569876543210132101234567876543210123456781012345698765432101234567895432101234567321012345765432101321012345678543210154321012345678101234560123456710123987654321012398765432101234543210123456789101234567890123452101234567832101234568765432107654321012398765432101234561012345610123101234210132101234567892101231013210123456754321017654321012349876543210123654321016543210120123987654321012654321016543210"

  70. "<<<<<<<<>>><<<<<<>>><<<<><<><<<<<<<>>>>>>>><<<<>>>>>>>>><<<>>>>>><>>>>>>>>><<<>>>>>>>>><<<<>>>>>>>><<<<<<<<>>>>>>><>>>>>>>><<<<>>>>>>>>><<<<<<>>>>>>>>><<<<>>>>>>><<<<<<<<>>><<<>>><<<<>>>>>><>>>>>>>>><<<<>>>>>>>>><<<<<<<<>>><<<<<>>>>>>>>><<<<<<<>>>>>>>><<<<<<<<<>>>>>>><>>><<<<<<<>>>>>>><>>>>>>>>><><<>>>><<<<<<<<>>>><<<<<<<<<><<<<<<<<<>><>>>>>><<<<<>>>>>>>><<<<<>><<>>>>>><<<<<<<<><<<<<>>>>>>>><<<<<<<<>>><<>>>>><<<<<<>>>>>>>><>>>>>>>><>>>>>>><<>>>><<<<<<>>>><<<<>>><<<<>>>>>>>><<<<<<<<<>><<<<<>>>>>>>>><<>>>>>>>><<<<><<<>>>>>>>>><<<<<>>><<<<<>>>>>><<<>>>>>><<<<<<<<<>>>>>><<<>>><<<<<<<>>>>>>><<<<<<>>><<<<<<<><<>>>>>>><<<>><<>>><<>><<<<><<<>>>>>>><<>><<<<<<<<<>>>>>>>><>><<<>>>>>><<<>>><<<<<>>>><<<><<<<<<<>>><<<<<<<>>>>>>>>><>><<<<>>>>>>>>><<<<<<<>>>>>>>>><<>>>>>><<<<>>>>>><<<<<>>>><>>>>><>>><>>>>>>>>><<<<<>>>>><<<<<<<>>>>>><>>>>>><<<<<>>><<<<<<<<<>>><<<<><<<<<<<<<>>>>>>>><<<<>>>>><<<<<<<>>>>>>>><><<<<<<>>>>>>><<>><<<<<<>>>><<<<<>>>>>><<>>><<<<<<<<>>>>>>><<<<<<>>>><<<<<>>>>><<<<<<<<>>>><<<<<<<<>>><<<<<<<>>>>>>><<<<><<<<<<><<<<>><<>>>>><<<<>>>>>>>><<<<<<<<>>><<><<<<<<>>>>><>>>>><<<<<<>>>>>><<<<<<>>><<>>>>><<>>>>>>>><<<<<<<<<>>>>>>>>><<<<<<<<>>>>>><<<<<<<>>><<<<<>><<<<<<<<>>>>>>><<<<<>>>><<<<><<<><<<<<>>>>>>><<<<<<<<>>>><<<<><<<<<>>>><<<<<<<<<><<<<<<>>>>><<<>>>>>>><<>><<<<>>>>>>>>><<<>>><<>>>>>>><<<<<<>>>>><>>>>>>>>><<<<<<<<<>>>>><<<>>>>>>>>><>>>>>>>>><<<<<>>>>><<<<<<<>>>>>><<<<<<>>>><<<<<>>>><<<<<<>>>>>>><<<<<<>>>><<<>>>>>><<<<<<<<<><<<<<<<<>>><<<<<<<<<>>>>>><<<<<<<>><<>><<<<<<<<<>>>>>>><<<<<<<<<>>><<<>>><<<<<<<<>><<<<>>>>>><<<<<<<>>>><<<<<<<<>><<<<<<<<<>>>>>>>><<<<><>>>>>><<<<<<<<<>>>><<<<<<<><<<>>>>>>>>><<<<<<<>>>>>><<<<>><<<<>>>><<<<<<<>>>>><<<<<<<<>>>>>>><<<<<<<>>>>>>>><>>><<<>>>><<<<<<>>>>>>>>><<<<<<>>><><<<>>><<<><>>>>>><<<<><<<<<<<<<>>><>>>>>><<<<<>>>>><<<<<<<>>><<<<<<<<>>>>>>>><<<>>><<<<<<<<<>>>>>>><>>><<<>>>>>>>><<<>>>>>>><<<<<<><>>>>>>>><<<<>>>>><<<>>>>><<<<<<<<<>>>>>"

    Returns: "123456789210123456210123401201234568765432101239876543210126543210987654321012987654321012387654321012345678654321087654321012398765432101234598765432101237654321012345678210123210123654321098765432101239876543210123456782101234987654321012345687654321012345678965432103210123456765432109876543210101432101234567832101234567890123456789106543210123487654321012345101654321012345678012348765432101234567821015432101234587654321087654321076543210143210123456321012342101238765432101234567891012349876543210187654321012340129876543210123452101234654321012654321012345678954321012321012345676543210123456210123456701765432101231013210121012340127654321012101234567897654321021012654321012321012345321012301234567210123456987654321021012398765432101234569876543210165432101236543210123453210543210321098765432101234543210123456754321065432101234521012345678921012340123456789765432101235432101234568765432101012345765432101210123456321012346543210132101234567865432101234563210123454321012345678321012345678210123456765432101234012345601234101543210123876543210123456782101201234564321054321012345654321012345621015432101876543210123456789876543210123456785432101234567210123451012345678654321012345321012340123012347654321012345678321012340123453210123456789012345643210127654321012101239876543210123210176543210123456432109876543210123456789432101298765432109876543210123454321012345675432101234563210123453210123457654321012345632101265432101234567890123456782101234567895432101234567101210123456789654321012345678921012321012345678101236543210123456732101234567810123456789765432101234065432101234567893210123456701298765432101234567543210123410123432101234567432101234567865432101234568765432103210124321012345987654321012345621010123210123065432101234012345678921065432101234543210123456721012345678765432101232101234567896543210321012876543210127654321012345608765432101235432101254321012345678943210"

  71. "<<<<<<<>>>>>>>>><<<<<<<<<>>>>>><<<<<<<<<>>>>>>>>><<<<<<<>>>>>>>><<<<<<<>>>>>>><<<<<<<<><<<<>>>>>><>>>>>>><<>>>>>>>><<>><<<<<<>>>>>>><>>>>>><<<>>>>>>><<<<<<<<>>>>>>>>><<<<<<<<>>>>>>>>><<>>>><<<<><<<<<<<<<>>>>>>>><<<<<<>>><<<>>>>><<><<<<<><>>>>><<<<<<>>>><<<<<<<<<>>>><<<<<<>>>>>><<<>>>><<<<<<<<><<<<<>>>>><<<<<<<>><<<<<<<>>>>>>><<<<<<>>>>>>>><<<<<><<<<<<<<>>>><<<<<>>>>>>><><<<<<<<>>>><<<<<<<>>>>>><<<<<<<<<>><<<<<<>>>>>><<<<<<<<>><<>>>>>>>><<<<<>><<<>>>><<<<>>>>>>><<<<<<<<>>>><<<<<><<><<<<<>>>>>>>>><<<<>>>>>>>>><<<<<<>>>>>>>><<<<>>>>>><<<<<<<><<<<<<<>>>>>><<<<<<<<<>>>>>><>><>>>>><>>>><<<<<<<<<><>>>>>>>>><>>>>>>><<<<<<<<>>>><<>>>>><<<<<<<>>>>>>>>><<<<<<><<>>>>><<<<<><<<<<<<<>>>>>>>><<<<<<<>>>>>><<>>>>><<<<<<<>>>>>><<>>>>>>><<<<<<<>>><<<<<><>>>><<<>>>>>>>>><<<<>><>>>>>>><<<<<<<>>>>>>><<<<<<<>>><<<>>>>>>><<<<<<<<<>>>>>>>><<<<<>>><<><<<<>>><<><<<>><<<<<<<<<>>><<<<<>>>>>>><<<<<<<<<>>>>>>>><>>><<<<<<<<<>>><<<<>><<<>>>>><<<<<<<<>>>>>>>><<<<<<<<>>>>><<<<<<<>>>>>>>><<<><<<<<<<>>>>>>>><<<<<<<<>>>>>>><<<<<<>>>>>><<<<<<<<<>>>>><<<<<>>>>>>><<<<<<<><<<<<<<<<>>>>><<<>>>>>>>><<<<<<<>><<><<<<<<>>>>>><<<><<<<<>>>>>><<<><<<<<<<>>>>>>>><<<<<<>>><<<<<>>>>><<<<<<>>>>>>><<>>>><<<>>>><<<<<>>>><<<<<<<<>>>>>>>>><<<<<<>>><<<<<<<<<>>>>>><<>>><<<>>>><<<<<<<<<>>>>>>>>><<<<<<>>>>>>>>><<<<>>>><>>>>>><<<<<<<>>><<<<<<<<>>><<<<>>>>>>><>>>>>>>><<<<<<>>>>>>>>><<<<<<<<<>><<<<<>><<<>>>>>>>>><<<<>>>>><<<<<<<>><<<<<>>>>>>>>><<<<<<>><<<<<<<>>>>>><<<<<<<<<>>>><<<<<>>>>><<<<<<><<<<>>>>><<<<<<<<>>>>>><<>>><<<>>>>><<<<<<>>>>><<>>>>><<<<><<<<<>>>><<<<>>>>>>>><<<<<<<<>><<<<<<<><<<>><<<<<<<>>>>><<<<>>>>>>><<<<>><<<<>>>><<<<<<<<<>><<<<<<<<<>>>>>>><<<<<>>>>>><<<<<<>><<>>>>>><<<<<<<<>>>><<>><<<<<<<<<>>>>>><<<<<<<<>>>><>>>>>><<<<<>>>>>>><<<<<><<>>>>><<<<<<<<>>>>>>>>><<<<>>>>>>>>><<<<<<<<<>>>>>>>><<<<<>>>>>><<<<<<<>>>>>>>>><<<<>>>>>><<<<>>><<<<>>>><><<<<<<<<<>>>>><<<<<>>>><<<<<<>>>>>>>>><<<<<<>>>>>>>>><<<>>>>>><<<<<<>>><<<>>>>>>>>"

    Returns: "12345679876543210123456789543210123456789876543210123456876543210123456765432101234567801236543210765432101876543210121012345765432106543210127654321012345679876543210123456798765432101432101234012345678976543210123456210125432101201234505432101234563210123456789321012345654321012432101234567801234543210123456710123456765432101234587654321012345012345678321012347654321010123456732101234567543210123456789101234565432101234567810187654321012345101243210123765432101234567832101234501201234987654321012398765432101234587654321012365432101234567012345675432101234567895432102105432104321012345678909876543210765432101234567832101543210123456987654321012345601543210123450123456787654321012345675432101543210123456754321017654321012345672101234504321012987654321012341076543210123456765432101234567210127654321012345678976543210123452101201234210120123101234567892101234765432101234567897654321032101234567892101234101254321012345678765432101234567843210123456876543210123012345687654321012345678654321012345654321012345678943210123476543210123456701234567894321012876543210123456710120123456543210123012346543210123012345687654321012345621012345432101234576543210143210124321012345321012345679876543210123456210123456789543210132101243210123456789876543210123459876543210123432106543210123456721012345678210123765432108765432101234598765432101234567891012345101298765432101235432101234567101234987654321012345610123456754321012345678932101234543210123456012354321012345678543210132101254321012345643210154321012340123453210123876543210123456781012345670123101234567432101237654321012341012343210123456789101234567896543210123465432101234561016543210123456783210121012345678954321012345678321065432101234765432101234501543210123456798765432101239876543210123456789765432101234654321012345698765432101236543210123421012343210101234567894321012345321012345987654321012345987654321012654321012345621012876543210"

  72. "<<<<<<<>>><<<<<<>><<<<<<>>>>>>>>><<<<>>>><<<<<<<<>>>>>>>><<<>>>><<<<<><<>>>>>>><>>>>>><>>>>>>>><>><<<<<>>>>>><<<<>>>>>><>>>>>><<<<>>>><<<<>>><<<<<<>>>><<<<<<<><<>>><<<<<<<<<>>>>>>><<<<<<>>>>>><<<<<<<<>>>>>>>><<<<<<<<>>>>>>>><<<><<<<<<<>>>>>>>>><<<<<<<<<>>>>>>>><<<<<<>>>>>><<<<<<<>>><<<<<<<<<>>>>>>>>><<<<<<<<<>>>><<<<<<<<>>>>>>><>>>>>><<<<<>>>><<<<<<<<>>>><<<<>><<<<<<<<>>>>>>><<<<>>>>>>>><>>>>>><<<<>>>><<<<<<>>>>>>>>><<<<><<<<<<<><<<<<<<<<>>>>>><<<<<<<<<>>>>>>>>><<<<<<>>>>>><<<<<<<<<>>>>>>>><>>><<>>>><<>>>>><<<<<>>>>>>><>><<<<<<<<<>>>>>>>>><<<<<<>>>>>>><<<<<>>>>>><<<<<>>><<<<<<<<>>>>>>>>><<<>>>>>>>>><<<>>>>><<<<<><<<<<<<>>>>>><<<<<<<<<>>>>>>><<<<<<<<>>>>>>>>><>>>>><<<<<>>>>>>>><<<<<>>>>>>>>><<<<<<<>>><<<<>>>>>>><<<<<<<>>>>>>>><>>>>><<<<<<<<>><<<<<<<<<>>>>><<<<<<>>>>>>>>><<<<<<<<<>>>><<>><>>><<<<<>>>>>><<<<<<<>><<<<>>>>><<<<>>>>>><<>>>>>>>>><<<<>>>>>>>><<<>><<<<<<<<><<<<>><<<<<<><<<<<<<<>><<<<<<<<<>><<<<<<<<>>>><<<>><<<>><<<<>>>><<<>>>><<<<<<<>>>>>>>>><<<<<<<<>>>>>>><>>>>>>>>><<<>>>><<<<<<<<<><<<<<<>><<<<<>>>>>>>>><<<<<<<<>>>>>>>><<<<<<<>>>><<<<<<<<>>>><<<<<>>>>>>>>><<<>>>>>>><<<<<>>><<<>>>>><><<<<<<<<<>>>>>>>>><<<<>>>><<>>>>>>><<<<<<<<<>>>><<<<<<<<<><<<<<<<<<>>><<<<>>>>>>>><<<<<<<>><<<<<<<<<>>>>>>>>><>>><<<<<<<>>>>><<<<<<>>>>><<<<<<<>>>>>>>><<>>>>><<<<<>>>>><<<<<<<<>><<<<<<>>>>>>>>><<<<<<>>>>>><<<<<<<<>>>><><>>>>>>>><<<<<<<<<>>>>>>>><<<<<<<<<>>>>><<<<<<<>>>>>><<<>><<>>>>>><<<<>>>>><<<<<<<<>>>>><<<<<<>>>>>><<<<>>>><<<<>>><<<>>>><<<<<<<<>>>>>><<<<<>>><<<<<<<>>>>>><<<<<<<>><<>>>>>>><><<<<>>>>>>><<<>>>>>>>><<><<<<><<<<>><<<<<<<>>>>>>><<<<>>>><<<>>>>>>>><<<<<<<<<>>>>>>>><<>>><<<<<>><<<<<<<>>>>>>><<<<<>>>>>>>>><<<>>><<<<>>>>>><<<<<<<<<>>>>>><<<<<>><<<>>>>>>>>><<>>>><<<<<>>>>>><<<<<<<<>>><<<<<<<<<>>>>>>>><<<<<<<>><<<>>>>>>>>><>>><<<<<<<<>>>>><<<<<<<>>>>>>>><<<<<<<<<>>>>>>><<<<<<<<<>>>>>>>>><<<<<<<>>>>>>>>><<<<>>>>>>>>><<<<<>>><<<<<<<>><<>>>>>><<<<<<<>>>><<<<>>>>>>><>>><<>>><<<<<<>>>>>>"

    Returns: "123456782101234561012345987654321012343210123456787654321012432101234501765432106543210876543210210123465432101236543210654321012343210123421012345632101234567013210123456789654321012345654321012345678765432101234567876543210123012345698765432101234567897654321012345654321012345672101234567898765432101234567893210123456786543210654321012345321012345678321012341012345678654321012387654321065432101234321012345987654321012340123456701234567895432101234567898765432101234565432101234567897654321032101432101543210123476543210210123456789876543210123457654321012346543210123452101234567987654321012987654321012543210123450123456754321012345678965432101234567987654321054321012348765432101234987654321012345672101237654321012345687654321054321012345678101234567894321012345987654321012345678932101210321012346543210123456710123543210123654321019876543210123876543210123101234567801234101234560123456781012345678910123456783210123101231012343210124321012345698765432101234567865432109876543210124321012345678901234561012349876543210123456787654321012345673210123456783210123498765432101276543210123452101254321010123456789876543210123432101765432101234567893210123456789012345678921012387654321012345671012345678987654321032101234567432101234564321012345687654321015432101234543210123456781012345987654321012345654321012345678321010876543210123456789765432101234567894321012345675432101231016543210123543210123456784321012345654321012343210123421012432101234567854321012345210123456754321012345671017654321010123765432101287654321012012340123410123456765432101234321012876543210123456789765432101321012345101234567654321012349876543210123210123654321012345678954321012345101298765432101432101234654321012345678210123456789765432101234567101298765432103210123456784321012345687654321012345678965432101234567898765432101234569876543210123987654321012345210123456710165432101234567321012376543210321013210123456543210"

  73. "<>>>>"

    Returns: "143210"

  74. "!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!>>>>>>>>>>"

    Returns: ""

  75. "<>>>"

    Returns: "13210"

  76. "<<<><<<<<<<"

    Returns: "123401234567"

  77. ">>>>>>>>!<<<<<<<<<"

    Returns: "9876543210123456789"

  78. "<<<>"

    Returns: "12340"

  79. ">>>>>>>>><<<<<<<<>><<<"

    Returns: "98765432101234567893210123"

  80. ">!<<<<<<<<<"

    Returns: "210123456789"

  81. "<<<<>"

    Returns: "123450"

  82. "!>"

    Returns: "120"

  83. "!!!!!!"

    Returns: "1010101"

  84. "<>>>!<>>>"

    Returns: "1321013210"

  85. ">"

    Returns: "12310"

  86. "<<>>>>>>>>>"

    Returns: "129876543210"

  87. "<><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><><>>>>>>>>>>>"

    Returns: ""

  88. "<==<<=>"

    Returns: "12223101220"

  89. "<<<<<<>"

    Returns: "12345670"

  90. ">>!<<<<<<<<<"

    Returns: "3210123456789"

  91. "=====<<<<<<<<<>>=========>>>>>>><

    Returns: ""


This problem statement is the exclusive and proprietary property of TopCoder, Inc. Any unauthorized use or reproduction of this information without the prior written consent of TopCoder, Inc. is strictly prohibited. (c)2024, TopCoder, Inc. All rights reserved.
This problem was used for: