#include #include #include #include #include #include #include static const int MOD = 1000000007; using ll = long long; using u32 = unsigned; using namespace std; template constexpr T INF = ::numeric_limits::max() / 32 * 15 + 208; int main() { int a, b; cin >> a >> b; if(a == b){ cout << "Drew\n"; return 0; } if(a > b) b += 3; if(b-a == 1){ cout << "Won\n"; }else { cout << "Lost\n"; } return 0; }