#P11083. Black Hole Radiation Level Detection

    ID: 13140 Type: Default 1000ms 256MiB

Black Hole Radiation Level Detection

Black Hole Radiation Level Detection

In this problem, you are tasked with determining the radiation levels of multiple black holes. In a real interactive setting, you would interact with a sensor probe library with query limitations per black hole (limited to qq queries per black hole). However, for this offline version, you are directly provided with the radiation levels.

There are nn black holes, and each black hole has a radiation level which is an integer in the range [1,n][1, n]. Your task is to simply output the radiation levels in the order they are given.

Note: In the interactive version, if the program issues more than qq queries for any black hole, the test case would be judged as Wrong Answer (WA) or might time out (TLE). In this simplified offline version, these limits are not enforced.

inputFormat

The input consists of two lines:

  1. The first line contains a single integer $n$ ($1 \leq n \leq 100$), which represents the number of black holes.
  2. The second line contains $n$ space-separated integers, each representing the radiation level of a black hole. Each radiation level is an integer between 1 and $n$.

outputFormat

Output a single line containing $n$ space-separated integers, which are the radiation levels of the black holes in the order they were provided in the input.

sample

3
1 2 3
1 2 3