#include using namespace std; int main(void){ // Your code here! double v, t; cin >> v >> t; int d = int(v * t + 0.000001); cout << d << endl; return 0; }