#include main(){ int N,K; int g,c,p; g=0; c=1; p=2; scanf("%d %d",&N,&K); if((N==g&&K==c)||(N==c&&K==p)||(N=p&&K==g)){ printf("Won"); } else if ((N==g&&K==p)||(N==c&&K==g)||(N==p&&K==c)){ printf("Lost"); } else{ printf("Drew"); } return 0; }