Problem Description
Given two integers A and B. Find the sum of these integers as a modulo of 107.
0 <= A, B <= 109
First argument is an integer A.
Second argument is an integer B.
Return an integer denoting the sum of A and B as a modulo of 107.
Input 1:
A = 2 B = 3
Input 2:
A = 10000000 B = 0
Output 1:
5
Output 2:
0
Explanation 1:
(2 + 3) % 10000000 = 5
Explanation 2:
(10000000 + 0) % 10000000 = 10000000 % 10000000 = 0
NOTE: You only need to implement the given function. Do not read input, instead use the arguments to the function. Do not print the output, instead return values as specified. Still have a question? Checkout Sample Codes for more details.