#include <iostream>
using namespace std;

int main() {
	std::string a("hui");
	int b(42);
	
	auto p = std::make_pair(a, b);
	
	return 0;
}