fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5.  
  6. vector<int> a;
  7.  
  8. cout << 5 << endl;
  9. cout << 5 << endl;
  10. cout << 5 << endl;
  11. cout << 5 << endl;
  12. cout << 5 << endl;
  13.  
  14. a[10] = 5;
  15.  
  16. cout << 6 << endl;
  17. cout << 6 << endl;
  18. return 0;
  19. }
  20.  
Runtime error #stdin #stdout 0s 16064KB
stdin
Standard input is empty
stdout
5
5
5
5
5