import math def main(): price, tax = list(map(int, input().split())) tax = (tax / 100) + 1 print(math.floor(price * tax)) main()