diff --git a/main source code b/main source code new file mode 100644 index 0000000..8fbc0d6 --- /dev/null +++ b/main source code @@ -0,0 +1,13 @@ +#include +using namespace std; + +int main() { + // Declare and initialize two variables + int a = 5; + int b = 3; + + // Output the sum of a and b using a single cout command + cout << "The sum of " << a << " and " << b << " is " << (a + b) << endl; + + return 0; +}