#include using namespace std; int main(){ double s, k; cin >> s >> k; cout << setprecision(15) << k * s / 100 << endl; }