# coding:utf-8 import math D, P = map(int, input().split()) P /= 100 total = D + D * P ans = math.floor(total) print(ans)