Files
CodeObject/zeta_python/completed/20004.py
2024-08-21 00:52:23 +09:00

5 lines
123 B
Python

if __name__ == "__main__":
A = int(input())
for i in range(1, A + 1):
print(i) if 30 % (i + 1) == 0 else 0