Problem Description

Given n numbers, use a function to square each and print the squared list.

Input Format

First n. Next line n integers.

Output Format

One line n integers.

Sample Test Case

Input:
4 -2 3 0 5
Output:
4 9 0 25

Constraints

n

Solutions (0)

No solutions submitted yet. Be the first!

Discussion (0)

No comments yet. Start the discussion!

Prev Next