#Code in python
print("ENTER LOW, HIGH AND X")
low=int(input())
high=int(input())
x=int(input()) c=0
for i in range(low,high):
if i%x==0:
c++
print(c)
Python is an object-oriented, dynamically-semantic, interpreted high-level programming language. Its high-level built-in data structures, along with dynamic typing and dynamic binding, making it particularly appealing for use in rapid application development as well as as a scripting or glue language to join together preexisting components. Python's syntax is also straightforward and quick to learn. Python allows packages and modules, which promotes the modularity and reuse of code in programs. For all popular systems, the Python interpreter and the comprehensive standard library are free to download in source or binary form and can be shared without restriction. Because Python increases efficiency, programmers frequently fall in love with it. The cycle of edit-test-debug is extremely quick because there is no compilation stage. Python scripts are simple to debug because a defect or incorrect input will never result in a segmentation fault. Instead, an exception is raised when the interpreter finds a mistake.
Learn more about python here:
https://brainly.com/question/13437928
#SPJ4