Задание167.R
#include <iostream>
#include "cmath"
using namespace std;
int main() {
int a, b, c;
cout << "Введите a: " << endl;
cin >> a;
cout << "Введите b: " << endl;
cin >> b;
cout << "Введите c: " << endl;
cin >> c;
if ((a > b) && (a > c))
{
cout << b * c;
}
if ((b > a) && (b > c))
{
cout << a * c;
}
if ((c > b) && (c > a))
{
cout << b * a;
}
return 0;
}INFO