大数减


Submit solution

Points: 100
Time limit: 1.0s
Memory limit: 32M

Problem types
Allowed languages
C, C++, Java, Python

Description

编程实现大数减法。

Input

每组数据有两个大整数,若该数为0 0,表示输入。

Output

对于每组大数,输出其差,每个结果占一行。

Sample

Input

2 3
12 34
0 0

Output

-1
-22

Comments

There are no comments at the moment.