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