fun main() { val (a, b) = readLine()!!.split(" ").map { it.toLong() } println(if (a < b) "K" else "S") }