count = 0
for i in range(10, 100):
if i % 2 != 0 and i % 3 == 0 and (i % 10 == 5 or i % 10 == 7):
count += 1
print(count)
#sprike
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
count = 0
for i in range(10, 100):
if i % 2 != 0 and i % 3 == 0 and (i % 10 == 5 or i % 10 == 7):
count += 1
print(count)
#sprike