from sys import stdin readline = stdin.readline price, vat = map(int, readline().split()) print(price * (100 + vat) // 100)