#include
using namespace std;
void sort_three_numbers(int &a, int &b, int &c)
{
if (b if (c if (b>c) swap(b,c);
}
int main() {
int a,b,c;
cout<<"введите числа a b c через пробел ";<br> cin>>a>>b>>c;
sort_three_numbers(a,b,c);
cout<<a<<" "<<b<<" "<<c<<endl;<br> system("pause");
return 0;
}