# Find the date on next day if today’s date is given by user Find the date on next day# https://www.tutsmake.com/python-program-to-find-the-date-on-a-next-day-if-todays-date-is-given/
import datetime
from datetime import timedelta
d = int(input("Enter the day : "))
m = int(input("Enter the month : "))
y = int(input("Enter the year :"))
# format given date
gDate = datetime.datetime(y, m, d)
print("Given date is : ", gDate)
# Yesterday date
yesterday = gDate + timedelta(days = 1)
print("Next date will be : ", yesterday)