#include #include #include #include #include #include #include #include #include static const int MOD = 1000000007; using ll = long long; using u32 = unsigned; using u64 = unsigned long long; using namespace std; template constexpr T INF = ::numeric_limits::max() / 32 * 15 + 208; int main() { int t; cin >> t; while(t--){ ll a, b, c; scanf("%lld %lld %lld", &a, &b, &c); ll k = a*b*c; printf("%lld %lld %lld\n", k, k, k); } return 0; }