단어 길이 재기

BiBi·2021년 1월 19일
0

코딩테스트연습

목록 보기
33/66
#include <algorithm>
#include <iostream>
#include <stdio.h>
#include <vector>
#include <map>
#include <stack>
#include <queue>
#include <deque>
#include <string>
using namespace std;


int main() {
	//freopen("input.txt", "rt", stdin);
	string s;
	cin >> s;
	printf("%d", s.length());
	

	
	

	return 0;
}
profile
Server Network Engineer

0개의 댓글