fun main(args: Array) { val (a,b,c,d) = readLine()!!.split(" ").map { it.toInt() } val p1 = Player(a,b) val p2 = Player(c,d) val ans = if(p1.isDraw(p2)) { "Draw" } else if(p1.isWin(p2)) { "null" } else { "tRue" } println(ans) } class Player(val rating:Int, val hand:Int) { fun isDraw(other:Player):Boolean { return rating == other.rating && hand == other.hand } fun isWin(other:Player):Boolean { if(rating == other.rating) { return (hand+1)%3 == other.hand } return rating > other.rating } }