Advertisement
NadyaMisheva

Untitled

Feb 16th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. using System;
  2.  
  3. public class Program
  4. {
  5. public static void Main()
  6. {
  7. string[] names = Console.ReadLine().Split(' ');
  8. Array.Sort(names);
  9. for(int i = 0; i < names.Length; i++)
  10. {
  11. Console.WriteLine(names[i]);
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement