1429: 两数交换输出
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:34
Solved:18
Description
请用函数实现a和b两个数的交换,然后输出。
Input
两个数a和b
Output
交换后的a和b,用空格隔开
Sample Input Copy
33 144
Sample Output Copy
144 33
HINT
输出语句写在子函数中更容易实现这个程序。