fork(3) download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int x, y, z;
  5.  
  6. int main() {
  7. x += 3;
  8. assert(x == 3);
  9. y -= 5;
  10. assert(y == -5);
  11. z += 0;
  12. assert(z == 0);
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5304KB
stdin
Standard input is empty
stdout
Standard output is empty