#include #include using namespace std; int main() { pair< int, double > p1( 5, 7.5 ); pair< int, double > p2 = make_pair( 8, 9.5 ); cout << p1.first << ' ' << p1.second << endl; return 0; }