fn main(){ let mut s = String::new(); std::io::stdin().read_line(&mut s).unwrap(); let vec: Vec<&str> = s.trim().split(' ').collect(); let a: i32 = vec[0].parse().unwrap(); let b: i32 = vec[1].parse().unwrap(); match a - b { -1 | 2 => println!("Won"), 0 => println!("Drew"), 1 | -2 => println!("Lost"), _ => {}, } }