fork download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. pair<int,int> fun(){
  5. return {1,2};
  6. }
  7.  
  8.  
  9. int main() {
  10.  
  11. auto [a,b] = fun();
  12. cout << a << b << endl;
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
12