import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); int d = sc.nextInt(); if (a > c) { System.out.println("null"); } else if (a < c) { System.out.println("tRue"); } else { if (b == d) { System.out.println("Draw"); } else if (b - d == 1 || b - d == -2) { System.out.println("tRue"); } else { System.out.println("null"); } } } }