In the blank spaces below, write the output produced by each…

In the blank spaces below, write the output produced by each call to the following function. void mystery(int n) { int x = 0; int y = 0; while (n > 0 && n % 2 == 0) { x++; y = y * 10 + n % 10; n = n / 10; } print(“%d %d”, x, y); } mystery(5); [l1] mystery(28); [l2] mystery(346); [l3] mystery(265408); [l4]