use std::io::*; fn main() { let mut s = String::new(); std::io::stdin().read_to_string(&mut s).ok(); let mut itr = s.trim().split_whitespace(); let _n: usize = itr.next().unwrap().parse().unwrap(); let m: usize = itr.next().unwrap().parse().unwrap(); let x: usize = itr.next().unwrap().parse().unwrap(); let y: usize = itr.next().unwrap().parse().unwrap(); let mut a: Vec = itr.map(|e| e.parse().unwrap()).collect(); a.sort(); let mut a: Vec = a.into_iter().skip_while(|e| *e <= y).collect(); a.reverse(); let z = a.iter().take_while(|e| **e >= x).count(); if z > m { println!("Handicapped"); } else { println!("{}", a.iter().take(m).sum::()); } }