number = int(input())
if number // 100 % 2 == 0:
print("YES")
else:
print("NO")
Ответ:
print('NO') if int(input())//100%2 else print('YES')
Объяснение:
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
number = int(input())
if number // 100 % 2 == 0:
print("YES")
else:
print("NO")
Verified answer
Ответ:
print('NO') if int(input())//100%2 else print('YES')
Объяснение: