#include using namespace std; int main() { double s, t; cin >> s >> t; double ans = t * s; printf("%.0f\n", ans); return 0; }