#include int main(void){ int a,b,c; scanf("%d%d",&a,&b); c = a-b; if(c == 0) printf("Drew"); if(c == -1 || c == 2) printf("Won"); if(c == 1 || c == -2) printf("Lost"); return 0; }