100810: [AtCoder]ABC081 A - Placing Marbles

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $100$ points

Problem Statement

Snuke has a grid consisting of three squares numbered $1$, $2$ and $3$. In each square, either 0 or 1 is written. The number written in Square $i$ is $s_i$.

Snuke will place a marble on each square that says 1. Find the number of squares on which Snuke will place a marble.

Constraints

  • Each of $s_1$, $s_2$ and $s_3$ is either 1 or 0.

Input

Input is given from Standard Input in the following format:

$s_{1}s_{2}s_{3}$

Output

Print the answer.


Sample Input 1

101

Sample Output 1

2
  • A marble will be placed on Square $1$ and $3$.

Sample Input 2

000

Sample Output 2

0
  • No marble will be placed on any square.

Input

题意翻译

### **题目描述** 读入一个字符串s,求它的数字和是多少 ### **输入格式** 一行,一个字符串s ### **输出格式** 一行,一个数sum,表示s字符串的数字和(个各位数相加的和)。 ### **输入样例** ``` 101 ``` ### **输出样例** ``` 2 ```

加入题单

算法标签: