Skip to content
# Start coding here...

grid=[]

for i in range(0,10):
    for j in range(0,10):
        grid.append(0)
        
print(grid)