Răspuns :
Răspuns:
Explicație:
#include <iostream>
using namespace std;
int main()
{int A, B;
cin>>A>>B;
if (A>B)
{
cout<<A<< endl;;
cout<<B;
}
else
{
cout<<B<< endl;
cout <<A; }
}
#include <iostream>
using namespace std;
int main()
{
int a, b;
cin >> a >> b;
if(a > b)
cout << a << endl << b << endl;
else
cout << b << endl << a << endl;
return 0;
}