fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int n,k;
  6. float x;
  7. cin >> n;
  8. cin >> k;
  9. x = n/((100-k)/100);
  10. cout << x;
  11. return 0;
  12. }
Runtime error #stdin #stdout 0s 15240KB
stdin
4 20
stdout
Standard output is empty