Given two positive integer inputs a and b where a > b, write an algorithm to find the quotient and remainder of a ÷ b. You are to do the following: You cannot use the division operation nor modulo operation. For example, you cannot just use a/b or a %b. You have to use a loop. Your first output should be the quotient of a÷b. Your second output should be the remainder of a÷b. (according to Coral)