Advertisement
Josif_tepe

Untitled

Mar 8th, 2024
477
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. #include <string>
  4. #include <map>
  5. #include <algorithm>
  6. using namespace std;
  7.  
  8.    
  9. int main()
  10. {
  11.     pair<int, string> p;
  12.     p = make_pair(10, "aleksa");
  13.    
  14.     cout << p.first << " " << p.second << endl;
  15.     return 0;
  16. }
  17.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement