Uses crt; const n=5; var i:integer; a:array[1..n] of integer; begin for i:=1 to n do read(a[i]); for i:=n downto 1 do write(a[i],' '); end.