# -*- coding: utf-8 -*- __author__ = 'yuuki' #No.56 消費税 N = map(int,raw_input().split()) price = N[0] + ((N[0] * N[1]) / 100) print price