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