import time
print("🌟Contact Card🌟")
print()
name = input("Input your name: ")
date = input("Input your date of birth: ")
telephone = input("Input your telephone number: ")
email = input("Input your email: ")
address = input("Input your address: ")
Contact_Card = {"name":name,"date":date,"telephone":telephone,"email":email,"address":address}
time.sleep(2)
print("-----------------------------")
print(f"Name: {Contact_Card['name']}\nDOB: {Contact_Card['date']}\nTel:{Contact_Card['telephone']}\nEmail:{Contact_Card['email']}\nAddress: {Contact_Card['address']}")