require 'bigdecimal'

a = gets.chomp.split(" ")
b = 1.0 + a[1].to_i / 100.0
c = b.round(2)
d = c.to_s

p (BigDecimal(a[0]) * BigDecimal(d)).floor