# problem 846 


# Write a program that takes 10 integers as input and prints the number of multiples of 3 
# and the number of multiples of 5 separately.

# input
# 10 15 36 99 100 19 46 88 87 13

# output
# Multiples of 3 : 4
# Multiples of 5 : 3

#------------------------------------------------------------
# problem 9564

# Write a program that takes the scores of several students 
# as input and prints the total and the average. (Round the average to one decimal place.)

# input
# 90 85 100 66 88

# output
# 총점 : 429
# 평균 : 85.8

#------------------------------------------------------------
# problem 9564

# Write a program that takes the scores of several subjects as input, calculates 
# and prints the average, and prints "pass" if the average is 80 
# or higher, otherwise prints "fail". Round the average to one decimal place.


# input
# 75 80 85 90

# output
# avg : 82.5
# pass


#------------------------------------------------------------

Embed on website

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