mirror of
https://github.com/Alexander-D-Karpov/scripts.git
synced 2025-01-22 22:54:08 +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)
|