12449: ++与--操作符
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:3
Solved:0
Description
对于给定的整数a,计算a++,a--,++a,--a的值
Input
输入包括多行,每行一个整数a
Output
对每行输入的整数a,输出a++,a--,++a,--a的值,然后换行,不同的值中间用空格隔开
Sample Input Copy
0
1
Sample Output Copy
0 0 1 -1
1 1 2 0