From 353083cc9651cb39c6e1ce691a467a4490a315e6 Mon Sep 17 00:00:00 2001 From: Gyubin Han <89185979+Gyubin-Han@users.noreply.github.com> Date: Sat, 4 May 2024 20:38:46 +0900 Subject: [PATCH] add: swea/15941.py --- swea/15941.py | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 swea/15941.py diff --git a/swea/15941.py b/swea/15941.py new file mode 100644 index 0000000..e475d9c --- /dev/null +++ b/swea/15941.py @@ -0,0 +1,5 @@ +t=int(input()) + +for i in range(1,t+1): + print("#"+str(i),int(input())**2) +