본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 15372번 A Simple Problem.

by 현장 2022. 10. 28.

-Code

from sys import stdin
for _ in range(int(stdin.readline())):
    n = int(stdin.readline())
    print(n ** 2)