Addition in c++


Addition of two number
#include<iostream.h>
int main()
               {
                 int a,b;
                 a=10;
                 b=5;
                 cout<<"\n"<<" Sum = "<<a+b;
                 system("pause");
                 return 0;
}