3 files to be compiled together and then run scala Spiral a b
where a, b are integers to see the time distribution
var FirstNum = 10;
var SecondNum = 5;
while FirstNum > SecondNum do
print FirstNum;
FirstNum = FirstNum - 1;
endwhile;
print "Enter any number to continue";
read SecondNum;