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