Type: Default 1000ms 256MiB

交换两数

You cannot submit for this problem because the contest is ended. You can click "Open in Problem Set" to view this problem in normal mode.

说明

读入a,b,若a>b则交换a,b的值,再输出a,b的值。

输入格式

两下整数a和b,0≤a,b≤32767。

输出格式

如果a>b则交换a,b的值并输出,否则直接输出a,b的值;

也就是说输出两个数,小数在前大数在后,中间用一个空格分隔。

样例

8 5
5 8