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