using System.Collections.Generic;
public static void Main()
List<int>list= Console.ReadLine().Split(' ').Select(int.Parse).ToList();
List<int> newList = new List<int>();
for (int i = 0; i < list.Count; i++)
Console.WriteLine(string.Join(" ", newList));