D, P = map(int,input().split()) # V = int(D * (1 + 0.01 * P)) とすると誤差が発生してしまう V = D * (100 + P) // 100 print(V)