#include #define rep(i,s,n) for (int i = s; i < (n); ++i) using namespace std; using ll = long long; using P = pair; using field = vector>; int main() { int a,b,c,d; cin >> a >> b >> c >> d; if (a != c) { if (a > c) cout << "null" << endl; else cout << "tRue" << endl; } else { if (b == d) { cout << "Draw" << endl; } else if (b == 0 && d == 1) cout << "null" << endl; else if (b == 1 && d == 2) cout << "null" << endl; else if (b == 2 && d == 0) cout << "null" << endl; else cout << "tRue" << endl; } return 0; }