PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
i=int(input())
while i<100:
i=i+1
print(i)
if i%2==0:
i+=1
print('пропустим')
if i>=100:
print('хватит')
break
if i>100:
print('многовато')
#Nice...
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run