function result = add(x, y)
% function add
% Input x and y consisting of integers
% Output the sum of x+y
result = x + y;