X845: Parameter Practice 6

public int subtract(int a, int b){
  return a - b;
}

Use the method defined above to subtract 32 from 124 (as in 124 - 32).

Your Answer:

Feedback

Your feedback will appear here when you check your answer.