boj step 5 rework

This commit is contained in:
2024-03-06 14:49:31 +09:00
parent 4d43a008df
commit a0e5f95027
3 changed files with 27 additions and 0 deletions

View File

@@ -0,0 +1,4 @@
N = int(input())
for i in range(N):
s = input()
print(s[0] + s[-1])