본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 33170번 ブラックジャック (Blackjack)

by 현장 2025. 1. 26.

-Code

print(1 if int(input()) + int(input()) + int(input()) <= 21 else 0)