The question asks how many the divisions required to find $\gcd(34,55)$. I did it using the Euclidean Algorithm with the following result.
$$55=1 \cdot 34+21$$ $$34=1 \cdot 21+13$$ $$21=1 \cdot 13+8$$ $$13=1 \cdot 8+5$$ $$8=1 \cdot 5+3$$ $$5=1 \cdot 3+2$$ $$3=1 \cdot 2+1$$ $$2=2 \cdot 1+0$$ $$\gcd(34,55)=1$$
I wrote the answer $8$ since there are only $8$ steps needed, but the answer shown is $9$ divisions is required. I wonder if is the answer wrong or am I wrong?