<.GE. (>=) Example Program>

Program ge_example
  Integer x
  Do x=1,10
    If (x**2+28>=x*11) Then
      Print *,'True at',x
    End If
  End Do
End Program

■ Execution Results

 True at 1
 True at 2
 True at 3
 True at 4
 True at 7
 True at 8
 True at 9
 True at 10