Result

WA

Code [DL]

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

stdin

00001100
00101101
10111110
01011011
00110100
00001010
10001010
11000101
01010111
11101010
10011011
00100100
00011010
10101011
00110111
10011111
00000001
01101001
00011111
01111000
10100110
01111101
11101111
10011001
00010101
01101000
00001111
11101100
10111100
01111110
00011100
01111010
11110011
01010001
00000111
01100011
11010010
00000000
10001000
11010010
01001110
00000011
00100110
11111101
11110110
00000110
01000010
00000101
11100111
01001110

stdout

stderr

Error: near "RECURSIVE": syntax error

strace