← Back to List
9713번: Sum of Odd Sequence ↗
Solutions
Python 3
59 B | 59 chars
for i in range(int(input())): print((int(input())//2+1)**2)