https://www.acmicpc.net/problem/1075
n=input() f=input() n=int(n) f=int(f) a=n%100 b=n-a c=b%f if c==0: print("00") else: print("%02d" % ((f-c)%100))