Ad

Write a function that will add two integers as input.

Example

1+2 => 3

int addition(int a, int b){
  return a+b;
}