Skip to content

Commit 9adde58

Browse files
committed
atcoder/abc184A
1 parent 7dfa0ee commit 9adde58

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

atcoder/abc184/A/main.cpp

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#include <bits/stdc++.h>
2+
3+
using namespace std;
4+
using ll = int64_t;
5+
using ff = long double;
6+
7+
int main() {
8+
ios_base::sync_with_stdio(false);
9+
cin.tie(0); cout.tie(0);
10+
11+
int a, b, c, d;
12+
cin >> a >> b >> c >> d;
13+
int det = a * d - b * c;
14+
cout << det << endl;
15+
16+
return 0;
17+
}

0 commit comments

Comments
 (0)