#K93127. Square List
Square List
Square List
Given a list of integers, your task is to compute the square of each integer and output the new list. For each integer \( x \), its square is computed as \( x^2 \). The input may contain negative numbers, zeros, or even be empty. Ensure that your solution handles all these cases correctly.
inputFormat
The input is provided via standard input (stdin). The first line contains a single integer \( n \), the number of elements in the list. The second line contains \( n \) integers separated by spaces.
outputFormat
Output the squared numbers in one line, separated by spaces. If the list is empty (i.e., \( n = 0 \)), output an empty line.
## sample5
1 2 3 4 5
1 4 9 16 25