#include int main(void) { double v, d = 0; int t; int i; scanf("%lf%d", &v, &t); for(i = 0;i < t;i++){ d += v; } printf("%.0f\n", d); return 0; }