#include #include #include #include using namespace std; 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 (a==c) { if (b != d) { if (b == 0 and d == 1) cout << "null" << endl; if (b == 0 and d == 2) cout << "tRue" << endl; if (b == 1 and d == 2) cout << "null" << endl; if (b == 1 and d == 0) cout << "tRue" << endl; if (b == 2 and d == 0) cout << "null" << endl; if (b == 2 and d == 1) cout << "tRue" << endl; } else cout << "Draw" << endl; } return 0; }