You can perform basic mathematical operations using operators such as the addition (+), subtraction (-), multiplication (*), division (/), modulus (%)
For example,
a = 2;
b = 6;
cout << a + b;
However, if you'd like to perform more advanced mathematical operations, you'll want to import the...