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