Computer Science, asked by suchir123, 5 hours ago

Write a python program to display all numbers between LOW and HIGH that are divisible by NUMBER.User need to take LOW>5 and HIGH<=50 and NUMBER​

Answers

Answered by MissIncredible34
1

Explanation:

Given the integer N, the task is to print all the numbers less than N, which are divisible by 3 and 5.

Examples :

Input : 50

Output : 0 15 30 45

Input : 100

Output : 0 15 30 45 60 75 90

Similar questions