Days in a Month
Consider the code for printing the number of days in a given month for a given year: https://github.com/sarustamyan/technolab-csharp-sources/blob/master/Homework/Lesson1/DaysInAMonth/Program.cs
Is it going to work correctly for any month/year combination? Find the bug in the code and fix it.
Bonus Points: Clone the repository the code is in using Git instead of copy-pasting.
Hint 1:
Theyear
variable is declared but not used. Coincidence?