#include #define INF 2000000000000000000 #define ll long long #define pll pair using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); ll N, K; cin >> N >> K; if ((N + 1) % 3 == K) { cout << "Won" << "\n"; } else if (N == K) { cout << "Drew" << "\n"; } else { cout << "Lost" << "\n"; } }