(define (amount D P)
  (floor (* D (+ 1 (/ P 100)))))

(define (main args)
  (let* ((D (read))
         (P (read)))
    (print (amount D P))) 0)