open System open System.IO Console.SetOut(new StreamWriter(Console.OpenStandardOutput(), AutoFlush = true)) let input = stdin.ReadLine() let a = DateTime.Parse input let b = a.AddDays(2.0) b.ToString("yyyy/MM/dd") |> Console.WriteLine