INPUT "Enter a number: " : n CASE n OF WHEN 1 PRINT "One" WHEN 2, 3 PRINT "Two or three" WHEN < 10 PRINT "A smallish number" OTHERWISE PRINT "A big number" ENDCASE