Problem1676--高精度减法4

1676: 高精度减法4

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 16 MiB

Description

做减法

Input

输入:两个整数a,b(-2^63< =a,b< 2^63)

Output

输出:一个整数,表示两数的差(从个位开始,每隔三位加一个" ," 号)。

Sample Input Copy

7777777 -29

Sample Output Copy

7,777,806

HINT

注意负数

Source/Category