#include using namespace std; typedef long long ll; int main(){ double v, t, ans; cin >> v >> t; ans = v * t; ans = floor(ans+1e-6); printf("%.0f\n", ans); return 0; }