#include #define rep(i,n) for(int i = 0; i < (n); i++) using namespace std; typedef long long ll; int main(){ cin.tie(0); ios::sync_with_stdio(0); int A,B,C,D; cin >> A >> B >> C >> D; auto f = [&]() { if(A != C) return (A > C ? "null" : "tRue"); if(B == D) return "Draw"; if(B == 0 && D == 1 || B == 1 && D == 2 || B == 2 && D == 0) return "null"; return "tRue"; }; cout << f() << endl; }