Add Two Integers less than 1 minute read <-E 2235> Add Two Integers class Solution { public: int sum(int num1, int num2) { return num1 + num2; } }; Share on Twitter Facebook LinkedIn Previous Next