Walmart Coding Question β Solved
Ruest for Mystic Numbers
Problem Statement
the land of Numeria, the ancient sages have discovered a magical property in me numbers that they call "Mystic Numbers". These numbers hold special wers that can influence the harmony of the universe. You, as an apprentice to e sages, have been tasked with identifying these MysticNumbers.
The sages define a Mystic Number as follows:
1. It must be an even number.
2. When the digits of the number are repeatedly summed until a single- digit number is obtained, this single-digit result must be even.
You are given two boundaries, N1 and N2, which represent a range of numbers. your quest is to find all the Mystic Numbers within this range and report them back to the sages.
Input Format
The input contains two space-separated integers N1 and N2 denoting the two
poundaries range of numbers.
Output Format
Print a list of all Mystic Numbers between N1 and N2.
Constraints
1<= N1, N2 β€ 10^9