#include using namespace std; int main() { int a, b, c, d; cin >> a >> b >> c >> d; if (a > c) cout << "null" << endl; else if (a < c) cout << "tRue" << endl; else { if (b == d) cout << "Draw" << endl; else if (b != 2) { if (b < d) cout << "null" << endl; else cout << "tRue" << endl; } else { if (d == 0) cout << "null" << endl; else cout << "tRue" << endl; } } return 0; }