# [Problem 850]

# Write a program that takes a natural number n (≤10) as input and prints "JUNGOL" n times.

# input
# 4

# output
# JUNGOL
# JUNGOL
# JUNGOL
# JUNGOL


# [Problem 851]

# Write a program that takes two integers as input and prints all numbers from the smaller
# to the larger one in order. (The input integers are natural numbers ≤ 100.)

# input
# 10 5

# output
# 5 6 7 8 9 10


# [Problem 852]

# Write a program that takes an integer as input and prints the sum of all multiples of 5
# from 1 up to the input integer.

# input
# 20

# output
# 50


# [Problem 854]

# Write a program that takes 10 integers as input and prints the count of even numbers
# and odd numbers among them separately.

# input
# 10 20 30 55 66 77 88 99 100 15

# output
# even : 6
# odd : 4



# [Problem 855]

# Write a program that takes two integers as input and prints the sum and average of all
# numbers between the smaller and larger integer that are multiples of 3 or 5.
# (The average should be rounded to one decimal place.)

# input
# 10 15

# output
# sum : 37
# avg : 12.3





# [Problem 856]

# Write a program that takes a natural number as input and prints the first 10 multiples
# of that number in order.

# input
# 5

# output
# 5 10 15 20 25 30 35 40 45 50










# [Problem 9562]

# Write a program that takes 10 integers as input and prints how many of them are even.

# input
# 15 22 3 129 66 81 35 1 46 888

# output
# 입력받은 짝수는 4개입니다.


# [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 several scores as input and prints the total score
# and the average. (The average should be rounded to one decimal place.)

# input
# 90 85 100 66 88

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


# [Problem 847]

# Write a program that takes scores of several subjects as input, calculates the average,
# and prints it. If the average is 80 or higher, print "pass"; otherwise, print "fail".
# (The average should be rounded 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: