#include <bits/stdc++.h>
using namespace std;
 
int main()
{
    double v;
    int t;
    cin >> v >> t;

    cout << int((v+0.0000000001) * t) << endl;

    return 0;
}