From 437c10c393745590fb491210cc2ab3ccdeead49c Mon Sep 17 00:00:00 2001 From: yenru0 Date: Wed, 21 Aug 2024 00:52:23 +0900 Subject: [PATCH] complete 20004.py --- zeta_python/completed/20004.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 zeta_python/completed/20004.py diff --git a/zeta_python/completed/20004.py b/zeta_python/completed/20004.py new file mode 100644 index 0000000..aa09f72 --- /dev/null +++ b/zeta_python/completed/20004.py @@ -0,0 +1,4 @@ +if __name__ == "__main__": + A = int(input()) + for i in range(1, A + 1): + print(i) if 30 % (i + 1) == 0 else 0