Python, 13 bytes
[(0,0)].count Try it online! Takes input as a tuple.
Using an object methodobject method for the function avoids the boilerplate of a lambda.
lambda a,b:a-~b # 15 bytes Here, the idea is to map (0,0) to 1 and everything else to 0. Since only 0+0 gives a sum of 0 among natural numbers, that always avoids matching the sum.
If one could output a Boolean here, which I find shady, a byte could be saved as
(0,0).__ge__ This checks if the input tuple is at most (0,0), which is only true for (0,0). In Python, True==1 and False==0. Even more shadily, outputting via exit code and treating that as a Python Boolen would save two bytes:
[(0,0)].pop If string I/O is allowed and leading zeroes are OK, there's the 8-byte solution
'1'.join This concatenates a1b, which is always bigger than a+b.