From 092a0b631ae7a27032f4c5b27dffcac68168a25f Mon Sep 17 00:00:00 2001 From: "Alice (TerekhovFV)" Date: Mon, 3 Jun 2024 04:47:24 +0300 Subject: [PATCH] =?UTF-8?q?Revert=20"code:=20=D0=B4=D0=BE=D0=B1=D0=B0?= =?UTF-8?q?=D0=B2=D0=BB=D0=B5=D0=BD=20=D0=B2=D1=8B=D0=B2=D0=BE=D0=B4=20?= =?UTF-8?q?=D0=BF=D1=80=D0=BE=D0=B8=D0=B7=D0=B2=D0=B5=D0=B4=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D1=8F"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This reverts commit f2e17ac94fccda005a939bcdcde5b03882ffef43. --- main.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index f372c78..8435233 100644 --- a/main.cpp +++ b/main.cpp @@ -8,6 +8,5 @@ int main() int a, b; cin >> a >> b; cout << "A + B = " << a + b << '\n' - << "A - B = " << a - b << '\n' - << "A * B = " << a * b << '\n'; + << "A - B = " << a - b << '\n'; }