public static void Main()
d1=int.Parse(Console.ReadLine());
m1=int.Parse(Console.ReadLine());
y1=int.Parse(Console.ReadLine());
if(m1==1 || m1==3 || m1==5 || m1==7 || m1==8 || m1==10 && d1<31)
Console.WriteLine("tomorrow:" +d2+ "/" + m2 + "/" + y2);
if(m1==1 || m1==3 || m1==5 || m1==7 || m1==8 || m1==10 && d1>31)
Console.WriteLine("write another date");
if(m1==1 || m1==3 || m1==5 || m1==7 || m1==8 || m1==10 && d1==31)
Console.WriteLine("tomorrow:" +d2+ "/" + m2 + "/" + y2);
if(m1==4 || m1==6 || m1==9 || m1==11 && d1<30)
Console.WriteLine("tomorrow:" +d2+ "/" + m2 + "/" + y2);
if(m1==4 || m1==6 || m1==9 || m1==11 && d1>30)
Console.WriteLine("write another date");
if(m1==4 || m1==6 || m1==9 || m1==11 && d1==30)
Console.WriteLine("tomorrow:" +d2+ "/" + m2 + "/" + y2);
Console.WriteLine("tomorrow:" +d2+ "/" + m2 + "/" + y2);
Console.WriteLine("tomorrow:" +d2+ "/" + m2 + "/" + y2);
Console.WriteLine("write another date");
if(m1==2 && (y1 % 4==0 || y1 % 100!=0 || y1 % 400==0))
Console.WriteLine("tomorrow:" +d2+ "/" + m2 + "/" + y2);
Console.WriteLine("tomorrow:" +d2+ "/" + m2 + "/" + y2);
Console.WriteLine("write another date");
if(m1==2 && (y1 % 4!=0 || y1 % 100==0 || y1 % 400!=0))
Console.WriteLine("tomorrow:" +d2+ "/" + m2 + "/" + y2);
Console.WriteLine("tomorrow:" +d2+ "/" + m2 + "/" + y2);
Console.WriteLine("write another date");