Răspuns:
#include
using namespace std;
int main()
{
const int Numar = 2;
int INPUT[Numar];
for(int j = 0; j <= Numar; ++j) std::cin >> INPUT[j]; // introducem numere
//Sortam numerele
for(int i = 0; i<=Numar; ++i){
for(int j = i+1; j if(INPUT[i] > INPUT[j]){
int c;
c = INPUT[i];
INPUT[i] = INPUT[j];
INPUT[j] = c;
}
}
}
std::cout << "Cel mai mare " << INPUT[1];
return 0;
}