From a781f54d03e6165b8437fa56ed1cef4a269692d8 Mon Sep 17 00:00:00 2001 From: "Alice (AkinshinaDA)" Date: Fri, 21 Feb 2025 17:43:31 +0300 Subject: [PATCH] =?UTF-8?q?code:=20=D0=B2=D0=B2=D0=BE=D0=B4=20=D0=BF=D0=B5?= =?UTF-8?q?=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=BD=D1=8B=D1=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/main.cpp b/main.cpp index b4392ec..5500875 100644 --- a/main.cpp +++ b/main.cpp @@ -1,9 +1,11 @@ #include - +#include using namespace std; int main() { - cout << "Hello world!" << endl; + cout << "Enter A and B: "; + int a, b; + cin >> a >> b; return 0; }