diff --git a/Python/01. Introduction/005. Loops.py b/Python/01. Introduction/005. Loops.py index 9892a5c..84a3383 100644 --- a/Python/01. Introduction/005. Loops.py +++ b/Python/01. Introduction/005. Loops.py @@ -2,5 +2,5 @@ # Score: 10 -for i in range(int(input())): +for i in range(n): print(i ** 2)