RosettaCodeData/Task/Integer-comparison/Delphi/integer-comparison.delphi

13 lines
242 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
program IntegerCompare;
{$APPTYPE CONSOLE}
var
a, b: Integer;
begin
2016-12-05 22:15:40 +01:00
Readln(a, b);
if a < b then Writeln(a, ' is less than ', b);
if a = b then Writeln(a, ' is equal to ', b);
if a > b then Writeln(a, ' is greater than ', b);
2013-04-10 21:29:02 -07:00
end.