From ceb66a4db878bc61be8f74a82748f6dc8214a279 Mon Sep 17 00:00:00 2001 From: Ren Baoshuo Date: Mon, 2 Aug 2021 19:36:42 +0800 Subject: [PATCH] =?UTF-8?q?608.=20=E5=B7=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://www.acwing.com/problem/content/submission/code_detail/6847391/ --- AcWing/608/608.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 AcWing/608/608.cpp diff --git a/AcWing/608/608.cpp b/AcWing/608/608.cpp new file mode 100644 index 00000000..fa6ca7e7 --- /dev/null +++ b/AcWing/608/608.cpp @@ -0,0 +1,10 @@ +#include + +using namespace std; + +int main() { + int a, b, c, d; + cin >> a >> b >> c >> d; + cout << "DIFERENCA = " << (a * b - c * d) << endl; + return 0; +}