input "Please enter one integer: ", x input "and a second integer: ", y if x < y then print x; " is less than "; y if x = y then print x; " is equal to "; y if x > y then print x; " is greater than "; y