RosettaCodeData/Task/Integer-comparison/ALGOL-W/integer-comparison.alg
2023-07-01 13:44:08 -04:00

14 lines
289 B
Text

begin
integer a, b;
write( "first number: " );
read( a );
write( "second number: " );
read( b );
if a < b then write( a, " is less than ", b );
if a = b then write( a, " is equal to ", b );
if a > b then write( a, " is greater than ", b );
end.