提交时间:2024-12-13 20:18:59
运行 ID: 304122
n=int(input()) for i in range(1,n+1): if i % 2 == 0 and i % 3 != 0: print(i)