mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2024-11-25 13:03:44 +03:00
9 lines
134 B
Python
Vendored
9 lines
134 B
Python
Vendored
n = 0
|
|
for a1 in "xyz":
|
|
for a2 in "abcd":
|
|
for a3 in "abcd":
|
|
for a4 in "abcd":
|
|
n += 1
|
|
|
|
print(n)
|