create dev channel
This commit is contained in:
7
zeta/kt/completed/2908.kt
Normal file
7
zeta/kt/completed/2908.kt
Normal file
@@ -0,0 +1,7 @@
|
||||
fun main(){
|
||||
val (a, b) = readLine()!!.split(" ")
|
||||
val a_ = a.reversed().toInt()
|
||||
val b_ = b.reversed().toInt()
|
||||
|
||||
if (a_ > b_) {println(a_)} else {println(b_)}
|
||||
}
|
||||
Reference in New Issue
Block a user