how would you make a simple exe application for something like this in vis c++. so that you could send it self contained and a person double clicks it and it runs. please show the code and where you would enter it.
thanks
#include <iostream>
using std::cout;
using std::cin;
int main()
{
int a, b, sum;
cout << "enter first number\n";
cin >> a;
cout << "enter second number\n";
cin >> b;
sum = a + b;
cout << "sum is " << sum << std::endl;
return 0;
}