python
x = 0
while not(x > 30 and not(x % 2 == 1)):
x += 1
print(x)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
python
x = 0
while not(x > 30 and not(x % 2 == 1)):
x += 1
print(x)