public class Main{
	public static void main(String[] args) {
		String foo = ",";
		System.out.println(foo.split(",")[0]);
	}
}
