Skip to content

Latest commit

 

History

History

P007

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

Problem 007

Write a program which gets an integer N and prints all numbers less than N and divisible by 5.

Persian Description

برنامه ای بنویسید که یک عدد از ورودی دریافت کرده و تمام اعداد بزرگتر از یک و کوچکتر از آن و بخش پذیر بر ۵ را چاپ کند

Sample Input/Output

Input:

32

Output:

5
10
15
20
25
30