fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. cout << 34 + 4 << endl;
  6. cout << 34 + 6 << endl;
  7. cout << 7 - 5 << endl;
  8. cout << 8 - 4 << endl;
  9. cout<< 6 * 8 << endl;
  10. cout <<8*8<< endl;
  11. cout << 8/4<< endl;
  12. cout << 9/3<< endl;
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5316KB
stdin
Standard input is empty
stdout
38
40
2
4
48
64
2
3