Advertisement
ramsess90

Untitled

Jan 25th, 2017
436
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1. using System;
  2. using System.Globalization;
  3.  
  4. namespace day1000
  5. {
  6.     class Program
  7.     {
  8.         static void Main(string[] args)
  9.         {
  10.                 var Date = DateTime.ParseExact(Console.ReadLine(), "dd-MM-yyyy", CultureInfo.InstalledUICulture);
  11.                 Console.WriteLine(Date.AddDays(999).ToString("dd-MM-yyyy"));
  12.         }
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement