import java.util.*;

public class HospitalQueue {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
        
        Queue<Integer> queue = new LinkedList<>();
        
        for (int i = 0; i < n; i++) {
            int patient = sc.nextInt();
        }
        
        for (int patient : queue) {
            System.out.print(patient + " ");
        }
    }
}