You are given two integers a and b, where a ≤ b.
Write a program that finds and prints all numbers divisible by 3 between a and b (inclusive). Print each number divisible by 3 on its own line.
Notes:
At least one number divisible by 3 exists in the range;
Include both
aandbin your calculations if they are divisible by 3.