# Problem 1
# Read 5 integers.
# Divide each number by 7.
# Save the remainder into a list.
# Print the list.
#
# Input Example:
# 10
# 15
# 21
# 8
# 9
#
# Output Example:
# [3, 1, 0, 1, 2]
#



# Problem 2
# Read 7 integers.
# Divide each number by 5.
# Count how many DIFFERENT remainders appear.
# Print the number of different remainders.
#
# Input Example:
# 1
# 2
# 3
# 4
# 5
# 6
# 7
#
# Output Example:
# 5
#



# Problem 3
# Read 10 integers.
# Divide each number by 8.
# Count how many DIFFERENT remainders appear.
# Print the number of different remainders.
#
# Input Example:
# 39
# 40
# 41
# 42
# 43
# 44
# 82
# 83
# 84
# 85
#
# Output Example:
# 6
#

Embed on website

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