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