#include #include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int A, B, C, D; cin >> A >> B >> C >> D; if (A != C) { cout << (A > C? "null": "tRue") << endl; return 0; } if (B == D) { cout << "Draw" << endl; return 0; } cout << ((B + 1) % 3 == D? "null": "tRue") << endl; return 0; }