#include <stdio.h> int main() { int n, sum = 0; scanf("%d", &n); n = n < 0 ? -n : n; while (n) { sum += n%10; n/=10; } printf("%d", sum); return 0; }