rem COND2
rem This program allows you to enter two numbers to test conditions.
rem Any expression between the IF and THEN which is greater
rem than 0 is evaluated as true.  That means that the statements
rem after the THEN is executed.

        input "a?",a
        input "b?",b
        print a < b
        if a < b then print "A is less than B"
        print a <= b
        if a <= b then print "A is less than or equal to B"
        print a > b
        if a > b then print "A is greater than B"
        print a >= b
        if a >= b then print "A is greater than or equal to B"
        print a < b
        if a < b then print "A is less than B"
        print a = b
        if a = b then print "A is equal to B"
        end
