umar
fun <T> List<T>.sub(from: Int = 0, to: Int = size) = subList(from, to)
list.sub(from = 1) list.sub(to = 5)