a = 10
if a > 5:
a += 20
print(a)
i=0
s=0
while i<7:
i=i+1
if i%2==0:
continue
s=s+i
print('s={},i={}'.format(s,i))