#include using namespace std; double v, t; void input() { cin >> v >> t; } void solve() { cout << (int)(v * t + 1e-5) << endl; } int main() { ios::sync_with_stdio(false); cin.tie(0); input(); solve(); }