Python Language:
Similar to Project 3, write a program that loops a number from 1to 10 thousand and keeps updating a count variable according tothese rules:
if the number is divisible by n1, increase count by 1if the number is divisible by n2, increase count by 2if the number is divisible by n3, increase count by 3if none of the above conditions match for the number, increase count by the number.
Before the loop begins, count should be set to 0. Once the loopis complete, print the value of count.
n1, n2, and n3 should be set as follows:
n1 = 11
n2 = 64
n3 = 107
Just like the previous projects, the value of a=1, the value ofb=2, ..., the value of z=26.
The program must produce one numeric output (it should be thevalue of count).