If the while loop below is executed using initial values for iA and iB of 67 and 82 respectively (iA and iB are both integer variables), answer questions based on the loop.
while (iB > 3)
{
iB=iB/2;
if(iB==10)
cout << "saddle up!";
iA=iA+3;
}
//please explain