알고리즘

[백준] 알고리즘 수업 - 알고리즘의 수행 시간 3

hminor 2023. 7. 25. 11:59
# 반복문 2개라 수행 횟수는 n의 제곱으로 출력했고
# 최고차항의 수는 반복문 2개기에 2를 출력
print(int(input())**2, 2)