1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
text = []
for i in range(100):
    text.append(["0"]*100)

for i in range(100):
    text[i][0] = "1"
for i in range(0, 100, 2):
    for j in range(100):
        text[i][j] = "1"
for i in range(1, 100, 1):
    text[i][98] = "0"
text[1][99] = text[3][99] = "1"
text[0][0] = text[1][1] = "1"
text[0][1] = text[1][0] = "0"

s = ""
for i in range(100):
    for j in range(100):
        s += text[i][j]
    s+="\n"

print(s)