# ============================================================
# Practice Problem 2: Count All Digits (0~9) in One Number
# ============================================================

# [Problem]
# Input one integer.
# Count how many times each digit (0~9) appears.
# Print counts from 0 to 9 (one per line).

# [Input Example]
# 120303

# [Output Example]
# 2
# 1
# 0
# 2
# 0
# 0
# 0
# 0
# 0
# 0



# Write your code below:



# ============================================================
# Practice Problem 3: Multiply Two Numbers and Count Digits
# ============================================================

# [Problem]
# Input two integers A and B.
# Multiply them.
# Count how many times each digit (0~9) appears in the result.
# Print counts from 0 to 9.

# [Input Example]
# 12
# 13

# [Output Example]
# (12 × 13 = 156)
# 0
# 1
# 0
# 0
# 0
# 1
# 1
# 0
# 0
# 0


# Write your code below:



# ============================================================
# Practice Problem 4: Multiply Three Numbers and Count Digits
# ============================================================

# [Problem]
# Input three integers A, B, and C.
# Multiply them.
# Count how many times each digit (0~9) appears in the result.
# Print counts from 0 to 9.

# [Input Example]
# 150
# 266
# 427

# [Output Example]
# (150 × 266 × 427 = 17037300)
# 3
# 1
# 0
# 2
# 0
# 0
# 0
# 2
# 0
# 0



# Write your code below:

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: