#D8912. Difference of Big Integers
Difference of Big Integers
Difference of Big Integers
Difference of Big Integers
Given two integers and , compute the difference, .
Input
Two integers and separated by a space character are given in a line.
Output
Print the difference in a line.
Constraints
Sample Input 1
5 8
Sample Output 1
-3
Sample Input 2
100 25
Sample Output 2
75
Sample Input 3
-1 -1
Sample Output 3
0
Sample Input 4
12 -3
Sample Output 4
15
Example
Input
5 8
Output
-3
inputFormat
Input
Two integers and separated by a space character are given in a line.
outputFormat
Output
Print the difference in a line.
Constraints
Sample Input 1
5 8
Sample Output 1
-3
Sample Input 2
100 25
Sample Output 2
75
Sample Input 3
-1 -1
Sample Output 3
0
Sample Input 4
12 -3
Sample Output 4
15
Example
Input
5 8
Output
-3
样例
5 8
-3