import java.util.*;
import java.io.*;
import java.math.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
String num = sc.next();
sc.close();
int result = 0; // 결과
for (int i = 0; i < N; i++) {
result += num.charAt(i) - '0';
}
System.out.println(result);
}
}
'Playground > 자바문제집' 카테고리의 다른 글
[백준] 1065번 (0) | 2023.01.23 |
---|---|
[백준] 2920번 (0) | 2023.01.23 |
[백준] 2908번 (0) | 2023.01.22 |
[백준] 2742번 (0) | 2023.01.22 |
[백준] 2675번 (0) | 2023.01.22 |