• + 0 comments

    Here's my code:

    import calendar
    month, day, year = map(int, input().split())
    print(calendar.day_name[calendar.weekday(year, month, day)].upper())