Source Code
t = int(input())
for i in range (t):
	x,y = map(int,input().split())
	value = x+y - (x % y)
	if value % y == 0:
		print value
	else:
	print(y)
Copy
AZOZ with an O (EZ Version) acaard
Python 3
0 ms
0 KB
Compilation Error