Concept:Use modular arithmetic. Simplify large numbers by reducing the base modulo 18 first.Explanation:17mod18=17 and 17≡−1(mod18).So 1725≡(−1)25=−1≡17(mod18).19mod18=1. So 1925≡125=1(mod18).Add the remainders: 17+1=18.18mod18=0. Therefore the remainder is 0.Answer:0 (Option A)