From 83bcfe6b7ff3d93c3e31c43e8bbb9e29357cee7e Mon Sep 17 00:00:00 2001 From: "Alice(Tanya)" <TsvetkovaTA@mpei.ru> Date: Fri, 3 May 2024 22:57:18 +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=B4=D0=B5=D0=BB=D0=B5=D0=BD=D0=B8=D1=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/main.cpp b/main.cpp index dedd933..133601d 100644 --- a/main.cpp +++ b/main.cpp @@ -10,6 +10,7 @@ int main() cout << "A + B = " << a + b << '\n'; << "A - B = " << a - b << '\n'; << "A * B = " << a * b << '\n'; + << "A / B = " << a / b << '\n'; }