Sum of Longs

Report a typo

Write a program that takes two large numbers as input, converts them to Long, and prints the result of their summation.

Input: two long numbers as strings (each starting on new line).

Output: Long value.

Sample Input 1:

1000000000000000
2222222222222222

Sample Output 1:

3222222222222222
Write a program in Kotlin
fun main() {
// write your code here

}
___

Create a free account to access the full topic