YA7OCNRA5SQ27A5B2IQLUNNHVUTWJMFLRPYGTVRUE26V52JSS5JAC
TC2BV5HD2DITKB4JOAQMY5CVE75ST2YJKEDBVXS5EGGBQOWHRKMQC
use std::io::BufRead;
for line in std::io::stdin().lock().lines() { let line = line.unwrap();
for line in std::io::stdin().lock().lines() {
let line = line.unwrap();
'outer: loop { let mut line = String::new(); std::io::stdin() .read_line(&mut line) .expect("reached end of stdin while awaiting response");
'outer: loop {
let mut line = String::new();
std::io::stdin()
.read_line(&mut line)
.expect("reached end of stdin while awaiting response");
continue;
continue 'outer;
panic!("end of stdin reached");