Please help me with the task: One more calculator

Hello, I’m working on this task:

Write a program that reads an integer count and a double number from the console. Then print the double number count times to the console, adding 1 to the number each time it prints. For example:
>3
>7.926
7.926
8.926
9.926

Here is my code:


namespace DoubleType
{
   class DoubleInLoops
   {
       static void Main(string[] args)
       {
       }
   }
}

Can anyone please help me to solve it?