#include using namespace std; int main() { double v; int t; cin >> v >> t; cout << (int)((v+0.00001)*t) << endl; return 0; }