What is the result of comparing these two points?struct Point: Equatable { var x: Int var y: Int } let a = Point(x: 1, y: 2) let b = Point(x: 1, y: 2) print(a == b)