运行以下程序,输出为()
a = [[1,2,3],[4,5,6],[7,8,9]] s = 0 for i in range(3): for j in range(3): if i == j: s += a[i][j] print(s)
15
14
16
13