#include<bits/stdc++.h> 
using namespace std; 
int main(){ 
    double n,x,y;
    cin>>n>>x>>y;
    cout<<(int)((n * 1000 + y * 10) / (x * 10 + y * 10));
} 
/**************************************************************
	Problem: 1331
	User: yangjunwen
	Language: C++
	Result: Accepted
	Time:7 ms
	Memory:2072 kb
****************************************************************/