IP
Size: a a a
IP
A
BP
DS
Q
private val _theThing = mutableListOf<String>()
get theThing: List<String>RX
A
AM
В
AM
SI
AL
import java.time.*
import java.time.format.*
import java.util.*
fun main() {
val input = "10 01 2021"
val inputFormat = DateTimeFormatter.ofPattern("dd MM yyyy")
val date = LocalDate.parse(input, inputFormat)
val outputFormat = DateTimeFormatter.ofPattern("dd MMMM, EEEE").withLocale(Locale("ru"))
println(date.format(outputFormat))
}AL
SI
AL
SI
AL
AM
IL
IL