program Program01; var a : array [1..3] of byte = (2,4,7); b : byte; begin for b in a do WriteLn(b); end.