I'm trying to show that we can pick a pair of integers $0 ≤ a, b ≤ 9 $ such that $3a + 2b$ gives us a residue modulo 19, and we can find at least one (a, b) for each residue modulo 19
So far I've found that it is possible for $3a + 2b ≤ 18$ except for the case where $3a + 2b = 1$ so instead there is 3(2) + 2(7) = 20 ≡ 1 (mod 19)
I don't really see any "pattern" here so I'm wondering if there's a clean way to show that this is possible other than listing out a possible combination for each residue class?
For the numbers other than 1, you can check whether the sum should be even or odd. If k is even, just choose a=0 and b=k/2. If it's odd, choose a=1, and b=(k-3)/2.