#include <iostream>
using namespace std;
main ()
{
int X,Y,sum;
cout<<"\nEnter first number:";
cin>>X;
cout<<"\nEnter second number:";
cin>>Y;
sum=X+Y;
cout<<"\nSum ="<<sum;
return 0;
}
6. Compilation process
9. Result
1. How to
a. Compilation process