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