본문 바로가기
백준

[2743] 단어 길이 재기

by Jcoder 2018. 8. 25.


#include <iostream>
#include <string>
using namespace std;
int main()
{
string s;
cin >> s;
cout << s.size() << endl;
}


'백준' 카테고리의 다른 글

[15000] CAPS  (0) 2018.08.26
[2386] 도비의 영어 공부  (0) 2018.08.26
[15894] 수학은 체육과목입니다  (0) 2018.08.25
[11370] Spawn of Ungoliant  (0) 2018.08.25
[11367] Report Card Time  (0) 2018.08.24