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