From 17d1ea7e80ad5e449c28cfe0388b93b3c03f2770 Mon Sep 17 00:00:00 2001 From: "Alice(ShestovDN)" <ShestovDN@mpei.ru> Date: Mon, 5 Jun 2023 16:05:18 +0300 Subject: [PATCH] ... --- main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/main.cpp b/main.cpp index ae24dab..adcd655 100644 --- a/main.cpp +++ b/main.cpp @@ -1,4 +1,5 @@ #include <iostream> +// you may type whatever you want using namespace std; @@ -9,6 +10,7 @@ int main() cin >> a >> b; cout << "A + B = " << a + b << '\n' << "A - B = " << a - b << '\n'; + cout<<a*b; }