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