# This program will ask for a name and display a welcome message from datetime import date current_year = date.today().year name = input("What is your name? ") phone_number = int(input('What is your phone number? ')) birth_date = int(input('What year were you born? ')) print(f'Thanks {name}, you were born on {birth_date} and I will call you on {phone_number}!') age = (current_year - birth_date) print (f'You will be {age} years old at the end of this year!')