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