5 lines
56 B
ObjectPascal
5 lines
56 B
ObjectPascal
begin
|
|
var x := 56;
|
|
x := not x + 1;
|
|
Print(x);
|
|
end.
|