import math if __name__ == '__main__': [d, p] = input().split() d = int(d) p = int(p) print(math.floor(d + d * (p / 100.0)))