function out = ez_iteration(in)

A = in(1);
B = in(2);

if A == []
    A = 1; % initial    
end

out = A+B;

end


