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