#include int main(void) { int cost,answer,tax; scanf("%d %d",&cost,&tax); tax += 100; answer = cost * tax / 100; printf("%d",answer); }