#include <iostream>
#include <algorithm>
using namespace std;
int main()
{
int a[5];
for(int i=0; i<5; i++)//输入
{
cin>>a[i];
}
sort(a,a+5);//用sort函数,第一项为要排序的数组,第二项为要排序的数组+长度(从1开始应再+1)
for(int i=0; i<5; i++)//输出结果是从小到大的,可以运行试试。a[0]和a[4]分别是最小值和最大值
{
cout<<a[i]<<" ";
}
cout<<endl;
return 0;
}