using System; namespace Prac_1 { class Prac3 { static void Main() { string s; Console.Write("Enter a string: "); s = Console.ReadLine(); string[] words = s.Split(" "); for(int i = 0; i < words.Length; i++) words[i] = "\"" + words[i] + "\""; for (int i = 0; i < words.Length; i++) Console.Write(words[i] + " "); } } }