#include <stdio.h>
double trade_price (double p, int n) {
  return p * n;
}
main ( ) {
  double price;
  int number;
  for (; 2 == scanf ("%lf%i", &price, &number);)
    printf ("The total price of the trade is %f.\n",
             trade_price (price, number));
}
