public static void Main()
Console.WriteLine("Enter the month ");
int month=int.Parse(Console.ReadLine());
Console.WriteLine("Enter the day ");
int day=int.Parse(Console.ReadLine());
Console.WriteLine("Enter the year ");
int year=int.Parse(Console.ReadLine());
Console.WriteLine(month+"."+day2+"."+year);
else if((month==2)&&(day==28))
Console.WriteLine(month2+".1."+year);
else if((month==1)&&(month==3)&&(month==5)&&(month==7)&&(month==8)&&(month==10)&&(month==12)&&(day<31))
Console.WriteLine(month+"."+day2+"."+year);
else if((month==1)&&(month==3)&&(month==5)&&(month==7)&&(month==8)&&(month==10)&&(month==12)&&(day==31))
Console.WriteLine(month2+".1."+year);
else if((month==4)&&(month==6)&&(month==9)&&(month==11)&&(day<30))
Console.WriteLine(month+"."+day2+"."+year);
else if((month==4)&&(month==6)&&(month==9)&&(month==11)&&(day==30))
Console.WriteLine(month2+".1."+year);
Console.WriteLine("the date is not existing");