from time import *

def iso_format():
    print(strftime("%Y-%m-%d", localtime()))

iso_format()