#include int main(void) { int a,b; char str[][5]={"Drew","Lose","Won"}; scanf("%d%d",&a,&b); printf("%s\n",str[((a-b+3)%3)]); return 0; }