From 2ecdc026940e424540179c11271fa1645281efca Mon Sep 17 00:00:00 2001 From: "Bob (OgarkovIA)" Date: Mon, 25 Mar 2024 11:38:30 +0300 Subject: [PATCH] =?UTF-8?q?build:=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=D0=B8=D0=B5=20=D0=BF=D1=80=D0=BE=D0=B8=D0=B7=D0=B2?= =?UTF-8?q?=D0=B5=D0=B4=D0=B5=D0=BD=D0=B8=D1=8F=20=D1=87=D0=B8=D1=81=D0=B5?= =?UTF-8?q?=D0=BB=20a=20=D0=B8=20b?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.cpp b/main.cpp index ecca766..5be4d0a 100644 --- a/main.cpp +++ b/main.cpp @@ -13,5 +13,8 @@ int main() { int difference = a - b; cout << "Difference of A and B is: " << difference << endl; + int proizv = a * b; + cout << "Proizvedenie of A and B is: " << proizv << endl; + return 0; }