fun osztas(szamlalo : Int, nevezo: Int): Int { return try { szamlalo / nevezo }catch(e: ArithmeticException) { 0 } } fun main() { println(osztas(3, 0)) }