Write an application that inputs two integer numbers n1 and n2 from the user, th
ID: 3625616 • Letter: W
Question
Write an application that inputs two integer numbers n1 and n2 from the user, these two numbers represent a range. Develop the logic to prints all integers in this range that are divisible by 7 and 11 simultaneously. The following shows a sample output when the application is run with n1 = 1 and n2 = 500Enter the first integer n1 = 1
Enter the second integer n2 = 500
The following numbers are divisible by 7 and 11 simultaneously:
77
154
231
308
385
462
6 numbers are divisible by 7 and 11 within 0 to 600