initial commit

This commit is contained in:
2018-10-11 20:45:40 -04:00
commit f1919677de
7 changed files with 164 additions and 0 deletions

11
src/three_feature.kt Normal file
View File

@@ -0,0 +1,11 @@
import java.util.*
fun main(args: Array<String>) {
val in1 = readLine() ?: ""
val reader = Scanner(System.`in`)
val in2 = reader.nextInt()
println(in1)
print(in2)
}