fork download
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. int main(){
  5. double n, p, s, n1;
  6. cin>> n >> p >> s;
  7. n1 = (n +(n * p) / 100);
  8. cout<< s / n1;
  9. return 0;
  10. }
Success #stdin #stdout 0s 16064KB
stdin
16 3 16
stdout
0.970874