RosettaCodeData/Task/Integer-comparison/Zkl/integer-comparison.zkl
2023-07-01 13:44:08 -04:00

2 lines
131 B
Text

var x,y; x,y=ask("Two ints: ").split(" ").apply("toInt")
(if (x==y) "equal" else if (x<y) "less" else if(x>y) "greater").println()