✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
class Suma(val a: Int, val b: Int) {
fun resultado(): Int {
return a + b
}
}
val s = Suma(4,6)
println(s.resultado())
¿Cuál es el resultado?