#abc184a. [abc184_a]Determinant
[abc184_a]Determinant
Problem Statement
Given is a matrix $A = \\begin{bmatrix} a & b \\\\ c & d \\end{bmatrix}$.
The determinant of can be found as .
Find it.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the answer as an integer.
Sample Input 1
1 2
3 4
Sample Output 1
-2
The determinant of \\begin{bmatrix} 1 & 2 \\\\ 3 & 4 \\end{bmatrix} is .
Sample Input 2
0 -1
1 0
Sample Output 2
1
Sample Input 3
100 100
100 100
Sample Output 3
0