      program program11
C
C  this program illustrates IF...THEN... control structures
C
C  CWJ SDSU 2/3/2005
C

      implicit none

      integer i,j

      print*,' Enter two integers '
      read*,i,j
      if(i.lt.j)then
        print*,i,' is less than ',j
      else
       write(*,*)j,' is less than ',i
      endif

      end
               


