#include <iostream>
int main() {
auto record = std::make_tuple("One Million", "Digits of PI", 3.14159, 'U');
std::string s1, s2 ; float pi ; char ch;
std::tie(s1, s2, pi, ch) = record;
std::cout << s1 << ' ' << s2 << ' ' << pi << ' ' << ch << std::endl;
}
/*
run:
One Million Digits of PI 3.14159 U
*/