use std::{ collections::{BTreeSet, HashMap}, hash::Hash, }; const TEN9PLUS7: u64 = 1000000007; fn main() { proconio::input! { n: usize, k: usize, } let win_table = [1, 2, 0]; if n == k { println!("Drew"); } else if win_table[n] == k { println!("Won"); } else { println!("Lost"); } }