A - 12/22 Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 100

問題文

十進法表記でちょうど 4 桁の整数 N が与えられます. N の十進法表記には何個の 2 が現れるかを求めてください.

制約

  • 1000 \leq N \leq 9999

入力

入力は以下の形式で標準入力から与えられる.

N

出力

答えを出力せよ.


入力例 1

1222

出力例 1

3

このコンテストは日本時間で 12 月 22 日に開催されますが,1222 には 23 個現れます.


入力例 2

3456

出力例 2

0

入力例 3

9592

出力例 3

1

Score : 100 points

Problem Statement

You are given an integer N that has exactly four digits in base ten. How many times does 2 occur in the base-ten representation of N?

Constraints

  • 1000 \leq N \leq 9999

Input

Input is given from Standard Input in the following format:

N

Output

Print the answer.


Sample Input 1

1222

Sample Output 1

3

2 occurs three times in 1222. By the way, this contest is held on December 22 (JST).


Sample Input 2

3456

Sample Output 2

0

Sample Input 3

9592

Sample Output 3

1