170 B

所谓函数,是指按照某种规律,将输入转变成输出的系统。 我们可以用c语言描述这样的系统。

int fun(int a, int b)
{
return a+b
}