#include using namespace std; int main(void) { double v, t; cin >> v >> t; cout << (int)(v * t + 1e-10) << endl; return 0; }