Input Statement 
            READ*, list of variables separated by commas                       
Note the followings
  •   each reading statement starts reading from a new line
  •   reading continues from the next line if the input data is not enough
  •   data values in a line should be separated by commas or blanks
  •   data values must agree in types with the variables they are read into
 
       -   except that integer values can be read into real variables
       -   but real values can not read into integer variables