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) +