TheaThea

Untitled

Nov 23rd, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. using System;
  2.  
  3. namespace DaysOnEarth
  4. {
  5. class DaysOnEarth
  6. {
  7. static void Main(string[] args)
  8. {
  9. DateTime date = DateTime.ParseExact(Console.ReadLine(), "dd-MM-yyyy", null);
  10. date = date.AddDays(1000 - 1);
  11. Console.WriteLine(date.ToString ("dd-MM-yyyy"));
  12. }
  13. }
  14. }
Add Comment
Please, Sign In to add comment