#include #include #include int main(void) { int price,total,tax; scanf("%d %f",&price,&tax); total=(price * (tax+100) / 100); printf("%d\n",total); }