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

9 lines
226 B
Text

proc nonrec main() void:
int a, b;
write("Please enter two integers: ");
read(a, b);
if a<b then writeln(a, " < ", b)
elif a=b then writeln(a, " = ", b)
elif a>b then writeln(a, " > ", b)
fi
corp