#!/usr/bin/env python indat = [float(x) for x in input().split()] ans = indat[0] * (1.0 + 0.01 * indat[1]) print(int(ans))