#include
int max(int temp1, int temp2);
int min(int temp1, int temp2);
int main(void){
int a, b, c, d, first_result, second_result;
printf("Введите первую пару чисел: ");
scanf("%d, %d", &a, &b);
a = min(a, b);
printf("Наименьшее число из первой пары = %d\n", a);
printf("Введите вторую пару чисел: ");
scanf("%d, %d", &c, &d);
c = min(c, d);
printf("Наименьшее число из второй пары чисел = %d\n", c);
a = max(a, c);
printf("Максимальное число из двух наименьших = %d\n", a);
return 0;
}
int max(int temp1, int temp2){
if (temp1 > temp2)
return temp1;
else
return temp2;
}
int min(int temp1, temp2){
if (temp1 < temp2)
return temp1;
else
return temp2;
}