Python, 17 bytes
lambda a,b:a+-a%b
Since this doesn't use division, it works for both Python 2 and 3. Note that we can't cut out the + sign because a-a%b does a-(a%b), whereas we want to do(-a)%b and add that to a
xnor
- 149.6k
- 26
- 287
- 676