#include "iostream" using namespace std; int main(){ int n,k; string ans; cin >> n >> k; if (n == k) ans = "Drew"; else if ((n+1)%3 == k) ans = "Won"; else ans = "Lost"; cout << ans << endl; return 0; }