#include<iostream>
#include<tuple>
using namespace std;
int main()
{
tuple< int ,char,float>temp;
temp = make_tuple( 10, 'a', 5.5);
cout<<"the initial values of tuples are:";
cout<<get<0>(temp) << " " <<get<1>(temp)<,endl;
}
#error This file requires compiler and library support for the \
while i compile my code it shows this.