17 lines
319 B
Plaintext
17 lines
319 B
Plaintext
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) }
|
|
}
|