#!/usr/bin/env python3
# -*- coding: utf-8 -*-
 
# 제7회 스푼 문화상품권 당첨자 추첨
 
from random import shuffle
 
account_list = ['chungjh', 'zenigame', 'oounding', 'sjchoi', 'jhy2246', 'coffeenut', 'idas4you', 'sampling', 'yidar', 'todayis', 'woolgom', 'gilma', 'watermelon13', 'jacobyu', 'goodhello', 'breath', 'heejae', 'lws', 'diaryjoon', 'gangway', 'stareditor', 'alchemists', 'sooldukhu', 'bighug', 'sweetboyoy', 'ogh0915', 'iceflowersteem', 'momoggo']
print("total vote account :", len(account_list))
shuffle(account_list)
 
prizewinner = account_list[0]
 
print(prizewinner)