fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main()
  5. {
  6. int x = 0;
  7. for(int i = 0; i < 10; ++i)
  8. {
  9. --x;
  10. }
  11. cout << x;
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5548KB
stdin
Standard input is empty
stdout
-10