Hide
Problem A
Ascending Squares
Accepted submissions to this problem will be granted a score of 100
Write a program that, given
Input
The input consists of one line containing one integer
Output
The output consists of 1 line, the string representation of the list.
Sample Input 1 | Sample Output 1 |
---|---|
5 |
[1, 4, 9, 16, 25] |
Sample Input 2 | Sample Output 2 |
---|---|
1 |
[1] |
Sample Input 3 | Sample Output 3 |
---|---|
10 |
[1, 4, 9, 16, 25, 36, 49, 64, 81, 100] |