1544: 大数减法的函数

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:17 Solved:11

Description

写一个大数减法的函数。
完成下面函数的代码。
int jian(int x[],int y[]){

}
结果保存在x中。

Input

两个大数x,y,每个不超过200位,确保x>=y

Output

x-y的差

Sample Input Copy

35
17

Sample Output Copy

18

Source/Category