A, B, C, D = gets.split.map(&:to_i) if A > C puts 'null' elsif A < C puts 'tRue' else case B when 0 case D when 0 puts 'Draw' when 1 puts 'null' when 2 puts 'tRue' end when 1 case D when 0 puts 'tRue' when 1 puts 'Draw' when 2 puts 'null' end when 2 case D when 0 puts 'null' when 1 puts 'tRue' when 2 puts 'Draw' end end end