diff --git a/Python/06 - Itertools/01 - itertools.product().py b/Python/06 - Itertools/01 - itertools.product().py index e971c1a..a9732dd 100644 --- a/Python/06 - Itertools/01 - itertools.product().py +++ b/Python/06 - Itertools/01 - itertools.product().py @@ -16,4 +16,4 @@ A = list(map(int, input().split())) B = list(map(int, input().split())) -print(*list(product(A, B))) +print(list(product(A, B)))