#!/usr/bin/python3

import math

d,p = map(int, input().split())

price = d + d * (p / 100)
print(math.floor(price))