fn run<'a, F: FnMut() -> &'a str, W: std::io::Write>(scan: &mut F, writer: &mut W) { macro_rules! scan { ([$t:tt; $n:expr]) => ((0..$n).map(|_| scan!($t)).collect::>()); (($($t:tt),*)) => (($(scan!($t)),*)); (Usize1) => (scan!(usize) - 1); (Bytes) => (scan().as_bytes().to_vec()); ($t:ty) => (scan().parse::<$t>().unwrap()); } macro_rules! println { ($($arg:tt)*) => (writeln!(writer, $($arg)*).ok()); } for _ in 0..scan!(usize) { let mut a = scan!([i64; 3]); let mut ord = (0..3).collect::>(); ord.sort_by_key(|&i| a[i]); if a[ord[0]] + a[ord[1]] <= a[ord[2]] { a[ord[0]] *= (a[ord[2]] - a[ord[1]]) / a[ord[0]] + 1; } for (i, val) in a.iter().enumerate() { if i + 1 < a.len() { write!(writer, "{} ", val).ok(); } else { println!("{}", val); } } } } fn main() { let ref mut buf = Vec::new(); std::io::Read::read_to_end(&mut std::io::stdin(), buf).ok(); let mut scanner = unsafe { std::str::from_utf8_unchecked(buf).split_ascii_whitespace() }; let ref mut scan = || scanner.next().unwrap(); let stdout = std::io::stdout(); let ref mut writer = std::io::BufWriter::new(stdout.lock()); run(scan, writer); }