import java.util.*; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int score = 0; for (char c : sc.next().toCharArray()) { if (c == '0') { score += 10; } else { score += c - '0'; } } System.out.println(score); } }