From 18f885b9440e3e255e1f7506d3c8669dc8adf960 Mon Sep 17 00:00:00 2001 From: "Alice (ShinkarenkoVA)" Date: Sun, 7 Apr 2024 20:08:15 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=B4=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8?= =?UTF-8?q?=D0=BB=D0=B8=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 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 5e034ec..149548b 100644 --- a/main.cpp +++ b/main.cpp @@ -6,8 +6,12 @@ int main() { cout << "Enter A and B: " << endl; int a, b; - cin >> a >> b; + cin >> a; + cout << endl; + cin >> b; + cout << endl; cout << " A + B = " << a + b << '\n'; cout << " A - B = " << a - b << '\n'; cout << " A * B = " << a * b << '\n'; + cout << " A / B = " << a / b << '\n'; }