# getLocalDayOfMonth.py


import time


def getLocalDayOfMonth():

    localDayOfMonth = time.localtime().tm_mday

    return localDayOfMonth


####


if __name__ == '__main__':

    print(getLocalDayOfMonth())

    input('')


####


'''

22

'''


# Dedicated to God the Father

# All Rights Reserved Christopher Andrew Topalian Copyright 2000-2024

# https://github.com/ChristopherTopalian

# https://github.com/ChristopherAndrewTopalian

# https://sites.google.com/view/CollegeOfScripting