using System.Collections;
using System.Collections.Generic;
public static void Main()
Console.SetIn(new StreamReader("input.txt"));
int n = Convert.ToInt32(Console.ReadLine());
string[] children = Console.ReadLine().Split(' ');
int[] ints = Array.ConvertAll(children, delegate(string s) { return int.Parse(s); });
Console.WriteLine(String.Join(" ", ints));