ARITHMETIC OPERATORS

Used to perform basic mathematical operations.

int a = 5, b = 2;

int sum = a + b;   // Addition

int diff = a - b;  // Subtraction

int product = a * b;  // Multiplication

int quotient = a / b;  // Division

int remainder = a % b;  // Modulo (remainder after division)