#include /* if(����){ �������(����Ϊ��ʱִ��) }else{ �������(����Ϊ��ʱִ��) } */ int main(void){ int x, y, z, t;//�����������ͱ��� //�������� ������1, ������2; scanf("%d%d%d", &x, &y, &z); if(x > y){ t = x; x = y; y = t; }//ʵ��x��y�Ƚ� ������yλ�� if(y > z){ t = y; y = z; z = t; }//ʵ��y��z�Ƚ� ������zλ�� zΪ��������������� if(x > y){ t = x; x = y; y = t; } printf("%d %d %d\n", x, y, z); return 0; }