def main(): D, P = map(int, input().split()) ans = D + D * (P / 100) print(int(ans)) main()