// addition of two numbers
#include
using namespace std;
int main ()
{
int a,b;
int result;
a=5;
b=2;
result=a+b;
cout<return 0;
}


PROGRAM RESULT



DOWNLOAD PDF