From 16add04532816dc03786c9abc4ef0c4a718ab596 Mon Sep 17 00:00:00 2001 From: Muhammad Zain Ahmad <164669479+ZainAhmad5153@users.noreply.github.com> Date: Mon, 27 May 2024 11:02:45 +0500 Subject: [PATCH] Create main source code --- main source code | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 main source code 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; +}