Printing only month numbers in a year in C#

using System;

namespace forgetCode
{
    class Program
    {
        static void Main(string[] args)
        {
            DateTime now = DateTime.Today;
            for (int i = 0; i < 12; i++)
            {
                Console.WriteLine(now.ToString("MM"));
                now = now.AddMonths(1);
            }          
        }

    }
}


Output:
07
08
09
10
11
12
01
02
03
04
05
06

...