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