#include<iostream.h>
void main()
{
int a,b,c;
cout<<"enter two numbers"<<"n";
cin>>a>>b;
c=a+b;
cout<<"the sum is"<<c<<"n";
}

1