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