For the enum below, what is the result of `Color.A == Other.A` and `Color.A.value == Other.A.value`?from enum import Enum class Color(Enum): A = 1 class Other(Enum): A = 1