RosettaCodeData/Task/Integer-comparison/Elena/integer-comparison.elena
2026-02-01 16:33:20 -08:00

16 lines
319 B
Text

import extensions;
public Program()
{
var a := Console.readLine().toInt();
var b := Console.readLine().toInt();
if (a < b)
{ Console.printLine(a," is less than ",b) };
if (a == b)
{ Console.printLine(a," equals ",b) };
if (a > b)
{ Console.printLine(a," is greater than ",b) }
}