program main implicit none integer*8::N,z(50) read *,N read *,z(1:N) print '(i0,"/",i0)', z(N),z(1) end program main