← Back to List

29667번: Ответный матч ↗

Solutions

Python 3
116 B | 116 chars
a, b = map(int, input().split(":"))
x, y = map(int, input().split(":"))

print("YES" if a >= x and b >= y else "NO")