#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
int n,temp,a[100];
cin>>n;
for(int l=0;l<n;l++)
cin>>a[l];
int i=1;
bool bo=false;
while (!bo);
{
bo=true;
for (int j=0;j<n-i;j++)
if (a[j]>a[j+1])
{
temp=a[j]; a[j]=a[j+1]; a[j+1]=temp;
bo=false;
}
i++;
}
for(int m=0;m<n;m++)
cout<<a[m]<<" ";
return 0;
}
#include<cstdlib>
using namespace std;
int main()
{
int n,temp,a[100];
cin>>n;
for(int l=0;l<n;l++)
cin>>a[l];
int i=1;
bool bo=false;
while (!bo);
{
bo=true;
for (int j=0;j<n-i;j++)
if (a[j]>a[j+1])
{
temp=a[j]; a[j]=a[j+1]; a[j+1]=temp;
bo=false;
}
i++;
}
for(int m=0;m<n;m++)
cout<<a[m]<<" ";
return 0;
}