using System;
using System.Collections.Generic;
class Program
{
static void Main() {
string str = "java c# c c++ python";
string[] arr = str.Split(' ');
List<string> wordsOfStr = new List<string>(arr);
foreach (string s in wordsOfStr) {
Console.WriteLine(s);
}
}
}
/*
run:
java
c#
c
c++
python
*/