How many times will the print statement execute?for i in range(1, 3):for j in range(8, 12, 2):print('{:d}. {:d}'.format(i, j))a. 4b. 6c. 9d. 36