#define PROBLEM no264 // "Env.h"ヘッダが存在していたらインクルードする #if __has_include("../Env.h") #include "../Env.h" #endif #include #include using vs = std::vector; class no264 { public: void solve() { int N, K; vs ansvec; ansvec.push_back("Drew"); ansvec.push_back("Lost"); ansvec.push_back("Won"); std::cin >> N >> K; std::cout << ansvec[(N-K+3)%3] << std::endl; } }; #ifndef YUKICODER_ENV_H int main() { auto problem = new PROBLEM(); problem->solve(); return 0; } #endif //YUKICODER_ENV_H