fn main() { let mut input = String::new(); std::io::stdin().read_line(&mut input).ok(); let inputs = input.split_whitespace().collect::>(); let (mut s, t, u) = ( inputs[0].to_string(), inputs[1].parse::().unwrap(), inputs[2].parse::().unwrap(), ); if t != u { s.remove(if t > u { t } else { u }); s.remove(if t > u { u } else { t }); } else { s.remove(t); } println!("{}", s); }