#include int main(){ int price = 0; scanf("%d",&price); double tax = 0; scanf("%lf",&tax); tax = price * (tax * 0.01); printf("%lf",price + tax); }