public class VacationCalculator{
public static void Main(){
System.Console.WriteLine("Hello! Enter your name:\n");
string text = System.Console.ReadLine();
System.Console.WriteLine("\n Hi! {0} \n", text);
if(string.Equals(Joan,text) || string.Equals(joan,text) == true){
System.Console.WriteLine("Enter a date (e.g. 12/25/2021): \n");
DateTime inputtedDate = DateTime.Parse(Console.ReadLine());
int result = inputtedDate.Year * 10000 + inputtedDate.Month * 100 + inputtedDate.Day;
result=result-(20220103);
System.Console.WriteLine((result>=0) ? "\n SYSTEM ERROR: You have run out of vacaction :(" : "\n You have {0} vacations days left \n ",((31-inputtedDate.Day)*(inputtedDate.Month / 12)) + (3-inputtedDate.Day*((inputtedDate.Month / 12)-1)));
System.Console.WriteLine("Sorry you are a loser, you don't have a vacation at this time \n");
System.Console.WriteLine("Bye! {0}", text);