#include #include using namespace std; int main(){ // input int N,K; cin >> N >> K; string ans; if((N==0 and K == 1) or (N==1 and K==2)or (N==2 and K==0)){ ans = "Won"; } else if((N==0 and K == 2) or (N==1 and K==0)or (N==2 and K==1)){ ans = "Lost"; } else { ans = "Drew"; } cout << ans << endl; // output }