2235. Add Two Integers

2235. Add Two Integers #

题目 #

  • 给定两个整数 num1num2,返回这两个整数的和。

思路 #

模拟 #

代码 #

模拟 #

class Solution {
    public int sum(int num1, int num2) {
        return num1 + num2;
    }
}