public static void Main()
int start, stop, steg, x;
Console.Write("mata in start: ");
start = int.Parse(Console.ReadLine());
Console.Write("mata in stop: ");
stop = int.Parse(Console.ReadLine());
Console.Write("mata in steg: ");
steg = int.Parse(Console.ReadLine());
for (x=start; x<=stop; x+=steg)