fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. double a,b,c;
  6. cin>>a>>b>>c;
  7. double n = a *c;
  8. double e = b*c;
  9. double f= n-e;
  10. double g = ceil(f/b);
  11. cout<<g;
  12.  
  13. }
Success #stdin #stdout 0s 5316KB
stdin
4 1 1
stdout
3