commit 0bf15a38e5a6521bb29017df2d353e0c8759ae5b Author: Alice (ShabanovaRR) Date: Mon Mar 24 13:39:12 2025 +0300 code: заготовка программы diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..03b22ce --- /dev/null +++ b/main.cpp @@ -0,0 +1,11 @@ +#include + +using namespace std; + +int main() +{ + cout << "Enter A and B: "; + int a, b; + cin >> a >> b; + return 0; +}