From ae4e897aee12286c3c90bc7a2f4ee8688fe92718 Mon Sep 17 00:00:00 2001
From: "Bob (VasinaEY)" <vasinaky@mail.ru>
Date: Mon, 7 Apr 2025 10:40:08 +0300
Subject: [PATCH] =?UTF-8?q?code:=20=D0=BF=D0=B5=D1=87=D0=B0=D1=82=D1=8C=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=20=D0=B4=D0=B2=D1=83=D1=85=20=D1=87=D0=B8=D1=81?=
 =?UTF-8?q?=D0=B5=D0=BB?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 main.cpp | 12 ++++++++++++
 1 file changed, 12 insertions(+)
 create mode 100644 main.cpp

diff --git a/main.cpp b/main.cpp
new file mode 100644
index 0000000..9c2ebe1
--- /dev/null
+++ b/main.cpp
@@ -0,0 +1,12 @@
+#include <iostream>
+
+using namespace std;
+
+int main()
+{
+    int a, b;
+    cin >> a >> b;
+    cout << "A * B = " << a * b << '\n';
+
+
+}