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