#include using namespace std; int main() { int N; int K; cin >> N; cin >> K; if( N == K ) cout << "Drew" << endl; else if( ( K - N + 2 ) % 3 == 0 ) cout << "Won" << endl; else cout << "Lost" << endl; return 0; }