#include using namespace std; int main(){ long long A,B,C,D; cin >> A >> B >> C >> D ; assert (0 <= A && A <= 4000 && 0 <= C && C <= 4000 && 0<= B && B <= 2 && 0<= D && D <= 2); if (A != C) { if (A > C) { cout << "null" << endl; } else { cout << "tRue" << endl; } } else { if (B ^ D) { if (B + D != 2) { if (B < D) { cout << "null" << endl; } else { cout << "tRue" << endl; } } else { if (B > D) { cout << "null" << endl; } else { cout << "tRue" << endl; } } } else { cout << "Draw" << endl; } } }