# -*- coding: utf-8 -*-
"""
Created on Sat Dec  4 11:35:46 2021

@author: Sim
"""
import datetime as dt

now = dt.datetime.now()
cur = now.strftime('%Y-%m-%d')

kdays = ('일', '월', '화', '수', '목', '금,','토')
today = int(now.strftime("%w"))
print('오늘은 ', cur, '(', kdays[today], ') 입니다.' )
