https://www.hackerrank.com/challenges/calendar-module
The calendar module allows you to output calendars and provides additional useful functions for them.
class calendar.TextCalendar([firstweekday])
This class can be used to generate plain text calendars.
Task
You are given a date. Your task is to find what the day is on that date.
Input Format
A single line of input containing the space separated month, day and year, respectively, in MM DD YYYY format.
Output Format
Output the correct day in capital letters.
Sample Input 0
08 05 2015
Sample Output 0
WEDNESDAY