Python으로 구현한 12756번 고급 여관 문제 풀이입니다. https://www.acmicpc.net/problem/12756 12756번: 고급 여관 플레이어 A의 카드가 남아있다면 "PLAYER A"를, 플레이어 B의 카드가 남아있다면 "PLAYER B"를 출력한다. 모두 죽은 상태라면 "DRAW"를 따옴표 없이 출력한다. www.acmicpc.net a_attack, a_hp = map(int, input().split()) b_attack, b_hp = map(int, input().split()) while True : a_hp -= b_attack b_hp -= a_attack if a_hp