fonction dans Pascal

function Addition(a, b : integer) : integer; 

begin

result := a + b

end;

//Addition(2, 5) is equal to 7
Bewildered Bat