fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6.  
  7. int p=100;
  8. int q=150;
  9. int r=200;
  10.  
  11. int SI=(p*q*r)/100;
  12.  
  13.  
  14. cout<<SI;
  15.  
  16.  
  17. return 0;
  18. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
30000