#!/usr/bin/env python3 # -*- coding: utf-8-*- if __name__ == '__main__': d, p = map(int, input().split(" ")) a = d * (100+p) // 100 print(a)