fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. cout << 23 + 6 << endl;
  6. cout << 78 + 56 << endl;
  7. cout << 65 - 56 << endl;
  8. cout << 23 - 21 << endl;
  9. cout << 5 * 6 << endl;
  10. cout << 75 * 23 << endl;
  11. cout << 72 / 9 << endl;
  12. cout << 400 / 20 << endl;
  13. return 0;
  14. }
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
29
134
9
2
30
1725
8
20