#include #include int main(void){ int n,k,tmp=0; char rslt[5]; scanf("%d %d",&n,&k); tmp=n-k; if(tmp==0){ strcpy(rslt,"Drew"); }else if(tmp==1){ strcpy(rslt,"Lost"); }else if(tmp==-1){ strcpy(rslt,"Won"); }else if(tmp==2){ strcpy(rslt,"Won"); }else if(tmp==-2){ strcpy(rslt,"Lost"); } printf("%s\n",rslt); return 0; }