12
while (a>3) a = a-b;
123456
int count = 0; //Make a variable to keep track of the number of times the operation was performed. while (a>3) { a = a-b; count++; //Increment count each time the operation was performed. }