input "Please enter two integers, separated by a comma: " x, y if x < y then print x, " is less than ", y : fi if x = y then print x, " is equal to ", y : fi if x > y then print x, " is greater than ", y : fi