fork download
  1. for i in range(5):
  2. for j in range(5):
  3. if i == 2 and (j == 2):
  4. print("0", end="")
  5. else:
  6. print("1", end="")
  7. print()
  8.  
Success #stdin #stdout 0.09s 14016KB
stdin
Standard input is empty
stdout
11111
11111
11011
11111
11111