0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 07:05:24 +00:00
OI-codes/AcWing/608/608.cpp

11 lines
181 B
C++

#include <bits/stdc++.h>
using namespace std;
int main() {
int a, b, c, d;
cin >> a >> b >> c >> d;
cout << "DIFERENCA = " << (a * b - c * d) << endl;
return 0;
}