Result

WA

Code [DL]

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

stdin

00111100
00000110
00001001
11100110
11100010
00100100
00111111
00010000
00011100
01001110
01101000
00110111
10110100
00000001
01111000
10000010
11011110
00000001
11111101
00001110
01011111
11000010
00101101
01000010
10001000
11010010
11010111
00000000
01001101
11010010
10101011
00001010
10010000
11100111
10011001
01011011
01011110
00100101
11011010
10001100
00000011
00010101
10100000
00011001
01101001
00001111
00111001
11000011
10111110
10010101

stdout

stderr

Error: near "SELECT": syntax error

strace