[백준] 닉네임에 갓 붙이기

Juhyang·2020년 9월 23일
0

알고리즘 풀이

목록 보기
13/16
post-thumbnail

문제
13163번 : 닉네임에 갓 붙이기


n = int(input())

for i in range(n):
  s = input().split()
  s.remove(s[0])
  print('god'+''.join(s))

profile
kurly - commerce web development

0개의 댓글