> How would I add two numbers and modulus by a third number in Java?

How would I add two numbers and modulus by a third number in Java?

Posted at: 2014-12-18 
To add two numbers, and modulus by a third number:

answer = (a + b)%c;