Create a method that takes two integers as arguments and returns their sum.
SumOfTwoNumbers(3, 2) ➞ 5 SumOfTwoNumbers(-3, -6) ➞ -9 SumOfTwoNumbers(7, 3) ➞ 10
return