using System.Collections.Generic;
using System.Threading.Tasks;
static void Main(string[] args)
Console.WriteLine("Please Enter Your Name:");
string customerName = Console.ReadLine();
Console.WriteLine("Please Enter Your Birthdate: day, month, year");
int day = Convert.ToInt32(Console.ReadLine());
int month = Convert.ToInt32(Console.ReadLine());
int year = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Please Enter Your Phone Number and Address");
string phone = Console.ReadLine();
string address = Console.ReadLine();
Account myAccount = new Account(customerName, new DateTime(year, month, day), phone, address);