From 38a502e6ed8f52225e903a7c3e618a4ef7e7c2d5 Mon Sep 17 00:00:00 2001 From: Gyubin Han <89185979+Gyubin-Han@users.noreply.github.com> Date: Thu, 2 May 2024 23:04:30 +0900 Subject: [PATCH] add: swea/13218.py --- swea/13218.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 swea/13218.py diff --git a/swea/13218.py b/swea/13218.py new file mode 100644 index 0000000..087b75b --- /dev/null +++ b/swea/13218.py @@ -0,0 +1,4 @@ +n=int(input()) + +for i in range(1,n+1): + print("#"+str(i),int(input())//3)