mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 01:08:09 +02:00
11 lines
107 B
ObjectPascal
11 lines
107 B
ObjectPascal
var
|
|
a,b : longint;
|
|
|
|
begin
|
|
a:=1;
|
|
b:=2;
|
|
if byte(a>b)=byte(a<b) then
|
|
writeln('Ohhhh');
|
|
end.
|
|
|