#include #include "math.h" #include using namespace std; int main() { double v; int t; cin >> v >> t; cout << floor(v*t) << endl; return 0; }