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