백준 2743 c++

magicdrill·2024년 3월 13일
0

백준 문제풀이

목록 보기
144/654

백준 2743 c++

#include <iostream>
#include <cstring>

using namespace std;
int main(void)
{
	char str[101];

	cin >> str;

	cout << strlen(str) << endl;

	return 0;
}

0개의 댓글