diff --git a/solutions/beecrowd/2633/2633.py b/solutions/beecrowd/2633/2633.py index 09f9c161..780419e3 100644 --- a/solutions/beecrowd/2633/2633.py +++ b/solutions/beecrowd/2633/2633.py @@ -17,7 +17,7 @@ for i in range(n): if i > 0 and i < n: - print(" ", end="") - print(heapq.heappop(sorted_ingredients)[1], end="") + print(' ', end='') + print(heapq.heappop(sorted_ingredients)[1], end='') print()