n = int(input('enter your age: '))
for x in range(0, n):
if x % 2 == 0:
print(x)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
n = int(input('enter your age: '))
for x in range(0, n):
if x % 2 == 0:
print(x)