import sys sys.setrecursionlimit(10 ** 6) def main(): d, p = map(int, input().split()) print(int(d * p / 100 + d)) main()