diff --git a/main.cpp b/main.cpp index ecca766..5be4d0a 100644 --- a/main.cpp +++ b/main.cpp @@ -13,5 +13,8 @@ int main() { int difference = a - b; cout << "Difference of A and B is: " << difference << endl; + int proizv = a * b; + cout << "Proizvedenie of A and B is: " << proizv << endl; + return 0; }