Add Two Numbers
EasyMATHNumbersMethods
### 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
Examples
Example 1
Input: 7,10
Output: 17
Example 2
Input: 5,10
Output: 15