lib C fun getchar_unlocked : Int32 end def read_i : Int32 ans = 0 f = 1 c = C.getchar_unlocked() while [9, 10, 11, 12, 13, 32].includes?(c) c = C.getchar_unlocked() end if c == 45 f = -1 c = C.getchar_unlocked() end while (48 .. 57).includes?(c) ans = (ans << 1) + (ans << 3) + (c ^ 48) c = C.getchar_unlocked() end return ans * f end a, b = read_i, read_i puts(a == b ? "Drew" : ((a == 0 && b == 1) || (a == 1 && b == 2) || (a == 2 && b == 0) ? "Won" : "Lost"))