Result

WA

Code [DL]

WITH RECURSIVE
  cnt(x) AS (VALUES(1) UNION ALL SELECT x+1 FROM cnt WHERE x<50)
INSERT INTO o VALUES (SELECT x FROM cnt)

stdin

11001111
01000101
10010010
10111110
01000011
10111011
00001010
01000010
01001110
00100100
00110111
00000011
01101001
01111000
11100111
11111101
01010110
00010101
00001111
00100111
10001000
10010111
00011100
10011101
00110100
01010001
00000001
00010110
10011001
11100000
00100000
11011011
00100110
00000110
01101011
01011011
11001001
11010010
01101100
10101011
11111101
11101110
00100100
00101000
10000001
01011111
00000000
10110110
10011011
00101101

stdout

stderr

Error: near "SELECT": syntax error

strace