#include using namespace std; bool zyanken(int a, int b){ if (a==0){ if (b == 1) { return true; } }else if (a==1){ if (b==2){ return true; } }else if (a==2){ if (b==0){ return true; } } return false; } int main(){ int me, you; cin >> me >> you; if (me == you){ cout<< "Drew"<