import sys
input = sys.stdin.buffer.readline

D, p = map(int, input().split())

print( int(D * p / 100.0 + D ) )