#include <iostream>
#include <tuple>
std::tuple<int, float, std::string> f() {
return {12, 3.14, "c++"};
}
int main() {
auto [value1, value2, value3] = f();
std::cout << value1 << ", " << value2 << ", " << value3;
return 0;
}
/*
run:
12, 3.14, c++
*/