commit ae4e897aee12286c3c90bc7a2f4ee8688fe92718 Author: Bob (VasinaEY) Date: Mon Apr 7 10:40:08 2025 +0300 code: печать произведения двух чисел diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..9c2ebe1 --- /dev/null +++ b/main.cpp @@ -0,0 +1,12 @@ +#include + +using namespace std; + +int main() +{ + int a, b; + cin >> a >> b; + cout << "A * B = " << a * b << '\n'; + + +}