# your code goes here as=STDIN.gets.split(" ") a=as[0].to_i b=as[1].to_i ts=[[0,1,2],[2,0,1],[1,2,0]] c=ts[a][b] case c when 0 puts "Drew" when 1 puts "Won" when 2 puts "Lost" end