class Solution {
    public int solution(String message) {
        return message.length() * 2;
    }
}