From a041681737e39231e0099a86c35c7912433de137 Mon Sep 17 00:00:00 2001 From: Muhammad Sohail Date: Mon, 8 Sep 2025 11:34:56 -0700 Subject: [PATCH] fixed issue #62 --- main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.cpp b/main.cpp index 958ba61..3c7071f 100644 --- a/main.cpp +++ b/main.cpp @@ -12,9 +12,9 @@ int main() int x,y; cin >> x >> y; - cout << "Addition: " << x + y << endl; - cout << "Subtraction: " << x - y << endl; - cout << "Multiplication: " << x * y << endl; + cout << x << "+" << y << "=" << x + y << "\n"; + cout << x << "-" << y << "=" << x - y << "\n"; + cout << x << "*" << y << "=" << x * y << "\n"; cout << "Division: " << x / y << endl; cout << "Remainder: " << x % y << endl; cout << "Square Root: " << sqrt(x) << endl;