#!/usr/bin/env python3
# -*- coding: utf-8 -*-
 
# 제4회 스푼 문화상품권 당첨자 추첨
 
from random import shuffle
 
account_list = ['sjchoi', 'sampling', 'idas4you', 'chungjh', 'zenigame', 'jhy2246', 'oounding', 'watermelon13', 'jkyoon', 'sleepcat', 'woolgom', 'breath', 'sogalaxy', 'deadpxsociety', 'lws', 'heejae', 'ohthisisit', 'iceflowersteem', 'oounchanee']
shuffle(account_list)
 
prizewinner = account_list[0]
 
print(prizewinner)