# coding: utf-8 money,tax = (int(x) for x in input().strip().split()) tax /= 100 tax_money = money * tax ans = int(money + tax_money) print(ans)