build: добавление произведения чисел a и b

Этот коммит содержится в:
2024-03-25 11:38:30 +03:00
родитель 86473f7bf6
Коммит 2ecdc02694

Просмотреть файл

@@ -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;
}