Given two integers, return their sum.
You need to implement a function that takes two integers as input and returns a single integer which is their addition.
Two integers:
a = first number
b = second number
Return a single integer representing the sum of the two numbers.
Input:
a = 2
b = 3
Output: 5
Input:
a = -10
b = 25
Output: 15
No constraints provided