3 lines
90 B
Scala
3 lines
90 B
Scala
val s = new java.util.Scanner(System.in)
|
|
val sum = s.nextInt() + s.nextInt()
|
|
println(sum)
|