Pagini recente » Cod sursa (job #3122319) | oji_sim | Cod sursa (job #3272666) | Cod sursa (job #125036)
Cod sursa(job #125036)
program magic_tree;
var t, i : longint;
p,b : longint;
fin,fout:text;
begin
assign(fin,'fructe.in'); reset(fin);
assign(fout,'fructe.out'); rewrite(fout);
readln(fin, t);
for i := 1 to t do
begin
readln(fin,p,b);
while p+b > 1 do
begin
if (p>0) and (b>0) then
begin
p:=p-1;
end
else if (p>0) and (b=0) then
begin
p:=p-1;
end
else if (b>0) and (p=0) then
begin
b:=b-2;
p:=p+1;
end;
end;
if p = 1 then
writeln (fout,0)
else writeln(fout,1);
end;
close(fout);
close(fin);
end.