```class Fraction(x: Int) { val x: Int in...
# announcements
y
Copy code
class Fraction(x: Int) {
    val x: Int

    init {
       this.x = if (x > 0) x else 0
    }
}