pascalabcnet/_ParsePABC1/b.pas
2015-06-28 10:58:24 +03:00

15 lines
152 B
ObjectPascal

begin
while True do
begin
x := 3;
end;
if x>0 then
x := 1
else
begin
x := 2;
write(1);
end;
if x>1 then
x := y
end.