Select all matrices `M` for which the following code prints `True` to the console.
```
# Look at the options for the value of M
n = len(M)
flag = True
for i in range(n):
for j in range(n):
if (i != j) and (M[i][j] != M[j][i]):
flag = False
print(flag)
```