'+'와 '-' 기호 없이 풀라고 해서 sum을 사용했다. 문제의도가 이게 맞을까?
class Solution: def getSum(self, a: int, b: int) -> int: return sum([a, b])