← Back to List

2743번: 단어 길이 재기 ↗

Solutions

C++14
114 B | 114 chars
#include <iostream>
#include <string>
using namespace std;
string ar;
int main()
{
	cin>>ar;
	cout<<ar.length();
}