From ff4954f0f117a14334fbbbdfbec7670ad3823e06 Mon Sep 17 00:00:00 2001 From: "Alice (OgarkovIA)" Date: Mon, 8 Apr 2024 14:12:59 +0300 Subject: [PATCH] =?UTF-8?q?build:=20=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=20=D0=B4=D0=B5=D0=BB=D0=B5=D0=BD=D0=B8=D0=B5?= 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 5be4d0a..b47e260 100644 --- a/main.cpp +++ b/main.cpp @@ -16,5 +16,8 @@ int main() { int proizv = a * b; cout << "Proizvedenie of A and B is: " << proizv << endl; + float delenie = a / b; + cout << "Delenie of A and B is " << delenie << endl; + return 0; }