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