#include main(){ int a,b; scanf("%d%d",&a,&b); if((b-a)%3==1)printf("Won"); else if((b-a)==0)printf("Drew"); else printf("Lost"); }