#include "stdio.h"
#include "conio.h"
void int pp(int *a,*b,*c)
{
int temp
if(*a>*b)
{
temp=*a;
*a=*b;
*b=temp;
}
if(*b>*c)
{
temp=*b;
*b=*c;
*c=temp;
}
if(*a>*c)
{
temp=*a;
*a=*c;
*c=temp;
}
}
main()
{
int x,y,z;
int *p=&x,*q=&y,*s=&z;
scanf("%d%d%d",&x,&y,&z);
pp(p,q,s);
printf("%d %d %d",x,y,z);
getch();
}