fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int s;
  6. int t;
  7. int v;
  8. cin>>s;
  9. cin>>t;
  10. v=s*t;
  11.  
  12. if(v>150)
  13. {cout<<"duża prędkość";}
  14. else
  15. {cout<<"mała prędkość";}
  16. cout<<v;
  17.  
  18. return 0;
  19.  
  20. }
Success #stdin #stdout 0s 4308KB
stdin
Standard input is empty
stdout
duża prędkość101353088