보안을 그리다, 훈이

[Baekjoon/Python3] 14581번 팬들에게 둘러싸인 홍준 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 14581번 팬들에게 둘러싸인 홍준

HooNeee 2020. 12. 7. 02:59

[Baekjoon/Python3] 14581번 팬들에게 둘러싸인 홍준

 

www.acmicpc.net/problem/14581

 

14581번: 팬들에게 둘러싸인 홍준

첫 번째 줄에 홍준의 아이디를 입력받는다. 홍준의 아이디는 길이가 20 이하인 문자열이며, 알파벳 소문자, 알파벳 대문자, 숫자로만 이루어졌다.

www.acmicpc.net

 

id = input()
print(':fan::fan::fan:')
print(':fan::' + id + '::fan:')
print(':fan::fan::fan:')
Comments