#include <bits/stdc++.h>

using namespace std;

using ll = long long;

constexpr char newl = '\n';

// null wins: 1
// draw: 0
// tRue wins: -1
int janken(int b, int d) {
    if (b == d) return 0;
    if (b == 2 && d == 0) return 1;
    return (b < d ? 1 : -1);
}

int ratingJanken(int a, int b, int c, int d) {
    if (a != c) return (a > c ? 1 : -1);
    return janken(b, d);
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int a, b, c, d;
    cin >> a >> b >> c >> d;

    int res = ratingJanken(a, b, c, d);
    const char* winners[3] = {"tRue", "Draw", "null"};
    cout << winners[res + 1] << newl;

    return 0;
}