Problem Statement
A prime number is a natural number greater than 1 that has no positive divisors other than 1 and itself. For example, consider the range [10, 20]. The first prime number within this range is 11.
Write a program that reads two integers β a start and an end of a range β and finds the first prime number within that range.If a prime number is found, print it and stop checking the rest of the numbers.If no prime number is found in the range, print "No prime number found".
Hint: Use break inside the loop when:Checking if a number is not prime β break inner loop.Finding the first prime β break outer loop.