728x90
https://www.acmicpc.net/problem/9086
import sys
t = int(sys.stdin.readline())
for _ in range(t):
str = sys.stdin.readline().rstrip()
print(str[0]+str[-1]) #1
#1 : 문자열에 + 를 사용하면 붙여서 출력할 수 있다.
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 17413 파이썬(python) : 단어 뒤집기 2 (0) | 2022.07.18 |
---|---|
[백준] 9093 파이썬(python) : 단어 뒤집기 (0) | 2022.07.18 |
[백준] 1264 파이썬(python) : 모음의 개수 (0) | 2022.07.18 |
[백준] 2744 파이썬(python) : 대소문자 바꾸기 (0) | 2022.07.18 |
[백준] 10808 파이썬(python) : 알파벳 개수 (0) | 2022.07.18 |