#include using namespace std; /////////////////// メイン /////////////////// int main () { //////////////////// 入力 //////////////////// int n, k; cin >> n >> k; //////////////// 出力変数定義 //////////////// string result = ""; //////////////////// 処理 //////////////////// int x = (3+n-k)%3; if (x==0) result = "Drew"; else if (x==2) result = "Won"; else result = "Lost"; //////////////////// 出力 //////////////////// cout << result << endl; //////////////////// 終了 //////////////////// return 0; }