2235. Add Two Integers

1
2
3
4
5
class Solution {
public int sum(int num1, int num2) {
return num1 + num2;
}
}

References

2235. Add Two Integers