정수의 길이

han.user();·2023년 4월 9일
0

구름

목록 보기
1/20
post-thumbnail

import java.io.*;
class Main {
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        
        String input = br.readLine();
        
        System.out.println(input.length());
    }
}
profile
I'm still hungry.

0개의 댓글