#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: linmiaoling Language: C++ Result: Accepted Time:9 ms Memory:2072 kb ****************************************************************/