fork download
  1. #include <iostream>
  2. #include <vector>
  3.  
  4.  
  5. int main() {
  6. std::vector<std::vector<int>> vec;
  7. vec.push_back({10,20,30});
  8. return 0;
  9. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
Standard output is empty