int sum(int a, int b)
{

return a + b;
}


이런 간단한 함수가 있다고 치면

a랑 b는 함수 내부에서 변경될일 없으면 const 로 하는게 좋음?