import java.util.Scanner;
import java.util.Arrays;
public class Main {
    
    public static void main(String[] args) {
        
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] array = new int[n+1];
        for(int i = 0 ; i < n ; i ++) {
            array[i] = sc.nextInt();
        }
        array[n] = sc.nextInt();
        Arrays.sort(array);
        for(int i = 0 ; i < n + 1 ; i ++) {
            System.out.print(array[i] + " ");
        }
    }
}