Write a class named NumbersThread that extends the Thread class. The class must have a constructor that takes two integer numbers from and to as range borders.
Implement the method run. It must print all numbers from the given range (inclusive) to the standard output.
Use the provided template.