1 2 3 4 5 6 7 8 9 10 11
program conditional int::a int::b a=5 b=7 if a>=b then print*,a," is greater than or equal to ",b else print*,a," is less than ",b end if end program conditional