#include using namespace std; int main(){ string v; int t; cin>>v>>t; v=v.substr(2,4); int n=stoi(v); cout << n*t/10000 << endl; }