#P123. 高精度减法

高精度减法

Description

输入a,b(<10^250)两个数,输出a-b的值。

Input Format

两行,每行一个大整数。

Output Format

a-b的值。

有可能为负数。

Sample

input

999
1000

output

-1

Hint

保证a,b<10250a,b < 10^{250}

时间限制:1s1 \text {s}

空间限制:256MB256 \text {MB}