#include #include #include const std::vector winner{"null", "tRue", "Draw"}; void solve() { int a1, b1, a2, b2; std::cin >> a1 >> b1 >> a2 >> b2; int result = -1; if (a1 != a2) { result = (a1 > a2 ? 0 : 1); } else if (b1 == b2) { result = 2; } else { result = ((b1 - b2 + 3) % 3 == 2 ? 0 : 1); } std::cout << winner[result] << "\n"; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }