let ``No.795 Restrictions!!!!!!!!!!!!!!``() = let n = stdin.ReadLine() |> fun arg -> arg.Substring( arg.Length-1 ) |> int let m = stdin.ReadLine() |> fun arg -> arg.Substring( arg.Length-2 ) |> int match n % 2 with | 0 -> if (m % 2 = 0) then "Yes" else "No" | 1 -> if (m-10) % 2 = 0 then "Yes" else "No" |> stdout.WriteLine () ``No.795 Restrictions!!!!!!!!!!!!!!``()