Ad

write a function that returns the sum of two numbers.

if input is 1 and 1 -> return 2

if input is 5 and 10 ->return 15

function sum($a ,$b) {
  return $a + $b;
}