program main implicit none integer a,b a=1 b=2 if(a .EQ. b)then print*,"eq" else write(*,*),"neq" end if end