Print two numbers on the same line

Report a typo

Write a program that reads two integer numbers and prints them on the same line. The numbers are separated by a space.

Please solve the problem using string templates.

Sample Input 1:

8
11

Sample Output 1:

8 11

Sample Input 2:

-5
0

Sample Output 2:

-5 0
Write a program in Kotlin
fun main() {
// put your code here
}
___

Create a free account to access the full topic