#include <iostream>
#include <vector>
int main()
{
int t, n, a, b;
std::cin >> t;
std::vector<std::vector<int>> tests;
for (int i = 0; i < t; i++)
{
std::cin >> n >> a >> b;
std::vector<int> subVec;
subVec.push_back(n);
subVec.push_back(a);
subVec.push_back(b);
tests.push_back(subVec);
}
std::cout << std::endl;
/*
for (const auto& test : tests) // Use a range-based for loop for cleaner code
{
for (const auto& value : test) // Output each value in the test case
{
std::cout << value << ' ';
}
std::cout << '\n'; // Move to the next line after each test case
}
*/
for (const auto& test : tests)
{
if
}
return 0;
}