#include #define REP(i,n) for(int i=0;i<(int)(n);i++) using namespace std; typedef long long int ll; int main() { int N,K; cin >> N >> K; if(N == K)cout << "Drew" << endl; else if(((N+1)%3) == K)cout << "Won" << endl; else cout << "Lost" << endl; return 0; }