uint 에서 int 로 형 변환 안 됨
function sub(int _a, int _b) public pure returns(int) { // uint에서 uint로 변환 안 됨 return _a - _b; }