Description
You are given two integers.
Your task is to add the two numbers and return the result.
Constraints
- The input numbers are non-negative integers.
- The numbers do not have leading zeros, except for the number 0 itself.
- The inputs will not exceed 100 digits in length.
Example
Input:
5, 8
Output:
13