3 lines
102 B
Python
3 lines
102 B
Python
for x in range(30):
|
|
for y in range(30):
|
|
print("Hello, x =" + str(x) + " et y = " + str(y)) |