Arithmetic expression

Report a typo

Write a program that reads two numbers and prints their sum. The examples below demonstrate what the result should look like.

Sample Input 1:

12
34

Sample Output 1:

12 plus 34 equals 46

Sample Input 2:

1
234

Sample Output 2:

1 plus 234 equals 235
Write a program in Kotlin
fun main() {
// write your code here
}
___

Create a free account to access the full topic