<!-- hamlet
<!-- copytar
examples/                                                                                              755    1107     770            0  5477466227   5730                                                                                                                                                                                                                                                                                                                                                                      examples/sample2.f                                                                                     644    1107     770          457  5477466227   7515                                                                                                                                                                                                                                                                                                                                                                      C This program reads two numbers and writes out their quotient.

C Created:  Joe Zachary, September 17, 1992
C Modified:

      PROGRAM SAMPLE2

      PRINT *, 'Please enter two numbers, separated by commas'
      READ *, X, Y
      Z = X / Y
      PRINT *, 'The quotient is ', Z
      STOP

      END

                                                                                                                                                                                                                 examples/sample3.f                                                                                     644    1107     770          450  5477466227   7507                                                                                                                                                                                                                                                                                                                                                                      C This program reads two numbers and writes out their average.

C Created:  Joe Zachary, September 17, 1992
  Modified: 

      PROGARM SAMPLE3

      PRINT *, 'Please enter two numbers, separted by commas'
      READ *, X, Y
      Z = (X + Y) / 3.0
      PRINT *, 'The average is ', Z

     END
  END

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 