#include<stdio.h>
#include<string.h>
main()
{char s[3][10],(*p)[10],temp[10];
printf("Please input 3 strings:\n");
for(p=s;p<s+3;)
gets(p++);
if(strcmp(s[0],s[1])>0)
{strcpy(temp,s[0]); strcpy(s[0],s[1]); strcpy(s[1],temp);}
if(strcmp(s[0],s[2])>0)
{strcpy(temp,s[0]); strcpy(s[0],s[2]); strcpy(s[2],temp);}
if(strcmp(s[1],s[2])>0)
{strcpy(temp,s[1]); strcpy(s[1],s[2]); strcpy(s[2],temp);}
for(p=s;p<s+3;)
{puts(p++);
putchar('\n');
}
}