Відповідь:
def is_bishop_attacking(bx, by, fx, fy):
return abs(bx - fx) == abs(by - fy)
bx, by = map(int, input().strip().split())
fx, fy = map(int, input().strip().split())
if is_bishop_attacking(bx, by, fx, fy):
print("YES")
else:
print("NO")
Пояснення:
Ответ:
#Тура- ладья, потому надо просто сравнить x1 с x2 и y1 c y2
x1=int(input())
y1=int(input())
x2=int(input())
y2=int(input())
print('YES') if x1==x2 or y1==y2 else print('NO')
Объяснение:
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Відповідь:
def is_bishop_attacking(bx, by, fx, fy):
return abs(bx - fx) == abs(by - fy)
bx, by = map(int, input().strip().split())
fx, fy = map(int, input().strip().split())
if is_bishop_attacking(bx, by, fx, fy):
print("YES")
else:
print("NO")
Пояснення:
Verified answer
Ответ:
#Тура- ладья, потому надо просто сравнить x1 с x2 и y1 c y2
x1=int(input())
y1=int(input())
x2=int(input())
y2=int(input())
print('YES') if x1==x2 or y1==y2 else print('NO')
Объяснение: