What is the output of the following C program? #include #include main() { int sum = 0, n = 1729; do { sum += n % 10; n = n / 10; } while (n>0); printf("%d", sum); }