##AIM:To study about arithmetic operators in C++.
##Theory:
Operators are used to perform arithmetic or mathematical operations on the operands. They are certain symbols which perform arithmetic operations such as
addition, subtraction,etc. on operands(variable/constants. Arithmetic operators supported by C++ are:
1.'+'-add
2.'-'-subtract
3.'*'-multiply
4.'/'-division
5.'%'-modulo operation
There also other operators supported by C++ like bitwise,relational, logical etc., which we will discuss later.
##OUTPUT: