я получаю ошибку, когда начинаю заполнять свой массив и здесь код
fun main(args :Array<String>){
println(" give the size")
var nbr=readLine()!!.toInt()
class time(var hour:Int,var minute:Int,var seconde:Int)
class athlete(var name:String,var nombre:Int, var result:time)
var tab=arrayOfNulls<athlete>(50)
for(i in 0 until nbr)
println("give the name of ${i+1} athlete")
tab[i].name=readLine()!!
println("give the nombre of the athelte")
tab[i].nombre=readLine()!!.toInt()
println("give the hours")
tab[i].time.hour=readLine()!!.toInt()
println("give the minute")
tab[i].time.minute=readLine()!!.toInt()
println("give the seconds")
tab[i].time.seconde=readLine()!!.toInt()
ошибки в readLine, когда я начинаю заполнять массивы