I need time to process first solution
Here is clarification on the second one
static int sum(int x, int y) {
return x+y;
}
int sum3(int x, int y, int z) {
int word1 = 0;
int word2 = 0;
/************************************************** ************
Fill in code below that computes values for word1 and word2
without using any '+' operations
************************************************** *************/
/************************************************** ************
Don't change anything below here
************************************************** *************/
return sum(word1,word2);