fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. cout <<15 + 6<< endl;
  6. cout <<4 + 5<< endl;
  7. cout <<20-2<< endl;
  8. cout <<12-4<< endl;
  9. cout <<3*8<< endl;
  10. cout<<9*7<< endl;
  11. cout<<18/6<< endl;
  12. cout <<32/4<< endl;
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5312KB
stdin
Standard input is empty
stdout
21
9
18
8
24
63
3
8