[ AtCoder ] AtCoder Beginner Contest 334 Upsolving
·
-- 예전 기록/UpSolving
A - Christmas Present https://atcoder.jp/contests/abc334/tasks/abc334_a A - Christmas Present AtCoder is a programming contest site for anyone from beginners to experts. We hold weekly programming contests online. atcoder.jp B가 크면 Bat, G가 크면 Glove 를 출력한다. ( B와 G는 같지 않다. ) b, g = map(int, input().rstrip().split()) print('Bat' if b > g else 'Glove') 예상 티어 : Bronze 5 B - Christmas Trees https://atc..