import math

if __name__ == "__main__":
	d, p = map(int, input().split())
	
	result = d + d*p/100
	
	print(math.floor(result))