/* -*- coding: utf-8 -*- * * 1129.cc: No.1129 Rating じゃんけん - yukicoder */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; /* constant */ const int rsp[3][3] = { { 0, 1, -1 }, { -1, 0, 1 }, { 1, -1, 0 } }; /* typedef */ /* global variables */ /* subroutines */ /* main */ int main() { int a, b, c, d; scanf("%d%d%d%d", &a, &b, &c, &d); int f = (a != c) ? a - c : rsp[b][d]; if (f > 0) puts("null"); else if (f < 0) puts("tRue"); else puts("Draw"); return 0; }