import java.io.*;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        int len = String.valueOf(n).length();
        String s = "";
        int ans = 0;

        for(int i=1; i<len; i++) {
            s += "9";
            ans += 9*Math.pow(10, i-1)*i;
        }
        
        int nine = len==1 ? 0 : Integer.parseInt(s);
        ans += (n-nine)*len;
        
        System.out.println(ans);
    }
}

'Problem Solving > BOJ' 카테고리의 다른 글

[Silver 3] 15650번 N과 M (2)  (0) 2022.04.01
[Silver 3] 15649번 N과 M (1)  (0) 2022.04.01
[Silver 1] 6064번 카잉 달력  (0) 2022.04.01
[Gold 5] 14500번 테트로미노  (0) 2022.04.01
[Gold 5] 1107번 리모컨  (0) 2022.04.01