What does this code print?data class Point(val x: Int, val y: Int) val a = Point(1, 2) val b = Point(1, 2) println(a == b)