First of all, a happy new year, gentle reader.
Here's a tiny snippet of code that shows how to skip a line in a formatted data file in Fortran:
CHARACTER :: dummyIt might save you some grunting...
OPEN(UNIT=fileunit, FILE=filename)
! bogus read call to skip the first input line
READ(unit=fileunit, FMT='(A1)') dummy

