Q8Single correct4 Marks3 Sep 2023Which of the following code blocks prints the product of the digits for the given number?A``` n = int(input()) total = 1 while(n > 0): total = total * (n % 10) n = n // 10 print(total) ```B``` n = int(input()) total = 1 while(n > 0): total = total * (n % 10) n = n // 10 print(total) ```C``` n = int(input()) total = 1 while(n > 0): total = total * (n // 10) n = n % 10 print(total) ```D``` n = int(input()) total = 1 while(n > 0): total = total * (n // 10) n = n % 10 print(total) ```