Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- class Class1
- {
- static void Main()
- {
- DateTime bitrhday = DateTime.ParseExact(Console.ReadLine(), "dd-MM-yyyy", null);
- DateTime answer = bitrhday.AddDays(999);
- Console.WriteLine("{0:dd-MM-yyyy}", answer);
- }
- }
Add Comment
Please, Sign In to add comment