From 70b1d28f7adc0f8d2af68dce9f183b6ff8c06c13 Mon Sep 17 00:00:00 2001 From: "Bob (ChernovDE)" Date: Sun, 26 Mar 2023 21:35:59 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D0=BE=D0=B8=D1=81=D0=BA=20=D0=BC=D0=B8?= =?UTF-8?q?=D0=BD=20=D0=B4=D0=BB=D1=8F=20=D0=B1=D0=BE=D0=B1=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bob.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 bob.cpp diff --git a/bob.cpp b/bob.cpp new file mode 100644 index 0000000..df5cde5 --- /dev/null +++ b/bob.cpp @@ -0,0 +1,9 @@ +#include +using namespace std; +int main(){ + int A,B; + cin>>A>>B; + cout << "A + B = " << A + B << '\n'<< "A - B = " << A - B << '\n'<<"A * B = " << A * B <<"A / B = " << A / B; + if (A