#include <iostream>
#include <tuple>
using namespace std;
int main()
{
tuple <char, int, float, string> t('z', 89, 3.14, "c++");
char ch;
int i;
float f;
string s;
tie(ch, i, f, s) = t;
cout << ch << endl;
cout << i << endl;
cout << f << endl;
cout << s << endl;
return 0;
}
/*
run:
z
89
3.14
c++
*/