#include using namespace std; int main(){ int N, P; cin >> N >> P; cout << N * (100 - P) / 100 << '\n'; }