← Back to List

34584번: Take It or Double It ↗

Solutions

Python 3
81 B | 81 chars
a, b = map(int, input().split())
print("double it" if 2 * a <= b else "take it")