fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. vector<pair<int,int>>v={{9,5},{5,3},{1,0}};
  7. v.push_back(make_pair(9,3));
  8.  
  9. for(auto i:v)
  10. {
  11. cout<<i.first<<i.second<<endl;
  12. }
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
95
53
10
93