fork(2) download
  1. #include <iostream>
  2. #include <vector>
  3. #include <cmath>
  4. using namespace std;
  5.  
  6. int main() {
  7. int n, m;
  8. cin >> n >> m;
  9. n = max(n, m);
  10. vector<vector<int>> cedula(n, std::vector<int>(n));
  11. }
  12.  
  13. //http://pt.stackoverflow.com/q/183755/101
Success #stdin #stdout 0s 15240KB
stdin
3 3
stdout
Standard output is empty