[BOJ/C++] 2743 단어 길이 재기

mani·2023년 5월 22일
0

baekjoon_step

목록 보기
44/73

문자열을 입력받고 길이를 재는 문제

#include <iostream>
#include <string>

using namespace std;

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	string input;

	cin >> input;
	cout << input.size();

	return 0;
}
profile
log

0개의 댓글