#include #define rep(i, ss, ee) for (int i = ss; i < ee; ++i) using namespace std; using Vi = vector; using VVi = vector; // RockPaperScissors unsigned rps(unsigned p1, unsigned p2) { VVi winner{{0, 1, 2}, {2, 0, 1}, {1, 2, 0}}; return winner[p1][p2]; } // Winner map winner{{0, "Draw"}, {1, "null"}, {2, "tRue"}}; void solve() { string ans; int a, b, c, d; cin >> a >> b >> c >> d; if (a == c) { ans = winner[rps(b, d)]; } else { if (a > c) ans = winner[1]; else ans = winner[2]; } cout << ans << endl; } int main() { cin.tie(0); ios::sync_with_stdio(false); solve(); getchar(); }