# coding: UTF-8 provided = input().split(' ') D = int(provided[0]) P = int(provided[1]) answer = int(D * (100 + P) / 100) print(answer)