1

Temat: Pętla for i while

for x in range(1,5):
    print(x, end=",")

print("\n")

i = 1
while i < 5:
    print(i, end=",")
    i += 1