From 3b0f1223cfc665ea11449f58db2ee3cd5dd9338f Mon Sep 17 00:00:00 2001 From: Baoshuo Date: Sun, 25 Oct 2020 18:54:00 +0800 Subject: [PATCH] =?UTF-8?q?760.=20=E5=AD=97=E7=AC=A6=E4=B8=B2=E9=95=BF?= =?UTF-8?q?=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://www.acwing.com/problem/content/submission/code_detail/14063266/ --- AcWing/760/760.cpp | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 AcWing/760/760.cpp diff --git a/AcWing/760/760.cpp b/AcWing/760/760.cpp new file mode 100644 index 00000000..78c6289a --- /dev/null +++ b/AcWing/760/760.cpp @@ -0,0 +1,17 @@ +#include +#include + +using std::cin; +using std::cout; +const char endl = '\n'; + +std::string s; + +int main() { + std::ios::sync_with_stdio(false); + + std::getline(cin, s); + cout << s.size() << endl; + + return 0; +}