← Back to List
8668번: Konik polny 2 ↗
Solutions
Python 3
84 B | 84 chars
x, s = map(int, input().split()) if 2 * s <= x: print("NIE") else: print("TAK")