#include using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); int n, k; cin >> n >> k; if(n == k) { puts("Drew"); return 0; } if((n - k + 3) % 3 == 1) { puts("Lost"); } else { puts("Won"); } return 0; }