PROBLEM 90
Hard

Sum of Four Digits

Programming Basics · Python

</>
STATUS Not solved

TASK

Problem

#90

Given a positive four-digit integer, print the sum of its four digits.

EXAMPLE

Example

Input
2037
Output
12

LIMITS

Constraints

1000 ≤ n ≤ 9999
📖
LEARN Theory for this problem
+

`input()` reads data entered by the user. The result of `input()` is initially a string. `int()` converts a numeric string into an integer. The `+` operator adds numbers. The `//` operator performs integer division and keeps the whole-number part. The `%` operator returns the remainder after division. `print()` displays the program result. Print only what the problem statement requires.

**Connection to this task.** The `//` and `%` operators complement each other: the first gives the integer quotient and the second gives the remainder. This is useful when splitting a number into groups or digits. The expression `a + b + c + d` shows how this idea is applied to the task data.

💡
NEED HELP? Hints
+

['Extract each digit using `//` and `%`.']

ANSWER Solution
+
n = int(input())
a = n // 1000
b = n // 100 % 10
c = n // 10 % 10
d = n % 10
print(a + b + c + d)