0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-16 20:05:26 +00:00
Baoshuo Ren 2020-10-25 18:54:00 +08:00
parent 70ab02ef3c
commit 3b0f1223cf
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

17
AcWing/760/760.cpp Normal file
View File

@ -0,0 +1,17 @@
#include <iostream>
#include <string>
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;
}