Best illustrated with examples.
Do I = 1, 5 Do I = 1, 5 Do J = 1, 5 Write (*,*) A(I,J) Write (*,*) (A(I,J), J = 1,5) End Do End Do End DoThe right hand side is an IMPLIED Do loop.
Every Write statement uses 1 line (similarly READ).
So, left code writes 25 lines (1 number per line). Right side code writes 5 lines (1 row per line!). More in Pass 2!