#Задание 3
a = 1
while a < 100:
print(a)
a+=3
a = 1
while a < 100:
print(a)
a+=3
![]() |
#Задание 3
a = 1 while a < 100: print(a) a+=3 |