What does the following function print for n1=12 and n2=15?
a. def div(n1, n2):
b. if n1 % n2 == 0:
c. return n2 else:
d. return div(n2,n1%n2)
e. print(div(12,15))