단어 길이 재기 (2743)

Created:

Baekjoon No.2743
문자열의 길이는?

Bash

Bash
1
2
read str
echo ${#str}

Node.js

JavaScript
1
2
const str = require("fs").readFileSync(0).toString().trim();
console.log( str.length );

Python3

Python
1
print( len(input()) )

Ruby

Ruby
1
puts gets.chomp.size