What will be the output of the following prints statements? n1 = 10 n2 = 5 n3 = 3 print(n1 / n2) print(n1 // n3) print(n1 % n3)