Loop Code
for( int i = 0; i < n; i++ )
{
x = x + 1;
v = x / z;
w = x + v;
}
n iterations x 5 steps + 2
= 5n+2 steps
(These count as steps too.)