Write a Python code to take three integer inputs a, b, and c. Initialize a variable result to 0. Use a while loop to check if a is less than b. If it is, multiply a by 2 and assign the result to the variable result. Print the value of result. If the value of result is greater than c, break out of the loop. Finally, assign the value 4 to the variable a. What will be the output of the code?