fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. vector<int>v={0,1,1};
  6. for(int i=0;i<v.size(); i++){
  7. //code here std::cout cout
  8. cout<<v[i]<<endl;
  9. }
  10.  
  11. return 0;
  12. }
Success #stdin #stdout 0.01s 5284KB
stdin
Standard input is empty
stdout
0
1
1