use std::io; fn main() { let mut input = String::new(); io::stdin().read_line(&mut input).unwrap(); let mut input = input.trim().split_whitespace(); let me: i32 = input.next().unwrap().parse().unwrap(); let you: i32 = input.next().unwrap().parse().unwrap(); if me == you { println!("Drew"); } else if me - you == -1 || me - you == 2 { println!("Won"); } else { println!("Lost"); } }