알고리즘

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

hminor 2023. 7. 25. 12:05
# 반복문이 3개라서 세제곱을 해주고, 최고차항의 수는 반복문 수대로 3을 출력
print(int(input())**3, 3)