1008: 交换两个变量的值
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:427
Solved:274
Description
输入两个正整数a和b,试交换a、b的值(使a的值等于b,b的值等于a)。
Input
输入两个正整数a和b。
Output
输出a与b交换值后的结果。
Sample Input Copy
2
3
Sample Output Copy
3 2