What is the output of this program?

dimensions = [
[12, 3, 5],
[45, 7, 8],
[1, 2, 3]
]

for row in dimensions:
for num in row:
print num