from math import floor a,b = map(int,input().split()) if b : pl = 100/b print(floor(a + a/pl)) else : print(a)