#include using namespace std; int main() { int N; //self int K; //aite cin >> N >> K; //rock = 0 //sisseros = 1 //paper = 2 if (N == K) { cout << "Drew" << endl; } else if (N-K == -1 || N-K == 2) { cout << "Won" << endl; } else { cout << "Lost" << endl; } }