using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace contest { class Program { static void Main(string[] args) { int N = int.Parse(Console.ReadLine()); for (int i = 0; i < N - 1; i++) { Console.Write("{0} ", 3); } Console.Write(4); } } }